commit d80c3da4f82d71ad2e5e1faa5ef6bce9eefb6472 Author: Patrick Förster Date: Wed Nov 25 14:53:14 2020 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..bfd296ce8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,202 @@ + +# Created by https://www.toptal.com/developers/gitignore/api/c,c++,node,visualstudiocode +# Edit at https://www.toptal.com/developers/gitignore?templates=c,c++,node,visualstudiocode + +### C ### +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +### C++ ### +# Prerequisites + +# Compiled Object files +*.slo + +# Precompiled Headers + +# Compiled Dynamic libraries + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai + +# Executables + +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test +.env*.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +### VisualStudioCode ### +.vscode/* +!.vscode/tasks.json +!.vscode/launch.json +*.code-workspace + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +# End of https://www.toptal.com/developers/gitignore/api/c,c++,node,visualstudiocode +/binding.gyp +/index.js \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..b4f8e6a6a --- /dev/null +++ b/.prettierrc @@ -0,0 +1,4 @@ +{ + "singleQuote": true, + "arrowParens": "avoid" +} diff --git a/commands.json b/commands.json new file mode 100644 index 000000000..acda95af8 --- /dev/null +++ b/commands.json @@ -0,0 +1,190 @@ +{ + "citation": [ + "\\cite", + "\\cite*", + "\\Cite", + "\\nocite", + "\\citet", + "\\citep", + "\\citet*", + "\\citep*", + "\\citeauthor", + "\\citeauthor*", + "\\Citeauthor", + "\\Citeauthor*", + "\\citetitle", + "\\citetitle*", + "\\citeyear", + "\\citeyear*", + "\\citedate", + "\\citedate*", + "\\citeurl", + "\\fullcite", + "\\citeyearpar", + "\\citealt", + "\\citealp", + "\\citetext", + "\\parencite", + "\\parencite*", + "\\Parencite", + "\\footcite", + "\\footfullcite", + "\\footcitetext", + "\\textcite", + "\\Textcite", + "\\smartcite", + "\\Smartcite", + "\\supercite", + "\\autocite", + "\\Autocite", + "\\autocite*", + "\\Autocite*", + "\\volcite", + "\\Volcite", + "\\pvolcite", + "\\Pvolcite", + "\\fvolcite", + "\\ftvolcite", + "\\svolcite", + "\\Svolcite", + "\\tvolcite", + "\\Tvolcite", + "\\avolcite", + "\\Avolcite", + "\\notecite", + "\\notecite", + "\\pnotecite", + "\\Pnotecite", + "\\fnotecite" + ], + "include": [ + "\\include", + "\\input", + "\\bibliography", + "\\verbatiminput", + "\\VerbatimInput", + "\\subfile", + "\\subfileinclude" + ], + "labelReference": [ + "\\ref", + "\\vref", + "\\Vref", + "\\autoref", + "\\pageref", + "\\eqref", + "\\cref", + "\\Cref", + "\\cref*", + "\\Cref*", + "\\namecref", + "\\nameCref", + "\\lcnamecref", + "\\namecrefs", + "\\nameCrefs", + "\\lcnamecrefs", + "\\labelcref", + "\\labelcpageref" + ], + "labelRangeReference": [ + "\\crefrange", + "\\crefrange", + "\\Crefrange", + "\\Crefrange", + "\\crefrange*", + "\\crefrange*", + "\\Crefrange*", + "\\Crefrange*" + ], + "glossaryEntryReference": [ + "\\gls", + "\\Gls", + "\\GLS", + "\\glspl", + "\\Glspl", + "\\GLSpl", + "\\glsdisp", + "\\glslink", + "\\glstext", + "\\Glstext", + "\\GLStext", + "\\glsfirst", + "\\Glsfirst", + "\\GLSfirst", + "\\glsplural", + "\\Glsplural", + "\\GLSplural", + "\\glsfirstplural", + "\\Glsfirstplural", + "\\GLSfirstplural", + "\\glsname", + "\\Glsname", + "\\GLSname", + "\\glssymbol", + "\\Glssymbol", + "\\glsdesc", + "\\Glsdesc", + "\\GLSdesc", + "\\glsuseri", + "\\Glsuseri", + "\\GLSuseri", + "\\glsuserii", + "\\Glsuserii", + "\\GLSuserii", + "\\glsuseriii", + "\\Glsuseriii", + "\\GLSuseriii", + "\\glsuseriv", + "\\Glsuseriv", + "\\GLSuseriv", + "\\glsuserv", + "\\Glsuserv", + "\\GLSuserv", + "\\glsuservi", + "\\Glsuservi", + "\\GLSuservi", + "\\acrshort", + "\\Acrshort", + "\\ACRshort", + "\\acrshortpl", + "\\Acrshortpl", + "\\ACRshortpl", + "\\acrlong", + "\\Acrlong", + "\\ACRlong", + "\\acrlongpl", + "\\Acrlongpl", + "\\ACRlongpl", + "\\acrfull", + "\\Acrfull", + "\\ACRfull", + "\\acrfullpl", + "\\Acrfullpl", + "\\ACRfullpl", + "\\acs", + "\\Acs", + "\\acsp", + "\\Acsp", + "\\acl", + "\\Acl", + "\\aclp", + "\\Aclp", + "\\acf", + "\\Acf", + "\\acfp", + "\\Acfp", + "\\ac", + "\\Ac", + "\\acp", + "\\glsentrylong", + "\\Glsentrylong", + "\\glsentrylongpl", + "\\Glsentrylongpl", + "\\glsentryshort", + "\\Glsentryshort", + "\\glsentryshortpl", + "\\Glsentryshortpl", + "\\glsentryfullpl", + "\\Glsentryfullpl" + ] +} diff --git a/grammar.js b/grammar.js new file mode 100644 index 000000000..fc6ca50f1 --- /dev/null +++ b/grammar.js @@ -0,0 +1,374 @@ +const commands = require('./commands.json'); + +const sepBy1 = (rule, sep) => seq(rule, repeat(seq(sep, rule))); + +const sepBy = (rule, sep) => optional(sepBy1(rule, sep)); + +module.exports = grammar({ + name: 'latex', + extras: $ => [$.whitespace, $.comment], + word: $ => $._generic_command_name, + rules: { + document: $ => repeat($._content), + + //--- Trivia ---// + + whitespace: $ => /\s+/, + + comment: $ => /%[^\r\n]+/, + + //--- Content ---// + + _simple_content: $ => + choice( + $.brace_group, + $.mixed_group, + $.param, + $.text, + $.displayed_equation, + $.inline_formula, + $.environment, + $.caption, + $.citation, + $.package_include, + $.class_include, + $.biblatex_include, + $.graphics_include, + $.import, + $.label_definition, + $.label_reference, + $.label_reference_range, + $.label_number, + $.command_definition, + $.math_operator, + $.glossary_entry_definition, + $.glossary_entry_reference, + $.acronym_definition, + $.theorem_definition, + $.generic_command + ), + + _content: $ => + choice( + $.part, + $.chapter, + $.section, + $.subsection, + $.subsubsection, + $.paragraph, + $.subparagraph, + $.enum_item, + $._simple_content + ), + + //--- Structure ---// + + part: $ => + prec.right( + seq( + /\\part\*?/, + $.brace_group, + repeat( + choice( + $.chapter, + $.section, + $.subsection, + $.subsubsection, + $.paragraph, + $.subparagraph, + $.enum_item, + $._simple_content + ) + ) + ) + ), + + chapter: $ => + prec.right( + seq( + /\\chapter\*?/, + $.brace_group, + repeat( + choice( + $.section, + $.subsection, + $.subsubsection, + $.paragraph, + $.subparagraph, + $.enum_item, + $._simple_content + ) + ) + ) + ), + + section: $ => + prec.right( + seq( + /\\section\*?/, + $.brace_group, + repeat( + choice( + $.subsection, + $.subsubsection, + $.paragraph, + $.subparagraph, + $.enum_item, + $._simple_content + ) + ) + ) + ), + + subsection: $ => + prec.right( + seq( + /\\subsection\*?/, + $.brace_group, + repeat( + choice( + $.subsubsection, + $.paragraph, + $.subparagraph, + $.enum_item, + $._simple_content + ) + ) + ) + ), + + subsubsection: $ => + prec.right( + seq( + /\\subsubsection\*?/, + $.brace_group, + repeat( + choice($.paragraph, $.subparagraph, $.enum_item, $._simple_content) + ) + ) + ), + + paragraph: $ => + prec.right( + seq( + /\\paragraph\*?/, + $.brace_group, + repeat(choice($.subparagraph, $.enum_item, $._simple_content)) + ) + ), + + subparagraph: $ => + prec.right( + seq( + /\\subparagraph\*?/, + $.brace_group, + repeat(choice($.enum_item, $._simple_content)) + ) + ), + + enum_item: $ => + prec.right( + seq( + '\\item', + optional(seq('[', $.word, ']')), + repeat(choice($._simple_content)) + ) + ), + + //--- Groups ---// + + brace_group: $ => seq('{', repeat($._content), '}'), + + bracket_group: $ => seq('[', repeat($._content), ']'), + + paren_group: $ => seq('(', repeat($._content), ')'), + + mixed_group: $ => + seq(choice('(', '['), repeat($._content), choice(')', ']')), + + key_val_options: $ => seq('[', sepBy($.key_val_pair, ','), ']'), + + key_val_pair: $ => seq($.key, optional(seq('=', $._content))), + + key: $ => repeat1($.word), + + _word_group: $ => seq('{', $.word, '}'), + + _comma_sep_word_group: $ => seq('{', sepBy($.word, ','), '}'), + + //--- Text ---// + + // Performance optimization: store text as a binary tree instead of a list + text: $ => prec.right(seq($._text_fragment, optional($.text))), + + _text_fragment: $ => prec.right(choice($.word, ',', '=')), + + word: $ => /[^\s\\%\{\},\$\[\]\(\)=\#]+/, + + param: $ => /#\d/, + + //--- Math ---// + + displayed_equation: $ => + prec.left( + seq(choice('$$', '\\['), repeat($._content), choice('$$', '\\]')) + ), + + inline_formula: $ => + prec.left( + seq(choice('$', '\\('), repeat($._content), choice('$', '\\)')) + ), + + //--- Environment ---// + + begin: $ => + prec.right(seq('\\begin', '{', $.word, '}', repeat($.bracket_group))), + + end: $ => seq('\\end', '{', $.word, '}'), + + environment: $ => prec.right(seq($.begin, repeat($._content), $.end)), + + //--- Special Commands ---// + + caption: $ => seq('\\caption', optional($.bracket_group), $.brace_group), + + citation: $ => + seq( + token(choice(...commands.citation)), + optional($.bracket_group), + optional($.bracket_group), + $._comma_sep_word_group + ), + + package_include: $ => + seq( + token(choice('\\usepackage', '\\RequirePackage')), + optional($.key_val_options), + $._comma_sep_word_group + ), + + class_include: $ => + seq( + '\\documentclass', + optional($.key_val_options), + $._comma_sep_word_group + ), + + biblatex_include: $ => + seq( + '\\addbibresource', + optional($.key_val_options), + $._comma_sep_word_group + ), + + graphics_include: $ => + seq( + token(choice('\\includegraphics', '\\includesvg', '\\includeinkscape')), + optional($.key_val_options), + $._comma_sep_word_group + ), + + generic_include: $ => + seq(token(choice(...commands.include)), $._comma_sep_word_group), + + import: $ => + seq( + token( + choice( + '\\import', + '\\subimport', + '\\inputfrom', + '\\subimportfrom', + '\\includefrom', + '\\subincludefrom' + ) + ), + $._word_group, + $._word_group + ), + + label_definition: $ => seq('\\label', $._word_group), + + label_reference: $ => + seq(token(choice(...commands.labelReference)), $._comma_sep_word_group), + + label_reference_range: $ => + seq( + token(choice(...commands.labelRangeReference)), + $._word_group, + $._word_group + ), + + label_number: $ => seq('\\newlabel', $._word_group, $.brace_group), + + command_definition: $ => + seq( + token( + choice('\\newcommand', '\\renewcommand', '\\DeclareRobustCommand') + ), + optional(seq('[', /\d/, ']')), + '{', + $._generic_command_name, + '}', + $.brace_group + ), + + math_operator: $ => + seq( + token(choice('\\DeclareMathOperator', '\\DeclareMathOperator*')), + '{', + $._generic_command_name, + '}', + $.brace_group + ), + + glossary_entry_definition: $ => + seq( + '\\newglossaryentry', + $._word_group, + '{', + sepBy($.key_val_pair, ','), + '}' + ), + + glossary_entry_reference: $ => + seq( + token(choice(...commands.glossaryEntryReference)), + optional($.key_val_options), + $._word_group + ), + + acronym_definition: $ => + seq( + '\\newacronym', + optional($.key_val_options), + $._word_group, + $.brace_group, + $.brace_group + ), + + theorem_definition: $ => + prec.right( + seq( + token(choice('\\newtheorem', '\\declaretheorem')), + $._word_group, + choice( + seq($.brace_group, optional(seq('[', $.word, ']'))), + seq('[', $.word, ']', $.brace_group) + ) + ) + ), + + //--- Generic commands ---// + + generic_command: $ => + prec.right( + seq( + $._generic_command_name, + repeat(choice($.brace_group, $.bracket_group, $.paren_group)) + ) + ), + + _generic_command_name: $ => /\\([^\r\n]|[@a-zA-Z]+\*?)?/, + }, +}); diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..f6ed82238 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,19 @@ +{ + "name": "tree-sitter-latex", + "version": "0.1.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "nan": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", + "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==", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 000000000..4f9bd6832 --- /dev/null +++ b/package.json @@ -0,0 +1,30 @@ +{ + "name": "tree-sitter-latex", + "version": "0.1.0", + "description": "Tree-sitter Grammar for LaTeX", + "scripts": { + "build": "tree-sitter build", + "test": "tree-sitter test" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/latex-lsp/tree-sitter-latex.git" + }, + "keywords": [ + "tree-sitter", + "latex", + "parser" + ], + "author": "Patrick Förster ", + "license": "MIT", + "bugs": { + "url": "https://github.com/latex-lsp/tree-sitter-latex/issues" + }, + "homepage": "https://github.com/latex-lsp/tree-sitter-latex#readme", + "dependencies": { + "nan": "^2.14.2" + }, + "devDependencies": { + "tree-sitter-cli": "^0.17.3" + } +} diff --git a/src/binding.cc b/src/binding.cc new file mode 100644 index 000000000..e3f02431b --- /dev/null +++ b/src/binding.cc @@ -0,0 +1,28 @@ +#include "tree_sitter/parser.h" +#include +#include "nan.h" + +using namespace v8; + +extern "C" TSLanguage * tree_sitter_latex(); + +namespace { + +NAN_METHOD(New) {} + +void Init(Local exports, Local module) { + Local tpl = Nan::New(New); + tpl->SetClassName(Nan::New("Language").ToLocalChecked()); + tpl->InstanceTemplate()->SetInternalFieldCount(1); + + Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); + Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); + Nan::SetInternalFieldPointer(instance, 0, tree_sitter_latex()); + + Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("latex").ToLocalChecked()); + Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); +} + +NODE_MODULE(tree_sitter_latex_binding, Init) + +} // namespace diff --git a/src/grammar.json b/src/grammar.json new file mode 100644 index 000000000..4d409b152 --- /dev/null +++ b/src/grammar.json @@ -0,0 +1,2387 @@ +{ + "name": "latex", + "word": "_generic_command_name", + "rules": { + "document": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_content" + } + }, + "whitespace": { + "type": "PATTERN", + "value": "\\s+" + }, + "comment": { + "type": "PATTERN", + "value": "%[^\\r\\n]+" + }, + "_simple_content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "SYMBOL", + "name": "mixed_group" + }, + { + "type": "SYMBOL", + "name": "param" + }, + { + "type": "SYMBOL", + "name": "text" + }, + { + "type": "SYMBOL", + "name": "displayed_equation" + }, + { + "type": "SYMBOL", + "name": "inline_formula" + }, + { + "type": "SYMBOL", + "name": "environment" + }, + { + "type": "SYMBOL", + "name": "caption" + }, + { + "type": "SYMBOL", + "name": "citation" + }, + { + "type": "SYMBOL", + "name": "package_include" + }, + { + "type": "SYMBOL", + "name": "class_include" + }, + { + "type": "SYMBOL", + "name": "biblatex_include" + }, + { + "type": "SYMBOL", + "name": "graphics_include" + }, + { + "type": "SYMBOL", + "name": "import" + }, + { + "type": "SYMBOL", + "name": "label_definition" + }, + { + "type": "SYMBOL", + "name": "label_reference" + }, + { + "type": "SYMBOL", + "name": "label_reference_range" + }, + { + "type": "SYMBOL", + "name": "label_number" + }, + { + "type": "SYMBOL", + "name": "command_definition" + }, + { + "type": "SYMBOL", + "name": "math_operator" + }, + { + "type": "SYMBOL", + "name": "glossary_entry_definition" + }, + { + "type": "SYMBOL", + "name": "glossary_entry_reference" + }, + { + "type": "SYMBOL", + "name": "acronym_definition" + }, + { + "type": "SYMBOL", + "name": "theorem_definition" + }, + { + "type": "SYMBOL", + "name": "generic_command" + } + ] + }, + "_content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "part" + }, + { + "type": "SYMBOL", + "name": "chapter" + }, + { + "type": "SYMBOL", + "name": "section" + }, + { + "type": "SYMBOL", + "name": "subsection" + }, + { + "type": "SYMBOL", + "name": "subsubsection" + }, + { + "type": "SYMBOL", + "name": "paragraph" + }, + { + "type": "SYMBOL", + "name": "subparagraph" + }, + { + "type": "SYMBOL", + "name": "enum_item" + }, + { + "type": "SYMBOL", + "name": "_simple_content" + } + ] + }, + "part": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "\\\\part\\*?" + }, + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "chapter" + }, + { + "type": "SYMBOL", + "name": "section" + }, + { + "type": "SYMBOL", + "name": "subsection" + }, + { + "type": "SYMBOL", + "name": "subsubsection" + }, + { + "type": "SYMBOL", + "name": "paragraph" + }, + { + "type": "SYMBOL", + "name": "subparagraph" + }, + { + "type": "SYMBOL", + "name": "enum_item" + }, + { + "type": "SYMBOL", + "name": "_simple_content" + } + ] + } + } + ] + } + }, + "chapter": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "\\\\chapter\\*?" + }, + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "section" + }, + { + "type": "SYMBOL", + "name": "subsection" + }, + { + "type": "SYMBOL", + "name": "subsubsection" + }, + { + "type": "SYMBOL", + "name": "paragraph" + }, + { + "type": "SYMBOL", + "name": "subparagraph" + }, + { + "type": "SYMBOL", + "name": "enum_item" + }, + { + "type": "SYMBOL", + "name": "_simple_content" + } + ] + } + } + ] + } + }, + "section": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "\\\\section\\*?" + }, + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subsection" + }, + { + "type": "SYMBOL", + "name": "subsubsection" + }, + { + "type": "SYMBOL", + "name": "paragraph" + }, + { + "type": "SYMBOL", + "name": "subparagraph" + }, + { + "type": "SYMBOL", + "name": "enum_item" + }, + { + "type": "SYMBOL", + "name": "_simple_content" + } + ] + } + } + ] + } + }, + "subsection": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "\\\\subsection\\*?" + }, + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subsubsection" + }, + { + "type": "SYMBOL", + "name": "paragraph" + }, + { + "type": "SYMBOL", + "name": "subparagraph" + }, + { + "type": "SYMBOL", + "name": "enum_item" + }, + { + "type": "SYMBOL", + "name": "_simple_content" + } + ] + } + } + ] + } + }, + "subsubsection": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "\\\\subsubsection\\*?" + }, + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "paragraph" + }, + { + "type": "SYMBOL", + "name": "subparagraph" + }, + { + "type": "SYMBOL", + "name": "enum_item" + }, + { + "type": "SYMBOL", + "name": "_simple_content" + } + ] + } + } + ] + } + }, + "paragraph": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "\\\\paragraph\\*?" + }, + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subparagraph" + }, + { + "type": "SYMBOL", + "name": "enum_item" + }, + { + "type": "SYMBOL", + "name": "_simple_content" + } + ] + } + } + ] + } + }, + "subparagraph": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "\\\\subparagraph\\*?" + }, + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "enum_item" + }, + { + "type": "SYMBOL", + "name": "_simple_content" + } + ] + } + } + ] + } + }, + "enum_item": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\item" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_content" + } + ] + } + } + ] + } + }, + "brace_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_content" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "bracket_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_content" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "paren_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_content" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "mixed_group": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": "[" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_content" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "]" + } + ] + } + ] + }, + "key_val_options": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "key_val_pair" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "key_val_pair" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "key_val_pair": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "key" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_content" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "key": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "word" + } + }, + "_word_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_comma_sep_word_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "word" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "text": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_text_fragment" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "text" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_text_fragment": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": "=" + } + ] + } + }, + "word": { + "type": "PATTERN", + "value": "[^\\s\\\\%\\{\\},\\$\\[\\]\\(\\)=\\#]+" + }, + "param": { + "type": "PATTERN", + "value": "#\\d" + }, + "displayed_equation": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "$$" + }, + { + "type": "STRING", + "value": "\\[" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_content" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "$$" + }, + { + "type": "STRING", + "value": "\\]" + } + ] + } + ] + } + }, + "inline_formula": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "$" + }, + { + "type": "STRING", + "value": "\\(" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_content" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "$" + }, + { + "type": "STRING", + "value": "\\)" + } + ] + } + ] + } + }, + "begin": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\begin" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "bracket_group" + } + } + ] + } + }, + "end": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\end" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "environment": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "begin" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_content" + } + }, + { + "type": "SYMBOL", + "name": "end" + } + ] + } + }, + "caption": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\caption" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bracket_group" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "brace_group" + } + ] + }, + "citation": { + "type": "SEQ", + "members": [ + { + "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": "SYMBOL", + "name": "bracket_group" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bracket_group" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_comma_sep_word_group" + } + ] + }, + "package_include": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\usepackage" + }, + { + "type": "STRING", + "value": "\\RequirePackage" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "key_val_options" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_comma_sep_word_group" + } + ] + }, + "class_include": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\documentclass" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "key_val_options" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_comma_sep_word_group" + } + ] + }, + "biblatex_include": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\addbibresource" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "key_val_options" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_comma_sep_word_group" + } + ] + }, + "graphics_include": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\includegraphics" + }, + { + "type": "STRING", + "value": "\\includesvg" + }, + { + "type": "STRING", + "value": "\\includeinkscape" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "key_val_options" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_comma_sep_word_group" + } + ] + }, + "generic_include": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\include" + }, + { + "type": "STRING", + "value": "\\input" + }, + { + "type": "STRING", + "value": "\\bibliography" + }, + { + "type": "STRING", + "value": "\\verbatiminput" + }, + { + "type": "STRING", + "value": "\\VerbatimInput" + }, + { + "type": "STRING", + "value": "\\subfile" + }, + { + "type": "STRING", + "value": "\\subfileinclude" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_comma_sep_word_group" + } + ] + }, + "import": { + "type": "SEQ", + "members": [ + { + "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": "SYMBOL", + "name": "_word_group" + }, + { + "type": "SYMBOL", + "name": "_word_group" + } + ] + }, + "label_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\label" + }, + { + "type": "SYMBOL", + "name": "_word_group" + } + ] + }, + "label_reference": { + "type": "SEQ", + "members": [ + { + "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": "\\eqref" + }, + { + "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": "SYMBOL", + "name": "_comma_sep_word_group" + } + ] + }, + "label_reference_range": { + "type": "SEQ", + "members": [ + { + "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*" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_word_group" + }, + { + "type": "SYMBOL", + "name": "_word_group" + } + ] + }, + "label_number": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\newlabel" + }, + { + "type": "SYMBOL", + "name": "_word_group" + }, + { + "type": "SYMBOL", + "name": "brace_group" + } + ] + }, + "command_definition": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\newcommand" + }, + { + "type": "STRING", + "value": "\\renewcommand" + }, + { + "type": "STRING", + "value": "\\DeclareRobustCommand" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "PATTERN", + "value": "\\d" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "_generic_command_name" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "SYMBOL", + "name": "brace_group" + } + ] + }, + "math_operator": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\DeclareMathOperator" + }, + { + "type": "STRING", + "value": "\\DeclareMathOperator*" + } + ] + } + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "_generic_command_name" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "SYMBOL", + "name": "brace_group" + } + ] + }, + "glossary_entry_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\newglossaryentry" + }, + { + "type": "SYMBOL", + "name": "_word_group" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "key_val_pair" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "key_val_pair" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "glossary_entry_reference": { + "type": "SEQ", + "members": [ + { + "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": "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "key_val_options" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_word_group" + } + ] + }, + "acronym_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\newacronym" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "key_val_options" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_word_group" + }, + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "SYMBOL", + "name": "brace_group" + } + ] + }, + "theorem_definition": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\newtheorem" + }, + { + "type": "STRING", + "value": "\\declaretheorem" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_word_group" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "SYMBOL", + "name": "brace_group" + } + ] + } + ] + } + ] + } + }, + "generic_command": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_generic_command_name" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "brace_group" + }, + { + "type": "SYMBOL", + "name": "bracket_group" + }, + { + "type": "SYMBOL", + "name": "paren_group" + } + ] + } + } + ] + } + }, + "_generic_command_name": { + "type": "PATTERN", + "value": "\\\\([^\\r\\n]|[@a-zA-Z]+\\*?)?" + } + }, + "extras": [ + { + "type": "SYMBOL", + "name": "whitespace" + }, + { + "type": "SYMBOL", + "name": "comment" + } + ], + "conflicts": [], + "externals": [], + "inline": [], + "supertypes": [] +} + diff --git a/src/node-types.json b/src/node-types.json new file mode 100644 index 000000000..b09eb8bcd --- /dev/null +++ b/src/node-types.json @@ -0,0 +1,2818 @@ +[ + { + "type": "acronym_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + }, + { + "type": "key_val_options", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "begin", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "bracket_group", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "biblatex_include", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "key_val_options", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "brace_group", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_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": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "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": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "bracket_group", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_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": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "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": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "caption", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + }, + { + "type": "bracket_group", + "named": true + } + ] + } + }, + { + "type": "chapter", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "citation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "bracket_group", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "class_include", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "key_val_options", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "command_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + } + ] + } + }, + { + "type": "displayed_equation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_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": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "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": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "document", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_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": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "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": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "end", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "enum_item", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "environment", + "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": "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": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "environment", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "begin", + "named": true + }, + { + "type": "biblatex_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": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "end", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "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": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "generic_command", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "brace_group", + "named": true + }, + { + "type": "bracket_group", + "named": true + }, + { + "type": "paren_group", + "named": true + } + ] + } + }, + { + "type": "glossary_entry_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "key_val_pair", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "glossary_entry_reference", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "key_val_options", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "graphics_include", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "key_val_options", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "import", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "inline_formula", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_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": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "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": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "key", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "key_val_options", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "key_val_pair", + "named": true + } + ] + } + }, + { + "type": "key_val_pair", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_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": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "inline_formula", + "named": true + }, + { + "type": "key", + "named": true + }, + { + "type": "label_definition", + "named": true + }, + { + "type": "label_number", + "named": true + }, + { + "type": "label_reference", + "named": true + }, + { + "type": "label_reference_range", + "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": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "label_definition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "label_number", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "label_reference", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "label_reference_range", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "math_operator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + } + ] + } + }, + { + "type": "mixed_group", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_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": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "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": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "package_include", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "key_val_options", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "paragraph", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "paren_group", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_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": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "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": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "part", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_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": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "section", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "subparagraph", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "subsection", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "subsubsection", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "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": "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": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + } + ] + } + }, + { + "type": "text", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "text", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "theorem_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + }, + { + "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": "\\[", + "named": false + }, + { + "type": "\\]", + "named": false + }, + { + "type": "\\addbibresource", + "named": false + }, + { + "type": "\\begin", + "named": false + }, + { + "type": "\\caption", + "named": false + }, + { + "type": "\\documentclass", + "named": false + }, + { + "type": "\\end", + "named": false + }, + { + "type": "\\item", + "named": false + }, + { + "type": "\\label", + "named": false + }, + { + "type": "\\newacronym", + "named": false + }, + { + "type": "\\newglossaryentry", + "named": false + }, + { + "type": "\\newlabel", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "param", + "named": true + }, + { + "type": "word", + "named": true + }, + { + "type": "{", + "named": false + }, + { + "type": "}", + "named": false + } +] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c new file mode 100644 index 000000000..48e700a0c --- /dev/null +++ b/src/parser.c @@ -0,0 +1,84337 @@ +#include + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + +#define LANGUAGE_VERSION 12 +#define STATE_COUNT 1967 +#define LARGE_STATE_COUNT 472 +#define SYMBOL_COUNT 108 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 49 +#define EXTERNAL_TOKEN_COUNT 0 +#define FIELD_COUNT 0 +#define MAX_ALIAS_SEQUENCE_LENGTH 8 + +enum { + sym__generic_command_name = 1, + sym_whitespace = 2, + sym_comment = 3, + aux_sym_part_token1 = 4, + aux_sym_chapter_token1 = 5, + aux_sym_section_token1 = 6, + aux_sym_subsection_token1 = 7, + aux_sym_subsubsection_token1 = 8, + aux_sym_paragraph_token1 = 9, + aux_sym_subparagraph_token1 = 10, + anon_sym_BSLASHitem = 11, + anon_sym_LBRACK = 12, + anon_sym_RBRACK = 13, + anon_sym_LBRACE = 14, + anon_sym_RBRACE = 15, + anon_sym_LPAREN = 16, + anon_sym_RPAREN = 17, + anon_sym_COMMA = 18, + anon_sym_EQ = 19, + sym_word = 20, + sym_param = 21, + anon_sym_DOLLAR_DOLLAR = 22, + anon_sym_BSLASH_LBRACK = 23, + anon_sym_BSLASH_RBRACK = 24, + anon_sym_DOLLAR = 25, + anon_sym_BSLASH_LPAREN = 26, + anon_sym_BSLASH_RPAREN = 27, + 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, + anon_sym_BSLASHaddbibresource = 34, + aux_sym_graphics_include_token1 = 35, + aux_sym_generic_include_token1 = 36, + aux_sym_import_token1 = 37, + anon_sym_BSLASHlabel = 38, + aux_sym_label_reference_token1 = 39, + aux_sym_label_reference_range_token1 = 40, + anon_sym_BSLASHnewlabel = 41, + aux_sym_command_definition_token1 = 42, + aux_sym_command_definition_token2 = 43, + aux_sym_math_operator_token1 = 44, + anon_sym_BSLASHnewglossaryentry = 45, + aux_sym_glossary_entry_reference_token1 = 46, + anon_sym_BSLASHnewacronym = 47, + aux_sym_theorem_definition_token1 = 48, + sym_document = 49, + sym__simple_content = 50, + sym__content = 51, + sym_part = 52, + sym_chapter = 53, + sym_section = 54, + sym_subsection = 55, + sym_subsubsection = 56, + sym_paragraph = 57, + sym_subparagraph = 58, + sym_enum_item = 59, + sym_brace_group = 60, + sym_bracket_group = 61, + sym_paren_group = 62, + sym_mixed_group = 63, + sym_key_val_options = 64, + sym_key_val_pair = 65, + sym_key = 66, + sym__word_group = 67, + sym__comma_sep_word_group = 68, + sym_text = 69, + sym__text_fragment = 70, + sym_displayed_equation = 71, + sym_inline_formula = 72, + sym_begin = 73, + sym_end = 74, + sym_environment = 75, + sym_caption = 76, + sym_citation = 77, + sym_package_include = 78, + sym_class_include = 79, + sym_biblatex_include = 80, + sym_graphics_include = 81, + sym_import = 82, + sym_label_definition = 83, + sym_label_reference = 84, + sym_label_reference_range = 85, + sym_label_number = 86, + sym_command_definition = 87, + sym_math_operator = 88, + sym_glossary_entry_definition = 89, + sym_glossary_entry_reference = 90, + sym_acronym_definition = 91, + sym_theorem_definition = 92, + sym_generic_command = 93, + aux_sym_document_repeat1 = 94, + aux_sym_part_repeat1 = 95, + aux_sym_chapter_repeat1 = 96, + aux_sym_section_repeat1 = 97, + aux_sym_subsection_repeat1 = 98, + aux_sym_subsubsection_repeat1 = 99, + aux_sym_paragraph_repeat1 = 100, + aux_sym_subparagraph_repeat1 = 101, + aux_sym_enum_item_repeat1 = 102, + aux_sym_key_val_options_repeat1 = 103, + aux_sym_key_repeat1 = 104, + aux_sym__comma_sep_word_group_repeat1 = 105, + aux_sym_begin_repeat1 = 106, + aux_sym_generic_command_repeat1 = 107, +}; + +static const char *ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym__generic_command_name] = "_generic_command_name", + [sym_whitespace] = "whitespace", + [sym_comment] = "comment", + [aux_sym_part_token1] = "part_token1", + [aux_sym_chapter_token1] = "chapter_token1", + [aux_sym_section_token1] = "section_token1", + [aux_sym_subsection_token1] = "subsection_token1", + [aux_sym_subsubsection_token1] = "subsubsection_token1", + [aux_sym_paragraph_token1] = "paragraph_token1", + [aux_sym_subparagraph_token1] = "subparagraph_token1", + [anon_sym_BSLASHitem] = "\\item", + [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] = "word", + [sym_param] = "param", + [anon_sym_DOLLAR_DOLLAR] = "$$", + [anon_sym_BSLASH_LBRACK] = "\\[", + [anon_sym_BSLASH_RBRACK] = "\\]", + [anon_sym_DOLLAR] = "$", + [anon_sym_BSLASH_LPAREN] = "\\(", + [anon_sym_BSLASH_RPAREN] = "\\)", + [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_BSLASHdocumentclass] = "\\documentclass", + [anon_sym_BSLASHaddbibresource] = "\\addbibresource", + [aux_sym_graphics_include_token1] = "graphics_include_token1", + [aux_sym_generic_include_token1] = "generic_include_token1", + [aux_sym_import_token1] = "import_token1", + [anon_sym_BSLASHlabel] = "\\label", + [aux_sym_label_reference_token1] = "label_reference_token1", + [aux_sym_label_reference_range_token1] = "label_reference_range_token1", + [anon_sym_BSLASHnewlabel] = "\\newlabel", + [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_BSLASHnewglossaryentry] = "\\newglossaryentry", + [aux_sym_glossary_entry_reference_token1] = "glossary_entry_reference_token1", + [anon_sym_BSLASHnewacronym] = "\\newacronym", + [aux_sym_theorem_definition_token1] = "theorem_definition_token1", + [sym_document] = "document", + [sym__simple_content] = "_simple_content", + [sym__content] = "_content", + [sym_part] = "part", + [sym_chapter] = "chapter", + [sym_section] = "section", + [sym_subsection] = "subsection", + [sym_subsubsection] = "subsubsection", + [sym_paragraph] = "paragraph", + [sym_subparagraph] = "subparagraph", + [sym_enum_item] = "enum_item", + [sym_brace_group] = "brace_group", + [sym_bracket_group] = "bracket_group", + [sym_paren_group] = "paren_group", + [sym_mixed_group] = "mixed_group", + [sym_key_val_options] = "key_val_options", + [sym_key_val_pair] = "key_val_pair", + [sym_key] = "key", + [sym__word_group] = "_word_group", + [sym__comma_sep_word_group] = "_comma_sep_word_group", + [sym_text] = "text", + [sym__text_fragment] = "_text_fragment", + [sym_displayed_equation] = "displayed_equation", + [sym_inline_formula] = "inline_formula", + [sym_begin] = "begin", + [sym_end] = "end", + [sym_environment] = "environment", + [sym_caption] = "caption", + [sym_citation] = "citation", + [sym_package_include] = "package_include", + [sym_class_include] = "class_include", + [sym_biblatex_include] = "biblatex_include", + [sym_graphics_include] = "graphics_include", + [sym_import] = "import", + [sym_label_definition] = "label_definition", + [sym_label_reference] = "label_reference", + [sym_label_reference_range] = "label_reference_range", + [sym_label_number] = "label_number", + [sym_command_definition] = "command_definition", + [sym_math_operator] = "math_operator", + [sym_glossary_entry_definition] = "glossary_entry_definition", + [sym_glossary_entry_reference] = "glossary_entry_reference", + [sym_acronym_definition] = "acronym_definition", + [sym_theorem_definition] = "theorem_definition", + [sym_generic_command] = "generic_command", + [aux_sym_document_repeat1] = "document_repeat1", + [aux_sym_part_repeat1] = "part_repeat1", + [aux_sym_chapter_repeat1] = "chapter_repeat1", + [aux_sym_section_repeat1] = "section_repeat1", + [aux_sym_subsection_repeat1] = "subsection_repeat1", + [aux_sym_subsubsection_repeat1] = "subsubsection_repeat1", + [aux_sym_paragraph_repeat1] = "paragraph_repeat1", + [aux_sym_subparagraph_repeat1] = "subparagraph_repeat1", + [aux_sym_enum_item_repeat1] = "enum_item_repeat1", + [aux_sym_key_val_options_repeat1] = "key_val_options_repeat1", + [aux_sym_key_repeat1] = "key_repeat1", + [aux_sym__comma_sep_word_group_repeat1] = "_comma_sep_word_group_repeat1", + [aux_sym_begin_repeat1] = "begin_repeat1", + [aux_sym_generic_command_repeat1] = "generic_command_repeat1", +}; + +static TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym__generic_command_name] = sym__generic_command_name, + [sym_whitespace] = sym_whitespace, + [sym_comment] = sym_comment, + [aux_sym_part_token1] = aux_sym_part_token1, + [aux_sym_chapter_token1] = aux_sym_chapter_token1, + [aux_sym_section_token1] = aux_sym_section_token1, + [aux_sym_subsection_token1] = aux_sym_subsection_token1, + [aux_sym_subsubsection_token1] = aux_sym_subsubsection_token1, + [aux_sym_paragraph_token1] = aux_sym_paragraph_token1, + [aux_sym_subparagraph_token1] = aux_sym_subparagraph_token1, + [anon_sym_BSLASHitem] = anon_sym_BSLASHitem, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_EQ] = anon_sym_EQ, + [sym_word] = sym_word, + [sym_param] = sym_param, + [anon_sym_DOLLAR_DOLLAR] = anon_sym_DOLLAR_DOLLAR, + [anon_sym_BSLASH_LBRACK] = anon_sym_BSLASH_LBRACK, + [anon_sym_BSLASH_RBRACK] = anon_sym_BSLASH_RBRACK, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [anon_sym_BSLASH_LPAREN] = anon_sym_BSLASH_LPAREN, + [anon_sym_BSLASH_RPAREN] = anon_sym_BSLASH_RPAREN, + [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_BSLASHdocumentclass] = anon_sym_BSLASHdocumentclass, + [anon_sym_BSLASHaddbibresource] = anon_sym_BSLASHaddbibresource, + [aux_sym_graphics_include_token1] = aux_sym_graphics_include_token1, + [aux_sym_generic_include_token1] = aux_sym_generic_include_token1, + [aux_sym_import_token1] = aux_sym_import_token1, + [anon_sym_BSLASHlabel] = anon_sym_BSLASHlabel, + [aux_sym_label_reference_token1] = aux_sym_label_reference_token1, + [aux_sym_label_reference_range_token1] = aux_sym_label_reference_range_token1, + [anon_sym_BSLASHnewlabel] = anon_sym_BSLASHnewlabel, + [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_BSLASHnewglossaryentry] = anon_sym_BSLASHnewglossaryentry, + [aux_sym_glossary_entry_reference_token1] = aux_sym_glossary_entry_reference_token1, + [anon_sym_BSLASHnewacronym] = anon_sym_BSLASHnewacronym, + [aux_sym_theorem_definition_token1] = aux_sym_theorem_definition_token1, + [sym_document] = sym_document, + [sym__simple_content] = sym__simple_content, + [sym__content] = sym__content, + [sym_part] = sym_part, + [sym_chapter] = sym_chapter, + [sym_section] = sym_section, + [sym_subsection] = sym_subsection, + [sym_subsubsection] = sym_subsubsection, + [sym_paragraph] = sym_paragraph, + [sym_subparagraph] = sym_subparagraph, + [sym_enum_item] = sym_enum_item, + [sym_brace_group] = sym_brace_group, + [sym_bracket_group] = sym_bracket_group, + [sym_paren_group] = sym_paren_group, + [sym_mixed_group] = sym_mixed_group, + [sym_key_val_options] = sym_key_val_options, + [sym_key_val_pair] = sym_key_val_pair, + [sym_key] = sym_key, + [sym__word_group] = sym__word_group, + [sym__comma_sep_word_group] = sym__comma_sep_word_group, + [sym_text] = sym_text, + [sym__text_fragment] = sym__text_fragment, + [sym_displayed_equation] = sym_displayed_equation, + [sym_inline_formula] = sym_inline_formula, + [sym_begin] = sym_begin, + [sym_end] = sym_end, + [sym_environment] = sym_environment, + [sym_caption] = sym_caption, + [sym_citation] = sym_citation, + [sym_package_include] = sym_package_include, + [sym_class_include] = sym_class_include, + [sym_biblatex_include] = sym_biblatex_include, + [sym_graphics_include] = sym_graphics_include, + [sym_import] = sym_import, + [sym_label_definition] = sym_label_definition, + [sym_label_reference] = sym_label_reference, + [sym_label_reference_range] = sym_label_reference_range, + [sym_label_number] = sym_label_number, + [sym_command_definition] = sym_command_definition, + [sym_math_operator] = sym_math_operator, + [sym_glossary_entry_definition] = sym_glossary_entry_definition, + [sym_glossary_entry_reference] = sym_glossary_entry_reference, + [sym_acronym_definition] = sym_acronym_definition, + [sym_theorem_definition] = sym_theorem_definition, + [sym_generic_command] = sym_generic_command, + [aux_sym_document_repeat1] = aux_sym_document_repeat1, + [aux_sym_part_repeat1] = aux_sym_part_repeat1, + [aux_sym_chapter_repeat1] = aux_sym_chapter_repeat1, + [aux_sym_section_repeat1] = aux_sym_section_repeat1, + [aux_sym_subsection_repeat1] = aux_sym_subsection_repeat1, + [aux_sym_subsubsection_repeat1] = aux_sym_subsubsection_repeat1, + [aux_sym_paragraph_repeat1] = aux_sym_paragraph_repeat1, + [aux_sym_subparagraph_repeat1] = aux_sym_subparagraph_repeat1, + [aux_sym_enum_item_repeat1] = aux_sym_enum_item_repeat1, + [aux_sym_key_val_options_repeat1] = aux_sym_key_val_options_repeat1, + [aux_sym_key_repeat1] = aux_sym_key_repeat1, + [aux_sym__comma_sep_word_group_repeat1] = aux_sym__comma_sep_word_group_repeat1, + [aux_sym_begin_repeat1] = aux_sym_begin_repeat1, + [aux_sym_generic_command_repeat1] = aux_sym_generic_command_repeat1, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym__generic_command_name] = { + .visible = false, + .named = true, + }, + [sym_whitespace] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [aux_sym_part_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_chapter_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_section_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_subsection_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_subsubsection_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_paragraph_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_subparagraph_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_BSLASHitem] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [sym_word] = { + .visible = true, + .named = true, + }, + [sym_param] = { + .visible = true, + .named = true, + }, + [anon_sym_DOLLAR_DOLLAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHbegin] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHend] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcaption] = { + .visible = true, + .named = false, + }, + [aux_sym_citation_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_package_include_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_BSLASHdocumentclass] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHaddbibresource] = { + .visible = true, + .named = false, + }, + [aux_sym_graphics_include_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_generic_include_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_import_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_BSLASHlabel] = { + .visible = true, + .named = false, + }, + [aux_sym_label_reference_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_label_reference_range_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_BSLASHnewlabel] = { + .visible = true, + .named = false, + }, + [aux_sym_command_definition_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_command_definition_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_math_operator_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_BSLASHnewglossaryentry] = { + .visible = true, + .named = false, + }, + [aux_sym_glossary_entry_reference_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_BSLASHnewacronym] = { + .visible = true, + .named = false, + }, + [aux_sym_theorem_definition_token1] = { + .visible = false, + .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_key] = { + .visible = true, + .named = true, + }, + [sym__word_group] = { + .visible = false, + .named = true, + }, + [sym__comma_sep_word_group] = { + .visible = false, + .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_biblatex_include] = { + .visible = true, + .named = true, + }, + [sym_graphics_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_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_theorem_definition] = { + .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_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__comma_sep_word_group_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_begin_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_generic_command_repeat1] = { + .visible = false, + .named = false, + }, +}; + +static TSSymbol ts_alias_sequences[1][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, +}; + +static uint16_t ts_non_terminal_alias_map[] = { + 0, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(19); + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ')') ADVANCE(42); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(102); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); + if (lookahead != 0) ADVANCE(45); + END_STATE(); + case 1: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ']' && + lookahead != '}') ADVANCE(45); + END_STATE(); + case 2: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(108); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ']' && + lookahead != '}') ADVANCE(45); + END_STATE(); + case 3: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(104); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ']' && + lookahead != '}') ADVANCE(45); + END_STATE(); + case 4: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(106); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ']' && + lookahead != '}') ADVANCE(45); + END_STATE(); + case 5: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')') ADVANCE(45); + END_STATE(); + case 6: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(112); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')') ADVANCE(45); + END_STATE(); + case 7: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(116); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')') ADVANCE(45); + END_STATE(); + case 8: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(111); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')') ADVANCE(45); + END_STATE(); + case 9: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(110); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')') ADVANCE(45); + END_STATE(); + case 10: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')') ADVANCE(45); + END_STATE(); + case 11: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')') ADVANCE(45); + END_STATE(); + case 12: + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(117); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0 && + lookahead != ')') ADVANCE(45); + END_STATE(); + case 13: + if (lookahead == '%') ADVANCE(15); + if (lookahead == '\\') ADVANCE(559); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); + END_STATE(); + case 14: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); + END_STATE(); + case 15: + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(21); + END_STATE(); + case 16: + if (eof) ADVANCE(19); + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ')') ADVANCE(42); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0) ADVANCE(45); + END_STATE(); + case 17: + if (eof) ADVANCE(19); + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ')') ADVANCE(42); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(105); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0) ADVANCE(45); + END_STATE(); + case 18: + if (eof) ADVANCE(19); + if (lookahead == '#') ADVANCE(14); + if (lookahead == '$') ADVANCE(50); + if (lookahead == '%') ADVANCE(15); + if (lookahead == '(') ADVANCE(41); + if (lookahead == ')') ADVANCE(42); + if (lookahead == ',') ADVANCE(43); + if (lookahead == '=') ADVANCE(44); + if (lookahead == '[') ADVANCE(37); + if (lookahead == '\\') ADVANCE(107); + if (lookahead == ']') ADVANCE(38); + if (lookahead == '{') ADVANCE(39); + if (lookahead == '}') ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + if (lookahead != 0) ADVANCE(45); + END_STATE(); + case 19: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 20: + ACCEPT_TOKEN(sym_whitespace); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(20); + END_STATE(); + case 21: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(21); + END_STATE(); + case 22: + ACCEPT_TOKEN(aux_sym_part_token1); + END_STATE(); + case 23: + ACCEPT_TOKEN(aux_sym_part_token1); + if (lookahead == '*') ADVANCE(22); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 24: + ACCEPT_TOKEN(aux_sym_chapter_token1); + END_STATE(); + case 25: + ACCEPT_TOKEN(aux_sym_chapter_token1); + if (lookahead == '*') ADVANCE(24); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 26: + ACCEPT_TOKEN(aux_sym_section_token1); + END_STATE(); + case 27: + ACCEPT_TOKEN(aux_sym_section_token1); + if (lookahead == '*') ADVANCE(26); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 28: + ACCEPT_TOKEN(aux_sym_subsection_token1); + END_STATE(); + case 29: + ACCEPT_TOKEN(aux_sym_subsection_token1); + if (lookahead == '*') ADVANCE(28); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 30: + ACCEPT_TOKEN(aux_sym_subsubsection_token1); + END_STATE(); + case 31: + ACCEPT_TOKEN(aux_sym_subsubsection_token1); + if (lookahead == '*') ADVANCE(30); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 32: + ACCEPT_TOKEN(aux_sym_paragraph_token1); + END_STATE(); + case 33: + ACCEPT_TOKEN(aux_sym_paragraph_token1); + if (lookahead == '*') ADVANCE(32); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 34: + ACCEPT_TOKEN(aux_sym_subparagraph_token1); + END_STATE(); + case 35: + ACCEPT_TOKEN(aux_sym_subparagraph_token1); + if (lookahead == '*') ADVANCE(34); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 36: + ACCEPT_TOKEN(anon_sym_BSLASHitem); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 37: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 38: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 39: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 40: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 41: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 42: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 43: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 44: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 45: + 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(45); + END_STATE(); + case 46: + ACCEPT_TOKEN(sym_param); + END_STATE(); + case 47: + ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); + END_STATE(); + case 48: + ACCEPT_TOKEN(anon_sym_BSLASH_LBRACK); + END_STATE(); + case 49: + ACCEPT_TOKEN(anon_sym_BSLASH_RBRACK); + END_STATE(); + case 50: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '$') ADVANCE(47); + END_STATE(); + case 51: + ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); + END_STATE(); + case 52: + ACCEPT_TOKEN(anon_sym_BSLASH_RPAREN); + END_STATE(); + case 53: + ACCEPT_TOKEN(anon_sym_BSLASHbegin); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 54: + ACCEPT_TOKEN(anon_sym_BSLASHend); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_BSLASHcaption); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 56: + ACCEPT_TOKEN(aux_sym_citation_token1); + END_STATE(); + case 57: + ACCEPT_TOKEN(aux_sym_citation_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(533); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 58: + ACCEPT_TOKEN(aux_sym_citation_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(266); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 59: + ACCEPT_TOKEN(aux_sym_citation_token1); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 60: + ACCEPT_TOKEN(aux_sym_citation_token1); + if (lookahead == '*') ADVANCE(56); + if (lookahead == 'a') ADVANCE(333); + if (lookahead == 'd') ADVANCE(166); + if (lookahead == 'p') ADVANCE(63); + if (lookahead == 't') ADVANCE(61); + if (lookahead == 'u') ADVANCE(460); + if (lookahead == 'y') ADVANCE(265); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 61: + ACCEPT_TOKEN(aux_sym_citation_token1); + if (lookahead == '*') ADVANCE(56); + if (lookahead == 'e') ADVANCE(550); + if (lookahead == 'i') ADVANCE(522); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 62: + ACCEPT_TOKEN(aux_sym_citation_token1); + if (lookahead == '*') ADVANCE(56); + if (lookahead == 'p') ADVANCE(151); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 63: + ACCEPT_TOKEN(aux_sym_citation_token1); + if (lookahead == '*') ADVANCE(56); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 64: + ACCEPT_TOKEN(aux_sym_package_include_token1); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_BSLASHdocumentclass); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_BSLASHaddbibresource); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 67: + ACCEPT_TOKEN(aux_sym_graphics_include_token1); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 68: + ACCEPT_TOKEN(aux_sym_generic_include_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(463); + if (lookahead == 'g') ADVANCE(466); + if (lookahead == 'i') ADVANCE(387); + if (lookahead == 's') ADVANCE(545); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 69: + ACCEPT_TOKEN(aux_sym_generic_include_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(463); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 70: + ACCEPT_TOKEN(aux_sym_generic_include_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(397); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 71: + ACCEPT_TOKEN(aux_sym_generic_include_token1); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 72: + ACCEPT_TOKEN(aux_sym_import_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(463); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 73: + ACCEPT_TOKEN(aux_sym_import_token1); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_BSLASHlabel); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(431); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 75: + ACCEPT_TOKEN(aux_sym_label_reference_token1); + END_STATE(); + case 76: + ACCEPT_TOKEN(aux_sym_label_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(77); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 77: + ACCEPT_TOKEN(aux_sym_label_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 78: + ACCEPT_TOKEN(aux_sym_label_reference_token1); + if (lookahead == '*') ADVANCE(75); + if (lookahead == 'r') ADVANCE(144); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 79: + ACCEPT_TOKEN(aux_sym_label_reference_range_token1); + END_STATE(); + case 80: + ACCEPT_TOKEN(aux_sym_label_reference_range_token1); + if (lookahead == '*') ADVANCE(79); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_BSLASHnewlabel); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 82: + ACCEPT_TOKEN(aux_sym_command_definition_token1); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 83: + ACCEPT_TOKEN(aux_sym_command_definition_token2); + END_STATE(); + case 84: + ACCEPT_TOKEN(aux_sym_math_operator_token1); + END_STATE(); + case 85: + ACCEPT_TOKEN(aux_sym_math_operator_token1); + if (lookahead == '*') ADVANCE(84); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_BSLASHnewglossaryentry); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 87: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'd') ADVANCE(248); + if (lookahead == 'e') ADVANCE(392); + if (lookahead == 'f') ADVANCE(310); + if (lookahead == 'l') ADVANCE(312); + if (lookahead == 'n') ADVANCE(162); + if (lookahead == 'p') ADVANCE(331); + if (lookahead == 's') ADVANCE(553); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(486); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 88: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'd') ADVANCE(249); + if (lookahead == 'e') ADVANCE(392); + if (lookahead == 'f') ADVANCE(310); + if (lookahead == 'n') ADVANCE(162); + if (lookahead == 'p') ADVANCE(331); + if (lookahead == 's') ADVANCE(553); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(486); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 89: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'd') ADVANCE(249); + if (lookahead == 'f') ADVANCE(310); + if (lookahead == 'n') ADVANCE(162); + if (lookahead == 'p') ADVANCE(331); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(486); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 90: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(94); + if (lookahead == 'l') ADVANCE(94); + if (lookahead == 'p') ADVANCE(98); + if (lookahead == 'r') ADVANCE(278); + if (lookahead == 's') ADVANCE(94); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 91: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(94); + if (lookahead == 'l') ADVANCE(94); + if (lookahead == 'r') ADVANCE(278); + if (lookahead == 's') ADVANCE(94); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 92: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(98); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 93: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(92); + if (lookahead == 'v') ADVANCE(98); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 94: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(98); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 95: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(330); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 96: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(343); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 97: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(462); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 98: + ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_BSLASHnewacronym); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 100: + ACCEPT_TOKEN(aux_sym_theorem_definition_token1); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 101: + ACCEPT_TOKEN(sym__generic_command_name); + END_STATE(); + case 102: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == ')') ADVANCE(52); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(238); + if (lookahead == '[') ADVANCE(48); + if (lookahead == ']') ADVANCE(49); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(218); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(365); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(132); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(243); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(273); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 103: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == ')') ADVANCE(52); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == ']') ADVANCE(49); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(132); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(244); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 104: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == ')') ADVANCE(52); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(132); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(244); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 105: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == ')') ADVANCE(52); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(132); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(244); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 106: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == ']') ADVANCE(49); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(132); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(244); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 107: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == ']') ADVANCE(49); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(132); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(244); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 108: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(132); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(244); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 109: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(132); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(244); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 110: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(136); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(244); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 111: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(367); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(139); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 112: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(136); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(355); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 113: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(136); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(244); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 114: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(136); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(356); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 115: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(136); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(357); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 116: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(139); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(357); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 117: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '(') ADVANCE(51); + if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'C') ADVANCE(308); + if (lookahead == 'D') ADVANCE(215); + if (lookahead == 'G') ADVANCE(122); + if (lookahead == 'P') ADVANCE(128); + if (lookahead == 'R') ADVANCE(216); + if (lookahead == 'S') ADVANCE(359); + if (lookahead == 'T') ADVANCE(217); + if (lookahead == 'V') ADVANCE(399); + if (lookahead == '[') ADVANCE(48); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'b') ADVANCE(219); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'f') ADVANCE(383); + if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'p') ADVANCE(139); + if (lookahead == 'r') ADVANCE(220); + if (lookahead == 's') ADVANCE(358); + if (lookahead == 't') ADVANCE(217); + if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'v') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + END_STATE(); + case 118: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'C') ADVANCE(126); + if (lookahead == 'c') ADVANCE(91); + if (lookahead == 'u') ADVANCE(502); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 119: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'C') ADVANCE(403); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 120: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'C') ADVANCE(472); + if (lookahead == 'c') ADVANCE(472); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 121: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'I') ADVANCE(391); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 122: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'L') ADVANCE(127); + if (lookahead == 'l') ADVANCE(476); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 123: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'M') ADVANCE(152); + if (lookahead == 'R') ADVANCE(406); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 124: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'O') ADVANCE(433); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 125: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'P') ADVANCE(143); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 126: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'R') ADVANCE(278); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 127: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'S') ADVANCE(89); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 128: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(454); + if (lookahead == 'n') ADVANCE(401); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 129: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(425); + if (lookahead == 'h') ADVANCE(153); + if (lookahead == 'i') ADVANCE(510); + if (lookahead == 'r') ADVANCE(221); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 130: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(425); + if (lookahead == 'i') ADVANCE(510); + if (lookahead == 'r') ADVANCE(221); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 131: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(370); + if (lookahead == 'e') ADVANCE(546); + if (lookahead == 'o') ADVANCE(186); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 132: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(287); + if (lookahead == 'n') ADVANCE(401); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 133: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(286); + if (lookahead == 'e') ADVANCE(396); + if (lookahead == 't') ADVANCE(23); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 134: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(286); + if (lookahead == 'e') ADVANCE(396); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 135: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'c') ADVANCE(385); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 136: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(288); + if (lookahead == 'n') ADVANCE(401); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 137: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(449); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 138: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(374); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 139: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(289); + if (lookahead == 'n') ADVANCE(401); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 140: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(192); + if (lookahead == 'c') ADVANCE(403); + if (lookahead == 'g') ADVANCE(344); + if (lookahead == 'l') ADVANCE(154); + if (lookahead == 't') ADVANCE(301); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(424); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 142: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(427); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(188); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 144: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(390); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 145: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(428); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 146: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(429); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 147: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(443); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 148: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(389); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 149: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(448); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 150: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(330); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 151: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(446); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 152: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(506); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(435); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 154: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(179); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 155: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(290); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(508); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 157: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(485); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 158: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(459); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 159: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(434); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 160: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(514); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 161: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(469); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 162: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(373); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 163: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(292); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 164: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(509); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 165: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(471); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 166: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(516); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'a') ADVANCE(294); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(279); + if (lookahead == 'p') ADVANCE(251); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 169: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(303); + if (lookahead == 'p') ADVANCE(251); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 170: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(305); + if (lookahead == 'p') ADVANCE(251); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 171: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(304); + if (lookahead == 'p') ADVANCE(251); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 172: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(342); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 173: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(311); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 174: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(156); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 175: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(539); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 176: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(490); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 177: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(253); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 178: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(306); + if (lookahead == 'p') ADVANCE(251); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 179: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(260); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 180: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(413); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 181: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(473); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 182: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'b') ADVANCE(164); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 183: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(90); + if (lookahead == 'd') ADVANCE(210); + if (lookahead == 'u') ADVANCE(503); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 184: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(98); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 185: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(537); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 186: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(324); + if (lookahead == 't') ADVANCE(250); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 187: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(324); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 188: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(329); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 189: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(340); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 190: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(341); + if (lookahead == 'p') ADVANCE(531); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 191: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(403); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 192: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(458); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 193: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(478); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 194: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(159); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 195: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(236); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 196: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(348); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 197: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(351); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 198: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(352); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 199: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(353); + if (lookahead == 'p') ADVANCE(536); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 200: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(472); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 201: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(325); + if (lookahead == 'r') ADVANCE(241); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 202: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(325); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 203: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(523); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 204: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(326); + if (lookahead == 'f') ADVANCE(527); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 205: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(524); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 206: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(525); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 207: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'c') ADVANCE(354); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 208: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'd') ADVANCE(54); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 209: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'd') ADVANCE(82); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 210: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'd') ADVANCE(173); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 211: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'd') ADVANCE(229); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 212: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'd') ADVANCE(252); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 213: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'd') ADVANCE(235); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 214: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'd') ADVANCE(237); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 215: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(189); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 216: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(438); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 217: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(548); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 218: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(283); + if (lookahead == 'i') ADVANCE(172); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 219: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(283); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 220: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(274); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 221: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(276); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 222: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(98); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 223: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(57); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 224: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(60); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 225: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(120); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 226: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(63); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 227: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(123); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 228: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(125); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 229: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(68); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 230: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(70); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 231: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(58); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 232: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(80); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 233: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(67); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 234: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(64); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 235: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(71); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 236: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(66); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 237: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(280); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 238: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(447); + if (lookahead == 'o') ADVANCE(339); + if (lookahead == 'r') ADVANCE(241); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 239: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(360); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 240: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(547); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 241: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(275); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 242: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(59); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 243: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'm') ADVANCE(137); + if (lookahead == 'u') ADVANCE(168); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 244: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'm') ADVANCE(137); + if (lookahead == 'u') ADVANCE(169); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(430); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 246: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(388); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 247: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(277); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(482); + if (lookahead == 'i') ADVANCE(480); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 249: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(482); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 250: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(187); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 251: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(450); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 252: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(281); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 253: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(332); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 254: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(200); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 255: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(441); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 256: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(487); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 257: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(442); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(364); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(420); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 260: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(334); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 261: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(500); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(451); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 263: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(549); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 264: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(393); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 265: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(147); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 266: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(550); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 267: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(468); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 268: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(395); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 269: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'u') ADVANCE(176); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 270: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(396); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 271: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(206); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 272: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'o') ADVANCE(185); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'e') ADVANCE(475); + if (lookahead == 'o') ADVANCE(339); + if (lookahead == 'r') ADVANCE(241); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 274: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(77); + if (lookahead == 'n') ADVANCE(240); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 275: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(77); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 276: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(78); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 277: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(76); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 278: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(532); + if (lookahead == 'l') ADVANCE(402); + if (lookahead == 's') ADVANCE(302); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 279: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(317); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'p') ADVANCE(158); + if (lookahead == 's') ADVANCE(269); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 280: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(463); + if (lookahead == 'g') ADVANCE(466); + if (lookahead == 'i') ADVANCE(387); + if (lookahead == 's') ADVANCE(545); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 281: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(463); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 282: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'f') ADVANCE(540); + if (lookahead == 'l') ADVANCE(402); + if (lookahead == 's') ADVANCE(302); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 283: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(309); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 284: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(67); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 285: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(95); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 286: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(457); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 287: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(262); + if (lookahead == 'r') ADVANCE(133); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 288: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(262); + if (lookahead == 'r') ADVANCE(134); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 289: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(262); + if (lookahead == 'r') ADVANCE(270); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 290: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(262); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(232); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 292: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(234); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 293: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(465); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 294: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'g') ADVANCE(467); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 295: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'h') ADVANCE(33); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 296: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'h') ADVANCE(124); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 297: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'h') ADVANCE(35); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 298: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'h') ADVANCE(551); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 299: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'h') ADVANCE(319); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 300: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'h') ADVANCE(412); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 301: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'h') ADVANCE(259); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 302: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'h') ADVANCE(418); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 303: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'p') ADVANCE(158); + if (lookahead == 's') ADVANCE(269); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 304: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'p') ADVANCE(158); + if (lookahead == 's') ADVANCE(530); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 305: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'p') ADVANCE(158); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 306: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(376); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 307: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(93); + if (lookahead == 'v') ADVANCE(92); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 308: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(507); + if (lookahead == 'r') ADVANCE(221); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 309: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(377); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 310: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(453); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 311: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(181); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 312: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(378); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 313: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(362); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 314: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(421); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 315: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(375); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 316: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(407); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 317: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(349); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 318: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(408); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 319: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(193); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 320: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(391); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 321: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(414); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 322: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(415); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 323: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(470); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 324: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(515); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 325: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(516); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 326: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'i') ADVANCE(517); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 327: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'k') ADVANCE(98); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 328: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'k') ADVANCE(484); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 329: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'k') ADVANCE(163); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 330: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(98); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 331: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(97); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 332: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(74); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 333: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(557); + if (lookahead == 'u') ADVANCE(519); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 334: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(81); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 335: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(339); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 336: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(95); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 337: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(59); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 338: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(477); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 339: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(187); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 340: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(161); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 341: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(528); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 342: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(314); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 343: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(542); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 344: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(405); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 345: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(432); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 346: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(336); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 347: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(345); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 348: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(157); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 349: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(230); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 350: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(226); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 351: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(538); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 352: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(541); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 353: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(543); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 354: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'l') ADVANCE(165); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 355: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(137); + if (lookahead == 'u') ADVANCE(169); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 356: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(137); + if (lookahead == 'u') ADVANCE(171); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 357: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(137); + if (lookahead == 'u') ADVANCE(170); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 358: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(137); + if (lookahead == 'u') ADVANCE(178); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 359: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(137); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 360: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(36); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 361: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(73); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 362: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(121); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 363: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(99); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 364: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(100); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 365: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(426); + if (lookahead == 'n') ADVANCE(190); + if (lookahead == 't') ADVANCE(239); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 366: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(426); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == 't') ADVANCE(239); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 367: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(426); + if (lookahead == 'n') ADVANCE(199); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 368: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(371); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 369: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(180); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 370: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(225); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 371: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(148); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 372: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(264); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 373: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(222); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 374: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(254); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 375: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(320); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 376: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'm') ADVANCE(437); + if (lookahead == 'n') ADVANCE(197); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 377: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(53); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 378: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(327); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 379: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(55); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 380: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(27); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 381: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(29); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 382: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(31); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 383: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(401); + if (lookahead == 'o') ADVANCE(404); + if (lookahead == 't') ADVANCE(544); + if (lookahead == 'u') ADVANCE(335); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 384: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(208); + if (lookahead == 'q') ADVANCE(451); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 385: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(138); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 386: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(285); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 387: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(328); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 388: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(187); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 389: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(209); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 390: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(291); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 391: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(436); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 392: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(511); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 393: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(526); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 394: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(554); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 395: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(512); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 396: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(202); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 397: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'n') ADVANCE(198); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 398: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(201); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 399: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(339); + if (lookahead == 'r') ADVANCE(241); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 400: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(339); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 401: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(518); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 402: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(386); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 403: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(368); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 404: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(493); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 405: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(483); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 406: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(175); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 407: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(379); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 408: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(380); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 409: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(361); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 410: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(534); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 411: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(394); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 412: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(440); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 413: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(330); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 414: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(381); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 415: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(382); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 416: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(444); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 417: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(455); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 418: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(461); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 419: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(464); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 420: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(474); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 421: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(293); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 422: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'o') ADVANCE(202); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 423: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(98); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 424: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(295); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 425: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(521); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 426: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(417); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 427: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(298); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 428: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(299); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 429: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(297); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 430: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(143); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 431: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(155); + if (lookahead == 'r') ADVANCE(241); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 432: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(330); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 433: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(267); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 434: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(233); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 435: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(513); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 436: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(535); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 437: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p') ADVANCE(419); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 438: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'q') ADVANCE(529); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 439: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'q') ADVANCE(451); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 440: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(63); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 441: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(307); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 442: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(25); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 443: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(62); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 444: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(85); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 445: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(556); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 446: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(59); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(174); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 448: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(555); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 449: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(504); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(187); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 451: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(241); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 452: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(552); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(489); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 454: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(246); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(495); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 456: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(195); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 457: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(141); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 458: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(411); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 459: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(167); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 460: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(337); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 461: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(499); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 462: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(150); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 463: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(409); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 464: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(496); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 465: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(142); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 466: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(145); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 467: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(146); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 468: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(160); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 469: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(227); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 470: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(228); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 471: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 472: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(247); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 473: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(256); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 474: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(258); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 475: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'r') ADVANCE(182); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 476: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(88); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 477: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(87); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 478: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(67); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 479: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(65); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 480: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(423); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 481: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(245); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 482: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(184); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 483: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(491); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 484: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(194); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 485: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(479); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 486: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(255); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 487: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(410); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 488: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(498); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 489: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(520); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 490: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(271); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 491: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 's') ADVANCE(149); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 492: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(98); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 493: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(204); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 494: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(69); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 495: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(73); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 496: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(72); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 497: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(71); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 498: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(119); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 499: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(95); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 500: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(301); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 501: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(59); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 502: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(422); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 503: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(398); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 504: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(187); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 505: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(281); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 506: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(296); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 507: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(223); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 508: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(313); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 509: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(315); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 510: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(224); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 511: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(445); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 512: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(452); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 513: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(257); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 514: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(416); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 515: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(242); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 516: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(226); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 517: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(231); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 518: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(250); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 519: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(300); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 520: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(96); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 521: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(316); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 522: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(350); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 523: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(318); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 524: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(321); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 525: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(322); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 526: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 't') ADVANCE(196); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 527: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(335); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 528: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(211); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 529: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(323); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 530: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(176); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 531: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(494); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 532: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(346); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 533: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(519); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 534: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(456); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 535: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(497); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 536: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(505); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 537: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(372); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 538: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(212); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 539: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(488); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 540: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(347); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 541: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(213); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 542: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(462); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 543: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'u') ADVANCE(214); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 544: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'v') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 545: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'v') ADVANCE(284); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 546: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'w') ADVANCE(140); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 547: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'w') ADVANCE(191); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 548: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'x') ADVANCE(504); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 549: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'x') ADVANCE(492); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 550: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'x') ADVANCE(501); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 551: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'y') ADVANCE(71); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 552: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'y') ADVANCE(86); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 553: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'y') ADVANCE(369); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 554: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'y') ADVANCE(363); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 555: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'y') ADVANCE(268); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 556: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'y') ADVANCE(282); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 557: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (lookahead == 'p' || + lookahead == 't') ADVANCE(59); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 558: + ACCEPT_TOKEN(sym__generic_command_name); + if (lookahead == '*') ADVANCE(101); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + END_STATE(); + case 559: + ACCEPT_TOKEN(sym__generic_command_name); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(101); + 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 = 16}, + [2] = {.lex_state = 17}, + [3] = {.lex_state = 17}, + [4] = {.lex_state = 18}, + [5] = {.lex_state = 18}, + [6] = {.lex_state = 16}, + [7] = {.lex_state = 17}, + [8] = {.lex_state = 17}, + [9] = {.lex_state = 18}, + [10] = {.lex_state = 18}, + [11] = {.lex_state = 17}, + [12] = {.lex_state = 18}, + [13] = {.lex_state = 17}, + [14] = {.lex_state = 18}, + [15] = {.lex_state = 18}, + [16] = {.lex_state = 17}, + [17] = {.lex_state = 17}, + [18] = {.lex_state = 18}, + [19] = {.lex_state = 17}, + [20] = {.lex_state = 17}, + [21] = {.lex_state = 18}, + [22] = {.lex_state = 17}, + [23] = {.lex_state = 18}, + [24] = {.lex_state = 17}, + [25] = {.lex_state = 18}, + [26] = {.lex_state = 17}, + [27] = {.lex_state = 18}, + [28] = {.lex_state = 17}, + [29] = {.lex_state = 18}, + [30] = {.lex_state = 17}, + [31] = {.lex_state = 17}, + [32] = {.lex_state = 18}, + [33] = {.lex_state = 17}, + [34] = {.lex_state = 18}, + [35] = {.lex_state = 17}, + [36] = {.lex_state = 18}, + [37] = {.lex_state = 18}, + [38] = {.lex_state = 17}, + [39] = {.lex_state = 17}, + [40] = {.lex_state = 18}, + [41] = {.lex_state = 18}, + [42] = {.lex_state = 18}, + [43] = {.lex_state = 16}, + [44] = {.lex_state = 2}, + [45] = {.lex_state = 2}, + [46] = {.lex_state = 2}, + [47] = {.lex_state = 16}, + [48] = {.lex_state = 16}, + [49] = {.lex_state = 2}, + [50] = {.lex_state = 16}, + [51] = {.lex_state = 16}, + [52] = {.lex_state = 1}, + [53] = {.lex_state = 16}, + [54] = {.lex_state = 16}, + [55] = {.lex_state = 16}, + [56] = {.lex_state = 2}, + [57] = {.lex_state = 3}, + [58] = {.lex_state = 16}, + [59] = {.lex_state = 4}, + [60] = {.lex_state = 2}, + [61] = {.lex_state = 16}, + [62] = {.lex_state = 16}, + [63] = {.lex_state = 16}, + [64] = {.lex_state = 16}, + [65] = {.lex_state = 2}, + [66] = {.lex_state = 16}, + [67] = {.lex_state = 16}, + [68] = {.lex_state = 16}, + [69] = {.lex_state = 1}, + [70] = {.lex_state = 16}, + [71] = {.lex_state = 2}, + [72] = {.lex_state = 1}, + [73] = {.lex_state = 16}, + [74] = {.lex_state = 2}, + [75] = {.lex_state = 16}, + [76] = {.lex_state = 2}, + [77] = {.lex_state = 16}, + [78] = {.lex_state = 2}, + [79] = {.lex_state = 16}, + [80] = {.lex_state = 2}, + [81] = {.lex_state = 16}, + [82] = {.lex_state = 3}, + [83] = {.lex_state = 2}, + [84] = {.lex_state = 2}, + [85] = {.lex_state = 16}, + [86] = {.lex_state = 2}, + [87] = {.lex_state = 16}, + [88] = {.lex_state = 4}, + [89] = {.lex_state = 2}, + [90] = {.lex_state = 16}, + [91] = {.lex_state = 16}, + [92] = {.lex_state = 16}, + [93] = {.lex_state = 1}, + [94] = {.lex_state = 16}, + [95] = {.lex_state = 2}, + [96] = {.lex_state = 2}, + [97] = {.lex_state = 2}, + [98] = {.lex_state = 16}, + [99] = {.lex_state = 2}, + [100] = {.lex_state = 2}, + [101] = {.lex_state = 16}, + [102] = {.lex_state = 16}, + [103] = {.lex_state = 16}, + [104] = {.lex_state = 16}, + [105] = {.lex_state = 2}, + [106] = {.lex_state = 16}, + [107] = {.lex_state = 16}, + [108] = {.lex_state = 2}, + [109] = {.lex_state = 16}, + [110] = {.lex_state = 16}, + [111] = {.lex_state = 16}, + [112] = {.lex_state = 16}, + [113] = {.lex_state = 2}, + [114] = {.lex_state = 18}, + [115] = {.lex_state = 16}, + [116] = {.lex_state = 18}, + [117] = {.lex_state = 16}, + [118] = {.lex_state = 17}, + [119] = {.lex_state = 18}, + [120] = {.lex_state = 16}, + [121] = {.lex_state = 16}, + [122] = {.lex_state = 17}, + [123] = {.lex_state = 16}, + [124] = {.lex_state = 18}, + [125] = {.lex_state = 18}, + [126] = {.lex_state = 16}, + [127] = {.lex_state = 17}, + [128] = {.lex_state = 16}, + [129] = {.lex_state = 16}, + [130] = {.lex_state = 17}, + [131] = {.lex_state = 16}, + [132] = {.lex_state = 18}, + [133] = {.lex_state = 17}, + [134] = {.lex_state = 18}, + [135] = {.lex_state = 16}, + [136] = {.lex_state = 16}, + [137] = {.lex_state = 17}, + [138] = {.lex_state = 18}, + [139] = {.lex_state = 16}, + [140] = {.lex_state = 16}, + [141] = {.lex_state = 16}, + [142] = {.lex_state = 16}, + [143] = {.lex_state = 16}, + [144] = {.lex_state = 16}, + [145] = {.lex_state = 16}, + [146] = {.lex_state = 16}, + [147] = {.lex_state = 16}, + [148] = {.lex_state = 18}, + [149] = {.lex_state = 17}, + [150] = {.lex_state = 16}, + [151] = {.lex_state = 17}, + [152] = {.lex_state = 17}, + [153] = {.lex_state = 16}, + [154] = {.lex_state = 17}, + [155] = {.lex_state = 18}, + [156] = {.lex_state = 16}, + [157] = {.lex_state = 16}, + [158] = {.lex_state = 16}, + [159] = {.lex_state = 16}, + [160] = {.lex_state = 16}, + [161] = {.lex_state = 16}, + [162] = {.lex_state = 18}, + [163] = {.lex_state = 17}, + [164] = {.lex_state = 16}, + [165] = {.lex_state = 16}, + [166] = {.lex_state = 17}, + [167] = {.lex_state = 16}, + [168] = {.lex_state = 17}, + [169] = {.lex_state = 16}, + [170] = {.lex_state = 18}, + [171] = {.lex_state = 16}, + [172] = {.lex_state = 16}, + [173] = {.lex_state = 16}, + [174] = {.lex_state = 18}, + [175] = {.lex_state = 16}, + [176] = {.lex_state = 17}, + [177] = {.lex_state = 16}, + [178] = {.lex_state = 16}, + [179] = {.lex_state = 17}, + [180] = {.lex_state = 18}, + [181] = {.lex_state = 16}, + [182] = {.lex_state = 16}, + [183] = {.lex_state = 16}, + [184] = {.lex_state = 16}, + [185] = {.lex_state = 16}, + [186] = {.lex_state = 18}, + [187] = {.lex_state = 16}, + [188] = {.lex_state = 17}, + [189] = {.lex_state = 17}, + [190] = {.lex_state = 16}, + [191] = {.lex_state = 16}, + [192] = {.lex_state = 16}, + [193] = {.lex_state = 16}, + [194] = {.lex_state = 18}, + [195] = {.lex_state = 16}, + [196] = {.lex_state = 16}, + [197] = {.lex_state = 17}, + [198] = {.lex_state = 16}, + [199] = {.lex_state = 18}, + [200] = {.lex_state = 16}, + [201] = {.lex_state = 16}, + [202] = {.lex_state = 17}, + [203] = {.lex_state = 18}, + [204] = {.lex_state = 17}, + [205] = {.lex_state = 16}, + [206] = {.lex_state = 18}, + [207] = {.lex_state = 17}, + [208] = {.lex_state = 16}, + [209] = {.lex_state = 17}, + [210] = {.lex_state = 18}, + [211] = {.lex_state = 18}, + [212] = {.lex_state = 16}, + [213] = {.lex_state = 16}, + [214] = {.lex_state = 2}, + [215] = {.lex_state = 16}, + [216] = {.lex_state = 18}, + [217] = {.lex_state = 17}, + [218] = {.lex_state = 18}, + [219] = {.lex_state = 16}, + [220] = {.lex_state = 16}, + [221] = {.lex_state = 16}, + [222] = {.lex_state = 16}, + [223] = {.lex_state = 17}, + [224] = {.lex_state = 17}, + [225] = {.lex_state = 18}, + [226] = {.lex_state = 16}, + [227] = {.lex_state = 18}, + [228] = {.lex_state = 16}, + [229] = {.lex_state = 17}, + [230] = {.lex_state = 18}, + [231] = {.lex_state = 16}, + [232] = {.lex_state = 16}, + [233] = {.lex_state = 16}, + [234] = {.lex_state = 16}, + [235] = {.lex_state = 16}, + [236] = {.lex_state = 16}, + [237] = {.lex_state = 16}, + [238] = {.lex_state = 16}, + [239] = {.lex_state = 16}, + [240] = {.lex_state = 18}, + [241] = {.lex_state = 16}, + [242] = {.lex_state = 17}, + [243] = {.lex_state = 17}, + [244] = {.lex_state = 16}, + [245] = {.lex_state = 17}, + [246] = {.lex_state = 18}, + [247] = {.lex_state = 16}, + [248] = {.lex_state = 18}, + [249] = {.lex_state = 16}, + [250] = {.lex_state = 16}, + [251] = {.lex_state = 16}, + [252] = {.lex_state = 16}, + [253] = {.lex_state = 9}, + [254] = {.lex_state = 17}, + [255] = {.lex_state = 16}, + [256] = {.lex_state = 2}, + [257] = {.lex_state = 16}, + [258] = {.lex_state = 9}, + [259] = {.lex_state = 18}, + [260] = {.lex_state = 16}, + [261] = {.lex_state = 17}, + [262] = {.lex_state = 2}, + [263] = {.lex_state = 17}, + [264] = {.lex_state = 18}, + [265] = {.lex_state = 9}, + [266] = {.lex_state = 2}, + [267] = {.lex_state = 18}, + [268] = {.lex_state = 17}, + [269] = {.lex_state = 9}, + [270] = {.lex_state = 18}, + [271] = {.lex_state = 9}, + [272] = {.lex_state = 17}, + [273] = {.lex_state = 9}, + [274] = {.lex_state = 2}, + [275] = {.lex_state = 16}, + [276] = {.lex_state = 16}, + [277] = {.lex_state = 18}, + [278] = {.lex_state = 2}, + [279] = {.lex_state = 17}, + [280] = {.lex_state = 18}, + [281] = {.lex_state = 16}, + [282] = {.lex_state = 2}, + [283] = {.lex_state = 18}, + [284] = {.lex_state = 17}, + [285] = {.lex_state = 17}, + [286] = {.lex_state = 16}, + [287] = {.lex_state = 2}, + [288] = {.lex_state = 16}, + [289] = {.lex_state = 5}, + [290] = {.lex_state = 9}, + [291] = {.lex_state = 16}, + [292] = {.lex_state = 18}, + [293] = {.lex_state = 9}, + [294] = {.lex_state = 5}, + [295] = {.lex_state = 17}, + [296] = {.lex_state = 2}, + [297] = {.lex_state = 9}, + [298] = {.lex_state = 5}, + [299] = {.lex_state = 2}, + [300] = {.lex_state = 18}, + [301] = {.lex_state = 5}, + [302] = {.lex_state = 5}, + [303] = {.lex_state = 2}, + [304] = {.lex_state = 9}, + [305] = {.lex_state = 17}, + [306] = {.lex_state = 18}, + [307] = {.lex_state = 18}, + [308] = {.lex_state = 17}, + [309] = {.lex_state = 9}, + [310] = {.lex_state = 2}, + [311] = {.lex_state = 5}, + [312] = {.lex_state = 16}, + [313] = {.lex_state = 16}, + [314] = {.lex_state = 16}, + [315] = {.lex_state = 18}, + [316] = {.lex_state = 17}, + [317] = {.lex_state = 2}, + [318] = {.lex_state = 9}, + [319] = {.lex_state = 9}, + [320] = {.lex_state = 5}, + [321] = {.lex_state = 9}, + [322] = {.lex_state = 16}, + [323] = {.lex_state = 16}, + [324] = {.lex_state = 18}, + [325] = {.lex_state = 2}, + [326] = {.lex_state = 18}, + [327] = {.lex_state = 17}, + [328] = {.lex_state = 16}, + [329] = {.lex_state = 6}, + [330] = {.lex_state = 16}, + [331] = {.lex_state = 9}, + [332] = {.lex_state = 17}, + [333] = {.lex_state = 16}, + [334] = {.lex_state = 6}, + [335] = {.lex_state = 6}, + [336] = {.lex_state = 5}, + [337] = {.lex_state = 2}, + [338] = {.lex_state = 17}, + [339] = {.lex_state = 5}, + [340] = {.lex_state = 2}, + [341] = {.lex_state = 18}, + [342] = {.lex_state = 6}, + [343] = {.lex_state = 18}, + [344] = {.lex_state = 17}, + [345] = {.lex_state = 9}, + [346] = {.lex_state = 2}, + [347] = {.lex_state = 5}, + [348] = {.lex_state = 17}, + [349] = {.lex_state = 2}, + [350] = {.lex_state = 17}, + [351] = {.lex_state = 9}, + [352] = {.lex_state = 5}, + [353] = {.lex_state = 9}, + [354] = {.lex_state = 5}, + [355] = {.lex_state = 2}, + [356] = {.lex_state = 6}, + [357] = {.lex_state = 6}, + [358] = {.lex_state = 18}, + [359] = {.lex_state = 18}, + [360] = {.lex_state = 17}, + [361] = {.lex_state = 17}, + [362] = {.lex_state = 2}, + [363] = {.lex_state = 17}, + [364] = {.lex_state = 10}, + [365] = {.lex_state = 18}, + [366] = {.lex_state = 6}, + [367] = {.lex_state = 18}, + [368] = {.lex_state = 18}, + [369] = {.lex_state = 6}, + [370] = {.lex_state = 2}, + [371] = {.lex_state = 5}, + [372] = {.lex_state = 6}, + [373] = {.lex_state = 10}, + [374] = {.lex_state = 9}, + [375] = {.lex_state = 5}, + [376] = {.lex_state = 9}, + [377] = {.lex_state = 2}, + [378] = {.lex_state = 9}, + [379] = {.lex_state = 5}, + [380] = {.lex_state = 10}, + [381] = {.lex_state = 6}, + [382] = {.lex_state = 18}, + [383] = {.lex_state = 17}, + [384] = {.lex_state = 2}, + [385] = {.lex_state = 2}, + [386] = {.lex_state = 17}, + [387] = {.lex_state = 18}, + [388] = {.lex_state = 9}, + [389] = {.lex_state = 17}, + [390] = {.lex_state = 9}, + [391] = {.lex_state = 18}, + [392] = {.lex_state = 9}, + [393] = {.lex_state = 5}, + [394] = {.lex_state = 2}, + [395] = {.lex_state = 10}, + [396] = {.lex_state = 9}, + [397] = {.lex_state = 5}, + [398] = {.lex_state = 9}, + [399] = {.lex_state = 10}, + [400] = {.lex_state = 18}, + [401] = {.lex_state = 18}, + [402] = {.lex_state = 17}, + [403] = {.lex_state = 6}, + [404] = {.lex_state = 2}, + [405] = {.lex_state = 2}, + [406] = {.lex_state = 10}, + [407] = {.lex_state = 5}, + [408] = {.lex_state = 6}, + [409] = {.lex_state = 17}, + [410] = {.lex_state = 5}, + [411] = {.lex_state = 5}, + [412] = {.lex_state = 6}, + [413] = {.lex_state = 5}, + [414] = {.lex_state = 5}, + [415] = {.lex_state = 6}, + [416] = {.lex_state = 11}, + [417] = {.lex_state = 11}, + [418] = {.lex_state = 11}, + [419] = {.lex_state = 10}, + [420] = {.lex_state = 6}, + [421] = {.lex_state = 10}, + [422] = {.lex_state = 10}, + [423] = {.lex_state = 5}, + [424] = {.lex_state = 6}, + [425] = {.lex_state = 10}, + [426] = {.lex_state = 11}, + [427] = {.lex_state = 6}, + [428] = {.lex_state = 11}, + [429] = {.lex_state = 6}, + [430] = {.lex_state = 10}, + [431] = {.lex_state = 6}, + [432] = {.lex_state = 11}, + [433] = {.lex_state = 6}, + [434] = {.lex_state = 10}, + [435] = {.lex_state = 10}, + [436] = {.lex_state = 10}, + [437] = {.lex_state = 7}, + [438] = {.lex_state = 10}, + [439] = {.lex_state = 7}, + [440] = {.lex_state = 10}, + [441] = {.lex_state = 11}, + [442] = {.lex_state = 11}, + [443] = {.lex_state = 11}, + [444] = {.lex_state = 10}, + [445] = {.lex_state = 7}, + [446] = {.lex_state = 11}, + [447] = {.lex_state = 11}, + [448] = {.lex_state = 7}, + [449] = {.lex_state = 11}, + [450] = {.lex_state = 11}, + [451] = {.lex_state = 11}, + [452] = {.lex_state = 7}, + [453] = {.lex_state = 7}, + [454] = {.lex_state = 12}, + [455] = {.lex_state = 12}, + [456] = {.lex_state = 7}, + [457] = {.lex_state = 12}, + [458] = {.lex_state = 7}, + [459] = {.lex_state = 7}, + [460] = {.lex_state = 7}, + [461] = {.lex_state = 7}, + [462] = {.lex_state = 12}, + [463] = {.lex_state = 12}, + [464] = {.lex_state = 12}, + [465] = {.lex_state = 12}, + [466] = {.lex_state = 12}, + [467] = {.lex_state = 8}, + [468] = {.lex_state = 8}, + [469] = {.lex_state = 8}, + [470] = {.lex_state = 8}, + [471] = {.lex_state = 8}, + [472] = {.lex_state = 16}, + [473] = {.lex_state = 16}, + [474] = {.lex_state = 16}, + [475] = {.lex_state = 16}, + [476] = {.lex_state = 9}, + [477] = {.lex_state = 17}, + [478] = {.lex_state = 17}, + [479] = {.lex_state = 2}, + [480] = {.lex_state = 17}, + [481] = {.lex_state = 9}, + [482] = {.lex_state = 18}, + [483] = {.lex_state = 2}, + [484] = {.lex_state = 18}, + [485] = {.lex_state = 18}, + [486] = {.lex_state = 9}, + [487] = {.lex_state = 2}, + [488] = {.lex_state = 16}, + [489] = {.lex_state = 16}, + [490] = {.lex_state = 16}, + [491] = {.lex_state = 16}, + [492] = {.lex_state = 16}, + [493] = {.lex_state = 16}, + [494] = {.lex_state = 16}, + [495] = {.lex_state = 16}, + [496] = {.lex_state = 16}, + [497] = {.lex_state = 5}, + [498] = {.lex_state = 16}, + [499] = {.lex_state = 16}, + [500] = {.lex_state = 16}, + [501] = {.lex_state = 16}, + [502] = {.lex_state = 16}, + [503] = {.lex_state = 16}, + [504] = {.lex_state = 16}, + [505] = {.lex_state = 16}, + [506] = {.lex_state = 16}, + [507] = {.lex_state = 5}, + [508] = {.lex_state = 16}, + [509] = {.lex_state = 16}, + [510] = {.lex_state = 16}, + [511] = {.lex_state = 16}, + [512] = {.lex_state = 16}, + [513] = {.lex_state = 16}, + [514] = {.lex_state = 16}, + [515] = {.lex_state = 16}, + [516] = {.lex_state = 16}, + [517] = {.lex_state = 16}, + [518] = {.lex_state = 16}, + [519] = {.lex_state = 16}, + [520] = {.lex_state = 16}, + [521] = {.lex_state = 16}, + [522] = {.lex_state = 16}, + [523] = {.lex_state = 16}, + [524] = {.lex_state = 5}, + [525] = {.lex_state = 16}, + [526] = {.lex_state = 16}, + [527] = {.lex_state = 16}, + [528] = {.lex_state = 16}, + [529] = {.lex_state = 16}, + [530] = {.lex_state = 16}, + [531] = {.lex_state = 16}, + [532] = {.lex_state = 16}, + [533] = {.lex_state = 16}, + [534] = {.lex_state = 16}, + [535] = {.lex_state = 16}, + [536] = {.lex_state = 16}, + [537] = {.lex_state = 16}, + [538] = {.lex_state = 16}, + [539] = {.lex_state = 16}, + [540] = {.lex_state = 16}, + [541] = {.lex_state = 6}, + [542] = {.lex_state = 2}, + [543] = {.lex_state = 18}, + [544] = {.lex_state = 2}, + [545] = {.lex_state = 6}, + [546] = {.lex_state = 6}, + [547] = {.lex_state = 9}, + [548] = {.lex_state = 2}, + [549] = {.lex_state = 2}, + [550] = {.lex_state = 17}, + [551] = {.lex_state = 16}, + [552] = {.lex_state = 10}, + [553] = {.lex_state = 16}, + [554] = {.lex_state = 16}, + [555] = {.lex_state = 16}, + [556] = {.lex_state = 16}, + [557] = {.lex_state = 16}, + [558] = {.lex_state = 16}, + [559] = {.lex_state = 5}, + [560] = {.lex_state = 16}, + [561] = {.lex_state = 16}, + [562] = {.lex_state = 16}, + [563] = {.lex_state = 16}, + [564] = {.lex_state = 10}, + [565] = {.lex_state = 10}, + [566] = {.lex_state = 16}, + [567] = {.lex_state = 9}, + [568] = {.lex_state = 2}, + [569] = {.lex_state = 18}, + [570] = {.lex_state = 18}, + [571] = {.lex_state = 18}, + [572] = {.lex_state = 18}, + [573] = {.lex_state = 18}, + [574] = {.lex_state = 18}, + [575] = {.lex_state = 18}, + [576] = {.lex_state = 18}, + [577] = {.lex_state = 18}, + [578] = {.lex_state = 18}, + [579] = {.lex_state = 9}, + [580] = {.lex_state = 17}, + [581] = {.lex_state = 9}, + [582] = {.lex_state = 9}, + [583] = {.lex_state = 9}, + [584] = {.lex_state = 9}, + [585] = {.lex_state = 9}, + [586] = {.lex_state = 9}, + [587] = {.lex_state = 9}, + [588] = {.lex_state = 9}, + [589] = {.lex_state = 9}, + [590] = {.lex_state = 9}, + [591] = {.lex_state = 9}, + [592] = {.lex_state = 9}, + [593] = {.lex_state = 9}, + [594] = {.lex_state = 9}, + [595] = {.lex_state = 17}, + [596] = {.lex_state = 9}, + [597] = {.lex_state = 9}, + [598] = {.lex_state = 9}, + [599] = {.lex_state = 9}, + [600] = {.lex_state = 9}, + [601] = {.lex_state = 9}, + [602] = {.lex_state = 9}, + [603] = {.lex_state = 9}, + [604] = {.lex_state = 9}, + [605] = {.lex_state = 9}, + [606] = {.lex_state = 9}, + [607] = {.lex_state = 9}, + [608] = {.lex_state = 9}, + [609] = {.lex_state = 9}, + [610] = {.lex_state = 9}, + [611] = {.lex_state = 9}, + [612] = {.lex_state = 9}, + [613] = {.lex_state = 9}, + [614] = {.lex_state = 9}, + [615] = {.lex_state = 9}, + [616] = {.lex_state = 9}, + [617] = {.lex_state = 9}, + [618] = {.lex_state = 9}, + [619] = {.lex_state = 9}, + [620] = {.lex_state = 9}, + [621] = {.lex_state = 9}, + [622] = {.lex_state = 9}, + [623] = {.lex_state = 9}, + [624] = {.lex_state = 9}, + [625] = {.lex_state = 9}, + [626] = {.lex_state = 9}, + [627] = {.lex_state = 9}, + [628] = {.lex_state = 9}, + [629] = {.lex_state = 2}, + [630] = {.lex_state = 2}, + [631] = {.lex_state = 17}, + [632] = {.lex_state = 17}, + [633] = {.lex_state = 17}, + [634] = {.lex_state = 17}, + [635] = {.lex_state = 17}, + [636] = {.lex_state = 17}, + [637] = {.lex_state = 17}, + [638] = {.lex_state = 17}, + [639] = {.lex_state = 2}, + [640] = {.lex_state = 17}, + [641] = {.lex_state = 17}, + [642] = {.lex_state = 18}, + [643] = {.lex_state = 17}, + [644] = {.lex_state = 17}, + [645] = {.lex_state = 18}, + [646] = {.lex_state = 18}, + [647] = {.lex_state = 18}, + [648] = {.lex_state = 18}, + [649] = {.lex_state = 2}, + [650] = {.lex_state = 18}, + [651] = {.lex_state = 2}, + [652] = {.lex_state = 17}, + [653] = {.lex_state = 17}, + [654] = {.lex_state = 2}, + [655] = {.lex_state = 18}, + [656] = {.lex_state = 17}, + [657] = {.lex_state = 17}, + [658] = {.lex_state = 17}, + [659] = {.lex_state = 17}, + [660] = {.lex_state = 17}, + [661] = {.lex_state = 17}, + [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 = 17}, + [669] = {.lex_state = 17}, + [670] = {.lex_state = 17}, + [671] = {.lex_state = 18}, + [672] = {.lex_state = 17}, + [673] = {.lex_state = 18}, + [674] = {.lex_state = 18}, + [675] = {.lex_state = 18}, + [676] = {.lex_state = 18}, + [677] = {.lex_state = 18}, + [678] = {.lex_state = 18}, + [679] = {.lex_state = 2}, + [680] = {.lex_state = 17}, + [681] = {.lex_state = 2}, + [682] = {.lex_state = 17}, + [683] = {.lex_state = 17}, + [684] = {.lex_state = 2}, + [685] = {.lex_state = 2}, + [686] = {.lex_state = 18}, + [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 = 18}, + [695] = {.lex_state = 17}, + [696] = {.lex_state = 18}, + [697] = {.lex_state = 18}, + [698] = {.lex_state = 6}, + [699] = {.lex_state = 18}, + [700] = {.lex_state = 18}, + [701] = {.lex_state = 18}, + [702] = {.lex_state = 18}, + [703] = {.lex_state = 18}, + [704] = {.lex_state = 17}, + [705] = {.lex_state = 17}, + [706] = {.lex_state = 18}, + [707] = {.lex_state = 17}, + [708] = {.lex_state = 18}, + [709] = {.lex_state = 2}, + [710] = {.lex_state = 17}, + [711] = {.lex_state = 2}, + [712] = {.lex_state = 17}, + [713] = {.lex_state = 17}, + [714] = {.lex_state = 2}, + [715] = {.lex_state = 2}, + [716] = {.lex_state = 2}, + [717] = {.lex_state = 2}, + [718] = {.lex_state = 2}, + [719] = {.lex_state = 18}, + [720] = {.lex_state = 2}, + [721] = {.lex_state = 2}, + [722] = {.lex_state = 11}, + [723] = {.lex_state = 18}, + [724] = {.lex_state = 18}, + [725] = {.lex_state = 18}, + [726] = {.lex_state = 18}, + [727] = {.lex_state = 2}, + [728] = {.lex_state = 2}, + [729] = {.lex_state = 18}, + [730] = {.lex_state = 17}, + [731] = {.lex_state = 18}, + [732] = {.lex_state = 2}, + [733] = {.lex_state = 2}, + [734] = {.lex_state = 2}, + [735] = {.lex_state = 11}, + [736] = {.lex_state = 2}, + [737] = {.lex_state = 2}, + [738] = {.lex_state = 18}, + [739] = {.lex_state = 2}, + [740] = {.lex_state = 2}, + [741] = {.lex_state = 2}, + [742] = {.lex_state = 11}, + [743] = {.lex_state = 2}, + [744] = {.lex_state = 2}, + [745] = {.lex_state = 2}, + [746] = {.lex_state = 2}, + [747] = {.lex_state = 18}, + [748] = {.lex_state = 2}, + [749] = {.lex_state = 18}, + [750] = {.lex_state = 18}, + [751] = {.lex_state = 18}, + [752] = {.lex_state = 18}, + [753] = {.lex_state = 9}, + [754] = {.lex_state = 2}, + [755] = {.lex_state = 2}, + [756] = {.lex_state = 2}, + [757] = {.lex_state = 2}, + [758] = {.lex_state = 2}, + [759] = {.lex_state = 2}, + [760] = {.lex_state = 2}, + [761] = {.lex_state = 18}, + [762] = {.lex_state = 2}, + [763] = {.lex_state = 2}, + [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 = 18}, + [771] = {.lex_state = 7}, + [772] = {.lex_state = 5}, + [773] = {.lex_state = 10}, + [774] = {.lex_state = 5}, + [775] = {.lex_state = 5}, + [776] = {.lex_state = 5}, + [777] = {.lex_state = 5}, + [778] = {.lex_state = 5}, + [779] = {.lex_state = 5}, + [780] = {.lex_state = 5}, + [781] = {.lex_state = 5}, + [782] = {.lex_state = 5}, + [783] = {.lex_state = 5}, + [784] = {.lex_state = 5}, + [785] = {.lex_state = 5}, + [786] = {.lex_state = 5}, + [787] = {.lex_state = 5}, + [788] = {.lex_state = 5}, + [789] = {.lex_state = 5}, + [790] = {.lex_state = 5}, + [791] = {.lex_state = 5}, + [792] = {.lex_state = 7}, + [793] = {.lex_state = 5}, + [794] = {.lex_state = 5}, + [795] = {.lex_state = 5}, + [796] = {.lex_state = 5}, + [797] = {.lex_state = 5}, + [798] = {.lex_state = 5}, + [799] = {.lex_state = 5}, + [800] = {.lex_state = 5}, + [801] = {.lex_state = 5}, + [802] = {.lex_state = 5}, + [803] = {.lex_state = 5}, + [804] = {.lex_state = 5}, + [805] = {.lex_state = 5}, + [806] = {.lex_state = 5}, + [807] = {.lex_state = 5}, + [808] = {.lex_state = 5}, + [809] = {.lex_state = 5}, + [810] = {.lex_state = 5}, + [811] = {.lex_state = 5}, + [812] = {.lex_state = 5}, + [813] = {.lex_state = 5}, + [814] = {.lex_state = 5}, + [815] = {.lex_state = 5}, + [816] = {.lex_state = 5}, + [817] = {.lex_state = 7}, + [818] = {.lex_state = 5}, + [819] = {.lex_state = 5}, + [820] = {.lex_state = 5}, + [821] = {.lex_state = 5}, + [822] = {.lex_state = 5}, + [823] = {.lex_state = 5}, + [824] = {.lex_state = 5}, + [825] = {.lex_state = 6}, + [826] = {.lex_state = 6}, + [827] = {.lex_state = 6}, + [828] = {.lex_state = 6}, + [829] = {.lex_state = 6}, + [830] = {.lex_state = 6}, + [831] = {.lex_state = 6}, + [832] = {.lex_state = 6}, + [833] = {.lex_state = 6}, + [834] = {.lex_state = 6}, + [835] = {.lex_state = 6}, + [836] = {.lex_state = 6}, + [837] = {.lex_state = 6}, + [838] = {.lex_state = 6}, + [839] = {.lex_state = 6}, + [840] = {.lex_state = 6}, + [841] = {.lex_state = 6}, + [842] = {.lex_state = 6}, + [843] = {.lex_state = 6}, + [844] = {.lex_state = 6}, + [845] = {.lex_state = 11}, + [846] = {.lex_state = 6}, + [847] = {.lex_state = 6}, + [848] = {.lex_state = 6}, + [849] = {.lex_state = 6}, + [850] = {.lex_state = 6}, + [851] = {.lex_state = 6}, + [852] = {.lex_state = 6}, + [853] = {.lex_state = 6}, + [854] = {.lex_state = 6}, + [855] = {.lex_state = 12}, + [856] = {.lex_state = 6}, + [857] = {.lex_state = 6}, + [858] = {.lex_state = 6}, + [859] = {.lex_state = 12}, + [860] = {.lex_state = 6}, + [861] = {.lex_state = 6}, + [862] = {.lex_state = 6}, + [863] = {.lex_state = 6}, + [864] = {.lex_state = 6}, + [865] = {.lex_state = 6}, + [866] = {.lex_state = 6}, + [867] = {.lex_state = 6}, + [868] = {.lex_state = 6}, + [869] = {.lex_state = 6}, + [870] = {.lex_state = 6}, + [871] = {.lex_state = 6}, + [872] = {.lex_state = 6}, + [873] = {.lex_state = 12}, + [874] = {.lex_state = 6}, + [875] = {.lex_state = 6}, + [876] = {.lex_state = 6}, + [877] = {.lex_state = 6}, + [878] = {.lex_state = 6}, + [879] = {.lex_state = 10}, + [880] = {.lex_state = 10}, + [881] = {.lex_state = 8}, + [882] = {.lex_state = 10}, + [883] = {.lex_state = 10}, + [884] = {.lex_state = 10}, + [885] = {.lex_state = 10}, + [886] = {.lex_state = 10}, + [887] = {.lex_state = 10}, + [888] = {.lex_state = 10}, + [889] = {.lex_state = 10}, + [890] = {.lex_state = 8}, + [891] = {.lex_state = 10}, + [892] = {.lex_state = 10}, + [893] = {.lex_state = 10}, + [894] = {.lex_state = 10}, + [895] = {.lex_state = 10}, + [896] = {.lex_state = 10}, + [897] = {.lex_state = 10}, + [898] = {.lex_state = 10}, + [899] = {.lex_state = 10}, + [900] = {.lex_state = 10}, + [901] = {.lex_state = 10}, + [902] = {.lex_state = 10}, + [903] = {.lex_state = 10}, + [904] = {.lex_state = 10}, + [905] = {.lex_state = 10}, + [906] = {.lex_state = 10}, + [907] = {.lex_state = 10}, + [908] = {.lex_state = 10}, + [909] = {.lex_state = 10}, + [910] = {.lex_state = 10}, + [911] = {.lex_state = 10}, + [912] = {.lex_state = 10}, + [913] = {.lex_state = 8}, + [914] = {.lex_state = 7}, + [915] = {.lex_state = 10}, + [916] = {.lex_state = 10}, + [917] = {.lex_state = 10}, + [918] = {.lex_state = 10}, + [919] = {.lex_state = 10}, + [920] = {.lex_state = 10}, + [921] = {.lex_state = 10}, + [922] = {.lex_state = 10}, + [923] = {.lex_state = 10}, + [924] = {.lex_state = 10}, + [925] = {.lex_state = 10}, + [926] = {.lex_state = 10}, + [927] = {.lex_state = 10}, + [928] = {.lex_state = 10}, + [929] = {.lex_state = 10}, + [930] = {.lex_state = 10}, + [931] = {.lex_state = 10}, + [932] = {.lex_state = 10}, + [933] = {.lex_state = 11}, + [934] = {.lex_state = 11}, + [935] = {.lex_state = 11}, + [936] = {.lex_state = 11}, + [937] = {.lex_state = 11}, + [938] = {.lex_state = 11}, + [939] = {.lex_state = 11}, + [940] = {.lex_state = 11}, + [941] = {.lex_state = 11}, + [942] = {.lex_state = 11}, + [943] = {.lex_state = 11}, + [944] = {.lex_state = 11}, + [945] = {.lex_state = 11}, + [946] = {.lex_state = 11}, + [947] = {.lex_state = 11}, + [948] = {.lex_state = 11}, + [949] = {.lex_state = 11}, + [950] = {.lex_state = 11}, + [951] = {.lex_state = 11}, + [952] = {.lex_state = 11}, + [953] = {.lex_state = 11}, + [954] = {.lex_state = 11}, + [955] = {.lex_state = 11}, + [956] = {.lex_state = 11}, + [957] = {.lex_state = 11}, + [958] = {.lex_state = 11}, + [959] = {.lex_state = 11}, + [960] = {.lex_state = 11}, + [961] = {.lex_state = 11}, + [962] = {.lex_state = 11}, + [963] = {.lex_state = 11}, + [964] = {.lex_state = 11}, + [965] = {.lex_state = 11}, + [966] = {.lex_state = 11}, + [967] = {.lex_state = 11}, + [968] = {.lex_state = 11}, + [969] = {.lex_state = 11}, + [970] = {.lex_state = 11}, + [971] = {.lex_state = 11}, + [972] = {.lex_state = 11}, + [973] = {.lex_state = 11}, + [974] = {.lex_state = 11}, + [975] = {.lex_state = 11}, + [976] = {.lex_state = 11}, + [977] = {.lex_state = 11}, + [978] = {.lex_state = 11}, + [979] = {.lex_state = 11}, + [980] = {.lex_state = 12}, + [981] = {.lex_state = 11}, + [982] = {.lex_state = 11}, + [983] = {.lex_state = 11}, + [984] = {.lex_state = 7}, + [985] = {.lex_state = 7}, + [986] = {.lex_state = 7}, + [987] = {.lex_state = 7}, + [988] = {.lex_state = 7}, + [989] = {.lex_state = 7}, + [990] = {.lex_state = 7}, + [991] = {.lex_state = 7}, + [992] = {.lex_state = 7}, + [993] = {.lex_state = 7}, + [994] = {.lex_state = 7}, + [995] = {.lex_state = 7}, + [996] = {.lex_state = 7}, + [997] = {.lex_state = 7}, + [998] = {.lex_state = 7}, + [999] = {.lex_state = 7}, + [1000] = {.lex_state = 7}, + [1001] = {.lex_state = 7}, + [1002] = {.lex_state = 7}, + [1003] = {.lex_state = 7}, + [1004] = {.lex_state = 7}, + [1005] = {.lex_state = 7}, + [1006] = {.lex_state = 7}, + [1007] = {.lex_state = 7}, + [1008] = {.lex_state = 7}, + [1009] = {.lex_state = 7}, + [1010] = {.lex_state = 7}, + [1011] = {.lex_state = 7}, + [1012] = {.lex_state = 7}, + [1013] = {.lex_state = 7}, + [1014] = {.lex_state = 7}, + [1015] = {.lex_state = 8}, + [1016] = {.lex_state = 7}, + [1017] = {.lex_state = 7}, + [1018] = {.lex_state = 7}, + [1019] = {.lex_state = 7}, + [1020] = {.lex_state = 7}, + [1021] = {.lex_state = 7}, + [1022] = {.lex_state = 7}, + [1023] = {.lex_state = 7}, + [1024] = {.lex_state = 7}, + [1025] = {.lex_state = 7}, + [1026] = {.lex_state = 7}, + [1027] = {.lex_state = 7}, + [1028] = {.lex_state = 7}, + [1029] = {.lex_state = 7}, + [1030] = {.lex_state = 7}, + [1031] = {.lex_state = 7}, + [1032] = {.lex_state = 7}, + [1033] = {.lex_state = 7}, + [1034] = {.lex_state = 7}, + [1035] = {.lex_state = 12}, + [1036] = {.lex_state = 12}, + [1037] = {.lex_state = 12}, + [1038] = {.lex_state = 12}, + [1039] = {.lex_state = 12}, + [1040] = {.lex_state = 12}, + [1041] = {.lex_state = 12}, + [1042] = {.lex_state = 12}, + [1043] = {.lex_state = 12}, + [1044] = {.lex_state = 12}, + [1045] = {.lex_state = 12}, + [1046] = {.lex_state = 12}, + [1047] = {.lex_state = 12}, + [1048] = {.lex_state = 12}, + [1049] = {.lex_state = 12}, + [1050] = {.lex_state = 12}, + [1051] = {.lex_state = 12}, + [1052] = {.lex_state = 12}, + [1053] = {.lex_state = 12}, + [1054] = {.lex_state = 12}, + [1055] = {.lex_state = 12}, + [1056] = {.lex_state = 12}, + [1057] = {.lex_state = 12}, + [1058] = {.lex_state = 12}, + [1059] = {.lex_state = 12}, + [1060] = {.lex_state = 12}, + [1061] = {.lex_state = 12}, + [1062] = {.lex_state = 12}, + [1063] = {.lex_state = 12}, + [1064] = {.lex_state = 12}, + [1065] = {.lex_state = 12}, + [1066] = {.lex_state = 12}, + [1067] = {.lex_state = 12}, + [1068] = {.lex_state = 12}, + [1069] = {.lex_state = 12}, + [1070] = {.lex_state = 12}, + [1071] = {.lex_state = 12}, + [1072] = {.lex_state = 12}, + [1073] = {.lex_state = 12}, + [1074] = {.lex_state = 12}, + [1075] = {.lex_state = 12}, + [1076] = {.lex_state = 12}, + [1077] = {.lex_state = 12}, + [1078] = {.lex_state = 12}, + [1079] = {.lex_state = 12}, + [1080] = {.lex_state = 12}, + [1081] = {.lex_state = 12}, + [1082] = {.lex_state = 12}, + [1083] = {.lex_state = 12}, + [1084] = {.lex_state = 12}, + [1085] = {.lex_state = 8}, + [1086] = {.lex_state = 8}, + [1087] = {.lex_state = 8}, + [1088] = {.lex_state = 8}, + [1089] = {.lex_state = 8}, + [1090] = {.lex_state = 8}, + [1091] = {.lex_state = 8}, + [1092] = {.lex_state = 8}, + [1093] = {.lex_state = 8}, + [1094] = {.lex_state = 8}, + [1095] = {.lex_state = 8}, + [1096] = {.lex_state = 8}, + [1097] = {.lex_state = 8}, + [1098] = {.lex_state = 8}, + [1099] = {.lex_state = 8}, + [1100] = {.lex_state = 8}, + [1101] = {.lex_state = 8}, + [1102] = {.lex_state = 8}, + [1103] = {.lex_state = 8}, + [1104] = {.lex_state = 8}, + [1105] = {.lex_state = 8}, + [1106] = {.lex_state = 8}, + [1107] = {.lex_state = 8}, + [1108] = {.lex_state = 8}, + [1109] = {.lex_state = 8}, + [1110] = {.lex_state = 8}, + [1111] = {.lex_state = 8}, + [1112] = {.lex_state = 8}, + [1113] = {.lex_state = 8}, + [1114] = {.lex_state = 8}, + [1115] = {.lex_state = 8}, + [1116] = {.lex_state = 8}, + [1117] = {.lex_state = 8}, + [1118] = {.lex_state = 8}, + [1119] = {.lex_state = 8}, + [1120] = {.lex_state = 8}, + [1121] = {.lex_state = 8}, + [1122] = {.lex_state = 8}, + [1123] = {.lex_state = 8}, + [1124] = {.lex_state = 8}, + [1125] = {.lex_state = 8}, + [1126] = {.lex_state = 8}, + [1127] = {.lex_state = 8}, + [1128] = {.lex_state = 8}, + [1129] = {.lex_state = 8}, + [1130] = {.lex_state = 8}, + [1131] = {.lex_state = 8}, + [1132] = {.lex_state = 8}, + [1133] = {.lex_state = 8}, + [1134] = {.lex_state = 8}, + [1135] = {.lex_state = 16}, + [1136] = {.lex_state = 16}, + [1137] = {.lex_state = 16}, + [1138] = {.lex_state = 16}, + [1139] = {.lex_state = 16}, + [1140] = {.lex_state = 16}, + [1141] = {.lex_state = 16}, + [1142] = {.lex_state = 16}, + [1143] = {.lex_state = 16}, + [1144] = {.lex_state = 16}, + [1145] = {.lex_state = 16}, + [1146] = {.lex_state = 16}, + [1147] = {.lex_state = 16}, + [1148] = {.lex_state = 16}, + [1149] = {.lex_state = 16}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 0}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 0}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 0}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 0}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 0}, + [1166] = {.lex_state = 0}, + [1167] = {.lex_state = 0}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 0}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 0}, + [1172] = {.lex_state = 0}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 0}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 0}, + [1177] = {.lex_state = 0}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 0}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 0}, + [1183] = {.lex_state = 0}, + [1184] = {.lex_state = 0}, + [1185] = {.lex_state = 0}, + [1186] = {.lex_state = 0}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 0}, + [1189] = {.lex_state = 0}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 0}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 0}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 0}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 0}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 0}, + [1208] = {.lex_state = 0}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 0}, + [1217] = {.lex_state = 0}, + [1218] = {.lex_state = 0}, + [1219] = {.lex_state = 16}, + [1220] = {.lex_state = 0}, + [1221] = {.lex_state = 0}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 0}, + [1226] = {.lex_state = 0}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 0}, + [1229] = {.lex_state = 0}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 0}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 0}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 0}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 0}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 0}, + [1259] = {.lex_state = 0}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 0}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 0}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 0}, + [1271] = {.lex_state = 0}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 0}, + [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 0}, + [1278] = {.lex_state = 0}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 0}, + [1281] = {.lex_state = 0}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 0}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 0}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 0}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 0}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 0}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 0}, + [1322] = {.lex_state = 0}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 0}, + [1325] = {.lex_state = 0}, + [1326] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 0}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 0}, + [1334] = {.lex_state = 0}, + [1335] = {.lex_state = 16}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 0}, + [1340] = {.lex_state = 0}, + [1341] = {.lex_state = 0}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 0}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 0}, + [1348] = {.lex_state = 0}, + [1349] = {.lex_state = 0}, + [1350] = {.lex_state = 0}, + [1351] = {.lex_state = 0}, + [1352] = {.lex_state = 0}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 0}, + [1364] = {.lex_state = 0}, + [1365] = {.lex_state = 16}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 0}, + [1371] = {.lex_state = 0}, + [1372] = {.lex_state = 0}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, + [1380] = {.lex_state = 0}, + [1381] = {.lex_state = 0}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 0}, + [1388] = {.lex_state = 0}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 0}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 0}, + [1393] = {.lex_state = 0}, + [1394] = {.lex_state = 0}, + [1395] = {.lex_state = 0}, + [1396] = {.lex_state = 0}, + [1397] = {.lex_state = 0}, + [1398] = {.lex_state = 0}, + [1399] = {.lex_state = 0}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 0}, + [1402] = {.lex_state = 0}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 0}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 0}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 0}, + [1411] = {.lex_state = 0}, + [1412] = {.lex_state = 16}, + [1413] = {.lex_state = 0}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 0}, + [1417] = {.lex_state = 0}, + [1418] = {.lex_state = 0}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 16}, + [1422] = {.lex_state = 0}, + [1423] = {.lex_state = 0}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 0}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 0}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 0}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 0}, + [1455] = {.lex_state = 0}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 0}, + [1460] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, + [1463] = {.lex_state = 0}, + [1464] = {.lex_state = 0}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 0}, + [1468] = {.lex_state = 0}, + [1469] = {.lex_state = 0}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 0}, + [1472] = {.lex_state = 0}, + [1473] = {.lex_state = 0}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0}, + [1476] = {.lex_state = 16}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 0}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 0}, + [1484] = {.lex_state = 0}, + [1485] = {.lex_state = 0}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 0}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 0}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 0}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 16}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 0}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 0}, + [1511] = {.lex_state = 0}, + [1512] = {.lex_state = 0}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 0}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 0}, + [1524] = {.lex_state = 0}, + [1525] = {.lex_state = 0}, + [1526] = {.lex_state = 0}, + [1527] = {.lex_state = 0}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 16}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 0}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, + [1536] = {.lex_state = 0}, + [1537] = {.lex_state = 0}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 0}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 16}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 0}, + [1549] = {.lex_state = 0}, + [1550] = {.lex_state = 0}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 0}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, + [1557] = {.lex_state = 0}, + [1558] = {.lex_state = 0}, + [1559] = {.lex_state = 0}, + [1560] = {.lex_state = 0}, + [1561] = {.lex_state = 0}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 0}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 0}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 0}, + [1571] = {.lex_state = 0}, + [1572] = {.lex_state = 0}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 0}, + [1576] = {.lex_state = 0}, + [1577] = {.lex_state = 0}, + [1578] = {.lex_state = 0}, + [1579] = {.lex_state = 16}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 0}, + [1583] = {.lex_state = 16}, + [1584] = {.lex_state = 0}, + [1585] = {.lex_state = 0}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 0}, + [1589] = {.lex_state = 0}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 0}, + [1592] = {.lex_state = 0}, + [1593] = {.lex_state = 16}, + [1594] = {.lex_state = 0}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 0}, + [1597] = {.lex_state = 0}, + [1598] = {.lex_state = 0}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 0}, + [1601] = {.lex_state = 0}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 0}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 0}, + [1606] = {.lex_state = 0}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 0}, + [1609] = {.lex_state = 0}, + [1610] = {.lex_state = 0}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 0}, + [1613] = {.lex_state = 0}, + [1614] = {.lex_state = 0}, + [1615] = {.lex_state = 0}, + [1616] = {.lex_state = 0}, + [1617] = {.lex_state = 0}, + [1618] = {.lex_state = 0}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 0}, + [1622] = {.lex_state = 0}, + [1623] = {.lex_state = 0}, + [1624] = {.lex_state = 0}, + [1625] = {.lex_state = 0}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 0}, + [1628] = {.lex_state = 0}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 0}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 0}, + [1635] = {.lex_state = 16}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 0}, + [1638] = {.lex_state = 0}, + [1639] = {.lex_state = 0}, + [1640] = {.lex_state = 0}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 0}, + [1644] = {.lex_state = 0}, + [1645] = {.lex_state = 0}, + [1646] = {.lex_state = 0}, + [1647] = {.lex_state = 0}, + [1648] = {.lex_state = 0}, + [1649] = {.lex_state = 0}, + [1650] = {.lex_state = 0}, + [1651] = {.lex_state = 0}, + [1652] = {.lex_state = 0}, + [1653] = {.lex_state = 0}, + [1654] = {.lex_state = 0}, + [1655] = {.lex_state = 0}, + [1656] = {.lex_state = 0}, + [1657] = {.lex_state = 0}, + [1658] = {.lex_state = 0}, + [1659] = {.lex_state = 0}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 0}, + [1662] = {.lex_state = 0}, + [1663] = {.lex_state = 0}, + [1664] = {.lex_state = 0}, + [1665] = {.lex_state = 0}, + [1666] = {.lex_state = 0}, + [1667] = {.lex_state = 0}, + [1668] = {.lex_state = 0}, + [1669] = {.lex_state = 0}, + [1670] = {.lex_state = 0}, + [1671] = {.lex_state = 0}, + [1672] = {.lex_state = 0}, + [1673] = {.lex_state = 0}, + [1674] = {.lex_state = 0}, + [1675] = {.lex_state = 0}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 0}, + [1678] = {.lex_state = 0}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 0}, + [1681] = {.lex_state = 0}, + [1682] = {.lex_state = 0}, + [1683] = {.lex_state = 0}, + [1684] = {.lex_state = 0}, + [1685] = {.lex_state = 0}, + [1686] = {.lex_state = 0}, + [1687] = {.lex_state = 0}, + [1688] = {.lex_state = 0}, + [1689] = {.lex_state = 0}, + [1690] = {.lex_state = 0}, + [1691] = {.lex_state = 0}, + [1692] = {.lex_state = 0}, + [1693] = {.lex_state = 0}, + [1694] = {.lex_state = 0}, + [1695] = {.lex_state = 0}, + [1696] = {.lex_state = 0}, + [1697] = {.lex_state = 0}, + [1698] = {.lex_state = 0}, + [1699] = {.lex_state = 0}, + [1700] = {.lex_state = 0}, + [1701] = {.lex_state = 0}, + [1702] = {.lex_state = 0}, + [1703] = {.lex_state = 0}, + [1704] = {.lex_state = 0}, + [1705] = {.lex_state = 0}, + [1706] = {.lex_state = 0}, + [1707] = {.lex_state = 0}, + [1708] = {.lex_state = 0}, + [1709] = {.lex_state = 0}, + [1710] = {.lex_state = 0}, + [1711] = {.lex_state = 0}, + [1712] = {.lex_state = 0}, + [1713] = {.lex_state = 0}, + [1714] = {.lex_state = 0}, + [1715] = {.lex_state = 0}, + [1716] = {.lex_state = 0}, + [1717] = {.lex_state = 0}, + [1718] = {.lex_state = 0}, + [1719] = {.lex_state = 13}, + [1720] = {.lex_state = 0}, + [1721] = {.lex_state = 0}, + [1722] = {.lex_state = 16}, + [1723] = {.lex_state = 0}, + [1724] = {.lex_state = 16}, + [1725] = {.lex_state = 0}, + [1726] = {.lex_state = 16}, + [1727] = {.lex_state = 0}, + [1728] = {.lex_state = 16}, + [1729] = {.lex_state = 0}, + [1730] = {.lex_state = 16}, + [1731] = {.lex_state = 0}, + [1732] = {.lex_state = 0}, + [1733] = {.lex_state = 0}, + [1734] = {.lex_state = 0}, + [1735] = {.lex_state = 0}, + [1736] = {.lex_state = 16}, + [1737] = {.lex_state = 0}, + [1738] = {.lex_state = 16}, + [1739] = {.lex_state = 0}, + [1740] = {.lex_state = 16}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 16}, + [1743] = {.lex_state = 0}, + [1744] = {.lex_state = 16}, + [1745] = {.lex_state = 0}, + [1746] = {.lex_state = 16}, + [1747] = {.lex_state = 0}, + [1748] = {.lex_state = 0}, + [1749] = {.lex_state = 0}, + [1750] = {.lex_state = 16}, + [1751] = {.lex_state = 0}, + [1752] = {.lex_state = 16}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 16}, + [1755] = {.lex_state = 0}, + [1756] = {.lex_state = 16}, + [1757] = {.lex_state = 0}, + [1758] = {.lex_state = 16}, + [1759] = {.lex_state = 0}, + [1760] = {.lex_state = 0}, + [1761] = {.lex_state = 0}, + [1762] = {.lex_state = 0}, + [1763] = {.lex_state = 0}, + [1764] = {.lex_state = 16}, + [1765] = {.lex_state = 0}, + [1766] = {.lex_state = 16}, + [1767] = {.lex_state = 0}, + [1768] = {.lex_state = 0}, + [1769] = {.lex_state = 0}, + [1770] = {.lex_state = 16}, + [1771] = {.lex_state = 0}, + [1772] = {.lex_state = 16}, + [1773] = {.lex_state = 0}, + [1774] = {.lex_state = 16}, + [1775] = {.lex_state = 0}, + [1776] = {.lex_state = 0}, + [1777] = {.lex_state = 0}, + [1778] = {.lex_state = 16}, + [1779] = {.lex_state = 0}, + [1780] = {.lex_state = 16}, + [1781] = {.lex_state = 0}, + [1782] = {.lex_state = 0}, + [1783] = {.lex_state = 0}, + [1784] = {.lex_state = 16}, + [1785] = {.lex_state = 0}, + [1786] = {.lex_state = 16}, + [1787] = {.lex_state = 0}, + [1788] = {.lex_state = 0}, + [1789] = {.lex_state = 0}, + [1790] = {.lex_state = 0}, + [1791] = {.lex_state = 0}, + [1792] = {.lex_state = 16}, + [1793] = {.lex_state = 0}, + [1794] = {.lex_state = 16}, + [1795] = {.lex_state = 0}, + [1796] = {.lex_state = 0}, + [1797] = {.lex_state = 0}, + [1798] = {.lex_state = 0}, + [1799] = {.lex_state = 0}, + [1800] = {.lex_state = 16}, + [1801] = {.lex_state = 0}, + [1802] = {.lex_state = 0}, + [1803] = {.lex_state = 0}, + [1804] = {.lex_state = 0}, + [1805] = {.lex_state = 0}, + [1806] = {.lex_state = 16}, + [1807] = {.lex_state = 0}, + [1808] = {.lex_state = 16}, + [1809] = {.lex_state = 0}, + [1810] = {.lex_state = 0}, + [1811] = {.lex_state = 0}, + [1812] = {.lex_state = 0}, + [1813] = {.lex_state = 16}, + [1814] = {.lex_state = 16}, + [1815] = {.lex_state = 0}, + [1816] = {.lex_state = 0}, + [1817] = {.lex_state = 0}, + [1818] = {.lex_state = 0}, + [1819] = {.lex_state = 16}, + [1820] = {.lex_state = 16}, + [1821] = {.lex_state = 0}, + [1822] = {.lex_state = 16}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 0}, + [1825] = {.lex_state = 0}, + [1826] = {.lex_state = 13}, + [1827] = {.lex_state = 13}, + [1828] = {.lex_state = 0}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 16}, + [1831] = {.lex_state = 13}, + [1832] = {.lex_state = 0}, + [1833] = {.lex_state = 13}, + [1834] = {.lex_state = 13}, + [1835] = {.lex_state = 13}, + [1836] = {.lex_state = 13}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 16}, + [1839] = {.lex_state = 13}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 13}, + [1843] = {.lex_state = 13}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 0}, + [1846] = {.lex_state = 16}, + [1847] = {.lex_state = 13}, + [1848] = {.lex_state = 0}, + [1849] = {.lex_state = 0}, + [1850] = {.lex_state = 13}, + [1851] = {.lex_state = 13}, + [1852] = {.lex_state = 0}, + [1853] = {.lex_state = 0}, + [1854] = {.lex_state = 16}, + [1855] = {.lex_state = 13}, + [1856] = {.lex_state = 0}, + [1857] = {.lex_state = 0}, + [1858] = {.lex_state = 13}, + [1859] = {.lex_state = 13}, + [1860] = {.lex_state = 0}, + [1861] = {.lex_state = 0}, + [1862] = {.lex_state = 16}, + [1863] = {.lex_state = 13}, + [1864] = {.lex_state = 0}, + [1865] = {.lex_state = 0}, + [1866] = {.lex_state = 13}, + [1867] = {.lex_state = 13}, + [1868] = {.lex_state = 16}, + [1869] = {.lex_state = 0}, + [1870] = {.lex_state = 16}, + [1871] = {.lex_state = 13}, + [1872] = {.lex_state = 16}, + [1873] = {.lex_state = 16}, + [1874] = {.lex_state = 13}, + [1875] = {.lex_state = 13}, + [1876] = {.lex_state = 0}, + [1877] = {.lex_state = 0}, + [1878] = {.lex_state = 16}, + [1879] = {.lex_state = 13}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 13}, + [1883] = {.lex_state = 13}, + [1884] = {.lex_state = 0}, + [1885] = {.lex_state = 0}, + [1886] = {.lex_state = 16}, + [1887] = {.lex_state = 13}, + [1888] = {.lex_state = 0}, + [1889] = {.lex_state = 0}, + [1890] = {.lex_state = 13}, + [1891] = {.lex_state = 13}, + [1892] = {.lex_state = 0}, + [1893] = {.lex_state = 0}, + [1894] = {.lex_state = 16}, + [1895] = {.lex_state = 13}, + [1896] = {.lex_state = 0}, + [1897] = {.lex_state = 0}, + [1898] = {.lex_state = 13}, + [1899] = {.lex_state = 13}, + [1900] = {.lex_state = 16}, + [1901] = {.lex_state = 0}, + [1902] = {.lex_state = 16}, + [1903] = {.lex_state = 13}, + [1904] = {.lex_state = 0}, + [1905] = {.lex_state = 0}, + [1906] = {.lex_state = 13}, + [1907] = {.lex_state = 13}, + [1908] = {.lex_state = 0}, + [1909] = {.lex_state = 0}, + [1910] = {.lex_state = 16}, + [1911] = {.lex_state = 13}, + [1912] = {.lex_state = 13}, + [1913] = {.lex_state = 0}, + [1914] = {.lex_state = 0}, + [1915] = {.lex_state = 0}, + [1916] = {.lex_state = 0}, + [1917] = {.lex_state = 0}, + [1918] = {.lex_state = 0}, + [1919] = {.lex_state = 0}, + [1920] = {.lex_state = 0}, + [1921] = {.lex_state = 0}, + [1922] = {.lex_state = 0}, + [1923] = {.lex_state = 0}, + [1924] = {.lex_state = 0}, + [1925] = {.lex_state = 0}, + [1926] = {.lex_state = 0}, + [1927] = {.lex_state = 0}, + [1928] = {.lex_state = 0}, + [1929] = {.lex_state = 0}, + [1930] = {.lex_state = 0}, + [1931] = {.lex_state = 0}, + [1932] = {.lex_state = 0}, + [1933] = {.lex_state = 0}, + [1934] = {.lex_state = 0}, + [1935] = {.lex_state = 0}, + [1936] = {.lex_state = 0}, + [1937] = {.lex_state = 0}, + [1938] = {.lex_state = 0}, + [1939] = {.lex_state = 0}, + [1940] = {.lex_state = 0}, + [1941] = {.lex_state = 0}, + [1942] = {.lex_state = 0}, + [1943] = {.lex_state = 0}, + [1944] = {.lex_state = 0}, + [1945] = {.lex_state = 0}, + [1946] = {.lex_state = 0}, + [1947] = {.lex_state = 0}, + [1948] = {.lex_state = 0}, + [1949] = {.lex_state = 0}, + [1950] = {.lex_state = 0}, + [1951] = {.lex_state = 0}, + [1952] = {.lex_state = 0}, + [1953] = {.lex_state = 0}, + [1954] = {.lex_state = 0}, + [1955] = {.lex_state = 0}, + [1956] = {.lex_state = 13}, + [1957] = {.lex_state = 13}, + [1958] = {.lex_state = 13}, + [1959] = {.lex_state = 13}, + [1960] = {.lex_state = 13}, + [1961] = {.lex_state = 13}, + [1962] = {.lex_state = 13}, + [1963] = {.lex_state = 13}, + [1964] = {.lex_state = 13}, + [1965] = {.lex_state = 13}, + [1966] = {.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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1), + [aux_sym_graphics_include_token1] = ACTIONS(1), + [aux_sym_generic_include_token1] = ACTIONS(1), + [aux_sym_import_token1] = ACTIONS(1), + [anon_sym_BSLASHlabel] = ACTIONS(1), + [aux_sym_label_reference_token1] = 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_theorem_definition_token1] = ACTIONS(1), + }, + [1] = { + [sym_document] = STATE(1768), + [sym__simple_content] = STATE(146), + [sym__content] = STATE(146), + [sym_part] = STATE(146), + [sym_chapter] = STATE(146), + [sym_section] = STATE(146), + [sym_subsection] = STATE(146), + [sym_subsubsection] = STATE(146), + [sym_paragraph] = STATE(146), + [sym_subparagraph] = STATE(146), + [sym_enum_item] = STATE(146), + [sym_brace_group] = STATE(146), + [sym_mixed_group] = STATE(146), + [sym_text] = STATE(146), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(146), + [sym_inline_formula] = STATE(146), + [sym_begin] = STATE(46), + [sym_environment] = STATE(146), + [sym_caption] = STATE(146), + [sym_citation] = STATE(146), + [sym_package_include] = STATE(146), + [sym_class_include] = STATE(146), + [sym_biblatex_include] = STATE(146), + [sym_graphics_include] = STATE(146), + [sym_import] = STATE(146), + [sym_label_definition] = STATE(146), + [sym_label_reference] = STATE(146), + [sym_label_reference_range] = STATE(146), + [sym_label_number] = STATE(146), + [sym_command_definition] = STATE(146), + [sym_math_operator] = STATE(146), + [sym_glossary_entry_definition] = STATE(146), + [sym_glossary_entry_reference] = STATE(146), + [sym_acronym_definition] = STATE(146), + [sym_theorem_definition] = STATE(146), + [sym_generic_command] = STATE(146), + [aux_sym_document_repeat1] = STATE(146), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [2] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [ts_builtin_sym_end] = ACTIONS(75), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(77), + [aux_sym_chapter_token1] = ACTIONS(77), + [aux_sym_section_token1] = ACTIONS(77), + [aux_sym_subsection_token1] = ACTIONS(77), + [aux_sym_subsubsection_token1] = ACTIONS(77), + [aux_sym_paragraph_token1] = ACTIONS(77), + [aux_sym_subparagraph_token1] = ACTIONS(77), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_RPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [3] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [ts_builtin_sym_end] = ACTIONS(81), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(83), + [aux_sym_chapter_token1] = ACTIONS(83), + [aux_sym_section_token1] = ACTIONS(83), + [aux_sym_subsection_token1] = ACTIONS(83), + [aux_sym_subsubsection_token1] = ACTIONS(83), + [aux_sym_paragraph_token1] = ACTIONS(83), + [aux_sym_subparagraph_token1] = ACTIONS(83), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_RBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [4] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [ts_builtin_sym_end] = ACTIONS(85), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(87), + [aux_sym_chapter_token1] = ACTIONS(87), + [aux_sym_section_token1] = ACTIONS(87), + [aux_sym_subsection_token1] = ACTIONS(87), + [aux_sym_subsubsection_token1] = ACTIONS(87), + [aux_sym_paragraph_token1] = ACTIONS(87), + [aux_sym_subparagraph_token1] = ACTIONS(87), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [5] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [ts_builtin_sym_end] = ACTIONS(91), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(93), + [aux_sym_chapter_token1] = ACTIONS(93), + [aux_sym_section_token1] = ACTIONS(93), + [aux_sym_subsection_token1] = ACTIONS(93), + [aux_sym_subsubsection_token1] = ACTIONS(93), + [aux_sym_paragraph_token1] = ACTIONS(93), + [aux_sym_subparagraph_token1] = ACTIONS(93), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_RPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [ts_builtin_sym_end] = ACTIONS(95), + [sym__generic_command_name] = ACTIONS(97), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(100), + [aux_sym_chapter_token1] = ACTIONS(103), + [aux_sym_section_token1] = ACTIONS(106), + [aux_sym_subsection_token1] = ACTIONS(109), + [aux_sym_subsubsection_token1] = ACTIONS(112), + [aux_sym_paragraph_token1] = ACTIONS(115), + [aux_sym_subparagraph_token1] = ACTIONS(118), + [anon_sym_BSLASHitem] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(124), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_LPAREN] = ACTIONS(124), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_COMMA] = ACTIONS(130), + [anon_sym_EQ] = ACTIONS(130), + [sym_word] = ACTIONS(130), + [sym_param] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(136), + [anon_sym_BSLASH_LBRACK] = ACTIONS(136), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(142), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(148), + [aux_sym_citation_token1] = ACTIONS(151), + [aux_sym_package_include_token1] = ACTIONS(154), + [anon_sym_BSLASHdocumentclass] = ACTIONS(157), + [anon_sym_BSLASHaddbibresource] = ACTIONS(160), + [aux_sym_graphics_include_token1] = ACTIONS(163), + [aux_sym_import_token1] = ACTIONS(166), + [anon_sym_BSLASHlabel] = ACTIONS(169), + [aux_sym_label_reference_token1] = ACTIONS(172), + [aux_sym_label_reference_range_token1] = ACTIONS(175), + [anon_sym_BSLASHnewlabel] = ACTIONS(178), + [aux_sym_command_definition_token1] = ACTIONS(181), + [aux_sym_math_operator_token1] = ACTIONS(184), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(190), + [anon_sym_BSLASHnewacronym] = ACTIONS(193), + [aux_sym_theorem_definition_token1] = ACTIONS(196), + }, + [7] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(83), + [aux_sym_subsection_token1] = ACTIONS(83), + [aux_sym_subsubsection_token1] = ACTIONS(83), + [aux_sym_paragraph_token1] = ACTIONS(83), + [aux_sym_subparagraph_token1] = ACTIONS(83), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_RBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [8] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_RBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [9] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(87), + [aux_sym_subsubsection_token1] = ACTIONS(87), + [aux_sym_paragraph_token1] = ACTIONS(87), + [aux_sym_subparagraph_token1] = ACTIONS(87), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [10] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(87), + [aux_sym_subparagraph_token1] = ACTIONS(87), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [11] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(77), + [aux_sym_subparagraph_token1] = ACTIONS(77), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [12] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(93), + [aux_sym_subparagraph_token1] = ACTIONS(93), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [13] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(83), + [aux_sym_subparagraph_token1] = ACTIONS(83), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_RBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [14] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [15] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(87), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [16] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_RBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(291), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [17] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(77), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [18] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(93), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [19] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(83), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_RBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [20] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(77), + [aux_sym_section_token1] = ACTIONS(77), + [aux_sym_subsection_token1] = ACTIONS(77), + [aux_sym_subsubsection_token1] = ACTIONS(77), + [aux_sym_paragraph_token1] = ACTIONS(77), + [aux_sym_subparagraph_token1] = ACTIONS(77), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [21] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [22] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [23] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [24] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(77), + [aux_sym_subsubsection_token1] = ACTIONS(77), + [aux_sym_paragraph_token1] = ACTIONS(77), + [aux_sym_subparagraph_token1] = ACTIONS(77), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [25] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(93), + [aux_sym_subsection_token1] = ACTIONS(93), + [aux_sym_subsubsection_token1] = ACTIONS(93), + [aux_sym_paragraph_token1] = ACTIONS(93), + [aux_sym_subparagraph_token1] = ACTIONS(93), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [26] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(77), + [aux_sym_subsection_token1] = ACTIONS(77), + [aux_sym_subsubsection_token1] = ACTIONS(77), + [aux_sym_paragraph_token1] = ACTIONS(77), + [aux_sym_subparagraph_token1] = ACTIONS(77), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [27] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(87), + [aux_sym_subsection_token1] = ACTIONS(87), + [aux_sym_subsubsection_token1] = ACTIONS(87), + [aux_sym_paragraph_token1] = ACTIONS(87), + [aux_sym_subparagraph_token1] = ACTIONS(87), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [28] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(83), + [aux_sym_subsubsection_token1] = ACTIONS(83), + [aux_sym_paragraph_token1] = ACTIONS(83), + [aux_sym_subparagraph_token1] = ACTIONS(83), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_RBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [29] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [30] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_RBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(291), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [31] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(83), + [aux_sym_section_token1] = ACTIONS(83), + [aux_sym_subsection_token1] = ACTIONS(83), + [aux_sym_subsubsection_token1] = ACTIONS(83), + [aux_sym_paragraph_token1] = ACTIONS(83), + [aux_sym_subparagraph_token1] = ACTIONS(83), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_RBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [32] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(93), + [aux_sym_section_token1] = ACTIONS(93), + [aux_sym_subsection_token1] = ACTIONS(93), + [aux_sym_subsubsection_token1] = ACTIONS(93), + [aux_sym_paragraph_token1] = ACTIONS(93), + [aux_sym_subparagraph_token1] = ACTIONS(93), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [33] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_RBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [34] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [35] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(83), + [aux_sym_paragraph_token1] = ACTIONS(83), + [aux_sym_subparagraph_token1] = ACTIONS(83), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_RBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [36] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(87), + [aux_sym_section_token1] = ACTIONS(87), + [aux_sym_subsection_token1] = ACTIONS(87), + [aux_sym_subsubsection_token1] = ACTIONS(87), + [aux_sym_paragraph_token1] = ACTIONS(87), + [aux_sym_subparagraph_token1] = ACTIONS(87), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [37] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(93), + [aux_sym_paragraph_token1] = ACTIONS(93), + [aux_sym_subparagraph_token1] = ACTIONS(93), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [38] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [39] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(77), + [aux_sym_paragraph_token1] = ACTIONS(77), + [aux_sym_subparagraph_token1] = ACTIONS(77), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_RBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [40] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [41] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(87), + [aux_sym_paragraph_token1] = ACTIONS(87), + [aux_sym_subparagraph_token1] = ACTIONS(87), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [42] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(93), + [aux_sym_subsubsection_token1] = ACTIONS(93), + [aux_sym_paragraph_token1] = ACTIONS(93), + [aux_sym_subparagraph_token1] = ACTIONS(93), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [43] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(333), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [44] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(929), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(369), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [45] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(746), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(405), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [46] = { + [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(542), + [sym_displayed_equation] = STATE(97), + [sym_inline_formula] = STATE(97), + [sym_begin] = STATE(78), + [sym_end] = STATE(538), + [sym_environment] = STATE(97), + [sym_caption] = STATE(97), + [sym_citation] = STATE(97), + [sym_package_include] = STATE(97), + [sym_class_include] = STATE(97), + [sym_biblatex_include] = STATE(97), + [sym_graphics_include] = STATE(97), + [sym_import] = STATE(97), + [sym_label_definition] = STATE(97), + [sym_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_theorem_definition] = STATE(97), + [sym_generic_command] = STATE(97), + [aux_sym_document_repeat1] = STATE(97), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(409), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [47] = { + [sym__simple_content] = STATE(51), + [sym__content] = STATE(51), + [sym_part] = STATE(51), + [sym_chapter] = STATE(51), + [sym_section] = STATE(51), + [sym_subsection] = STATE(51), + [sym_subsubsection] = STATE(51), + [sym_paragraph] = STATE(51), + [sym_subparagraph] = STATE(51), + [sym_enum_item] = STATE(51), + [sym_brace_group] = STATE(51), + [sym_mixed_group] = STATE(51), + [sym_text] = STATE(51), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(51), + [sym_inline_formula] = STATE(51), + [sym_begin] = STATE(46), + [sym_environment] = STATE(51), + [sym_caption] = STATE(51), + [sym_citation] = STATE(51), + [sym_package_include] = STATE(51), + [sym_class_include] = STATE(51), + [sym_biblatex_include] = STATE(51), + [sym_graphics_include] = STATE(51), + [sym_import] = STATE(51), + [sym_label_definition] = STATE(51), + [sym_label_reference] = STATE(51), + [sym_label_reference_range] = STATE(51), + [sym_label_number] = STATE(51), + [sym_command_definition] = STATE(51), + [sym_math_operator] = STATE(51), + [sym_glossary_entry_definition] = STATE(51), + [sym_glossary_entry_reference] = STATE(51), + [sym_acronym_definition] = STATE(51), + [sym_theorem_definition] = STATE(51), + [sym_generic_command] = STATE(51), + [aux_sym_document_repeat1] = STATE(51), + [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(411), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(413), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [48] = { + [sym__simple_content] = STATE(98), + [sym_chapter] = STATE(98), + [sym_section] = STATE(98), + [sym_subsection] = STATE(98), + [sym_subsubsection] = STATE(98), + [sym_paragraph] = STATE(98), + [sym_subparagraph] = STATE(98), + [sym_enum_item] = STATE(98), + [sym_brace_group] = STATE(98), + [sym_mixed_group] = STATE(98), + [sym_text] = STATE(98), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(98), + [sym_inline_formula] = STATE(98), + [sym_begin] = STATE(46), + [sym_environment] = STATE(98), + [sym_caption] = STATE(98), + [sym_citation] = STATE(98), + [sym_package_include] = STATE(98), + [sym_class_include] = STATE(98), + [sym_biblatex_include] = STATE(98), + [sym_graphics_include] = STATE(98), + [sym_import] = STATE(98), + [sym_label_definition] = STATE(98), + [sym_label_reference] = STATE(98), + [sym_label_reference_range] = STATE(98), + [sym_label_number] = STATE(98), + [sym_command_definition] = STATE(98), + [sym_math_operator] = STATE(98), + [sym_glossary_entry_definition] = STATE(98), + [sym_glossary_entry_reference] = STATE(98), + [sym_acronym_definition] = STATE(98), + [sym_theorem_definition] = STATE(98), + [sym_generic_command] = STATE(98), + [aux_sym_part_repeat1] = STATE(98), + [ts_builtin_sym_end] = ACTIONS(415), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(417), + [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(415), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(419), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [49] = { + [sym__simple_content] = STATE(60), + [sym__content] = STATE(60), + [sym_part] = STATE(60), + [sym_chapter] = STATE(60), + [sym_section] = STATE(60), + [sym_subsection] = STATE(60), + [sym_subsubsection] = STATE(60), + [sym_paragraph] = STATE(60), + [sym_subparagraph] = STATE(60), + [sym_enum_item] = STATE(60), + [sym_brace_group] = STATE(60), + [sym_mixed_group] = STATE(60), + [sym_text] = STATE(60), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(60), + [sym_inline_formula] = STATE(60), + [sym_begin] = STATE(78), + [sym_end] = STATE(593), + [sym_environment] = STATE(60), + [sym_caption] = STATE(60), + [sym_citation] = STATE(60), + [sym_package_include] = STATE(60), + [sym_class_include] = STATE(60), + [sym_biblatex_include] = STATE(60), + [sym_graphics_include] = STATE(60), + [sym_import] = STATE(60), + [sym_label_definition] = STATE(60), + [sym_label_reference] = STATE(60), + [sym_label_reference_range] = STATE(60), + [sym_label_number] = STATE(60), + [sym_command_definition] = STATE(60), + [sym_math_operator] = STATE(60), + [sym_glossary_entry_definition] = STATE(60), + [sym_glossary_entry_reference] = STATE(60), + [sym_acronym_definition] = STATE(60), + [sym_theorem_definition] = STATE(60), + [sym_generic_command] = STATE(60), + [aux_sym_document_repeat1] = STATE(60), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(421), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(423), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [50] = { + [sym__simple_content] = STATE(51), + [sym__content] = STATE(51), + [sym_part] = STATE(51), + [sym_chapter] = STATE(51), + [sym_section] = STATE(51), + [sym_subsection] = STATE(51), + [sym_subsubsection] = STATE(51), + [sym_paragraph] = STATE(51), + [sym_subparagraph] = STATE(51), + [sym_enum_item] = STATE(51), + [sym_brace_group] = STATE(51), + [sym_mixed_group] = STATE(51), + [sym_text] = STATE(51), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(51), + [sym_inline_formula] = STATE(51), + [sym_begin] = STATE(46), + [sym_environment] = STATE(51), + [sym_caption] = STATE(51), + [sym_citation] = STATE(51), + [sym_package_include] = STATE(51), + [sym_class_include] = STATE(51), + [sym_biblatex_include] = STATE(51), + [sym_graphics_include] = STATE(51), + [sym_import] = STATE(51), + [sym_label_definition] = STATE(51), + [sym_label_reference] = STATE(51), + [sym_label_reference_range] = STATE(51), + [sym_label_number] = STATE(51), + [sym_command_definition] = STATE(51), + [sym_math_operator] = STATE(51), + [sym_glossary_entry_definition] = STATE(51), + [sym_glossary_entry_reference] = STATE(51), + [sym_acronym_definition] = STATE(51), + [sym_theorem_definition] = STATE(51), + [sym_generic_command] = STATE(51), + [aux_sym_document_repeat1] = STATE(51), + [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(411), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(425), + [sym_param] = ACTIONS(413), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [51] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [52] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(83), + [aux_sym_chapter_token1] = ACTIONS(83), + [aux_sym_section_token1] = ACTIONS(83), + [aux_sym_subsection_token1] = ACTIONS(83), + [aux_sym_subsubsection_token1] = ACTIONS(83), + [aux_sym_paragraph_token1] = ACTIONS(83), + [aux_sym_subparagraph_token1] = ACTIONS(83), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_BSLASH_RBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [53] = { + [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(475), + [sym_displayed_equation] = STATE(63), + [sym_inline_formula] = STATE(63), + [sym_begin] = STATE(46), + [sym_environment] = STATE(63), + [sym_caption] = STATE(63), + [sym_citation] = STATE(63), + [sym_package_include] = STATE(63), + [sym_class_include] = STATE(63), + [sym_biblatex_include] = STATE(63), + [sym_graphics_include] = STATE(63), + [sym_import] = STATE(63), + [sym_label_definition] = STATE(63), + [sym_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_theorem_definition] = STATE(63), + [sym_generic_command] = STATE(63), + [aux_sym_document_repeat1] = STATE(63), + [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(429), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(431), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [54] = { + [sym__simple_content] = STATE(73), + [sym__content] = STATE(73), + [sym_part] = STATE(73), + [sym_chapter] = STATE(73), + [sym_section] = STATE(73), + [sym_subsection] = STATE(73), + [sym_subsubsection] = STATE(73), + [sym_paragraph] = STATE(73), + [sym_subparagraph] = STATE(73), + [sym_enum_item] = STATE(73), + [sym_brace_group] = STATE(73), + [sym_mixed_group] = STATE(73), + [sym_text] = STATE(73), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(73), + [sym_inline_formula] = STATE(73), + [sym_begin] = STATE(46), + [sym_environment] = STATE(73), + [sym_caption] = STATE(73), + [sym_citation] = STATE(73), + [sym_package_include] = STATE(73), + [sym_class_include] = STATE(73), + [sym_biblatex_include] = STATE(73), + [sym_graphics_include] = STATE(73), + [sym_import] = STATE(73), + [sym_label_definition] = STATE(73), + [sym_label_reference] = STATE(73), + [sym_label_reference_range] = STATE(73), + [sym_label_number] = STATE(73), + [sym_command_definition] = STATE(73), + [sym_math_operator] = STATE(73), + [sym_glossary_entry_definition] = STATE(73), + [sym_glossary_entry_reference] = STATE(73), + [sym_acronym_definition] = STATE(73), + [sym_theorem_definition] = STATE(73), + [sym_generic_command] = STATE(73), + [aux_sym_document_repeat1] = STATE(73), + [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(433), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(435), + [sym_param] = ACTIONS(437), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [55] = { + [sym__simple_content] = STATE(58), + [sym__content] = STATE(58), + [sym_part] = STATE(58), + [sym_chapter] = STATE(58), + [sym_section] = STATE(58), + [sym_subsection] = STATE(58), + [sym_subsubsection] = STATE(58), + [sym_paragraph] = STATE(58), + [sym_subparagraph] = STATE(58), + [sym_enum_item] = STATE(58), + [sym_brace_group] = STATE(58), + [sym_mixed_group] = STATE(58), + [sym_text] = STATE(58), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_begin] = STATE(46), + [sym_environment] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_import] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_command_definition] = STATE(58), + [sym_math_operator] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_generic_command] = STATE(58), + [aux_sym_document_repeat1] = STATE(58), + [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(439), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(441), + [sym_param] = ACTIONS(443), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [56] = { + [sym__simple_content] = STATE(99), + [sym__content] = STATE(99), + [sym_part] = STATE(99), + [sym_chapter] = STATE(99), + [sym_section] = STATE(99), + [sym_subsection] = STATE(99), + [sym_subsubsection] = STATE(99), + [sym_paragraph] = STATE(99), + [sym_subparagraph] = STATE(99), + [sym_enum_item] = STATE(99), + [sym_brace_group] = STATE(99), + [sym_mixed_group] = STATE(99), + [sym_text] = STATE(99), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(99), + [sym_inline_formula] = STATE(99), + [sym_begin] = STATE(78), + [sym_end] = STATE(1099), + [sym_environment] = STATE(99), + [sym_caption] = STATE(99), + [sym_citation] = STATE(99), + [sym_package_include] = STATE(99), + [sym_class_include] = STATE(99), + [sym_biblatex_include] = STATE(99), + [sym_graphics_include] = STATE(99), + [sym_import] = STATE(99), + [sym_label_definition] = STATE(99), + [sym_label_reference] = STATE(99), + [sym_label_reference_range] = STATE(99), + [sym_label_number] = STATE(99), + [sym_command_definition] = STATE(99), + [sym_math_operator] = STATE(99), + [sym_glossary_entry_definition] = STATE(99), + [sym_glossary_entry_reference] = STATE(99), + [sym_acronym_definition] = STATE(99), + [sym_theorem_definition] = STATE(99), + [sym_generic_command] = STATE(99), + [aux_sym_document_repeat1] = STATE(99), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(445), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(447), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [57] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(83), + [aux_sym_chapter_token1] = ACTIONS(83), + [aux_sym_section_token1] = ACTIONS(83), + [aux_sym_subsection_token1] = ACTIONS(83), + [aux_sym_subsubsection_token1] = ACTIONS(83), + [aux_sym_paragraph_token1] = ACTIONS(83), + [aux_sym_subparagraph_token1] = ACTIONS(83), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHend] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [58] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(449), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [59] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(93), + [aux_sym_chapter_token1] = ACTIONS(93), + [aux_sym_section_token1] = ACTIONS(93), + [aux_sym_subsection_token1] = ACTIONS(93), + [aux_sym_subsubsection_token1] = ACTIONS(93), + [aux_sym_paragraph_token1] = ACTIONS(93), + [aux_sym_subparagraph_token1] = ACTIONS(93), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHend] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [60] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(612), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(423), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [61] = { + [sym__simple_content] = STATE(58), + [sym__content] = STATE(58), + [sym_part] = STATE(58), + [sym_chapter] = STATE(58), + [sym_section] = STATE(58), + [sym_subsection] = STATE(58), + [sym_subsubsection] = STATE(58), + [sym_paragraph] = STATE(58), + [sym_subparagraph] = STATE(58), + [sym_enum_item] = STATE(58), + [sym_brace_group] = STATE(58), + [sym_mixed_group] = STATE(58), + [sym_text] = STATE(58), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_begin] = STATE(46), + [sym_environment] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_import] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_command_definition] = STATE(58), + [sym_math_operator] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_generic_command] = STATE(58), + [aux_sym_document_repeat1] = STATE(58), + [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(439), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(443), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [62] = { + [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(475), + [sym_displayed_equation] = STATE(63), + [sym_inline_formula] = STATE(63), + [sym_begin] = STATE(46), + [sym_environment] = STATE(63), + [sym_caption] = STATE(63), + [sym_citation] = STATE(63), + [sym_package_include] = STATE(63), + [sym_class_include] = STATE(63), + [sym_biblatex_include] = STATE(63), + [sym_graphics_include] = STATE(63), + [sym_import] = STATE(63), + [sym_label_definition] = STATE(63), + [sym_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_theorem_definition] = STATE(63), + [sym_generic_command] = STATE(63), + [aux_sym_document_repeat1] = STATE(63), + [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(429), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(451), + [sym_param] = ACTIONS(431), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [63] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(453), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(453), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [64] = { + [sym__simple_content] = STATE(67), + [sym__content] = STATE(67), + [sym_part] = STATE(67), + [sym_chapter] = STATE(67), + [sym_section] = STATE(67), + [sym_subsection] = STATE(67), + [sym_subsubsection] = STATE(67), + [sym_paragraph] = STATE(67), + [sym_subparagraph] = STATE(67), + [sym_enum_item] = STATE(67), + [sym_brace_group] = STATE(67), + [sym_mixed_group] = STATE(67), + [sym_text] = STATE(67), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(67), + [sym_inline_formula] = STATE(67), + [sym_begin] = STATE(46), + [sym_environment] = STATE(67), + [sym_caption] = STATE(67), + [sym_citation] = STATE(67), + [sym_package_include] = STATE(67), + [sym_class_include] = STATE(67), + [sym_biblatex_include] = STATE(67), + [sym_graphics_include] = STATE(67), + [sym_import] = STATE(67), + [sym_label_definition] = STATE(67), + [sym_label_reference] = STATE(67), + [sym_label_reference_range] = STATE(67), + [sym_label_number] = STATE(67), + [sym_command_definition] = STATE(67), + [sym_math_operator] = STATE(67), + [sym_glossary_entry_definition] = STATE(67), + [sym_glossary_entry_reference] = STATE(67), + [sym_acronym_definition] = STATE(67), + [sym_theorem_definition] = STATE(67), + [sym_generic_command] = STATE(67), + [aux_sym_document_repeat1] = STATE(67), + [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(455), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(457), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [65] = { + [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(542), + [sym_displayed_equation] = STATE(76), + [sym_inline_formula] = STATE(76), + [sym_begin] = STATE(78), + [sym_end] = STATE(788), + [sym_environment] = STATE(76), + [sym_caption] = STATE(76), + [sym_citation] = STATE(76), + [sym_package_include] = STATE(76), + [sym_class_include] = STATE(76), + [sym_biblatex_include] = STATE(76), + [sym_graphics_include] = STATE(76), + [sym_import] = STATE(76), + [sym_label_definition] = STATE(76), + [sym_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_theorem_definition] = STATE(76), + [sym_generic_command] = STATE(76), + [aux_sym_document_repeat1] = STATE(76), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(461), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [66] = { + [sym__simple_content] = STATE(67), + [sym__content] = STATE(67), + [sym_part] = STATE(67), + [sym_chapter] = STATE(67), + [sym_section] = STATE(67), + [sym_subsection] = STATE(67), + [sym_subsubsection] = STATE(67), + [sym_paragraph] = STATE(67), + [sym_subparagraph] = STATE(67), + [sym_enum_item] = STATE(67), + [sym_brace_group] = STATE(67), + [sym_mixed_group] = STATE(67), + [sym_text] = STATE(67), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(67), + [sym_inline_formula] = STATE(67), + [sym_begin] = STATE(46), + [sym_environment] = STATE(67), + [sym_caption] = STATE(67), + [sym_citation] = STATE(67), + [sym_package_include] = STATE(67), + [sym_class_include] = STATE(67), + [sym_biblatex_include] = STATE(67), + [sym_graphics_include] = STATE(67), + [sym_import] = STATE(67), + [sym_label_definition] = STATE(67), + [sym_label_reference] = STATE(67), + [sym_label_reference_range] = STATE(67), + [sym_label_number] = STATE(67), + [sym_command_definition] = STATE(67), + [sym_math_operator] = STATE(67), + [sym_glossary_entry_definition] = STATE(67), + [sym_glossary_entry_reference] = STATE(67), + [sym_acronym_definition] = STATE(67), + [sym_theorem_definition] = STATE(67), + [sym_generic_command] = STATE(67), + [aux_sym_document_repeat1] = STATE(67), + [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(455), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(463), + [sym_param] = ACTIONS(457), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [67] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(465), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(467), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [69] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(77), + [aux_sym_chapter_token1] = ACTIONS(77), + [aux_sym_section_token1] = ACTIONS(77), + [aux_sym_subsection_token1] = ACTIONS(77), + [aux_sym_subsubsection_token1] = ACTIONS(77), + [aux_sym_paragraph_token1] = ACTIONS(77), + [aux_sym_subparagraph_token1] = ACTIONS(77), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_BSLASH_RBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [70] = { + [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(46), + [sym_environment] = STATE(68), + [sym_caption] = STATE(68), + [sym_citation] = STATE(68), + [sym_package_include] = STATE(68), + [sym_class_include] = STATE(68), + [sym_biblatex_include] = STATE(68), + [sym_graphics_include] = STATE(68), + [sym_import] = STATE(68), + [sym_label_definition] = STATE(68), + [sym_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_theorem_definition] = STATE(68), + [sym_generic_command] = STATE(68), + [aux_sym_document_repeat1] = STATE(68), + [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(469), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(471), + [sym_param] = ACTIONS(473), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [71] = { + [sym__simple_content] = STATE(74), + [sym__content] = STATE(74), + [sym_part] = STATE(74), + [sym_chapter] = STATE(74), + [sym_section] = STATE(74), + [sym_subsection] = STATE(74), + [sym_subsubsection] = STATE(74), + [sym_paragraph] = STATE(74), + [sym_subparagraph] = STATE(74), + [sym_enum_item] = STATE(74), + [sym_brace_group] = STATE(74), + [sym_mixed_group] = STATE(74), + [sym_text] = STATE(74), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(74), + [sym_inline_formula] = STATE(74), + [sym_begin] = STATE(78), + [sym_end] = STATE(1016), + [sym_environment] = STATE(74), + [sym_caption] = STATE(74), + [sym_citation] = STATE(74), + [sym_package_include] = STATE(74), + [sym_class_include] = STATE(74), + [sym_biblatex_include] = STATE(74), + [sym_graphics_include] = STATE(74), + [sym_import] = STATE(74), + [sym_label_definition] = STATE(74), + [sym_label_reference] = STATE(74), + [sym_label_reference_range] = STATE(74), + [sym_label_number] = STATE(74), + [sym_command_definition] = STATE(74), + [sym_math_operator] = STATE(74), + [sym_glossary_entry_definition] = STATE(74), + [sym_glossary_entry_reference] = STATE(74), + [sym_acronym_definition] = STATE(74), + [sym_theorem_definition] = STATE(74), + [sym_generic_command] = STATE(74), + [aux_sym_document_repeat1] = STATE(74), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(477), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [72] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(87), + [aux_sym_chapter_token1] = ACTIONS(87), + [aux_sym_section_token1] = ACTIONS(87), + [aux_sym_subsection_token1] = ACTIONS(87), + [aux_sym_subsubsection_token1] = ACTIONS(87), + [aux_sym_paragraph_token1] = ACTIONS(87), + [aux_sym_subparagraph_token1] = ACTIONS(87), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASH_RPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [73] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(479), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(479), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [74] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(1033), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(477), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [75] = { + [sym__simple_content] = STATE(103), + [sym__content] = STATE(103), + [sym_part] = STATE(103), + [sym_chapter] = STATE(103), + [sym_section] = STATE(103), + [sym_subsection] = STATE(103), + [sym_subsubsection] = STATE(103), + [sym_paragraph] = STATE(103), + [sym_subparagraph] = STATE(103), + [sym_enum_item] = STATE(103), + [sym_brace_group] = STATE(103), + [sym_mixed_group] = STATE(103), + [sym_text] = STATE(103), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(103), + [sym_inline_formula] = STATE(103), + [sym_begin] = STATE(46), + [sym_environment] = STATE(103), + [sym_caption] = STATE(103), + [sym_citation] = STATE(103), + [sym_package_include] = STATE(103), + [sym_class_include] = STATE(103), + [sym_biblatex_include] = STATE(103), + [sym_graphics_include] = STATE(103), + [sym_import] = STATE(103), + [sym_label_definition] = STATE(103), + [sym_label_reference] = STATE(103), + [sym_label_reference_range] = STATE(103), + [sym_label_number] = STATE(103), + [sym_command_definition] = STATE(103), + [sym_math_operator] = STATE(103), + [sym_glossary_entry_definition] = STATE(103), + [sym_glossary_entry_reference] = STATE(103), + [sym_acronym_definition] = STATE(103), + [sym_theorem_definition] = STATE(103), + [sym_generic_command] = STATE(103), + [aux_sym_document_repeat1] = STATE(103), + [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(481), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(483), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [76] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(807), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(461), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [77] = { + [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(46), + [sym_environment] = STATE(68), + [sym_caption] = STATE(68), + [sym_citation] = STATE(68), + [sym_package_include] = STATE(68), + [sym_class_include] = STATE(68), + [sym_biblatex_include] = STATE(68), + [sym_graphics_include] = STATE(68), + [sym_import] = STATE(68), + [sym_label_definition] = STATE(68), + [sym_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_theorem_definition] = STATE(68), + [sym_generic_command] = STATE(68), + [aux_sym_document_repeat1] = STATE(68), + [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(469), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(473), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [78] = { + [sym__simple_content] = STATE(45), + [sym__content] = STATE(45), + [sym_part] = STATE(45), + [sym_chapter] = STATE(45), + [sym_section] = STATE(45), + [sym_subsection] = STATE(45), + [sym_subsubsection] = STATE(45), + [sym_paragraph] = STATE(45), + [sym_subparagraph] = STATE(45), + [sym_enum_item] = STATE(45), + [sym_brace_group] = STATE(45), + [sym_mixed_group] = STATE(45), + [sym_text] = STATE(45), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(45), + [sym_inline_formula] = STATE(45), + [sym_begin] = STATE(78), + [sym_end] = STATE(715), + [sym_environment] = STATE(45), + [sym_caption] = STATE(45), + [sym_citation] = STATE(45), + [sym_package_include] = STATE(45), + [sym_class_include] = STATE(45), + [sym_biblatex_include] = STATE(45), + [sym_graphics_include] = STATE(45), + [sym_import] = STATE(45), + [sym_label_definition] = STATE(45), + [sym_label_reference] = STATE(45), + [sym_label_reference_range] = STATE(45), + [sym_label_number] = STATE(45), + [sym_command_definition] = STATE(45), + [sym_math_operator] = STATE(45), + [sym_glossary_entry_definition] = STATE(45), + [sym_glossary_entry_reference] = STATE(45), + [sym_acronym_definition] = STATE(45), + [sym_theorem_definition] = STATE(45), + [sym_generic_command] = STATE(45), + [aux_sym_document_repeat1] = STATE(45), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(485), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(405), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [79] = { + [sym__simple_content] = STATE(73), + [sym__content] = STATE(73), + [sym_part] = STATE(73), + [sym_chapter] = STATE(73), + [sym_section] = STATE(73), + [sym_subsection] = STATE(73), + [sym_subsubsection] = STATE(73), + [sym_paragraph] = STATE(73), + [sym_subparagraph] = STATE(73), + [sym_enum_item] = STATE(73), + [sym_brace_group] = STATE(73), + [sym_mixed_group] = STATE(73), + [sym_text] = STATE(73), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(73), + [sym_inline_formula] = STATE(73), + [sym_begin] = STATE(46), + [sym_environment] = STATE(73), + [sym_caption] = STATE(73), + [sym_citation] = STATE(73), + [sym_package_include] = STATE(73), + [sym_class_include] = STATE(73), + [sym_biblatex_include] = STATE(73), + [sym_graphics_include] = STATE(73), + [sym_import] = STATE(73), + [sym_label_definition] = STATE(73), + [sym_label_reference] = STATE(73), + [sym_label_reference_range] = STATE(73), + [sym_label_number] = STATE(73), + [sym_command_definition] = STATE(73), + [sym_math_operator] = STATE(73), + [sym_glossary_entry_definition] = STATE(73), + [sym_glossary_entry_reference] = STATE(73), + [sym_acronym_definition] = STATE(73), + [sym_theorem_definition] = STATE(73), + [sym_generic_command] = STATE(73), + [aux_sym_document_repeat1] = STATE(73), + [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(433), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(437), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [80] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(1039), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(487), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [81] = { + [sym__simple_content] = STATE(87), + [sym__content] = STATE(87), + [sym_part] = STATE(87), + [sym_chapter] = STATE(87), + [sym_section] = STATE(87), + [sym_subsection] = STATE(87), + [sym_subsubsection] = STATE(87), + [sym_paragraph] = STATE(87), + [sym_subparagraph] = STATE(87), + [sym_enum_item] = STATE(87), + [sym_brace_group] = STATE(87), + [sym_mixed_group] = STATE(87), + [sym_text] = STATE(87), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(87), + [sym_inline_formula] = STATE(87), + [sym_begin] = STATE(46), + [sym_environment] = STATE(87), + [sym_caption] = STATE(87), + [sym_citation] = STATE(87), + [sym_package_include] = STATE(87), + [sym_class_include] = STATE(87), + [sym_biblatex_include] = STATE(87), + [sym_graphics_include] = STATE(87), + [sym_import] = STATE(87), + [sym_label_definition] = STATE(87), + [sym_label_reference] = STATE(87), + [sym_label_reference_range] = STATE(87), + [sym_label_number] = STATE(87), + [sym_command_definition] = STATE(87), + [sym_math_operator] = STATE(87), + [sym_glossary_entry_definition] = STATE(87), + [sym_glossary_entry_reference] = STATE(87), + [sym_acronym_definition] = STATE(87), + [sym_theorem_definition] = STATE(87), + [sym_generic_command] = STATE(87), + [aux_sym_document_repeat1] = STATE(87), + [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(489), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(491), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [82] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(77), + [aux_sym_chapter_token1] = ACTIONS(77), + [aux_sym_section_token1] = ACTIONS(77), + [aux_sym_subsection_token1] = ACTIONS(77), + [aux_sym_subsubsection_token1] = ACTIONS(77), + [aux_sym_paragraph_token1] = ACTIONS(77), + [aux_sym_subparagraph_token1] = ACTIONS(77), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHend] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [83] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(952), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(493), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [84] = { + [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(542), + [sym_displayed_equation] = STATE(89), + [sym_inline_formula] = STATE(89), + [sym_begin] = STATE(78), + [sym_end] = STATE(870), + [sym_environment] = STATE(89), + [sym_caption] = STATE(89), + [sym_citation] = STATE(89), + [sym_package_include] = STATE(89), + [sym_class_include] = STATE(89), + [sym_biblatex_include] = STATE(89), + [sym_graphics_include] = STATE(89), + [sym_import] = STATE(89), + [sym_label_definition] = STATE(89), + [sym_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_theorem_definition] = STATE(89), + [sym_generic_command] = STATE(89), + [aux_sym_document_repeat1] = STATE(89), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(497), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [85] = { + [sym__simple_content] = STATE(87), + [sym__content] = STATE(87), + [sym_part] = STATE(87), + [sym_chapter] = STATE(87), + [sym_section] = STATE(87), + [sym_subsection] = STATE(87), + [sym_subsubsection] = STATE(87), + [sym_paragraph] = STATE(87), + [sym_subparagraph] = STATE(87), + [sym_enum_item] = STATE(87), + [sym_brace_group] = STATE(87), + [sym_mixed_group] = STATE(87), + [sym_text] = STATE(87), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(87), + [sym_inline_formula] = STATE(87), + [sym_begin] = STATE(46), + [sym_environment] = STATE(87), + [sym_caption] = STATE(87), + [sym_citation] = STATE(87), + [sym_package_include] = STATE(87), + [sym_class_include] = STATE(87), + [sym_biblatex_include] = STATE(87), + [sym_graphics_include] = STATE(87), + [sym_import] = STATE(87), + [sym_label_definition] = STATE(87), + [sym_label_reference] = STATE(87), + [sym_label_reference_range] = STATE(87), + [sym_label_number] = STATE(87), + [sym_command_definition] = STATE(87), + [sym_math_operator] = STATE(87), + [sym_glossary_entry_definition] = STATE(87), + [sym_glossary_entry_reference] = STATE(87), + [sym_acronym_definition] = STATE(87), + [sym_theorem_definition] = STATE(87), + [sym_generic_command] = STATE(87), + [aux_sym_document_repeat1] = STATE(87), + [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(489), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(499), + [sym_param] = ACTIONS(491), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [86] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(657), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(501), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [87] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(503), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(503), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [88] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(87), + [aux_sym_chapter_token1] = ACTIONS(87), + [aux_sym_section_token1] = ACTIONS(87), + [aux_sym_subsection_token1] = ACTIONS(87), + [aux_sym_subsubsection_token1] = ACTIONS(87), + [aux_sym_paragraph_token1] = ACTIONS(87), + [aux_sym_subparagraph_token1] = ACTIONS(87), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHend] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [89] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(829), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(497), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [90] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(505), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [91] = { + [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(475), + [sym_displayed_equation] = STATE(90), + [sym_inline_formula] = STATE(90), + [sym_begin] = STATE(46), + [sym_environment] = STATE(90), + [sym_caption] = STATE(90), + [sym_citation] = STATE(90), + [sym_package_include] = STATE(90), + [sym_class_include] = STATE(90), + [sym_biblatex_include] = STATE(90), + [sym_graphics_include] = STATE(90), + [sym_import] = STATE(90), + [sym_label_definition] = STATE(90), + [sym_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_theorem_definition] = STATE(90), + [sym_generic_command] = STATE(90), + [aux_sym_document_repeat1] = STATE(90), + [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(507), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(509), + [sym_param] = ACTIONS(511), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [92] = { + [sym__simple_content] = STATE(107), + [sym__content] = STATE(107), + [sym_part] = STATE(107), + [sym_chapter] = STATE(107), + [sym_section] = STATE(107), + [sym_subsection] = STATE(107), + [sym_subsubsection] = STATE(107), + [sym_paragraph] = STATE(107), + [sym_subparagraph] = STATE(107), + [sym_enum_item] = STATE(107), + [sym_brace_group] = STATE(107), + [sym_mixed_group] = STATE(107), + [sym_text] = STATE(107), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(107), + [sym_inline_formula] = STATE(107), + [sym_begin] = STATE(46), + [sym_environment] = STATE(107), + [sym_caption] = STATE(107), + [sym_citation] = STATE(107), + [sym_package_include] = STATE(107), + [sym_class_include] = STATE(107), + [sym_biblatex_include] = STATE(107), + [sym_graphics_include] = STATE(107), + [sym_import] = STATE(107), + [sym_label_definition] = STATE(107), + [sym_label_reference] = STATE(107), + [sym_label_reference_range] = STATE(107), + [sym_label_number] = STATE(107), + [sym_command_definition] = STATE(107), + [sym_math_operator] = STATE(107), + [sym_glossary_entry_definition] = STATE(107), + [sym_glossary_entry_reference] = STATE(107), + [sym_acronym_definition] = STATE(107), + [sym_theorem_definition] = STATE(107), + [sym_generic_command] = STATE(107), + [aux_sym_document_repeat1] = STATE(107), + [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(513), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(513), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(515), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [93] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(93), + [aux_sym_chapter_token1] = ACTIONS(93), + [aux_sym_section_token1] = ACTIONS(93), + [aux_sym_subsection_token1] = ACTIONS(93), + [aux_sym_subsubsection_token1] = ACTIONS(93), + [aux_sym_paragraph_token1] = ACTIONS(93), + [aux_sym_subparagraph_token1] = ACTIONS(93), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASH_RPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [94] = { + [sym__simple_content] = STATE(43), + [sym__content] = STATE(43), + [sym_part] = STATE(43), + [sym_chapter] = STATE(43), + [sym_section] = STATE(43), + [sym_subsection] = STATE(43), + [sym_subsubsection] = STATE(43), + [sym_paragraph] = STATE(43), + [sym_subparagraph] = STATE(43), + [sym_enum_item] = STATE(43), + [sym_brace_group] = STATE(43), + [sym_mixed_group] = STATE(43), + [sym_text] = STATE(43), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(43), + [sym_inline_formula] = STATE(43), + [sym_begin] = STATE(46), + [sym_environment] = STATE(43), + [sym_caption] = STATE(43), + [sym_citation] = STATE(43), + [sym_package_include] = STATE(43), + [sym_class_include] = STATE(43), + [sym_biblatex_include] = STATE(43), + [sym_graphics_include] = STATE(43), + [sym_import] = STATE(43), + [sym_label_definition] = STATE(43), + [sym_label_reference] = STATE(43), + [sym_label_reference_range] = STATE(43), + [sym_label_number] = STATE(43), + [sym_command_definition] = STATE(43), + [sym_math_operator] = STATE(43), + [sym_glossary_entry_definition] = STATE(43), + [sym_glossary_entry_reference] = STATE(43), + [sym_acronym_definition] = STATE(43), + [sym_theorem_definition] = STATE(43), + [sym_generic_command] = STATE(43), + [aux_sym_document_repeat1] = STATE(43), + [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(517), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(517), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(519), + [sym_param] = ACTIONS(521), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [95] = { + [sym__simple_content] = STATE(83), + [sym__content] = STATE(83), + [sym_part] = STATE(83), + [sym_chapter] = STATE(83), + [sym_section] = STATE(83), + [sym_subsection] = STATE(83), + [sym_subsubsection] = STATE(83), + [sym_paragraph] = STATE(83), + [sym_subparagraph] = STATE(83), + [sym_enum_item] = STATE(83), + [sym_brace_group] = STATE(83), + [sym_mixed_group] = STATE(83), + [sym_text] = STATE(83), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(83), + [sym_inline_formula] = STATE(83), + [sym_begin] = STATE(78), + [sym_end] = STATE(970), + [sym_environment] = STATE(83), + [sym_caption] = STATE(83), + [sym_citation] = STATE(83), + [sym_package_include] = STATE(83), + [sym_class_include] = STATE(83), + [sym_biblatex_include] = STATE(83), + [sym_graphics_include] = STATE(83), + [sym_import] = STATE(83), + [sym_label_definition] = STATE(83), + [sym_label_reference] = STATE(83), + [sym_label_reference_range] = STATE(83), + [sym_label_number] = STATE(83), + [sym_command_definition] = STATE(83), + [sym_math_operator] = STATE(83), + [sym_glossary_entry_definition] = STATE(83), + [sym_glossary_entry_reference] = STATE(83), + [sym_acronym_definition] = STATE(83), + [sym_theorem_definition] = STATE(83), + [sym_generic_command] = STATE(83), + [aux_sym_document_repeat1] = STATE(83), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(523), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(493), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [96] = { + [sym__simple_content] = STATE(86), + [sym__content] = STATE(86), + [sym_part] = STATE(86), + [sym_chapter] = STATE(86), + [sym_section] = STATE(86), + [sym_subsection] = STATE(86), + [sym_subsubsection] = STATE(86), + [sym_paragraph] = STATE(86), + [sym_subparagraph] = STATE(86), + [sym_enum_item] = STATE(86), + [sym_brace_group] = STATE(86), + [sym_mixed_group] = STATE(86), + [sym_text] = STATE(86), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(86), + [sym_inline_formula] = STATE(86), + [sym_begin] = STATE(78), + [sym_end] = STATE(688), + [sym_environment] = STATE(86), + [sym_caption] = STATE(86), + [sym_citation] = STATE(86), + [sym_package_include] = STATE(86), + [sym_class_include] = STATE(86), + [sym_biblatex_include] = STATE(86), + [sym_graphics_include] = STATE(86), + [sym_import] = STATE(86), + [sym_label_definition] = STATE(86), + [sym_label_reference] = STATE(86), + [sym_label_reference_range] = STATE(86), + [sym_label_number] = STATE(86), + [sym_command_definition] = STATE(86), + [sym_math_operator] = STATE(86), + [sym_glossary_entry_definition] = STATE(86), + [sym_glossary_entry_reference] = STATE(86), + [sym_acronym_definition] = STATE(86), + [sym_theorem_definition] = STATE(86), + [sym_generic_command] = STATE(86), + [aux_sym_document_repeat1] = STATE(86), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(501), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [97] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(514), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(409), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [98] = { + [sym__simple_content] = STATE(106), + [sym_chapter] = STATE(106), + [sym_section] = STATE(106), + [sym_subsection] = STATE(106), + [sym_subsubsection] = STATE(106), + [sym_paragraph] = STATE(106), + [sym_subparagraph] = STATE(106), + [sym_enum_item] = STATE(106), + [sym_brace_group] = STATE(106), + [sym_mixed_group] = STATE(106), + [sym_text] = STATE(106), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(106), + [sym_inline_formula] = STATE(106), + [sym_begin] = STATE(46), + [sym_environment] = STATE(106), + [sym_caption] = STATE(106), + [sym_citation] = STATE(106), + [sym_package_include] = STATE(106), + [sym_class_include] = STATE(106), + [sym_biblatex_include] = STATE(106), + [sym_graphics_include] = STATE(106), + [sym_import] = STATE(106), + [sym_label_definition] = STATE(106), + [sym_label_reference] = STATE(106), + [sym_label_reference_range] = STATE(106), + [sym_label_number] = STATE(106), + [sym_command_definition] = STATE(106), + [sym_math_operator] = STATE(106), + [sym_glossary_entry_definition] = STATE(106), + [sym_glossary_entry_reference] = STATE(106), + [sym_acronym_definition] = STATE(106), + [sym_theorem_definition] = STATE(106), + [sym_generic_command] = STATE(106), + [aux_sym_part_repeat1] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(527), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(529), + [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(527), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(531), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [99] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(1132), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(447), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [100] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_end] = STATE(706), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(533), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [101] = { + [sym__simple_content] = STATE(43), + [sym__content] = STATE(43), + [sym_part] = STATE(43), + [sym_chapter] = STATE(43), + [sym_section] = STATE(43), + [sym_subsection] = STATE(43), + [sym_subsubsection] = STATE(43), + [sym_paragraph] = STATE(43), + [sym_subparagraph] = STATE(43), + [sym_enum_item] = STATE(43), + [sym_brace_group] = STATE(43), + [sym_mixed_group] = STATE(43), + [sym_text] = STATE(43), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(43), + [sym_inline_formula] = STATE(43), + [sym_begin] = STATE(46), + [sym_environment] = STATE(43), + [sym_caption] = STATE(43), + [sym_citation] = STATE(43), + [sym_package_include] = STATE(43), + [sym_class_include] = STATE(43), + [sym_biblatex_include] = STATE(43), + [sym_graphics_include] = STATE(43), + [sym_import] = STATE(43), + [sym_label_definition] = STATE(43), + [sym_label_reference] = STATE(43), + [sym_label_reference_range] = STATE(43), + [sym_label_number] = STATE(43), + [sym_command_definition] = STATE(43), + [sym_math_operator] = STATE(43), + [sym_glossary_entry_definition] = STATE(43), + [sym_glossary_entry_reference] = STATE(43), + [sym_acronym_definition] = STATE(43), + [sym_theorem_definition] = STATE(43), + [sym_generic_command] = STATE(43), + [aux_sym_document_repeat1] = STATE(43), + [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(517), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(517), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(521), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [102] = { + [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(475), + [sym_displayed_equation] = STATE(90), + [sym_inline_formula] = STATE(90), + [sym_begin] = STATE(46), + [sym_environment] = STATE(90), + [sym_caption] = STATE(90), + [sym_citation] = STATE(90), + [sym_package_include] = STATE(90), + [sym_class_include] = STATE(90), + [sym_biblatex_include] = STATE(90), + [sym_graphics_include] = STATE(90), + [sym_import] = STATE(90), + [sym_label_definition] = STATE(90), + [sym_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_theorem_definition] = STATE(90), + [sym_generic_command] = STATE(90), + [aux_sym_document_repeat1] = STATE(90), + [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(507), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(511), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [103] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(535), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [104] = { + [sym__simple_content] = STATE(103), + [sym__content] = STATE(103), + [sym_part] = STATE(103), + [sym_chapter] = STATE(103), + [sym_section] = STATE(103), + [sym_subsection] = STATE(103), + [sym_subsubsection] = STATE(103), + [sym_paragraph] = STATE(103), + [sym_subparagraph] = STATE(103), + [sym_enum_item] = STATE(103), + [sym_brace_group] = STATE(103), + [sym_mixed_group] = STATE(103), + [sym_text] = STATE(103), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(103), + [sym_inline_formula] = STATE(103), + [sym_begin] = STATE(46), + [sym_environment] = STATE(103), + [sym_caption] = STATE(103), + [sym_citation] = STATE(103), + [sym_package_include] = STATE(103), + [sym_class_include] = STATE(103), + [sym_biblatex_include] = STATE(103), + [sym_graphics_include] = STATE(103), + [sym_import] = STATE(103), + [sym_label_definition] = STATE(103), + [sym_label_reference] = STATE(103), + [sym_label_reference_range] = STATE(103), + [sym_label_number] = STATE(103), + [sym_command_definition] = STATE(103), + [sym_math_operator] = STATE(103), + [sym_glossary_entry_definition] = STATE(103), + [sym_glossary_entry_reference] = STATE(103), + [sym_acronym_definition] = STATE(103), + [sym_theorem_definition] = STATE(103), + [sym_generic_command] = STATE(103), + [aux_sym_document_repeat1] = STATE(103), + [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(481), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(537), + [sym_param] = ACTIONS(483), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [105] = { + [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(542), + [sym_displayed_equation] = STATE(80), + [sym_inline_formula] = STATE(80), + [sym_begin] = STATE(78), + [sym_end] = STATE(1069), + [sym_environment] = STATE(80), + [sym_caption] = STATE(80), + [sym_citation] = STATE(80), + [sym_package_include] = STATE(80), + [sym_class_include] = STATE(80), + [sym_biblatex_include] = STATE(80), + [sym_graphics_include] = STATE(80), + [sym_import] = STATE(80), + [sym_label_definition] = STATE(80), + [sym_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_theorem_definition] = STATE(80), + [sym_generic_command] = STATE(80), + [aux_sym_document_repeat1] = STATE(80), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(539), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(487), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [106] = { + [sym__simple_content] = STATE(106), + [sym_chapter] = STATE(106), + [sym_section] = STATE(106), + [sym_subsection] = STATE(106), + [sym_subsubsection] = STATE(106), + [sym_paragraph] = STATE(106), + [sym_subparagraph] = STATE(106), + [sym_enum_item] = STATE(106), + [sym_brace_group] = STATE(106), + [sym_mixed_group] = STATE(106), + [sym_text] = STATE(106), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(106), + [sym_inline_formula] = STATE(106), + [sym_begin] = STATE(46), + [sym_environment] = STATE(106), + [sym_caption] = STATE(106), + [sym_citation] = STATE(106), + [sym_package_include] = STATE(106), + [sym_class_include] = STATE(106), + [sym_biblatex_include] = STATE(106), + [sym_graphics_include] = STATE(106), + [sym_import] = STATE(106), + [sym_label_definition] = STATE(106), + [sym_label_reference] = STATE(106), + [sym_label_reference_range] = STATE(106), + [sym_label_number] = STATE(106), + [sym_command_definition] = STATE(106), + [sym_math_operator] = STATE(106), + [sym_glossary_entry_definition] = STATE(106), + [sym_glossary_entry_reference] = STATE(106), + [sym_acronym_definition] = STATE(106), + [sym_theorem_definition] = STATE(106), + [sym_generic_command] = STATE(106), + [aux_sym_part_repeat1] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(541), + [sym__generic_command_name] = ACTIONS(543), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(546), + [aux_sym_chapter_token1] = ACTIONS(548), + [aux_sym_section_token1] = ACTIONS(551), + [aux_sym_subsection_token1] = ACTIONS(554), + [aux_sym_subsubsection_token1] = ACTIONS(557), + [aux_sym_paragraph_token1] = ACTIONS(560), + [aux_sym_subparagraph_token1] = ACTIONS(563), + [anon_sym_BSLASHitem] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_RBRACK] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(575), + [sym_word] = ACTIONS(575), + [sym_param] = ACTIONS(578), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(581), + [anon_sym_BSLASH_LBRACK] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_BSLASH_LPAREN] = ACTIONS(587), + [anon_sym_BSLASHbegin] = ACTIONS(590), + [anon_sym_BSLASHcaption] = ACTIONS(593), + [aux_sym_citation_token1] = ACTIONS(596), + [aux_sym_package_include_token1] = ACTIONS(599), + [anon_sym_BSLASHdocumentclass] = ACTIONS(602), + [anon_sym_BSLASHaddbibresource] = ACTIONS(605), + [aux_sym_graphics_include_token1] = ACTIONS(608), + [aux_sym_import_token1] = ACTIONS(611), + [anon_sym_BSLASHlabel] = ACTIONS(614), + [aux_sym_label_reference_token1] = ACTIONS(617), + [aux_sym_label_reference_range_token1] = ACTIONS(620), + [anon_sym_BSLASHnewlabel] = ACTIONS(623), + [aux_sym_command_definition_token1] = ACTIONS(626), + [aux_sym_math_operator_token1] = ACTIONS(629), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(632), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(635), + [anon_sym_BSLASHnewacronym] = ACTIONS(638), + [aux_sym_theorem_definition_token1] = ACTIONS(641), + }, + [107] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [108] = { + [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(542), + [sym_displayed_equation] = STATE(100), + [sym_inline_formula] = STATE(100), + [sym_begin] = STATE(78), + [sym_end] = STATE(576), + [sym_environment] = STATE(100), + [sym_caption] = STATE(100), + [sym_citation] = STATE(100), + [sym_package_include] = STATE(100), + [sym_class_include] = STATE(100), + [sym_biblatex_include] = STATE(100), + [sym_graphics_include] = STATE(100), + [sym_import] = STATE(100), + [sym_label_definition] = STATE(100), + [sym_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_theorem_definition] = STATE(100), + [sym_generic_command] = STATE(100), + [aux_sym_document_repeat1] = STATE(100), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(646), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(533), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [109] = { + [sym__simple_content] = STATE(111), + [sym__content] = STATE(111), + [sym_part] = 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(46), + [sym_environment] = STATE(111), + [sym_caption] = STATE(111), + [sym_citation] = STATE(111), + [sym_package_include] = STATE(111), + [sym_class_include] = STATE(111), + [sym_biblatex_include] = STATE(111), + [sym_graphics_include] = STATE(111), + [sym_import] = STATE(111), + [sym_label_definition] = STATE(111), + [sym_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_theorem_definition] = STATE(111), + [sym_generic_command] = STATE(111), + [aux_sym_document_repeat1] = STATE(111), + [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(650), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [110] = { + [sym__simple_content] = STATE(111), + [sym__content] = STATE(111), + [sym_part] = 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(46), + [sym_environment] = STATE(111), + [sym_caption] = STATE(111), + [sym_citation] = STATE(111), + [sym_package_include] = STATE(111), + [sym_class_include] = STATE(111), + [sym_biblatex_include] = STATE(111), + [sym_graphics_include] = STATE(111), + [sym_import] = STATE(111), + [sym_label_definition] = STATE(111), + [sym_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_theorem_definition] = STATE(111), + [sym_generic_command] = STATE(111), + [aux_sym_document_repeat1] = STATE(111), + [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(652), + [sym_param] = ACTIONS(650), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [111] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(654), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [112] = { + [sym__simple_content] = STATE(107), + [sym__content] = STATE(107), + [sym_part] = STATE(107), + [sym_chapter] = STATE(107), + [sym_section] = STATE(107), + [sym_subsection] = STATE(107), + [sym_subsubsection] = STATE(107), + [sym_paragraph] = STATE(107), + [sym_subparagraph] = STATE(107), + [sym_enum_item] = STATE(107), + [sym_brace_group] = STATE(107), + [sym_mixed_group] = STATE(107), + [sym_text] = STATE(107), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(107), + [sym_inline_formula] = STATE(107), + [sym_begin] = STATE(46), + [sym_environment] = STATE(107), + [sym_caption] = STATE(107), + [sym_citation] = STATE(107), + [sym_package_include] = STATE(107), + [sym_class_include] = STATE(107), + [sym_biblatex_include] = STATE(107), + [sym_graphics_include] = STATE(107), + [sym_import] = STATE(107), + [sym_label_definition] = STATE(107), + [sym_label_reference] = STATE(107), + [sym_label_reference_range] = STATE(107), + [sym_label_number] = STATE(107), + [sym_command_definition] = STATE(107), + [sym_math_operator] = STATE(107), + [sym_glossary_entry_definition] = STATE(107), + [sym_glossary_entry_reference] = STATE(107), + [sym_acronym_definition] = STATE(107), + [sym_theorem_definition] = STATE(107), + [sym_generic_command] = STATE(107), + [aux_sym_document_repeat1] = STATE(107), + [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(513), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(513), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(656), + [sym_param] = ACTIONS(515), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [113] = { + [sym__simple_content] = STATE(44), + [sym__content] = STATE(44), + [sym_part] = STATE(44), + [sym_chapter] = STATE(44), + [sym_section] = STATE(44), + [sym_subsection] = STATE(44), + [sym_subsubsection] = STATE(44), + [sym_paragraph] = STATE(44), + [sym_subparagraph] = STATE(44), + [sym_enum_item] = STATE(44), + [sym_brace_group] = STATE(44), + [sym_mixed_group] = STATE(44), + [sym_text] = STATE(44), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(44), + [sym_inline_formula] = STATE(44), + [sym_begin] = STATE(78), + [sym_end] = STATE(886), + [sym_environment] = STATE(44), + [sym_caption] = STATE(44), + [sym_citation] = STATE(44), + [sym_package_include] = STATE(44), + [sym_class_include] = STATE(44), + [sym_biblatex_include] = STATE(44), + [sym_graphics_include] = STATE(44), + [sym_import] = STATE(44), + [sym_label_definition] = STATE(44), + [sym_label_reference] = STATE(44), + [sym_label_reference_range] = STATE(44), + [sym_label_number] = STATE(44), + [sym_command_definition] = STATE(44), + [sym_math_operator] = STATE(44), + [sym_glossary_entry_definition] = STATE(44), + [sym_glossary_entry_reference] = STATE(44), + [sym_acronym_definition] = STATE(44), + [sym_theorem_definition] = STATE(44), + [sym_generic_command] = STATE(44), + [aux_sym_document_repeat1] = STATE(44), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(339), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(658), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(369), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [114] = { + [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(543), + [sym_displayed_equation] = STATE(162), + [sym_inline_formula] = STATE(162), + [sym_begin] = STATE(108), + [sym_environment] = STATE(162), + [sym_caption] = STATE(162), + [sym_citation] = STATE(162), + [sym_package_include] = STATE(162), + [sym_class_include] = STATE(162), + [sym_biblatex_include] = STATE(162), + [sym_graphics_include] = STATE(162), + [sym_import] = STATE(162), + [sym_label_definition] = STATE(162), + [sym_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_theorem_definition] = STATE(162), + [sym_generic_command] = STATE(162), + [aux_sym_document_repeat1] = STATE(162), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(660), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(662), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(664), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [115] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(666), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [116] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [117] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(674), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [118] = { + [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(550), + [sym_displayed_equation] = STATE(151), + [sym_inline_formula] = STATE(151), + [sym_begin] = STATE(96), + [sym_environment] = STATE(151), + [sym_caption] = STATE(151), + [sym_citation] = STATE(151), + [sym_package_include] = STATE(151), + [sym_class_include] = STATE(151), + [sym_biblatex_include] = STATE(151), + [sym_graphics_include] = STATE(151), + [sym_import] = STATE(151), + [sym_label_definition] = STATE(151), + [sym_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_theorem_definition] = STATE(151), + [sym_generic_command] = STATE(151), + [aux_sym_document_repeat1] = STATE(151), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(676), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(678), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(680), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [119] = { + [sym__simple_content] = STATE(116), + [sym__content] = STATE(116), + [sym_part] = STATE(116), + [sym_chapter] = STATE(116), + [sym_section] = STATE(116), + [sym_subsection] = STATE(116), + [sym_subsubsection] = STATE(116), + [sym_paragraph] = STATE(116), + [sym_subparagraph] = STATE(116), + [sym_enum_item] = STATE(116), + [sym_brace_group] = STATE(116), + [sym_mixed_group] = STATE(116), + [sym_text] = STATE(116), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(116), + [sym_inline_formula] = STATE(116), + [sym_begin] = STATE(108), + [sym_environment] = STATE(116), + [sym_caption] = STATE(116), + [sym_citation] = STATE(116), + [sym_package_include] = STATE(116), + [sym_class_include] = STATE(116), + [sym_biblatex_include] = STATE(116), + [sym_graphics_include] = STATE(116), + [sym_import] = STATE(116), + [sym_label_definition] = STATE(116), + [sym_label_reference] = STATE(116), + [sym_label_reference_range] = STATE(116), + [sym_label_number] = STATE(116), + [sym_command_definition] = STATE(116), + [sym_math_operator] = STATE(116), + [sym_glossary_entry_definition] = STATE(116), + [sym_glossary_entry_reference] = STATE(116), + [sym_acronym_definition] = STATE(116), + [sym_theorem_definition] = STATE(116), + [sym_generic_command] = STATE(116), + [aux_sym_document_repeat1] = STATE(116), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(682), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(684), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [120] = { + [sym__simple_content] = STATE(117), + [sym__content] = STATE(117), + [sym_part] = STATE(117), + [sym_chapter] = STATE(117), + [sym_section] = STATE(117), + [sym_subsection] = STATE(117), + [sym_subsubsection] = STATE(117), + [sym_paragraph] = STATE(117), + [sym_subparagraph] = STATE(117), + [sym_enum_item] = STATE(117), + [sym_brace_group] = STATE(117), + [sym_mixed_group] = STATE(117), + [sym_text] = STATE(117), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(117), + [sym_inline_formula] = STATE(117), + [sym_begin] = STATE(46), + [sym_environment] = STATE(117), + [sym_caption] = STATE(117), + [sym_citation] = STATE(117), + [sym_package_include] = STATE(117), + [sym_class_include] = STATE(117), + [sym_biblatex_include] = STATE(117), + [sym_graphics_include] = STATE(117), + [sym_import] = STATE(117), + [sym_label_definition] = STATE(117), + [sym_label_reference] = STATE(117), + [sym_label_reference_range] = STATE(117), + [sym_label_number] = STATE(117), + [sym_command_definition] = STATE(117), + [sym_math_operator] = STATE(117), + [sym_glossary_entry_definition] = STATE(117), + [sym_glossary_entry_reference] = STATE(117), + [sym_acronym_definition] = STATE(117), + [sym_theorem_definition] = STATE(117), + [sym_generic_command] = STATE(117), + [aux_sym_document_repeat1] = STATE(117), + [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(688), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(690), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [121] = { + [sym__simple_content] = STATE(131), + [sym__content] = STATE(131), + [sym_part] = STATE(131), + [sym_chapter] = STATE(131), + [sym_section] = STATE(131), + [sym_subsection] = STATE(131), + [sym_subsubsection] = STATE(131), + [sym_paragraph] = STATE(131), + [sym_subparagraph] = STATE(131), + [sym_enum_item] = STATE(131), + [sym_brace_group] = STATE(131), + [sym_mixed_group] = STATE(131), + [sym_text] = STATE(131), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(131), + [sym_inline_formula] = STATE(131), + [sym_begin] = STATE(46), + [sym_environment] = STATE(131), + [sym_caption] = STATE(131), + [sym_citation] = STATE(131), + [sym_package_include] = STATE(131), + [sym_class_include] = STATE(131), + [sym_biblatex_include] = STATE(131), + [sym_graphics_include] = STATE(131), + [sym_import] = STATE(131), + [sym_label_definition] = STATE(131), + [sym_label_reference] = STATE(131), + [sym_label_reference_range] = STATE(131), + [sym_label_number] = STATE(131), + [sym_command_definition] = STATE(131), + [sym_math_operator] = STATE(131), + [sym_glossary_entry_definition] = STATE(131), + [sym_glossary_entry_reference] = STATE(131), + [sym_acronym_definition] = STATE(131), + [sym_theorem_definition] = STATE(131), + [sym_generic_command] = STATE(131), + [aux_sym_document_repeat1] = STATE(131), + [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(692), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(694), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [122] = { + [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(550), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(96), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_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_theorem_definition] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(696), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(698), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(700), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [123] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(702), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [124] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [125] = { + [sym__simple_content] = STATE(174), + [sym__content] = STATE(174), + [sym_part] = STATE(174), + [sym_chapter] = STATE(174), + [sym_section] = STATE(174), + [sym_subsection] = STATE(174), + [sym_subsubsection] = STATE(174), + [sym_paragraph] = STATE(174), + [sym_subparagraph] = STATE(174), + [sym_enum_item] = STATE(174), + [sym_brace_group] = STATE(174), + [sym_mixed_group] = STATE(174), + [sym_text] = STATE(174), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(174), + [sym_inline_formula] = STATE(174), + [sym_begin] = STATE(108), + [sym_environment] = STATE(174), + [sym_caption] = STATE(174), + [sym_citation] = STATE(174), + [sym_package_include] = STATE(174), + [sym_class_include] = STATE(174), + [sym_biblatex_include] = STATE(174), + [sym_graphics_include] = STATE(174), + [sym_import] = STATE(174), + [sym_label_definition] = STATE(174), + [sym_label_reference] = STATE(174), + [sym_label_reference_range] = STATE(174), + [sym_label_number] = STATE(174), + [sym_command_definition] = STATE(174), + [sym_math_operator] = STATE(174), + [sym_glossary_entry_definition] = STATE(174), + [sym_glossary_entry_reference] = STATE(174), + [sym_acronym_definition] = STATE(174), + [sym_theorem_definition] = STATE(174), + [sym_generic_command] = STATE(174), + [aux_sym_document_repeat1] = STATE(174), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(704), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(706), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [126] = { + [sym__simple_content] = STATE(173), + [sym__content] = STATE(173), + [sym_part] = STATE(173), + [sym_chapter] = STATE(173), + [sym_section] = STATE(173), + [sym_subsection] = STATE(173), + [sym_subsubsection] = STATE(173), + [sym_paragraph] = STATE(173), + [sym_subparagraph] = STATE(173), + [sym_enum_item] = STATE(173), + [sym_brace_group] = STATE(173), + [sym_mixed_group] = STATE(173), + [sym_text] = STATE(173), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(173), + [sym_inline_formula] = STATE(173), + [sym_begin] = STATE(46), + [sym_environment] = STATE(173), + [sym_caption] = STATE(173), + [sym_citation] = STATE(173), + [sym_package_include] = STATE(173), + [sym_class_include] = STATE(173), + [sym_biblatex_include] = STATE(173), + [sym_graphics_include] = STATE(173), + [sym_import] = STATE(173), + [sym_label_definition] = STATE(173), + [sym_label_reference] = STATE(173), + [sym_label_reference_range] = STATE(173), + [sym_label_number] = STATE(173), + [sym_command_definition] = STATE(173), + [sym_math_operator] = STATE(173), + [sym_glossary_entry_definition] = STATE(173), + [sym_glossary_entry_reference] = STATE(173), + [sym_acronym_definition] = STATE(173), + [sym_theorem_definition] = STATE(173), + [sym_generic_command] = STATE(173), + [aux_sym_document_repeat1] = STATE(173), + [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(710), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(712), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [127] = { + [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(550), + [sym_displayed_equation] = STATE(133), + [sym_inline_formula] = STATE(133), + [sym_begin] = STATE(96), + [sym_environment] = STATE(133), + [sym_caption] = STATE(133), + [sym_citation] = STATE(133), + [sym_package_include] = STATE(133), + [sym_class_include] = STATE(133), + [sym_biblatex_include] = STATE(133), + [sym_graphics_include] = STATE(133), + [sym_import] = STATE(133), + [sym_label_definition] = STATE(133), + [sym_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_theorem_definition] = STATE(133), + [sym_generic_command] = STATE(133), + [aux_sym_document_repeat1] = STATE(133), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(714), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(716), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(718), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(720), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [129] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(722), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [130] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(726), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(728), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [131] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(730), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [132] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(732), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(734), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [133] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(738), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [134] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(93), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(93), + [aux_sym_chapter_token1] = ACTIONS(93), + [aux_sym_section_token1] = ACTIONS(93), + [aux_sym_subsection_token1] = ACTIONS(93), + [aux_sym_subsubsection_token1] = ACTIONS(93), + [aux_sym_paragraph_token1] = ACTIONS(93), + [aux_sym_subparagraph_token1] = ACTIONS(93), + [anon_sym_BSLASHitem] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [sym_word] = ACTIONS(91), + [sym_param] = ACTIONS(91), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(91), + [anon_sym_BSLASH_LBRACK] = ACTIONS(91), + [anon_sym_BSLASH_RBRACK] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(93), + [anon_sym_BSLASH_LPAREN] = ACTIONS(91), + [anon_sym_BSLASHbegin] = ACTIONS(93), + [anon_sym_BSLASHcaption] = ACTIONS(93), + [aux_sym_citation_token1] = ACTIONS(93), + [aux_sym_package_include_token1] = ACTIONS(93), + [anon_sym_BSLASHdocumentclass] = ACTIONS(93), + [anon_sym_BSLASHaddbibresource] = ACTIONS(93), + [aux_sym_graphics_include_token1] = ACTIONS(93), + [aux_sym_import_token1] = ACTIONS(93), + [anon_sym_BSLASHlabel] = ACTIONS(93), + [aux_sym_label_reference_token1] = ACTIONS(93), + [aux_sym_label_reference_range_token1] = ACTIONS(93), + [anon_sym_BSLASHnewlabel] = ACTIONS(93), + [aux_sym_command_definition_token1] = ACTIONS(93), + [aux_sym_math_operator_token1] = ACTIONS(93), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(93), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(93), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [aux_sym_theorem_definition_token1] = ACTIONS(93), + }, + [135] = { + [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(46), + [sym_environment] = STATE(128), + [sym_caption] = STATE(128), + [sym_citation] = STATE(128), + [sym_package_include] = STATE(128), + [sym_class_include] = STATE(128), + [sym_biblatex_include] = STATE(128), + [sym_graphics_include] = STATE(128), + [sym_import] = STATE(128), + [sym_label_definition] = STATE(128), + [sym_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_theorem_definition] = STATE(128), + [sym_generic_command] = STATE(128), + [aux_sym_document_repeat1] = STATE(128), + [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(740), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(742), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [136] = { + [sym__simple_content] = STATE(129), + [sym__content] = STATE(129), + [sym_part] = STATE(129), + [sym_chapter] = STATE(129), + [sym_section] = STATE(129), + [sym_subsection] = STATE(129), + [sym_subsubsection] = STATE(129), + [sym_paragraph] = STATE(129), + [sym_subparagraph] = STATE(129), + [sym_enum_item] = STATE(129), + [sym_brace_group] = STATE(129), + [sym_mixed_group] = STATE(129), + [sym_text] = STATE(129), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(129), + [sym_inline_formula] = STATE(129), + [sym_begin] = STATE(46), + [sym_environment] = STATE(129), + [sym_caption] = STATE(129), + [sym_citation] = STATE(129), + [sym_package_include] = STATE(129), + [sym_class_include] = STATE(129), + [sym_biblatex_include] = STATE(129), + [sym_graphics_include] = STATE(129), + [sym_import] = STATE(129), + [sym_label_definition] = STATE(129), + [sym_label_reference] = STATE(129), + [sym_label_reference_range] = STATE(129), + [sym_label_number] = STATE(129), + [sym_command_definition] = STATE(129), + [sym_math_operator] = STATE(129), + [sym_glossary_entry_definition] = STATE(129), + [sym_glossary_entry_reference] = STATE(129), + [sym_acronym_definition] = STATE(129), + [sym_theorem_definition] = STATE(129), + [sym_generic_command] = STATE(129), + [aux_sym_document_repeat1] = STATE(129), + [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(744), + [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(746), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [137] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(750), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [138] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(752), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [139] = { + [sym__simple_content] = STATE(143), + [sym__content] = STATE(143), + [sym_part] = STATE(143), + [sym_chapter] = STATE(143), + [sym_section] = STATE(143), + [sym_subsection] = STATE(143), + [sym_subsubsection] = STATE(143), + [sym_paragraph] = STATE(143), + [sym_subparagraph] = STATE(143), + [sym_enum_item] = STATE(143), + [sym_brace_group] = STATE(143), + [sym_mixed_group] = STATE(143), + [sym_text] = STATE(143), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(143), + [sym_inline_formula] = STATE(143), + [sym_begin] = STATE(46), + [sym_environment] = STATE(143), + [sym_caption] = STATE(143), + [sym_citation] = STATE(143), + [sym_package_include] = STATE(143), + [sym_class_include] = STATE(143), + [sym_biblatex_include] = STATE(143), + [sym_graphics_include] = STATE(143), + [sym_import] = STATE(143), + [sym_label_definition] = STATE(143), + [sym_label_reference] = STATE(143), + [sym_label_reference_range] = STATE(143), + [sym_label_number] = STATE(143), + [sym_command_definition] = STATE(143), + [sym_math_operator] = STATE(143), + [sym_glossary_entry_definition] = STATE(143), + [sym_glossary_entry_reference] = STATE(143), + [sym_acronym_definition] = STATE(143), + [sym_theorem_definition] = STATE(143), + [sym_generic_command] = STATE(143), + [aux_sym_document_repeat1] = STATE(143), + [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(756), + [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(758), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(760), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [141] = { + [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(46), + [sym_environment] = STATE(144), + [sym_caption] = STATE(144), + [sym_citation] = STATE(144), + [sym_package_include] = STATE(144), + [sym_class_include] = STATE(144), + [sym_biblatex_include] = STATE(144), + [sym_graphics_include] = STATE(144), + [sym_import] = STATE(144), + [sym_label_definition] = STATE(144), + [sym_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_theorem_definition] = STATE(144), + [sym_generic_command] = STATE(144), + [aux_sym_document_repeat1] = STATE(144), + [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(762), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(764), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [142] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(766), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [143] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(768), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(770), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [145] = { + [sym__simple_content] = 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(475), + [sym_displayed_equation] = STATE(145), + [sym_inline_formula] = STATE(145), + [sym_begin] = STATE(46), + [sym_environment] = STATE(145), + [sym_caption] = STATE(145), + [sym_citation] = STATE(145), + [sym_package_include] = STATE(145), + [sym_class_include] = STATE(145), + [sym_biblatex_include] = STATE(145), + [sym_graphics_include] = STATE(145), + [sym_import] = STATE(145), + [sym_label_definition] = STATE(145), + [sym_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_theorem_definition] = STATE(145), + [sym_generic_command] = STATE(145), + [aux_sym_chapter_repeat1] = STATE(145), + [ts_builtin_sym_end] = ACTIONS(772), + [sym__generic_command_name] = ACTIONS(774), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(777), + [aux_sym_chapter_token1] = ACTIONS(777), + [aux_sym_section_token1] = ACTIONS(779), + [aux_sym_subsection_token1] = ACTIONS(782), + [aux_sym_subsubsection_token1] = ACTIONS(785), + [aux_sym_paragraph_token1] = ACTIONS(788), + [aux_sym_subparagraph_token1] = ACTIONS(791), + [anon_sym_BSLASHitem] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [sym_word] = ACTIONS(803), + [sym_param] = ACTIONS(806), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(809), + [anon_sym_BSLASH_LBRACK] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(812), + [anon_sym_BSLASH_LPAREN] = ACTIONS(815), + [anon_sym_BSLASHbegin] = ACTIONS(818), + [anon_sym_BSLASHcaption] = ACTIONS(821), + [aux_sym_citation_token1] = ACTIONS(824), + [aux_sym_package_include_token1] = ACTIONS(827), + [anon_sym_BSLASHdocumentclass] = ACTIONS(830), + [anon_sym_BSLASHaddbibresource] = ACTIONS(833), + [aux_sym_graphics_include_token1] = ACTIONS(836), + [aux_sym_import_token1] = ACTIONS(839), + [anon_sym_BSLASHlabel] = ACTIONS(842), + [aux_sym_label_reference_token1] = ACTIONS(845), + [aux_sym_label_reference_range_token1] = ACTIONS(848), + [anon_sym_BSLASHnewlabel] = ACTIONS(851), + [aux_sym_command_definition_token1] = ACTIONS(854), + [aux_sym_math_operator_token1] = ACTIONS(857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(863), + [anon_sym_BSLASHnewacronym] = ACTIONS(866), + [aux_sym_theorem_definition_token1] = ACTIONS(869), + }, + [146] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [ts_builtin_sym_end] = ACTIONS(872), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [147] = { + [sym__simple_content] = STATE(160), + [sym__content] = STATE(160), + [sym_part] = STATE(160), + [sym_chapter] = STATE(160), + [sym_section] = STATE(160), + [sym_subsection] = STATE(160), + [sym_subsubsection] = STATE(160), + [sym_paragraph] = STATE(160), + [sym_subparagraph] = STATE(160), + [sym_enum_item] = STATE(160), + [sym_brace_group] = STATE(160), + [sym_mixed_group] = STATE(160), + [sym_text] = STATE(160), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(160), + [sym_inline_formula] = STATE(160), + [sym_begin] = STATE(46), + [sym_environment] = STATE(160), + [sym_caption] = STATE(160), + [sym_citation] = STATE(160), + [sym_package_include] = STATE(160), + [sym_class_include] = STATE(160), + [sym_biblatex_include] = STATE(160), + [sym_graphics_include] = STATE(160), + [sym_import] = STATE(160), + [sym_label_definition] = STATE(160), + [sym_label_reference] = STATE(160), + [sym_label_reference_range] = STATE(160), + [sym_label_number] = STATE(160), + [sym_command_definition] = STATE(160), + [sym_math_operator] = STATE(160), + [sym_glossary_entry_definition] = STATE(160), + [sym_glossary_entry_reference] = STATE(160), + [sym_acronym_definition] = STATE(160), + [sym_theorem_definition] = STATE(160), + [sym_generic_command] = STATE(160), + [aux_sym_document_repeat1] = STATE(160), + [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(874), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(876), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [148] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(878), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [149] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(291), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(79), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [150] = { + [sym__simple_content] = 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(475), + [sym_displayed_equation] = STATE(145), + [sym_inline_formula] = STATE(145), + [sym_begin] = STATE(46), + [sym_environment] = STATE(145), + [sym_caption] = STATE(145), + [sym_citation] = STATE(145), + [sym_package_include] = STATE(145), + [sym_class_include] = STATE(145), + [sym_biblatex_include] = STATE(145), + [sym_graphics_include] = STATE(145), + [sym_import] = STATE(145), + [sym_label_definition] = STATE(145), + [sym_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_theorem_definition] = STATE(145), + [sym_generic_command] = STATE(145), + [aux_sym_chapter_repeat1] = STATE(145), + [ts_builtin_sym_end] = ACTIONS(882), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(884), + [aux_sym_chapter_token1] = ACTIONS(884), + [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(882), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(886), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [151] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(888), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(890), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [152] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(83), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(83), + [aux_sym_chapter_token1] = ACTIONS(83), + [aux_sym_section_token1] = ACTIONS(83), + [aux_sym_subsection_token1] = ACTIONS(83), + [aux_sym_subsubsection_token1] = ACTIONS(83), + [aux_sym_paragraph_token1] = ACTIONS(83), + [aux_sym_subparagraph_token1] = ACTIONS(83), + [anon_sym_BSLASHitem] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [sym_word] = ACTIONS(81), + [sym_param] = ACTIONS(81), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(81), + [anon_sym_BSLASH_LBRACK] = ACTIONS(81), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_BSLASH_LPAREN] = ACTIONS(81), + [anon_sym_BSLASH_RPAREN] = ACTIONS(81), + [anon_sym_BSLASHbegin] = ACTIONS(83), + [anon_sym_BSLASHcaption] = ACTIONS(83), + [aux_sym_citation_token1] = ACTIONS(83), + [aux_sym_package_include_token1] = ACTIONS(83), + [anon_sym_BSLASHdocumentclass] = ACTIONS(83), + [anon_sym_BSLASHaddbibresource] = ACTIONS(83), + [aux_sym_graphics_include_token1] = ACTIONS(83), + [aux_sym_import_token1] = ACTIONS(83), + [anon_sym_BSLASHlabel] = ACTIONS(83), + [aux_sym_label_reference_token1] = ACTIONS(83), + [aux_sym_label_reference_range_token1] = ACTIONS(83), + [anon_sym_BSLASHnewlabel] = ACTIONS(83), + [aux_sym_command_definition_token1] = ACTIONS(83), + [aux_sym_math_operator_token1] = ACTIONS(83), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(83), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), + [anon_sym_BSLASHnewacronym] = ACTIONS(83), + [aux_sym_theorem_definition_token1] = ACTIONS(83), + }, + [153] = { + [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(475), + [sym_displayed_equation] = STATE(232), + [sym_inline_formula] = STATE(232), + [sym_begin] = STATE(46), + [sym_environment] = STATE(232), + [sym_caption] = STATE(232), + [sym_citation] = STATE(232), + [sym_package_include] = STATE(232), + [sym_class_include] = STATE(232), + [sym_biblatex_include] = STATE(232), + [sym_graphics_include] = STATE(232), + [sym_import] = STATE(232), + [sym_label_definition] = STATE(232), + [sym_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_theorem_definition] = STATE(232), + [sym_generic_command] = STATE(232), + [aux_sym_document_repeat1] = STATE(232), + [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(892), + [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(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), + [aux_sym_citation_token1] = ACTIONS(43), + [aux_sym_package_include_token1] = ACTIONS(45), + [anon_sym_BSLASHdocumentclass] = ACTIONS(47), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [154] = { + [sym__simple_content] = STATE(137), + [sym__content] = STATE(137), + [sym_part] = STATE(137), + [sym_chapter] = STATE(137), + [sym_section] = STATE(137), + [sym_subsection] = STATE(137), + [sym_subsubsection] = STATE(137), + [sym_paragraph] = STATE(137), + [sym_subparagraph] = STATE(137), + [sym_enum_item] = STATE(137), + [sym_brace_group] = STATE(137), + [sym_mixed_group] = STATE(137), + [sym_text] = STATE(137), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(137), + [sym_inline_formula] = STATE(137), + [sym_begin] = STATE(96), + [sym_environment] = STATE(137), + [sym_caption] = STATE(137), + [sym_citation] = STATE(137), + [sym_package_include] = STATE(137), + [sym_class_include] = STATE(137), + [sym_biblatex_include] = STATE(137), + [sym_graphics_include] = STATE(137), + [sym_import] = STATE(137), + [sym_label_definition] = STATE(137), + [sym_label_reference] = STATE(137), + [sym_label_reference_range] = STATE(137), + [sym_label_number] = STATE(137), + [sym_command_definition] = STATE(137), + [sym_math_operator] = STATE(137), + [sym_glossary_entry_definition] = STATE(137), + [sym_glossary_entry_reference] = STATE(137), + [sym_acronym_definition] = STATE(137), + [sym_theorem_definition] = STATE(137), + [sym_generic_command] = STATE(137), + [aux_sym_document_repeat1] = STATE(137), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(896), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(898), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(900), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [155] = { + [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(543), + [sym_displayed_equation] = STATE(138), + [sym_inline_formula] = STATE(138), + [sym_begin] = STATE(108), + [sym_environment] = STATE(138), + [sym_caption] = STATE(138), + [sym_citation] = STATE(138), + [sym_package_include] = STATE(138), + [sym_class_include] = STATE(138), + [sym_biblatex_include] = STATE(138), + [sym_graphics_include] = STATE(138), + [sym_import] = STATE(138), + [sym_label_definition] = STATE(138), + [sym_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_theorem_definition] = STATE(138), + [sym_generic_command] = STATE(138), + [aux_sym_document_repeat1] = STATE(138), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(902), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(904), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(906), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [156] = { + [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(46), + [sym_environment] = STATE(238), + [sym_caption] = STATE(238), + [sym_citation] = STATE(238), + [sym_package_include] = STATE(238), + [sym_class_include] = STATE(238), + [sym_biblatex_include] = STATE(238), + [sym_graphics_include] = STATE(238), + [sym_import] = STATE(238), + [sym_label_definition] = STATE(238), + [sym_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_theorem_definition] = STATE(238), + [sym_generic_command] = STATE(238), + [aux_sym_document_repeat1] = STATE(238), + [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(908), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(910), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [157] = { + [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(46), + [sym_environment] = STATE(140), + [sym_caption] = STATE(140), + [sym_citation] = STATE(140), + [sym_package_include] = STATE(140), + [sym_class_include] = STATE(140), + [sym_biblatex_include] = STATE(140), + [sym_graphics_include] = STATE(140), + [sym_import] = STATE(140), + [sym_label_definition] = STATE(140), + [sym_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_theorem_definition] = STATE(140), + [sym_generic_command] = STATE(140), + [aux_sym_document_repeat1] = STATE(140), + [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(912), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(914), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [158] = { + [sym__simple_content] = STATE(233), + [sym__content] = STATE(233), + [sym_part] = STATE(233), + [sym_chapter] = STATE(233), + [sym_section] = STATE(233), + [sym_subsection] = STATE(233), + [sym_subsubsection] = STATE(233), + [sym_paragraph] = STATE(233), + [sym_subparagraph] = STATE(233), + [sym_enum_item] = STATE(233), + [sym_brace_group] = STATE(233), + [sym_mixed_group] = STATE(233), + [sym_text] = STATE(233), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(233), + [sym_inline_formula] = STATE(233), + [sym_begin] = STATE(46), + [sym_environment] = STATE(233), + [sym_caption] = STATE(233), + [sym_citation] = STATE(233), + [sym_package_include] = STATE(233), + [sym_class_include] = STATE(233), + [sym_biblatex_include] = STATE(233), + [sym_graphics_include] = STATE(233), + [sym_import] = STATE(233), + [sym_label_definition] = STATE(233), + [sym_label_reference] = STATE(233), + [sym_label_reference_range] = STATE(233), + [sym_label_number] = STATE(233), + [sym_command_definition] = STATE(233), + [sym_math_operator] = STATE(233), + [sym_glossary_entry_definition] = STATE(233), + [sym_glossary_entry_reference] = STATE(233), + [sym_acronym_definition] = STATE(233), + [sym_theorem_definition] = STATE(233), + [sym_generic_command] = STATE(233), + [aux_sym_document_repeat1] = STATE(233), + [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(916), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(918), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [159] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(920), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [160] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(922), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [161] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(924), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [162] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(926), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [163] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(930), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(933), + [aux_sym_chapter_token1] = ACTIONS(936), + [aux_sym_section_token1] = ACTIONS(939), + [aux_sym_subsection_token1] = ACTIONS(942), + [aux_sym_subsubsection_token1] = ACTIONS(945), + [aux_sym_paragraph_token1] = ACTIONS(948), + [aux_sym_subparagraph_token1] = ACTIONS(951), + [anon_sym_BSLASHitem] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(963), + [sym_word] = ACTIONS(963), + [sym_param] = ACTIONS(966), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(969), + [anon_sym_BSLASH_LBRACK] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_BSLASH_LPAREN] = ACTIONS(975), + [anon_sym_BSLASH_RPAREN] = ACTIONS(95), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(978), + [aux_sym_citation_token1] = ACTIONS(981), + [aux_sym_package_include_token1] = ACTIONS(984), + [anon_sym_BSLASHdocumentclass] = ACTIONS(987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(990), + [aux_sym_graphics_include_token1] = ACTIONS(993), + [aux_sym_import_token1] = ACTIONS(996), + [anon_sym_BSLASHlabel] = ACTIONS(999), + [aux_sym_label_reference_token1] = ACTIONS(1002), + [aux_sym_label_reference_range_token1] = ACTIONS(1005), + [anon_sym_BSLASHnewlabel] = ACTIONS(1008), + [aux_sym_command_definition_token1] = ACTIONS(1011), + [aux_sym_math_operator_token1] = ACTIONS(1014), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1017), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1020), + [anon_sym_BSLASHnewacronym] = ACTIONS(1023), + [aux_sym_theorem_definition_token1] = ACTIONS(1026), + }, + [164] = { + [sym__simple_content] = STATE(142), + [sym__content] = STATE(142), + [sym_part] = STATE(142), + [sym_chapter] = STATE(142), + [sym_section] = STATE(142), + [sym_subsection] = STATE(142), + [sym_subsubsection] = STATE(142), + [sym_paragraph] = STATE(142), + [sym_subparagraph] = STATE(142), + [sym_enum_item] = STATE(142), + [sym_brace_group] = STATE(142), + [sym_mixed_group] = STATE(142), + [sym_text] = STATE(142), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(142), + [sym_inline_formula] = STATE(142), + [sym_begin] = STATE(46), + [sym_environment] = STATE(142), + [sym_caption] = STATE(142), + [sym_citation] = STATE(142), + [sym_package_include] = STATE(142), + [sym_class_include] = STATE(142), + [sym_biblatex_include] = STATE(142), + [sym_graphics_include] = STATE(142), + [sym_import] = STATE(142), + [sym_label_definition] = STATE(142), + [sym_label_reference] = STATE(142), + [sym_label_reference_range] = STATE(142), + [sym_label_number] = STATE(142), + [sym_command_definition] = STATE(142), + [sym_math_operator] = STATE(142), + [sym_glossary_entry_definition] = STATE(142), + [sym_glossary_entry_reference] = STATE(142), + [sym_acronym_definition] = STATE(142), + [sym_theorem_definition] = STATE(142), + [sym_generic_command] = STATE(142), + [aux_sym_document_repeat1] = STATE(142), + [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(1029), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1031), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [165] = { + [sym__simple_content] = STATE(159), + [sym__content] = STATE(159), + [sym_part] = STATE(159), + [sym_chapter] = STATE(159), + [sym_section] = STATE(159), + [sym_subsection] = STATE(159), + [sym_subsubsection] = STATE(159), + [sym_paragraph] = STATE(159), + [sym_subparagraph] = STATE(159), + [sym_enum_item] = STATE(159), + [sym_brace_group] = STATE(159), + [sym_mixed_group] = STATE(159), + [sym_text] = STATE(159), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(159), + [sym_inline_formula] = STATE(159), + [sym_begin] = STATE(46), + [sym_environment] = STATE(159), + [sym_caption] = STATE(159), + [sym_citation] = STATE(159), + [sym_package_include] = STATE(159), + [sym_class_include] = STATE(159), + [sym_biblatex_include] = STATE(159), + [sym_graphics_include] = STATE(159), + [sym_import] = STATE(159), + [sym_label_definition] = STATE(159), + [sym_label_reference] = STATE(159), + [sym_label_reference_range] = STATE(159), + [sym_label_number] = STATE(159), + [sym_command_definition] = STATE(159), + [sym_math_operator] = STATE(159), + [sym_glossary_entry_definition] = STATE(159), + [sym_glossary_entry_reference] = STATE(159), + [sym_acronym_definition] = STATE(159), + [sym_theorem_definition] = STATE(159), + [sym_generic_command] = STATE(159), + [aux_sym_document_repeat1] = STATE(159), + [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(1033), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1035), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [166] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1039), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [167] = { + [sym__simple_content] = STATE(161), + [sym__content] = STATE(161), + [sym_part] = STATE(161), + [sym_chapter] = STATE(161), + [sym_section] = STATE(161), + [sym_subsection] = STATE(161), + [sym_subsubsection] = STATE(161), + [sym_paragraph] = STATE(161), + [sym_subparagraph] = STATE(161), + [sym_enum_item] = STATE(161), + [sym_brace_group] = STATE(161), + [sym_mixed_group] = STATE(161), + [sym_text] = STATE(161), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(161), + [sym_inline_formula] = STATE(161), + [sym_begin] = STATE(46), + [sym_environment] = STATE(161), + [sym_caption] = STATE(161), + [sym_citation] = STATE(161), + [sym_package_include] = STATE(161), + [sym_class_include] = STATE(161), + [sym_biblatex_include] = STATE(161), + [sym_graphics_include] = STATE(161), + [sym_import] = STATE(161), + [sym_label_definition] = STATE(161), + [sym_label_reference] = STATE(161), + [sym_label_reference_range] = STATE(161), + [sym_label_number] = STATE(161), + [sym_command_definition] = STATE(161), + [sym_math_operator] = STATE(161), + [sym_glossary_entry_definition] = STATE(161), + [sym_glossary_entry_reference] = STATE(161), + [sym_acronym_definition] = STATE(161), + [sym_theorem_definition] = STATE(161), + [sym_generic_command] = STATE(161), + [aux_sym_document_repeat1] = STATE(161), + [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(1041), + [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(1043), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [168] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1045), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1047), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [169] = { + [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(475), + [sym_displayed_equation] = STATE(175), + [sym_inline_formula] = STATE(175), + [sym_begin] = STATE(46), + [sym_environment] = STATE(175), + [sym_caption] = STATE(175), + [sym_citation] = STATE(175), + [sym_package_include] = STATE(175), + [sym_class_include] = STATE(175), + [sym_biblatex_include] = STATE(175), + [sym_graphics_include] = STATE(175), + [sym_import] = STATE(175), + [sym_label_definition] = STATE(175), + [sym_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_theorem_definition] = STATE(175), + [sym_generic_command] = STATE(175), + [aux_sym_document_repeat1] = STATE(175), + [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(1049), + [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(1051), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [170] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [171] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1057), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [172] = { + [sym__simple_content] = STATE(177), + [sym__content] = STATE(177), + [sym_part] = STATE(177), + [sym_chapter] = STATE(177), + [sym_section] = STATE(177), + [sym_subsection] = STATE(177), + [sym_subsubsection] = STATE(177), + [sym_paragraph] = STATE(177), + [sym_subparagraph] = STATE(177), + [sym_enum_item] = STATE(177), + [sym_brace_group] = STATE(177), + [sym_mixed_group] = STATE(177), + [sym_text] = STATE(177), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(177), + [sym_inline_formula] = STATE(177), + [sym_begin] = STATE(46), + [sym_environment] = STATE(177), + [sym_caption] = STATE(177), + [sym_citation] = STATE(177), + [sym_package_include] = STATE(177), + [sym_class_include] = STATE(177), + [sym_biblatex_include] = STATE(177), + [sym_graphics_include] = STATE(177), + [sym_import] = STATE(177), + [sym_label_definition] = STATE(177), + [sym_label_reference] = STATE(177), + [sym_label_reference_range] = STATE(177), + [sym_label_number] = STATE(177), + [sym_command_definition] = STATE(177), + [sym_math_operator] = STATE(177), + [sym_glossary_entry_definition] = STATE(177), + [sym_glossary_entry_reference] = STATE(177), + [sym_acronym_definition] = STATE(177), + [sym_theorem_definition] = STATE(177), + [sym_generic_command] = STATE(177), + [aux_sym_document_repeat1] = STATE(177), + [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(1059), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1061), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [173] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1063), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [174] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1065), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [175] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1069), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [176] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1071), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1073), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [177] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1075), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [178] = { + [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(475), + [sym_displayed_equation] = STATE(184), + [sym_inline_formula] = STATE(184), + [sym_begin] = STATE(46), + [sym_environment] = STATE(184), + [sym_caption] = STATE(184), + [sym_citation] = STATE(184), + [sym_package_include] = STATE(184), + [sym_class_include] = STATE(184), + [sym_biblatex_include] = STATE(184), + [sym_graphics_include] = STATE(184), + [sym_import] = STATE(184), + [sym_label_definition] = STATE(184), + [sym_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_theorem_definition] = STATE(184), + [sym_generic_command] = STATE(184), + [aux_sym_document_repeat1] = STATE(184), + [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(1077), + [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(1079), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [179] = { + [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(550), + [sym_displayed_equation] = STATE(168), + [sym_inline_formula] = STATE(168), + [sym_begin] = STATE(96), + [sym_environment] = STATE(168), + [sym_caption] = STATE(168), + [sym_citation] = STATE(168), + [sym_package_include] = STATE(168), + [sym_class_include] = STATE(168), + [sym_biblatex_include] = STATE(168), + [sym_graphics_include] = STATE(168), + [sym_import] = STATE(168), + [sym_label_definition] = STATE(168), + [sym_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_theorem_definition] = STATE(168), + [sym_generic_command] = STATE(168), + [aux_sym_document_repeat1] = STATE(168), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(1081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1083), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1085), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [180] = { + [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(543), + [sym_displayed_equation] = STATE(170), + [sym_inline_formula] = STATE(170), + [sym_begin] = STATE(108), + [sym_environment] = STATE(170), + [sym_caption] = STATE(170), + [sym_citation] = STATE(170), + [sym_package_include] = STATE(170), + [sym_class_include] = STATE(170), + [sym_biblatex_include] = STATE(170), + [sym_graphics_include] = STATE(170), + [sym_import] = STATE(170), + [sym_label_definition] = STATE(170), + [sym_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_theorem_definition] = STATE(170), + [sym_generic_command] = STATE(170), + [aux_sym_document_repeat1] = STATE(170), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(1087), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1089), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [181] = { + [sym__simple_content] = STATE(171), + [sym__content] = STATE(171), + [sym_part] = STATE(171), + [sym_chapter] = STATE(171), + [sym_section] = STATE(171), + [sym_subsection] = STATE(171), + [sym_subsubsection] = STATE(171), + [sym_paragraph] = STATE(171), + [sym_subparagraph] = STATE(171), + [sym_enum_item] = STATE(171), + [sym_brace_group] = STATE(171), + [sym_mixed_group] = STATE(171), + [sym_text] = STATE(171), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(171), + [sym_inline_formula] = STATE(171), + [sym_begin] = STATE(46), + [sym_environment] = STATE(171), + [sym_caption] = STATE(171), + [sym_citation] = STATE(171), + [sym_package_include] = STATE(171), + [sym_class_include] = STATE(171), + [sym_biblatex_include] = STATE(171), + [sym_graphics_include] = STATE(171), + [sym_import] = STATE(171), + [sym_label_definition] = STATE(171), + [sym_label_reference] = STATE(171), + [sym_label_reference_range] = STATE(171), + [sym_label_number] = STATE(171), + [sym_command_definition] = STATE(171), + [sym_math_operator] = STATE(171), + [sym_glossary_entry_definition] = STATE(171), + [sym_glossary_entry_reference] = STATE(171), + [sym_acronym_definition] = STATE(171), + [sym_theorem_definition] = STATE(171), + [sym_generic_command] = STATE(171), + [aux_sym_document_repeat1] = STATE(171), + [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(1093), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1095), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [182] = { + [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(46), + [sym_environment] = STATE(190), + [sym_caption] = STATE(190), + [sym_citation] = STATE(190), + [sym_package_include] = STATE(190), + [sym_class_include] = STATE(190), + [sym_biblatex_include] = STATE(190), + [sym_graphics_include] = STATE(190), + [sym_import] = STATE(190), + [sym_label_definition] = STATE(190), + [sym_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_theorem_definition] = STATE(190), + [sym_generic_command] = STATE(190), + [aux_sym_document_repeat1] = STATE(190), + [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(1097), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1099), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [183] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1101), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [184] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1103), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [185] = { + [sym__simple_content] = STATE(205), + [sym__content] = STATE(205), + [sym_part] = STATE(205), + [sym_chapter] = STATE(205), + [sym_section] = STATE(205), + [sym_subsection] = STATE(205), + [sym_subsubsection] = STATE(205), + [sym_paragraph] = STATE(205), + [sym_subparagraph] = STATE(205), + [sym_enum_item] = STATE(205), + [sym_brace_group] = STATE(205), + [sym_mixed_group] = STATE(205), + [sym_text] = STATE(205), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(205), + [sym_inline_formula] = STATE(205), + [sym_begin] = STATE(46), + [sym_environment] = STATE(205), + [sym_caption] = STATE(205), + [sym_citation] = STATE(205), + [sym_package_include] = STATE(205), + [sym_class_include] = STATE(205), + [sym_biblatex_include] = STATE(205), + [sym_graphics_include] = STATE(205), + [sym_import] = STATE(205), + [sym_label_definition] = STATE(205), + [sym_label_reference] = STATE(205), + [sym_label_reference_range] = STATE(205), + [sym_label_number] = STATE(205), + [sym_command_definition] = STATE(205), + [sym_math_operator] = STATE(205), + [sym_glossary_entry_definition] = STATE(205), + [sym_glossary_entry_reference] = STATE(205), + [sym_acronym_definition] = STATE(205), + [sym_theorem_definition] = STATE(205), + [sym_generic_command] = STATE(205), + [aux_sym_document_repeat1] = STATE(205), + [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(1105), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1107), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [186] = { + [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(543), + [sym_displayed_equation] = STATE(203), + [sym_inline_formula] = STATE(203), + [sym_begin] = STATE(108), + [sym_environment] = STATE(203), + [sym_caption] = STATE(203), + [sym_citation] = STATE(203), + [sym_package_include] = STATE(203), + [sym_class_include] = STATE(203), + [sym_biblatex_include] = STATE(203), + [sym_graphics_include] = STATE(203), + [sym_import] = STATE(203), + [sym_label_definition] = STATE(203), + [sym_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_theorem_definition] = STATE(203), + [sym_generic_command] = STATE(203), + [aux_sym_document_repeat1] = STATE(203), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(1109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1111), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [187] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1115), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [188] = { + [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(550), + [sym_displayed_equation] = STATE(202), + [sym_inline_formula] = STATE(202), + [sym_begin] = STATE(96), + [sym_environment] = STATE(202), + [sym_caption] = STATE(202), + [sym_citation] = STATE(202), + [sym_package_include] = STATE(202), + [sym_class_include] = STATE(202), + [sym_biblatex_include] = STATE(202), + [sym_graphics_include] = STATE(202), + [sym_import] = STATE(202), + [sym_label_definition] = STATE(202), + [sym_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_theorem_definition] = STATE(202), + [sym_generic_command] = STATE(202), + [aux_sym_document_repeat1] = STATE(202), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(1117), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1121), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [189] = { + [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(550), + [sym_displayed_equation] = STATE(224), + [sym_inline_formula] = STATE(224), + [sym_begin] = STATE(96), + [sym_environment] = STATE(224), + [sym_caption] = STATE(224), + [sym_citation] = STATE(224), + [sym_package_include] = STATE(224), + [sym_class_include] = STATE(224), + [sym_biblatex_include] = STATE(224), + [sym_graphics_include] = STATE(224), + [sym_import] = STATE(224), + [sym_label_definition] = STATE(224), + [sym_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_theorem_definition] = STATE(224), + [sym_generic_command] = STATE(224), + [aux_sym_document_repeat1] = STATE(224), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(1123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1127), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1129), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [191] = { + [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(475), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_begin] = STATE(46), + [sym_environment] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_import] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_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_theorem_definition] = STATE(215), + [sym_generic_command] = STATE(215), + [aux_sym_document_repeat1] = STATE(215), + [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(1131), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1133), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [192] = { + [sym__simple_content] = STATE(244), + [sym__content] = STATE(244), + [sym_part] = STATE(244), + [sym_chapter] = STATE(244), + [sym_section] = STATE(244), + [sym_subsection] = STATE(244), + [sym_subsubsection] = STATE(244), + [sym_paragraph] = STATE(244), + [sym_subparagraph] = STATE(244), + [sym_enum_item] = STATE(244), + [sym_brace_group] = STATE(244), + [sym_mixed_group] = STATE(244), + [sym_text] = STATE(244), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(244), + [sym_inline_formula] = STATE(244), + [sym_begin] = STATE(46), + [sym_environment] = STATE(244), + [sym_caption] = STATE(244), + [sym_citation] = STATE(244), + [sym_package_include] = STATE(244), + [sym_class_include] = STATE(244), + [sym_biblatex_include] = STATE(244), + [sym_graphics_include] = STATE(244), + [sym_import] = STATE(244), + [sym_label_definition] = STATE(244), + [sym_label_reference] = STATE(244), + [sym_label_reference_range] = STATE(244), + [sym_label_number] = STATE(244), + [sym_command_definition] = STATE(244), + [sym_math_operator] = STATE(244), + [sym_glossary_entry_definition] = STATE(244), + [sym_glossary_entry_reference] = STATE(244), + [sym_acronym_definition] = STATE(244), + [sym_theorem_definition] = STATE(244), + [sym_generic_command] = STATE(244), + [aux_sym_document_repeat1] = STATE(244), + [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(1135), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1137), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [193] = { + [sym__simple_content] = STATE(115), + [sym__content] = STATE(115), + [sym_part] = STATE(115), + [sym_chapter] = STATE(115), + [sym_section] = STATE(115), + [sym_subsection] = STATE(115), + [sym_subsubsection] = STATE(115), + [sym_paragraph] = STATE(115), + [sym_subparagraph] = STATE(115), + [sym_enum_item] = STATE(115), + [sym_brace_group] = STATE(115), + [sym_mixed_group] = STATE(115), + [sym_text] = STATE(115), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(115), + [sym_inline_formula] = STATE(115), + [sym_begin] = STATE(46), + [sym_environment] = STATE(115), + [sym_caption] = STATE(115), + [sym_citation] = STATE(115), + [sym_package_include] = STATE(115), + [sym_class_include] = STATE(115), + [sym_biblatex_include] = STATE(115), + [sym_graphics_include] = STATE(115), + [sym_import] = STATE(115), + [sym_label_definition] = STATE(115), + [sym_label_reference] = STATE(115), + [sym_label_reference_range] = STATE(115), + [sym_label_number] = STATE(115), + [sym_command_definition] = STATE(115), + [sym_math_operator] = STATE(115), + [sym_glossary_entry_definition] = STATE(115), + [sym_glossary_entry_reference] = STATE(115), + [sym_acronym_definition] = STATE(115), + [sym_theorem_definition] = STATE(115), + [sym_generic_command] = STATE(115), + [aux_sym_document_repeat1] = STATE(115), + [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(1139), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1141), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [194] = { + [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(543), + [sym_displayed_equation] = STATE(225), + [sym_inline_formula] = STATE(225), + [sym_begin] = STATE(108), + [sym_environment] = STATE(225), + [sym_caption] = STATE(225), + [sym_citation] = STATE(225), + [sym_package_include] = STATE(225), + [sym_class_include] = STATE(225), + [sym_biblatex_include] = STATE(225), + [sym_graphics_include] = STATE(225), + [sym_import] = STATE(225), + [sym_label_definition] = STATE(225), + [sym_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_theorem_definition] = STATE(225), + [sym_generic_command] = STATE(225), + [aux_sym_document_repeat1] = STATE(225), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(1143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1145), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1147), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [195] = { + [sym__simple_content] = STATE(183), + [sym__content] = STATE(183), + [sym_part] = STATE(183), + [sym_chapter] = STATE(183), + [sym_section] = STATE(183), + [sym_subsection] = STATE(183), + [sym_subsubsection] = STATE(183), + [sym_paragraph] = STATE(183), + [sym_subparagraph] = STATE(183), + [sym_enum_item] = STATE(183), + [sym_brace_group] = STATE(183), + [sym_mixed_group] = STATE(183), + [sym_text] = STATE(183), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(183), + [sym_inline_formula] = STATE(183), + [sym_begin] = STATE(46), + [sym_environment] = STATE(183), + [sym_caption] = STATE(183), + [sym_citation] = STATE(183), + [sym_package_include] = STATE(183), + [sym_class_include] = STATE(183), + [sym_biblatex_include] = STATE(183), + [sym_graphics_include] = STATE(183), + [sym_import] = STATE(183), + [sym_label_definition] = STATE(183), + [sym_label_reference] = STATE(183), + [sym_label_reference_range] = STATE(183), + [sym_label_number] = STATE(183), + [sym_command_definition] = STATE(183), + [sym_math_operator] = STATE(183), + [sym_glossary_entry_definition] = STATE(183), + [sym_glossary_entry_reference] = STATE(183), + [sym_acronym_definition] = STATE(183), + [sym_theorem_definition] = STATE(183), + [sym_generic_command] = STATE(183), + [aux_sym_document_repeat1] = STATE(183), + [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(1149), + [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(1151), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [196] = { + [sym__simple_content] = STATE(187), + [sym__content] = STATE(187), + [sym_part] = STATE(187), + [sym_chapter] = STATE(187), + [sym_section] = STATE(187), + [sym_subsection] = STATE(187), + [sym_subsubsection] = STATE(187), + [sym_paragraph] = STATE(187), + [sym_subparagraph] = STATE(187), + [sym_enum_item] = STATE(187), + [sym_brace_group] = STATE(187), + [sym_mixed_group] = STATE(187), + [sym_text] = STATE(187), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(187), + [sym_inline_formula] = STATE(187), + [sym_begin] = STATE(46), + [sym_environment] = STATE(187), + [sym_caption] = STATE(187), + [sym_citation] = STATE(187), + [sym_package_include] = STATE(187), + [sym_class_include] = STATE(187), + [sym_biblatex_include] = STATE(187), + [sym_graphics_include] = STATE(187), + [sym_import] = STATE(187), + [sym_label_definition] = STATE(187), + [sym_label_reference] = STATE(187), + [sym_label_reference_range] = STATE(187), + [sym_label_number] = STATE(187), + [sym_command_definition] = STATE(187), + [sym_math_operator] = STATE(187), + [sym_glossary_entry_definition] = STATE(187), + [sym_glossary_entry_reference] = STATE(187), + [sym_acronym_definition] = STATE(187), + [sym_theorem_definition] = STATE(187), + [sym_generic_command] = STATE(187), + [aux_sym_document_repeat1] = STATE(187), + [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(1153), + [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(1155), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [197] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1159), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1161), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [199] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1163), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [200] = { + [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(46), + [sym_environment] = STATE(234), + [sym_caption] = STATE(234), + [sym_citation] = STATE(234), + [sym_package_include] = STATE(234), + [sym_class_include] = STATE(234), + [sym_biblatex_include] = STATE(234), + [sym_graphics_include] = STATE(234), + [sym_import] = STATE(234), + [sym_label_definition] = STATE(234), + [sym_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_theorem_definition] = STATE(234), + [sym_generic_command] = STATE(234), + [aux_sym_document_repeat1] = STATE(234), + [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(1167), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1169), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [201] = { + [sym__simple_content] = STATE(235), + [sym__content] = STATE(235), + [sym_part] = STATE(235), + [sym_chapter] = STATE(235), + [sym_section] = STATE(235), + [sym_subsection] = STATE(235), + [sym_subsubsection] = STATE(235), + [sym_paragraph] = STATE(235), + [sym_subparagraph] = STATE(235), + [sym_enum_item] = STATE(235), + [sym_brace_group] = STATE(235), + [sym_mixed_group] = STATE(235), + [sym_text] = STATE(235), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(235), + [sym_inline_formula] = STATE(235), + [sym_begin] = STATE(46), + [sym_environment] = STATE(235), + [sym_caption] = STATE(235), + [sym_citation] = STATE(235), + [sym_package_include] = STATE(235), + [sym_class_include] = STATE(235), + [sym_biblatex_include] = STATE(235), + [sym_graphics_include] = STATE(235), + [sym_import] = STATE(235), + [sym_label_definition] = STATE(235), + [sym_label_reference] = STATE(235), + [sym_label_reference_range] = STATE(235), + [sym_label_number] = STATE(235), + [sym_command_definition] = STATE(235), + [sym_math_operator] = STATE(235), + [sym_glossary_entry_definition] = STATE(235), + [sym_glossary_entry_reference] = STATE(235), + [sym_acronym_definition] = STATE(235), + [sym_theorem_definition] = STATE(235), + [sym_generic_command] = STATE(235), + [aux_sym_document_repeat1] = STATE(235), + [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(1171), + [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(1173), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [202] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1175), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1177), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [203] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [204] = { + [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(550), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(96), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_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_theorem_definition] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [sym__generic_command_name] = ACTIONS(77), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(77), + [aux_sym_chapter_token1] = ACTIONS(77), + [aux_sym_section_token1] = ACTIONS(77), + [aux_sym_subsection_token1] = ACTIONS(77), + [aux_sym_subsubsection_token1] = ACTIONS(77), + [aux_sym_paragraph_token1] = ACTIONS(77), + [aux_sym_subparagraph_token1] = ACTIONS(77), + [anon_sym_BSLASHitem] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [sym_word] = ACTIONS(75), + [sym_param] = ACTIONS(75), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(75), + [anon_sym_BSLASH_LBRACK] = ACTIONS(75), + [anon_sym_DOLLAR] = ACTIONS(77), + [anon_sym_BSLASH_LPAREN] = ACTIONS(75), + [anon_sym_BSLASH_RPAREN] = ACTIONS(75), + [anon_sym_BSLASHbegin] = ACTIONS(77), + [anon_sym_BSLASHcaption] = ACTIONS(77), + [aux_sym_citation_token1] = ACTIONS(77), + [aux_sym_package_include_token1] = ACTIONS(77), + [anon_sym_BSLASHdocumentclass] = ACTIONS(77), + [anon_sym_BSLASHaddbibresource] = ACTIONS(77), + [aux_sym_graphics_include_token1] = ACTIONS(77), + [aux_sym_import_token1] = ACTIONS(77), + [anon_sym_BSLASHlabel] = ACTIONS(77), + [aux_sym_label_reference_token1] = ACTIONS(77), + [aux_sym_label_reference_range_token1] = ACTIONS(77), + [anon_sym_BSLASHnewlabel] = ACTIONS(77), + [aux_sym_command_definition_token1] = ACTIONS(77), + [aux_sym_math_operator_token1] = ACTIONS(77), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(77), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(77), + [anon_sym_BSLASHnewacronym] = ACTIONS(77), + [aux_sym_theorem_definition_token1] = ACTIONS(77), + }, + [205] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1183), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [206] = { + [sym__simple_content] = STATE(216), + [sym__content] = STATE(216), + [sym_part] = STATE(216), + [sym_chapter] = STATE(216), + [sym_section] = STATE(216), + [sym_subsection] = STATE(216), + [sym_subsubsection] = STATE(216), + [sym_paragraph] = STATE(216), + [sym_subparagraph] = STATE(216), + [sym_enum_item] = STATE(216), + [sym_brace_group] = STATE(216), + [sym_mixed_group] = STATE(216), + [sym_text] = STATE(216), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(216), + [sym_inline_formula] = STATE(216), + [sym_begin] = STATE(108), + [sym_environment] = STATE(216), + [sym_caption] = STATE(216), + [sym_citation] = STATE(216), + [sym_package_include] = STATE(216), + [sym_class_include] = STATE(216), + [sym_biblatex_include] = STATE(216), + [sym_graphics_include] = STATE(216), + [sym_import] = STATE(216), + [sym_label_definition] = STATE(216), + [sym_label_reference] = STATE(216), + [sym_label_reference_range] = STATE(216), + [sym_label_number] = STATE(216), + [sym_command_definition] = STATE(216), + [sym_math_operator] = STATE(216), + [sym_glossary_entry_definition] = STATE(216), + [sym_glossary_entry_reference] = STATE(216), + [sym_acronym_definition] = STATE(216), + [sym_theorem_definition] = STATE(216), + [sym_generic_command] = STATE(216), + [aux_sym_document_repeat1] = STATE(216), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(1185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1189), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [207] = { + [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(550), + [sym_displayed_equation] = STATE(223), + [sym_inline_formula] = STATE(223), + [sym_begin] = STATE(96), + [sym_environment] = STATE(223), + [sym_caption] = STATE(223), + [sym_citation] = STATE(223), + [sym_package_include] = STATE(223), + [sym_class_include] = STATE(223), + [sym_biblatex_include] = STATE(223), + [sym_graphics_include] = STATE(223), + [sym_import] = STATE(223), + [sym_label_definition] = STATE(223), + [sym_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_theorem_definition] = STATE(223), + [sym_generic_command] = STATE(223), + [aux_sym_document_repeat1] = STATE(223), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(1191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1195), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [208] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1197), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [209] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1199), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1201), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [210] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [211] = { + [sym__simple_content] = STATE(132), + [sym__content] = STATE(132), + [sym_part] = STATE(132), + [sym_chapter] = STATE(132), + [sym_section] = STATE(132), + [sym_subsection] = STATE(132), + [sym_subsubsection] = STATE(132), + [sym_paragraph] = STATE(132), + [sym_subparagraph] = STATE(132), + [sym_enum_item] = STATE(132), + [sym_brace_group] = STATE(132), + [sym_mixed_group] = STATE(132), + [sym_text] = STATE(132), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(132), + [sym_inline_formula] = STATE(132), + [sym_begin] = STATE(108), + [sym_environment] = STATE(132), + [sym_caption] = STATE(132), + [sym_citation] = STATE(132), + [sym_package_include] = STATE(132), + [sym_class_include] = STATE(132), + [sym_biblatex_include] = STATE(132), + [sym_graphics_include] = STATE(132), + [sym_import] = STATE(132), + [sym_label_definition] = STATE(132), + [sym_label_reference] = STATE(132), + [sym_label_reference_range] = STATE(132), + [sym_label_number] = STATE(132), + [sym_command_definition] = STATE(132), + [sym_math_operator] = STATE(132), + [sym_glossary_entry_definition] = STATE(132), + [sym_glossary_entry_reference] = STATE(132), + [sym_acronym_definition] = STATE(132), + [sym_theorem_definition] = STATE(132), + [sym_generic_command] = STATE(132), + [aux_sym_document_repeat1] = STATE(132), + [sym__generic_command_name] = ACTIONS(87), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(87), + [aux_sym_chapter_token1] = ACTIONS(87), + [aux_sym_section_token1] = ACTIONS(87), + [aux_sym_subsection_token1] = ACTIONS(87), + [aux_sym_subsubsection_token1] = ACTIONS(87), + [aux_sym_paragraph_token1] = ACTIONS(87), + [aux_sym_subparagraph_token1] = ACTIONS(87), + [anon_sym_BSLASHitem] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [sym_word] = ACTIONS(85), + [sym_param] = ACTIONS(85), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(85), + [anon_sym_BSLASH_LBRACK] = ACTIONS(85), + [anon_sym_BSLASH_RBRACK] = ACTIONS(85), + [anon_sym_DOLLAR] = ACTIONS(87), + [anon_sym_BSLASH_LPAREN] = ACTIONS(85), + [anon_sym_BSLASHbegin] = ACTIONS(87), + [anon_sym_BSLASHcaption] = ACTIONS(87), + [aux_sym_citation_token1] = ACTIONS(87), + [aux_sym_package_include_token1] = ACTIONS(87), + [anon_sym_BSLASHdocumentclass] = ACTIONS(87), + [anon_sym_BSLASHaddbibresource] = ACTIONS(87), + [aux_sym_graphics_include_token1] = ACTIONS(87), + [aux_sym_import_token1] = ACTIONS(87), + [anon_sym_BSLASHlabel] = ACTIONS(87), + [aux_sym_label_reference_token1] = ACTIONS(87), + [aux_sym_label_reference_range_token1] = ACTIONS(87), + [anon_sym_BSLASHnewlabel] = ACTIONS(87), + [aux_sym_command_definition_token1] = ACTIONS(87), + [aux_sym_math_operator_token1] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(87), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(87), + [anon_sym_BSLASHnewacronym] = ACTIONS(87), + [aux_sym_theorem_definition_token1] = ACTIONS(87), + }, + [212] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1207), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [213] = { + [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(46), + [sym_environment] = STATE(228), + [sym_caption] = STATE(228), + [sym_citation] = STATE(228), + [sym_package_include] = STATE(228), + [sym_class_include] = STATE(228), + [sym_biblatex_include] = STATE(228), + [sym_graphics_include] = STATE(228), + [sym_import] = STATE(228), + [sym_label_definition] = STATE(228), + [sym_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_theorem_definition] = STATE(228), + [sym_generic_command] = STATE(228), + [aux_sym_document_repeat1] = STATE(228), + [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(1209), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1211), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [214] = { + [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(542), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(78), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_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_theorem_definition] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [sym__generic_command_name] = ACTIONS(1213), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1216), + [aux_sym_chapter_token1] = ACTIONS(1219), + [aux_sym_section_token1] = ACTIONS(1222), + [aux_sym_subsection_token1] = ACTIONS(1225), + [aux_sym_subsubsection_token1] = ACTIONS(1228), + [aux_sym_paragraph_token1] = ACTIONS(1231), + [aux_sym_subparagraph_token1] = ACTIONS(1234), + [anon_sym_BSLASHitem] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_COMMA] = ACTIONS(1246), + [anon_sym_EQ] = ACTIONS(1246), + [sym_word] = ACTIONS(1246), + [sym_param] = ACTIONS(1249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1252), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1258), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHend] = ACTIONS(1261), + [anon_sym_BSLASHcaption] = ACTIONS(1263), + [aux_sym_citation_token1] = ACTIONS(1266), + [aux_sym_package_include_token1] = ACTIONS(1269), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1272), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1275), + [aux_sym_graphics_include_token1] = ACTIONS(1278), + [aux_sym_import_token1] = ACTIONS(1281), + [anon_sym_BSLASHlabel] = ACTIONS(1284), + [aux_sym_label_reference_token1] = ACTIONS(1287), + [aux_sym_label_reference_range_token1] = ACTIONS(1290), + [anon_sym_BSLASHnewlabel] = ACTIONS(1293), + [aux_sym_command_definition_token1] = ACTIONS(1296), + [aux_sym_math_operator_token1] = ACTIONS(1299), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1302), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1305), + [anon_sym_BSLASHnewacronym] = ACTIONS(1308), + [aux_sym_theorem_definition_token1] = ACTIONS(1311), + }, + [215] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [216] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1316), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [217] = { + [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(550), + [sym_displayed_equation] = STATE(209), + [sym_inline_formula] = STATE(209), + [sym_begin] = STATE(96), + [sym_environment] = STATE(209), + [sym_caption] = STATE(209), + [sym_citation] = STATE(209), + [sym_package_include] = STATE(209), + [sym_class_include] = STATE(209), + [sym_biblatex_include] = STATE(209), + [sym_graphics_include] = STATE(209), + [sym_import] = STATE(209), + [sym_label_definition] = STATE(209), + [sym_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_theorem_definition] = STATE(209), + [sym_generic_command] = STATE(209), + [aux_sym_document_repeat1] = STATE(209), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(1320), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1324), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [218] = { + [sym__simple_content] = STATE(210), + [sym__content] = STATE(210), + [sym_part] = STATE(210), + [sym_chapter] = STATE(210), + [sym_section] = STATE(210), + [sym_subsection] = STATE(210), + [sym_subsubsection] = STATE(210), + [sym_paragraph] = STATE(210), + [sym_subparagraph] = STATE(210), + [sym_enum_item] = STATE(210), + [sym_brace_group] = STATE(210), + [sym_mixed_group] = STATE(210), + [sym_text] = STATE(210), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(210), + [sym_inline_formula] = STATE(210), + [sym_begin] = STATE(108), + [sym_environment] = STATE(210), + [sym_caption] = STATE(210), + [sym_citation] = STATE(210), + [sym_package_include] = STATE(210), + [sym_class_include] = STATE(210), + [sym_biblatex_include] = STATE(210), + [sym_graphics_include] = STATE(210), + [sym_import] = STATE(210), + [sym_label_definition] = STATE(210), + [sym_label_reference] = STATE(210), + [sym_label_reference_range] = STATE(210), + [sym_label_number] = STATE(210), + [sym_command_definition] = STATE(210), + [sym_math_operator] = STATE(210), + [sym_glossary_entry_definition] = STATE(210), + [sym_glossary_entry_reference] = STATE(210), + [sym_acronym_definition] = STATE(210), + [sym_theorem_definition] = STATE(210), + [sym_generic_command] = STATE(210), + [aux_sym_document_repeat1] = STATE(210), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(1326), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1328), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [219] = { + [sym__simple_content] = STATE(212), + [sym__content] = STATE(212), + [sym_part] = STATE(212), + [sym_chapter] = STATE(212), + [sym_section] = STATE(212), + [sym_subsection] = STATE(212), + [sym_subsubsection] = STATE(212), + [sym_paragraph] = STATE(212), + [sym_subparagraph] = STATE(212), + [sym_enum_item] = STATE(212), + [sym_brace_group] = STATE(212), + [sym_mixed_group] = STATE(212), + [sym_text] = STATE(212), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(212), + [sym_inline_formula] = STATE(212), + [sym_begin] = STATE(46), + [sym_environment] = STATE(212), + [sym_caption] = STATE(212), + [sym_citation] = STATE(212), + [sym_package_include] = STATE(212), + [sym_class_include] = STATE(212), + [sym_biblatex_include] = STATE(212), + [sym_graphics_include] = STATE(212), + [sym_import] = STATE(212), + [sym_label_definition] = STATE(212), + [sym_label_reference] = STATE(212), + [sym_label_reference_range] = STATE(212), + [sym_label_number] = STATE(212), + [sym_command_definition] = STATE(212), + [sym_math_operator] = STATE(212), + [sym_glossary_entry_definition] = STATE(212), + [sym_glossary_entry_reference] = STATE(212), + [sym_acronym_definition] = STATE(212), + [sym_theorem_definition] = STATE(212), + [sym_generic_command] = STATE(212), + [aux_sym_document_repeat1] = STATE(212), + [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(1332), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1334), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [220] = { + [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(475), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(46), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_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_theorem_definition] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [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(1336), + [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(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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [221] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1340), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [222] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1342), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [223] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1344), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1346), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [224] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1159), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [225] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1350), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [226] = { + [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(475), + [sym_displayed_equation] = STATE(221), + [sym_inline_formula] = STATE(221), + [sym_begin] = STATE(46), + [sym_environment] = STATE(221), + [sym_caption] = STATE(221), + [sym_citation] = STATE(221), + [sym_package_include] = STATE(221), + [sym_class_include] = STATE(221), + [sym_biblatex_include] = STATE(221), + [sym_graphics_include] = STATE(221), + [sym_import] = STATE(221), + [sym_label_definition] = STATE(221), + [sym_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_theorem_definition] = STATE(221), + [sym_generic_command] = STATE(221), + [aux_sym_document_repeat1] = STATE(221), + [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(1354), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [227] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(1356), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1359), + [aux_sym_chapter_token1] = ACTIONS(1362), + [aux_sym_section_token1] = ACTIONS(1365), + [aux_sym_subsection_token1] = ACTIONS(1368), + [aux_sym_subsubsection_token1] = ACTIONS(1371), + [aux_sym_paragraph_token1] = ACTIONS(1374), + [aux_sym_subparagraph_token1] = ACTIONS(1377), + [anon_sym_BSLASHitem] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_EQ] = ACTIONS(1389), + [sym_word] = ACTIONS(1389), + [sym_param] = ACTIONS(1392), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1395), + [anon_sym_BSLASH_RBRACK] = ACTIONS(95), + [anon_sym_DOLLAR] = ACTIONS(1398), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1401), + [anon_sym_BSLASHbegin] = ACTIONS(145), + [anon_sym_BSLASHcaption] = ACTIONS(1404), + [aux_sym_citation_token1] = ACTIONS(1407), + [aux_sym_package_include_token1] = ACTIONS(1410), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1416), + [aux_sym_graphics_include_token1] = ACTIONS(1419), + [aux_sym_import_token1] = ACTIONS(1422), + [anon_sym_BSLASHlabel] = ACTIONS(1425), + [aux_sym_label_reference_token1] = ACTIONS(1428), + [aux_sym_label_reference_range_token1] = ACTIONS(1431), + [anon_sym_BSLASHnewlabel] = ACTIONS(1434), + [aux_sym_command_definition_token1] = ACTIONS(1437), + [aux_sym_math_operator_token1] = ACTIONS(1440), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1443), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1446), + [anon_sym_BSLASHnewacronym] = ACTIONS(1449), + [aux_sym_theorem_definition_token1] = ACTIONS(1452), + }, + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1455), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [229] = { + [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(550), + [sym_displayed_equation] = STATE(197), + [sym_inline_formula] = STATE(197), + [sym_begin] = STATE(96), + [sym_environment] = STATE(197), + [sym_caption] = STATE(197), + [sym_citation] = STATE(197), + [sym_package_include] = STATE(197), + [sym_class_include] = STATE(197), + [sym_biblatex_include] = STATE(197), + [sym_graphics_include] = STATE(197), + [sym_import] = STATE(197), + [sym_label_definition] = STATE(197), + [sym_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_theorem_definition] = STATE(197), + [sym_generic_command] = STATE(197), + [aux_sym_document_repeat1] = STATE(197), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(1457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1459), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1127), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [230] = { + [sym__simple_content] = STATE(199), + [sym__content] = STATE(199), + [sym_part] = STATE(199), + [sym_chapter] = STATE(199), + [sym_section] = STATE(199), + [sym_subsection] = STATE(199), + [sym_subsubsection] = STATE(199), + [sym_paragraph] = STATE(199), + [sym_subparagraph] = STATE(199), + [sym_enum_item] = STATE(199), + [sym_brace_group] = STATE(199), + [sym_mixed_group] = STATE(199), + [sym_text] = STATE(199), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(199), + [sym_inline_formula] = STATE(199), + [sym_begin] = STATE(108), + [sym_environment] = STATE(199), + [sym_caption] = STATE(199), + [sym_citation] = STATE(199), + [sym_package_include] = STATE(199), + [sym_class_include] = STATE(199), + [sym_biblatex_include] = STATE(199), + [sym_graphics_include] = STATE(199), + [sym_import] = STATE(199), + [sym_label_definition] = STATE(199), + [sym_label_reference] = STATE(199), + [sym_label_reference_range] = STATE(199), + [sym_label_number] = STATE(199), + [sym_command_definition] = STATE(199), + [sym_math_operator] = STATE(199), + [sym_glossary_entry_definition] = STATE(199), + [sym_glossary_entry_reference] = STATE(199), + [sym_acronym_definition] = STATE(199), + [sym_theorem_definition] = STATE(199), + [sym_generic_command] = STATE(199), + [aux_sym_document_repeat1] = STATE(199), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(1461), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1147), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [231] = { + [sym__simple_content] = STATE(208), + [sym__content] = STATE(208), + [sym_part] = STATE(208), + [sym_chapter] = STATE(208), + [sym_section] = STATE(208), + [sym_subsection] = STATE(208), + [sym_subsubsection] = STATE(208), + [sym_paragraph] = STATE(208), + [sym_subparagraph] = STATE(208), + [sym_enum_item] = STATE(208), + [sym_brace_group] = STATE(208), + [sym_mixed_group] = STATE(208), + [sym_text] = STATE(208), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(208), + [sym_inline_formula] = STATE(208), + [sym_begin] = STATE(46), + [sym_environment] = STATE(208), + [sym_caption] = STATE(208), + [sym_citation] = STATE(208), + [sym_package_include] = STATE(208), + [sym_class_include] = STATE(208), + [sym_biblatex_include] = STATE(208), + [sym_graphics_include] = STATE(208), + [sym_import] = STATE(208), + [sym_label_definition] = STATE(208), + [sym_label_reference] = STATE(208), + [sym_label_reference_range] = STATE(208), + [sym_label_number] = STATE(208), + [sym_command_definition] = STATE(208), + [sym_math_operator] = STATE(208), + [sym_glossary_entry_definition] = STATE(208), + [sym_glossary_entry_reference] = STATE(208), + [sym_acronym_definition] = STATE(208), + [sym_theorem_definition] = STATE(208), + [sym_generic_command] = STATE(208), + [aux_sym_document_repeat1] = STATE(208), + [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(1465), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1467), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [232] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1469), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [233] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1471), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1473), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [235] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1475), + [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(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [236] = { + [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(475), + [sym_displayed_equation] = STATE(222), + [sym_inline_formula] = STATE(222), + [sym_begin] = STATE(46), + [sym_environment] = STATE(222), + [sym_caption] = STATE(222), + [sym_citation] = STATE(222), + [sym_package_include] = STATE(222), + [sym_class_include] = STATE(222), + [sym_biblatex_include] = STATE(222), + [sym_graphics_include] = STATE(222), + [sym_import] = STATE(222), + [sym_label_definition] = STATE(222), + [sym_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_theorem_definition] = STATE(222), + [sym_generic_command] = STATE(222), + [aux_sym_document_repeat1] = STATE(222), + [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(1477), + [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(1479), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [237] = { + [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(46), + [sym_environment] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_import] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_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_theorem_definition] = STATE(198), + [sym_generic_command] = STATE(198), + [aux_sym_document_repeat1] = STATE(198), + [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(1481), + [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(1483), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1485), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [239] = { + [sym__simple_content] = STATE(150), + [sym_section] = STATE(150), + [sym_subsection] = STATE(150), + [sym_subsubsection] = STATE(150), + [sym_paragraph] = STATE(150), + [sym_subparagraph] = STATE(150), + [sym_enum_item] = STATE(150), + [sym_brace_group] = STATE(150), + [sym_mixed_group] = STATE(150), + [sym_text] = STATE(150), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(150), + [sym_inline_formula] = STATE(150), + [sym_begin] = STATE(46), + [sym_environment] = STATE(150), + [sym_caption] = STATE(150), + [sym_citation] = STATE(150), + [sym_package_include] = STATE(150), + [sym_class_include] = STATE(150), + [sym_biblatex_include] = STATE(150), + [sym_graphics_include] = STATE(150), + [sym_import] = STATE(150), + [sym_label_definition] = STATE(150), + [sym_label_reference] = STATE(150), + [sym_label_reference_range] = STATE(150), + [sym_label_number] = STATE(150), + [sym_command_definition] = STATE(150), + [sym_math_operator] = STATE(150), + [sym_glossary_entry_definition] = STATE(150), + [sym_glossary_entry_reference] = STATE(150), + [sym_acronym_definition] = STATE(150), + [sym_theorem_definition] = STATE(150), + [sym_generic_command] = STATE(150), + [aux_sym_chapter_repeat1] = STATE(150), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1489), + [aux_sym_chapter_token1] = ACTIONS(1489), + [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(1487), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1491), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [240] = { + [sym__simple_content] = STATE(148), + [sym__content] = STATE(148), + [sym_part] = STATE(148), + [sym_chapter] = STATE(148), + [sym_section] = STATE(148), + [sym_subsection] = STATE(148), + [sym_subsubsection] = STATE(148), + [sym_paragraph] = STATE(148), + [sym_subparagraph] = STATE(148), + [sym_enum_item] = STATE(148), + [sym_brace_group] = STATE(148), + [sym_mixed_group] = STATE(148), + [sym_text] = STATE(148), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(148), + [sym_inline_formula] = STATE(148), + [sym_begin] = STATE(108), + [sym_environment] = STATE(148), + [sym_caption] = STATE(148), + [sym_citation] = STATE(148), + [sym_package_include] = STATE(148), + [sym_class_include] = STATE(148), + [sym_biblatex_include] = STATE(148), + [sym_graphics_include] = STATE(148), + [sym_import] = STATE(148), + [sym_label_definition] = STATE(148), + [sym_label_reference] = STATE(148), + [sym_label_reference_range] = STATE(148), + [sym_label_number] = STATE(148), + [sym_command_definition] = STATE(148), + [sym_math_operator] = STATE(148), + [sym_glossary_entry_definition] = STATE(148), + [sym_glossary_entry_reference] = STATE(148), + [sym_acronym_definition] = STATE(148), + [sym_theorem_definition] = STATE(148), + [sym_generic_command] = STATE(148), + [aux_sym_document_repeat1] = STATE(148), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(1493), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [241] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1499), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [242] = { + [sym__simple_content] = STATE(130), + [sym__content] = STATE(130), + [sym_part] = STATE(130), + [sym_chapter] = 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(550), + [sym_displayed_equation] = STATE(130), + [sym_inline_formula] = STATE(130), + [sym_begin] = STATE(96), + [sym_environment] = STATE(130), + [sym_caption] = STATE(130), + [sym_citation] = STATE(130), + [sym_package_include] = STATE(130), + [sym_class_include] = STATE(130), + [sym_biblatex_include] = STATE(130), + [sym_graphics_include] = STATE(130), + [sym_import] = STATE(130), + [sym_label_definition] = STATE(130), + [sym_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_theorem_definition] = STATE(130), + [sym_generic_command] = STATE(130), + [aux_sym_document_repeat1] = STATE(130), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(1501), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1503), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1505), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [243] = { + [sym__simple_content] = STATE(163), + [sym__content] = STATE(163), + [sym_part] = STATE(163), + [sym_chapter] = STATE(163), + [sym_section] = STATE(163), + [sym_subsection] = STATE(163), + [sym_subsubsection] = STATE(163), + [sym_paragraph] = STATE(163), + [sym_subparagraph] = STATE(163), + [sym_enum_item] = STATE(163), + [sym_brace_group] = STATE(163), + [sym_mixed_group] = STATE(163), + [sym_text] = STATE(163), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(163), + [sym_inline_formula] = STATE(163), + [sym_begin] = STATE(96), + [sym_environment] = STATE(163), + [sym_caption] = STATE(163), + [sym_citation] = STATE(163), + [sym_package_include] = STATE(163), + [sym_class_include] = STATE(163), + [sym_biblatex_include] = STATE(163), + [sym_graphics_include] = STATE(163), + [sym_import] = STATE(163), + [sym_label_definition] = STATE(163), + [sym_label_reference] = STATE(163), + [sym_label_reference_range] = STATE(163), + [sym_label_number] = STATE(163), + [sym_command_definition] = STATE(163), + [sym_math_operator] = STATE(163), + [sym_glossary_entry_definition] = STATE(163), + [sym_glossary_entry_reference] = STATE(163), + [sym_acronym_definition] = STATE(163), + [sym_theorem_definition] = STATE(163), + [sym_generic_command] = STATE(163), + [aux_sym_document_repeat1] = STATE(163), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(724), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1507), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1509), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [244] = { + [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(46), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_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_theorem_definition] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [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(1511), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(335), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [245] = { + [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(550), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_begin] = STATE(96), + [sym_environment] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_import] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_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_theorem_definition] = STATE(243), + [sym_generic_command] = STATE(243), + [aux_sym_document_repeat1] = STATE(243), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(199), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(1513), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1517), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [246] = { + [sym__simple_content] = STATE(248), + [sym__content] = STATE(248), + [sym_part] = STATE(248), + [sym_chapter] = STATE(248), + [sym_section] = STATE(248), + [sym_subsection] = STATE(248), + [sym_subsubsection] = STATE(248), + [sym_paragraph] = STATE(248), + [sym_subparagraph] = STATE(248), + [sym_enum_item] = STATE(248), + [sym_brace_group] = STATE(248), + [sym_mixed_group] = STATE(248), + [sym_text] = STATE(248), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(248), + [sym_inline_formula] = STATE(248), + [sym_begin] = STATE(108), + [sym_environment] = STATE(248), + [sym_caption] = STATE(248), + [sym_citation] = STATE(248), + [sym_package_include] = STATE(248), + [sym_class_include] = STATE(248), + [sym_biblatex_include] = STATE(248), + [sym_graphics_include] = STATE(248), + [sym_import] = STATE(248), + [sym_label_definition] = STATE(248), + [sym_label_reference] = STATE(248), + [sym_label_reference_range] = STATE(248), + [sym_label_number] = STATE(248), + [sym_command_definition] = STATE(248), + [sym_math_operator] = STATE(248), + [sym_glossary_entry_definition] = STATE(248), + [sym_glossary_entry_reference] = STATE(248), + [sym_acronym_definition] = STATE(248), + [sym_theorem_definition] = STATE(248), + [sym_generic_command] = STATE(248), + [aux_sym_document_repeat1] = STATE(248), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(1519), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1523), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [247] = { + [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(475), + [sym_displayed_equation] = STATE(241), + [sym_inline_formula] = STATE(241), + [sym_begin] = STATE(46), + [sym_environment] = STATE(241), + [sym_caption] = STATE(241), + [sym_citation] = STATE(241), + [sym_package_include] = STATE(241), + [sym_class_include] = STATE(241), + [sym_biblatex_include] = STATE(241), + [sym_graphics_include] = STATE(241), + [sym_import] = STATE(241), + [sym_label_definition] = STATE(241), + [sym_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_theorem_definition] = STATE(241), + [sym_generic_command] = STATE(241), + [aux_sym_document_repeat1] = STATE(241), + [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(1525), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1527), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [248] = { + [sym__simple_content] = STATE(227), + [sym__content] = STATE(227), + [sym_part] = STATE(227), + [sym_chapter] = STATE(227), + [sym_section] = STATE(227), + [sym_subsection] = STATE(227), + [sym_subsubsection] = STATE(227), + [sym_paragraph] = STATE(227), + [sym_subparagraph] = STATE(227), + [sym_enum_item] = STATE(227), + [sym_brace_group] = STATE(227), + [sym_mixed_group] = STATE(227), + [sym_text] = STATE(227), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(227), + [sym_inline_formula] = STATE(227), + [sym_begin] = STATE(108), + [sym_environment] = STATE(227), + [sym_caption] = STATE(227), + [sym_citation] = STATE(227), + [sym_package_include] = STATE(227), + [sym_class_include] = STATE(227), + [sym_biblatex_include] = STATE(227), + [sym_graphics_include] = STATE(227), + [sym_import] = STATE(227), + [sym_label_definition] = STATE(227), + [sym_label_reference] = STATE(227), + [sym_label_reference_range] = STATE(227), + [sym_label_number] = STATE(227), + [sym_command_definition] = STATE(227), + [sym_math_operator] = STATE(227), + [sym_glossary_entry_definition] = STATE(227), + [sym_glossary_entry_reference] = STATE(227), + [sym_acronym_definition] = STATE(227), + [sym_theorem_definition] = STATE(227), + [sym_generic_command] = STATE(227), + [aux_sym_document_repeat1] = STATE(227), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(213), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1531), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [249] = { + [sym__simple_content] = STATE(250), + [sym_subsection] = STATE(250), + [sym_subsubsection] = STATE(250), + [sym_paragraph] = STATE(250), + [sym_subparagraph] = STATE(250), + [sym_enum_item] = STATE(250), + [sym_brace_group] = STATE(250), + [sym_mixed_group] = STATE(250), + [sym_text] = STATE(250), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(250), + [sym_inline_formula] = STATE(250), + [sym_begin] = STATE(46), + [sym_environment] = STATE(250), + [sym_caption] = STATE(250), + [sym_citation] = STATE(250), + [sym_package_include] = STATE(250), + [sym_class_include] = STATE(250), + [sym_biblatex_include] = STATE(250), + [sym_graphics_include] = STATE(250), + [sym_import] = STATE(250), + [sym_label_definition] = STATE(250), + [sym_label_reference] = STATE(250), + [sym_label_reference_range] = STATE(250), + [sym_label_number] = STATE(250), + [sym_command_definition] = STATE(250), + [sym_math_operator] = STATE(250), + [sym_glossary_entry_definition] = STATE(250), + [sym_glossary_entry_reference] = STATE(250), + [sym_acronym_definition] = STATE(250), + [sym_theorem_definition] = STATE(250), + [sym_generic_command] = STATE(250), + [aux_sym_section_repeat1] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(1533), + [sym__generic_command_name] = ACTIONS(7), + [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(1535), + [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(1533), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1537), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [250] = { + [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(46), + [sym_environment] = STATE(251), + [sym_caption] = STATE(251), + [sym_citation] = STATE(251), + [sym_package_include] = STATE(251), + [sym_class_include] = STATE(251), + [sym_biblatex_include] = STATE(251), + [sym_graphics_include] = STATE(251), + [sym_import] = STATE(251), + [sym_label_definition] = STATE(251), + [sym_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_theorem_definition] = STATE(251), + [sym_generic_command] = STATE(251), + [aux_sym_section_repeat1] = STATE(251), + [ts_builtin_sym_end] = ACTIONS(1539), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1541), + [aux_sym_chapter_token1] = ACTIONS(1541), + [aux_sym_section_token1] = ACTIONS(1541), + [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(1539), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1539), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1543), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [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(46), + [sym_environment] = STATE(251), + [sym_caption] = STATE(251), + [sym_citation] = STATE(251), + [sym_package_include] = STATE(251), + [sym_class_include] = STATE(251), + [sym_biblatex_include] = STATE(251), + [sym_graphics_include] = STATE(251), + [sym_import] = STATE(251), + [sym_label_definition] = STATE(251), + [sym_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_theorem_definition] = STATE(251), + [sym_generic_command] = STATE(251), + [aux_sym_section_repeat1] = STATE(251), + [ts_builtin_sym_end] = ACTIONS(1545), + [sym__generic_command_name] = ACTIONS(1547), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1550), + [aux_sym_chapter_token1] = ACTIONS(1550), + [aux_sym_section_token1] = ACTIONS(1550), + [aux_sym_subsection_token1] = ACTIONS(1552), + [aux_sym_subsubsection_token1] = ACTIONS(1555), + [aux_sym_paragraph_token1] = ACTIONS(1558), + [aux_sym_subparagraph_token1] = ACTIONS(1561), + [anon_sym_BSLASHitem] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_COMMA] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(1573), + [sym_word] = ACTIONS(1573), + [sym_param] = ACTIONS(1576), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1579), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1582), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1585), + [anon_sym_BSLASHbegin] = ACTIONS(1588), + [anon_sym_BSLASHcaption] = ACTIONS(1591), + [aux_sym_citation_token1] = ACTIONS(1594), + [aux_sym_package_include_token1] = ACTIONS(1597), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1600), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1603), + [aux_sym_graphics_include_token1] = ACTIONS(1606), + [aux_sym_import_token1] = ACTIONS(1609), + [anon_sym_BSLASHlabel] = ACTIONS(1612), + [aux_sym_label_reference_token1] = ACTIONS(1615), + [aux_sym_label_reference_range_token1] = ACTIONS(1618), + [anon_sym_BSLASHnewlabel] = ACTIONS(1621), + [aux_sym_command_definition_token1] = ACTIONS(1624), + [aux_sym_math_operator_token1] = ACTIONS(1627), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1630), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1633), + [anon_sym_BSLASHnewacronym] = ACTIONS(1636), + [aux_sym_theorem_definition_token1] = ACTIONS(1639), + }, + [252] = { + [sym__simple_content] = STATE(255), + [sym_subsubsection] = STATE(255), + [sym_paragraph] = STATE(255), + [sym_subparagraph] = STATE(255), + [sym_enum_item] = STATE(255), + [sym_brace_group] = STATE(255), + [sym_mixed_group] = STATE(255), + [sym_text] = STATE(255), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(255), + [sym_inline_formula] = STATE(255), + [sym_begin] = STATE(46), + [sym_environment] = STATE(255), + [sym_caption] = STATE(255), + [sym_citation] = STATE(255), + [sym_package_include] = STATE(255), + [sym_class_include] = STATE(255), + [sym_biblatex_include] = STATE(255), + [sym_graphics_include] = STATE(255), + [sym_import] = STATE(255), + [sym_label_definition] = STATE(255), + [sym_label_reference] = STATE(255), + [sym_label_reference_range] = STATE(255), + [sym_label_number] = STATE(255), + [sym_command_definition] = STATE(255), + [sym_math_operator] = STATE(255), + [sym_glossary_entry_definition] = STATE(255), + [sym_glossary_entry_reference] = STATE(255), + [sym_acronym_definition] = STATE(255), + [sym_theorem_definition] = STATE(255), + [sym_generic_command] = STATE(255), + [aux_sym_subsection_repeat1] = STATE(255), + [ts_builtin_sym_end] = ACTIONS(1642), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1644), + [aux_sym_chapter_token1] = ACTIONS(1644), + [aux_sym_section_token1] = ACTIONS(1644), + [aux_sym_subsection_token1] = ACTIONS(1644), + [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(1642), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1646), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [253] = { + [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(547), + [sym_displayed_equation] = STATE(265), + [sym_inline_formula] = STATE(265), + [sym_begin] = STATE(49), + [sym_environment] = STATE(265), + [sym_caption] = STATE(265), + [sym_citation] = STATE(265), + [sym_package_include] = STATE(265), + [sym_class_include] = STATE(265), + [sym_biblatex_include] = STATE(265), + [sym_graphics_include] = STATE(265), + [sym_import] = STATE(265), + [sym_label_definition] = STATE(265), + [sym_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_theorem_definition] = STATE(265), + [sym_generic_command] = STATE(265), + [aux_sym_part_repeat1] = STATE(265), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1650), + [aux_sym_section_token1] = ACTIONS(1652), + [aux_sym_subsection_token1] = ACTIONS(1654), + [aux_sym_subsubsection_token1] = ACTIONS(1656), + [aux_sym_paragraph_token1] = ACTIONS(1658), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(1670), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [254] = { + [sym__simple_content] = STATE(254), + [sym_chapter] = STATE(254), + [sym_section] = STATE(254), + [sym_subsection] = STATE(254), + [sym_subsubsection] = STATE(254), + [sym_paragraph] = STATE(254), + [sym_subparagraph] = STATE(254), + [sym_enum_item] = STATE(254), + [sym_brace_group] = STATE(254), + [sym_mixed_group] = STATE(254), + [sym_text] = STATE(254), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(254), + [sym_inline_formula] = STATE(254), + [sym_begin] = STATE(96), + [sym_environment] = STATE(254), + [sym_caption] = STATE(254), + [sym_citation] = STATE(254), + [sym_package_include] = STATE(254), + [sym_class_include] = STATE(254), + [sym_biblatex_include] = STATE(254), + [sym_graphics_include] = STATE(254), + [sym_import] = STATE(254), + [sym_label_definition] = STATE(254), + [sym_label_reference] = STATE(254), + [sym_label_reference_range] = STATE(254), + [sym_label_number] = STATE(254), + [sym_command_definition] = STATE(254), + [sym_math_operator] = STATE(254), + [sym_glossary_entry_definition] = STATE(254), + [sym_glossary_entry_reference] = STATE(254), + [sym_acronym_definition] = STATE(254), + [sym_theorem_definition] = STATE(254), + [sym_generic_command] = STATE(254), + [aux_sym_part_repeat1] = STATE(254), + [sym__generic_command_name] = ACTIONS(1712), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(546), + [aux_sym_chapter_token1] = ACTIONS(1715), + [aux_sym_section_token1] = ACTIONS(1718), + [aux_sym_subsection_token1] = ACTIONS(1721), + [aux_sym_subsubsection_token1] = ACTIONS(1724), + [aux_sym_paragraph_token1] = ACTIONS(1727), + [aux_sym_subparagraph_token1] = ACTIONS(1730), + [anon_sym_BSLASHitem] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1742), + [sym_word] = ACTIONS(1742), + [sym_param] = ACTIONS(1745), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1748), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1748), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1754), + [anon_sym_BSLASH_RPAREN] = ACTIONS(541), + [anon_sym_BSLASHbegin] = ACTIONS(590), + [anon_sym_BSLASHcaption] = ACTIONS(1757), + [aux_sym_citation_token1] = ACTIONS(1760), + [aux_sym_package_include_token1] = ACTIONS(1763), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1766), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1769), + [aux_sym_graphics_include_token1] = ACTIONS(1772), + [aux_sym_import_token1] = ACTIONS(1775), + [anon_sym_BSLASHlabel] = ACTIONS(1778), + [aux_sym_label_reference_token1] = ACTIONS(1781), + [aux_sym_label_reference_range_token1] = ACTIONS(1784), + [anon_sym_BSLASHnewlabel] = ACTIONS(1787), + [aux_sym_command_definition_token1] = ACTIONS(1790), + [aux_sym_math_operator_token1] = ACTIONS(1793), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1796), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1799), + [anon_sym_BSLASHnewacronym] = ACTIONS(1802), + [aux_sym_theorem_definition_token1] = ACTIONS(1805), + }, + [255] = { + [sym__simple_content] = STATE(257), + [sym_subsubsection] = STATE(257), + [sym_paragraph] = STATE(257), + [sym_subparagraph] = STATE(257), + [sym_enum_item] = STATE(257), + [sym_brace_group] = STATE(257), + [sym_mixed_group] = STATE(257), + [sym_text] = STATE(257), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(257), + [sym_inline_formula] = STATE(257), + [sym_begin] = STATE(46), + [sym_environment] = STATE(257), + [sym_caption] = STATE(257), + [sym_citation] = STATE(257), + [sym_package_include] = STATE(257), + [sym_class_include] = STATE(257), + [sym_biblatex_include] = STATE(257), + [sym_graphics_include] = STATE(257), + [sym_import] = STATE(257), + [sym_label_definition] = STATE(257), + [sym_label_reference] = STATE(257), + [sym_label_reference_range] = STATE(257), + [sym_label_number] = STATE(257), + [sym_command_definition] = STATE(257), + [sym_math_operator] = STATE(257), + [sym_glossary_entry_definition] = STATE(257), + [sym_glossary_entry_reference] = STATE(257), + [sym_acronym_definition] = STATE(257), + [sym_theorem_definition] = STATE(257), + [sym_generic_command] = STATE(257), + [aux_sym_subsection_repeat1] = STATE(257), + [ts_builtin_sym_end] = ACTIONS(1808), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1810), + [aux_sym_chapter_token1] = ACTIONS(1810), + [aux_sym_section_token1] = ACTIONS(1810), + [aux_sym_subsection_token1] = ACTIONS(1810), + [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(1808), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1812), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [256] = { + [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(542), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_begin] = STATE(78), + [sym_environment] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_import] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_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_theorem_definition] = STATE(262), + [sym_generic_command] = STATE(262), + [aux_sym_part_repeat1] = STATE(262), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(417), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(1814), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(417), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [257] = { + [sym__simple_content] = STATE(257), + [sym_subsubsection] = STATE(257), + [sym_paragraph] = STATE(257), + [sym_subparagraph] = STATE(257), + [sym_enum_item] = STATE(257), + [sym_brace_group] = STATE(257), + [sym_mixed_group] = STATE(257), + [sym_text] = STATE(257), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(257), + [sym_inline_formula] = STATE(257), + [sym_begin] = STATE(46), + [sym_environment] = STATE(257), + [sym_caption] = STATE(257), + [sym_citation] = STATE(257), + [sym_package_include] = STATE(257), + [sym_class_include] = STATE(257), + [sym_biblatex_include] = STATE(257), + [sym_graphics_include] = STATE(257), + [sym_import] = STATE(257), + [sym_label_definition] = STATE(257), + [sym_label_reference] = STATE(257), + [sym_label_reference_range] = STATE(257), + [sym_label_number] = STATE(257), + [sym_command_definition] = STATE(257), + [sym_math_operator] = STATE(257), + [sym_glossary_entry_definition] = STATE(257), + [sym_glossary_entry_reference] = STATE(257), + [sym_acronym_definition] = STATE(257), + [sym_theorem_definition] = STATE(257), + [sym_generic_command] = STATE(257), + [aux_sym_subsection_repeat1] = STATE(257), + [ts_builtin_sym_end] = ACTIONS(1816), + [sym__generic_command_name] = ACTIONS(1818), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1821), + [aux_sym_chapter_token1] = ACTIONS(1821), + [aux_sym_section_token1] = ACTIONS(1821), + [aux_sym_subsection_token1] = ACTIONS(1821), + [aux_sym_subsubsection_token1] = ACTIONS(1823), + [aux_sym_paragraph_token1] = ACTIONS(1826), + [aux_sym_subparagraph_token1] = ACTIONS(1829), + [anon_sym_BSLASHitem] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1841), + [anon_sym_EQ] = ACTIONS(1841), + [sym_word] = ACTIONS(1841), + [sym_param] = ACTIONS(1844), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1850), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1853), + [anon_sym_BSLASHbegin] = ACTIONS(1856), + [anon_sym_BSLASHcaption] = ACTIONS(1859), + [aux_sym_citation_token1] = ACTIONS(1862), + [aux_sym_package_include_token1] = ACTIONS(1865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1871), + [aux_sym_graphics_include_token1] = ACTIONS(1874), + [aux_sym_import_token1] = ACTIONS(1877), + [anon_sym_BSLASHlabel] = ACTIONS(1880), + [aux_sym_label_reference_token1] = ACTIONS(1883), + [aux_sym_label_reference_range_token1] = ACTIONS(1886), + [anon_sym_BSLASHnewlabel] = ACTIONS(1889), + [aux_sym_command_definition_token1] = ACTIONS(1892), + [aux_sym_math_operator_token1] = ACTIONS(1895), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1901), + [anon_sym_BSLASHnewacronym] = ACTIONS(1904), + [aux_sym_theorem_definition_token1] = ACTIONS(1907), + }, + [258] = { + [sym__simple_content] = STATE(258), + [sym_chapter] = STATE(258), + [sym_section] = STATE(258), + [sym_subsection] = STATE(258), + [sym_subsubsection] = STATE(258), + [sym_paragraph] = STATE(258), + [sym_subparagraph] = STATE(258), + [sym_enum_item] = STATE(258), + [sym_brace_group] = STATE(258), + [sym_mixed_group] = STATE(258), + [sym_text] = STATE(258), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(258), + [sym_inline_formula] = STATE(258), + [sym_begin] = STATE(49), + [sym_environment] = STATE(258), + [sym_caption] = STATE(258), + [sym_citation] = STATE(258), + [sym_package_include] = STATE(258), + [sym_class_include] = STATE(258), + [sym_biblatex_include] = STATE(258), + [sym_graphics_include] = STATE(258), + [sym_import] = STATE(258), + [sym_label_definition] = STATE(258), + [sym_label_reference] = STATE(258), + [sym_label_reference_range] = STATE(258), + [sym_label_number] = STATE(258), + [sym_command_definition] = STATE(258), + [sym_math_operator] = STATE(258), + [sym_glossary_entry_definition] = STATE(258), + [sym_glossary_entry_reference] = STATE(258), + [sym_acronym_definition] = STATE(258), + [sym_theorem_definition] = STATE(258), + [sym_generic_command] = STATE(258), + [aux_sym_part_repeat1] = STATE(258), + [sym__generic_command_name] = ACTIONS(1910), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1913), + [aux_sym_section_token1] = ACTIONS(1916), + [aux_sym_subsection_token1] = ACTIONS(1919), + [aux_sym_subsubsection_token1] = ACTIONS(1922), + [aux_sym_paragraph_token1] = ACTIONS(1925), + [aux_sym_subparagraph_token1] = ACTIONS(1928), + [anon_sym_BSLASHitem] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(1940), + [sym_word] = ACTIONS(1940), + [sym_param] = ACTIONS(1943), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1952), + [anon_sym_BSLASHbegin] = ACTIONS(590), + [anon_sym_BSLASHcaption] = ACTIONS(1955), + [aux_sym_citation_token1] = ACTIONS(1958), + [aux_sym_package_include_token1] = ACTIONS(1961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1964), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1967), + [aux_sym_graphics_include_token1] = ACTIONS(1970), + [aux_sym_import_token1] = ACTIONS(1973), + [anon_sym_BSLASHlabel] = ACTIONS(1976), + [aux_sym_label_reference_token1] = ACTIONS(1979), + [aux_sym_label_reference_range_token1] = ACTIONS(1982), + [anon_sym_BSLASHnewlabel] = ACTIONS(1985), + [aux_sym_command_definition_token1] = ACTIONS(1988), + [aux_sym_math_operator_token1] = ACTIONS(1991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1994), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1997), + [anon_sym_BSLASHnewacronym] = ACTIONS(2000), + [aux_sym_theorem_definition_token1] = ACTIONS(2003), + }, + [259] = { + [sym__simple_content] = STATE(267), + [sym_chapter] = STATE(267), + [sym_section] = STATE(267), + [sym_subsection] = STATE(267), + [sym_subsubsection] = STATE(267), + [sym_paragraph] = STATE(267), + [sym_subparagraph] = STATE(267), + [sym_enum_item] = STATE(267), + [sym_brace_group] = STATE(267), + [sym_mixed_group] = STATE(267), + [sym_text] = STATE(267), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(267), + [sym_inline_formula] = STATE(267), + [sym_begin] = STATE(108), + [sym_environment] = STATE(267), + [sym_caption] = STATE(267), + [sym_citation] = STATE(267), + [sym_package_include] = STATE(267), + [sym_class_include] = STATE(267), + [sym_biblatex_include] = STATE(267), + [sym_graphics_include] = STATE(267), + [sym_import] = STATE(267), + [sym_label_definition] = STATE(267), + [sym_label_reference] = STATE(267), + [sym_label_reference_range] = STATE(267), + [sym_label_number] = STATE(267), + [sym_command_definition] = STATE(267), + [sym_math_operator] = STATE(267), + [sym_glossary_entry_definition] = STATE(267), + [sym_glossary_entry_reference] = STATE(267), + [sym_acronym_definition] = STATE(267), + [sym_theorem_definition] = STATE(267), + [sym_generic_command] = STATE(267), + [aux_sym_part_repeat1] = STATE(267), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(417), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(2006), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [260] = { + [sym__simple_content] = STATE(1264), + [sym__content] = STATE(1264), + [sym_part] = STATE(1264), + [sym_chapter] = STATE(1264), + [sym_section] = STATE(1264), + [sym_subsection] = STATE(1264), + [sym_subsubsection] = STATE(1264), + [sym_paragraph] = STATE(1264), + [sym_subparagraph] = STATE(1264), + [sym_enum_item] = STATE(1264), + [sym_brace_group] = STATE(1264), + [sym_mixed_group] = STATE(1264), + [sym_text] = STATE(1264), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(1264), + [sym_inline_formula] = STATE(1264), + [sym_begin] = STATE(46), + [sym_environment] = STATE(1264), + [sym_caption] = STATE(1264), + [sym_citation] = STATE(1264), + [sym_package_include] = STATE(1264), + [sym_class_include] = STATE(1264), + [sym_biblatex_include] = STATE(1264), + [sym_graphics_include] = STATE(1264), + [sym_import] = STATE(1264), + [sym_label_definition] = STATE(1264), + [sym_label_reference] = STATE(1264), + [sym_label_reference_range] = STATE(1264), + [sym_label_number] = STATE(1264), + [sym_command_definition] = STATE(1264), + [sym_math_operator] = STATE(1264), + [sym_glossary_entry_definition] = STATE(1264), + [sym_glossary_entry_reference] = STATE(1264), + [sym_acronym_definition] = STATE(1264), + [sym_theorem_definition] = STATE(1264), + [sym_generic_command] = STATE(1264), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2008), + [aux_sym_chapter_token1] = ACTIONS(2010), + [aux_sym_section_token1] = ACTIONS(2012), + [aux_sym_subsection_token1] = ACTIONS(2014), + [aux_sym_subsubsection_token1] = ACTIONS(2016), + [aux_sym_paragraph_token1] = ACTIONS(2018), + [aux_sym_subparagraph_token1] = ACTIONS(2020), + [anon_sym_BSLASHitem] = ACTIONS(2022), + [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(2024), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2030), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [261] = { + [sym__simple_content] = STATE(254), + [sym_chapter] = STATE(254), + [sym_section] = STATE(254), + [sym_subsection] = STATE(254), + [sym_subsubsection] = STATE(254), + [sym_paragraph] = STATE(254), + [sym_subparagraph] = STATE(254), + [sym_enum_item] = STATE(254), + [sym_brace_group] = STATE(254), + [sym_mixed_group] = STATE(254), + [sym_text] = STATE(254), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(254), + [sym_inline_formula] = STATE(254), + [sym_begin] = STATE(96), + [sym_environment] = STATE(254), + [sym_caption] = STATE(254), + [sym_citation] = STATE(254), + [sym_package_include] = STATE(254), + [sym_class_include] = STATE(254), + [sym_biblatex_include] = STATE(254), + [sym_graphics_include] = STATE(254), + [sym_import] = STATE(254), + [sym_label_definition] = STATE(254), + [sym_label_reference] = STATE(254), + [sym_label_reference_range] = STATE(254), + [sym_label_number] = STATE(254), + [sym_command_definition] = STATE(254), + [sym_math_operator] = STATE(254), + [sym_glossary_entry_definition] = STATE(254), + [sym_glossary_entry_reference] = STATE(254), + [sym_acronym_definition] = STATE(254), + [sym_theorem_definition] = STATE(254), + [sym_generic_command] = STATE(254), + [aux_sym_part_repeat1] = STATE(254), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(529), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(2032), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(527), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [262] = { + [sym__simple_content] = STATE(266), + [sym_chapter] = STATE(266), + [sym_section] = STATE(266), + [sym_subsection] = STATE(266), + [sym_subsubsection] = STATE(266), + [sym_paragraph] = STATE(266), + [sym_subparagraph] = STATE(266), + [sym_enum_item] = STATE(266), + [sym_brace_group] = STATE(266), + [sym_mixed_group] = STATE(266), + [sym_text] = STATE(266), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(266), + [sym_inline_formula] = STATE(266), + [sym_begin] = STATE(78), + [sym_environment] = STATE(266), + [sym_caption] = STATE(266), + [sym_citation] = STATE(266), + [sym_package_include] = STATE(266), + [sym_class_include] = STATE(266), + [sym_biblatex_include] = STATE(266), + [sym_graphics_include] = STATE(266), + [sym_import] = STATE(266), + [sym_label_definition] = STATE(266), + [sym_label_reference] = STATE(266), + [sym_label_reference_range] = STATE(266), + [sym_label_number] = STATE(266), + [sym_command_definition] = STATE(266), + [sym_math_operator] = STATE(266), + [sym_glossary_entry_definition] = STATE(266), + [sym_glossary_entry_reference] = STATE(266), + [sym_acronym_definition] = STATE(266), + [sym_theorem_definition] = STATE(266), + [sym_generic_command] = STATE(266), + [aux_sym_part_repeat1] = STATE(266), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(529), + [aux_sym_chapter_token1] = ACTIONS(341), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(2036), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(529), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [263] = { + [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(550), + [sym_displayed_equation] = STATE(261), + [sym_inline_formula] = STATE(261), + [sym_begin] = STATE(96), + [sym_environment] = STATE(261), + [sym_caption] = STATE(261), + [sym_citation] = STATE(261), + [sym_package_include] = STATE(261), + [sym_class_include] = STATE(261), + [sym_biblatex_include] = STATE(261), + [sym_graphics_include] = STATE(261), + [sym_import] = STATE(261), + [sym_label_definition] = STATE(261), + [sym_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_theorem_definition] = STATE(261), + [sym_generic_command] = STATE(261), + [aux_sym_part_repeat1] = STATE(261), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(417), + [aux_sym_chapter_token1] = ACTIONS(201), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(2038), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(415), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [264] = { + [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(543), + [sym_displayed_equation] = STATE(264), + [sym_inline_formula] = STATE(264), + [sym_begin] = STATE(108), + [sym_environment] = STATE(264), + [sym_caption] = STATE(264), + [sym_citation] = STATE(264), + [sym_package_include] = STATE(264), + [sym_class_include] = STATE(264), + [sym_biblatex_include] = STATE(264), + [sym_graphics_include] = STATE(264), + [sym_import] = STATE(264), + [sym_label_definition] = STATE(264), + [sym_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_theorem_definition] = STATE(264), + [sym_generic_command] = STATE(264), + [aux_sym_part_repeat1] = STATE(264), + [sym__generic_command_name] = ACTIONS(2040), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(546), + [aux_sym_chapter_token1] = ACTIONS(2043), + [aux_sym_section_token1] = ACTIONS(2046), + [aux_sym_subsection_token1] = ACTIONS(2049), + [aux_sym_subsubsection_token1] = ACTIONS(2052), + [aux_sym_paragraph_token1] = ACTIONS(2055), + [aux_sym_subparagraph_token1] = ACTIONS(2058), + [anon_sym_BSLASHitem] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_COMMA] = ACTIONS(2070), + [anon_sym_EQ] = ACTIONS(2070), + [sym_word] = ACTIONS(2070), + [sym_param] = ACTIONS(2073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2076), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2076), + [anon_sym_BSLASH_RBRACK] = ACTIONS(541), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2082), + [anon_sym_BSLASHbegin] = ACTIONS(590), + [anon_sym_BSLASHcaption] = ACTIONS(2085), + [aux_sym_citation_token1] = ACTIONS(2088), + [aux_sym_package_include_token1] = ACTIONS(2091), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2094), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2097), + [aux_sym_graphics_include_token1] = ACTIONS(2100), + [aux_sym_import_token1] = ACTIONS(2103), + [anon_sym_BSLASHlabel] = ACTIONS(2106), + [aux_sym_label_reference_token1] = ACTIONS(2109), + [aux_sym_label_reference_range_token1] = ACTIONS(2112), + [anon_sym_BSLASHnewlabel] = ACTIONS(2115), + [aux_sym_command_definition_token1] = ACTIONS(2118), + [aux_sym_math_operator_token1] = ACTIONS(2121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2124), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2127), + [anon_sym_BSLASHnewacronym] = ACTIONS(2130), + [aux_sym_theorem_definition_token1] = ACTIONS(2133), + }, + [265] = { + [sym__simple_content] = STATE(258), + [sym_chapter] = STATE(258), + [sym_section] = STATE(258), + [sym_subsection] = STATE(258), + [sym_subsubsection] = STATE(258), + [sym_paragraph] = STATE(258), + [sym_subparagraph] = STATE(258), + [sym_enum_item] = STATE(258), + [sym_brace_group] = STATE(258), + [sym_mixed_group] = STATE(258), + [sym_text] = STATE(258), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(258), + [sym_inline_formula] = STATE(258), + [sym_begin] = STATE(49), + [sym_environment] = STATE(258), + [sym_caption] = STATE(258), + [sym_citation] = STATE(258), + [sym_package_include] = STATE(258), + [sym_class_include] = STATE(258), + [sym_biblatex_include] = STATE(258), + [sym_graphics_include] = STATE(258), + [sym_import] = STATE(258), + [sym_label_definition] = STATE(258), + [sym_label_reference] = STATE(258), + [sym_label_reference_range] = STATE(258), + [sym_label_number] = STATE(258), + [sym_command_definition] = STATE(258), + [sym_math_operator] = STATE(258), + [sym_glossary_entry_definition] = STATE(258), + [sym_glossary_entry_reference] = STATE(258), + [sym_acronym_definition] = STATE(258), + [sym_theorem_definition] = STATE(258), + [sym_generic_command] = STATE(258), + [aux_sym_part_repeat1] = STATE(258), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1650), + [aux_sym_section_token1] = ACTIONS(1652), + [aux_sym_subsection_token1] = ACTIONS(1654), + [aux_sym_subsubsection_token1] = ACTIONS(1656), + [aux_sym_paragraph_token1] = ACTIONS(1658), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(2136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [266] = { + [sym__simple_content] = STATE(266), + [sym_chapter] = STATE(266), + [sym_section] = STATE(266), + [sym_subsection] = STATE(266), + [sym_subsubsection] = STATE(266), + [sym_paragraph] = STATE(266), + [sym_subparagraph] = STATE(266), + [sym_enum_item] = STATE(266), + [sym_brace_group] = STATE(266), + [sym_mixed_group] = STATE(266), + [sym_text] = STATE(266), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(266), + [sym_inline_formula] = STATE(266), + [sym_begin] = STATE(78), + [sym_environment] = STATE(266), + [sym_caption] = STATE(266), + [sym_citation] = STATE(266), + [sym_package_include] = STATE(266), + [sym_class_include] = STATE(266), + [sym_biblatex_include] = STATE(266), + [sym_graphics_include] = STATE(266), + [sym_import] = STATE(266), + [sym_label_definition] = STATE(266), + [sym_label_reference] = STATE(266), + [sym_label_reference_range] = STATE(266), + [sym_label_number] = STATE(266), + [sym_command_definition] = STATE(266), + [sym_math_operator] = STATE(266), + [sym_glossary_entry_definition] = STATE(266), + [sym_glossary_entry_reference] = STATE(266), + [sym_acronym_definition] = STATE(266), + [sym_theorem_definition] = STATE(266), + [sym_generic_command] = STATE(266), + [aux_sym_part_repeat1] = STATE(266), + [sym__generic_command_name] = ACTIONS(2138), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(546), + [aux_sym_chapter_token1] = ACTIONS(2141), + [aux_sym_section_token1] = ACTIONS(2144), + [aux_sym_subsection_token1] = ACTIONS(2147), + [aux_sym_subsubsection_token1] = ACTIONS(2150), + [aux_sym_paragraph_token1] = ACTIONS(2153), + [aux_sym_subparagraph_token1] = ACTIONS(2156), + [anon_sym_BSLASHitem] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2168), + [anon_sym_EQ] = ACTIONS(2168), + [sym_word] = ACTIONS(2168), + [sym_param] = ACTIONS(2171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2174), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2180), + [anon_sym_BSLASHbegin] = ACTIONS(590), + [anon_sym_BSLASHend] = ACTIONS(546), + [anon_sym_BSLASHcaption] = ACTIONS(2183), + [aux_sym_citation_token1] = ACTIONS(2186), + [aux_sym_package_include_token1] = ACTIONS(2189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2192), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2195), + [aux_sym_graphics_include_token1] = ACTIONS(2198), + [aux_sym_import_token1] = ACTIONS(2201), + [anon_sym_BSLASHlabel] = ACTIONS(2204), + [aux_sym_label_reference_token1] = ACTIONS(2207), + [aux_sym_label_reference_range_token1] = ACTIONS(2210), + [anon_sym_BSLASHnewlabel] = ACTIONS(2213), + [aux_sym_command_definition_token1] = ACTIONS(2216), + [aux_sym_math_operator_token1] = ACTIONS(2219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2222), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2225), + [anon_sym_BSLASHnewacronym] = ACTIONS(2228), + [aux_sym_theorem_definition_token1] = ACTIONS(2231), + }, + [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(543), + [sym_displayed_equation] = STATE(264), + [sym_inline_formula] = STATE(264), + [sym_begin] = STATE(108), + [sym_environment] = STATE(264), + [sym_caption] = STATE(264), + [sym_citation] = STATE(264), + [sym_package_include] = STATE(264), + [sym_class_include] = STATE(264), + [sym_biblatex_include] = STATE(264), + [sym_graphics_include] = STATE(264), + [sym_import] = STATE(264), + [sym_label_definition] = STATE(264), + [sym_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_theorem_definition] = STATE(264), + [sym_generic_command] = STATE(264), + [aux_sym_part_repeat1] = STATE(264), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(529), + [aux_sym_chapter_token1] = ACTIONS(215), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(2234), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(527), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [268] = { + [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(550), + [sym_displayed_equation] = STATE(279), + [sym_inline_formula] = STATE(279), + [sym_begin] = STATE(96), + [sym_environment] = STATE(279), + [sym_caption] = STATE(279), + [sym_citation] = STATE(279), + [sym_package_include] = STATE(279), + [sym_class_include] = STATE(279), + [sym_biblatex_include] = STATE(279), + [sym_graphics_include] = STATE(279), + [sym_import] = STATE(279), + [sym_label_definition] = STATE(279), + [sym_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_theorem_definition] = STATE(279), + [sym_generic_command] = STATE(279), + [aux_sym_chapter_repeat1] = STATE(279), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1489), + [aux_sym_chapter_token1] = ACTIONS(1489), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(2236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1487), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [269] = { + [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(547), + [sym_displayed_equation] = STATE(273), + [sym_inline_formula] = STATE(273), + [sym_begin] = STATE(49), + [sym_environment] = STATE(273), + [sym_caption] = STATE(273), + [sym_citation] = STATE(273), + [sym_package_include] = STATE(273), + [sym_class_include] = STATE(273), + [sym_biblatex_include] = STATE(273), + [sym_graphics_include] = STATE(273), + [sym_import] = STATE(273), + [sym_label_definition] = STATE(273), + [sym_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_theorem_definition] = STATE(273), + [sym_generic_command] = STATE(273), + [aux_sym_chapter_repeat1] = STATE(273), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1489), + [aux_sym_section_token1] = ACTIONS(1652), + [aux_sym_subsection_token1] = ACTIONS(1654), + [aux_sym_subsubsection_token1] = ACTIONS(1656), + [aux_sym_paragraph_token1] = ACTIONS(1658), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(2238), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [270] = { + [sym__simple_content] = STATE(280), + [sym_section] = STATE(280), + [sym_subsection] = STATE(280), + [sym_subsubsection] = STATE(280), + [sym_paragraph] = STATE(280), + [sym_subparagraph] = STATE(280), + [sym_enum_item] = STATE(280), + [sym_brace_group] = STATE(280), + [sym_mixed_group] = STATE(280), + [sym_text] = STATE(280), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(280), + [sym_inline_formula] = STATE(280), + [sym_begin] = STATE(108), + [sym_environment] = STATE(280), + [sym_caption] = STATE(280), + [sym_citation] = STATE(280), + [sym_package_include] = STATE(280), + [sym_class_include] = STATE(280), + [sym_biblatex_include] = STATE(280), + [sym_graphics_include] = STATE(280), + [sym_import] = STATE(280), + [sym_label_definition] = STATE(280), + [sym_label_reference] = STATE(280), + [sym_label_reference_range] = STATE(280), + [sym_label_number] = STATE(280), + [sym_command_definition] = STATE(280), + [sym_math_operator] = STATE(280), + [sym_glossary_entry_definition] = STATE(280), + [sym_glossary_entry_reference] = STATE(280), + [sym_acronym_definition] = STATE(280), + [sym_theorem_definition] = STATE(280), + [sym_generic_command] = STATE(280), + [aux_sym_chapter_repeat1] = STATE(280), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(884), + [aux_sym_chapter_token1] = ACTIONS(884), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(2240), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [271] = { + [sym__simple_content] = STATE(271), + [sym_section] = STATE(271), + [sym_subsection] = STATE(271), + [sym_subsubsection] = STATE(271), + [sym_paragraph] = STATE(271), + [sym_subparagraph] = STATE(271), + [sym_enum_item] = STATE(271), + [sym_brace_group] = STATE(271), + [sym_mixed_group] = STATE(271), + [sym_text] = STATE(271), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(271), + [sym_inline_formula] = STATE(271), + [sym_begin] = STATE(49), + [sym_environment] = STATE(271), + [sym_caption] = STATE(271), + [sym_citation] = STATE(271), + [sym_package_include] = STATE(271), + [sym_class_include] = STATE(271), + [sym_biblatex_include] = STATE(271), + [sym_graphics_include] = STATE(271), + [sym_import] = STATE(271), + [sym_label_definition] = STATE(271), + [sym_label_reference] = STATE(271), + [sym_label_reference_range] = STATE(271), + [sym_label_number] = STATE(271), + [sym_command_definition] = STATE(271), + [sym_math_operator] = STATE(271), + [sym_glossary_entry_definition] = STATE(271), + [sym_glossary_entry_reference] = STATE(271), + [sym_acronym_definition] = STATE(271), + [sym_theorem_definition] = STATE(271), + [sym_generic_command] = STATE(271), + [aux_sym_chapter_repeat1] = STATE(271), + [sym__generic_command_name] = ACTIONS(2242), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(777), + [aux_sym_section_token1] = ACTIONS(2245), + [aux_sym_subsection_token1] = ACTIONS(2248), + [aux_sym_subsubsection_token1] = ACTIONS(2251), + [aux_sym_paragraph_token1] = ACTIONS(2254), + [aux_sym_subparagraph_token1] = ACTIONS(2257), + [anon_sym_BSLASHitem] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_COMMA] = ACTIONS(2269), + [anon_sym_EQ] = ACTIONS(2269), + [sym_word] = ACTIONS(2269), + [sym_param] = ACTIONS(2272), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2275), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2278), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2281), + [anon_sym_BSLASHbegin] = ACTIONS(818), + [anon_sym_BSLASHcaption] = ACTIONS(2284), + [aux_sym_citation_token1] = ACTIONS(2287), + [aux_sym_package_include_token1] = ACTIONS(2290), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2296), + [aux_sym_graphics_include_token1] = ACTIONS(2299), + [aux_sym_import_token1] = ACTIONS(2302), + [anon_sym_BSLASHlabel] = ACTIONS(2305), + [aux_sym_label_reference_token1] = ACTIONS(2308), + [aux_sym_label_reference_range_token1] = ACTIONS(2311), + [anon_sym_BSLASHnewlabel] = ACTIONS(2314), + [aux_sym_command_definition_token1] = ACTIONS(2317), + [aux_sym_math_operator_token1] = ACTIONS(2320), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2323), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2326), + [anon_sym_BSLASHnewacronym] = ACTIONS(2329), + [aux_sym_theorem_definition_token1] = ACTIONS(2332), + }, + [272] = { + [sym__simple_content] = STATE(272), + [sym_section] = STATE(272), + [sym_subsection] = STATE(272), + [sym_subsubsection] = STATE(272), + [sym_paragraph] = STATE(272), + [sym_subparagraph] = STATE(272), + [sym_enum_item] = STATE(272), + [sym_brace_group] = STATE(272), + [sym_mixed_group] = STATE(272), + [sym_text] = STATE(272), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(272), + [sym_inline_formula] = STATE(272), + [sym_begin] = STATE(96), + [sym_environment] = STATE(272), + [sym_caption] = STATE(272), + [sym_citation] = STATE(272), + [sym_package_include] = STATE(272), + [sym_class_include] = STATE(272), + [sym_biblatex_include] = STATE(272), + [sym_graphics_include] = STATE(272), + [sym_import] = STATE(272), + [sym_label_definition] = STATE(272), + [sym_label_reference] = STATE(272), + [sym_label_reference_range] = STATE(272), + [sym_label_number] = STATE(272), + [sym_command_definition] = STATE(272), + [sym_math_operator] = STATE(272), + [sym_glossary_entry_definition] = STATE(272), + [sym_glossary_entry_reference] = STATE(272), + [sym_acronym_definition] = STATE(272), + [sym_theorem_definition] = STATE(272), + [sym_generic_command] = STATE(272), + [aux_sym_chapter_repeat1] = STATE(272), + [sym__generic_command_name] = ACTIONS(2335), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(777), + [aux_sym_chapter_token1] = ACTIONS(777), + [aux_sym_section_token1] = ACTIONS(2338), + [aux_sym_subsection_token1] = ACTIONS(2341), + [aux_sym_subsubsection_token1] = ACTIONS(2344), + [aux_sym_paragraph_token1] = ACTIONS(2347), + [aux_sym_subparagraph_token1] = ACTIONS(2350), + [anon_sym_BSLASHitem] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_COMMA] = ACTIONS(2362), + [anon_sym_EQ] = ACTIONS(2362), + [sym_word] = ACTIONS(2362), + [sym_param] = ACTIONS(2365), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2368), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2371), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2374), + [anon_sym_BSLASH_RPAREN] = ACTIONS(772), + [anon_sym_BSLASHbegin] = ACTIONS(818), + [anon_sym_BSLASHcaption] = ACTIONS(2377), + [aux_sym_citation_token1] = ACTIONS(2380), + [aux_sym_package_include_token1] = ACTIONS(2383), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2386), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2389), + [aux_sym_graphics_include_token1] = ACTIONS(2392), + [aux_sym_import_token1] = ACTIONS(2395), + [anon_sym_BSLASHlabel] = ACTIONS(2398), + [aux_sym_label_reference_token1] = ACTIONS(2401), + [aux_sym_label_reference_range_token1] = ACTIONS(2404), + [anon_sym_BSLASHnewlabel] = ACTIONS(2407), + [aux_sym_command_definition_token1] = ACTIONS(2410), + [aux_sym_math_operator_token1] = ACTIONS(2413), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2416), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2419), + [anon_sym_BSLASHnewacronym] = ACTIONS(2422), + [aux_sym_theorem_definition_token1] = ACTIONS(2425), + }, + [273] = { + [sym__simple_content] = STATE(271), + [sym_section] = STATE(271), + [sym_subsection] = STATE(271), + [sym_subsubsection] = STATE(271), + [sym_paragraph] = STATE(271), + [sym_subparagraph] = STATE(271), + [sym_enum_item] = STATE(271), + [sym_brace_group] = STATE(271), + [sym_mixed_group] = STATE(271), + [sym_text] = STATE(271), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(271), + [sym_inline_formula] = STATE(271), + [sym_begin] = STATE(49), + [sym_environment] = STATE(271), + [sym_caption] = STATE(271), + [sym_citation] = STATE(271), + [sym_package_include] = STATE(271), + [sym_class_include] = STATE(271), + [sym_biblatex_include] = STATE(271), + [sym_graphics_include] = STATE(271), + [sym_import] = STATE(271), + [sym_label_definition] = STATE(271), + [sym_label_reference] = STATE(271), + [sym_label_reference_range] = STATE(271), + [sym_label_number] = STATE(271), + [sym_command_definition] = STATE(271), + [sym_math_operator] = STATE(271), + [sym_glossary_entry_definition] = STATE(271), + [sym_glossary_entry_reference] = STATE(271), + [sym_acronym_definition] = STATE(271), + [sym_theorem_definition] = STATE(271), + [sym_generic_command] = STATE(271), + [aux_sym_chapter_repeat1] = STATE(271), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(884), + [aux_sym_section_token1] = ACTIONS(1652), + [aux_sym_subsection_token1] = ACTIONS(1654), + [aux_sym_subsubsection_token1] = ACTIONS(1656), + [aux_sym_paragraph_token1] = ACTIONS(1658), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(2428), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [274] = { + [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(542), + [sym_displayed_equation] = STATE(282), + [sym_inline_formula] = STATE(282), + [sym_begin] = STATE(78), + [sym_environment] = STATE(282), + [sym_caption] = STATE(282), + [sym_citation] = STATE(282), + [sym_package_include] = STATE(282), + [sym_class_include] = STATE(282), + [sym_biblatex_include] = STATE(282), + [sym_graphics_include] = STATE(282), + [sym_import] = STATE(282), + [sym_label_definition] = STATE(282), + [sym_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_theorem_definition] = STATE(282), + [sym_generic_command] = STATE(282), + [aux_sym_chapter_repeat1] = STATE(282), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1489), + [aux_sym_chapter_token1] = ACTIONS(1489), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(2430), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(1489), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [275] = { + [sym__simple_content] = 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(475), + [sym_displayed_equation] = STATE(281), + [sym_inline_formula] = STATE(281), + [sym_begin] = STATE(46), + [sym_environment] = STATE(281), + [sym_caption] = STATE(281), + [sym_citation] = STATE(281), + [sym_package_include] = STATE(281), + [sym_class_include] = STATE(281), + [sym_biblatex_include] = STATE(281), + [sym_graphics_include] = STATE(281), + [sym_import] = STATE(281), + [sym_label_definition] = STATE(281), + [sym_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_theorem_definition] = STATE(281), + [sym_generic_command] = STATE(281), + [aux_sym_subsubsection_repeat1] = STATE(281), + [ts_builtin_sym_end] = ACTIONS(2432), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2434), + [aux_sym_chapter_token1] = ACTIONS(2434), + [aux_sym_section_token1] = ACTIONS(2434), + [aux_sym_subsection_token1] = ACTIONS(2434), + [aux_sym_subsubsection_token1] = ACTIONS(2434), + [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(2432), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(2432), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(2436), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [276] = { + [sym__simple_content] = 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(475), + [sym_displayed_equation] = STATE(276), + [sym_inline_formula] = STATE(276), + [sym_begin] = STATE(46), + [sym_environment] = STATE(276), + [sym_caption] = STATE(276), + [sym_citation] = STATE(276), + [sym_package_include] = STATE(276), + [sym_class_include] = STATE(276), + [sym_biblatex_include] = STATE(276), + [sym_graphics_include] = STATE(276), + [sym_import] = STATE(276), + [sym_label_definition] = STATE(276), + [sym_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_theorem_definition] = STATE(276), + [sym_generic_command] = STATE(276), + [aux_sym_subsubsection_repeat1] = STATE(276), + [ts_builtin_sym_end] = ACTIONS(2438), + [sym__generic_command_name] = ACTIONS(2440), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2443), + [aux_sym_chapter_token1] = ACTIONS(2443), + [aux_sym_section_token1] = ACTIONS(2443), + [aux_sym_subsection_token1] = ACTIONS(2443), + [aux_sym_subsubsection_token1] = ACTIONS(2443), + [aux_sym_paragraph_token1] = ACTIONS(2445), + [aux_sym_subparagraph_token1] = ACTIONS(2448), + [anon_sym_BSLASHitem] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_RBRACK] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(2438), + [anon_sym_COMMA] = ACTIONS(2460), + [anon_sym_EQ] = ACTIONS(2460), + [sym_word] = ACTIONS(2460), + [sym_param] = ACTIONS(2463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2466), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2466), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2472), + [anon_sym_BSLASHbegin] = ACTIONS(2475), + [anon_sym_BSLASHcaption] = ACTIONS(2478), + [aux_sym_citation_token1] = ACTIONS(2481), + [aux_sym_package_include_token1] = ACTIONS(2484), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2490), + [aux_sym_graphics_include_token1] = ACTIONS(2493), + [aux_sym_import_token1] = ACTIONS(2496), + [anon_sym_BSLASHlabel] = ACTIONS(2499), + [aux_sym_label_reference_token1] = ACTIONS(2502), + [aux_sym_label_reference_range_token1] = ACTIONS(2505), + [anon_sym_BSLASHnewlabel] = ACTIONS(2508), + [aux_sym_command_definition_token1] = ACTIONS(2511), + [aux_sym_math_operator_token1] = ACTIONS(2514), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2517), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2520), + [anon_sym_BSLASHnewacronym] = ACTIONS(2523), + [aux_sym_theorem_definition_token1] = ACTIONS(2526), + }, + [277] = { + [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(543), + [sym_displayed_equation] = STATE(270), + [sym_inline_formula] = STATE(270), + [sym_begin] = STATE(108), + [sym_environment] = STATE(270), + [sym_caption] = STATE(270), + [sym_citation] = STATE(270), + [sym_package_include] = STATE(270), + [sym_class_include] = STATE(270), + [sym_biblatex_include] = STATE(270), + [sym_graphics_include] = STATE(270), + [sym_import] = STATE(270), + [sym_label_definition] = STATE(270), + [sym_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_theorem_definition] = STATE(270), + [sym_generic_command] = STATE(270), + [aux_sym_chapter_repeat1] = STATE(270), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1489), + [aux_sym_chapter_token1] = ACTIONS(1489), + [aux_sym_section_token1] = ACTIONS(217), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(2529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1487), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [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(542), + [sym_displayed_equation] = STATE(278), + [sym_inline_formula] = STATE(278), + [sym_begin] = STATE(78), + [sym_environment] = STATE(278), + [sym_caption] = STATE(278), + [sym_citation] = STATE(278), + [sym_package_include] = STATE(278), + [sym_class_include] = STATE(278), + [sym_biblatex_include] = STATE(278), + [sym_graphics_include] = STATE(278), + [sym_import] = STATE(278), + [sym_label_definition] = STATE(278), + [sym_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_theorem_definition] = STATE(278), + [sym_generic_command] = STATE(278), + [aux_sym_chapter_repeat1] = STATE(278), + [sym__generic_command_name] = ACTIONS(2531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(777), + [aux_sym_chapter_token1] = ACTIONS(777), + [aux_sym_section_token1] = ACTIONS(2534), + [aux_sym_subsection_token1] = ACTIONS(2537), + [aux_sym_subsubsection_token1] = ACTIONS(2540), + [aux_sym_paragraph_token1] = ACTIONS(2543), + [aux_sym_subparagraph_token1] = ACTIONS(2546), + [anon_sym_BSLASHitem] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2552), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_EQ] = ACTIONS(2558), + [sym_word] = ACTIONS(2558), + [sym_param] = ACTIONS(2561), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2564), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2567), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2570), + [anon_sym_BSLASHbegin] = ACTIONS(818), + [anon_sym_BSLASHend] = ACTIONS(777), + [anon_sym_BSLASHcaption] = ACTIONS(2573), + [aux_sym_citation_token1] = ACTIONS(2576), + [aux_sym_package_include_token1] = ACTIONS(2579), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2582), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2585), + [aux_sym_graphics_include_token1] = ACTIONS(2588), + [aux_sym_import_token1] = ACTIONS(2591), + [anon_sym_BSLASHlabel] = ACTIONS(2594), + [aux_sym_label_reference_token1] = ACTIONS(2597), + [aux_sym_label_reference_range_token1] = ACTIONS(2600), + [anon_sym_BSLASHnewlabel] = ACTIONS(2603), + [aux_sym_command_definition_token1] = ACTIONS(2606), + [aux_sym_math_operator_token1] = ACTIONS(2609), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2612), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2615), + [anon_sym_BSLASHnewacronym] = ACTIONS(2618), + [aux_sym_theorem_definition_token1] = ACTIONS(2621), + }, + [279] = { + [sym__simple_content] = STATE(272), + [sym_section] = STATE(272), + [sym_subsection] = STATE(272), + [sym_subsubsection] = STATE(272), + [sym_paragraph] = STATE(272), + [sym_subparagraph] = STATE(272), + [sym_enum_item] = STATE(272), + [sym_brace_group] = STATE(272), + [sym_mixed_group] = STATE(272), + [sym_text] = STATE(272), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(272), + [sym_inline_formula] = STATE(272), + [sym_begin] = STATE(96), + [sym_environment] = STATE(272), + [sym_caption] = STATE(272), + [sym_citation] = STATE(272), + [sym_package_include] = STATE(272), + [sym_class_include] = STATE(272), + [sym_biblatex_include] = STATE(272), + [sym_graphics_include] = STATE(272), + [sym_import] = STATE(272), + [sym_label_definition] = STATE(272), + [sym_label_reference] = STATE(272), + [sym_label_reference_range] = STATE(272), + [sym_label_number] = STATE(272), + [sym_command_definition] = STATE(272), + [sym_math_operator] = STATE(272), + [sym_glossary_entry_definition] = STATE(272), + [sym_glossary_entry_reference] = STATE(272), + [sym_acronym_definition] = STATE(272), + [sym_theorem_definition] = STATE(272), + [sym_generic_command] = STATE(272), + [aux_sym_chapter_repeat1] = STATE(272), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(884), + [aux_sym_chapter_token1] = ACTIONS(884), + [aux_sym_section_token1] = ACTIONS(203), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(2624), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(882), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [280] = { + [sym__simple_content] = STATE(280), + [sym_section] = STATE(280), + [sym_subsection] = STATE(280), + [sym_subsubsection] = STATE(280), + [sym_paragraph] = STATE(280), + [sym_subparagraph] = STATE(280), + [sym_enum_item] = STATE(280), + [sym_brace_group] = STATE(280), + [sym_mixed_group] = STATE(280), + [sym_text] = STATE(280), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(280), + [sym_inline_formula] = STATE(280), + [sym_begin] = STATE(108), + [sym_environment] = STATE(280), + [sym_caption] = STATE(280), + [sym_citation] = STATE(280), + [sym_package_include] = STATE(280), + [sym_class_include] = STATE(280), + [sym_biblatex_include] = STATE(280), + [sym_graphics_include] = STATE(280), + [sym_import] = STATE(280), + [sym_label_definition] = STATE(280), + [sym_label_reference] = STATE(280), + [sym_label_reference_range] = STATE(280), + [sym_label_number] = STATE(280), + [sym_command_definition] = STATE(280), + [sym_math_operator] = STATE(280), + [sym_glossary_entry_definition] = STATE(280), + [sym_glossary_entry_reference] = STATE(280), + [sym_acronym_definition] = STATE(280), + [sym_theorem_definition] = STATE(280), + [sym_generic_command] = STATE(280), + [aux_sym_chapter_repeat1] = STATE(280), + [sym__generic_command_name] = ACTIONS(2626), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(777), + [aux_sym_chapter_token1] = ACTIONS(777), + [aux_sym_section_token1] = ACTIONS(2629), + [aux_sym_subsection_token1] = ACTIONS(2632), + [aux_sym_subsubsection_token1] = ACTIONS(2635), + [aux_sym_paragraph_token1] = ACTIONS(2638), + [aux_sym_subparagraph_token1] = ACTIONS(2641), + [anon_sym_BSLASHitem] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2653), + [anon_sym_EQ] = ACTIONS(2653), + [sym_word] = ACTIONS(2653), + [sym_param] = ACTIONS(2656), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2659), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2659), + [anon_sym_BSLASH_RBRACK] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(2662), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2665), + [anon_sym_BSLASHbegin] = ACTIONS(818), + [anon_sym_BSLASHcaption] = ACTIONS(2668), + [aux_sym_citation_token1] = ACTIONS(2671), + [aux_sym_package_include_token1] = ACTIONS(2674), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2677), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2680), + [aux_sym_graphics_include_token1] = ACTIONS(2683), + [aux_sym_import_token1] = ACTIONS(2686), + [anon_sym_BSLASHlabel] = ACTIONS(2689), + [aux_sym_label_reference_token1] = ACTIONS(2692), + [aux_sym_label_reference_range_token1] = ACTIONS(2695), + [anon_sym_BSLASHnewlabel] = ACTIONS(2698), + [aux_sym_command_definition_token1] = ACTIONS(2701), + [aux_sym_math_operator_token1] = ACTIONS(2704), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2707), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2710), + [anon_sym_BSLASHnewacronym] = ACTIONS(2713), + [aux_sym_theorem_definition_token1] = ACTIONS(2716), + }, + [281] = { + [sym__simple_content] = 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(475), + [sym_displayed_equation] = STATE(276), + [sym_inline_formula] = STATE(276), + [sym_begin] = STATE(46), + [sym_environment] = STATE(276), + [sym_caption] = STATE(276), + [sym_citation] = STATE(276), + [sym_package_include] = STATE(276), + [sym_class_include] = STATE(276), + [sym_biblatex_include] = STATE(276), + [sym_graphics_include] = STATE(276), + [sym_import] = STATE(276), + [sym_label_definition] = STATE(276), + [sym_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_theorem_definition] = STATE(276), + [sym_generic_command] = STATE(276), + [aux_sym_subsubsection_repeat1] = STATE(276), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2721), + [aux_sym_chapter_token1] = ACTIONS(2721), + [aux_sym_section_token1] = ACTIONS(2721), + [aux_sym_subsection_token1] = ACTIONS(2721), + [aux_sym_subsubsection_token1] = ACTIONS(2721), + [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(2719), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(2723), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [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(542), + [sym_displayed_equation] = STATE(278), + [sym_inline_formula] = STATE(278), + [sym_begin] = STATE(78), + [sym_environment] = STATE(278), + [sym_caption] = STATE(278), + [sym_citation] = STATE(278), + [sym_package_include] = STATE(278), + [sym_class_include] = STATE(278), + [sym_biblatex_include] = STATE(278), + [sym_graphics_include] = STATE(278), + [sym_import] = STATE(278), + [sym_label_definition] = STATE(278), + [sym_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_theorem_definition] = STATE(278), + [sym_generic_command] = STATE(278), + [aux_sym_chapter_repeat1] = STATE(278), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(884), + [aux_sym_chapter_token1] = ACTIONS(884), + [aux_sym_section_token1] = ACTIONS(343), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(2725), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(884), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [283] = { + [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(543), + [sym_displayed_equation] = STATE(292), + [sym_inline_formula] = STATE(292), + [sym_begin] = STATE(108), + [sym_environment] = STATE(292), + [sym_caption] = STATE(292), + [sym_citation] = STATE(292), + [sym_package_include] = STATE(292), + [sym_class_include] = STATE(292), + [sym_biblatex_include] = STATE(292), + [sym_graphics_include] = STATE(292), + [sym_import] = STATE(292), + [sym_label_definition] = STATE(292), + [sym_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_theorem_definition] = STATE(292), + [sym_generic_command] = STATE(292), + [aux_sym_section_repeat1] = STATE(292), + [sym__generic_command_name] = ACTIONS(223), + [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(1535), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(2727), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1533), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [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(550), + [sym_displayed_equation] = STATE(284), + [sym_inline_formula] = STATE(284), + [sym_begin] = STATE(96), + [sym_environment] = STATE(284), + [sym_caption] = STATE(284), + [sym_citation] = STATE(284), + [sym_package_include] = STATE(284), + [sym_class_include] = STATE(284), + [sym_biblatex_include] = STATE(284), + [sym_graphics_include] = STATE(284), + [sym_import] = STATE(284), + [sym_label_definition] = STATE(284), + [sym_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_theorem_definition] = STATE(284), + [sym_generic_command] = STATE(284), + [aux_sym_section_repeat1] = STATE(284), + [sym__generic_command_name] = ACTIONS(2729), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1550), + [aux_sym_chapter_token1] = ACTIONS(1550), + [aux_sym_section_token1] = ACTIONS(1550), + [aux_sym_subsection_token1] = ACTIONS(2732), + [aux_sym_subsubsection_token1] = ACTIONS(2735), + [aux_sym_paragraph_token1] = ACTIONS(2738), + [aux_sym_subparagraph_token1] = ACTIONS(2741), + [anon_sym_BSLASHitem] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_COMMA] = ACTIONS(2753), + [anon_sym_EQ] = ACTIONS(2753), + [sym_word] = ACTIONS(2753), + [sym_param] = ACTIONS(2756), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2759), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2759), + [anon_sym_DOLLAR] = ACTIONS(2762), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2765), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1545), + [anon_sym_BSLASHbegin] = ACTIONS(1588), + [anon_sym_BSLASHcaption] = ACTIONS(2768), + [aux_sym_citation_token1] = ACTIONS(2771), + [aux_sym_package_include_token1] = ACTIONS(2774), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2777), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2780), + [aux_sym_graphics_include_token1] = ACTIONS(2783), + [aux_sym_import_token1] = ACTIONS(2786), + [anon_sym_BSLASHlabel] = ACTIONS(2789), + [aux_sym_label_reference_token1] = ACTIONS(2792), + [aux_sym_label_reference_range_token1] = ACTIONS(2795), + [anon_sym_BSLASHnewlabel] = ACTIONS(2798), + [aux_sym_command_definition_token1] = ACTIONS(2801), + [aux_sym_math_operator_token1] = ACTIONS(2804), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2807), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2810), + [anon_sym_BSLASHnewacronym] = ACTIONS(2813), + [aux_sym_theorem_definition_token1] = ACTIONS(2816), + }, + [285] = { + [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(550), + [sym_displayed_equation] = STATE(284), + [sym_inline_formula] = STATE(284), + [sym_begin] = STATE(96), + [sym_environment] = STATE(284), + [sym_caption] = STATE(284), + [sym_citation] = STATE(284), + [sym_package_include] = STATE(284), + [sym_class_include] = STATE(284), + [sym_biblatex_include] = STATE(284), + [sym_graphics_include] = STATE(284), + [sym_import] = STATE(284), + [sym_label_definition] = STATE(284), + [sym_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_theorem_definition] = STATE(284), + [sym_generic_command] = STATE(284), + [aux_sym_section_repeat1] = STATE(284), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1541), + [aux_sym_chapter_token1] = ACTIONS(1541), + [aux_sym_section_token1] = ACTIONS(1541), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(2819), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1539), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [286] = { + [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(46), + [sym_environment] = STATE(291), + [sym_caption] = STATE(291), + [sym_citation] = STATE(291), + [sym_package_include] = STATE(291), + [sym_class_include] = STATE(291), + [sym_biblatex_include] = STATE(291), + [sym_graphics_include] = STATE(291), + [sym_import] = STATE(291), + [sym_label_definition] = STATE(291), + [sym_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_theorem_definition] = STATE(291), + [sym_generic_command] = STATE(291), + [aux_sym_paragraph_repeat1] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(2821), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2823), + [aux_sym_chapter_token1] = ACTIONS(2823), + [aux_sym_section_token1] = ACTIONS(2823), + [aux_sym_subsection_token1] = ACTIONS(2823), + [aux_sym_subsubsection_token1] = ACTIONS(2823), + [aux_sym_paragraph_token1] = ACTIONS(2823), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(2821), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(2825), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [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(542), + [sym_displayed_equation] = STATE(287), + [sym_inline_formula] = STATE(287), + [sym_begin] = STATE(78), + [sym_environment] = STATE(287), + [sym_caption] = STATE(287), + [sym_citation] = STATE(287), + [sym_package_include] = STATE(287), + [sym_class_include] = STATE(287), + [sym_biblatex_include] = STATE(287), + [sym_graphics_include] = STATE(287), + [sym_import] = STATE(287), + [sym_label_definition] = STATE(287), + [sym_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_theorem_definition] = STATE(287), + [sym_generic_command] = STATE(287), + [aux_sym_section_repeat1] = STATE(287), + [sym__generic_command_name] = ACTIONS(2827), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1550), + [aux_sym_chapter_token1] = ACTIONS(1550), + [aux_sym_section_token1] = ACTIONS(1550), + [aux_sym_subsection_token1] = ACTIONS(2830), + [aux_sym_subsubsection_token1] = ACTIONS(2833), + [aux_sym_paragraph_token1] = ACTIONS(2836), + [aux_sym_subparagraph_token1] = ACTIONS(2839), + [anon_sym_BSLASHitem] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2845), + [anon_sym_COMMA] = ACTIONS(2851), + [anon_sym_EQ] = ACTIONS(2851), + [sym_word] = ACTIONS(2851), + [sym_param] = ACTIONS(2854), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2857), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2863), + [anon_sym_BSLASHbegin] = ACTIONS(1588), + [anon_sym_BSLASHend] = ACTIONS(1550), + [anon_sym_BSLASHcaption] = ACTIONS(2866), + [aux_sym_citation_token1] = ACTIONS(2869), + [aux_sym_package_include_token1] = ACTIONS(2872), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2875), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2878), + [aux_sym_graphics_include_token1] = ACTIONS(2881), + [aux_sym_import_token1] = ACTIONS(2884), + [anon_sym_BSLASHlabel] = ACTIONS(2887), + [aux_sym_label_reference_token1] = ACTIONS(2890), + [aux_sym_label_reference_range_token1] = ACTIONS(2893), + [anon_sym_BSLASHnewlabel] = ACTIONS(2896), + [aux_sym_command_definition_token1] = ACTIONS(2899), + [aux_sym_math_operator_token1] = ACTIONS(2902), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2905), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2908), + [anon_sym_BSLASHnewacronym] = ACTIONS(2911), + [aux_sym_theorem_definition_token1] = ACTIONS(2914), + }, + [288] = { + [sym__simple_content] = STATE(286), + [sym_subparagraph] = STATE(286), + [sym_enum_item] = STATE(286), + [sym_brace_group] = STATE(286), + [sym_mixed_group] = STATE(286), + [sym_text] = STATE(286), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(286), + [sym_inline_formula] = STATE(286), + [sym_begin] = STATE(46), + [sym_environment] = STATE(286), + [sym_caption] = STATE(286), + [sym_citation] = STATE(286), + [sym_package_include] = STATE(286), + [sym_class_include] = STATE(286), + [sym_biblatex_include] = STATE(286), + [sym_graphics_include] = STATE(286), + [sym_import] = STATE(286), + [sym_label_definition] = STATE(286), + [sym_label_reference] = STATE(286), + [sym_label_reference_range] = STATE(286), + [sym_label_number] = STATE(286), + [sym_command_definition] = STATE(286), + [sym_math_operator] = STATE(286), + [sym_glossary_entry_definition] = STATE(286), + [sym_glossary_entry_reference] = STATE(286), + [sym_acronym_definition] = STATE(286), + [sym_theorem_definition] = STATE(286), + [sym_generic_command] = STATE(286), + [aux_sym_paragraph_repeat1] = STATE(286), + [ts_builtin_sym_end] = ACTIONS(2917), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2919), + [aux_sym_chapter_token1] = ACTIONS(2919), + [aux_sym_section_token1] = ACTIONS(2919), + [aux_sym_subsection_token1] = ACTIONS(2919), + [aux_sym_subsubsection_token1] = ACTIONS(2919), + [aux_sym_paragraph_token1] = ACTIONS(2919), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(2921), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [289] = { + [sym__simple_content] = STATE(294), + [sym_section] = 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(559), + [sym_displayed_equation] = STATE(294), + [sym_inline_formula] = STATE(294), + [sym_begin] = STATE(65), + [sym_environment] = STATE(294), + [sym_caption] = STATE(294), + [sym_citation] = STATE(294), + [sym_package_include] = STATE(294), + [sym_class_include] = STATE(294), + [sym_biblatex_include] = STATE(294), + [sym_graphics_include] = STATE(294), + [sym_import] = STATE(294), + [sym_label_definition] = STATE(294), + [sym_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_theorem_definition] = STATE(294), + [sym_generic_command] = STATE(294), + [aux_sym_chapter_repeat1] = STATE(294), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2925), + [aux_sym_subsection_token1] = ACTIONS(2927), + [aux_sym_subsubsection_token1] = ACTIONS(2929), + [aux_sym_paragraph_token1] = ACTIONS(2931), + [aux_sym_subparagraph_token1] = ACTIONS(2933), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(2943), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [290] = { + [sym__simple_content] = STATE(293), + [sym_subsection] = STATE(293), + [sym_subsubsection] = STATE(293), + [sym_paragraph] = STATE(293), + [sym_subparagraph] = STATE(293), + [sym_enum_item] = STATE(293), + [sym_brace_group] = STATE(293), + [sym_mixed_group] = STATE(293), + [sym_text] = STATE(293), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(293), + [sym_inline_formula] = STATE(293), + [sym_begin] = STATE(49), + [sym_environment] = STATE(293), + [sym_caption] = STATE(293), + [sym_citation] = STATE(293), + [sym_package_include] = STATE(293), + [sym_class_include] = STATE(293), + [sym_biblatex_include] = STATE(293), + [sym_graphics_include] = STATE(293), + [sym_import] = STATE(293), + [sym_label_definition] = STATE(293), + [sym_label_reference] = STATE(293), + [sym_label_reference_range] = STATE(293), + [sym_label_number] = STATE(293), + [sym_command_definition] = STATE(293), + [sym_math_operator] = STATE(293), + [sym_glossary_entry_definition] = STATE(293), + [sym_glossary_entry_reference] = STATE(293), + [sym_acronym_definition] = STATE(293), + [sym_theorem_definition] = STATE(293), + [sym_generic_command] = STATE(293), + [aux_sym_section_repeat1] = STATE(293), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1535), + [aux_sym_section_token1] = ACTIONS(1535), + [aux_sym_subsection_token1] = ACTIONS(1654), + [aux_sym_subsubsection_token1] = ACTIONS(1656), + [aux_sym_paragraph_token1] = ACTIONS(1658), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(2985), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [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(46), + [sym_environment] = STATE(291), + [sym_caption] = STATE(291), + [sym_citation] = STATE(291), + [sym_package_include] = STATE(291), + [sym_class_include] = STATE(291), + [sym_biblatex_include] = STATE(291), + [sym_graphics_include] = STATE(291), + [sym_import] = STATE(291), + [sym_label_definition] = STATE(291), + [sym_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_theorem_definition] = STATE(291), + [sym_generic_command] = STATE(291), + [aux_sym_paragraph_repeat1] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym__generic_command_name] = ACTIONS(2989), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2992), + [aux_sym_chapter_token1] = ACTIONS(2992), + [aux_sym_section_token1] = ACTIONS(2992), + [aux_sym_subsection_token1] = ACTIONS(2992), + [aux_sym_subsubsection_token1] = ACTIONS(2992), + [aux_sym_paragraph_token1] = ACTIONS(2992), + [aux_sym_subparagraph_token1] = ACTIONS(2994), + [anon_sym_BSLASHitem] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(3000), + [anon_sym_RPAREN] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(3006), + [anon_sym_EQ] = ACTIONS(3006), + [sym_word] = ACTIONS(3006), + [sym_param] = ACTIONS(3009), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3012), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3012), + [anon_sym_DOLLAR] = ACTIONS(3015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3018), + [anon_sym_BSLASHbegin] = ACTIONS(3021), + [anon_sym_BSLASHcaption] = ACTIONS(3024), + [aux_sym_citation_token1] = ACTIONS(3027), + [aux_sym_package_include_token1] = ACTIONS(3030), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3036), + [aux_sym_graphics_include_token1] = ACTIONS(3039), + [aux_sym_import_token1] = ACTIONS(3042), + [anon_sym_BSLASHlabel] = ACTIONS(3045), + [aux_sym_label_reference_token1] = ACTIONS(3048), + [aux_sym_label_reference_range_token1] = ACTIONS(3051), + [anon_sym_BSLASHnewlabel] = ACTIONS(3054), + [aux_sym_command_definition_token1] = ACTIONS(3057), + [aux_sym_math_operator_token1] = ACTIONS(3060), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3063), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(3066), + [anon_sym_BSLASHnewacronym] = ACTIONS(3069), + [aux_sym_theorem_definition_token1] = ACTIONS(3072), + }, + [292] = { + [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(543), + [sym_displayed_equation] = STATE(300), + [sym_inline_formula] = STATE(300), + [sym_begin] = STATE(108), + [sym_environment] = STATE(300), + [sym_caption] = STATE(300), + [sym_citation] = STATE(300), + [sym_package_include] = STATE(300), + [sym_class_include] = STATE(300), + [sym_biblatex_include] = STATE(300), + [sym_graphics_include] = STATE(300), + [sym_import] = STATE(300), + [sym_label_definition] = STATE(300), + [sym_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_theorem_definition] = STATE(300), + [sym_generic_command] = STATE(300), + [aux_sym_section_repeat1] = STATE(300), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1541), + [aux_sym_chapter_token1] = ACTIONS(1541), + [aux_sym_section_token1] = ACTIONS(1541), + [aux_sym_subsection_token1] = ACTIONS(219), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(3075), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1539), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [293] = { + [sym__simple_content] = STATE(297), + [sym_subsection] = STATE(297), + [sym_subsubsection] = STATE(297), + [sym_paragraph] = STATE(297), + [sym_subparagraph] = STATE(297), + [sym_enum_item] = STATE(297), + [sym_brace_group] = STATE(297), + [sym_mixed_group] = STATE(297), + [sym_text] = STATE(297), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(297), + [sym_inline_formula] = STATE(297), + [sym_begin] = STATE(49), + [sym_environment] = STATE(297), + [sym_caption] = STATE(297), + [sym_citation] = STATE(297), + [sym_package_include] = STATE(297), + [sym_class_include] = STATE(297), + [sym_biblatex_include] = STATE(297), + [sym_graphics_include] = STATE(297), + [sym_import] = STATE(297), + [sym_label_definition] = STATE(297), + [sym_label_reference] = STATE(297), + [sym_label_reference_range] = STATE(297), + [sym_label_number] = STATE(297), + [sym_command_definition] = STATE(297), + [sym_math_operator] = STATE(297), + [sym_glossary_entry_definition] = STATE(297), + [sym_glossary_entry_reference] = STATE(297), + [sym_acronym_definition] = STATE(297), + [sym_theorem_definition] = STATE(297), + [sym_generic_command] = STATE(297), + [aux_sym_section_repeat1] = STATE(297), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1541), + [aux_sym_section_token1] = ACTIONS(1541), + [aux_sym_subsection_token1] = ACTIONS(1654), + [aux_sym_subsubsection_token1] = ACTIONS(1656), + [aux_sym_paragraph_token1] = ACTIONS(1658), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(3077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [294] = { + [sym__simple_content] = STATE(294), + [sym_section] = 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(559), + [sym_displayed_equation] = STATE(294), + [sym_inline_formula] = STATE(294), + [sym_begin] = STATE(65), + [sym_environment] = STATE(294), + [sym_caption] = STATE(294), + [sym_citation] = STATE(294), + [sym_package_include] = STATE(294), + [sym_class_include] = STATE(294), + [sym_biblatex_include] = STATE(294), + [sym_graphics_include] = STATE(294), + [sym_import] = STATE(294), + [sym_label_definition] = STATE(294), + [sym_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_theorem_definition] = STATE(294), + [sym_generic_command] = STATE(294), + [aux_sym_chapter_repeat1] = STATE(294), + [sym__generic_command_name] = ACTIONS(3079), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(3082), + [aux_sym_subsection_token1] = ACTIONS(3085), + [aux_sym_subsubsection_token1] = ACTIONS(3088), + [aux_sym_paragraph_token1] = ACTIONS(3091), + [aux_sym_subparagraph_token1] = ACTIONS(3094), + [anon_sym_BSLASHitem] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_COMMA] = ACTIONS(3106), + [anon_sym_EQ] = ACTIONS(3106), + [sym_word] = ACTIONS(3106), + [sym_param] = ACTIONS(3109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3112), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3112), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3118), + [anon_sym_BSLASHbegin] = ACTIONS(818), + [anon_sym_BSLASHcaption] = ACTIONS(3121), + [aux_sym_citation_token1] = ACTIONS(3124), + [aux_sym_package_include_token1] = ACTIONS(3127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3130), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3133), + [aux_sym_graphics_include_token1] = ACTIONS(3136), + [aux_sym_import_token1] = ACTIONS(3139), + [anon_sym_BSLASHlabel] = ACTIONS(3142), + [aux_sym_label_reference_token1] = ACTIONS(3145), + [aux_sym_label_reference_range_token1] = ACTIONS(3148), + [anon_sym_BSLASHnewlabel] = ACTIONS(3151), + [aux_sym_command_definition_token1] = ACTIONS(3154), + [aux_sym_math_operator_token1] = ACTIONS(3157), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3160), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(3163), + [anon_sym_BSLASHnewacronym] = ACTIONS(3166), + [aux_sym_theorem_definition_token1] = ACTIONS(3169), + }, + [295] = { + [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(550), + [sym_displayed_equation] = STATE(285), + [sym_inline_formula] = STATE(285), + [sym_begin] = STATE(96), + [sym_environment] = STATE(285), + [sym_caption] = STATE(285), + [sym_citation] = STATE(285), + [sym_package_include] = STATE(285), + [sym_class_include] = STATE(285), + [sym_biblatex_include] = STATE(285), + [sym_graphics_include] = STATE(285), + [sym_import] = STATE(285), + [sym_label_definition] = STATE(285), + [sym_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_theorem_definition] = STATE(285), + [sym_generic_command] = STATE(285), + [aux_sym_section_repeat1] = STATE(285), + [sym__generic_command_name] = ACTIONS(281), + [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(1535), + [aux_sym_subsection_token1] = ACTIONS(205), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(3172), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1533), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [296] = { + [sym__simple_content] = STATE(299), + [sym_subsection] = STATE(299), + [sym_subsubsection] = STATE(299), + [sym_paragraph] = STATE(299), + [sym_subparagraph] = STATE(299), + [sym_enum_item] = STATE(299), + [sym_brace_group] = STATE(299), + [sym_mixed_group] = STATE(299), + [sym_text] = STATE(299), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(299), + [sym_inline_formula] = STATE(299), + [sym_begin] = STATE(78), + [sym_environment] = STATE(299), + [sym_caption] = STATE(299), + [sym_citation] = STATE(299), + [sym_package_include] = STATE(299), + [sym_class_include] = STATE(299), + [sym_biblatex_include] = STATE(299), + [sym_graphics_include] = STATE(299), + [sym_import] = STATE(299), + [sym_label_definition] = STATE(299), + [sym_label_reference] = STATE(299), + [sym_label_reference_range] = STATE(299), + [sym_label_number] = STATE(299), + [sym_command_definition] = STATE(299), + [sym_math_operator] = STATE(299), + [sym_glossary_entry_definition] = STATE(299), + [sym_glossary_entry_reference] = STATE(299), + [sym_acronym_definition] = STATE(299), + [sym_theorem_definition] = STATE(299), + [sym_generic_command] = STATE(299), + [aux_sym_section_repeat1] = STATE(299), + [sym__generic_command_name] = ACTIONS(337), + [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(1535), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(3174), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(1535), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [297] = { + [sym__simple_content] = STATE(297), + [sym_subsection] = STATE(297), + [sym_subsubsection] = STATE(297), + [sym_paragraph] = STATE(297), + [sym_subparagraph] = STATE(297), + [sym_enum_item] = STATE(297), + [sym_brace_group] = STATE(297), + [sym_mixed_group] = STATE(297), + [sym_text] = STATE(297), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(297), + [sym_inline_formula] = STATE(297), + [sym_begin] = STATE(49), + [sym_environment] = STATE(297), + [sym_caption] = STATE(297), + [sym_citation] = STATE(297), + [sym_package_include] = STATE(297), + [sym_class_include] = STATE(297), + [sym_biblatex_include] = STATE(297), + [sym_graphics_include] = STATE(297), + [sym_import] = STATE(297), + [sym_label_definition] = STATE(297), + [sym_label_reference] = STATE(297), + [sym_label_reference_range] = STATE(297), + [sym_label_number] = STATE(297), + [sym_command_definition] = STATE(297), + [sym_math_operator] = STATE(297), + [sym_glossary_entry_definition] = STATE(297), + [sym_glossary_entry_reference] = STATE(297), + [sym_acronym_definition] = STATE(297), + [sym_theorem_definition] = STATE(297), + [sym_generic_command] = STATE(297), + [aux_sym_section_repeat1] = STATE(297), + [sym__generic_command_name] = ACTIONS(3176), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1550), + [aux_sym_section_token1] = ACTIONS(1550), + [aux_sym_subsection_token1] = ACTIONS(3179), + [aux_sym_subsubsection_token1] = ACTIONS(3182), + [aux_sym_paragraph_token1] = ACTIONS(3185), + [aux_sym_subparagraph_token1] = ACTIONS(3188), + [anon_sym_BSLASHitem] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [sym_word] = ACTIONS(3200), + [sym_param] = ACTIONS(3203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3206), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3206), + [anon_sym_DOLLAR] = ACTIONS(3209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3212), + [anon_sym_BSLASHbegin] = ACTIONS(1588), + [anon_sym_BSLASHcaption] = ACTIONS(3215), + [aux_sym_citation_token1] = ACTIONS(3218), + [aux_sym_package_include_token1] = ACTIONS(3221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3224), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3227), + [aux_sym_graphics_include_token1] = ACTIONS(3230), + [aux_sym_import_token1] = ACTIONS(3233), + [anon_sym_BSLASHlabel] = ACTIONS(3236), + [aux_sym_label_reference_token1] = ACTIONS(3239), + [aux_sym_label_reference_range_token1] = ACTIONS(3242), + [anon_sym_BSLASHnewlabel] = ACTIONS(3245), + [aux_sym_command_definition_token1] = ACTIONS(3248), + [aux_sym_math_operator_token1] = ACTIONS(3251), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3254), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(3257), + [anon_sym_BSLASHnewacronym] = ACTIONS(3260), + [aux_sym_theorem_definition_token1] = ACTIONS(3263), + }, + [298] = { + [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(559), + [sym_displayed_equation] = STATE(289), + [sym_inline_formula] = STATE(289), + [sym_begin] = STATE(65), + [sym_environment] = STATE(289), + [sym_caption] = STATE(289), + [sym_citation] = STATE(289), + [sym_package_include] = STATE(289), + [sym_class_include] = STATE(289), + [sym_biblatex_include] = STATE(289), + [sym_graphics_include] = STATE(289), + [sym_import] = STATE(289), + [sym_label_definition] = STATE(289), + [sym_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_theorem_definition] = STATE(289), + [sym_generic_command] = STATE(289), + [aux_sym_chapter_repeat1] = STATE(289), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2925), + [aux_sym_subsection_token1] = ACTIONS(2927), + [aux_sym_subsubsection_token1] = ACTIONS(2929), + [aux_sym_paragraph_token1] = ACTIONS(2931), + [aux_sym_subparagraph_token1] = ACTIONS(2933), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(3266), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [299] = { + [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(542), + [sym_displayed_equation] = STATE(287), + [sym_inline_formula] = STATE(287), + [sym_begin] = STATE(78), + [sym_environment] = STATE(287), + [sym_caption] = STATE(287), + [sym_citation] = STATE(287), + [sym_package_include] = STATE(287), + [sym_class_include] = STATE(287), + [sym_biblatex_include] = STATE(287), + [sym_graphics_include] = STATE(287), + [sym_import] = STATE(287), + [sym_label_definition] = STATE(287), + [sym_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_theorem_definition] = STATE(287), + [sym_generic_command] = STATE(287), + [aux_sym_section_repeat1] = STATE(287), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1541), + [aux_sym_chapter_token1] = ACTIONS(1541), + [aux_sym_section_token1] = ACTIONS(1541), + [aux_sym_subsection_token1] = ACTIONS(345), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(3268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(1541), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [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(543), + [sym_displayed_equation] = STATE(300), + [sym_inline_formula] = STATE(300), + [sym_begin] = STATE(108), + [sym_environment] = STATE(300), + [sym_caption] = STATE(300), + [sym_citation] = STATE(300), + [sym_package_include] = STATE(300), + [sym_class_include] = STATE(300), + [sym_biblatex_include] = STATE(300), + [sym_graphics_include] = STATE(300), + [sym_import] = STATE(300), + [sym_label_definition] = STATE(300), + [sym_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_theorem_definition] = STATE(300), + [sym_generic_command] = STATE(300), + [aux_sym_section_repeat1] = STATE(300), + [sym__generic_command_name] = ACTIONS(3270), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1550), + [aux_sym_chapter_token1] = ACTIONS(1550), + [aux_sym_section_token1] = ACTIONS(1550), + [aux_sym_subsection_token1] = ACTIONS(3273), + [aux_sym_subsubsection_token1] = ACTIONS(3276), + [aux_sym_paragraph_token1] = ACTIONS(3279), + [aux_sym_subparagraph_token1] = ACTIONS(3282), + [anon_sym_BSLASHitem] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_EQ] = ACTIONS(3294), + [sym_word] = ACTIONS(3294), + [sym_param] = ACTIONS(3297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3300), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3300), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1545), + [anon_sym_DOLLAR] = ACTIONS(3303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3306), + [anon_sym_BSLASHbegin] = ACTIONS(1588), + [anon_sym_BSLASHcaption] = ACTIONS(3309), + [aux_sym_citation_token1] = ACTIONS(3312), + [aux_sym_package_include_token1] = ACTIONS(3315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3318), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3321), + [aux_sym_graphics_include_token1] = ACTIONS(3324), + [aux_sym_import_token1] = ACTIONS(3327), + [anon_sym_BSLASHlabel] = ACTIONS(3330), + [aux_sym_label_reference_token1] = 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_theorem_definition_token1] = ACTIONS(3357), + }, + [301] = { + [sym__simple_content] = STATE(301), + [sym_subsection] = 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(559), + [sym_displayed_equation] = STATE(301), + [sym_inline_formula] = STATE(301), + [sym_begin] = STATE(65), + [sym_environment] = STATE(301), + [sym_caption] = STATE(301), + [sym_citation] = STATE(301), + [sym_package_include] = STATE(301), + [sym_class_include] = STATE(301), + [sym_biblatex_include] = STATE(301), + [sym_graphics_include] = STATE(301), + [sym_import] = STATE(301), + [sym_label_definition] = STATE(301), + [sym_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_theorem_definition] = STATE(301), + [sym_generic_command] = STATE(301), + [aux_sym_section_repeat1] = STATE(301), + [sym__generic_command_name] = ACTIONS(3360), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(1550), + [aux_sym_subsection_token1] = ACTIONS(3363), + [aux_sym_subsubsection_token1] = ACTIONS(3366), + [aux_sym_paragraph_token1] = ACTIONS(3369), + [aux_sym_subparagraph_token1] = ACTIONS(3372), + [anon_sym_BSLASHitem] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(3384), + [anon_sym_EQ] = ACTIONS(3384), + [sym_word] = ACTIONS(3384), + [sym_param] = ACTIONS(3387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3390), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3390), + [anon_sym_DOLLAR] = ACTIONS(3393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3396), + [anon_sym_BSLASHbegin] = ACTIONS(1588), + [anon_sym_BSLASHcaption] = ACTIONS(3399), + [aux_sym_citation_token1] = ACTIONS(3402), + [aux_sym_package_include_token1] = ACTIONS(3405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3408), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3411), + [aux_sym_graphics_include_token1] = ACTIONS(3414), + [aux_sym_import_token1] = ACTIONS(3417), + [anon_sym_BSLASHlabel] = ACTIONS(3420), + [aux_sym_label_reference_token1] = ACTIONS(3423), + [aux_sym_label_reference_range_token1] = ACTIONS(3426), + [anon_sym_BSLASHnewlabel] = ACTIONS(3429), + [aux_sym_command_definition_token1] = ACTIONS(3432), + [aux_sym_math_operator_token1] = ACTIONS(3435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3438), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(3441), + [anon_sym_BSLASHnewacronym] = ACTIONS(3444), + [aux_sym_theorem_definition_token1] = ACTIONS(3447), + }, + [302] = { + [sym__simple_content] = STATE(301), + [sym_subsection] = 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(559), + [sym_displayed_equation] = STATE(301), + [sym_inline_formula] = STATE(301), + [sym_begin] = STATE(65), + [sym_environment] = STATE(301), + [sym_caption] = STATE(301), + [sym_citation] = STATE(301), + [sym_package_include] = STATE(301), + [sym_class_include] = STATE(301), + [sym_biblatex_include] = STATE(301), + [sym_graphics_include] = STATE(301), + [sym_import] = STATE(301), + [sym_label_definition] = STATE(301), + [sym_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_theorem_definition] = STATE(301), + [sym_generic_command] = STATE(301), + [aux_sym_section_repeat1] = STATE(301), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(1541), + [aux_sym_subsection_token1] = ACTIONS(2927), + [aux_sym_subsubsection_token1] = ACTIONS(2929), + [aux_sym_paragraph_token1] = ACTIONS(2931), + [aux_sym_subparagraph_token1] = ACTIONS(2933), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(3450), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [303] = { + [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(542), + [sym_displayed_equation] = STATE(310), + [sym_inline_formula] = STATE(310), + [sym_begin] = STATE(78), + [sym_environment] = STATE(310), + [sym_caption] = STATE(310), + [sym_citation] = STATE(310), + [sym_package_include] = STATE(310), + [sym_class_include] = STATE(310), + [sym_biblatex_include] = STATE(310), + [sym_graphics_include] = STATE(310), + [sym_import] = STATE(310), + [sym_label_definition] = STATE(310), + [sym_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_theorem_definition] = STATE(310), + [sym_generic_command] = STATE(310), + [aux_sym_subsection_repeat1] = STATE(310), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1810), + [aux_sym_chapter_token1] = ACTIONS(1810), + [aux_sym_section_token1] = ACTIONS(1810), + [aux_sym_subsection_token1] = ACTIONS(1810), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(3452), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(1810), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [304] = { + [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(547), + [sym_displayed_equation] = STATE(309), + [sym_inline_formula] = STATE(309), + [sym_begin] = STATE(49), + [sym_environment] = STATE(309), + [sym_caption] = STATE(309), + [sym_citation] = STATE(309), + [sym_package_include] = STATE(309), + [sym_class_include] = STATE(309), + [sym_biblatex_include] = STATE(309), + [sym_graphics_include] = STATE(309), + [sym_import] = STATE(309), + [sym_label_definition] = STATE(309), + [sym_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_theorem_definition] = STATE(309), + [sym_generic_command] = STATE(309), + [aux_sym_subsection_repeat1] = STATE(309), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1810), + [aux_sym_section_token1] = ACTIONS(1810), + [aux_sym_subsection_token1] = ACTIONS(1810), + [aux_sym_subsubsection_token1] = ACTIONS(1656), + [aux_sym_paragraph_token1] = ACTIONS(1658), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(3454), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [305] = { + [sym__simple_content] = STATE(305), + [sym_subsubsection] = STATE(305), + [sym_paragraph] = STATE(305), + [sym_subparagraph] = STATE(305), + [sym_enum_item] = STATE(305), + [sym_brace_group] = STATE(305), + [sym_mixed_group] = STATE(305), + [sym_text] = STATE(305), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(305), + [sym_inline_formula] = STATE(305), + [sym_begin] = STATE(96), + [sym_environment] = STATE(305), + [sym_caption] = STATE(305), + [sym_citation] = STATE(305), + [sym_package_include] = STATE(305), + [sym_class_include] = STATE(305), + [sym_biblatex_include] = STATE(305), + [sym_graphics_include] = STATE(305), + [sym_import] = STATE(305), + [sym_label_definition] = STATE(305), + [sym_label_reference] = STATE(305), + [sym_label_reference_range] = STATE(305), + [sym_label_number] = STATE(305), + [sym_command_definition] = STATE(305), + [sym_math_operator] = STATE(305), + [sym_glossary_entry_definition] = STATE(305), + [sym_glossary_entry_reference] = STATE(305), + [sym_acronym_definition] = STATE(305), + [sym_theorem_definition] = STATE(305), + [sym_generic_command] = STATE(305), + [aux_sym_subsection_repeat1] = STATE(305), + [sym__generic_command_name] = ACTIONS(3456), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1821), + [aux_sym_chapter_token1] = ACTIONS(1821), + [aux_sym_section_token1] = ACTIONS(1821), + [aux_sym_subsection_token1] = ACTIONS(1821), + [aux_sym_subsubsection_token1] = ACTIONS(3459), + [aux_sym_paragraph_token1] = ACTIONS(3462), + [aux_sym_subparagraph_token1] = ACTIONS(3465), + [anon_sym_BSLASHitem] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3471), + [anon_sym_LBRACE] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3471), + [anon_sym_COMMA] = ACTIONS(3477), + [anon_sym_EQ] = ACTIONS(3477), + [sym_word] = ACTIONS(3477), + [sym_param] = ACTIONS(3480), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3483), + [anon_sym_DOLLAR] = ACTIONS(3486), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3489), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1816), + [anon_sym_BSLASHbegin] = ACTIONS(1856), + [anon_sym_BSLASHcaption] = ACTIONS(3492), + [aux_sym_citation_token1] = ACTIONS(3495), + [aux_sym_package_include_token1] = ACTIONS(3498), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3504), + [aux_sym_graphics_include_token1] = ACTIONS(3507), + [aux_sym_import_token1] = ACTIONS(3510), + [anon_sym_BSLASHlabel] = ACTIONS(3513), + [aux_sym_label_reference_token1] = ACTIONS(3516), + [aux_sym_label_reference_range_token1] = ACTIONS(3519), + [anon_sym_BSLASHnewlabel] = ACTIONS(3522), + [aux_sym_command_definition_token1] = ACTIONS(3525), + [aux_sym_math_operator_token1] = ACTIONS(3528), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3531), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(3534), + [anon_sym_BSLASHnewacronym] = ACTIONS(3537), + [aux_sym_theorem_definition_token1] = ACTIONS(3540), + }, + [306] = { + [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(543), + [sym_displayed_equation] = STATE(307), + [sym_inline_formula] = STATE(307), + [sym_begin] = STATE(108), + [sym_environment] = STATE(307), + [sym_caption] = STATE(307), + [sym_citation] = STATE(307), + [sym_package_include] = STATE(307), + [sym_class_include] = STATE(307), + [sym_biblatex_include] = STATE(307), + [sym_graphics_include] = STATE(307), + [sym_import] = STATE(307), + [sym_label_definition] = STATE(307), + [sym_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_theorem_definition] = STATE(307), + [sym_generic_command] = STATE(307), + [aux_sym_subsection_repeat1] = STATE(307), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1644), + [aux_sym_chapter_token1] = ACTIONS(1644), + [aux_sym_section_token1] = ACTIONS(1644), + [aux_sym_subsection_token1] = ACTIONS(1644), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(3543), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [307] = { + [sym__simple_content] = 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(543), + [sym_displayed_equation] = STATE(315), + [sym_inline_formula] = STATE(315), + [sym_begin] = STATE(108), + [sym_environment] = STATE(315), + [sym_caption] = STATE(315), + [sym_citation] = STATE(315), + [sym_package_include] = STATE(315), + [sym_class_include] = STATE(315), + [sym_biblatex_include] = STATE(315), + [sym_graphics_include] = STATE(315), + [sym_import] = STATE(315), + [sym_label_definition] = STATE(315), + [sym_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_theorem_definition] = STATE(315), + [sym_generic_command] = STATE(315), + [aux_sym_subsection_repeat1] = STATE(315), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1810), + [aux_sym_chapter_token1] = ACTIONS(1810), + [aux_sym_section_token1] = ACTIONS(1810), + [aux_sym_subsection_token1] = ACTIONS(1810), + [aux_sym_subsubsection_token1] = ACTIONS(221), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(3545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [308] = { + [sym__simple_content] = STATE(316), + [sym_subsubsection] = STATE(316), + [sym_paragraph] = STATE(316), + [sym_subparagraph] = STATE(316), + [sym_enum_item] = STATE(316), + [sym_brace_group] = STATE(316), + [sym_mixed_group] = STATE(316), + [sym_text] = STATE(316), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(316), + [sym_inline_formula] = STATE(316), + [sym_begin] = STATE(96), + [sym_environment] = STATE(316), + [sym_caption] = STATE(316), + [sym_citation] = STATE(316), + [sym_package_include] = STATE(316), + [sym_class_include] = STATE(316), + [sym_biblatex_include] = STATE(316), + [sym_graphics_include] = STATE(316), + [sym_import] = STATE(316), + [sym_label_definition] = STATE(316), + [sym_label_reference] = STATE(316), + [sym_label_reference_range] = STATE(316), + [sym_label_number] = STATE(316), + [sym_command_definition] = STATE(316), + [sym_math_operator] = STATE(316), + [sym_glossary_entry_definition] = STATE(316), + [sym_glossary_entry_reference] = STATE(316), + [sym_acronym_definition] = STATE(316), + [sym_theorem_definition] = STATE(316), + [sym_generic_command] = STATE(316), + [aux_sym_subsection_repeat1] = STATE(316), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1644), + [aux_sym_chapter_token1] = ACTIONS(1644), + [aux_sym_section_token1] = ACTIONS(1644), + [aux_sym_subsection_token1] = ACTIONS(1644), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(3547), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1642), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [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(547), + [sym_displayed_equation] = STATE(309), + [sym_inline_formula] = STATE(309), + [sym_begin] = STATE(49), + [sym_environment] = STATE(309), + [sym_caption] = STATE(309), + [sym_citation] = STATE(309), + [sym_package_include] = STATE(309), + [sym_class_include] = STATE(309), + [sym_biblatex_include] = STATE(309), + [sym_graphics_include] = STATE(309), + [sym_import] = STATE(309), + [sym_label_definition] = STATE(309), + [sym_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_theorem_definition] = STATE(309), + [sym_generic_command] = STATE(309), + [aux_sym_subsection_repeat1] = STATE(309), + [sym__generic_command_name] = ACTIONS(3549), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1821), + [aux_sym_section_token1] = ACTIONS(1821), + [aux_sym_subsection_token1] = ACTIONS(1821), + [aux_sym_subsubsection_token1] = ACTIONS(3552), + [aux_sym_paragraph_token1] = ACTIONS(3555), + [aux_sym_subparagraph_token1] = ACTIONS(3558), + [anon_sym_BSLASHitem] = ACTIONS(3561), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_COMMA] = ACTIONS(3570), + [anon_sym_EQ] = ACTIONS(3570), + [sym_word] = ACTIONS(3570), + [sym_param] = ACTIONS(3573), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3576), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3576), + [anon_sym_DOLLAR] = ACTIONS(3579), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3582), + [anon_sym_BSLASHbegin] = ACTIONS(1856), + [anon_sym_BSLASHcaption] = ACTIONS(3585), + [aux_sym_citation_token1] = ACTIONS(3588), + [aux_sym_package_include_token1] = ACTIONS(3591), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3594), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3597), + [aux_sym_graphics_include_token1] = ACTIONS(3600), + [aux_sym_import_token1] = ACTIONS(3603), + [anon_sym_BSLASHlabel] = ACTIONS(3606), + [aux_sym_label_reference_token1] = ACTIONS(3609), + [aux_sym_label_reference_range_token1] = ACTIONS(3612), + [anon_sym_BSLASHnewlabel] = ACTIONS(3615), + [aux_sym_command_definition_token1] = ACTIONS(3618), + [aux_sym_math_operator_token1] = ACTIONS(3621), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3624), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(3627), + [anon_sym_BSLASHnewacronym] = ACTIONS(3630), + [aux_sym_theorem_definition_token1] = ACTIONS(3633), + }, + [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(542), + [sym_displayed_equation] = STATE(310), + [sym_inline_formula] = STATE(310), + [sym_begin] = STATE(78), + [sym_environment] = STATE(310), + [sym_caption] = STATE(310), + [sym_citation] = STATE(310), + [sym_package_include] = STATE(310), + [sym_class_include] = STATE(310), + [sym_biblatex_include] = STATE(310), + [sym_graphics_include] = STATE(310), + [sym_import] = STATE(310), + [sym_label_definition] = STATE(310), + [sym_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_theorem_definition] = STATE(310), + [sym_generic_command] = STATE(310), + [aux_sym_subsection_repeat1] = STATE(310), + [sym__generic_command_name] = ACTIONS(3636), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1821), + [aux_sym_chapter_token1] = ACTIONS(1821), + [aux_sym_section_token1] = ACTIONS(1821), + [aux_sym_subsection_token1] = ACTIONS(1821), + [aux_sym_subsubsection_token1] = ACTIONS(3639), + [aux_sym_paragraph_token1] = ACTIONS(3642), + [aux_sym_subparagraph_token1] = ACTIONS(3645), + [anon_sym_BSLASHitem] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3651), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3651), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_EQ] = ACTIONS(3657), + [sym_word] = ACTIONS(3657), + [sym_param] = ACTIONS(3660), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3663), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3666), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3669), + [anon_sym_BSLASHbegin] = ACTIONS(1856), + [anon_sym_BSLASHend] = ACTIONS(1821), + [anon_sym_BSLASHcaption] = ACTIONS(3672), + [aux_sym_citation_token1] = ACTIONS(3675), + [aux_sym_package_include_token1] = ACTIONS(3678), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3684), + [aux_sym_graphics_include_token1] = ACTIONS(3687), + [aux_sym_import_token1] = ACTIONS(3690), + [anon_sym_BSLASHlabel] = ACTIONS(3693), + [aux_sym_label_reference_token1] = ACTIONS(3696), + [aux_sym_label_reference_range_token1] = ACTIONS(3699), + [anon_sym_BSLASHnewlabel] = ACTIONS(3702), + [aux_sym_command_definition_token1] = ACTIONS(3705), + [aux_sym_math_operator_token1] = ACTIONS(3708), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3711), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(3714), + [anon_sym_BSLASHnewacronym] = ACTIONS(3717), + [aux_sym_theorem_definition_token1] = ACTIONS(3720), + }, + [311] = { + [sym__simple_content] = STATE(302), + [sym_subsection] = 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(559), + [sym_displayed_equation] = STATE(302), + [sym_inline_formula] = STATE(302), + [sym_begin] = STATE(65), + [sym_environment] = STATE(302), + [sym_caption] = STATE(302), + [sym_citation] = STATE(302), + [sym_package_include] = STATE(302), + [sym_class_include] = STATE(302), + [sym_biblatex_include] = STATE(302), + [sym_graphics_include] = STATE(302), + [sym_import] = STATE(302), + [sym_label_definition] = STATE(302), + [sym_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_theorem_definition] = STATE(302), + [sym_generic_command] = STATE(302), + [aux_sym_section_repeat1] = STATE(302), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(1535), + [aux_sym_subsection_token1] = ACTIONS(2927), + [aux_sym_subsubsection_token1] = ACTIONS(2929), + [aux_sym_paragraph_token1] = ACTIONS(2931), + [aux_sym_subparagraph_token1] = ACTIONS(2933), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(3723), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [312] = { + [sym__simple_content] = STATE(312), + [sym_enum_item] = STATE(312), + [sym_brace_group] = STATE(312), + [sym_mixed_group] = STATE(312), + [sym_text] = STATE(312), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(312), + [sym_inline_formula] = STATE(312), + [sym_begin] = STATE(46), + [sym_environment] = STATE(312), + [sym_caption] = STATE(312), + [sym_citation] = STATE(312), + [sym_package_include] = STATE(312), + [sym_class_include] = STATE(312), + [sym_biblatex_include] = STATE(312), + [sym_graphics_include] = STATE(312), + [sym_import] = STATE(312), + [sym_label_definition] = STATE(312), + [sym_label_reference] = STATE(312), + [sym_label_reference_range] = STATE(312), + [sym_label_number] = STATE(312), + [sym_command_definition] = STATE(312), + [sym_math_operator] = STATE(312), + [sym_glossary_entry_definition] = STATE(312), + [sym_glossary_entry_reference] = STATE(312), + [sym_acronym_definition] = STATE(312), + [sym_theorem_definition] = STATE(312), + [sym_generic_command] = STATE(312), + [aux_sym_subparagraph_repeat1] = STATE(312), + [ts_builtin_sym_end] = ACTIONS(3725), + [sym__generic_command_name] = ACTIONS(3727), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3730), + [aux_sym_chapter_token1] = ACTIONS(3730), + [aux_sym_section_token1] = ACTIONS(3730), + [aux_sym_subsection_token1] = ACTIONS(3730), + [aux_sym_subsubsection_token1] = ACTIONS(3730), + [aux_sym_paragraph_token1] = ACTIONS(3730), + [aux_sym_subparagraph_token1] = ACTIONS(3730), + [anon_sym_BSLASHitem] = ACTIONS(3732), + [anon_sym_LBRACK] = ACTIONS(3735), + [anon_sym_RBRACK] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(3735), + [anon_sym_RPAREN] = ACTIONS(3725), + [anon_sym_COMMA] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(3741), + [sym_word] = ACTIONS(3741), + [sym_param] = ACTIONS(3744), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3747), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3747), + [anon_sym_DOLLAR] = ACTIONS(3750), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3753), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHcaption] = ACTIONS(3759), + [aux_sym_citation_token1] = ACTIONS(3762), + [aux_sym_package_include_token1] = ACTIONS(3765), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3768), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3771), + [aux_sym_graphics_include_token1] = ACTIONS(3774), + [aux_sym_import_token1] = ACTIONS(3777), + [anon_sym_BSLASHlabel] = ACTIONS(3780), + [aux_sym_label_reference_token1] = ACTIONS(3783), + [aux_sym_label_reference_range_token1] = ACTIONS(3786), + [anon_sym_BSLASHnewlabel] = ACTIONS(3789), + [aux_sym_command_definition_token1] = ACTIONS(3792), + [aux_sym_math_operator_token1] = ACTIONS(3795), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3798), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(3801), + [anon_sym_BSLASHnewacronym] = ACTIONS(3804), + [aux_sym_theorem_definition_token1] = ACTIONS(3807), + }, + [313] = { + [sym__simple_content] = STATE(314), + [sym_enum_item] = STATE(314), + [sym_brace_group] = STATE(314), + [sym_mixed_group] = STATE(314), + [sym_text] = STATE(314), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(314), + [sym_inline_formula] = STATE(314), + [sym_begin] = STATE(46), + [sym_environment] = STATE(314), + [sym_caption] = STATE(314), + [sym_citation] = STATE(314), + [sym_package_include] = STATE(314), + [sym_class_include] = STATE(314), + [sym_biblatex_include] = STATE(314), + [sym_graphics_include] = STATE(314), + [sym_import] = STATE(314), + [sym_label_definition] = STATE(314), + [sym_label_reference] = STATE(314), + [sym_label_reference_range] = STATE(314), + [sym_label_number] = STATE(314), + [sym_command_definition] = STATE(314), + [sym_math_operator] = STATE(314), + [sym_glossary_entry_definition] = STATE(314), + [sym_glossary_entry_reference] = STATE(314), + [sym_acronym_definition] = STATE(314), + [sym_theorem_definition] = STATE(314), + [sym_generic_command] = STATE(314), + [aux_sym_subparagraph_repeat1] = STATE(314), + [ts_builtin_sym_end] = ACTIONS(3810), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3812), + [aux_sym_chapter_token1] = ACTIONS(3812), + [aux_sym_section_token1] = ACTIONS(3812), + [aux_sym_subsection_token1] = ACTIONS(3812), + [aux_sym_subsubsection_token1] = ACTIONS(3812), + [aux_sym_paragraph_token1] = ACTIONS(3812), + [aux_sym_subparagraph_token1] = ACTIONS(3812), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(3810), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(3814), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [314] = { + [sym__simple_content] = STATE(312), + [sym_enum_item] = STATE(312), + [sym_brace_group] = STATE(312), + [sym_mixed_group] = STATE(312), + [sym_text] = STATE(312), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(312), + [sym_inline_formula] = STATE(312), + [sym_begin] = STATE(46), + [sym_environment] = STATE(312), + [sym_caption] = STATE(312), + [sym_citation] = STATE(312), + [sym_package_include] = STATE(312), + [sym_class_include] = STATE(312), + [sym_biblatex_include] = STATE(312), + [sym_graphics_include] = STATE(312), + [sym_import] = STATE(312), + [sym_label_definition] = STATE(312), + [sym_label_reference] = STATE(312), + [sym_label_reference_range] = STATE(312), + [sym_label_number] = STATE(312), + [sym_command_definition] = STATE(312), + [sym_math_operator] = STATE(312), + [sym_glossary_entry_definition] = STATE(312), + [sym_glossary_entry_reference] = STATE(312), + [sym_acronym_definition] = STATE(312), + [sym_theorem_definition] = STATE(312), + [sym_generic_command] = STATE(312), + [aux_sym_subparagraph_repeat1] = STATE(312), + [ts_builtin_sym_end] = ACTIONS(3816), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3818), + [aux_sym_chapter_token1] = ACTIONS(3818), + [aux_sym_section_token1] = ACTIONS(3818), + [aux_sym_subsection_token1] = ACTIONS(3818), + [aux_sym_subsubsection_token1] = ACTIONS(3818), + [aux_sym_paragraph_token1] = ACTIONS(3818), + [aux_sym_subparagraph_token1] = ACTIONS(3818), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(3816), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(3820), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [315] = { + [sym__simple_content] = 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(543), + [sym_displayed_equation] = STATE(315), + [sym_inline_formula] = STATE(315), + [sym_begin] = STATE(108), + [sym_environment] = STATE(315), + [sym_caption] = STATE(315), + [sym_citation] = STATE(315), + [sym_package_include] = STATE(315), + [sym_class_include] = STATE(315), + [sym_biblatex_include] = STATE(315), + [sym_graphics_include] = STATE(315), + [sym_import] = STATE(315), + [sym_label_definition] = STATE(315), + [sym_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_theorem_definition] = STATE(315), + [sym_generic_command] = STATE(315), + [aux_sym_subsection_repeat1] = STATE(315), + [sym__generic_command_name] = ACTIONS(3822), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1821), + [aux_sym_chapter_token1] = ACTIONS(1821), + [aux_sym_section_token1] = ACTIONS(1821), + [aux_sym_subsection_token1] = ACTIONS(1821), + [aux_sym_subsubsection_token1] = ACTIONS(3825), + [aux_sym_paragraph_token1] = ACTIONS(3828), + [aux_sym_subparagraph_token1] = ACTIONS(3831), + [anon_sym_BSLASHitem] = ACTIONS(3834), + [anon_sym_LBRACK] = ACTIONS(3837), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LPAREN] = ACTIONS(3837), + [anon_sym_COMMA] = ACTIONS(3843), + [anon_sym_EQ] = ACTIONS(3843), + [sym_word] = ACTIONS(3843), + [sym_param] = ACTIONS(3846), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3849), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3849), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(3852), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3855), + [anon_sym_BSLASHbegin] = ACTIONS(1856), + [anon_sym_BSLASHcaption] = ACTIONS(3858), + [aux_sym_citation_token1] = ACTIONS(3861), + [aux_sym_package_include_token1] = ACTIONS(3864), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3867), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3870), + [aux_sym_graphics_include_token1] = ACTIONS(3873), + [aux_sym_import_token1] = ACTIONS(3876), + [anon_sym_BSLASHlabel] = ACTIONS(3879), + [aux_sym_label_reference_token1] = ACTIONS(3882), + [aux_sym_label_reference_range_token1] = ACTIONS(3885), + [anon_sym_BSLASHnewlabel] = ACTIONS(3888), + [aux_sym_command_definition_token1] = ACTIONS(3891), + [aux_sym_math_operator_token1] = ACTIONS(3894), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3897), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(3900), + [anon_sym_BSLASHnewacronym] = ACTIONS(3903), + [aux_sym_theorem_definition_token1] = ACTIONS(3906), + }, + [316] = { + [sym__simple_content] = STATE(305), + [sym_subsubsection] = STATE(305), + [sym_paragraph] = STATE(305), + [sym_subparagraph] = STATE(305), + [sym_enum_item] = STATE(305), + [sym_brace_group] = STATE(305), + [sym_mixed_group] = STATE(305), + [sym_text] = STATE(305), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(305), + [sym_inline_formula] = STATE(305), + [sym_begin] = STATE(96), + [sym_environment] = STATE(305), + [sym_caption] = STATE(305), + [sym_citation] = STATE(305), + [sym_package_include] = STATE(305), + [sym_class_include] = STATE(305), + [sym_biblatex_include] = STATE(305), + [sym_graphics_include] = STATE(305), + [sym_import] = STATE(305), + [sym_label_definition] = STATE(305), + [sym_label_reference] = STATE(305), + [sym_label_reference_range] = STATE(305), + [sym_label_number] = STATE(305), + [sym_command_definition] = STATE(305), + [sym_math_operator] = STATE(305), + [sym_glossary_entry_definition] = STATE(305), + [sym_glossary_entry_reference] = STATE(305), + [sym_acronym_definition] = STATE(305), + [sym_theorem_definition] = STATE(305), + [sym_generic_command] = STATE(305), + [aux_sym_subsection_repeat1] = STATE(305), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1810), + [aux_sym_chapter_token1] = ACTIONS(1810), + [aux_sym_section_token1] = ACTIONS(1810), + [aux_sym_subsection_token1] = ACTIONS(1810), + [aux_sym_subsubsection_token1] = ACTIONS(207), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(3909), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1808), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [317] = { + [sym__simple_content] = STATE(303), + [sym_subsubsection] = STATE(303), + [sym_paragraph] = STATE(303), + [sym_subparagraph] = STATE(303), + [sym_enum_item] = STATE(303), + [sym_brace_group] = STATE(303), + [sym_mixed_group] = STATE(303), + [sym_text] = STATE(303), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(303), + [sym_inline_formula] = STATE(303), + [sym_begin] = STATE(78), + [sym_environment] = STATE(303), + [sym_caption] = STATE(303), + [sym_citation] = STATE(303), + [sym_package_include] = STATE(303), + [sym_class_include] = STATE(303), + [sym_biblatex_include] = STATE(303), + [sym_graphics_include] = STATE(303), + [sym_import] = STATE(303), + [sym_label_definition] = STATE(303), + [sym_label_reference] = STATE(303), + [sym_label_reference_range] = STATE(303), + [sym_label_number] = STATE(303), + [sym_command_definition] = STATE(303), + [sym_math_operator] = STATE(303), + [sym_glossary_entry_definition] = STATE(303), + [sym_glossary_entry_reference] = STATE(303), + [sym_acronym_definition] = STATE(303), + [sym_theorem_definition] = STATE(303), + [sym_generic_command] = STATE(303), + [aux_sym_subsection_repeat1] = STATE(303), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1644), + [aux_sym_chapter_token1] = ACTIONS(1644), + [aux_sym_section_token1] = ACTIONS(1644), + [aux_sym_subsection_token1] = ACTIONS(1644), + [aux_sym_subsubsection_token1] = ACTIONS(347), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(3911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(1644), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [318] = { + [sym__simple_content] = 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(547), + [sym_displayed_equation] = STATE(304), + [sym_inline_formula] = STATE(304), + [sym_begin] = STATE(49), + [sym_environment] = STATE(304), + [sym_caption] = STATE(304), + [sym_citation] = STATE(304), + [sym_package_include] = STATE(304), + [sym_class_include] = STATE(304), + [sym_biblatex_include] = STATE(304), + [sym_graphics_include] = STATE(304), + [sym_import] = STATE(304), + [sym_label_definition] = STATE(304), + [sym_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_theorem_definition] = STATE(304), + [sym_generic_command] = STATE(304), + [aux_sym_subsection_repeat1] = STATE(304), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1644), + [aux_sym_section_token1] = ACTIONS(1644), + [aux_sym_subsection_token1] = ACTIONS(1644), + [aux_sym_subsubsection_token1] = ACTIONS(1656), + [aux_sym_paragraph_token1] = ACTIONS(1658), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(3913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [319] = { + [sym__simple_content] = STATE(331), + [sym_paragraph] = STATE(331), + [sym_subparagraph] = STATE(331), + [sym_enum_item] = STATE(331), + [sym_brace_group] = STATE(331), + [sym_mixed_group] = STATE(331), + [sym_text] = STATE(331), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(331), + [sym_inline_formula] = STATE(331), + [sym_begin] = STATE(49), + [sym_environment] = STATE(331), + [sym_caption] = STATE(331), + [sym_citation] = STATE(331), + [sym_package_include] = STATE(331), + [sym_class_include] = STATE(331), + [sym_biblatex_include] = STATE(331), + [sym_graphics_include] = STATE(331), + [sym_import] = STATE(331), + [sym_label_definition] = STATE(331), + [sym_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_theorem_definition] = STATE(331), + [sym_generic_command] = STATE(331), + [aux_sym_subsubsection_repeat1] = STATE(331), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2721), + [aux_sym_section_token1] = ACTIONS(2721), + [aux_sym_subsection_token1] = ACTIONS(2721), + [aux_sym_subsubsection_token1] = ACTIONS(2721), + [aux_sym_paragraph_token1] = ACTIONS(1658), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(3915), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [320] = { + [sym__simple_content] = STATE(320), + [sym_subsubsection] = STATE(320), + [sym_paragraph] = STATE(320), + [sym_subparagraph] = STATE(320), + [sym_enum_item] = STATE(320), + [sym_brace_group] = STATE(320), + [sym_mixed_group] = STATE(320), + [sym_text] = STATE(320), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(320), + [sym_inline_formula] = STATE(320), + [sym_begin] = STATE(65), + [sym_environment] = STATE(320), + [sym_caption] = STATE(320), + [sym_citation] = STATE(320), + [sym_package_include] = STATE(320), + [sym_class_include] = STATE(320), + [sym_biblatex_include] = STATE(320), + [sym_graphics_include] = STATE(320), + [sym_import] = STATE(320), + [sym_label_definition] = STATE(320), + [sym_label_reference] = STATE(320), + [sym_label_reference_range] = STATE(320), + [sym_label_number] = STATE(320), + [sym_command_definition] = STATE(320), + [sym_math_operator] = STATE(320), + [sym_glossary_entry_definition] = STATE(320), + [sym_glossary_entry_reference] = STATE(320), + [sym_acronym_definition] = STATE(320), + [sym_theorem_definition] = STATE(320), + [sym_generic_command] = STATE(320), + [aux_sym_subsection_repeat1] = STATE(320), + [sym__generic_command_name] = ACTIONS(3917), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(1821), + [aux_sym_subsection_token1] = ACTIONS(1821), + [aux_sym_subsubsection_token1] = ACTIONS(3920), + [aux_sym_paragraph_token1] = ACTIONS(3923), + [aux_sym_subparagraph_token1] = ACTIONS(3926), + [anon_sym_BSLASHitem] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3932), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(3935), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3932), + [anon_sym_COMMA] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3938), + [sym_word] = ACTIONS(3938), + [sym_param] = ACTIONS(3941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3944), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3944), + [anon_sym_DOLLAR] = ACTIONS(3947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3950), + [anon_sym_BSLASHbegin] = ACTIONS(1856), + [anon_sym_BSLASHcaption] = ACTIONS(3953), + [aux_sym_citation_token1] = ACTIONS(3956), + [aux_sym_package_include_token1] = ACTIONS(3959), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3962), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3965), + [aux_sym_graphics_include_token1] = ACTIONS(3968), + [aux_sym_import_token1] = ACTIONS(3971), + [anon_sym_BSLASHlabel] = ACTIONS(3974), + [aux_sym_label_reference_token1] = ACTIONS(3977), + [aux_sym_label_reference_range_token1] = ACTIONS(3980), + [anon_sym_BSLASHnewlabel] = ACTIONS(3983), + [aux_sym_command_definition_token1] = ACTIONS(3986), + [aux_sym_math_operator_token1] = ACTIONS(3989), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3992), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(3995), + [anon_sym_BSLASHnewacronym] = ACTIONS(3998), + [aux_sym_theorem_definition_token1] = ACTIONS(4001), + }, + [321] = { + [sym__simple_content] = STATE(319), + [sym_paragraph] = STATE(319), + [sym_subparagraph] = STATE(319), + [sym_enum_item] = STATE(319), + [sym_brace_group] = STATE(319), + [sym_mixed_group] = STATE(319), + [sym_text] = STATE(319), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(319), + [sym_inline_formula] = STATE(319), + [sym_begin] = STATE(49), + [sym_environment] = STATE(319), + [sym_caption] = STATE(319), + [sym_citation] = STATE(319), + [sym_package_include] = STATE(319), + [sym_class_include] = STATE(319), + [sym_biblatex_include] = STATE(319), + [sym_graphics_include] = STATE(319), + [sym_import] = STATE(319), + [sym_label_definition] = STATE(319), + [sym_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_theorem_definition] = STATE(319), + [sym_generic_command] = STATE(319), + [aux_sym_subsubsection_repeat1] = STATE(319), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2434), + [aux_sym_section_token1] = ACTIONS(2434), + [aux_sym_subsection_token1] = ACTIONS(2434), + [aux_sym_subsubsection_token1] = ACTIONS(2434), + [aux_sym_paragraph_token1] = ACTIONS(1658), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(4004), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [322] = { + [sym__simple_content] = STATE(323), + [sym_brace_group] = STATE(323), + [sym_mixed_group] = STATE(323), + [sym_text] = STATE(323), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(323), + [sym_inline_formula] = STATE(323), + [sym_begin] = STATE(46), + [sym_environment] = STATE(323), + [sym_caption] = STATE(323), + [sym_citation] = STATE(323), + [sym_package_include] = STATE(323), + [sym_class_include] = STATE(323), + [sym_biblatex_include] = STATE(323), + [sym_graphics_include] = STATE(323), + [sym_import] = STATE(323), + [sym_label_definition] = STATE(323), + [sym_label_reference] = STATE(323), + [sym_label_reference_range] = STATE(323), + [sym_label_number] = STATE(323), + [sym_command_definition] = STATE(323), + [sym_math_operator] = STATE(323), + [sym_glossary_entry_definition] = STATE(323), + [sym_glossary_entry_reference] = STATE(323), + [sym_acronym_definition] = STATE(323), + [sym_theorem_definition] = STATE(323), + [sym_generic_command] = STATE(323), + [aux_sym_enum_item_repeat1] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4006), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4008), + [aux_sym_chapter_token1] = ACTIONS(4008), + [aux_sym_section_token1] = ACTIONS(4008), + [aux_sym_subsection_token1] = ACTIONS(4008), + [aux_sym_subsubsection_token1] = ACTIONS(4008), + [aux_sym_paragraph_token1] = ACTIONS(4008), + [aux_sym_subparagraph_token1] = ACTIONS(4008), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(4010), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [323] = { + [sym__simple_content] = STATE(323), + [sym_brace_group] = STATE(323), + [sym_mixed_group] = STATE(323), + [sym_text] = STATE(323), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(323), + [sym_inline_formula] = STATE(323), + [sym_begin] = STATE(46), + [sym_environment] = STATE(323), + [sym_caption] = STATE(323), + [sym_citation] = STATE(323), + [sym_package_include] = STATE(323), + [sym_class_include] = STATE(323), + [sym_biblatex_include] = STATE(323), + [sym_graphics_include] = STATE(323), + [sym_import] = STATE(323), + [sym_label_definition] = STATE(323), + [sym_label_reference] = STATE(323), + [sym_label_reference_range] = STATE(323), + [sym_label_number] = STATE(323), + [sym_command_definition] = STATE(323), + [sym_math_operator] = STATE(323), + [sym_glossary_entry_definition] = STATE(323), + [sym_glossary_entry_reference] = STATE(323), + [sym_acronym_definition] = STATE(323), + [sym_theorem_definition] = STATE(323), + [sym_generic_command] = STATE(323), + [aux_sym_enum_item_repeat1] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4012), + [sym__generic_command_name] = ACTIONS(4014), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4017), + [aux_sym_chapter_token1] = ACTIONS(4017), + [aux_sym_section_token1] = ACTIONS(4017), + [aux_sym_subsection_token1] = ACTIONS(4017), + [aux_sym_subsubsection_token1] = ACTIONS(4017), + [aux_sym_paragraph_token1] = ACTIONS(4017), + [aux_sym_subparagraph_token1] = ACTIONS(4017), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4019), + [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(4019), + [anon_sym_RPAREN] = ACTIONS(4012), + [anon_sym_COMMA] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(4025), + [sym_word] = ACTIONS(4025), + [sym_param] = ACTIONS(4028), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4037), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(4043), + [aux_sym_citation_token1] = ACTIONS(4046), + [aux_sym_package_include_token1] = ACTIONS(4049), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4052), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4055), + [aux_sym_graphics_include_token1] = ACTIONS(4058), + [aux_sym_import_token1] = ACTIONS(4061), + [anon_sym_BSLASHlabel] = ACTIONS(4064), + [aux_sym_label_reference_token1] = ACTIONS(4067), + [aux_sym_label_reference_range_token1] = ACTIONS(4070), + [anon_sym_BSLASHnewlabel] = ACTIONS(4073), + [aux_sym_command_definition_token1] = ACTIONS(4076), + [aux_sym_math_operator_token1] = ACTIONS(4079), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4082), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4085), + [anon_sym_BSLASHnewacronym] = ACTIONS(4088), + [aux_sym_theorem_definition_token1] = ACTIONS(4091), + }, + [324] = { + [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(543), + [sym_displayed_equation] = STATE(341), + [sym_inline_formula] = STATE(341), + [sym_begin] = STATE(108), + [sym_environment] = STATE(341), + [sym_caption] = STATE(341), + [sym_citation] = STATE(341), + [sym_package_include] = STATE(341), + [sym_class_include] = STATE(341), + [sym_biblatex_include] = STATE(341), + [sym_graphics_include] = STATE(341), + [sym_import] = STATE(341), + [sym_label_definition] = STATE(341), + [sym_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_theorem_definition] = STATE(341), + [sym_generic_command] = STATE(341), + [aux_sym_subsubsection_repeat1] = STATE(341), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2434), + [aux_sym_chapter_token1] = ACTIONS(2434), + [aux_sym_section_token1] = ACTIONS(2434), + [aux_sym_subsection_token1] = ACTIONS(2434), + [aux_sym_subsubsection_token1] = ACTIONS(2434), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(4094), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2432), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [325] = { + [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(542), + [sym_displayed_equation] = STATE(340), + [sym_inline_formula] = STATE(340), + [sym_begin] = STATE(78), + [sym_environment] = STATE(340), + [sym_caption] = STATE(340), + [sym_citation] = STATE(340), + [sym_package_include] = STATE(340), + [sym_class_include] = STATE(340), + [sym_biblatex_include] = STATE(340), + [sym_graphics_include] = STATE(340), + [sym_import] = STATE(340), + [sym_label_definition] = STATE(340), + [sym_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_theorem_definition] = STATE(340), + [sym_generic_command] = STATE(340), + [aux_sym_subsubsection_repeat1] = STATE(340), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2434), + [aux_sym_chapter_token1] = ACTIONS(2434), + [aux_sym_section_token1] = ACTIONS(2434), + [aux_sym_subsection_token1] = ACTIONS(2434), + [aux_sym_subsubsection_token1] = ACTIONS(2434), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(4096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(2434), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [326] = { + [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(543), + [sym_displayed_equation] = STATE(326), + [sym_inline_formula] = STATE(326), + [sym_begin] = STATE(108), + [sym_environment] = STATE(326), + [sym_caption] = STATE(326), + [sym_citation] = STATE(326), + [sym_package_include] = STATE(326), + [sym_class_include] = STATE(326), + [sym_biblatex_include] = STATE(326), + [sym_graphics_include] = STATE(326), + [sym_import] = STATE(326), + [sym_label_definition] = STATE(326), + [sym_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_theorem_definition] = STATE(326), + [sym_generic_command] = STATE(326), + [aux_sym_subsubsection_repeat1] = STATE(326), + [sym__generic_command_name] = ACTIONS(4098), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2443), + [aux_sym_chapter_token1] = ACTIONS(2443), + [aux_sym_section_token1] = ACTIONS(2443), + [aux_sym_subsection_token1] = ACTIONS(2443), + [aux_sym_subsubsection_token1] = ACTIONS(2443), + [aux_sym_paragraph_token1] = ACTIONS(4101), + [aux_sym_subparagraph_token1] = ACTIONS(4104), + [anon_sym_BSLASHitem] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_EQ] = ACTIONS(4116), + [sym_word] = ACTIONS(4116), + [sym_param] = ACTIONS(4119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4122), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2438), + [anon_sym_DOLLAR] = ACTIONS(4125), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4128), + [anon_sym_BSLASHbegin] = ACTIONS(2475), + [anon_sym_BSLASHcaption] = ACTIONS(4131), + [aux_sym_citation_token1] = ACTIONS(4134), + [aux_sym_package_include_token1] = ACTIONS(4137), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4143), + [aux_sym_graphics_include_token1] = ACTIONS(4146), + [aux_sym_import_token1] = ACTIONS(4149), + [anon_sym_BSLASHlabel] = ACTIONS(4152), + [aux_sym_label_reference_token1] = ACTIONS(4155), + [aux_sym_label_reference_range_token1] = ACTIONS(4158), + [anon_sym_BSLASHnewlabel] = ACTIONS(4161), + [aux_sym_command_definition_token1] = ACTIONS(4164), + [aux_sym_math_operator_token1] = ACTIONS(4167), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4170), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4173), + [anon_sym_BSLASHnewacronym] = ACTIONS(4176), + [aux_sym_theorem_definition_token1] = ACTIONS(4179), + }, + [327] = { + [sym__simple_content] = 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(550), + [sym_displayed_equation] = STATE(338), + [sym_inline_formula] = STATE(338), + [sym_begin] = STATE(96), + [sym_environment] = STATE(338), + [sym_caption] = STATE(338), + [sym_citation] = STATE(338), + [sym_package_include] = STATE(338), + [sym_class_include] = STATE(338), + [sym_biblatex_include] = STATE(338), + [sym_graphics_include] = STATE(338), + [sym_import] = STATE(338), + [sym_label_definition] = STATE(338), + [sym_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_theorem_definition] = STATE(338), + [sym_generic_command] = STATE(338), + [aux_sym_subsubsection_repeat1] = STATE(338), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2721), + [aux_sym_chapter_token1] = ACTIONS(2721), + [aux_sym_section_token1] = ACTIONS(2721), + [aux_sym_subsection_token1] = ACTIONS(2721), + [aux_sym_subsubsection_token1] = ACTIONS(2721), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(4182), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2719), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [328] = { + [sym__simple_content] = STATE(330), + [sym_brace_group] = STATE(330), + [sym_mixed_group] = STATE(330), + [sym_text] = STATE(330), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(330), + [sym_inline_formula] = STATE(330), + [sym_begin] = STATE(46), + [sym_environment] = STATE(330), + [sym_caption] = STATE(330), + [sym_citation] = STATE(330), + [sym_package_include] = STATE(330), + [sym_class_include] = STATE(330), + [sym_biblatex_include] = STATE(330), + [sym_graphics_include] = STATE(330), + [sym_import] = STATE(330), + [sym_label_definition] = STATE(330), + [sym_label_reference] = STATE(330), + [sym_label_reference_range] = STATE(330), + [sym_label_number] = STATE(330), + [sym_command_definition] = STATE(330), + [sym_math_operator] = STATE(330), + [sym_glossary_entry_definition] = STATE(330), + [sym_glossary_entry_reference] = STATE(330), + [sym_acronym_definition] = STATE(330), + [sym_theorem_definition] = STATE(330), + [sym_generic_command] = STATE(330), + [aux_sym_enum_item_repeat1] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(4184), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4186), + [aux_sym_chapter_token1] = ACTIONS(4186), + [aux_sym_section_token1] = ACTIONS(4186), + [aux_sym_subsection_token1] = ACTIONS(4186), + [aux_sym_subsubsection_token1] = ACTIONS(4186), + [aux_sym_paragraph_token1] = ACTIONS(4186), + [aux_sym_subparagraph_token1] = ACTIONS(4186), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(4184), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(4188), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [329] = { + [sym__simple_content] = STATE(335), + [sym_subsection] = STATE(335), + [sym_subsubsection] = STATE(335), + [sym_paragraph] = STATE(335), + [sym_subparagraph] = STATE(335), + [sym_enum_item] = STATE(335), + [sym_brace_group] = STATE(335), + [sym_mixed_group] = STATE(335), + [sym_text] = STATE(335), + [sym__text_fragment] = STATE(698), + [sym_displayed_equation] = STATE(335), + [sym_inline_formula] = STATE(335), + [sym_begin] = STATE(84), + [sym_environment] = STATE(335), + [sym_caption] = STATE(335), + [sym_citation] = STATE(335), + [sym_package_include] = STATE(335), + [sym_class_include] = STATE(335), + [sym_biblatex_include] = STATE(335), + [sym_graphics_include] = STATE(335), + [sym_import] = STATE(335), + [sym_label_definition] = STATE(335), + [sym_label_reference] = STATE(335), + [sym_label_reference_range] = STATE(335), + [sym_label_number] = STATE(335), + [sym_command_definition] = STATE(335), + [sym_math_operator] = STATE(335), + [sym_glossary_entry_definition] = STATE(335), + [sym_glossary_entry_reference] = STATE(335), + [sym_acronym_definition] = STATE(335), + [sym_theorem_definition] = STATE(335), + [sym_generic_command] = STATE(335), + [aux_sym_section_repeat1] = STATE(335), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4192), + [aux_sym_subsubsection_token1] = ACTIONS(4194), + [aux_sym_paragraph_token1] = ACTIONS(4196), + [aux_sym_subparagraph_token1] = ACTIONS(4198), + [anon_sym_BSLASHitem] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(4208), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [330] = { + [sym__simple_content] = STATE(323), + [sym_brace_group] = STATE(323), + [sym_mixed_group] = STATE(323), + [sym_text] = STATE(323), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(323), + [sym_inline_formula] = STATE(323), + [sym_begin] = STATE(46), + [sym_environment] = STATE(323), + [sym_caption] = STATE(323), + [sym_citation] = STATE(323), + [sym_package_include] = STATE(323), + [sym_class_include] = STATE(323), + [sym_biblatex_include] = STATE(323), + [sym_graphics_include] = STATE(323), + [sym_import] = STATE(323), + [sym_label_definition] = STATE(323), + [sym_label_reference] = STATE(323), + [sym_label_reference_range] = STATE(323), + [sym_label_number] = STATE(323), + [sym_command_definition] = STATE(323), + [sym_math_operator] = STATE(323), + [sym_glossary_entry_definition] = STATE(323), + [sym_glossary_entry_reference] = STATE(323), + [sym_acronym_definition] = STATE(323), + [sym_theorem_definition] = STATE(323), + [sym_generic_command] = STATE(323), + [aux_sym_enum_item_repeat1] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4250), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4252), + [aux_sym_chapter_token1] = ACTIONS(4252), + [aux_sym_section_token1] = ACTIONS(4252), + [aux_sym_subsection_token1] = ACTIONS(4252), + [aux_sym_subsubsection_token1] = ACTIONS(4252), + [aux_sym_paragraph_token1] = ACTIONS(4252), + [aux_sym_subparagraph_token1] = ACTIONS(4252), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(4010), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [331] = { + [sym__simple_content] = STATE(331), + [sym_paragraph] = STATE(331), + [sym_subparagraph] = STATE(331), + [sym_enum_item] = STATE(331), + [sym_brace_group] = STATE(331), + [sym_mixed_group] = STATE(331), + [sym_text] = STATE(331), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(331), + [sym_inline_formula] = STATE(331), + [sym_begin] = STATE(49), + [sym_environment] = STATE(331), + [sym_caption] = STATE(331), + [sym_citation] = STATE(331), + [sym_package_include] = STATE(331), + [sym_class_include] = STATE(331), + [sym_biblatex_include] = STATE(331), + [sym_graphics_include] = STATE(331), + [sym_import] = STATE(331), + [sym_label_definition] = STATE(331), + [sym_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_theorem_definition] = STATE(331), + [sym_generic_command] = STATE(331), + [aux_sym_subsubsection_repeat1] = STATE(331), + [sym__generic_command_name] = ACTIONS(4254), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2443), + [aux_sym_section_token1] = ACTIONS(2443), + [aux_sym_subsection_token1] = ACTIONS(2443), + [aux_sym_subsubsection_token1] = ACTIONS(2443), + [aux_sym_paragraph_token1] = ACTIONS(4257), + [aux_sym_subparagraph_token1] = ACTIONS(4260), + [anon_sym_BSLASHitem] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_RBRACK] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(4266), + [anon_sym_COMMA] = ACTIONS(4272), + [anon_sym_EQ] = ACTIONS(4272), + [sym_word] = ACTIONS(4272), + [sym_param] = ACTIONS(4275), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4278), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4278), + [anon_sym_DOLLAR] = ACTIONS(4281), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4284), + [anon_sym_BSLASHbegin] = ACTIONS(2475), + [anon_sym_BSLASHcaption] = ACTIONS(4287), + [aux_sym_citation_token1] = ACTIONS(4290), + [aux_sym_package_include_token1] = ACTIONS(4293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4296), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4299), + [aux_sym_graphics_include_token1] = ACTIONS(4302), + [aux_sym_import_token1] = ACTIONS(4305), + [anon_sym_BSLASHlabel] = ACTIONS(4308), + [aux_sym_label_reference_token1] = ACTIONS(4311), + [aux_sym_label_reference_range_token1] = ACTIONS(4314), + [anon_sym_BSLASHnewlabel] = ACTIONS(4317), + [aux_sym_command_definition_token1] = ACTIONS(4320), + [aux_sym_math_operator_token1] = ACTIONS(4323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4326), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4329), + [anon_sym_BSLASHnewacronym] = ACTIONS(4332), + [aux_sym_theorem_definition_token1] = ACTIONS(4335), + }, + [332] = { + [sym__simple_content] = STATE(327), + [sym_paragraph] = STATE(327), + [sym_subparagraph] = STATE(327), + [sym_enum_item] = STATE(327), + [sym_brace_group] = STATE(327), + [sym_mixed_group] = STATE(327), + [sym_text] = STATE(327), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(327), + [sym_inline_formula] = STATE(327), + [sym_begin] = STATE(96), + [sym_environment] = STATE(327), + [sym_caption] = STATE(327), + [sym_citation] = STATE(327), + [sym_package_include] = STATE(327), + [sym_class_include] = STATE(327), + [sym_biblatex_include] = STATE(327), + [sym_graphics_include] = STATE(327), + [sym_import] = STATE(327), + [sym_label_definition] = STATE(327), + [sym_label_reference] = STATE(327), + [sym_label_reference_range] = STATE(327), + [sym_label_number] = STATE(327), + [sym_command_definition] = STATE(327), + [sym_math_operator] = STATE(327), + [sym_glossary_entry_definition] = STATE(327), + [sym_glossary_entry_reference] = STATE(327), + [sym_acronym_definition] = STATE(327), + [sym_theorem_definition] = STATE(327), + [sym_generic_command] = STATE(327), + [aux_sym_subsubsection_repeat1] = STATE(327), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2434), + [aux_sym_chapter_token1] = ACTIONS(2434), + [aux_sym_section_token1] = ACTIONS(2434), + [aux_sym_subsection_token1] = ACTIONS(2434), + [aux_sym_subsubsection_token1] = ACTIONS(2434), + [aux_sym_paragraph_token1] = ACTIONS(209), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(4338), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2432), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [333] = { + [sym__simple_content] = STATE(322), + [sym_brace_group] = STATE(322), + [sym_mixed_group] = STATE(322), + [sym_text] = STATE(322), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(322), + [sym_inline_formula] = STATE(322), + [sym_begin] = STATE(46), + [sym_environment] = STATE(322), + [sym_caption] = STATE(322), + [sym_citation] = STATE(322), + [sym_package_include] = STATE(322), + [sym_class_include] = STATE(322), + [sym_biblatex_include] = STATE(322), + [sym_graphics_include] = STATE(322), + [sym_import] = STATE(322), + [sym_label_definition] = STATE(322), + [sym_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_theorem_definition] = STATE(322), + [sym_generic_command] = STATE(322), + [aux_sym_enum_item_repeat1] = STATE(322), + [ts_builtin_sym_end] = ACTIONS(4340), + [sym__generic_command_name] = ACTIONS(7), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4342), + [aux_sym_chapter_token1] = ACTIONS(4342), + [aux_sym_section_token1] = ACTIONS(4342), + [aux_sym_subsection_token1] = ACTIONS(4342), + [aux_sym_subsubsection_token1] = ACTIONS(4342), + [aux_sym_paragraph_token1] = ACTIONS(4342), + [aux_sym_subparagraph_token1] = ACTIONS(4342), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_RBRACK] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(4340), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(4346), + [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), + [anon_sym_BSLASHaddbibresource] = ACTIONS(49), + [aux_sym_graphics_include_token1] = ACTIONS(51), + [aux_sym_import_token1] = ACTIONS(53), + [anon_sym_BSLASHlabel] = ACTIONS(55), + [aux_sym_label_reference_token1] = ACTIONS(57), + [aux_sym_label_reference_range_token1] = ACTIONS(59), + [anon_sym_BSLASHnewlabel] = ACTIONS(61), + [aux_sym_command_definition_token1] = ACTIONS(63), + [aux_sym_math_operator_token1] = ACTIONS(65), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(67), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(69), + [anon_sym_BSLASHnewacronym] = ACTIONS(71), + [aux_sym_theorem_definition_token1] = ACTIONS(73), + }, + [334] = { + [sym__simple_content] = STATE(329), + [sym_subsection] = STATE(329), + [sym_subsubsection] = STATE(329), + [sym_paragraph] = STATE(329), + [sym_subparagraph] = STATE(329), + [sym_enum_item] = STATE(329), + [sym_brace_group] = STATE(329), + [sym_mixed_group] = STATE(329), + [sym_text] = STATE(329), + [sym__text_fragment] = STATE(698), + [sym_displayed_equation] = STATE(329), + [sym_inline_formula] = STATE(329), + [sym_begin] = STATE(84), + [sym_environment] = STATE(329), + [sym_caption] = STATE(329), + [sym_citation] = STATE(329), + [sym_package_include] = STATE(329), + [sym_class_include] = STATE(329), + [sym_biblatex_include] = STATE(329), + [sym_graphics_include] = STATE(329), + [sym_import] = STATE(329), + [sym_label_definition] = STATE(329), + [sym_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_theorem_definition] = STATE(329), + [sym_generic_command] = STATE(329), + [aux_sym_section_repeat1] = STATE(329), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4192), + [aux_sym_subsubsection_token1] = ACTIONS(4194), + [aux_sym_paragraph_token1] = ACTIONS(4196), + [aux_sym_subparagraph_token1] = ACTIONS(4198), + [anon_sym_BSLASHitem] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(4348), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [335] = { + [sym__simple_content] = STATE(335), + [sym_subsection] = STATE(335), + [sym_subsubsection] = STATE(335), + [sym_paragraph] = STATE(335), + [sym_subparagraph] = STATE(335), + [sym_enum_item] = STATE(335), + [sym_brace_group] = STATE(335), + [sym_mixed_group] = STATE(335), + [sym_text] = STATE(335), + [sym__text_fragment] = STATE(698), + [sym_displayed_equation] = STATE(335), + [sym_inline_formula] = STATE(335), + [sym_begin] = STATE(84), + [sym_environment] = STATE(335), + [sym_caption] = STATE(335), + [sym_citation] = STATE(335), + [sym_package_include] = STATE(335), + [sym_class_include] = STATE(335), + [sym_biblatex_include] = STATE(335), + [sym_graphics_include] = STATE(335), + [sym_import] = STATE(335), + [sym_label_definition] = STATE(335), + [sym_label_reference] = STATE(335), + [sym_label_reference_range] = STATE(335), + [sym_label_number] = STATE(335), + [sym_command_definition] = STATE(335), + [sym_math_operator] = STATE(335), + [sym_glossary_entry_definition] = STATE(335), + [sym_glossary_entry_reference] = STATE(335), + [sym_acronym_definition] = STATE(335), + [sym_theorem_definition] = STATE(335), + [sym_generic_command] = STATE(335), + [aux_sym_section_repeat1] = STATE(335), + [sym__generic_command_name] = ACTIONS(4350), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4353), + [aux_sym_subsubsection_token1] = ACTIONS(4356), + [aux_sym_paragraph_token1] = ACTIONS(4359), + [aux_sym_subparagraph_token1] = ACTIONS(4362), + [anon_sym_BSLASHitem] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(4371), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_COMMA] = ACTIONS(4374), + [anon_sym_EQ] = ACTIONS(4374), + [sym_word] = ACTIONS(4374), + [sym_param] = ACTIONS(4377), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4380), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4380), + [anon_sym_DOLLAR] = ACTIONS(4383), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4386), + [anon_sym_BSLASHbegin] = ACTIONS(1588), + [anon_sym_BSLASHcaption] = ACTIONS(4389), + [aux_sym_citation_token1] = ACTIONS(4392), + [aux_sym_package_include_token1] = ACTIONS(4395), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4398), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4401), + [aux_sym_graphics_include_token1] = ACTIONS(4404), + [aux_sym_import_token1] = ACTIONS(4407), + [anon_sym_BSLASHlabel] = ACTIONS(4410), + [aux_sym_label_reference_token1] = ACTIONS(4413), + [aux_sym_label_reference_range_token1] = ACTIONS(4416), + [anon_sym_BSLASHnewlabel] = ACTIONS(4419), + [aux_sym_command_definition_token1] = ACTIONS(4422), + [aux_sym_math_operator_token1] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4428), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4431), + [anon_sym_BSLASHnewacronym] = ACTIONS(4434), + [aux_sym_theorem_definition_token1] = ACTIONS(4437), + }, + [336] = { + [sym__simple_content] = STATE(339), + [sym_subsubsection] = STATE(339), + [sym_paragraph] = STATE(339), + [sym_subparagraph] = STATE(339), + [sym_enum_item] = STATE(339), + [sym_brace_group] = STATE(339), + [sym_mixed_group] = STATE(339), + [sym_text] = STATE(339), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(339), + [sym_inline_formula] = STATE(339), + [sym_begin] = STATE(65), + [sym_environment] = STATE(339), + [sym_caption] = STATE(339), + [sym_citation] = STATE(339), + [sym_package_include] = STATE(339), + [sym_class_include] = STATE(339), + [sym_biblatex_include] = STATE(339), + [sym_graphics_include] = STATE(339), + [sym_import] = STATE(339), + [sym_label_definition] = STATE(339), + [sym_label_reference] = STATE(339), + [sym_label_reference_range] = STATE(339), + [sym_label_number] = STATE(339), + [sym_command_definition] = STATE(339), + [sym_math_operator] = STATE(339), + [sym_glossary_entry_definition] = STATE(339), + [sym_glossary_entry_reference] = STATE(339), + [sym_acronym_definition] = STATE(339), + [sym_theorem_definition] = STATE(339), + [sym_generic_command] = STATE(339), + [aux_sym_subsection_repeat1] = STATE(339), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(1644), + [aux_sym_subsection_token1] = ACTIONS(1644), + [aux_sym_subsubsection_token1] = ACTIONS(2929), + [aux_sym_paragraph_token1] = ACTIONS(2931), + [aux_sym_subparagraph_token1] = ACTIONS(2933), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(4440), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [337] = { + [sym__simple_content] = 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(542), + [sym_displayed_equation] = STATE(337), + [sym_inline_formula] = STATE(337), + [sym_begin] = STATE(78), + [sym_environment] = STATE(337), + [sym_caption] = STATE(337), + [sym_citation] = STATE(337), + [sym_package_include] = STATE(337), + [sym_class_include] = STATE(337), + [sym_biblatex_include] = STATE(337), + [sym_graphics_include] = STATE(337), + [sym_import] = STATE(337), + [sym_label_definition] = STATE(337), + [sym_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_theorem_definition] = STATE(337), + [sym_generic_command] = STATE(337), + [aux_sym_subsubsection_repeat1] = STATE(337), + [sym__generic_command_name] = ACTIONS(4442), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2443), + [aux_sym_chapter_token1] = ACTIONS(2443), + [aux_sym_section_token1] = ACTIONS(2443), + [aux_sym_subsection_token1] = ACTIONS(2443), + [aux_sym_subsubsection_token1] = ACTIONS(2443), + [aux_sym_paragraph_token1] = ACTIONS(4445), + [aux_sym_subparagraph_token1] = ACTIONS(4448), + [anon_sym_BSLASHitem] = ACTIONS(4451), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_COMMA] = ACTIONS(4460), + [anon_sym_EQ] = ACTIONS(4460), + [sym_word] = ACTIONS(4460), + [sym_param] = ACTIONS(4463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4466), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4466), + [anon_sym_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4472), + [anon_sym_BSLASHbegin] = ACTIONS(2475), + [anon_sym_BSLASHend] = ACTIONS(2443), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [aux_sym_citation_token1] = ACTIONS(4478), + [aux_sym_package_include_token1] = ACTIONS(4481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4484), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [aux_sym_graphics_include_token1] = ACTIONS(4490), + [aux_sym_import_token1] = ACTIONS(4493), + [anon_sym_BSLASHlabel] = ACTIONS(4496), + [aux_sym_label_reference_token1] = ACTIONS(4499), + [aux_sym_label_reference_range_token1] = ACTIONS(4502), + [anon_sym_BSLASHnewlabel] = ACTIONS(4505), + [aux_sym_command_definition_token1] = ACTIONS(4508), + [aux_sym_math_operator_token1] = ACTIONS(4511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4514), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4517), + [anon_sym_BSLASHnewacronym] = ACTIONS(4520), + [aux_sym_theorem_definition_token1] = ACTIONS(4523), + }, + [338] = { + [sym__simple_content] = 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(550), + [sym_displayed_equation] = STATE(338), + [sym_inline_formula] = STATE(338), + [sym_begin] = STATE(96), + [sym_environment] = STATE(338), + [sym_caption] = STATE(338), + [sym_citation] = STATE(338), + [sym_package_include] = STATE(338), + [sym_class_include] = STATE(338), + [sym_biblatex_include] = STATE(338), + [sym_graphics_include] = STATE(338), + [sym_import] = STATE(338), + [sym_label_definition] = STATE(338), + [sym_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_theorem_definition] = STATE(338), + [sym_generic_command] = STATE(338), + [aux_sym_subsubsection_repeat1] = STATE(338), + [sym__generic_command_name] = ACTIONS(4526), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2443), + [aux_sym_chapter_token1] = ACTIONS(2443), + [aux_sym_section_token1] = ACTIONS(2443), + [aux_sym_subsection_token1] = ACTIONS(2443), + [aux_sym_subsubsection_token1] = ACTIONS(2443), + [aux_sym_paragraph_token1] = ACTIONS(4529), + [aux_sym_subparagraph_token1] = ACTIONS(4532), + [anon_sym_BSLASHitem] = ACTIONS(4535), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4538), + [anon_sym_COMMA] = ACTIONS(4544), + [anon_sym_EQ] = ACTIONS(4544), + [sym_word] = ACTIONS(4544), + [sym_param] = ACTIONS(4547), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4550), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4550), + [anon_sym_DOLLAR] = ACTIONS(4553), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4556), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2438), + [anon_sym_BSLASHbegin] = ACTIONS(2475), + [anon_sym_BSLASHcaption] = ACTIONS(4559), + [aux_sym_citation_token1] = ACTIONS(4562), + [aux_sym_package_include_token1] = ACTIONS(4565), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4568), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4571), + [aux_sym_graphics_include_token1] = ACTIONS(4574), + [aux_sym_import_token1] = ACTIONS(4577), + [anon_sym_BSLASHlabel] = ACTIONS(4580), + [aux_sym_label_reference_token1] = ACTIONS(4583), + [aux_sym_label_reference_range_token1] = ACTIONS(4586), + [anon_sym_BSLASHnewlabel] = ACTIONS(4589), + [aux_sym_command_definition_token1] = ACTIONS(4592), + [aux_sym_math_operator_token1] = ACTIONS(4595), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4598), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4601), + [anon_sym_BSLASHnewacronym] = ACTIONS(4604), + [aux_sym_theorem_definition_token1] = ACTIONS(4607), + }, + [339] = { + [sym__simple_content] = STATE(320), + [sym_subsubsection] = STATE(320), + [sym_paragraph] = STATE(320), + [sym_subparagraph] = STATE(320), + [sym_enum_item] = STATE(320), + [sym_brace_group] = STATE(320), + [sym_mixed_group] = STATE(320), + [sym_text] = STATE(320), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(320), + [sym_inline_formula] = STATE(320), + [sym_begin] = STATE(65), + [sym_environment] = STATE(320), + [sym_caption] = STATE(320), + [sym_citation] = STATE(320), + [sym_package_include] = STATE(320), + [sym_class_include] = STATE(320), + [sym_biblatex_include] = STATE(320), + [sym_graphics_include] = STATE(320), + [sym_import] = STATE(320), + [sym_label_definition] = STATE(320), + [sym_label_reference] = STATE(320), + [sym_label_reference_range] = STATE(320), + [sym_label_number] = STATE(320), + [sym_command_definition] = STATE(320), + [sym_math_operator] = STATE(320), + [sym_glossary_entry_definition] = STATE(320), + [sym_glossary_entry_reference] = STATE(320), + [sym_acronym_definition] = STATE(320), + [sym_theorem_definition] = STATE(320), + [sym_generic_command] = STATE(320), + [aux_sym_subsection_repeat1] = STATE(320), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(1810), + [aux_sym_subsection_token1] = ACTIONS(1810), + [aux_sym_subsubsection_token1] = ACTIONS(2929), + [aux_sym_paragraph_token1] = ACTIONS(2931), + [aux_sym_subparagraph_token1] = ACTIONS(2933), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(4610), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [340] = { + [sym__simple_content] = 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(542), + [sym_displayed_equation] = STATE(337), + [sym_inline_formula] = STATE(337), + [sym_begin] = STATE(78), + [sym_environment] = STATE(337), + [sym_caption] = STATE(337), + [sym_citation] = STATE(337), + [sym_package_include] = STATE(337), + [sym_class_include] = STATE(337), + [sym_biblatex_include] = STATE(337), + [sym_graphics_include] = STATE(337), + [sym_import] = STATE(337), + [sym_label_definition] = STATE(337), + [sym_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_theorem_definition] = STATE(337), + [sym_generic_command] = STATE(337), + [aux_sym_subsubsection_repeat1] = STATE(337), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2721), + [aux_sym_chapter_token1] = ACTIONS(2721), + [aux_sym_section_token1] = ACTIONS(2721), + [aux_sym_subsection_token1] = ACTIONS(2721), + [aux_sym_subsubsection_token1] = ACTIONS(2721), + [aux_sym_paragraph_token1] = ACTIONS(349), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(4612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(2721), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [341] = { + [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(543), + [sym_displayed_equation] = STATE(326), + [sym_inline_formula] = STATE(326), + [sym_begin] = STATE(108), + [sym_environment] = STATE(326), + [sym_caption] = STATE(326), + [sym_citation] = STATE(326), + [sym_package_include] = STATE(326), + [sym_class_include] = STATE(326), + [sym_biblatex_include] = STATE(326), + [sym_graphics_include] = STATE(326), + [sym_import] = STATE(326), + [sym_label_definition] = STATE(326), + [sym_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_theorem_definition] = STATE(326), + [sym_generic_command] = STATE(326), + [aux_sym_subsubsection_repeat1] = STATE(326), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2721), + [aux_sym_chapter_token1] = ACTIONS(2721), + [aux_sym_section_token1] = ACTIONS(2721), + [aux_sym_subsection_token1] = ACTIONS(2721), + [aux_sym_subsubsection_token1] = ACTIONS(2721), + [aux_sym_paragraph_token1] = ACTIONS(225), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(4614), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [342] = { + [sym__simple_content] = STATE(356), + [sym_subsubsection] = STATE(356), + [sym_paragraph] = 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(698), + [sym_displayed_equation] = STATE(356), + [sym_inline_formula] = STATE(356), + [sym_begin] = STATE(84), + [sym_environment] = STATE(356), + [sym_caption] = STATE(356), + [sym_citation] = STATE(356), + [sym_package_include] = STATE(356), + [sym_class_include] = STATE(356), + [sym_biblatex_include] = STATE(356), + [sym_graphics_include] = STATE(356), + [sym_import] = STATE(356), + [sym_label_definition] = STATE(356), + [sym_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_theorem_definition] = STATE(356), + [sym_generic_command] = STATE(356), + [aux_sym_subsection_repeat1] = STATE(356), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(1644), + [aux_sym_subsubsection_token1] = ACTIONS(4194), + [aux_sym_paragraph_token1] = ACTIONS(4196), + [aux_sym_subparagraph_token1] = ACTIONS(4198), + [anon_sym_BSLASHitem] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(4616), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [343] = { + [sym__simple_content] = STATE(359), + [sym_subparagraph] = STATE(359), + [sym_enum_item] = STATE(359), + [sym_brace_group] = STATE(359), + [sym_mixed_group] = STATE(359), + [sym_text] = STATE(359), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(359), + [sym_inline_formula] = STATE(359), + [sym_begin] = STATE(108), + [sym_environment] = STATE(359), + [sym_caption] = STATE(359), + [sym_citation] = STATE(359), + [sym_package_include] = STATE(359), + [sym_class_include] = STATE(359), + [sym_biblatex_include] = STATE(359), + [sym_graphics_include] = STATE(359), + [sym_import] = STATE(359), + [sym_label_definition] = STATE(359), + [sym_label_reference] = STATE(359), + [sym_label_reference_range] = STATE(359), + [sym_label_number] = STATE(359), + [sym_command_definition] = STATE(359), + [sym_math_operator] = STATE(359), + [sym_glossary_entry_definition] = STATE(359), + [sym_glossary_entry_reference] = STATE(359), + [sym_acronym_definition] = STATE(359), + [sym_theorem_definition] = STATE(359), + [sym_generic_command] = STATE(359), + [aux_sym_paragraph_repeat1] = STATE(359), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2823), + [aux_sym_chapter_token1] = ACTIONS(2823), + [aux_sym_section_token1] = ACTIONS(2823), + [aux_sym_subsection_token1] = ACTIONS(2823), + [aux_sym_subsubsection_token1] = ACTIONS(2823), + [aux_sym_paragraph_token1] = ACTIONS(2823), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(4618), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2821), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [344] = { + [sym__simple_content] = STATE(348), + [sym_subparagraph] = STATE(348), + [sym_enum_item] = STATE(348), + [sym_brace_group] = STATE(348), + [sym_mixed_group] = STATE(348), + [sym_text] = STATE(348), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(348), + [sym_inline_formula] = STATE(348), + [sym_begin] = STATE(96), + [sym_environment] = STATE(348), + [sym_caption] = STATE(348), + [sym_citation] = STATE(348), + [sym_package_include] = STATE(348), + [sym_class_include] = STATE(348), + [sym_biblatex_include] = STATE(348), + [sym_graphics_include] = STATE(348), + [sym_import] = STATE(348), + [sym_label_definition] = STATE(348), + [sym_label_reference] = STATE(348), + [sym_label_reference_range] = STATE(348), + [sym_label_number] = STATE(348), + [sym_command_definition] = STATE(348), + [sym_math_operator] = STATE(348), + [sym_glossary_entry_definition] = STATE(348), + [sym_glossary_entry_reference] = STATE(348), + [sym_acronym_definition] = STATE(348), + [sym_theorem_definition] = STATE(348), + [sym_generic_command] = STATE(348), + [aux_sym_paragraph_repeat1] = STATE(348), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2823), + [aux_sym_chapter_token1] = ACTIONS(2823), + [aux_sym_section_token1] = ACTIONS(2823), + [aux_sym_subsection_token1] = ACTIONS(2823), + [aux_sym_subsubsection_token1] = ACTIONS(2823), + [aux_sym_paragraph_token1] = ACTIONS(2823), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(4620), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2821), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [345] = { + [sym__simple_content] = 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(547), + [sym_displayed_equation] = STATE(353), + [sym_inline_formula] = STATE(353), + [sym_begin] = STATE(49), + [sym_environment] = STATE(353), + [sym_caption] = STATE(353), + [sym_citation] = STATE(353), + [sym_package_include] = STATE(353), + [sym_class_include] = STATE(353), + [sym_biblatex_include] = STATE(353), + [sym_graphics_include] = STATE(353), + [sym_import] = STATE(353), + [sym_label_definition] = STATE(353), + [sym_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_theorem_definition] = STATE(353), + [sym_generic_command] = STATE(353), + [aux_sym_paragraph_repeat1] = STATE(353), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2823), + [aux_sym_section_token1] = ACTIONS(2823), + [aux_sym_subsection_token1] = ACTIONS(2823), + [aux_sym_subsubsection_token1] = ACTIONS(2823), + [aux_sym_paragraph_token1] = ACTIONS(2823), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(4622), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [346] = { + [sym__simple_content] = STATE(349), + [sym_subparagraph] = STATE(349), + [sym_enum_item] = STATE(349), + [sym_brace_group] = STATE(349), + [sym_mixed_group] = STATE(349), + [sym_text] = STATE(349), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(349), + [sym_inline_formula] = STATE(349), + [sym_begin] = STATE(78), + [sym_environment] = STATE(349), + [sym_caption] = STATE(349), + [sym_citation] = STATE(349), + [sym_package_include] = STATE(349), + [sym_class_include] = STATE(349), + [sym_biblatex_include] = STATE(349), + [sym_graphics_include] = STATE(349), + [sym_import] = STATE(349), + [sym_label_definition] = STATE(349), + [sym_label_reference] = STATE(349), + [sym_label_reference_range] = STATE(349), + [sym_label_number] = STATE(349), + [sym_command_definition] = STATE(349), + [sym_math_operator] = STATE(349), + [sym_glossary_entry_definition] = STATE(349), + [sym_glossary_entry_reference] = STATE(349), + [sym_acronym_definition] = STATE(349), + [sym_theorem_definition] = STATE(349), + [sym_generic_command] = STATE(349), + [aux_sym_paragraph_repeat1] = STATE(349), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2823), + [aux_sym_chapter_token1] = ACTIONS(2823), + [aux_sym_section_token1] = ACTIONS(2823), + [aux_sym_subsection_token1] = ACTIONS(2823), + [aux_sym_subsubsection_token1] = ACTIONS(2823), + [aux_sym_paragraph_token1] = ACTIONS(2823), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(4624), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(2823), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [347] = { + [sym__simple_content] = STATE(354), + [sym_paragraph] = STATE(354), + [sym_subparagraph] = STATE(354), + [sym_enum_item] = STATE(354), + [sym_brace_group] = STATE(354), + [sym_mixed_group] = STATE(354), + [sym_text] = STATE(354), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(354), + [sym_inline_formula] = STATE(354), + [sym_begin] = STATE(65), + [sym_environment] = STATE(354), + [sym_caption] = STATE(354), + [sym_citation] = STATE(354), + [sym_package_include] = STATE(354), + [sym_class_include] = STATE(354), + [sym_biblatex_include] = STATE(354), + [sym_graphics_include] = STATE(354), + [sym_import] = STATE(354), + [sym_label_definition] = STATE(354), + [sym_label_reference] = STATE(354), + [sym_label_reference_range] = STATE(354), + [sym_label_number] = STATE(354), + [sym_command_definition] = STATE(354), + [sym_math_operator] = STATE(354), + [sym_glossary_entry_definition] = STATE(354), + [sym_glossary_entry_reference] = STATE(354), + [sym_acronym_definition] = STATE(354), + [sym_theorem_definition] = STATE(354), + [sym_generic_command] = STATE(354), + [aux_sym_subsubsection_repeat1] = STATE(354), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2434), + [aux_sym_subsection_token1] = ACTIONS(2434), + [aux_sym_subsubsection_token1] = ACTIONS(2434), + [aux_sym_paragraph_token1] = ACTIONS(2931), + [aux_sym_subparagraph_token1] = ACTIONS(2933), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(4626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [348] = { + [sym__simple_content] = STATE(348), + [sym_subparagraph] = STATE(348), + [sym_enum_item] = STATE(348), + [sym_brace_group] = STATE(348), + [sym_mixed_group] = STATE(348), + [sym_text] = STATE(348), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(348), + [sym_inline_formula] = STATE(348), + [sym_begin] = STATE(96), + [sym_environment] = STATE(348), + [sym_caption] = STATE(348), + [sym_citation] = STATE(348), + [sym_package_include] = STATE(348), + [sym_class_include] = STATE(348), + [sym_biblatex_include] = STATE(348), + [sym_graphics_include] = STATE(348), + [sym_import] = STATE(348), + [sym_label_definition] = STATE(348), + [sym_label_reference] = STATE(348), + [sym_label_reference_range] = STATE(348), + [sym_label_number] = STATE(348), + [sym_command_definition] = STATE(348), + [sym_math_operator] = STATE(348), + [sym_glossary_entry_definition] = STATE(348), + [sym_glossary_entry_reference] = STATE(348), + [sym_acronym_definition] = STATE(348), + [sym_theorem_definition] = STATE(348), + [sym_generic_command] = STATE(348), + [aux_sym_paragraph_repeat1] = STATE(348), + [sym__generic_command_name] = ACTIONS(4628), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2992), + [aux_sym_chapter_token1] = ACTIONS(2992), + [aux_sym_section_token1] = ACTIONS(2992), + [aux_sym_subsection_token1] = ACTIONS(2992), + [aux_sym_subsubsection_token1] = ACTIONS(2992), + [aux_sym_paragraph_token1] = ACTIONS(2992), + [aux_sym_subparagraph_token1] = ACTIONS(4631), + [anon_sym_BSLASHitem] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_LBRACE] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4643), + [sym_word] = ACTIONS(4643), + [sym_param] = ACTIONS(4646), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4649), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4649), + [anon_sym_DOLLAR] = ACTIONS(4652), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4655), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2987), + [anon_sym_BSLASHbegin] = ACTIONS(3021), + [anon_sym_BSLASHcaption] = ACTIONS(4658), + [aux_sym_citation_token1] = ACTIONS(4661), + [aux_sym_package_include_token1] = ACTIONS(4664), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4667), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4670), + [aux_sym_graphics_include_token1] = ACTIONS(4673), + [aux_sym_import_token1] = ACTIONS(4676), + [anon_sym_BSLASHlabel] = ACTIONS(4679), + [aux_sym_label_reference_token1] = ACTIONS(4682), + [aux_sym_label_reference_range_token1] = ACTIONS(4685), + [anon_sym_BSLASHnewlabel] = ACTIONS(4688), + [aux_sym_command_definition_token1] = ACTIONS(4691), + [aux_sym_math_operator_token1] = ACTIONS(4694), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4697), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4700), + [anon_sym_BSLASHnewacronym] = ACTIONS(4703), + [aux_sym_theorem_definition_token1] = ACTIONS(4706), + }, + [349] = { + [sym__simple_content] = STATE(349), + [sym_subparagraph] = STATE(349), + [sym_enum_item] = STATE(349), + [sym_brace_group] = STATE(349), + [sym_mixed_group] = STATE(349), + [sym_text] = STATE(349), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(349), + [sym_inline_formula] = STATE(349), + [sym_begin] = STATE(78), + [sym_environment] = STATE(349), + [sym_caption] = STATE(349), + [sym_citation] = STATE(349), + [sym_package_include] = STATE(349), + [sym_class_include] = STATE(349), + [sym_biblatex_include] = STATE(349), + [sym_graphics_include] = STATE(349), + [sym_import] = STATE(349), + [sym_label_definition] = STATE(349), + [sym_label_reference] = STATE(349), + [sym_label_reference_range] = STATE(349), + [sym_label_number] = STATE(349), + [sym_command_definition] = STATE(349), + [sym_math_operator] = STATE(349), + [sym_glossary_entry_definition] = STATE(349), + [sym_glossary_entry_reference] = STATE(349), + [sym_acronym_definition] = STATE(349), + [sym_theorem_definition] = STATE(349), + [sym_generic_command] = STATE(349), + [aux_sym_paragraph_repeat1] = STATE(349), + [sym__generic_command_name] = ACTIONS(4709), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2992), + [aux_sym_chapter_token1] = ACTIONS(2992), + [aux_sym_section_token1] = ACTIONS(2992), + [aux_sym_subsection_token1] = ACTIONS(2992), + [aux_sym_subsubsection_token1] = ACTIONS(2992), + [aux_sym_paragraph_token1] = ACTIONS(2992), + [aux_sym_subparagraph_token1] = ACTIONS(4712), + [anon_sym_BSLASHitem] = ACTIONS(4715), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_LPAREN] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4724), + [sym_word] = ACTIONS(4724), + [sym_param] = ACTIONS(4727), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4730), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4733), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4736), + [anon_sym_BSLASHbegin] = ACTIONS(3021), + [anon_sym_BSLASHend] = ACTIONS(2992), + [anon_sym_BSLASHcaption] = ACTIONS(4739), + [aux_sym_citation_token1] = ACTIONS(4742), + [aux_sym_package_include_token1] = ACTIONS(4745), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4748), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4751), + [aux_sym_graphics_include_token1] = ACTIONS(4754), + [aux_sym_import_token1] = ACTIONS(4757), + [anon_sym_BSLASHlabel] = ACTIONS(4760), + [aux_sym_label_reference_token1] = ACTIONS(4763), + [aux_sym_label_reference_range_token1] = ACTIONS(4766), + [anon_sym_BSLASHnewlabel] = ACTIONS(4769), + [aux_sym_command_definition_token1] = ACTIONS(4772), + [aux_sym_math_operator_token1] = ACTIONS(4775), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4778), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4781), + [anon_sym_BSLASHnewacronym] = ACTIONS(4784), + [aux_sym_theorem_definition_token1] = ACTIONS(4787), + }, + [350] = { + [sym__simple_content] = 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(550), + [sym_displayed_equation] = STATE(344), + [sym_inline_formula] = STATE(344), + [sym_begin] = STATE(96), + [sym_environment] = STATE(344), + [sym_caption] = STATE(344), + [sym_citation] = STATE(344), + [sym_package_include] = STATE(344), + [sym_class_include] = STATE(344), + [sym_biblatex_include] = STATE(344), + [sym_graphics_include] = STATE(344), + [sym_import] = STATE(344), + [sym_label_definition] = STATE(344), + [sym_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_theorem_definition] = STATE(344), + [sym_generic_command] = STATE(344), + [aux_sym_paragraph_repeat1] = STATE(344), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2919), + [aux_sym_chapter_token1] = ACTIONS(2919), + [aux_sym_section_token1] = ACTIONS(2919), + [aux_sym_subsection_token1] = ACTIONS(2919), + [aux_sym_subsubsection_token1] = ACTIONS(2919), + [aux_sym_paragraph_token1] = ACTIONS(2919), + [aux_sym_subparagraph_token1] = ACTIONS(211), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(4790), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2917), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [351] = { + [sym__simple_content] = 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(547), + [sym_displayed_equation] = STATE(345), + [sym_inline_formula] = STATE(345), + [sym_begin] = STATE(49), + [sym_environment] = STATE(345), + [sym_caption] = STATE(345), + [sym_citation] = STATE(345), + [sym_package_include] = STATE(345), + [sym_class_include] = STATE(345), + [sym_biblatex_include] = STATE(345), + [sym_graphics_include] = STATE(345), + [sym_import] = STATE(345), + [sym_label_definition] = STATE(345), + [sym_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_theorem_definition] = STATE(345), + [sym_generic_command] = STATE(345), + [aux_sym_paragraph_repeat1] = STATE(345), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2919), + [aux_sym_section_token1] = ACTIONS(2919), + [aux_sym_subsection_token1] = ACTIONS(2919), + [aux_sym_subsubsection_token1] = ACTIONS(2919), + [aux_sym_paragraph_token1] = ACTIONS(2919), + [aux_sym_subparagraph_token1] = ACTIONS(1660), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(4792), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [352] = { + [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(559), + [sym_displayed_equation] = STATE(352), + [sym_inline_formula] = STATE(352), + [sym_begin] = STATE(65), + [sym_environment] = STATE(352), + [sym_caption] = STATE(352), + [sym_citation] = STATE(352), + [sym_package_include] = STATE(352), + [sym_class_include] = STATE(352), + [sym_biblatex_include] = STATE(352), + [sym_graphics_include] = STATE(352), + [sym_import] = STATE(352), + [sym_label_definition] = STATE(352), + [sym_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_theorem_definition] = STATE(352), + [sym_generic_command] = STATE(352), + [aux_sym_subsubsection_repeat1] = STATE(352), + [sym__generic_command_name] = ACTIONS(4794), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2443), + [aux_sym_subsection_token1] = ACTIONS(2443), + [aux_sym_subsubsection_token1] = ACTIONS(2443), + [aux_sym_paragraph_token1] = ACTIONS(4797), + [aux_sym_subparagraph_token1] = ACTIONS(4800), + [anon_sym_BSLASHitem] = ACTIONS(4803), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_RBRACK] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(4809), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [sym_word] = ACTIONS(4812), + [sym_param] = ACTIONS(4815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4818), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4818), + [anon_sym_DOLLAR] = ACTIONS(4821), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4824), + [anon_sym_BSLASHbegin] = ACTIONS(2475), + [anon_sym_BSLASHcaption] = ACTIONS(4827), + [aux_sym_citation_token1] = ACTIONS(4830), + [aux_sym_package_include_token1] = ACTIONS(4833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4836), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4839), + [aux_sym_graphics_include_token1] = ACTIONS(4842), + [aux_sym_import_token1] = ACTIONS(4845), + [anon_sym_BSLASHlabel] = ACTIONS(4848), + [aux_sym_label_reference_token1] = ACTIONS(4851), + [aux_sym_label_reference_range_token1] = ACTIONS(4854), + [anon_sym_BSLASHnewlabel] = ACTIONS(4857), + [aux_sym_command_definition_token1] = ACTIONS(4860), + [aux_sym_math_operator_token1] = ACTIONS(4863), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4866), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4869), + [anon_sym_BSLASHnewacronym] = ACTIONS(4872), + [aux_sym_theorem_definition_token1] = ACTIONS(4875), + }, + [353] = { + [sym__simple_content] = 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(547), + [sym_displayed_equation] = STATE(353), + [sym_inline_formula] = STATE(353), + [sym_begin] = STATE(49), + [sym_environment] = STATE(353), + [sym_caption] = STATE(353), + [sym_citation] = STATE(353), + [sym_package_include] = STATE(353), + [sym_class_include] = STATE(353), + [sym_biblatex_include] = STATE(353), + [sym_graphics_include] = STATE(353), + [sym_import] = STATE(353), + [sym_label_definition] = STATE(353), + [sym_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_theorem_definition] = STATE(353), + [sym_generic_command] = STATE(353), + [aux_sym_paragraph_repeat1] = STATE(353), + [sym__generic_command_name] = ACTIONS(4878), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2992), + [aux_sym_section_token1] = ACTIONS(2992), + [aux_sym_subsection_token1] = ACTIONS(2992), + [aux_sym_subsubsection_token1] = ACTIONS(2992), + [aux_sym_paragraph_token1] = ACTIONS(2992), + [aux_sym_subparagraph_token1] = ACTIONS(4881), + [anon_sym_BSLASHitem] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(4887), + [anon_sym_COMMA] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4893), + [sym_word] = ACTIONS(4893), + [sym_param] = ACTIONS(4896), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4902), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4905), + [anon_sym_BSLASHbegin] = ACTIONS(3021), + [anon_sym_BSLASHcaption] = ACTIONS(4908), + [aux_sym_citation_token1] = ACTIONS(4911), + [aux_sym_package_include_token1] = ACTIONS(4914), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4920), + [aux_sym_graphics_include_token1] = ACTIONS(4923), + [aux_sym_import_token1] = ACTIONS(4926), + [anon_sym_BSLASHlabel] = ACTIONS(4929), + [aux_sym_label_reference_token1] = ACTIONS(4932), + [aux_sym_label_reference_range_token1] = ACTIONS(4935), + [anon_sym_BSLASHnewlabel] = ACTIONS(4938), + [aux_sym_command_definition_token1] = ACTIONS(4941), + [aux_sym_math_operator_token1] = ACTIONS(4944), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4950), + [anon_sym_BSLASHnewacronym] = ACTIONS(4953), + [aux_sym_theorem_definition_token1] = ACTIONS(4956), + }, + [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(559), + [sym_displayed_equation] = STATE(352), + [sym_inline_formula] = STATE(352), + [sym_begin] = STATE(65), + [sym_environment] = STATE(352), + [sym_caption] = STATE(352), + [sym_citation] = STATE(352), + [sym_package_include] = STATE(352), + [sym_class_include] = STATE(352), + [sym_biblatex_include] = STATE(352), + [sym_graphics_include] = STATE(352), + [sym_import] = STATE(352), + [sym_label_definition] = STATE(352), + [sym_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_theorem_definition] = STATE(352), + [sym_generic_command] = STATE(352), + [aux_sym_subsubsection_repeat1] = STATE(352), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2721), + [aux_sym_subsection_token1] = ACTIONS(2721), + [aux_sym_subsubsection_token1] = ACTIONS(2721), + [aux_sym_paragraph_token1] = ACTIONS(2931), + [aux_sym_subparagraph_token1] = ACTIONS(2933), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(4959), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [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(542), + [sym_displayed_equation] = STATE(346), + [sym_inline_formula] = STATE(346), + [sym_begin] = STATE(78), + [sym_environment] = STATE(346), + [sym_caption] = STATE(346), + [sym_citation] = STATE(346), + [sym_package_include] = STATE(346), + [sym_class_include] = STATE(346), + [sym_biblatex_include] = STATE(346), + [sym_graphics_include] = STATE(346), + [sym_import] = STATE(346), + [sym_label_definition] = STATE(346), + [sym_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_theorem_definition] = STATE(346), + [sym_generic_command] = STATE(346), + [aux_sym_paragraph_repeat1] = STATE(346), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2919), + [aux_sym_chapter_token1] = ACTIONS(2919), + [aux_sym_section_token1] = ACTIONS(2919), + [aux_sym_subsection_token1] = ACTIONS(2919), + [aux_sym_subsubsection_token1] = ACTIONS(2919), + [aux_sym_paragraph_token1] = ACTIONS(2919), + [aux_sym_subparagraph_token1] = ACTIONS(351), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(4961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(2919), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [356] = { + [sym__simple_content] = STATE(357), + [sym_subsubsection] = STATE(357), + [sym_paragraph] = 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(698), + [sym_displayed_equation] = STATE(357), + [sym_inline_formula] = STATE(357), + [sym_begin] = STATE(84), + [sym_environment] = STATE(357), + [sym_caption] = STATE(357), + [sym_citation] = STATE(357), + [sym_package_include] = STATE(357), + [sym_class_include] = STATE(357), + [sym_biblatex_include] = STATE(357), + [sym_graphics_include] = STATE(357), + [sym_import] = STATE(357), + [sym_label_definition] = STATE(357), + [sym_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_theorem_definition] = STATE(357), + [sym_generic_command] = STATE(357), + [aux_sym_subsection_repeat1] = STATE(357), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(1810), + [aux_sym_subsubsection_token1] = ACTIONS(4194), + [aux_sym_paragraph_token1] = ACTIONS(4196), + [aux_sym_subparagraph_token1] = ACTIONS(4198), + [anon_sym_BSLASHitem] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(4963), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [357] = { + [sym__simple_content] = STATE(357), + [sym_subsubsection] = STATE(357), + [sym_paragraph] = 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(698), + [sym_displayed_equation] = STATE(357), + [sym_inline_formula] = STATE(357), + [sym_begin] = STATE(84), + [sym_environment] = STATE(357), + [sym_caption] = STATE(357), + [sym_citation] = STATE(357), + [sym_package_include] = STATE(357), + [sym_class_include] = STATE(357), + [sym_biblatex_include] = STATE(357), + [sym_graphics_include] = STATE(357), + [sym_import] = STATE(357), + [sym_label_definition] = STATE(357), + [sym_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_theorem_definition] = STATE(357), + [sym_generic_command] = STATE(357), + [aux_sym_subsection_repeat1] = STATE(357), + [sym__generic_command_name] = ACTIONS(4965), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(1821), + [aux_sym_subsubsection_token1] = ACTIONS(4968), + [aux_sym_paragraph_token1] = ACTIONS(4971), + [aux_sym_subparagraph_token1] = ACTIONS(4974), + [anon_sym_BSLASHitem] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(4980), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_EQ] = ACTIONS(4986), + [sym_word] = ACTIONS(4986), + [sym_param] = ACTIONS(4989), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4992), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4998), + [anon_sym_BSLASHbegin] = ACTIONS(1856), + [anon_sym_BSLASHcaption] = ACTIONS(5001), + [aux_sym_citation_token1] = ACTIONS(5004), + [aux_sym_package_include_token1] = ACTIONS(5007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5010), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), + [aux_sym_graphics_include_token1] = ACTIONS(5016), + [aux_sym_import_token1] = ACTIONS(5019), + [anon_sym_BSLASHlabel] = ACTIONS(5022), + [aux_sym_label_reference_token1] = ACTIONS(5025), + [aux_sym_label_reference_range_token1] = ACTIONS(5028), + [anon_sym_BSLASHnewlabel] = ACTIONS(5031), + [aux_sym_command_definition_token1] = ACTIONS(5034), + [aux_sym_math_operator_token1] = ACTIONS(5037), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5040), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5043), + [anon_sym_BSLASHnewacronym] = ACTIONS(5046), + [aux_sym_theorem_definition_token1] = ACTIONS(5049), + }, + [358] = { + [sym__simple_content] = STATE(343), + [sym_subparagraph] = STATE(343), + [sym_enum_item] = STATE(343), + [sym_brace_group] = STATE(343), + [sym_mixed_group] = STATE(343), + [sym_text] = STATE(343), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(343), + [sym_inline_formula] = STATE(343), + [sym_begin] = STATE(108), + [sym_environment] = STATE(343), + [sym_caption] = STATE(343), + [sym_citation] = STATE(343), + [sym_package_include] = STATE(343), + [sym_class_include] = STATE(343), + [sym_biblatex_include] = STATE(343), + [sym_graphics_include] = STATE(343), + [sym_import] = STATE(343), + [sym_label_definition] = STATE(343), + [sym_label_reference] = STATE(343), + [sym_label_reference_range] = STATE(343), + [sym_label_number] = STATE(343), + [sym_command_definition] = STATE(343), + [sym_math_operator] = STATE(343), + [sym_glossary_entry_definition] = STATE(343), + [sym_glossary_entry_reference] = STATE(343), + [sym_acronym_definition] = STATE(343), + [sym_theorem_definition] = STATE(343), + [sym_generic_command] = STATE(343), + [aux_sym_paragraph_repeat1] = STATE(343), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2919), + [aux_sym_chapter_token1] = ACTIONS(2919), + [aux_sym_section_token1] = ACTIONS(2919), + [aux_sym_subsection_token1] = ACTIONS(2919), + [aux_sym_subsubsection_token1] = ACTIONS(2919), + [aux_sym_paragraph_token1] = ACTIONS(2919), + [aux_sym_subparagraph_token1] = ACTIONS(227), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(5052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2917), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [359] = { + [sym__simple_content] = STATE(359), + [sym_subparagraph] = STATE(359), + [sym_enum_item] = STATE(359), + [sym_brace_group] = STATE(359), + [sym_mixed_group] = STATE(359), + [sym_text] = STATE(359), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(359), + [sym_inline_formula] = STATE(359), + [sym_begin] = STATE(108), + [sym_environment] = STATE(359), + [sym_caption] = STATE(359), + [sym_citation] = STATE(359), + [sym_package_include] = STATE(359), + [sym_class_include] = STATE(359), + [sym_biblatex_include] = STATE(359), + [sym_graphics_include] = STATE(359), + [sym_import] = STATE(359), + [sym_label_definition] = STATE(359), + [sym_label_reference] = STATE(359), + [sym_label_reference_range] = STATE(359), + [sym_label_number] = STATE(359), + [sym_command_definition] = STATE(359), + [sym_math_operator] = STATE(359), + [sym_glossary_entry_definition] = STATE(359), + [sym_glossary_entry_reference] = STATE(359), + [sym_acronym_definition] = STATE(359), + [sym_theorem_definition] = STATE(359), + [sym_generic_command] = STATE(359), + [aux_sym_paragraph_repeat1] = STATE(359), + [sym__generic_command_name] = ACTIONS(5054), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2992), + [aux_sym_chapter_token1] = ACTIONS(2992), + [aux_sym_section_token1] = ACTIONS(2992), + [aux_sym_subsection_token1] = ACTIONS(2992), + [aux_sym_subsubsection_token1] = ACTIONS(2992), + [aux_sym_paragraph_token1] = ACTIONS(2992), + [aux_sym_subparagraph_token1] = ACTIONS(5057), + [anon_sym_BSLASHitem] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5066), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_EQ] = ACTIONS(5069), + [sym_word] = ACTIONS(5069), + [sym_param] = ACTIONS(5072), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2987), + [anon_sym_DOLLAR] = ACTIONS(5078), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5081), + [anon_sym_BSLASHbegin] = ACTIONS(3021), + [anon_sym_BSLASHcaption] = ACTIONS(5084), + [aux_sym_citation_token1] = ACTIONS(5087), + [aux_sym_package_include_token1] = ACTIONS(5090), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5096), + [aux_sym_graphics_include_token1] = ACTIONS(5099), + [aux_sym_import_token1] = ACTIONS(5102), + [anon_sym_BSLASHlabel] = ACTIONS(5105), + [aux_sym_label_reference_token1] = ACTIONS(5108), + [aux_sym_label_reference_range_token1] = ACTIONS(5111), + [anon_sym_BSLASHnewlabel] = ACTIONS(5114), + [aux_sym_command_definition_token1] = ACTIONS(5117), + [aux_sym_math_operator_token1] = ACTIONS(5120), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5126), + [anon_sym_BSLASHnewacronym] = ACTIONS(5129), + [aux_sym_theorem_definition_token1] = ACTIONS(5132), + }, + [360] = { + [sym__simple_content] = STATE(361), + [sym_enum_item] = STATE(361), + [sym_brace_group] = STATE(361), + [sym_mixed_group] = STATE(361), + [sym_text] = STATE(361), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(361), + [sym_inline_formula] = STATE(361), + [sym_begin] = STATE(96), + [sym_environment] = STATE(361), + [sym_caption] = STATE(361), + [sym_citation] = STATE(361), + [sym_package_include] = STATE(361), + [sym_class_include] = STATE(361), + [sym_biblatex_include] = STATE(361), + [sym_graphics_include] = STATE(361), + [sym_import] = STATE(361), + [sym_label_definition] = STATE(361), + [sym_label_reference] = STATE(361), + [sym_label_reference_range] = STATE(361), + [sym_label_number] = STATE(361), + [sym_command_definition] = STATE(361), + [sym_math_operator] = STATE(361), + [sym_glossary_entry_definition] = STATE(361), + [sym_glossary_entry_reference] = STATE(361), + [sym_acronym_definition] = STATE(361), + [sym_theorem_definition] = STATE(361), + [sym_generic_command] = STATE(361), + [aux_sym_subparagraph_repeat1] = STATE(361), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3812), + [aux_sym_chapter_token1] = ACTIONS(3812), + [aux_sym_section_token1] = ACTIONS(3812), + [aux_sym_subsection_token1] = ACTIONS(3812), + [aux_sym_subsubsection_token1] = ACTIONS(3812), + [aux_sym_paragraph_token1] = ACTIONS(3812), + [aux_sym_subparagraph_token1] = ACTIONS(3812), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(5135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(3810), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [361] = { + [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(550), + [sym_displayed_equation] = STATE(363), + [sym_inline_formula] = STATE(363), + [sym_begin] = STATE(96), + [sym_environment] = STATE(363), + [sym_caption] = STATE(363), + [sym_citation] = STATE(363), + [sym_package_include] = STATE(363), + [sym_class_include] = STATE(363), + [sym_biblatex_include] = STATE(363), + [sym_graphics_include] = STATE(363), + [sym_import] = STATE(363), + [sym_label_definition] = STATE(363), + [sym_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_theorem_definition] = STATE(363), + [sym_generic_command] = STATE(363), + [aux_sym_subparagraph_repeat1] = STATE(363), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3818), + [aux_sym_chapter_token1] = ACTIONS(3818), + [aux_sym_section_token1] = ACTIONS(3818), + [aux_sym_subsection_token1] = ACTIONS(3818), + [aux_sym_subsubsection_token1] = ACTIONS(3818), + [aux_sym_paragraph_token1] = ACTIONS(3818), + [aux_sym_subparagraph_token1] = ACTIONS(3818), + [anon_sym_BSLASHitem] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(5137), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(3816), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [362] = { + [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(542), + [sym_displayed_equation] = STATE(362), + [sym_inline_formula] = STATE(362), + [sym_begin] = STATE(78), + [sym_environment] = STATE(362), + [sym_caption] = STATE(362), + [sym_citation] = STATE(362), + [sym_package_include] = STATE(362), + [sym_class_include] = STATE(362), + [sym_biblatex_include] = STATE(362), + [sym_graphics_include] = STATE(362), + [sym_import] = STATE(362), + [sym_label_definition] = STATE(362), + [sym_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_theorem_definition] = STATE(362), + [sym_generic_command] = STATE(362), + [aux_sym_subparagraph_repeat1] = STATE(362), + [sym__generic_command_name] = ACTIONS(5139), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3730), + [aux_sym_chapter_token1] = ACTIONS(3730), + [aux_sym_section_token1] = ACTIONS(3730), + [aux_sym_subsection_token1] = ACTIONS(3730), + [aux_sym_subsubsection_token1] = ACTIONS(3730), + [aux_sym_paragraph_token1] = ACTIONS(3730), + [aux_sym_subparagraph_token1] = ACTIONS(3730), + [anon_sym_BSLASHitem] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5148), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [sym_word] = ACTIONS(5151), + [sym_param] = ACTIONS(5154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHend] = ACTIONS(3730), + [anon_sym_BSLASHcaption] = ACTIONS(5166), + [aux_sym_citation_token1] = ACTIONS(5169), + [aux_sym_package_include_token1] = ACTIONS(5172), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5178), + [aux_sym_graphics_include_token1] = ACTIONS(5181), + [aux_sym_import_token1] = ACTIONS(5184), + [anon_sym_BSLASHlabel] = ACTIONS(5187), + [aux_sym_label_reference_token1] = ACTIONS(5190), + [aux_sym_label_reference_range_token1] = ACTIONS(5193), + [anon_sym_BSLASHnewlabel] = ACTIONS(5196), + [aux_sym_command_definition_token1] = ACTIONS(5199), + [aux_sym_math_operator_token1] = ACTIONS(5202), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5208), + [anon_sym_BSLASHnewacronym] = ACTIONS(5211), + [aux_sym_theorem_definition_token1] = ACTIONS(5214), + }, + [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(550), + [sym_displayed_equation] = STATE(363), + [sym_inline_formula] = STATE(363), + [sym_begin] = STATE(96), + [sym_environment] = STATE(363), + [sym_caption] = STATE(363), + [sym_citation] = STATE(363), + [sym_package_include] = STATE(363), + [sym_class_include] = STATE(363), + [sym_biblatex_include] = STATE(363), + [sym_graphics_include] = STATE(363), + [sym_import] = STATE(363), + [sym_label_definition] = STATE(363), + [sym_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_theorem_definition] = STATE(363), + [sym_generic_command] = STATE(363), + [aux_sym_subparagraph_repeat1] = STATE(363), + [sym__generic_command_name] = ACTIONS(5217), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3730), + [aux_sym_chapter_token1] = ACTIONS(3730), + [aux_sym_section_token1] = ACTIONS(3730), + [aux_sym_subsection_token1] = ACTIONS(3730), + [aux_sym_subsubsection_token1] = ACTIONS(3730), + [aux_sym_paragraph_token1] = ACTIONS(3730), + [aux_sym_subparagraph_token1] = ACTIONS(3730), + [anon_sym_BSLASHitem] = ACTIONS(5220), + [anon_sym_LBRACK] = ACTIONS(5223), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_LPAREN] = ACTIONS(5223), + [anon_sym_COMMA] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [sym_word] = ACTIONS(5229), + [sym_param] = ACTIONS(5232), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), + [anon_sym_DOLLAR] = ACTIONS(5238), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5241), + [anon_sym_BSLASH_RPAREN] = ACTIONS(3725), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHcaption] = ACTIONS(5244), + [aux_sym_citation_token1] = ACTIONS(5247), + [aux_sym_package_include_token1] = ACTIONS(5250), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5256), + [aux_sym_graphics_include_token1] = ACTIONS(5259), + [aux_sym_import_token1] = ACTIONS(5262), + [anon_sym_BSLASHlabel] = ACTIONS(5265), + [aux_sym_label_reference_token1] = ACTIONS(5268), + [aux_sym_label_reference_range_token1] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5274), + [aux_sym_command_definition_token1] = ACTIONS(5277), + [aux_sym_math_operator_token1] = ACTIONS(5280), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5286), + [anon_sym_BSLASHnewacronym] = ACTIONS(5289), + [aux_sym_theorem_definition_token1] = ACTIONS(5292), + }, + [364] = { + [sym__simple_content] = STATE(373), + [sym_subsubsection] = STATE(373), + [sym_paragraph] = STATE(373), + [sym_subparagraph] = 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(773), + [sym_displayed_equation] = STATE(373), + [sym_inline_formula] = STATE(373), + [sym_begin] = STATE(113), + [sym_environment] = STATE(373), + [sym_caption] = STATE(373), + [sym_citation] = STATE(373), + [sym_package_include] = STATE(373), + [sym_class_include] = STATE(373), + [sym_biblatex_include] = STATE(373), + [sym_graphics_include] = STATE(373), + [sym_import] = STATE(373), + [sym_label_definition] = STATE(373), + [sym_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_theorem_definition] = STATE(373), + [sym_generic_command] = STATE(373), + [aux_sym_subsection_repeat1] = STATE(373), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(5297), + [aux_sym_paragraph_token1] = ACTIONS(5299), + [aux_sym_subparagraph_token1] = ACTIONS(5301), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(5311), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [365] = { + [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(543), + [sym_displayed_equation] = STATE(367), + [sym_inline_formula] = STATE(367), + [sym_begin] = STATE(108), + [sym_environment] = STATE(367), + [sym_caption] = STATE(367), + [sym_citation] = STATE(367), + [sym_package_include] = STATE(367), + [sym_class_include] = STATE(367), + [sym_biblatex_include] = STATE(367), + [sym_graphics_include] = STATE(367), + [sym_import] = STATE(367), + [sym_label_definition] = STATE(367), + [sym_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_theorem_definition] = STATE(367), + [sym_generic_command] = STATE(367), + [aux_sym_subparagraph_repeat1] = STATE(367), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3812), + [aux_sym_chapter_token1] = ACTIONS(3812), + [aux_sym_section_token1] = ACTIONS(3812), + [aux_sym_subsection_token1] = ACTIONS(3812), + [aux_sym_subsubsection_token1] = ACTIONS(3812), + [aux_sym_paragraph_token1] = ACTIONS(3812), + [aux_sym_subparagraph_token1] = ACTIONS(3812), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(5353), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(3810), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [366] = { + [sym__simple_content] = STATE(366), + [sym_paragraph] = STATE(366), + [sym_subparagraph] = 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(698), + [sym_displayed_equation] = STATE(366), + [sym_inline_formula] = STATE(366), + [sym_begin] = STATE(84), + [sym_environment] = STATE(366), + [sym_caption] = STATE(366), + [sym_citation] = STATE(366), + [sym_package_include] = STATE(366), + [sym_class_include] = STATE(366), + [sym_biblatex_include] = STATE(366), + [sym_graphics_include] = STATE(366), + [sym_import] = STATE(366), + [sym_label_definition] = STATE(366), + [sym_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_theorem_definition] = STATE(366), + [sym_generic_command] = STATE(366), + [aux_sym_subsubsection_repeat1] = STATE(366), + [sym__generic_command_name] = ACTIONS(5355), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(2443), + [aux_sym_subsubsection_token1] = ACTIONS(2443), + [aux_sym_paragraph_token1] = ACTIONS(5358), + [aux_sym_subparagraph_token1] = ACTIONS(5361), + [anon_sym_BSLASHitem] = ACTIONS(5364), + [anon_sym_LBRACK] = ACTIONS(5367), + [anon_sym_RBRACK] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(5370), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(5367), + [anon_sym_COMMA] = ACTIONS(5373), + [anon_sym_EQ] = ACTIONS(5373), + [sym_word] = ACTIONS(5373), + [sym_param] = ACTIONS(5376), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5379), + [anon_sym_DOLLAR] = ACTIONS(5382), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5385), + [anon_sym_BSLASHbegin] = ACTIONS(2475), + [anon_sym_BSLASHcaption] = ACTIONS(5388), + [aux_sym_citation_token1] = ACTIONS(5391), + [aux_sym_package_include_token1] = ACTIONS(5394), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5400), + [aux_sym_graphics_include_token1] = ACTIONS(5403), + [aux_sym_import_token1] = ACTIONS(5406), + [anon_sym_BSLASHlabel] = ACTIONS(5409), + [aux_sym_label_reference_token1] = ACTIONS(5412), + [aux_sym_label_reference_range_token1] = ACTIONS(5415), + [anon_sym_BSLASHnewlabel] = ACTIONS(5418), + [aux_sym_command_definition_token1] = ACTIONS(5421), + [aux_sym_math_operator_token1] = ACTIONS(5424), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5427), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5430), + [anon_sym_BSLASHnewacronym] = ACTIONS(5433), + [aux_sym_theorem_definition_token1] = ACTIONS(5436), + }, + [367] = { + [sym__simple_content] = 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(543), + [sym_displayed_equation] = STATE(368), + [sym_inline_formula] = STATE(368), + [sym_begin] = STATE(108), + [sym_environment] = STATE(368), + [sym_caption] = STATE(368), + [sym_citation] = STATE(368), + [sym_package_include] = STATE(368), + [sym_class_include] = STATE(368), + [sym_biblatex_include] = STATE(368), + [sym_graphics_include] = STATE(368), + [sym_import] = STATE(368), + [sym_label_definition] = STATE(368), + [sym_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_theorem_definition] = STATE(368), + [sym_generic_command] = STATE(368), + [aux_sym_subparagraph_repeat1] = STATE(368), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3818), + [aux_sym_chapter_token1] = ACTIONS(3818), + [aux_sym_section_token1] = ACTIONS(3818), + [aux_sym_subsection_token1] = ACTIONS(3818), + [aux_sym_subsubsection_token1] = ACTIONS(3818), + [aux_sym_paragraph_token1] = ACTIONS(3818), + [aux_sym_subparagraph_token1] = ACTIONS(3818), + [anon_sym_BSLASHitem] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(5439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [368] = { + [sym__simple_content] = 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(543), + [sym_displayed_equation] = STATE(368), + [sym_inline_formula] = STATE(368), + [sym_begin] = STATE(108), + [sym_environment] = STATE(368), + [sym_caption] = STATE(368), + [sym_citation] = STATE(368), + [sym_package_include] = STATE(368), + [sym_class_include] = STATE(368), + [sym_biblatex_include] = STATE(368), + [sym_graphics_include] = STATE(368), + [sym_import] = STATE(368), + [sym_label_definition] = STATE(368), + [sym_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_theorem_definition] = STATE(368), + [sym_generic_command] = STATE(368), + [aux_sym_subparagraph_repeat1] = STATE(368), + [sym__generic_command_name] = ACTIONS(5441), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3730), + [aux_sym_chapter_token1] = ACTIONS(3730), + [aux_sym_section_token1] = ACTIONS(3730), + [aux_sym_subsection_token1] = ACTIONS(3730), + [aux_sym_subsubsection_token1] = ACTIONS(3730), + [aux_sym_paragraph_token1] = ACTIONS(3730), + [aux_sym_subparagraph_token1] = ACTIONS(3730), + [anon_sym_BSLASHitem] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5447), + [anon_sym_LBRACE] = ACTIONS(5450), + [anon_sym_LPAREN] = ACTIONS(5447), + [anon_sym_COMMA] = ACTIONS(5453), + [anon_sym_EQ] = ACTIONS(5453), + [sym_word] = ACTIONS(5453), + [sym_param] = ACTIONS(5456), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5459), + [anon_sym_BSLASH_RBRACK] = ACTIONS(3725), + [anon_sym_DOLLAR] = ACTIONS(5462), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5465), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHcaption] = ACTIONS(5468), + [aux_sym_citation_token1] = ACTIONS(5471), + [aux_sym_package_include_token1] = ACTIONS(5474), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5480), + [aux_sym_graphics_include_token1] = ACTIONS(5483), + [aux_sym_import_token1] = ACTIONS(5486), + [anon_sym_BSLASHlabel] = ACTIONS(5489), + [aux_sym_label_reference_token1] = ACTIONS(5492), + [aux_sym_label_reference_range_token1] = ACTIONS(5495), + [anon_sym_BSLASHnewlabel] = ACTIONS(5498), + [aux_sym_command_definition_token1] = ACTIONS(5501), + [aux_sym_math_operator_token1] = ACTIONS(5504), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5507), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5510), + [anon_sym_BSLASHnewacronym] = ACTIONS(5513), + [aux_sym_theorem_definition_token1] = ACTIONS(5516), + }, + [369] = { + [sym__simple_content] = STATE(366), + [sym_paragraph] = STATE(366), + [sym_subparagraph] = 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(698), + [sym_displayed_equation] = STATE(366), + [sym_inline_formula] = STATE(366), + [sym_begin] = STATE(84), + [sym_environment] = STATE(366), + [sym_caption] = STATE(366), + [sym_citation] = STATE(366), + [sym_package_include] = STATE(366), + [sym_class_include] = STATE(366), + [sym_biblatex_include] = STATE(366), + [sym_graphics_include] = STATE(366), + [sym_import] = STATE(366), + [sym_label_definition] = STATE(366), + [sym_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_theorem_definition] = STATE(366), + [sym_generic_command] = STATE(366), + [aux_sym_subsubsection_repeat1] = STATE(366), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(2721), + [aux_sym_subsubsection_token1] = ACTIONS(2721), + [aux_sym_paragraph_token1] = ACTIONS(4196), + [aux_sym_subparagraph_token1] = ACTIONS(4198), + [anon_sym_BSLASHitem] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(5519), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [370] = { + [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(542), + [sym_displayed_equation] = STATE(362), + [sym_inline_formula] = STATE(362), + [sym_begin] = STATE(78), + [sym_environment] = STATE(362), + [sym_caption] = STATE(362), + [sym_citation] = STATE(362), + [sym_package_include] = STATE(362), + [sym_class_include] = STATE(362), + [sym_biblatex_include] = STATE(362), + [sym_graphics_include] = STATE(362), + [sym_import] = STATE(362), + [sym_label_definition] = STATE(362), + [sym_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_theorem_definition] = STATE(362), + [sym_generic_command] = STATE(362), + [aux_sym_subparagraph_repeat1] = STATE(362), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3818), + [aux_sym_chapter_token1] = ACTIONS(3818), + [aux_sym_section_token1] = ACTIONS(3818), + [aux_sym_subsection_token1] = ACTIONS(3818), + [aux_sym_subsubsection_token1] = ACTIONS(3818), + [aux_sym_paragraph_token1] = ACTIONS(3818), + [aux_sym_subparagraph_token1] = ACTIONS(3818), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(5521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(3818), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [371] = { + [sym__simple_content] = STATE(379), + [sym_subparagraph] = STATE(379), + [sym_enum_item] = STATE(379), + [sym_brace_group] = STATE(379), + [sym_mixed_group] = STATE(379), + [sym_text] = STATE(379), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(379), + [sym_inline_formula] = STATE(379), + [sym_begin] = STATE(65), + [sym_environment] = STATE(379), + [sym_caption] = STATE(379), + [sym_citation] = STATE(379), + [sym_package_include] = STATE(379), + [sym_class_include] = STATE(379), + [sym_biblatex_include] = STATE(379), + [sym_graphics_include] = STATE(379), + [sym_import] = STATE(379), + [sym_label_definition] = STATE(379), + [sym_label_reference] = STATE(379), + [sym_label_reference_range] = STATE(379), + [sym_label_number] = STATE(379), + [sym_command_definition] = STATE(379), + [sym_math_operator] = STATE(379), + [sym_glossary_entry_definition] = STATE(379), + [sym_glossary_entry_reference] = STATE(379), + [sym_acronym_definition] = STATE(379), + [sym_theorem_definition] = STATE(379), + [sym_generic_command] = STATE(379), + [aux_sym_paragraph_repeat1] = STATE(379), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2823), + [aux_sym_subsection_token1] = ACTIONS(2823), + [aux_sym_subsubsection_token1] = ACTIONS(2823), + [aux_sym_paragraph_token1] = ACTIONS(2823), + [aux_sym_subparagraph_token1] = ACTIONS(2933), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(5523), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [372] = { + [sym__simple_content] = 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(698), + [sym_displayed_equation] = STATE(369), + [sym_inline_formula] = STATE(369), + [sym_begin] = STATE(84), + [sym_environment] = STATE(369), + [sym_caption] = STATE(369), + [sym_citation] = STATE(369), + [sym_package_include] = STATE(369), + [sym_class_include] = STATE(369), + [sym_biblatex_include] = STATE(369), + [sym_graphics_include] = STATE(369), + [sym_import] = STATE(369), + [sym_label_definition] = STATE(369), + [sym_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_theorem_definition] = STATE(369), + [sym_generic_command] = STATE(369), + [aux_sym_subsubsection_repeat1] = STATE(369), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(2434), + [aux_sym_subsubsection_token1] = ACTIONS(2434), + [aux_sym_paragraph_token1] = ACTIONS(4196), + [aux_sym_subparagraph_token1] = ACTIONS(4198), + [anon_sym_BSLASHitem] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(5525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [373] = { + [sym__simple_content] = STATE(373), + [sym_subsubsection] = STATE(373), + [sym_paragraph] = STATE(373), + [sym_subparagraph] = 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(773), + [sym_displayed_equation] = STATE(373), + [sym_inline_formula] = STATE(373), + [sym_begin] = STATE(113), + [sym_environment] = STATE(373), + [sym_caption] = STATE(373), + [sym_citation] = STATE(373), + [sym_package_include] = STATE(373), + [sym_class_include] = STATE(373), + [sym_biblatex_include] = STATE(373), + [sym_graphics_include] = STATE(373), + [sym_import] = STATE(373), + [sym_label_definition] = STATE(373), + [sym_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_theorem_definition] = STATE(373), + [sym_generic_command] = STATE(373), + [aux_sym_subsection_repeat1] = STATE(373), + [sym__generic_command_name] = ACTIONS(5527), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(5530), + [aux_sym_paragraph_token1] = ACTIONS(5533), + [aux_sym_subparagraph_token1] = ACTIONS(5536), + [anon_sym_BSLASHitem] = ACTIONS(5539), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(5545), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_COMMA] = ACTIONS(5548), + [anon_sym_EQ] = ACTIONS(5548), + [sym_word] = ACTIONS(5548), + [sym_param] = ACTIONS(5551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5554), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5554), + [anon_sym_DOLLAR] = ACTIONS(5557), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5560), + [anon_sym_BSLASHbegin] = ACTIONS(1856), + [anon_sym_BSLASHcaption] = ACTIONS(5563), + [aux_sym_citation_token1] = ACTIONS(5566), + [aux_sym_package_include_token1] = ACTIONS(5569), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5572), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5575), + [aux_sym_graphics_include_token1] = ACTIONS(5578), + [aux_sym_import_token1] = ACTIONS(5581), + [anon_sym_BSLASHlabel] = ACTIONS(5584), + [aux_sym_label_reference_token1] = ACTIONS(5587), + [aux_sym_label_reference_range_token1] = ACTIONS(5590), + [anon_sym_BSLASHnewlabel] = ACTIONS(5593), + [aux_sym_command_definition_token1] = ACTIONS(5596), + [aux_sym_math_operator_token1] = ACTIONS(5599), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5602), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5605), + [anon_sym_BSLASHnewacronym] = ACTIONS(5608), + [aux_sym_theorem_definition_token1] = ACTIONS(5611), + }, + [374] = { + [sym__simple_content] = 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(547), + [sym_displayed_equation] = STATE(378), + [sym_inline_formula] = STATE(378), + [sym_begin] = STATE(49), + [sym_environment] = STATE(378), + [sym_caption] = STATE(378), + [sym_citation] = STATE(378), + [sym_package_include] = STATE(378), + [sym_class_include] = STATE(378), + [sym_biblatex_include] = STATE(378), + [sym_graphics_include] = STATE(378), + [sym_import] = STATE(378), + [sym_label_definition] = STATE(378), + [sym_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_theorem_definition] = STATE(378), + [sym_generic_command] = STATE(378), + [aux_sym_subparagraph_repeat1] = STATE(378), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(3818), + [aux_sym_section_token1] = ACTIONS(3818), + [aux_sym_subsection_token1] = ACTIONS(3818), + [aux_sym_subsubsection_token1] = ACTIONS(3818), + [aux_sym_paragraph_token1] = ACTIONS(3818), + [aux_sym_subparagraph_token1] = ACTIONS(3818), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(5614), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [375] = { + [sym__simple_content] = STATE(371), + [sym_subparagraph] = STATE(371), + [sym_enum_item] = STATE(371), + [sym_brace_group] = STATE(371), + [sym_mixed_group] = STATE(371), + [sym_text] = STATE(371), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(371), + [sym_inline_formula] = STATE(371), + [sym_begin] = STATE(65), + [sym_environment] = STATE(371), + [sym_caption] = STATE(371), + [sym_citation] = STATE(371), + [sym_package_include] = STATE(371), + [sym_class_include] = STATE(371), + [sym_biblatex_include] = STATE(371), + [sym_graphics_include] = STATE(371), + [sym_import] = STATE(371), + [sym_label_definition] = STATE(371), + [sym_label_reference] = STATE(371), + [sym_label_reference_range] = STATE(371), + [sym_label_number] = STATE(371), + [sym_command_definition] = STATE(371), + [sym_math_operator] = STATE(371), + [sym_glossary_entry_definition] = STATE(371), + [sym_glossary_entry_reference] = STATE(371), + [sym_acronym_definition] = STATE(371), + [sym_theorem_definition] = STATE(371), + [sym_generic_command] = STATE(371), + [aux_sym_paragraph_repeat1] = STATE(371), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2919), + [aux_sym_subsection_token1] = ACTIONS(2919), + [aux_sym_subsubsection_token1] = ACTIONS(2919), + [aux_sym_paragraph_token1] = ACTIONS(2919), + [aux_sym_subparagraph_token1] = ACTIONS(2933), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(5616), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [376] = { + [sym__simple_content] = 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(547), + [sym_displayed_equation] = STATE(374), + [sym_inline_formula] = STATE(374), + [sym_begin] = STATE(49), + [sym_environment] = STATE(374), + [sym_caption] = STATE(374), + [sym_citation] = STATE(374), + [sym_package_include] = STATE(374), + [sym_class_include] = STATE(374), + [sym_biblatex_include] = STATE(374), + [sym_graphics_include] = STATE(374), + [sym_import] = STATE(374), + [sym_label_definition] = STATE(374), + [sym_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_theorem_definition] = STATE(374), + [sym_generic_command] = STATE(374), + [aux_sym_subparagraph_repeat1] = STATE(374), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(3812), + [aux_sym_section_token1] = ACTIONS(3812), + [aux_sym_subsection_token1] = ACTIONS(3812), + [aux_sym_subsubsection_token1] = ACTIONS(3812), + [aux_sym_paragraph_token1] = ACTIONS(3812), + [aux_sym_subparagraph_token1] = ACTIONS(3812), + [anon_sym_BSLASHitem] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(5618), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [377] = { + [sym__simple_content] = STATE(370), + [sym_enum_item] = STATE(370), + [sym_brace_group] = STATE(370), + [sym_mixed_group] = STATE(370), + [sym_text] = STATE(370), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(370), + [sym_inline_formula] = STATE(370), + [sym_begin] = STATE(78), + [sym_environment] = STATE(370), + [sym_caption] = STATE(370), + [sym_citation] = STATE(370), + [sym_package_include] = STATE(370), + [sym_class_include] = STATE(370), + [sym_biblatex_include] = STATE(370), + [sym_graphics_include] = STATE(370), + [sym_import] = STATE(370), + [sym_label_definition] = STATE(370), + [sym_label_reference] = STATE(370), + [sym_label_reference_range] = STATE(370), + [sym_label_number] = STATE(370), + [sym_command_definition] = STATE(370), + [sym_math_operator] = STATE(370), + [sym_glossary_entry_definition] = STATE(370), + [sym_glossary_entry_reference] = STATE(370), + [sym_acronym_definition] = STATE(370), + [sym_theorem_definition] = STATE(370), + [sym_generic_command] = STATE(370), + [aux_sym_subparagraph_repeat1] = STATE(370), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3812), + [aux_sym_chapter_token1] = ACTIONS(3812), + [aux_sym_section_token1] = ACTIONS(3812), + [aux_sym_subsection_token1] = ACTIONS(3812), + [aux_sym_subsubsection_token1] = ACTIONS(3812), + [aux_sym_paragraph_token1] = ACTIONS(3812), + [aux_sym_subparagraph_token1] = ACTIONS(3812), + [anon_sym_BSLASHitem] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(5620), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(3812), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [378] = { + [sym__simple_content] = 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(547), + [sym_displayed_equation] = STATE(378), + [sym_inline_formula] = STATE(378), + [sym_begin] = STATE(49), + [sym_environment] = STATE(378), + [sym_caption] = STATE(378), + [sym_citation] = STATE(378), + [sym_package_include] = STATE(378), + [sym_class_include] = STATE(378), + [sym_biblatex_include] = STATE(378), + [sym_graphics_include] = STATE(378), + [sym_import] = STATE(378), + [sym_label_definition] = STATE(378), + [sym_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_theorem_definition] = STATE(378), + [sym_generic_command] = STATE(378), + [aux_sym_subparagraph_repeat1] = STATE(378), + [sym__generic_command_name] = ACTIONS(5622), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(3730), + [aux_sym_section_token1] = ACTIONS(3730), + [aux_sym_subsection_token1] = ACTIONS(3730), + [aux_sym_subsubsection_token1] = ACTIONS(3730), + [aux_sym_paragraph_token1] = ACTIONS(3730), + [aux_sym_subparagraph_token1] = ACTIONS(3730), + [anon_sym_BSLASHitem] = ACTIONS(5625), + [anon_sym_LBRACK] = ACTIONS(5628), + [anon_sym_RBRACK] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(5631), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(5628), + [anon_sym_COMMA] = ACTIONS(5634), + [anon_sym_EQ] = ACTIONS(5634), + [sym_word] = ACTIONS(5634), + [sym_param] = ACTIONS(5637), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5640), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5640), + [anon_sym_DOLLAR] = ACTIONS(5643), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5646), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHcaption] = ACTIONS(5649), + [aux_sym_citation_token1] = ACTIONS(5652), + [aux_sym_package_include_token1] = ACTIONS(5655), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5658), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5661), + [aux_sym_graphics_include_token1] = ACTIONS(5664), + [aux_sym_import_token1] = ACTIONS(5667), + [anon_sym_BSLASHlabel] = ACTIONS(5670), + [aux_sym_label_reference_token1] = ACTIONS(5673), + [aux_sym_label_reference_range_token1] = ACTIONS(5676), + [anon_sym_BSLASHnewlabel] = ACTIONS(5679), + [aux_sym_command_definition_token1] = ACTIONS(5682), + [aux_sym_math_operator_token1] = ACTIONS(5685), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5688), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5691), + [anon_sym_BSLASHnewacronym] = ACTIONS(5694), + [aux_sym_theorem_definition_token1] = ACTIONS(5697), + }, + [379] = { + [sym__simple_content] = STATE(379), + [sym_subparagraph] = STATE(379), + [sym_enum_item] = STATE(379), + [sym_brace_group] = STATE(379), + [sym_mixed_group] = STATE(379), + [sym_text] = STATE(379), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(379), + [sym_inline_formula] = STATE(379), + [sym_begin] = STATE(65), + [sym_environment] = STATE(379), + [sym_caption] = STATE(379), + [sym_citation] = STATE(379), + [sym_package_include] = STATE(379), + [sym_class_include] = STATE(379), + [sym_biblatex_include] = STATE(379), + [sym_graphics_include] = STATE(379), + [sym_import] = STATE(379), + [sym_label_definition] = STATE(379), + [sym_label_reference] = STATE(379), + [sym_label_reference_range] = STATE(379), + [sym_label_number] = STATE(379), + [sym_command_definition] = STATE(379), + [sym_math_operator] = STATE(379), + [sym_glossary_entry_definition] = STATE(379), + [sym_glossary_entry_reference] = STATE(379), + [sym_acronym_definition] = STATE(379), + [sym_theorem_definition] = STATE(379), + [sym_generic_command] = STATE(379), + [aux_sym_paragraph_repeat1] = STATE(379), + [sym__generic_command_name] = ACTIONS(5700), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2992), + [aux_sym_subsection_token1] = ACTIONS(2992), + [aux_sym_subsubsection_token1] = ACTIONS(2992), + [aux_sym_paragraph_token1] = ACTIONS(2992), + [aux_sym_subparagraph_token1] = ACTIONS(5703), + [anon_sym_BSLASHitem] = ACTIONS(5706), + [anon_sym_LBRACK] = ACTIONS(5709), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(5709), + [anon_sym_COMMA] = ACTIONS(5715), + [anon_sym_EQ] = ACTIONS(5715), + [sym_word] = ACTIONS(5715), + [sym_param] = ACTIONS(5718), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5721), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5721), + [anon_sym_DOLLAR] = ACTIONS(5724), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5727), + [anon_sym_BSLASHbegin] = ACTIONS(3021), + [anon_sym_BSLASHcaption] = ACTIONS(5730), + [aux_sym_citation_token1] = ACTIONS(5733), + [aux_sym_package_include_token1] = ACTIONS(5736), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5739), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5742), + [aux_sym_graphics_include_token1] = ACTIONS(5745), + [aux_sym_import_token1] = ACTIONS(5748), + [anon_sym_BSLASHlabel] = ACTIONS(5751), + [aux_sym_label_reference_token1] = ACTIONS(5754), + [aux_sym_label_reference_range_token1] = ACTIONS(5757), + [anon_sym_BSLASHnewlabel] = ACTIONS(5760), + [aux_sym_command_definition_token1] = ACTIONS(5763), + [aux_sym_math_operator_token1] = ACTIONS(5766), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5769), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5772), + [anon_sym_BSLASHnewacronym] = ACTIONS(5775), + [aux_sym_theorem_definition_token1] = ACTIONS(5778), + }, + [380] = { + [sym__simple_content] = STATE(364), + [sym_subsubsection] = STATE(364), + [sym_paragraph] = STATE(364), + [sym_subparagraph] = 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(773), + [sym_displayed_equation] = STATE(364), + [sym_inline_formula] = STATE(364), + [sym_begin] = STATE(113), + [sym_environment] = STATE(364), + [sym_caption] = STATE(364), + [sym_citation] = STATE(364), + [sym_package_include] = STATE(364), + [sym_class_include] = STATE(364), + [sym_biblatex_include] = STATE(364), + [sym_graphics_include] = STATE(364), + [sym_import] = STATE(364), + [sym_label_definition] = STATE(364), + [sym_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_theorem_definition] = STATE(364), + [sym_generic_command] = STATE(364), + [aux_sym_subsection_repeat1] = STATE(364), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(5297), + [aux_sym_paragraph_token1] = ACTIONS(5299), + [aux_sym_subparagraph_token1] = ACTIONS(5301), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(5781), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [381] = { + [sym__simple_content] = STATE(408), + [sym_subparagraph] = 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(698), + [sym_displayed_equation] = STATE(408), + [sym_inline_formula] = STATE(408), + [sym_begin] = STATE(84), + [sym_environment] = STATE(408), + [sym_caption] = STATE(408), + [sym_citation] = STATE(408), + [sym_package_include] = STATE(408), + [sym_class_include] = STATE(408), + [sym_biblatex_include] = STATE(408), + [sym_graphics_include] = STATE(408), + [sym_import] = STATE(408), + [sym_label_definition] = STATE(408), + [sym_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_theorem_definition] = STATE(408), + [sym_generic_command] = STATE(408), + [aux_sym_paragraph_repeat1] = STATE(408), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(2823), + [aux_sym_subsubsection_token1] = ACTIONS(2823), + [aux_sym_paragraph_token1] = ACTIONS(2823), + [aux_sym_subparagraph_token1] = ACTIONS(4198), + [anon_sym_BSLASHitem] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(5783), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [382] = { + [sym__simple_content] = STATE(382), + [sym_brace_group] = STATE(382), + [sym_mixed_group] = STATE(382), + [sym_text] = STATE(382), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(382), + [sym_inline_formula] = STATE(382), + [sym_begin] = STATE(108), + [sym_environment] = STATE(382), + [sym_caption] = STATE(382), + [sym_citation] = STATE(382), + [sym_package_include] = STATE(382), + [sym_class_include] = STATE(382), + [sym_biblatex_include] = STATE(382), + [sym_graphics_include] = STATE(382), + [sym_import] = STATE(382), + [sym_label_definition] = STATE(382), + [sym_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_theorem_definition] = STATE(382), + [sym_generic_command] = STATE(382), + [aux_sym_enum_item_repeat1] = STATE(382), + [sym__generic_command_name] = ACTIONS(5785), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4017), + [aux_sym_chapter_token1] = ACTIONS(4017), + [aux_sym_section_token1] = ACTIONS(4017), + [aux_sym_subsection_token1] = ACTIONS(4017), + [aux_sym_subsubsection_token1] = ACTIONS(4017), + [aux_sym_paragraph_token1] = ACTIONS(4017), + [aux_sym_subparagraph_token1] = ACTIONS(4017), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(5788), + [anon_sym_LBRACE] = ACTIONS(5791), + [anon_sym_LPAREN] = ACTIONS(5788), + [anon_sym_COMMA] = ACTIONS(5794), + [anon_sym_EQ] = ACTIONS(5794), + [sym_word] = ACTIONS(5794), + [sym_param] = ACTIONS(5797), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5800), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5800), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4012), + [anon_sym_DOLLAR] = ACTIONS(5803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5806), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(5809), + [aux_sym_citation_token1] = ACTIONS(5812), + [aux_sym_package_include_token1] = ACTIONS(5815), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5818), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5821), + [aux_sym_graphics_include_token1] = ACTIONS(5824), + [aux_sym_import_token1] = ACTIONS(5827), + [anon_sym_BSLASHlabel] = ACTIONS(5830), + [aux_sym_label_reference_token1] = ACTIONS(5833), + [aux_sym_label_reference_range_token1] = ACTIONS(5836), + [anon_sym_BSLASHnewlabel] = ACTIONS(5839), + [aux_sym_command_definition_token1] = ACTIONS(5842), + [aux_sym_math_operator_token1] = ACTIONS(5845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5848), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5851), + [anon_sym_BSLASHnewacronym] = ACTIONS(5854), + [aux_sym_theorem_definition_token1] = ACTIONS(5857), + }, + [383] = { + [sym__simple_content] = STATE(386), + [sym_brace_group] = STATE(386), + [sym_mixed_group] = STATE(386), + [sym_text] = STATE(386), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(386), + [sym_inline_formula] = STATE(386), + [sym_begin] = STATE(96), + [sym_environment] = STATE(386), + [sym_caption] = STATE(386), + [sym_citation] = STATE(386), + [sym_package_include] = STATE(386), + [sym_class_include] = STATE(386), + [sym_biblatex_include] = STATE(386), + [sym_graphics_include] = STATE(386), + [sym_import] = STATE(386), + [sym_label_definition] = STATE(386), + [sym_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_theorem_definition] = STATE(386), + [sym_generic_command] = STATE(386), + [aux_sym_enum_item_repeat1] = STATE(386), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4252), + [aux_sym_chapter_token1] = ACTIONS(4252), + [aux_sym_section_token1] = ACTIONS(4252), + [aux_sym_subsection_token1] = ACTIONS(4252), + [aux_sym_subsubsection_token1] = ACTIONS(4252), + [aux_sym_paragraph_token1] = ACTIONS(4252), + [aux_sym_subparagraph_token1] = ACTIONS(4252), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(5860), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4250), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [384] = { + [sym__simple_content] = STATE(405), + [sym_brace_group] = STATE(405), + [sym_mixed_group] = STATE(405), + [sym_text] = STATE(405), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(405), + [sym_inline_formula] = STATE(405), + [sym_begin] = STATE(78), + [sym_environment] = STATE(405), + [sym_caption] = STATE(405), + [sym_citation] = STATE(405), + [sym_package_include] = STATE(405), + [sym_class_include] = STATE(405), + [sym_biblatex_include] = STATE(405), + [sym_graphics_include] = STATE(405), + [sym_import] = STATE(405), + [sym_label_definition] = STATE(405), + [sym_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_theorem_definition] = STATE(405), + [sym_generic_command] = STATE(405), + [aux_sym_enum_item_repeat1] = STATE(405), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4008), + [aux_sym_chapter_token1] = ACTIONS(4008), + [aux_sym_section_token1] = ACTIONS(4008), + [aux_sym_subsection_token1] = ACTIONS(4008), + [aux_sym_subsubsection_token1] = ACTIONS(4008), + [aux_sym_paragraph_token1] = ACTIONS(4008), + [aux_sym_subparagraph_token1] = ACTIONS(4008), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(5862), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(4008), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [385] = { + [sym__simple_content] = STATE(404), + [sym_brace_group] = STATE(404), + [sym_mixed_group] = STATE(404), + [sym_text] = STATE(404), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(404), + [sym_inline_formula] = STATE(404), + [sym_begin] = STATE(78), + [sym_environment] = STATE(404), + [sym_caption] = STATE(404), + [sym_citation] = STATE(404), + [sym_package_include] = STATE(404), + [sym_class_include] = STATE(404), + [sym_biblatex_include] = STATE(404), + [sym_graphics_include] = STATE(404), + [sym_import] = STATE(404), + [sym_label_definition] = STATE(404), + [sym_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_theorem_definition] = STATE(404), + [sym_generic_command] = STATE(404), + [aux_sym_enum_item_repeat1] = STATE(404), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4186), + [aux_sym_chapter_token1] = ACTIONS(4186), + [aux_sym_section_token1] = ACTIONS(4186), + [aux_sym_subsection_token1] = ACTIONS(4186), + [aux_sym_subsubsection_token1] = ACTIONS(4186), + [aux_sym_paragraph_token1] = ACTIONS(4186), + [aux_sym_subparagraph_token1] = ACTIONS(4186), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(5864), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(4186), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [386] = { + [sym__simple_content] = STATE(386), + [sym_brace_group] = STATE(386), + [sym_mixed_group] = STATE(386), + [sym_text] = STATE(386), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(386), + [sym_inline_formula] = STATE(386), + [sym_begin] = STATE(96), + [sym_environment] = STATE(386), + [sym_caption] = STATE(386), + [sym_citation] = STATE(386), + [sym_package_include] = STATE(386), + [sym_class_include] = STATE(386), + [sym_biblatex_include] = STATE(386), + [sym_graphics_include] = STATE(386), + [sym_import] = STATE(386), + [sym_label_definition] = STATE(386), + [sym_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_theorem_definition] = STATE(386), + [sym_generic_command] = STATE(386), + [aux_sym_enum_item_repeat1] = STATE(386), + [sym__generic_command_name] = ACTIONS(5866), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4017), + [aux_sym_chapter_token1] = ACTIONS(4017), + [aux_sym_section_token1] = ACTIONS(4017), + [aux_sym_subsection_token1] = ACTIONS(4017), + [aux_sym_subsubsection_token1] = ACTIONS(4017), + [aux_sym_paragraph_token1] = ACTIONS(4017), + [aux_sym_subparagraph_token1] = ACTIONS(4017), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(5869), + [anon_sym_LBRACE] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5875), + [anon_sym_EQ] = ACTIONS(5875), + [sym_word] = ACTIONS(5875), + [sym_param] = ACTIONS(5878), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5881), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5881), + [anon_sym_DOLLAR] = ACTIONS(5884), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5887), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4012), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(5890), + [aux_sym_citation_token1] = ACTIONS(5893), + [aux_sym_package_include_token1] = ACTIONS(5896), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5899), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5902), + [aux_sym_graphics_include_token1] = ACTIONS(5905), + [aux_sym_import_token1] = ACTIONS(5908), + [anon_sym_BSLASHlabel] = ACTIONS(5911), + [aux_sym_label_reference_token1] = ACTIONS(5914), + [aux_sym_label_reference_range_token1] = ACTIONS(5917), + [anon_sym_BSLASHnewlabel] = ACTIONS(5920), + [aux_sym_command_definition_token1] = ACTIONS(5923), + [aux_sym_math_operator_token1] = ACTIONS(5926), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5929), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5932), + [anon_sym_BSLASHnewacronym] = ACTIONS(5935), + [aux_sym_theorem_definition_token1] = ACTIONS(5938), + }, + [387] = { + [sym__simple_content] = STATE(391), + [sym_brace_group] = STATE(391), + [sym_mixed_group] = STATE(391), + [sym_text] = STATE(391), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(391), + [sym_inline_formula] = STATE(391), + [sym_begin] = STATE(108), + [sym_environment] = STATE(391), + [sym_caption] = STATE(391), + [sym_citation] = STATE(391), + [sym_package_include] = STATE(391), + [sym_class_include] = STATE(391), + [sym_biblatex_include] = STATE(391), + [sym_graphics_include] = STATE(391), + [sym_import] = STATE(391), + [sym_label_definition] = STATE(391), + [sym_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_theorem_definition] = STATE(391), + [sym_generic_command] = STATE(391), + [aux_sym_enum_item_repeat1] = STATE(391), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4342), + [aux_sym_chapter_token1] = ACTIONS(4342), + [aux_sym_section_token1] = ACTIONS(4342), + [aux_sym_subsection_token1] = ACTIONS(4342), + [aux_sym_subsubsection_token1] = ACTIONS(4342), + [aux_sym_paragraph_token1] = ACTIONS(4342), + [aux_sym_subparagraph_token1] = ACTIONS(4342), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(5941), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(5943), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4340), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [388] = { + [sym__simple_content] = STATE(390), + [sym_brace_group] = STATE(390), + [sym_mixed_group] = STATE(390), + [sym_text] = STATE(390), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(390), + [sym_inline_formula] = STATE(390), + [sym_begin] = STATE(49), + [sym_environment] = STATE(390), + [sym_caption] = STATE(390), + [sym_citation] = STATE(390), + [sym_package_include] = STATE(390), + [sym_class_include] = STATE(390), + [sym_biblatex_include] = STATE(390), + [sym_graphics_include] = STATE(390), + [sym_import] = STATE(390), + [sym_label_definition] = STATE(390), + [sym_label_reference] = STATE(390), + [sym_label_reference_range] = STATE(390), + [sym_label_number] = STATE(390), + [sym_command_definition] = STATE(390), + [sym_math_operator] = STATE(390), + [sym_glossary_entry_definition] = STATE(390), + [sym_glossary_entry_reference] = STATE(390), + [sym_acronym_definition] = STATE(390), + [sym_theorem_definition] = STATE(390), + [sym_generic_command] = STATE(390), + [aux_sym_enum_item_repeat1] = STATE(390), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(4342), + [aux_sym_section_token1] = ACTIONS(4342), + [aux_sym_subsection_token1] = ACTIONS(4342), + [aux_sym_subsubsection_token1] = ACTIONS(4342), + [aux_sym_paragraph_token1] = ACTIONS(4342), + [aux_sym_subparagraph_token1] = ACTIONS(4342), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(5945), + [anon_sym_RBRACK] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(5947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [389] = { + [sym__simple_content] = STATE(383), + [sym_brace_group] = STATE(383), + [sym_mixed_group] = STATE(383), + [sym_text] = STATE(383), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(383), + [sym_inline_formula] = STATE(383), + [sym_begin] = STATE(96), + [sym_environment] = STATE(383), + [sym_caption] = STATE(383), + [sym_citation] = STATE(383), + [sym_package_include] = STATE(383), + [sym_class_include] = STATE(383), + [sym_biblatex_include] = STATE(383), + [sym_graphics_include] = STATE(383), + [sym_import] = STATE(383), + [sym_label_definition] = STATE(383), + [sym_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_theorem_definition] = STATE(383), + [sym_generic_command] = STATE(383), + [aux_sym_enum_item_repeat1] = STATE(383), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4186), + [aux_sym_chapter_token1] = ACTIONS(4186), + [aux_sym_section_token1] = ACTIONS(4186), + [aux_sym_subsection_token1] = ACTIONS(4186), + [aux_sym_subsubsection_token1] = ACTIONS(4186), + [aux_sym_paragraph_token1] = ACTIONS(4186), + [aux_sym_subparagraph_token1] = ACTIONS(4186), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(5949), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4184), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [390] = { + [sym__simple_content] = STATE(398), + [sym_brace_group] = STATE(398), + [sym_mixed_group] = STATE(398), + [sym_text] = STATE(398), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(398), + [sym_inline_formula] = STATE(398), + [sym_begin] = STATE(49), + [sym_environment] = STATE(398), + [sym_caption] = STATE(398), + [sym_citation] = STATE(398), + [sym_package_include] = STATE(398), + [sym_class_include] = STATE(398), + [sym_biblatex_include] = STATE(398), + [sym_graphics_include] = STATE(398), + [sym_import] = STATE(398), + [sym_label_definition] = STATE(398), + [sym_label_reference] = STATE(398), + [sym_label_reference_range] = STATE(398), + [sym_label_number] = STATE(398), + [sym_command_definition] = STATE(398), + [sym_math_operator] = STATE(398), + [sym_glossary_entry_definition] = STATE(398), + [sym_glossary_entry_reference] = STATE(398), + [sym_acronym_definition] = STATE(398), + [sym_theorem_definition] = STATE(398), + [sym_generic_command] = STATE(398), + [aux_sym_enum_item_repeat1] = STATE(398), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(4008), + [aux_sym_section_token1] = ACTIONS(4008), + [aux_sym_subsection_token1] = ACTIONS(4008), + [aux_sym_subsubsection_token1] = ACTIONS(4008), + [aux_sym_paragraph_token1] = ACTIONS(4008), + [aux_sym_subparagraph_token1] = ACTIONS(4008), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(5951), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [391] = { + [sym__simple_content] = STATE(382), + [sym_brace_group] = STATE(382), + [sym_mixed_group] = STATE(382), + [sym_text] = STATE(382), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(382), + [sym_inline_formula] = STATE(382), + [sym_begin] = STATE(108), + [sym_environment] = STATE(382), + [sym_caption] = STATE(382), + [sym_citation] = STATE(382), + [sym_package_include] = STATE(382), + [sym_class_include] = STATE(382), + [sym_biblatex_include] = STATE(382), + [sym_graphics_include] = STATE(382), + [sym_import] = STATE(382), + [sym_label_definition] = STATE(382), + [sym_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_theorem_definition] = STATE(382), + [sym_generic_command] = STATE(382), + [aux_sym_enum_item_repeat1] = STATE(382), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4008), + [aux_sym_chapter_token1] = ACTIONS(4008), + [aux_sym_section_token1] = ACTIONS(4008), + [aux_sym_subsection_token1] = ACTIONS(4008), + [aux_sym_subsubsection_token1] = ACTIONS(4008), + [aux_sym_paragraph_token1] = ACTIONS(4008), + [aux_sym_subparagraph_token1] = ACTIONS(4008), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(5953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4006), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [392] = { + [sym__simple_content] = STATE(396), + [sym_brace_group] = STATE(396), + [sym_mixed_group] = STATE(396), + [sym_text] = STATE(396), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(396), + [sym_inline_formula] = STATE(396), + [sym_begin] = STATE(49), + [sym_environment] = STATE(396), + [sym_caption] = STATE(396), + [sym_citation] = STATE(396), + [sym_package_include] = STATE(396), + [sym_class_include] = STATE(396), + [sym_biblatex_include] = STATE(396), + [sym_graphics_include] = STATE(396), + [sym_import] = STATE(396), + [sym_label_definition] = STATE(396), + [sym_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_theorem_definition] = STATE(396), + [sym_generic_command] = STATE(396), + [aux_sym_enum_item_repeat1] = STATE(396), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(4186), + [aux_sym_section_token1] = ACTIONS(4186), + [aux_sym_subsection_token1] = ACTIONS(4186), + [aux_sym_subsubsection_token1] = ACTIONS(4186), + [aux_sym_paragraph_token1] = ACTIONS(4186), + [aux_sym_subparagraph_token1] = ACTIONS(4186), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(5955), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [393] = { + [sym__simple_content] = 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(559), + [sym_displayed_equation] = STATE(393), + [sym_inline_formula] = STATE(393), + [sym_begin] = STATE(65), + [sym_environment] = STATE(393), + [sym_caption] = STATE(393), + [sym_citation] = STATE(393), + [sym_package_include] = STATE(393), + [sym_class_include] = STATE(393), + [sym_biblatex_include] = STATE(393), + [sym_graphics_include] = STATE(393), + [sym_import] = STATE(393), + [sym_label_definition] = STATE(393), + [sym_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_theorem_definition] = STATE(393), + [sym_generic_command] = STATE(393), + [aux_sym_subparagraph_repeat1] = STATE(393), + [sym__generic_command_name] = ACTIONS(5957), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(3730), + [aux_sym_subsection_token1] = ACTIONS(3730), + [aux_sym_subsubsection_token1] = ACTIONS(3730), + [aux_sym_paragraph_token1] = ACTIONS(3730), + [aux_sym_subparagraph_token1] = ACTIONS(3730), + [anon_sym_BSLASHitem] = ACTIONS(5960), + [anon_sym_LBRACK] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(5966), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(5963), + [anon_sym_COMMA] = ACTIONS(5969), + [anon_sym_EQ] = ACTIONS(5969), + [sym_word] = ACTIONS(5969), + [sym_param] = ACTIONS(5972), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5975), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5975), + [anon_sym_DOLLAR] = ACTIONS(5978), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5981), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHcaption] = ACTIONS(5984), + [aux_sym_citation_token1] = ACTIONS(5987), + [aux_sym_package_include_token1] = ACTIONS(5990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5996), + [aux_sym_graphics_include_token1] = ACTIONS(5999), + [aux_sym_import_token1] = ACTIONS(6002), + [anon_sym_BSLASHlabel] = ACTIONS(6005), + [aux_sym_label_reference_token1] = ACTIONS(6008), + [aux_sym_label_reference_range_token1] = ACTIONS(6011), + [anon_sym_BSLASHnewlabel] = ACTIONS(6014), + [aux_sym_command_definition_token1] = ACTIONS(6017), + [aux_sym_math_operator_token1] = ACTIONS(6020), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6023), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6026), + [anon_sym_BSLASHnewacronym] = ACTIONS(6029), + [aux_sym_theorem_definition_token1] = ACTIONS(6032), + }, + [394] = { + [sym__simple_content] = STATE(384), + [sym_brace_group] = STATE(384), + [sym_mixed_group] = STATE(384), + [sym_text] = STATE(384), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(384), + [sym_inline_formula] = STATE(384), + [sym_begin] = STATE(78), + [sym_environment] = STATE(384), + [sym_caption] = STATE(384), + [sym_citation] = STATE(384), + [sym_package_include] = STATE(384), + [sym_class_include] = STATE(384), + [sym_biblatex_include] = STATE(384), + [sym_graphics_include] = STATE(384), + [sym_import] = STATE(384), + [sym_label_definition] = STATE(384), + [sym_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_theorem_definition] = STATE(384), + [sym_generic_command] = STATE(384), + [aux_sym_enum_item_repeat1] = STATE(384), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4342), + [aux_sym_chapter_token1] = ACTIONS(4342), + [aux_sym_section_token1] = ACTIONS(4342), + [aux_sym_subsection_token1] = ACTIONS(4342), + [aux_sym_subsubsection_token1] = ACTIONS(4342), + [aux_sym_paragraph_token1] = ACTIONS(4342), + [aux_sym_subparagraph_token1] = ACTIONS(4342), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(6035), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(6037), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(4342), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [395] = { + [sym__simple_content] = STATE(406), + [sym_paragraph] = STATE(406), + [sym_subparagraph] = STATE(406), + [sym_enum_item] = STATE(406), + [sym_brace_group] = STATE(406), + [sym_mixed_group] = STATE(406), + [sym_text] = STATE(406), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(406), + [sym_inline_formula] = STATE(406), + [sym_begin] = STATE(113), + [sym_environment] = STATE(406), + [sym_caption] = STATE(406), + [sym_citation] = STATE(406), + [sym_package_include] = STATE(406), + [sym_class_include] = STATE(406), + [sym_biblatex_include] = STATE(406), + [sym_graphics_include] = STATE(406), + [sym_import] = STATE(406), + [sym_label_definition] = STATE(406), + [sym_label_reference] = STATE(406), + [sym_label_reference_range] = STATE(406), + [sym_label_number] = STATE(406), + [sym_command_definition] = STATE(406), + [sym_math_operator] = STATE(406), + [sym_glossary_entry_definition] = STATE(406), + [sym_glossary_entry_reference] = STATE(406), + [sym_acronym_definition] = STATE(406), + [sym_theorem_definition] = STATE(406), + [sym_generic_command] = STATE(406), + [aux_sym_subsubsection_repeat1] = STATE(406), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(2434), + [aux_sym_paragraph_token1] = ACTIONS(5299), + [aux_sym_subparagraph_token1] = ACTIONS(5301), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(6039), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [396] = { + [sym__simple_content] = STATE(398), + [sym_brace_group] = STATE(398), + [sym_mixed_group] = STATE(398), + [sym_text] = STATE(398), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(398), + [sym_inline_formula] = STATE(398), + [sym_begin] = STATE(49), + [sym_environment] = STATE(398), + [sym_caption] = STATE(398), + [sym_citation] = STATE(398), + [sym_package_include] = STATE(398), + [sym_class_include] = STATE(398), + [sym_biblatex_include] = STATE(398), + [sym_graphics_include] = STATE(398), + [sym_import] = STATE(398), + [sym_label_definition] = STATE(398), + [sym_label_reference] = STATE(398), + [sym_label_reference_range] = STATE(398), + [sym_label_number] = STATE(398), + [sym_command_definition] = STATE(398), + [sym_math_operator] = STATE(398), + [sym_glossary_entry_definition] = STATE(398), + [sym_glossary_entry_reference] = STATE(398), + [sym_acronym_definition] = STATE(398), + [sym_theorem_definition] = STATE(398), + [sym_generic_command] = STATE(398), + [aux_sym_enum_item_repeat1] = STATE(398), + [sym__generic_command_name] = ACTIONS(1648), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(4252), + [aux_sym_section_token1] = ACTIONS(4252), + [aux_sym_subsection_token1] = ACTIONS(4252), + [aux_sym_subsubsection_token1] = ACTIONS(4252), + [aux_sym_paragraph_token1] = ACTIONS(4252), + [aux_sym_subparagraph_token1] = ACTIONS(4252), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [sym_word] = ACTIONS(1668), + [sym_param] = ACTIONS(5951), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1672), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1676), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(1678), + [aux_sym_citation_token1] = ACTIONS(1680), + [aux_sym_package_include_token1] = ACTIONS(1682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1684), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1686), + [aux_sym_graphics_include_token1] = ACTIONS(1688), + [aux_sym_import_token1] = ACTIONS(1690), + [anon_sym_BSLASHlabel] = ACTIONS(1692), + [aux_sym_label_reference_token1] = ACTIONS(1694), + [aux_sym_label_reference_range_token1] = ACTIONS(1696), + [anon_sym_BSLASHnewlabel] = ACTIONS(1698), + [aux_sym_command_definition_token1] = ACTIONS(1700), + [aux_sym_math_operator_token1] = ACTIONS(1702), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1704), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(1706), + [anon_sym_BSLASHnewacronym] = ACTIONS(1708), + [aux_sym_theorem_definition_token1] = ACTIONS(1710), + }, + [397] = { + [sym__simple_content] = STATE(407), + [sym_enum_item] = STATE(407), + [sym_brace_group] = STATE(407), + [sym_mixed_group] = STATE(407), + [sym_text] = STATE(407), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(407), + [sym_inline_formula] = STATE(407), + [sym_begin] = STATE(65), + [sym_environment] = STATE(407), + [sym_caption] = STATE(407), + [sym_citation] = STATE(407), + [sym_package_include] = STATE(407), + [sym_class_include] = STATE(407), + [sym_biblatex_include] = STATE(407), + [sym_graphics_include] = STATE(407), + [sym_import] = STATE(407), + [sym_label_definition] = STATE(407), + [sym_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_theorem_definition] = STATE(407), + [sym_generic_command] = STATE(407), + [aux_sym_subparagraph_repeat1] = STATE(407), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(3812), + [aux_sym_subsection_token1] = ACTIONS(3812), + [aux_sym_subsubsection_token1] = ACTIONS(3812), + [aux_sym_paragraph_token1] = ACTIONS(3812), + [aux_sym_subparagraph_token1] = ACTIONS(3812), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(6041), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [398] = { + [sym__simple_content] = STATE(398), + [sym_brace_group] = STATE(398), + [sym_mixed_group] = STATE(398), + [sym_text] = STATE(398), + [sym__text_fragment] = STATE(547), + [sym_displayed_equation] = STATE(398), + [sym_inline_formula] = STATE(398), + [sym_begin] = STATE(49), + [sym_environment] = STATE(398), + [sym_caption] = STATE(398), + [sym_citation] = STATE(398), + [sym_package_include] = STATE(398), + [sym_class_include] = STATE(398), + [sym_biblatex_include] = STATE(398), + [sym_graphics_include] = STATE(398), + [sym_import] = STATE(398), + [sym_label_definition] = STATE(398), + [sym_label_reference] = STATE(398), + [sym_label_reference_range] = STATE(398), + [sym_label_number] = STATE(398), + [sym_command_definition] = STATE(398), + [sym_math_operator] = STATE(398), + [sym_glossary_entry_definition] = STATE(398), + [sym_glossary_entry_reference] = STATE(398), + [sym_acronym_definition] = STATE(398), + [sym_theorem_definition] = STATE(398), + [sym_generic_command] = STATE(398), + [aux_sym_enum_item_repeat1] = STATE(398), + [sym__generic_command_name] = ACTIONS(6043), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(4017), + [aux_sym_section_token1] = ACTIONS(4017), + [aux_sym_subsection_token1] = ACTIONS(4017), + [aux_sym_subsubsection_token1] = ACTIONS(4017), + [aux_sym_paragraph_token1] = ACTIONS(4017), + [aux_sym_subparagraph_token1] = ACTIONS(4017), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(6046), + [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(6049), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(6046), + [anon_sym_COMMA] = ACTIONS(6052), + [anon_sym_EQ] = ACTIONS(6052), + [sym_word] = ACTIONS(6052), + [sym_param] = ACTIONS(6055), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6058), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6058), + [anon_sym_DOLLAR] = ACTIONS(6061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6064), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(6067), + [aux_sym_citation_token1] = ACTIONS(6070), + [aux_sym_package_include_token1] = ACTIONS(6073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6076), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6079), + [aux_sym_graphics_include_token1] = ACTIONS(6082), + [aux_sym_import_token1] = ACTIONS(6085), + [anon_sym_BSLASHlabel] = ACTIONS(6088), + [aux_sym_label_reference_token1] = ACTIONS(6091), + [aux_sym_label_reference_range_token1] = ACTIONS(6094), + [anon_sym_BSLASHnewlabel] = ACTIONS(6097), + [aux_sym_command_definition_token1] = ACTIONS(6100), + [aux_sym_math_operator_token1] = ACTIONS(6103), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6106), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6109), + [anon_sym_BSLASHnewacronym] = ACTIONS(6112), + [aux_sym_theorem_definition_token1] = ACTIONS(6115), + }, + [399] = { + [sym__simple_content] = STATE(399), + [sym_paragraph] = STATE(399), + [sym_subparagraph] = STATE(399), + [sym_enum_item] = STATE(399), + [sym_brace_group] = STATE(399), + [sym_mixed_group] = STATE(399), + [sym_text] = STATE(399), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(399), + [sym_inline_formula] = STATE(399), + [sym_begin] = STATE(113), + [sym_environment] = STATE(399), + [sym_caption] = STATE(399), + [sym_citation] = STATE(399), + [sym_package_include] = STATE(399), + [sym_class_include] = STATE(399), + [sym_biblatex_include] = STATE(399), + [sym_graphics_include] = STATE(399), + [sym_import] = STATE(399), + [sym_label_definition] = STATE(399), + [sym_label_reference] = STATE(399), + [sym_label_reference_range] = STATE(399), + [sym_label_number] = STATE(399), + [sym_command_definition] = STATE(399), + [sym_math_operator] = STATE(399), + [sym_glossary_entry_definition] = STATE(399), + [sym_glossary_entry_reference] = STATE(399), + [sym_acronym_definition] = STATE(399), + [sym_theorem_definition] = STATE(399), + [sym_generic_command] = STATE(399), + [aux_sym_subsubsection_repeat1] = STATE(399), + [sym__generic_command_name] = ACTIONS(6118), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(2443), + [aux_sym_paragraph_token1] = ACTIONS(6121), + [aux_sym_subparagraph_token1] = ACTIONS(6124), + [anon_sym_BSLASHitem] = ACTIONS(6127), + [anon_sym_LBRACK] = ACTIONS(6130), + [anon_sym_RBRACK] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(6133), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(6130), + [anon_sym_COMMA] = ACTIONS(6136), + [anon_sym_EQ] = ACTIONS(6136), + [sym_word] = ACTIONS(6136), + [sym_param] = ACTIONS(6139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6142), + [anon_sym_DOLLAR] = ACTIONS(6145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6148), + [anon_sym_BSLASHbegin] = ACTIONS(2475), + [anon_sym_BSLASHcaption] = ACTIONS(6151), + [aux_sym_citation_token1] = ACTIONS(6154), + [aux_sym_package_include_token1] = ACTIONS(6157), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6163), + [aux_sym_graphics_include_token1] = ACTIONS(6166), + [aux_sym_import_token1] = ACTIONS(6169), + [anon_sym_BSLASHlabel] = ACTIONS(6172), + [aux_sym_label_reference_token1] = ACTIONS(6175), + [aux_sym_label_reference_range_token1] = ACTIONS(6178), + [anon_sym_BSLASHnewlabel] = ACTIONS(6181), + [aux_sym_command_definition_token1] = ACTIONS(6184), + [aux_sym_math_operator_token1] = ACTIONS(6187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6190), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6193), + [anon_sym_BSLASHnewacronym] = ACTIONS(6196), + [aux_sym_theorem_definition_token1] = ACTIONS(6199), + }, + [400] = { + [sym__simple_content] = STATE(401), + [sym_brace_group] = STATE(401), + [sym_mixed_group] = STATE(401), + [sym_text] = STATE(401), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(401), + [sym_inline_formula] = STATE(401), + [sym_begin] = STATE(108), + [sym_environment] = STATE(401), + [sym_caption] = STATE(401), + [sym_citation] = STATE(401), + [sym_package_include] = STATE(401), + [sym_class_include] = STATE(401), + [sym_biblatex_include] = STATE(401), + [sym_graphics_include] = STATE(401), + [sym_import] = STATE(401), + [sym_label_definition] = STATE(401), + [sym_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_theorem_definition] = STATE(401), + [sym_generic_command] = STATE(401), + [aux_sym_enum_item_repeat1] = STATE(401), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4186), + [aux_sym_chapter_token1] = ACTIONS(4186), + [aux_sym_section_token1] = ACTIONS(4186), + [aux_sym_subsection_token1] = ACTIONS(4186), + [aux_sym_subsubsection_token1] = ACTIONS(4186), + [aux_sym_paragraph_token1] = ACTIONS(4186), + [aux_sym_subparagraph_token1] = ACTIONS(4186), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(6202), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4184), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [401] = { + [sym__simple_content] = STATE(382), + [sym_brace_group] = STATE(382), + [sym_mixed_group] = STATE(382), + [sym_text] = STATE(382), + [sym__text_fragment] = STATE(543), + [sym_displayed_equation] = STATE(382), + [sym_inline_formula] = STATE(382), + [sym_begin] = STATE(108), + [sym_environment] = STATE(382), + [sym_caption] = STATE(382), + [sym_citation] = STATE(382), + [sym_package_include] = STATE(382), + [sym_class_include] = STATE(382), + [sym_biblatex_include] = STATE(382), + [sym_graphics_include] = STATE(382), + [sym_import] = STATE(382), + [sym_label_definition] = STATE(382), + [sym_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_theorem_definition] = STATE(382), + [sym_generic_command] = STATE(382), + [aux_sym_enum_item_repeat1] = STATE(382), + [sym__generic_command_name] = ACTIONS(223), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4252), + [aux_sym_chapter_token1] = ACTIONS(4252), + [aux_sym_section_token1] = ACTIONS(4252), + [aux_sym_subsection_token1] = ACTIONS(4252), + [aux_sym_subsubsection_token1] = ACTIONS(4252), + [aux_sym_paragraph_token1] = ACTIONS(4252), + [aux_sym_subparagraph_token1] = ACTIONS(4252), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [sym_word] = ACTIONS(235), + [sym_param] = ACTIONS(5953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4250), + [anon_sym_DOLLAR] = ACTIONS(243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(245), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(247), + [aux_sym_citation_token1] = ACTIONS(249), + [aux_sym_package_include_token1] = ACTIONS(251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(255), + [aux_sym_graphics_include_token1] = ACTIONS(257), + [aux_sym_import_token1] = ACTIONS(259), + [anon_sym_BSLASHlabel] = ACTIONS(261), + [aux_sym_label_reference_token1] = ACTIONS(263), + [aux_sym_label_reference_range_token1] = ACTIONS(265), + [anon_sym_BSLASHnewlabel] = ACTIONS(267), + [aux_sym_command_definition_token1] = ACTIONS(269), + [aux_sym_math_operator_token1] = ACTIONS(271), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(275), + [anon_sym_BSLASHnewacronym] = ACTIONS(277), + [aux_sym_theorem_definition_token1] = ACTIONS(279), + }, + [402] = { + [sym__simple_content] = STATE(409), + [sym_brace_group] = STATE(409), + [sym_mixed_group] = STATE(409), + [sym_text] = STATE(409), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(409), + [sym_inline_formula] = STATE(409), + [sym_begin] = STATE(96), + [sym_environment] = STATE(409), + [sym_caption] = STATE(409), + [sym_citation] = STATE(409), + [sym_package_include] = STATE(409), + [sym_class_include] = STATE(409), + [sym_biblatex_include] = STATE(409), + [sym_graphics_include] = STATE(409), + [sym_import] = STATE(409), + [sym_label_definition] = STATE(409), + [sym_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_theorem_definition] = STATE(409), + [sym_generic_command] = STATE(409), + [aux_sym_enum_item_repeat1] = STATE(409), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4342), + [aux_sym_chapter_token1] = ACTIONS(4342), + [aux_sym_section_token1] = ACTIONS(4342), + [aux_sym_subsection_token1] = ACTIONS(4342), + [aux_sym_subsubsection_token1] = ACTIONS(4342), + [aux_sym_paragraph_token1] = ACTIONS(4342), + [aux_sym_subparagraph_token1] = ACTIONS(4342), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(6204), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(6206), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4340), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [403] = { + [sym__simple_content] = STATE(381), + [sym_subparagraph] = STATE(381), + [sym_enum_item] = STATE(381), + [sym_brace_group] = STATE(381), + [sym_mixed_group] = STATE(381), + [sym_text] = STATE(381), + [sym__text_fragment] = STATE(698), + [sym_displayed_equation] = STATE(381), + [sym_inline_formula] = STATE(381), + [sym_begin] = STATE(84), + [sym_environment] = STATE(381), + [sym_caption] = STATE(381), + [sym_citation] = STATE(381), + [sym_package_include] = STATE(381), + [sym_class_include] = STATE(381), + [sym_biblatex_include] = STATE(381), + [sym_graphics_include] = STATE(381), + [sym_import] = STATE(381), + [sym_label_definition] = STATE(381), + [sym_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_theorem_definition] = STATE(381), + [sym_generic_command] = STATE(381), + [aux_sym_paragraph_repeat1] = STATE(381), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(2919), + [aux_sym_subsubsection_token1] = ACTIONS(2919), + [aux_sym_paragraph_token1] = ACTIONS(2919), + [aux_sym_subparagraph_token1] = ACTIONS(4198), + [anon_sym_BSLASHitem] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(6208), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [404] = { + [sym__simple_content] = STATE(405), + [sym_brace_group] = STATE(405), + [sym_mixed_group] = STATE(405), + [sym_text] = STATE(405), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(405), + [sym_inline_formula] = STATE(405), + [sym_begin] = STATE(78), + [sym_environment] = STATE(405), + [sym_caption] = STATE(405), + [sym_citation] = STATE(405), + [sym_package_include] = STATE(405), + [sym_class_include] = STATE(405), + [sym_biblatex_include] = STATE(405), + [sym_graphics_include] = STATE(405), + [sym_import] = STATE(405), + [sym_label_definition] = STATE(405), + [sym_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_theorem_definition] = STATE(405), + [sym_generic_command] = STATE(405), + [aux_sym_enum_item_repeat1] = STATE(405), + [sym__generic_command_name] = ACTIONS(337), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4252), + [aux_sym_chapter_token1] = ACTIONS(4252), + [aux_sym_section_token1] = ACTIONS(4252), + [aux_sym_subsection_token1] = ACTIONS(4252), + [aux_sym_subsubsection_token1] = ACTIONS(4252), + [aux_sym_paragraph_token1] = ACTIONS(4252), + [aux_sym_subparagraph_token1] = ACTIONS(4252), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(359), + [sym_word] = ACTIONS(359), + [sym_param] = ACTIONS(5862), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(367), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(4252), + [anon_sym_BSLASHcaption] = ACTIONS(371), + [aux_sym_citation_token1] = ACTIONS(373), + [aux_sym_package_include_token1] = ACTIONS(375), + [anon_sym_BSLASHdocumentclass] = ACTIONS(377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(379), + [aux_sym_graphics_include_token1] = ACTIONS(381), + [aux_sym_import_token1] = ACTIONS(383), + [anon_sym_BSLASHlabel] = ACTIONS(385), + [aux_sym_label_reference_token1] = ACTIONS(387), + [aux_sym_label_reference_range_token1] = ACTIONS(389), + [anon_sym_BSLASHnewlabel] = ACTIONS(391), + [aux_sym_command_definition_token1] = ACTIONS(393), + [aux_sym_math_operator_token1] = ACTIONS(395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(397), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(399), + [anon_sym_BSLASHnewacronym] = ACTIONS(401), + [aux_sym_theorem_definition_token1] = ACTIONS(403), + }, + [405] = { + [sym__simple_content] = STATE(405), + [sym_brace_group] = STATE(405), + [sym_mixed_group] = STATE(405), + [sym_text] = STATE(405), + [sym__text_fragment] = STATE(542), + [sym_displayed_equation] = STATE(405), + [sym_inline_formula] = STATE(405), + [sym_begin] = STATE(78), + [sym_environment] = STATE(405), + [sym_caption] = STATE(405), + [sym_citation] = STATE(405), + [sym_package_include] = STATE(405), + [sym_class_include] = STATE(405), + [sym_biblatex_include] = STATE(405), + [sym_graphics_include] = STATE(405), + [sym_import] = STATE(405), + [sym_label_definition] = STATE(405), + [sym_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_theorem_definition] = STATE(405), + [sym_generic_command] = STATE(405), + [aux_sym_enum_item_repeat1] = STATE(405), + [sym__generic_command_name] = ACTIONS(6210), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4017), + [aux_sym_chapter_token1] = ACTIONS(4017), + [aux_sym_section_token1] = ACTIONS(4017), + [aux_sym_subsection_token1] = ACTIONS(4017), + [aux_sym_subsubsection_token1] = ACTIONS(4017), + [aux_sym_paragraph_token1] = ACTIONS(4017), + [aux_sym_subparagraph_token1] = ACTIONS(4017), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(6213), + [anon_sym_LBRACE] = ACTIONS(6216), + [anon_sym_LPAREN] = ACTIONS(6213), + [anon_sym_COMMA] = ACTIONS(6219), + [anon_sym_EQ] = ACTIONS(6219), + [sym_word] = ACTIONS(6219), + [sym_param] = ACTIONS(6222), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6225), + [anon_sym_DOLLAR] = ACTIONS(6228), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6231), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHend] = ACTIONS(4017), + [anon_sym_BSLASHcaption] = ACTIONS(6234), + [aux_sym_citation_token1] = ACTIONS(6237), + [aux_sym_package_include_token1] = ACTIONS(6240), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6246), + [aux_sym_graphics_include_token1] = ACTIONS(6249), + [aux_sym_import_token1] = ACTIONS(6252), + [anon_sym_BSLASHlabel] = ACTIONS(6255), + [aux_sym_label_reference_token1] = ACTIONS(6258), + [aux_sym_label_reference_range_token1] = ACTIONS(6261), + [anon_sym_BSLASHnewlabel] = ACTIONS(6264), + [aux_sym_command_definition_token1] = ACTIONS(6267), + [aux_sym_math_operator_token1] = ACTIONS(6270), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6276), + [anon_sym_BSLASHnewacronym] = ACTIONS(6279), + [aux_sym_theorem_definition_token1] = ACTIONS(6282), + }, + [406] = { + [sym__simple_content] = STATE(399), + [sym_paragraph] = STATE(399), + [sym_subparagraph] = STATE(399), + [sym_enum_item] = STATE(399), + [sym_brace_group] = STATE(399), + [sym_mixed_group] = STATE(399), + [sym_text] = STATE(399), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(399), + [sym_inline_formula] = STATE(399), + [sym_begin] = STATE(113), + [sym_environment] = STATE(399), + [sym_caption] = STATE(399), + [sym_citation] = STATE(399), + [sym_package_include] = STATE(399), + [sym_class_include] = STATE(399), + [sym_biblatex_include] = STATE(399), + [sym_graphics_include] = STATE(399), + [sym_import] = STATE(399), + [sym_label_definition] = STATE(399), + [sym_label_reference] = STATE(399), + [sym_label_reference_range] = STATE(399), + [sym_label_number] = STATE(399), + [sym_command_definition] = STATE(399), + [sym_math_operator] = STATE(399), + [sym_glossary_entry_definition] = STATE(399), + [sym_glossary_entry_reference] = STATE(399), + [sym_acronym_definition] = STATE(399), + [sym_theorem_definition] = STATE(399), + [sym_generic_command] = STATE(399), + [aux_sym_subsubsection_repeat1] = STATE(399), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(2721), + [aux_sym_paragraph_token1] = ACTIONS(5299), + [aux_sym_subparagraph_token1] = ACTIONS(5301), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(6285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [407] = { + [sym__simple_content] = 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(559), + [sym_displayed_equation] = STATE(393), + [sym_inline_formula] = STATE(393), + [sym_begin] = STATE(65), + [sym_environment] = STATE(393), + [sym_caption] = STATE(393), + [sym_citation] = STATE(393), + [sym_package_include] = STATE(393), + [sym_class_include] = STATE(393), + [sym_biblatex_include] = STATE(393), + [sym_graphics_include] = STATE(393), + [sym_import] = STATE(393), + [sym_label_definition] = STATE(393), + [sym_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_theorem_definition] = STATE(393), + [sym_generic_command] = STATE(393), + [aux_sym_subparagraph_repeat1] = STATE(393), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(3818), + [aux_sym_subsection_token1] = ACTIONS(3818), + [aux_sym_subsubsection_token1] = ACTIONS(3818), + [aux_sym_paragraph_token1] = ACTIONS(3818), + [aux_sym_subparagraph_token1] = ACTIONS(3818), + [anon_sym_BSLASHitem] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(6287), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [408] = { + [sym__simple_content] = STATE(408), + [sym_subparagraph] = 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(698), + [sym_displayed_equation] = STATE(408), + [sym_inline_formula] = STATE(408), + [sym_begin] = STATE(84), + [sym_environment] = STATE(408), + [sym_caption] = STATE(408), + [sym_citation] = STATE(408), + [sym_package_include] = STATE(408), + [sym_class_include] = STATE(408), + [sym_biblatex_include] = STATE(408), + [sym_graphics_include] = STATE(408), + [sym_import] = STATE(408), + [sym_label_definition] = STATE(408), + [sym_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_theorem_definition] = STATE(408), + [sym_generic_command] = STATE(408), + [aux_sym_paragraph_repeat1] = STATE(408), + [sym__generic_command_name] = ACTIONS(6289), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(2992), + [aux_sym_subsubsection_token1] = ACTIONS(2992), + [aux_sym_paragraph_token1] = ACTIONS(2992), + [aux_sym_subparagraph_token1] = ACTIONS(6292), + [anon_sym_BSLASHitem] = ACTIONS(6295), + [anon_sym_LBRACK] = ACTIONS(6298), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(6301), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(6298), + [anon_sym_COMMA] = ACTIONS(6304), + [anon_sym_EQ] = ACTIONS(6304), + [sym_word] = ACTIONS(6304), + [sym_param] = ACTIONS(6307), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6310), + [anon_sym_DOLLAR] = ACTIONS(6313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6316), + [anon_sym_BSLASHbegin] = ACTIONS(3021), + [anon_sym_BSLASHcaption] = ACTIONS(6319), + [aux_sym_citation_token1] = ACTIONS(6322), + [aux_sym_package_include_token1] = ACTIONS(6325), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6328), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6331), + [aux_sym_graphics_include_token1] = ACTIONS(6334), + [aux_sym_import_token1] = ACTIONS(6337), + [anon_sym_BSLASHlabel] = ACTIONS(6340), + [aux_sym_label_reference_token1] = ACTIONS(6343), + [aux_sym_label_reference_range_token1] = ACTIONS(6346), + [anon_sym_BSLASHnewlabel] = ACTIONS(6349), + [aux_sym_command_definition_token1] = ACTIONS(6352), + [aux_sym_math_operator_token1] = ACTIONS(6355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6358), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6361), + [anon_sym_BSLASHnewacronym] = ACTIONS(6364), + [aux_sym_theorem_definition_token1] = ACTIONS(6367), + }, + [409] = { + [sym__simple_content] = STATE(386), + [sym_brace_group] = STATE(386), + [sym_mixed_group] = STATE(386), + [sym_text] = STATE(386), + [sym__text_fragment] = STATE(550), + [sym_displayed_equation] = STATE(386), + [sym_inline_formula] = STATE(386), + [sym_begin] = STATE(96), + [sym_environment] = STATE(386), + [sym_caption] = STATE(386), + [sym_citation] = STATE(386), + [sym_package_include] = STATE(386), + [sym_class_include] = STATE(386), + [sym_biblatex_include] = STATE(386), + [sym_graphics_include] = STATE(386), + [sym_import] = STATE(386), + [sym_label_definition] = STATE(386), + [sym_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_theorem_definition] = STATE(386), + [sym_generic_command] = STATE(386), + [aux_sym_enum_item_repeat1] = STATE(386), + [sym__generic_command_name] = ACTIONS(281), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4008), + [aux_sym_chapter_token1] = ACTIONS(4008), + [aux_sym_section_token1] = ACTIONS(4008), + [aux_sym_subsection_token1] = ACTIONS(4008), + [aux_sym_subsubsection_token1] = ACTIONS(4008), + [aux_sym_paragraph_token1] = ACTIONS(4008), + [aux_sym_subparagraph_token1] = ACTIONS(4008), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(289), + [sym_word] = ACTIONS(289), + [sym_param] = ACTIONS(5860), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4006), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(299), + [aux_sym_citation_token1] = ACTIONS(301), + [aux_sym_package_include_token1] = ACTIONS(303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(307), + [aux_sym_graphics_include_token1] = ACTIONS(309), + [aux_sym_import_token1] = ACTIONS(311), + [anon_sym_BSLASHlabel] = ACTIONS(313), + [aux_sym_label_reference_token1] = ACTIONS(315), + [aux_sym_label_reference_range_token1] = ACTIONS(317), + [anon_sym_BSLASHnewlabel] = ACTIONS(319), + [aux_sym_command_definition_token1] = ACTIONS(321), + [aux_sym_math_operator_token1] = ACTIONS(323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(325), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(327), + [anon_sym_BSLASHnewacronym] = ACTIONS(329), + [aux_sym_theorem_definition_token1] = ACTIONS(331), + }, + [410] = { + [sym__simple_content] = STATE(413), + [sym_brace_group] = STATE(413), + [sym_mixed_group] = STATE(413), + [sym_text] = STATE(413), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(413), + [sym_inline_formula] = STATE(413), + [sym_begin] = STATE(65), + [sym_environment] = STATE(413), + [sym_caption] = STATE(413), + [sym_citation] = STATE(413), + [sym_package_include] = STATE(413), + [sym_class_include] = STATE(413), + [sym_biblatex_include] = STATE(413), + [sym_graphics_include] = STATE(413), + [sym_import] = STATE(413), + [sym_label_definition] = STATE(413), + [sym_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_theorem_definition] = STATE(413), + [sym_generic_command] = STATE(413), + [aux_sym_enum_item_repeat1] = STATE(413), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4008), + [aux_sym_subsection_token1] = ACTIONS(4008), + [aux_sym_subsubsection_token1] = ACTIONS(4008), + [aux_sym_paragraph_token1] = ACTIONS(4008), + [aux_sym_subparagraph_token1] = ACTIONS(4008), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(6370), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [411] = { + [sym__simple_content] = STATE(413), + [sym_brace_group] = STATE(413), + [sym_mixed_group] = STATE(413), + [sym_text] = STATE(413), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(413), + [sym_inline_formula] = STATE(413), + [sym_begin] = STATE(65), + [sym_environment] = STATE(413), + [sym_caption] = STATE(413), + [sym_citation] = STATE(413), + [sym_package_include] = STATE(413), + [sym_class_include] = STATE(413), + [sym_biblatex_include] = STATE(413), + [sym_graphics_include] = STATE(413), + [sym_import] = STATE(413), + [sym_label_definition] = STATE(413), + [sym_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_theorem_definition] = STATE(413), + [sym_generic_command] = STATE(413), + [aux_sym_enum_item_repeat1] = STATE(413), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4252), + [aux_sym_subsection_token1] = ACTIONS(4252), + [aux_sym_subsubsection_token1] = ACTIONS(4252), + [aux_sym_paragraph_token1] = ACTIONS(4252), + [aux_sym_subparagraph_token1] = ACTIONS(4252), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(6370), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [412] = { + [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(698), + [sym_displayed_equation] = STATE(420), + [sym_inline_formula] = STATE(420), + [sym_begin] = STATE(84), + [sym_environment] = STATE(420), + [sym_caption] = STATE(420), + [sym_citation] = STATE(420), + [sym_package_include] = STATE(420), + [sym_class_include] = STATE(420), + [sym_biblatex_include] = STATE(420), + [sym_graphics_include] = STATE(420), + [sym_import] = STATE(420), + [sym_label_definition] = STATE(420), + [sym_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_theorem_definition] = STATE(420), + [sym_generic_command] = STATE(420), + [aux_sym_subparagraph_repeat1] = STATE(420), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(3812), + [aux_sym_subsubsection_token1] = ACTIONS(3812), + [aux_sym_paragraph_token1] = ACTIONS(3812), + [aux_sym_subparagraph_token1] = ACTIONS(3812), + [anon_sym_BSLASHitem] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(6372), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [413] = { + [sym__simple_content] = STATE(413), + [sym_brace_group] = STATE(413), + [sym_mixed_group] = STATE(413), + [sym_text] = STATE(413), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(413), + [sym_inline_formula] = STATE(413), + [sym_begin] = STATE(65), + [sym_environment] = STATE(413), + [sym_caption] = STATE(413), + [sym_citation] = STATE(413), + [sym_package_include] = STATE(413), + [sym_class_include] = STATE(413), + [sym_biblatex_include] = STATE(413), + [sym_graphics_include] = STATE(413), + [sym_import] = STATE(413), + [sym_label_definition] = STATE(413), + [sym_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_theorem_definition] = STATE(413), + [sym_generic_command] = STATE(413), + [aux_sym_enum_item_repeat1] = STATE(413), + [sym__generic_command_name] = ACTIONS(6374), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4017), + [aux_sym_subsection_token1] = ACTIONS(4017), + [aux_sym_subsubsection_token1] = ACTIONS(4017), + [aux_sym_paragraph_token1] = ACTIONS(4017), + [aux_sym_subparagraph_token1] = ACTIONS(4017), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(6377), + [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(6380), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(6377), + [anon_sym_COMMA] = ACTIONS(6383), + [anon_sym_EQ] = ACTIONS(6383), + [sym_word] = ACTIONS(6383), + [sym_param] = ACTIONS(6386), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6389), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6389), + [anon_sym_DOLLAR] = ACTIONS(6392), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6395), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(6398), + [aux_sym_citation_token1] = ACTIONS(6401), + [aux_sym_package_include_token1] = ACTIONS(6404), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6407), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6410), + [aux_sym_graphics_include_token1] = ACTIONS(6413), + [aux_sym_import_token1] = ACTIONS(6416), + [anon_sym_BSLASHlabel] = ACTIONS(6419), + [aux_sym_label_reference_token1] = ACTIONS(6422), + [aux_sym_label_reference_range_token1] = ACTIONS(6425), + [anon_sym_BSLASHnewlabel] = ACTIONS(6428), + [aux_sym_command_definition_token1] = ACTIONS(6431), + [aux_sym_math_operator_token1] = ACTIONS(6434), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6440), + [anon_sym_BSLASHnewacronym] = ACTIONS(6443), + [aux_sym_theorem_definition_token1] = ACTIONS(6446), + }, + [414] = { + [sym__simple_content] = STATE(410), + [sym_brace_group] = STATE(410), + [sym_mixed_group] = STATE(410), + [sym_text] = STATE(410), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(410), + [sym_inline_formula] = STATE(410), + [sym_begin] = STATE(65), + [sym_environment] = STATE(410), + [sym_caption] = STATE(410), + [sym_citation] = STATE(410), + [sym_package_include] = STATE(410), + [sym_class_include] = STATE(410), + [sym_biblatex_include] = STATE(410), + [sym_graphics_include] = STATE(410), + [sym_import] = STATE(410), + [sym_label_definition] = STATE(410), + [sym_label_reference] = STATE(410), + [sym_label_reference_range] = STATE(410), + [sym_label_number] = STATE(410), + [sym_command_definition] = STATE(410), + [sym_math_operator] = STATE(410), + [sym_glossary_entry_definition] = STATE(410), + [sym_glossary_entry_reference] = STATE(410), + [sym_acronym_definition] = STATE(410), + [sym_theorem_definition] = STATE(410), + [sym_generic_command] = STATE(410), + [aux_sym_enum_item_repeat1] = STATE(410), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4342), + [aux_sym_subsection_token1] = ACTIONS(4342), + [aux_sym_subsubsection_token1] = ACTIONS(4342), + [aux_sym_paragraph_token1] = ACTIONS(4342), + [aux_sym_subparagraph_token1] = ACTIONS(4342), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(6449), + [anon_sym_RBRACK] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(6451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [415] = { + [sym__simple_content] = 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(698), + [sym_displayed_equation] = STATE(415), + [sym_inline_formula] = STATE(415), + [sym_begin] = STATE(84), + [sym_environment] = STATE(415), + [sym_caption] = STATE(415), + [sym_citation] = STATE(415), + [sym_package_include] = STATE(415), + [sym_class_include] = STATE(415), + [sym_biblatex_include] = STATE(415), + [sym_graphics_include] = STATE(415), + [sym_import] = STATE(415), + [sym_label_definition] = STATE(415), + [sym_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_theorem_definition] = STATE(415), + [sym_generic_command] = STATE(415), + [aux_sym_subparagraph_repeat1] = STATE(415), + [sym__generic_command_name] = ACTIONS(6453), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(3730), + [aux_sym_subsubsection_token1] = ACTIONS(3730), + [aux_sym_paragraph_token1] = ACTIONS(3730), + [aux_sym_subparagraph_token1] = ACTIONS(3730), + [anon_sym_BSLASHitem] = ACTIONS(6456), + [anon_sym_LBRACK] = ACTIONS(6459), + [anon_sym_RBRACK] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(6462), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6465), + [anon_sym_EQ] = ACTIONS(6465), + [sym_word] = ACTIONS(6465), + [sym_param] = ACTIONS(6468), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6471), + [anon_sym_DOLLAR] = ACTIONS(6474), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6477), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHcaption] = ACTIONS(6480), + [aux_sym_citation_token1] = ACTIONS(6483), + [aux_sym_package_include_token1] = ACTIONS(6486), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6492), + [aux_sym_graphics_include_token1] = ACTIONS(6495), + [aux_sym_import_token1] = ACTIONS(6498), + [anon_sym_BSLASHlabel] = ACTIONS(6501), + [aux_sym_label_reference_token1] = ACTIONS(6504), + [aux_sym_label_reference_range_token1] = ACTIONS(6507), + [anon_sym_BSLASHnewlabel] = ACTIONS(6510), + [aux_sym_command_definition_token1] = ACTIONS(6513), + [aux_sym_math_operator_token1] = ACTIONS(6516), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6519), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6522), + [anon_sym_BSLASHnewacronym] = ACTIONS(6525), + [aux_sym_theorem_definition_token1] = ACTIONS(6528), + }, + [416] = { + [sym__simple_content] = STATE(417), + [sym_paragraph] = STATE(417), + [sym_subparagraph] = STATE(417), + [sym_enum_item] = STATE(417), + [sym_brace_group] = STATE(417), + [sym_mixed_group] = STATE(417), + [sym_text] = STATE(417), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(417), + [sym_inline_formula] = STATE(417), + [sym_begin] = STATE(95), + [sym_environment] = STATE(417), + [sym_caption] = STATE(417), + [sym_citation] = STATE(417), + [sym_package_include] = STATE(417), + [sym_class_include] = STATE(417), + [sym_biblatex_include] = STATE(417), + [sym_graphics_include] = STATE(417), + [sym_import] = STATE(417), + [sym_label_definition] = STATE(417), + [sym_label_reference] = STATE(417), + [sym_label_reference_range] = STATE(417), + [sym_label_number] = STATE(417), + [sym_command_definition] = STATE(417), + [sym_math_operator] = STATE(417), + [sym_glossary_entry_definition] = STATE(417), + [sym_glossary_entry_reference] = STATE(417), + [sym_acronym_definition] = STATE(417), + [sym_theorem_definition] = STATE(417), + [sym_generic_command] = STATE(417), + [aux_sym_subsubsection_repeat1] = STATE(417), + [sym__generic_command_name] = ACTIONS(6531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(6533), + [aux_sym_subparagraph_token1] = ACTIONS(6535), + [anon_sym_BSLASHitem] = ACTIONS(6537), + [anon_sym_LBRACK] = ACTIONS(6539), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(6541), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_COMMA] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(6543), + [sym_word] = ACTIONS(6543), + [sym_param] = ACTIONS(6545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6547), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(6549), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6551), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6553), + [aux_sym_citation_token1] = ACTIONS(6555), + [aux_sym_package_include_token1] = ACTIONS(6557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6561), + [aux_sym_graphics_include_token1] = ACTIONS(6563), + [aux_sym_import_token1] = ACTIONS(6565), + [anon_sym_BSLASHlabel] = ACTIONS(6567), + [aux_sym_label_reference_token1] = ACTIONS(6569), + [aux_sym_label_reference_range_token1] = ACTIONS(6571), + [anon_sym_BSLASHnewlabel] = ACTIONS(6573), + [aux_sym_command_definition_token1] = ACTIONS(6575), + [aux_sym_math_operator_token1] = ACTIONS(6577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6579), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6581), + [anon_sym_BSLASHnewacronym] = ACTIONS(6583), + [aux_sym_theorem_definition_token1] = ACTIONS(6585), + }, + [417] = { + [sym__simple_content] = STATE(417), + [sym_paragraph] = STATE(417), + [sym_subparagraph] = STATE(417), + [sym_enum_item] = STATE(417), + [sym_brace_group] = STATE(417), + [sym_mixed_group] = STATE(417), + [sym_text] = STATE(417), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(417), + [sym_inline_formula] = STATE(417), + [sym_begin] = STATE(95), + [sym_environment] = STATE(417), + [sym_caption] = STATE(417), + [sym_citation] = STATE(417), + [sym_package_include] = STATE(417), + [sym_class_include] = STATE(417), + [sym_biblatex_include] = STATE(417), + [sym_graphics_include] = STATE(417), + [sym_import] = STATE(417), + [sym_label_definition] = STATE(417), + [sym_label_reference] = STATE(417), + [sym_label_reference_range] = STATE(417), + [sym_label_number] = STATE(417), + [sym_command_definition] = STATE(417), + [sym_math_operator] = STATE(417), + [sym_glossary_entry_definition] = STATE(417), + [sym_glossary_entry_reference] = STATE(417), + [sym_acronym_definition] = STATE(417), + [sym_theorem_definition] = STATE(417), + [sym_generic_command] = STATE(417), + [aux_sym_subsubsection_repeat1] = STATE(417), + [sym__generic_command_name] = ACTIONS(6587), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(6590), + [aux_sym_subparagraph_token1] = ACTIONS(6593), + [anon_sym_BSLASHitem] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6599), + [anon_sym_RBRACK] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(6602), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(6599), + [anon_sym_COMMA] = ACTIONS(6605), + [anon_sym_EQ] = ACTIONS(6605), + [sym_word] = ACTIONS(6605), + [sym_param] = ACTIONS(6608), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6611), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6611), + [anon_sym_DOLLAR] = ACTIONS(6614), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6617), + [anon_sym_BSLASHbegin] = ACTIONS(2475), + [anon_sym_BSLASHcaption] = ACTIONS(6620), + [aux_sym_citation_token1] = ACTIONS(6623), + [aux_sym_package_include_token1] = ACTIONS(6626), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6629), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6632), + [aux_sym_graphics_include_token1] = ACTIONS(6635), + [aux_sym_import_token1] = ACTIONS(6638), + [anon_sym_BSLASHlabel] = ACTIONS(6641), + [aux_sym_label_reference_token1] = ACTIONS(6644), + [aux_sym_label_reference_range_token1] = ACTIONS(6647), + [anon_sym_BSLASHnewlabel] = ACTIONS(6650), + [aux_sym_command_definition_token1] = ACTIONS(6653), + [aux_sym_math_operator_token1] = ACTIONS(6656), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6659), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6662), + [anon_sym_BSLASHnewacronym] = ACTIONS(6665), + [aux_sym_theorem_definition_token1] = ACTIONS(6668), + }, + [418] = { + [sym__simple_content] = STATE(416), + [sym_paragraph] = STATE(416), + [sym_subparagraph] = STATE(416), + [sym_enum_item] = STATE(416), + [sym_brace_group] = STATE(416), + [sym_mixed_group] = STATE(416), + [sym_text] = STATE(416), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(416), + [sym_inline_formula] = STATE(416), + [sym_begin] = STATE(95), + [sym_environment] = STATE(416), + [sym_caption] = STATE(416), + [sym_citation] = STATE(416), + [sym_package_include] = STATE(416), + [sym_class_include] = STATE(416), + [sym_biblatex_include] = STATE(416), + [sym_graphics_include] = STATE(416), + [sym_import] = STATE(416), + [sym_label_definition] = STATE(416), + [sym_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_theorem_definition] = STATE(416), + [sym_generic_command] = STATE(416), + [aux_sym_subsubsection_repeat1] = STATE(416), + [sym__generic_command_name] = ACTIONS(6531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(6533), + [aux_sym_subparagraph_token1] = ACTIONS(6535), + [anon_sym_BSLASHitem] = ACTIONS(6537), + [anon_sym_LBRACK] = ACTIONS(6539), + [anon_sym_RBRACK] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(6541), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_COMMA] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(6543), + [sym_word] = ACTIONS(6543), + [sym_param] = ACTIONS(6671), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6547), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(6549), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6551), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6553), + [aux_sym_citation_token1] = ACTIONS(6555), + [aux_sym_package_include_token1] = ACTIONS(6557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6561), + [aux_sym_graphics_include_token1] = ACTIONS(6563), + [aux_sym_import_token1] = ACTIONS(6565), + [anon_sym_BSLASHlabel] = ACTIONS(6567), + [aux_sym_label_reference_token1] = ACTIONS(6569), + [aux_sym_label_reference_range_token1] = ACTIONS(6571), + [anon_sym_BSLASHnewlabel] = ACTIONS(6573), + [aux_sym_command_definition_token1] = ACTIONS(6575), + [aux_sym_math_operator_token1] = ACTIONS(6577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6579), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6581), + [anon_sym_BSLASHnewacronym] = ACTIONS(6583), + [aux_sym_theorem_definition_token1] = ACTIONS(6585), + }, + [419] = { + [sym__simple_content] = STATE(422), + [sym_subparagraph] = STATE(422), + [sym_enum_item] = STATE(422), + [sym_brace_group] = STATE(422), + [sym_mixed_group] = STATE(422), + [sym_text] = STATE(422), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(422), + [sym_inline_formula] = STATE(422), + [sym_begin] = STATE(113), + [sym_environment] = STATE(422), + [sym_caption] = STATE(422), + [sym_citation] = STATE(422), + [sym_package_include] = STATE(422), + [sym_class_include] = STATE(422), + [sym_biblatex_include] = STATE(422), + [sym_graphics_include] = STATE(422), + [sym_import] = STATE(422), + [sym_label_definition] = STATE(422), + [sym_label_reference] = STATE(422), + [sym_label_reference_range] = STATE(422), + [sym_label_number] = STATE(422), + [sym_command_definition] = STATE(422), + [sym_math_operator] = STATE(422), + [sym_glossary_entry_definition] = STATE(422), + [sym_glossary_entry_reference] = STATE(422), + [sym_acronym_definition] = STATE(422), + [sym_theorem_definition] = STATE(422), + [sym_generic_command] = STATE(422), + [aux_sym_paragraph_repeat1] = STATE(422), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(2823), + [aux_sym_paragraph_token1] = ACTIONS(2823), + [aux_sym_subparagraph_token1] = ACTIONS(5301), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(6673), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [420] = { + [sym__simple_content] = 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(698), + [sym_displayed_equation] = STATE(415), + [sym_inline_formula] = STATE(415), + [sym_begin] = STATE(84), + [sym_environment] = STATE(415), + [sym_caption] = STATE(415), + [sym_citation] = STATE(415), + [sym_package_include] = STATE(415), + [sym_class_include] = STATE(415), + [sym_biblatex_include] = STATE(415), + [sym_graphics_include] = STATE(415), + [sym_import] = STATE(415), + [sym_label_definition] = STATE(415), + [sym_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_theorem_definition] = STATE(415), + [sym_generic_command] = STATE(415), + [aux_sym_subparagraph_repeat1] = STATE(415), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(3818), + [aux_sym_subsubsection_token1] = ACTIONS(3818), + [aux_sym_paragraph_token1] = ACTIONS(3818), + [aux_sym_subparagraph_token1] = ACTIONS(3818), + [anon_sym_BSLASHitem] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(6675), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [421] = { + [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(773), + [sym_displayed_equation] = STATE(419), + [sym_inline_formula] = STATE(419), + [sym_begin] = STATE(113), + [sym_environment] = STATE(419), + [sym_caption] = STATE(419), + [sym_citation] = STATE(419), + [sym_package_include] = STATE(419), + [sym_class_include] = STATE(419), + [sym_biblatex_include] = STATE(419), + [sym_graphics_include] = STATE(419), + [sym_import] = STATE(419), + [sym_label_definition] = STATE(419), + [sym_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_theorem_definition] = STATE(419), + [sym_generic_command] = STATE(419), + [aux_sym_paragraph_repeat1] = STATE(419), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(2919), + [aux_sym_paragraph_token1] = ACTIONS(2919), + [aux_sym_subparagraph_token1] = ACTIONS(5301), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(6677), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [422] = { + [sym__simple_content] = STATE(422), + [sym_subparagraph] = STATE(422), + [sym_enum_item] = STATE(422), + [sym_brace_group] = STATE(422), + [sym_mixed_group] = STATE(422), + [sym_text] = STATE(422), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(422), + [sym_inline_formula] = STATE(422), + [sym_begin] = STATE(113), + [sym_environment] = STATE(422), + [sym_caption] = STATE(422), + [sym_citation] = STATE(422), + [sym_package_include] = STATE(422), + [sym_class_include] = STATE(422), + [sym_biblatex_include] = STATE(422), + [sym_graphics_include] = STATE(422), + [sym_import] = STATE(422), + [sym_label_definition] = STATE(422), + [sym_label_reference] = STATE(422), + [sym_label_reference_range] = STATE(422), + [sym_label_number] = STATE(422), + [sym_command_definition] = STATE(422), + [sym_math_operator] = STATE(422), + [sym_glossary_entry_definition] = STATE(422), + [sym_glossary_entry_reference] = STATE(422), + [sym_acronym_definition] = STATE(422), + [sym_theorem_definition] = STATE(422), + [sym_generic_command] = STATE(422), + [aux_sym_paragraph_repeat1] = STATE(422), + [sym__generic_command_name] = ACTIONS(6679), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(2992), + [aux_sym_paragraph_token1] = ACTIONS(2992), + [aux_sym_subparagraph_token1] = ACTIONS(6682), + [anon_sym_BSLASHitem] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(6688), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(6691), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(6688), + [anon_sym_COMMA] = ACTIONS(6694), + [anon_sym_EQ] = ACTIONS(6694), + [sym_word] = ACTIONS(6694), + [sym_param] = ACTIONS(6697), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6700), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6700), + [anon_sym_DOLLAR] = ACTIONS(6703), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6706), + [anon_sym_BSLASHbegin] = ACTIONS(3021), + [anon_sym_BSLASHcaption] = ACTIONS(6709), + [aux_sym_citation_token1] = ACTIONS(6712), + [aux_sym_package_include_token1] = ACTIONS(6715), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6718), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6721), + [aux_sym_graphics_include_token1] = ACTIONS(6724), + [aux_sym_import_token1] = ACTIONS(6727), + [anon_sym_BSLASHlabel] = ACTIONS(6730), + [aux_sym_label_reference_token1] = ACTIONS(6733), + [aux_sym_label_reference_range_token1] = ACTIONS(6736), + [anon_sym_BSLASHnewlabel] = ACTIONS(6739), + [aux_sym_command_definition_token1] = ACTIONS(6742), + [aux_sym_math_operator_token1] = ACTIONS(6745), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6748), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6751), + [anon_sym_BSLASHnewacronym] = ACTIONS(6754), + [aux_sym_theorem_definition_token1] = ACTIONS(6757), + }, + [423] = { + [sym__simple_content] = STATE(411), + [sym_brace_group] = STATE(411), + [sym_mixed_group] = STATE(411), + [sym_text] = STATE(411), + [sym__text_fragment] = STATE(559), + [sym_displayed_equation] = STATE(411), + [sym_inline_formula] = STATE(411), + [sym_begin] = STATE(65), + [sym_environment] = STATE(411), + [sym_caption] = STATE(411), + [sym_citation] = STATE(411), + [sym_package_include] = STATE(411), + [sym_class_include] = STATE(411), + [sym_biblatex_include] = STATE(411), + [sym_graphics_include] = STATE(411), + [sym_import] = STATE(411), + [sym_label_definition] = STATE(411), + [sym_label_reference] = STATE(411), + [sym_label_reference_range] = STATE(411), + [sym_label_number] = STATE(411), + [sym_command_definition] = STATE(411), + [sym_math_operator] = STATE(411), + [sym_glossary_entry_definition] = STATE(411), + [sym_glossary_entry_reference] = STATE(411), + [sym_acronym_definition] = STATE(411), + [sym_theorem_definition] = STATE(411), + [sym_generic_command] = STATE(411), + [aux_sym_enum_item_repeat1] = STATE(411), + [sym__generic_command_name] = ACTIONS(2923), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4186), + [aux_sym_subsection_token1] = ACTIONS(4186), + [aux_sym_subsubsection_token1] = ACTIONS(4186), + [aux_sym_paragraph_token1] = ACTIONS(4186), + [aux_sym_subparagraph_token1] = ACTIONS(4186), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [sym_word] = ACTIONS(2941), + [sym_param] = ACTIONS(6760), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(2947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2949), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2951), + [aux_sym_citation_token1] = ACTIONS(2953), + [aux_sym_package_include_token1] = ACTIONS(2955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2957), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2959), + [aux_sym_graphics_include_token1] = ACTIONS(2961), + [aux_sym_import_token1] = ACTIONS(2963), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [aux_sym_label_reference_token1] = ACTIONS(2967), + [aux_sym_label_reference_range_token1] = ACTIONS(2969), + [anon_sym_BSLASHnewlabel] = ACTIONS(2971), + [aux_sym_command_definition_token1] = ACTIONS(2973), + [aux_sym_math_operator_token1] = ACTIONS(2975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2977), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(2979), + [anon_sym_BSLASHnewacronym] = ACTIONS(2981), + [aux_sym_theorem_definition_token1] = ACTIONS(2983), + }, + [424] = { + [sym__simple_content] = STATE(431), + [sym_brace_group] = STATE(431), + [sym_mixed_group] = STATE(431), + [sym_text] = STATE(431), + [sym__text_fragment] = STATE(698), + [sym_displayed_equation] = STATE(431), + [sym_inline_formula] = STATE(431), + [sym_begin] = STATE(84), + [sym_environment] = STATE(431), + [sym_caption] = STATE(431), + [sym_citation] = STATE(431), + [sym_package_include] = STATE(431), + [sym_class_include] = STATE(431), + [sym_biblatex_include] = STATE(431), + [sym_graphics_include] = STATE(431), + [sym_import] = STATE(431), + [sym_label_definition] = STATE(431), + [sym_label_reference] = STATE(431), + [sym_label_reference_range] = STATE(431), + [sym_label_number] = STATE(431), + [sym_command_definition] = STATE(431), + [sym_math_operator] = STATE(431), + [sym_glossary_entry_definition] = STATE(431), + [sym_glossary_entry_reference] = STATE(431), + [sym_acronym_definition] = STATE(431), + [sym_theorem_definition] = STATE(431), + [sym_generic_command] = STATE(431), + [aux_sym_enum_item_repeat1] = STATE(431), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4008), + [aux_sym_subsubsection_token1] = ACTIONS(4008), + [aux_sym_paragraph_token1] = ACTIONS(4008), + [aux_sym_subparagraph_token1] = ACTIONS(4008), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(6762), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [425] = { + [sym__simple_content] = STATE(425), + [sym_enum_item] = STATE(425), + [sym_brace_group] = STATE(425), + [sym_mixed_group] = STATE(425), + [sym_text] = STATE(425), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(425), + [sym_inline_formula] = STATE(425), + [sym_begin] = STATE(113), + [sym_environment] = STATE(425), + [sym_caption] = STATE(425), + [sym_citation] = STATE(425), + [sym_package_include] = STATE(425), + [sym_class_include] = STATE(425), + [sym_biblatex_include] = STATE(425), + [sym_graphics_include] = STATE(425), + [sym_import] = STATE(425), + [sym_label_definition] = STATE(425), + [sym_label_reference] = STATE(425), + [sym_label_reference_range] = STATE(425), + [sym_label_number] = STATE(425), + [sym_command_definition] = STATE(425), + [sym_math_operator] = STATE(425), + [sym_glossary_entry_definition] = STATE(425), + [sym_glossary_entry_reference] = STATE(425), + [sym_acronym_definition] = STATE(425), + [sym_theorem_definition] = STATE(425), + [sym_generic_command] = STATE(425), + [aux_sym_subparagraph_repeat1] = STATE(425), + [sym__generic_command_name] = ACTIONS(6764), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(3730), + [aux_sym_paragraph_token1] = ACTIONS(3730), + [aux_sym_subparagraph_token1] = ACTIONS(3730), + [anon_sym_BSLASHitem] = ACTIONS(6767), + [anon_sym_LBRACK] = ACTIONS(6770), + [anon_sym_RBRACK] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(6773), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_COMMA] = ACTIONS(6776), + [anon_sym_EQ] = ACTIONS(6776), + [sym_word] = ACTIONS(6776), + [sym_param] = ACTIONS(6779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6782), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6782), + [anon_sym_DOLLAR] = ACTIONS(6785), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6788), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHcaption] = ACTIONS(6791), + [aux_sym_citation_token1] = ACTIONS(6794), + [aux_sym_package_include_token1] = ACTIONS(6797), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6800), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6803), + [aux_sym_graphics_include_token1] = ACTIONS(6806), + [aux_sym_import_token1] = ACTIONS(6809), + [anon_sym_BSLASHlabel] = ACTIONS(6812), + [aux_sym_label_reference_token1] = ACTIONS(6815), + [aux_sym_label_reference_range_token1] = ACTIONS(6818), + [anon_sym_BSLASHnewlabel] = ACTIONS(6821), + [aux_sym_command_definition_token1] = ACTIONS(6824), + [aux_sym_math_operator_token1] = ACTIONS(6827), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6830), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6833), + [anon_sym_BSLASHnewacronym] = ACTIONS(6836), + [aux_sym_theorem_definition_token1] = ACTIONS(6839), + }, + [426] = { + [sym__simple_content] = STATE(426), + [sym_subparagraph] = STATE(426), + [sym_enum_item] = STATE(426), + [sym_brace_group] = STATE(426), + [sym_mixed_group] = STATE(426), + [sym_text] = STATE(426), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(426), + [sym_inline_formula] = STATE(426), + [sym_begin] = STATE(95), + [sym_environment] = STATE(426), + [sym_caption] = STATE(426), + [sym_citation] = STATE(426), + [sym_package_include] = STATE(426), + [sym_class_include] = STATE(426), + [sym_biblatex_include] = STATE(426), + [sym_graphics_include] = STATE(426), + [sym_import] = STATE(426), + [sym_label_definition] = STATE(426), + [sym_label_reference] = STATE(426), + [sym_label_reference_range] = STATE(426), + [sym_label_number] = STATE(426), + [sym_command_definition] = STATE(426), + [sym_math_operator] = STATE(426), + [sym_glossary_entry_definition] = STATE(426), + [sym_glossary_entry_reference] = STATE(426), + [sym_acronym_definition] = STATE(426), + [sym_theorem_definition] = STATE(426), + [sym_generic_command] = STATE(426), + [aux_sym_paragraph_repeat1] = STATE(426), + [sym__generic_command_name] = ACTIONS(6842), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(2992), + [aux_sym_subparagraph_token1] = ACTIONS(6845), + [anon_sym_BSLASHitem] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(6851), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(6854), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(6851), + [anon_sym_COMMA] = ACTIONS(6857), + [anon_sym_EQ] = ACTIONS(6857), + [sym_word] = ACTIONS(6857), + [sym_param] = ACTIONS(6860), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6863), + [anon_sym_DOLLAR] = ACTIONS(6866), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6869), + [anon_sym_BSLASHbegin] = ACTIONS(3021), + [anon_sym_BSLASHcaption] = ACTIONS(6872), + [aux_sym_citation_token1] = ACTIONS(6875), + [aux_sym_package_include_token1] = ACTIONS(6878), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6881), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6884), + [aux_sym_graphics_include_token1] = ACTIONS(6887), + [aux_sym_import_token1] = ACTIONS(6890), + [anon_sym_BSLASHlabel] = ACTIONS(6893), + [aux_sym_label_reference_token1] = ACTIONS(6896), + [aux_sym_label_reference_range_token1] = ACTIONS(6899), + [anon_sym_BSLASHnewlabel] = ACTIONS(6902), + [aux_sym_command_definition_token1] = ACTIONS(6905), + [aux_sym_math_operator_token1] = ACTIONS(6908), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6911), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6914), + [anon_sym_BSLASHnewacronym] = ACTIONS(6917), + [aux_sym_theorem_definition_token1] = ACTIONS(6920), + }, + [427] = { + [sym__simple_content] = STATE(424), + [sym_brace_group] = STATE(424), + [sym_mixed_group] = STATE(424), + [sym_text] = STATE(424), + [sym__text_fragment] = STATE(698), + [sym_displayed_equation] = STATE(424), + [sym_inline_formula] = STATE(424), + [sym_begin] = STATE(84), + [sym_environment] = STATE(424), + [sym_caption] = STATE(424), + [sym_citation] = STATE(424), + [sym_package_include] = STATE(424), + [sym_class_include] = STATE(424), + [sym_biblatex_include] = STATE(424), + [sym_graphics_include] = STATE(424), + [sym_import] = STATE(424), + [sym_label_definition] = STATE(424), + [sym_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_theorem_definition] = STATE(424), + [sym_generic_command] = STATE(424), + [aux_sym_enum_item_repeat1] = STATE(424), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4342), + [aux_sym_subsubsection_token1] = ACTIONS(4342), + [aux_sym_paragraph_token1] = ACTIONS(4342), + [aux_sym_subparagraph_token1] = ACTIONS(4342), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(6923), + [anon_sym_RBRACK] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(6925), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [428] = { + [sym__simple_content] = STATE(432), + [sym_subparagraph] = STATE(432), + [sym_enum_item] = STATE(432), + [sym_brace_group] = STATE(432), + [sym_mixed_group] = STATE(432), + [sym_text] = STATE(432), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(432), + [sym_inline_formula] = STATE(432), + [sym_begin] = STATE(95), + [sym_environment] = STATE(432), + [sym_caption] = STATE(432), + [sym_citation] = STATE(432), + [sym_package_include] = STATE(432), + [sym_class_include] = STATE(432), + [sym_biblatex_include] = STATE(432), + [sym_graphics_include] = STATE(432), + [sym_import] = STATE(432), + [sym_label_definition] = STATE(432), + [sym_label_reference] = STATE(432), + [sym_label_reference_range] = STATE(432), + [sym_label_number] = STATE(432), + [sym_command_definition] = STATE(432), + [sym_math_operator] = STATE(432), + [sym_glossary_entry_definition] = STATE(432), + [sym_glossary_entry_reference] = STATE(432), + [sym_acronym_definition] = STATE(432), + [sym_theorem_definition] = STATE(432), + [sym_generic_command] = STATE(432), + [aux_sym_paragraph_repeat1] = STATE(432), + [sym__generic_command_name] = ACTIONS(6531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(2919), + [aux_sym_subparagraph_token1] = ACTIONS(6535), + [anon_sym_BSLASHitem] = ACTIONS(6537), + [anon_sym_LBRACK] = ACTIONS(6539), + [anon_sym_RBRACK] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(6541), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_COMMA] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(6543), + [sym_word] = ACTIONS(6543), + [sym_param] = ACTIONS(6927), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6547), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(6549), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6551), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6553), + [aux_sym_citation_token1] = ACTIONS(6555), + [aux_sym_package_include_token1] = ACTIONS(6557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6561), + [aux_sym_graphics_include_token1] = ACTIONS(6563), + [aux_sym_import_token1] = ACTIONS(6565), + [anon_sym_BSLASHlabel] = ACTIONS(6567), + [aux_sym_label_reference_token1] = ACTIONS(6569), + [aux_sym_label_reference_range_token1] = ACTIONS(6571), + [anon_sym_BSLASHnewlabel] = ACTIONS(6573), + [aux_sym_command_definition_token1] = ACTIONS(6575), + [aux_sym_math_operator_token1] = ACTIONS(6577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6579), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6581), + [anon_sym_BSLASHnewacronym] = ACTIONS(6583), + [aux_sym_theorem_definition_token1] = ACTIONS(6585), + }, + [429] = { + [sym__simple_content] = STATE(431), + [sym_brace_group] = STATE(431), + [sym_mixed_group] = STATE(431), + [sym_text] = STATE(431), + [sym__text_fragment] = STATE(698), + [sym_displayed_equation] = STATE(431), + [sym_inline_formula] = STATE(431), + [sym_begin] = STATE(84), + [sym_environment] = STATE(431), + [sym_caption] = STATE(431), + [sym_citation] = STATE(431), + [sym_package_include] = STATE(431), + [sym_class_include] = STATE(431), + [sym_biblatex_include] = STATE(431), + [sym_graphics_include] = STATE(431), + [sym_import] = STATE(431), + [sym_label_definition] = STATE(431), + [sym_label_reference] = STATE(431), + [sym_label_reference_range] = STATE(431), + [sym_label_number] = STATE(431), + [sym_command_definition] = STATE(431), + [sym_math_operator] = STATE(431), + [sym_glossary_entry_definition] = STATE(431), + [sym_glossary_entry_reference] = STATE(431), + [sym_acronym_definition] = STATE(431), + [sym_theorem_definition] = STATE(431), + [sym_generic_command] = STATE(431), + [aux_sym_enum_item_repeat1] = STATE(431), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4252), + [aux_sym_subsubsection_token1] = ACTIONS(4252), + [aux_sym_paragraph_token1] = ACTIONS(4252), + [aux_sym_subparagraph_token1] = ACTIONS(4252), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(6762), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [430] = { + [sym__simple_content] = STATE(425), + [sym_enum_item] = STATE(425), + [sym_brace_group] = STATE(425), + [sym_mixed_group] = STATE(425), + [sym_text] = STATE(425), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(425), + [sym_inline_formula] = STATE(425), + [sym_begin] = STATE(113), + [sym_environment] = STATE(425), + [sym_caption] = STATE(425), + [sym_citation] = STATE(425), + [sym_package_include] = STATE(425), + [sym_class_include] = STATE(425), + [sym_biblatex_include] = STATE(425), + [sym_graphics_include] = STATE(425), + [sym_import] = STATE(425), + [sym_label_definition] = STATE(425), + [sym_label_reference] = STATE(425), + [sym_label_reference_range] = STATE(425), + [sym_label_number] = STATE(425), + [sym_command_definition] = STATE(425), + [sym_math_operator] = STATE(425), + [sym_glossary_entry_definition] = STATE(425), + [sym_glossary_entry_reference] = STATE(425), + [sym_acronym_definition] = STATE(425), + [sym_theorem_definition] = STATE(425), + [sym_generic_command] = STATE(425), + [aux_sym_subparagraph_repeat1] = STATE(425), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(3818), + [aux_sym_paragraph_token1] = ACTIONS(3818), + [aux_sym_subparagraph_token1] = ACTIONS(3818), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(6929), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [431] = { + [sym__simple_content] = STATE(431), + [sym_brace_group] = STATE(431), + [sym_mixed_group] = STATE(431), + [sym_text] = STATE(431), + [sym__text_fragment] = STATE(698), + [sym_displayed_equation] = STATE(431), + [sym_inline_formula] = STATE(431), + [sym_begin] = STATE(84), + [sym_environment] = STATE(431), + [sym_caption] = STATE(431), + [sym_citation] = STATE(431), + [sym_package_include] = STATE(431), + [sym_class_include] = STATE(431), + [sym_biblatex_include] = STATE(431), + [sym_graphics_include] = STATE(431), + [sym_import] = STATE(431), + [sym_label_definition] = STATE(431), + [sym_label_reference] = STATE(431), + [sym_label_reference_range] = STATE(431), + [sym_label_number] = STATE(431), + [sym_command_definition] = STATE(431), + [sym_math_operator] = STATE(431), + [sym_glossary_entry_definition] = STATE(431), + [sym_glossary_entry_reference] = STATE(431), + [sym_acronym_definition] = STATE(431), + [sym_theorem_definition] = STATE(431), + [sym_generic_command] = STATE(431), + [aux_sym_enum_item_repeat1] = STATE(431), + [sym__generic_command_name] = ACTIONS(6931), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4017), + [aux_sym_subsubsection_token1] = ACTIONS(4017), + [aux_sym_paragraph_token1] = ACTIONS(4017), + [aux_sym_subparagraph_token1] = ACTIONS(4017), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(6937), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6940), + [anon_sym_EQ] = ACTIONS(6940), + [sym_word] = ACTIONS(6940), + [sym_param] = ACTIONS(6943), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6946), + [anon_sym_DOLLAR] = ACTIONS(6949), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6952), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(6955), + [aux_sym_citation_token1] = ACTIONS(6958), + [aux_sym_package_include_token1] = ACTIONS(6961), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6964), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6967), + [aux_sym_graphics_include_token1] = ACTIONS(6970), + [aux_sym_import_token1] = ACTIONS(6973), + [anon_sym_BSLASHlabel] = ACTIONS(6976), + [aux_sym_label_reference_token1] = ACTIONS(6979), + [aux_sym_label_reference_range_token1] = ACTIONS(6982), + [anon_sym_BSLASHnewlabel] = ACTIONS(6985), + [aux_sym_command_definition_token1] = ACTIONS(6988), + [aux_sym_math_operator_token1] = ACTIONS(6991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6994), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6997), + [anon_sym_BSLASHnewacronym] = ACTIONS(7000), + [aux_sym_theorem_definition_token1] = ACTIONS(7003), + }, + [432] = { + [sym__simple_content] = STATE(426), + [sym_subparagraph] = STATE(426), + [sym_enum_item] = STATE(426), + [sym_brace_group] = STATE(426), + [sym_mixed_group] = STATE(426), + [sym_text] = STATE(426), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(426), + [sym_inline_formula] = STATE(426), + [sym_begin] = STATE(95), + [sym_environment] = STATE(426), + [sym_caption] = STATE(426), + [sym_citation] = STATE(426), + [sym_package_include] = STATE(426), + [sym_class_include] = STATE(426), + [sym_biblatex_include] = STATE(426), + [sym_graphics_include] = STATE(426), + [sym_import] = STATE(426), + [sym_label_definition] = STATE(426), + [sym_label_reference] = STATE(426), + [sym_label_reference_range] = STATE(426), + [sym_label_number] = STATE(426), + [sym_command_definition] = STATE(426), + [sym_math_operator] = STATE(426), + [sym_glossary_entry_definition] = STATE(426), + [sym_glossary_entry_reference] = STATE(426), + [sym_acronym_definition] = STATE(426), + [sym_theorem_definition] = STATE(426), + [sym_generic_command] = STATE(426), + [aux_sym_paragraph_repeat1] = STATE(426), + [sym__generic_command_name] = ACTIONS(6531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(2823), + [aux_sym_subparagraph_token1] = ACTIONS(6535), + [anon_sym_BSLASHitem] = ACTIONS(6537), + [anon_sym_LBRACK] = ACTIONS(6539), + [anon_sym_RBRACK] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(6541), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_COMMA] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(6543), + [sym_word] = ACTIONS(6543), + [sym_param] = ACTIONS(7006), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6547), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(6549), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6551), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6553), + [aux_sym_citation_token1] = ACTIONS(6555), + [aux_sym_package_include_token1] = ACTIONS(6557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6561), + [aux_sym_graphics_include_token1] = ACTIONS(6563), + [aux_sym_import_token1] = ACTIONS(6565), + [anon_sym_BSLASHlabel] = ACTIONS(6567), + [aux_sym_label_reference_token1] = ACTIONS(6569), + [aux_sym_label_reference_range_token1] = ACTIONS(6571), + [anon_sym_BSLASHnewlabel] = ACTIONS(6573), + [aux_sym_command_definition_token1] = ACTIONS(6575), + [aux_sym_math_operator_token1] = ACTIONS(6577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6579), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6581), + [anon_sym_BSLASHnewacronym] = ACTIONS(6583), + [aux_sym_theorem_definition_token1] = ACTIONS(6585), + }, + [433] = { + [sym__simple_content] = STATE(429), + [sym_brace_group] = STATE(429), + [sym_mixed_group] = STATE(429), + [sym_text] = STATE(429), + [sym__text_fragment] = STATE(698), + [sym_displayed_equation] = STATE(429), + [sym_inline_formula] = STATE(429), + [sym_begin] = STATE(84), + [sym_environment] = STATE(429), + [sym_caption] = STATE(429), + [sym_citation] = STATE(429), + [sym_package_include] = STATE(429), + [sym_class_include] = STATE(429), + [sym_biblatex_include] = STATE(429), + [sym_graphics_include] = STATE(429), + [sym_import] = STATE(429), + [sym_label_definition] = STATE(429), + [sym_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_theorem_definition] = STATE(429), + [sym_generic_command] = STATE(429), + [aux_sym_enum_item_repeat1] = STATE(429), + [sym__generic_command_name] = ACTIONS(4190), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4186), + [aux_sym_subsubsection_token1] = ACTIONS(4186), + [aux_sym_paragraph_token1] = ACTIONS(4186), + [aux_sym_subparagraph_token1] = ACTIONS(4186), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4206), + [sym_word] = ACTIONS(4206), + [sym_param] = ACTIONS(7008), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4210), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4210), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4214), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4216), + [aux_sym_citation_token1] = ACTIONS(4218), + [aux_sym_package_include_token1] = ACTIONS(4220), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4222), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4224), + [aux_sym_graphics_include_token1] = ACTIONS(4226), + [aux_sym_import_token1] = ACTIONS(4228), + [anon_sym_BSLASHlabel] = ACTIONS(4230), + [aux_sym_label_reference_token1] = ACTIONS(4232), + [aux_sym_label_reference_range_token1] = ACTIONS(4234), + [anon_sym_BSLASHnewlabel] = ACTIONS(4236), + [aux_sym_command_definition_token1] = ACTIONS(4238), + [aux_sym_math_operator_token1] = ACTIONS(4240), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4242), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(4244), + [anon_sym_BSLASHnewacronym] = ACTIONS(4246), + [aux_sym_theorem_definition_token1] = ACTIONS(4248), + }, + [434] = { + [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(773), + [sym_displayed_equation] = STATE(430), + [sym_inline_formula] = STATE(430), + [sym_begin] = STATE(113), + [sym_environment] = STATE(430), + [sym_caption] = STATE(430), + [sym_citation] = STATE(430), + [sym_package_include] = STATE(430), + [sym_class_include] = STATE(430), + [sym_biblatex_include] = STATE(430), + [sym_graphics_include] = STATE(430), + [sym_import] = STATE(430), + [sym_label_definition] = STATE(430), + [sym_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_theorem_definition] = STATE(430), + [sym_generic_command] = STATE(430), + [aux_sym_subparagraph_repeat1] = STATE(430), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(3812), + [aux_sym_paragraph_token1] = ACTIONS(3812), + [aux_sym_subparagraph_token1] = ACTIONS(3812), + [anon_sym_BSLASHitem] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(7010), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [435] = { + [sym__simple_content] = STATE(438), + [sym_brace_group] = STATE(438), + [sym_mixed_group] = STATE(438), + [sym_text] = STATE(438), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(438), + [sym_inline_formula] = STATE(438), + [sym_begin] = STATE(113), + [sym_environment] = STATE(438), + [sym_caption] = STATE(438), + [sym_citation] = STATE(438), + [sym_package_include] = STATE(438), + [sym_class_include] = STATE(438), + [sym_biblatex_include] = STATE(438), + [sym_graphics_include] = STATE(438), + [sym_import] = STATE(438), + [sym_label_definition] = STATE(438), + [sym_label_reference] = STATE(438), + [sym_label_reference_range] = STATE(438), + [sym_label_number] = STATE(438), + [sym_command_definition] = STATE(438), + [sym_math_operator] = STATE(438), + [sym_glossary_entry_definition] = STATE(438), + [sym_glossary_entry_reference] = STATE(438), + [sym_acronym_definition] = STATE(438), + [sym_theorem_definition] = STATE(438), + [sym_generic_command] = STATE(438), + [aux_sym_enum_item_repeat1] = STATE(438), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(4186), + [aux_sym_paragraph_token1] = ACTIONS(4186), + [aux_sym_subparagraph_token1] = ACTIONS(4186), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(7012), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [436] = { + [sym__simple_content] = STATE(444), + [sym_brace_group] = STATE(444), + [sym_mixed_group] = STATE(444), + [sym_text] = STATE(444), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(444), + [sym_inline_formula] = STATE(444), + [sym_begin] = STATE(113), + [sym_environment] = STATE(444), + [sym_caption] = STATE(444), + [sym_citation] = STATE(444), + [sym_package_include] = STATE(444), + [sym_class_include] = STATE(444), + [sym_biblatex_include] = STATE(444), + [sym_graphics_include] = STATE(444), + [sym_import] = STATE(444), + [sym_label_definition] = STATE(444), + [sym_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_theorem_definition] = STATE(444), + [sym_generic_command] = STATE(444), + [aux_sym_enum_item_repeat1] = STATE(444), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(4342), + [aux_sym_paragraph_token1] = ACTIONS(4342), + [aux_sym_subparagraph_token1] = ACTIONS(4342), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(7014), + [anon_sym_RBRACK] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(7016), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [437] = { + [sym__simple_content] = STATE(439), + [sym_subparagraph] = 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(914), + [sym_displayed_equation] = STATE(439), + [sym_inline_formula] = STATE(439), + [sym_begin] = STATE(71), + [sym_environment] = STATE(439), + [sym_caption] = STATE(439), + [sym_citation] = STATE(439), + [sym_package_include] = STATE(439), + [sym_class_include] = STATE(439), + [sym_biblatex_include] = STATE(439), + [sym_graphics_include] = STATE(439), + [sym_import] = STATE(439), + [sym_label_definition] = STATE(439), + [sym_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_theorem_definition] = STATE(439), + [sym_generic_command] = STATE(439), + [aux_sym_paragraph_repeat1] = STATE(439), + [sym__generic_command_name] = ACTIONS(7018), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(7020), + [anon_sym_BSLASHitem] = ACTIONS(7022), + [anon_sym_LBRACK] = ACTIONS(7024), + [anon_sym_RBRACK] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(7026), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(7024), + [anon_sym_COMMA] = ACTIONS(7028), + [anon_sym_EQ] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [sym_param] = ACTIONS(7030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7036), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7038), + [aux_sym_citation_token1] = ACTIONS(7040), + [aux_sym_package_include_token1] = ACTIONS(7042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7044), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7046), + [aux_sym_graphics_include_token1] = ACTIONS(7048), + [aux_sym_import_token1] = ACTIONS(7050), + [anon_sym_BSLASHlabel] = ACTIONS(7052), + [aux_sym_label_reference_token1] = ACTIONS(7054), + [aux_sym_label_reference_range_token1] = ACTIONS(7056), + [anon_sym_BSLASHnewlabel] = ACTIONS(7058), + [aux_sym_command_definition_token1] = ACTIONS(7060), + [aux_sym_math_operator_token1] = ACTIONS(7062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7064), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7066), + [anon_sym_BSLASHnewacronym] = ACTIONS(7068), + [aux_sym_theorem_definition_token1] = ACTIONS(7070), + }, + [438] = { + [sym__simple_content] = STATE(440), + [sym_brace_group] = STATE(440), + [sym_mixed_group] = STATE(440), + [sym_text] = STATE(440), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(440), + [sym_inline_formula] = STATE(440), + [sym_begin] = STATE(113), + [sym_environment] = STATE(440), + [sym_caption] = STATE(440), + [sym_citation] = STATE(440), + [sym_package_include] = STATE(440), + [sym_class_include] = STATE(440), + [sym_biblatex_include] = STATE(440), + [sym_graphics_include] = STATE(440), + [sym_import] = STATE(440), + [sym_label_definition] = STATE(440), + [sym_label_reference] = STATE(440), + [sym_label_reference_range] = STATE(440), + [sym_label_number] = STATE(440), + [sym_command_definition] = STATE(440), + [sym_math_operator] = STATE(440), + [sym_glossary_entry_definition] = STATE(440), + [sym_glossary_entry_reference] = STATE(440), + [sym_acronym_definition] = STATE(440), + [sym_theorem_definition] = STATE(440), + [sym_generic_command] = STATE(440), + [aux_sym_enum_item_repeat1] = STATE(440), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(4252), + [aux_sym_paragraph_token1] = ACTIONS(4252), + [aux_sym_subparagraph_token1] = ACTIONS(4252), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(7072), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [439] = { + [sym__simple_content] = STATE(439), + [sym_subparagraph] = 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(914), + [sym_displayed_equation] = STATE(439), + [sym_inline_formula] = STATE(439), + [sym_begin] = STATE(71), + [sym_environment] = STATE(439), + [sym_caption] = STATE(439), + [sym_citation] = STATE(439), + [sym_package_include] = STATE(439), + [sym_class_include] = STATE(439), + [sym_biblatex_include] = STATE(439), + [sym_graphics_include] = STATE(439), + [sym_import] = STATE(439), + [sym_label_definition] = STATE(439), + [sym_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_theorem_definition] = STATE(439), + [sym_generic_command] = STATE(439), + [aux_sym_paragraph_repeat1] = STATE(439), + [sym__generic_command_name] = ACTIONS(7074), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(7077), + [anon_sym_BSLASHitem] = ACTIONS(7080), + [anon_sym_LBRACK] = ACTIONS(7083), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(7086), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(7083), + [anon_sym_COMMA] = ACTIONS(7089), + [anon_sym_EQ] = ACTIONS(7089), + [sym_word] = ACTIONS(7089), + [sym_param] = ACTIONS(7092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7095), + [anon_sym_DOLLAR] = ACTIONS(7098), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7101), + [anon_sym_BSLASHbegin] = ACTIONS(3021), + [anon_sym_BSLASHcaption] = ACTIONS(7104), + [aux_sym_citation_token1] = ACTIONS(7107), + [aux_sym_package_include_token1] = ACTIONS(7110), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7113), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), + [aux_sym_graphics_include_token1] = ACTIONS(7119), + [aux_sym_import_token1] = ACTIONS(7122), + [anon_sym_BSLASHlabel] = ACTIONS(7125), + [aux_sym_label_reference_token1] = ACTIONS(7128), + [aux_sym_label_reference_range_token1] = ACTIONS(7131), + [anon_sym_BSLASHnewlabel] = ACTIONS(7134), + [aux_sym_command_definition_token1] = ACTIONS(7137), + [aux_sym_math_operator_token1] = ACTIONS(7140), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7143), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), + [anon_sym_BSLASHnewacronym] = ACTIONS(7149), + [aux_sym_theorem_definition_token1] = ACTIONS(7152), + }, + [440] = { + [sym__simple_content] = STATE(440), + [sym_brace_group] = STATE(440), + [sym_mixed_group] = STATE(440), + [sym_text] = STATE(440), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(440), + [sym_inline_formula] = STATE(440), + [sym_begin] = STATE(113), + [sym_environment] = STATE(440), + [sym_caption] = STATE(440), + [sym_citation] = STATE(440), + [sym_package_include] = STATE(440), + [sym_class_include] = STATE(440), + [sym_biblatex_include] = STATE(440), + [sym_graphics_include] = STATE(440), + [sym_import] = STATE(440), + [sym_label_definition] = STATE(440), + [sym_label_reference] = STATE(440), + [sym_label_reference_range] = STATE(440), + [sym_label_number] = STATE(440), + [sym_command_definition] = STATE(440), + [sym_math_operator] = STATE(440), + [sym_glossary_entry_definition] = STATE(440), + [sym_glossary_entry_reference] = STATE(440), + [sym_acronym_definition] = STATE(440), + [sym_theorem_definition] = STATE(440), + [sym_generic_command] = STATE(440), + [aux_sym_enum_item_repeat1] = STATE(440), + [sym__generic_command_name] = ACTIONS(7155), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(4017), + [aux_sym_paragraph_token1] = ACTIONS(4017), + [aux_sym_subparagraph_token1] = ACTIONS(4017), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(7161), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(7158), + [anon_sym_COMMA] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(7164), + [sym_word] = ACTIONS(7164), + [sym_param] = ACTIONS(7167), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7170), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7170), + [anon_sym_DOLLAR] = ACTIONS(7173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7176), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(7179), + [aux_sym_citation_token1] = ACTIONS(7182), + [aux_sym_package_include_token1] = ACTIONS(7185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7188), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7191), + [aux_sym_graphics_include_token1] = ACTIONS(7194), + [aux_sym_import_token1] = ACTIONS(7197), + [anon_sym_BSLASHlabel] = ACTIONS(7200), + [aux_sym_label_reference_token1] = ACTIONS(7203), + [aux_sym_label_reference_range_token1] = ACTIONS(7206), + [anon_sym_BSLASHnewlabel] = ACTIONS(7209), + [aux_sym_command_definition_token1] = ACTIONS(7212), + [aux_sym_math_operator_token1] = ACTIONS(7215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7218), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7221), + [anon_sym_BSLASHnewacronym] = ACTIONS(7224), + [aux_sym_theorem_definition_token1] = ACTIONS(7227), + }, + [441] = { + [sym__simple_content] = STATE(442), + [sym_enum_item] = STATE(442), + [sym_brace_group] = STATE(442), + [sym_mixed_group] = STATE(442), + [sym_text] = STATE(442), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(442), + [sym_inline_formula] = STATE(442), + [sym_begin] = STATE(95), + [sym_environment] = STATE(442), + [sym_caption] = STATE(442), + [sym_citation] = STATE(442), + [sym_package_include] = STATE(442), + [sym_class_include] = STATE(442), + [sym_biblatex_include] = STATE(442), + [sym_graphics_include] = STATE(442), + [sym_import] = STATE(442), + [sym_label_definition] = STATE(442), + [sym_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_theorem_definition] = STATE(442), + [sym_generic_command] = STATE(442), + [aux_sym_subparagraph_repeat1] = STATE(442), + [sym__generic_command_name] = ACTIONS(6531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(3812), + [aux_sym_subparagraph_token1] = ACTIONS(3812), + [anon_sym_BSLASHitem] = ACTIONS(6537), + [anon_sym_LBRACK] = ACTIONS(6539), + [anon_sym_RBRACK] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(6541), + [anon_sym_RBRACE] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_COMMA] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(6543), + [sym_word] = ACTIONS(6543), + [sym_param] = ACTIONS(7230), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6547), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(6549), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6551), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6553), + [aux_sym_citation_token1] = ACTIONS(6555), + [aux_sym_package_include_token1] = ACTIONS(6557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6561), + [aux_sym_graphics_include_token1] = ACTIONS(6563), + [aux_sym_import_token1] = ACTIONS(6565), + [anon_sym_BSLASHlabel] = ACTIONS(6567), + [aux_sym_label_reference_token1] = ACTIONS(6569), + [aux_sym_label_reference_range_token1] = ACTIONS(6571), + [anon_sym_BSLASHnewlabel] = ACTIONS(6573), + [aux_sym_command_definition_token1] = ACTIONS(6575), + [aux_sym_math_operator_token1] = ACTIONS(6577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6579), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6581), + [anon_sym_BSLASHnewacronym] = ACTIONS(6583), + [aux_sym_theorem_definition_token1] = ACTIONS(6585), + }, + [442] = { + [sym__simple_content] = STATE(443), + [sym_enum_item] = STATE(443), + [sym_brace_group] = STATE(443), + [sym_mixed_group] = STATE(443), + [sym_text] = STATE(443), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(443), + [sym_inline_formula] = STATE(443), + [sym_begin] = STATE(95), + [sym_environment] = STATE(443), + [sym_caption] = STATE(443), + [sym_citation] = STATE(443), + [sym_package_include] = STATE(443), + [sym_class_include] = STATE(443), + [sym_biblatex_include] = STATE(443), + [sym_graphics_include] = STATE(443), + [sym_import] = STATE(443), + [sym_label_definition] = STATE(443), + [sym_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_theorem_definition] = STATE(443), + [sym_generic_command] = STATE(443), + [aux_sym_subparagraph_repeat1] = STATE(443), + [sym__generic_command_name] = ACTIONS(6531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(3818), + [aux_sym_subparagraph_token1] = ACTIONS(3818), + [anon_sym_BSLASHitem] = ACTIONS(6537), + [anon_sym_LBRACK] = ACTIONS(6539), + [anon_sym_RBRACK] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(6541), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_COMMA] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(6543), + [sym_word] = ACTIONS(6543), + [sym_param] = ACTIONS(7232), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6547), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(6549), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6551), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6553), + [aux_sym_citation_token1] = ACTIONS(6555), + [aux_sym_package_include_token1] = ACTIONS(6557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6561), + [aux_sym_graphics_include_token1] = ACTIONS(6563), + [aux_sym_import_token1] = ACTIONS(6565), + [anon_sym_BSLASHlabel] = ACTIONS(6567), + [aux_sym_label_reference_token1] = ACTIONS(6569), + [aux_sym_label_reference_range_token1] = ACTIONS(6571), + [anon_sym_BSLASHnewlabel] = ACTIONS(6573), + [aux_sym_command_definition_token1] = ACTIONS(6575), + [aux_sym_math_operator_token1] = ACTIONS(6577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6579), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6581), + [anon_sym_BSLASHnewacronym] = ACTIONS(6583), + [aux_sym_theorem_definition_token1] = ACTIONS(6585), + }, + [443] = { + [sym__simple_content] = STATE(443), + [sym_enum_item] = STATE(443), + [sym_brace_group] = STATE(443), + [sym_mixed_group] = STATE(443), + [sym_text] = STATE(443), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(443), + [sym_inline_formula] = STATE(443), + [sym_begin] = STATE(95), + [sym_environment] = STATE(443), + [sym_caption] = STATE(443), + [sym_citation] = STATE(443), + [sym_package_include] = STATE(443), + [sym_class_include] = STATE(443), + [sym_biblatex_include] = STATE(443), + [sym_graphics_include] = STATE(443), + [sym_import] = STATE(443), + [sym_label_definition] = STATE(443), + [sym_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_theorem_definition] = STATE(443), + [sym_generic_command] = STATE(443), + [aux_sym_subparagraph_repeat1] = STATE(443), + [sym__generic_command_name] = ACTIONS(7234), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(3730), + [aux_sym_subparagraph_token1] = ACTIONS(3730), + [anon_sym_BSLASHitem] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7240), + [anon_sym_RBRACK] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(7243), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(7240), + [anon_sym_COMMA] = ACTIONS(7246), + [anon_sym_EQ] = ACTIONS(7246), + [sym_word] = ACTIONS(7246), + [sym_param] = ACTIONS(7249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7252), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7252), + [anon_sym_DOLLAR] = ACTIONS(7255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7258), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHcaption] = ACTIONS(7261), + [aux_sym_citation_token1] = ACTIONS(7264), + [aux_sym_package_include_token1] = ACTIONS(7267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7270), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7273), + [aux_sym_graphics_include_token1] = ACTIONS(7276), + [aux_sym_import_token1] = ACTIONS(7279), + [anon_sym_BSLASHlabel] = ACTIONS(7282), + [aux_sym_label_reference_token1] = ACTIONS(7285), + [aux_sym_label_reference_range_token1] = ACTIONS(7288), + [anon_sym_BSLASHnewlabel] = ACTIONS(7291), + [aux_sym_command_definition_token1] = ACTIONS(7294), + [aux_sym_math_operator_token1] = ACTIONS(7297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7300), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7303), + [anon_sym_BSLASHnewacronym] = ACTIONS(7306), + [aux_sym_theorem_definition_token1] = ACTIONS(7309), + }, + [444] = { + [sym__simple_content] = STATE(440), + [sym_brace_group] = STATE(440), + [sym_mixed_group] = STATE(440), + [sym_text] = STATE(440), + [sym__text_fragment] = STATE(773), + [sym_displayed_equation] = STATE(440), + [sym_inline_formula] = STATE(440), + [sym_begin] = STATE(113), + [sym_environment] = STATE(440), + [sym_caption] = STATE(440), + [sym_citation] = STATE(440), + [sym_package_include] = STATE(440), + [sym_class_include] = STATE(440), + [sym_biblatex_include] = STATE(440), + [sym_graphics_include] = STATE(440), + [sym_import] = STATE(440), + [sym_label_definition] = STATE(440), + [sym_label_reference] = STATE(440), + [sym_label_reference_range] = STATE(440), + [sym_label_number] = STATE(440), + [sym_command_definition] = STATE(440), + [sym_math_operator] = STATE(440), + [sym_glossary_entry_definition] = STATE(440), + [sym_glossary_entry_reference] = STATE(440), + [sym_acronym_definition] = STATE(440), + [sym_theorem_definition] = STATE(440), + [sym_generic_command] = STATE(440), + [aux_sym_enum_item_repeat1] = STATE(440), + [sym__generic_command_name] = ACTIONS(5295), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(4008), + [aux_sym_paragraph_token1] = ACTIONS(4008), + [aux_sym_subparagraph_token1] = ACTIONS(4008), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(5305), + [anon_sym_COMMA] = ACTIONS(5309), + [anon_sym_EQ] = ACTIONS(5309), + [sym_word] = ACTIONS(5309), + [sym_param] = ACTIONS(7072), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [aux_sym_citation_token1] = ACTIONS(5321), + [aux_sym_package_include_token1] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5327), + [aux_sym_graphics_include_token1] = ACTIONS(5329), + [aux_sym_import_token1] = ACTIONS(5331), + [anon_sym_BSLASHlabel] = ACTIONS(5333), + [aux_sym_label_reference_token1] = ACTIONS(5335), + [aux_sym_label_reference_range_token1] = ACTIONS(5337), + [anon_sym_BSLASHnewlabel] = ACTIONS(5339), + [aux_sym_command_definition_token1] = ACTIONS(5341), + [aux_sym_math_operator_token1] = ACTIONS(5343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(5347), + [anon_sym_BSLASHnewacronym] = ACTIONS(5349), + [aux_sym_theorem_definition_token1] = ACTIONS(5351), + }, + [445] = { + [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(914), + [sym_displayed_equation] = STATE(437), + [sym_inline_formula] = STATE(437), + [sym_begin] = STATE(71), + [sym_environment] = STATE(437), + [sym_caption] = STATE(437), + [sym_citation] = STATE(437), + [sym_package_include] = STATE(437), + [sym_class_include] = STATE(437), + [sym_biblatex_include] = STATE(437), + [sym_graphics_include] = STATE(437), + [sym_import] = STATE(437), + [sym_label_definition] = STATE(437), + [sym_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_theorem_definition] = STATE(437), + [sym_generic_command] = STATE(437), + [aux_sym_paragraph_repeat1] = STATE(437), + [sym__generic_command_name] = ACTIONS(7018), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(7020), + [anon_sym_BSLASHitem] = ACTIONS(7022), + [anon_sym_LBRACK] = ACTIONS(7024), + [anon_sym_RBRACK] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(7026), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(7024), + [anon_sym_COMMA] = ACTIONS(7028), + [anon_sym_EQ] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [sym_param] = ACTIONS(7312), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7036), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7038), + [aux_sym_citation_token1] = ACTIONS(7040), + [aux_sym_package_include_token1] = ACTIONS(7042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7044), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7046), + [aux_sym_graphics_include_token1] = ACTIONS(7048), + [aux_sym_import_token1] = ACTIONS(7050), + [anon_sym_BSLASHlabel] = ACTIONS(7052), + [aux_sym_label_reference_token1] = ACTIONS(7054), + [aux_sym_label_reference_range_token1] = ACTIONS(7056), + [anon_sym_BSLASHnewlabel] = ACTIONS(7058), + [aux_sym_command_definition_token1] = ACTIONS(7060), + [aux_sym_math_operator_token1] = ACTIONS(7062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7064), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7066), + [anon_sym_BSLASHnewacronym] = ACTIONS(7068), + [aux_sym_theorem_definition_token1] = ACTIONS(7070), + }, + [446] = { + [sym__simple_content] = STATE(447), + [sym_brace_group] = STATE(447), + [sym_mixed_group] = STATE(447), + [sym_text] = STATE(447), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(447), + [sym_inline_formula] = STATE(447), + [sym_begin] = STATE(95), + [sym_environment] = STATE(447), + [sym_caption] = STATE(447), + [sym_citation] = STATE(447), + [sym_package_include] = STATE(447), + [sym_class_include] = STATE(447), + [sym_biblatex_include] = STATE(447), + [sym_graphics_include] = STATE(447), + [sym_import] = STATE(447), + [sym_label_definition] = STATE(447), + [sym_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_theorem_definition] = STATE(447), + [sym_generic_command] = STATE(447), + [aux_sym_enum_item_repeat1] = STATE(447), + [sym__generic_command_name] = ACTIONS(6531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(4342), + [aux_sym_subparagraph_token1] = ACTIONS(4342), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(7314), + [anon_sym_RBRACK] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(6541), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_COMMA] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(6543), + [sym_word] = ACTIONS(6543), + [sym_param] = ACTIONS(7316), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6547), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(6549), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6551), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6553), + [aux_sym_citation_token1] = ACTIONS(6555), + [aux_sym_package_include_token1] = ACTIONS(6557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6561), + [aux_sym_graphics_include_token1] = ACTIONS(6563), + [aux_sym_import_token1] = ACTIONS(6565), + [anon_sym_BSLASHlabel] = ACTIONS(6567), + [aux_sym_label_reference_token1] = ACTIONS(6569), + [aux_sym_label_reference_range_token1] = ACTIONS(6571), + [anon_sym_BSLASHnewlabel] = ACTIONS(6573), + [aux_sym_command_definition_token1] = ACTIONS(6575), + [aux_sym_math_operator_token1] = ACTIONS(6577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6579), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6581), + [anon_sym_BSLASHnewacronym] = ACTIONS(6583), + [aux_sym_theorem_definition_token1] = ACTIONS(6585), + }, + [447] = { + [sym__simple_content] = STATE(449), + [sym_brace_group] = STATE(449), + [sym_mixed_group] = STATE(449), + [sym_text] = STATE(449), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(449), + [sym_inline_formula] = STATE(449), + [sym_begin] = STATE(95), + [sym_environment] = STATE(449), + [sym_caption] = STATE(449), + [sym_citation] = STATE(449), + [sym_package_include] = STATE(449), + [sym_class_include] = STATE(449), + [sym_biblatex_include] = STATE(449), + [sym_graphics_include] = STATE(449), + [sym_import] = STATE(449), + [sym_label_definition] = STATE(449), + [sym_label_reference] = STATE(449), + [sym_label_reference_range] = STATE(449), + [sym_label_number] = STATE(449), + [sym_command_definition] = STATE(449), + [sym_math_operator] = STATE(449), + [sym_glossary_entry_definition] = STATE(449), + [sym_glossary_entry_reference] = STATE(449), + [sym_acronym_definition] = STATE(449), + [sym_theorem_definition] = STATE(449), + [sym_generic_command] = STATE(449), + [aux_sym_enum_item_repeat1] = STATE(449), + [sym__generic_command_name] = ACTIONS(6531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(4008), + [aux_sym_subparagraph_token1] = ACTIONS(4008), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(6539), + [anon_sym_RBRACK] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(6541), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_COMMA] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(6543), + [sym_word] = ACTIONS(6543), + [sym_param] = ACTIONS(7318), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6547), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(6549), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6551), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6553), + [aux_sym_citation_token1] = ACTIONS(6555), + [aux_sym_package_include_token1] = ACTIONS(6557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6561), + [aux_sym_graphics_include_token1] = ACTIONS(6563), + [aux_sym_import_token1] = ACTIONS(6565), + [anon_sym_BSLASHlabel] = ACTIONS(6567), + [aux_sym_label_reference_token1] = ACTIONS(6569), + [aux_sym_label_reference_range_token1] = ACTIONS(6571), + [anon_sym_BSLASHnewlabel] = ACTIONS(6573), + [aux_sym_command_definition_token1] = ACTIONS(6575), + [aux_sym_math_operator_token1] = ACTIONS(6577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6579), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6581), + [anon_sym_BSLASHnewacronym] = ACTIONS(6583), + [aux_sym_theorem_definition_token1] = ACTIONS(6585), + }, + [448] = { + [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(914), + [sym_displayed_equation] = STATE(453), + [sym_inline_formula] = STATE(453), + [sym_begin] = STATE(71), + [sym_environment] = STATE(453), + [sym_caption] = STATE(453), + [sym_citation] = STATE(453), + [sym_package_include] = STATE(453), + [sym_class_include] = STATE(453), + [sym_biblatex_include] = STATE(453), + [sym_graphics_include] = STATE(453), + [sym_import] = STATE(453), + [sym_label_definition] = STATE(453), + [sym_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_theorem_definition] = STATE(453), + [sym_generic_command] = STATE(453), + [aux_sym_subparagraph_repeat1] = STATE(453), + [sym__generic_command_name] = ACTIONS(7018), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(3812), + [anon_sym_BSLASHitem] = ACTIONS(7022), + [anon_sym_LBRACK] = ACTIONS(7024), + [anon_sym_RBRACK] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(7026), + [anon_sym_RBRACE] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(7024), + [anon_sym_COMMA] = ACTIONS(7028), + [anon_sym_EQ] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [sym_param] = ACTIONS(7320), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7036), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7038), + [aux_sym_citation_token1] = ACTIONS(7040), + [aux_sym_package_include_token1] = ACTIONS(7042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7044), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7046), + [aux_sym_graphics_include_token1] = ACTIONS(7048), + [aux_sym_import_token1] = ACTIONS(7050), + [anon_sym_BSLASHlabel] = ACTIONS(7052), + [aux_sym_label_reference_token1] = ACTIONS(7054), + [aux_sym_label_reference_range_token1] = ACTIONS(7056), + [anon_sym_BSLASHnewlabel] = ACTIONS(7058), + [aux_sym_command_definition_token1] = ACTIONS(7060), + [aux_sym_math_operator_token1] = ACTIONS(7062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7064), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7066), + [anon_sym_BSLASHnewacronym] = ACTIONS(7068), + [aux_sym_theorem_definition_token1] = ACTIONS(7070), + }, + [449] = { + [sym__simple_content] = STATE(449), + [sym_brace_group] = STATE(449), + [sym_mixed_group] = STATE(449), + [sym_text] = STATE(449), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(449), + [sym_inline_formula] = STATE(449), + [sym_begin] = STATE(95), + [sym_environment] = STATE(449), + [sym_caption] = STATE(449), + [sym_citation] = STATE(449), + [sym_package_include] = STATE(449), + [sym_class_include] = STATE(449), + [sym_biblatex_include] = STATE(449), + [sym_graphics_include] = STATE(449), + [sym_import] = STATE(449), + [sym_label_definition] = STATE(449), + [sym_label_reference] = STATE(449), + [sym_label_reference_range] = STATE(449), + [sym_label_number] = STATE(449), + [sym_command_definition] = STATE(449), + [sym_math_operator] = STATE(449), + [sym_glossary_entry_definition] = STATE(449), + [sym_glossary_entry_reference] = STATE(449), + [sym_acronym_definition] = STATE(449), + [sym_theorem_definition] = STATE(449), + [sym_generic_command] = STATE(449), + [aux_sym_enum_item_repeat1] = STATE(449), + [sym__generic_command_name] = ACTIONS(7322), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(4017), + [aux_sym_subparagraph_token1] = ACTIONS(4017), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(7325), + [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(7328), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(7325), + [anon_sym_COMMA] = ACTIONS(7331), + [anon_sym_EQ] = ACTIONS(7331), + [sym_word] = ACTIONS(7331), + [sym_param] = ACTIONS(7334), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7337), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7337), + [anon_sym_DOLLAR] = ACTIONS(7340), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7343), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(7346), + [aux_sym_citation_token1] = ACTIONS(7349), + [aux_sym_package_include_token1] = ACTIONS(7352), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7355), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7358), + [aux_sym_graphics_include_token1] = ACTIONS(7361), + [aux_sym_import_token1] = ACTIONS(7364), + [anon_sym_BSLASHlabel] = ACTIONS(7367), + [aux_sym_label_reference_token1] = ACTIONS(7370), + [aux_sym_label_reference_range_token1] = ACTIONS(7373), + [anon_sym_BSLASHnewlabel] = ACTIONS(7376), + [aux_sym_command_definition_token1] = ACTIONS(7379), + [aux_sym_math_operator_token1] = ACTIONS(7382), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7385), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7388), + [anon_sym_BSLASHnewacronym] = ACTIONS(7391), + [aux_sym_theorem_definition_token1] = ACTIONS(7394), + }, + [450] = { + [sym__simple_content] = STATE(451), + [sym_brace_group] = STATE(451), + [sym_mixed_group] = STATE(451), + [sym_text] = STATE(451), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(451), + [sym_inline_formula] = STATE(451), + [sym_begin] = STATE(95), + [sym_environment] = STATE(451), + [sym_caption] = STATE(451), + [sym_citation] = STATE(451), + [sym_package_include] = STATE(451), + [sym_class_include] = STATE(451), + [sym_biblatex_include] = STATE(451), + [sym_graphics_include] = STATE(451), + [sym_import] = STATE(451), + [sym_label_definition] = STATE(451), + [sym_label_reference] = STATE(451), + [sym_label_reference_range] = STATE(451), + [sym_label_number] = STATE(451), + [sym_command_definition] = STATE(451), + [sym_math_operator] = STATE(451), + [sym_glossary_entry_definition] = STATE(451), + [sym_glossary_entry_reference] = STATE(451), + [sym_acronym_definition] = STATE(451), + [sym_theorem_definition] = STATE(451), + [sym_generic_command] = STATE(451), + [aux_sym_enum_item_repeat1] = STATE(451), + [sym__generic_command_name] = ACTIONS(6531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(4186), + [aux_sym_subparagraph_token1] = ACTIONS(4186), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(6539), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(6541), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_COMMA] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(6543), + [sym_word] = ACTIONS(6543), + [sym_param] = ACTIONS(7397), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6547), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(6549), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6551), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6553), + [aux_sym_citation_token1] = ACTIONS(6555), + [aux_sym_package_include_token1] = ACTIONS(6557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6561), + [aux_sym_graphics_include_token1] = ACTIONS(6563), + [aux_sym_import_token1] = ACTIONS(6565), + [anon_sym_BSLASHlabel] = ACTIONS(6567), + [aux_sym_label_reference_token1] = ACTIONS(6569), + [aux_sym_label_reference_range_token1] = ACTIONS(6571), + [anon_sym_BSLASHnewlabel] = ACTIONS(6573), + [aux_sym_command_definition_token1] = ACTIONS(6575), + [aux_sym_math_operator_token1] = ACTIONS(6577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6579), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6581), + [anon_sym_BSLASHnewacronym] = ACTIONS(6583), + [aux_sym_theorem_definition_token1] = ACTIONS(6585), + }, + [451] = { + [sym__simple_content] = STATE(449), + [sym_brace_group] = STATE(449), + [sym_mixed_group] = STATE(449), + [sym_text] = STATE(449), + [sym__text_fragment] = STATE(845), + [sym_displayed_equation] = STATE(449), + [sym_inline_formula] = STATE(449), + [sym_begin] = STATE(95), + [sym_environment] = STATE(449), + [sym_caption] = STATE(449), + [sym_citation] = STATE(449), + [sym_package_include] = STATE(449), + [sym_class_include] = STATE(449), + [sym_biblatex_include] = STATE(449), + [sym_graphics_include] = STATE(449), + [sym_import] = STATE(449), + [sym_label_definition] = STATE(449), + [sym_label_reference] = STATE(449), + [sym_label_reference_range] = STATE(449), + [sym_label_number] = STATE(449), + [sym_command_definition] = STATE(449), + [sym_math_operator] = STATE(449), + [sym_glossary_entry_definition] = STATE(449), + [sym_glossary_entry_reference] = STATE(449), + [sym_acronym_definition] = STATE(449), + [sym_theorem_definition] = STATE(449), + [sym_generic_command] = STATE(449), + [aux_sym_enum_item_repeat1] = STATE(449), + [sym__generic_command_name] = ACTIONS(6531), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(4252), + [aux_sym_subparagraph_token1] = ACTIONS(4252), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(6539), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(6541), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_COMMA] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(6543), + [sym_word] = ACTIONS(6543), + [sym_param] = ACTIONS(7318), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6547), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(6549), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6551), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6553), + [aux_sym_citation_token1] = ACTIONS(6555), + [aux_sym_package_include_token1] = ACTIONS(6557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6561), + [aux_sym_graphics_include_token1] = ACTIONS(6563), + [aux_sym_import_token1] = ACTIONS(6565), + [anon_sym_BSLASHlabel] = ACTIONS(6567), + [aux_sym_label_reference_token1] = ACTIONS(6569), + [aux_sym_label_reference_range_token1] = ACTIONS(6571), + [anon_sym_BSLASHnewlabel] = ACTIONS(6573), + [aux_sym_command_definition_token1] = ACTIONS(6575), + [aux_sym_math_operator_token1] = ACTIONS(6577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6579), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(6581), + [anon_sym_BSLASHnewacronym] = ACTIONS(6583), + [aux_sym_theorem_definition_token1] = ACTIONS(6585), + }, + [452] = { + [sym__simple_content] = STATE(452), + [sym_enum_item] = STATE(452), + [sym_brace_group] = STATE(452), + [sym_mixed_group] = STATE(452), + [sym_text] = STATE(452), + [sym__text_fragment] = STATE(914), + [sym_displayed_equation] = STATE(452), + [sym_inline_formula] = STATE(452), + [sym_begin] = STATE(71), + [sym_environment] = STATE(452), + [sym_caption] = STATE(452), + [sym_citation] = STATE(452), + [sym_package_include] = STATE(452), + [sym_class_include] = STATE(452), + [sym_biblatex_include] = STATE(452), + [sym_graphics_include] = STATE(452), + [sym_import] = STATE(452), + [sym_label_definition] = STATE(452), + [sym_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_theorem_definition] = STATE(452), + [sym_generic_command] = STATE(452), + [aux_sym_subparagraph_repeat1] = STATE(452), + [sym__generic_command_name] = ACTIONS(7399), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(3730), + [anon_sym_BSLASHitem] = ACTIONS(7402), + [anon_sym_LBRACK] = ACTIONS(7405), + [anon_sym_RBRACK] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(7408), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(7405), + [anon_sym_COMMA] = ACTIONS(7411), + [anon_sym_EQ] = ACTIONS(7411), + [sym_word] = ACTIONS(7411), + [sym_param] = ACTIONS(7414), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7417), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7417), + [anon_sym_DOLLAR] = ACTIONS(7420), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7423), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHcaption] = ACTIONS(7426), + [aux_sym_citation_token1] = ACTIONS(7429), + [aux_sym_package_include_token1] = ACTIONS(7432), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7435), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7438), + [aux_sym_graphics_include_token1] = ACTIONS(7441), + [aux_sym_import_token1] = ACTIONS(7444), + [anon_sym_BSLASHlabel] = ACTIONS(7447), + [aux_sym_label_reference_token1] = ACTIONS(7450), + [aux_sym_label_reference_range_token1] = ACTIONS(7453), + [anon_sym_BSLASHnewlabel] = ACTIONS(7456), + [aux_sym_command_definition_token1] = ACTIONS(7459), + [aux_sym_math_operator_token1] = ACTIONS(7462), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7465), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7468), + [anon_sym_BSLASHnewacronym] = ACTIONS(7471), + [aux_sym_theorem_definition_token1] = ACTIONS(7474), + }, + [453] = { + [sym__simple_content] = STATE(452), + [sym_enum_item] = STATE(452), + [sym_brace_group] = STATE(452), + [sym_mixed_group] = STATE(452), + [sym_text] = STATE(452), + [sym__text_fragment] = STATE(914), + [sym_displayed_equation] = STATE(452), + [sym_inline_formula] = STATE(452), + [sym_begin] = STATE(71), + [sym_environment] = STATE(452), + [sym_caption] = STATE(452), + [sym_citation] = STATE(452), + [sym_package_include] = STATE(452), + [sym_class_include] = STATE(452), + [sym_biblatex_include] = STATE(452), + [sym_graphics_include] = STATE(452), + [sym_import] = STATE(452), + [sym_label_definition] = STATE(452), + [sym_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_theorem_definition] = STATE(452), + [sym_generic_command] = STATE(452), + [aux_sym_subparagraph_repeat1] = STATE(452), + [sym__generic_command_name] = ACTIONS(7018), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(3818), + [anon_sym_BSLASHitem] = ACTIONS(7022), + [anon_sym_LBRACK] = ACTIONS(7024), + [anon_sym_RBRACK] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(7026), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(7024), + [anon_sym_COMMA] = ACTIONS(7028), + [anon_sym_EQ] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [sym_param] = ACTIONS(7477), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7036), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7038), + [aux_sym_citation_token1] = ACTIONS(7040), + [aux_sym_package_include_token1] = ACTIONS(7042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7044), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7046), + [aux_sym_graphics_include_token1] = ACTIONS(7048), + [aux_sym_import_token1] = ACTIONS(7050), + [anon_sym_BSLASHlabel] = ACTIONS(7052), + [aux_sym_label_reference_token1] = ACTIONS(7054), + [aux_sym_label_reference_range_token1] = ACTIONS(7056), + [anon_sym_BSLASHnewlabel] = ACTIONS(7058), + [aux_sym_command_definition_token1] = ACTIONS(7060), + [aux_sym_math_operator_token1] = ACTIONS(7062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7064), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7066), + [anon_sym_BSLASHnewacronym] = ACTIONS(7068), + [aux_sym_theorem_definition_token1] = ACTIONS(7070), + }, + [454] = { + [sym__simple_content] = STATE(455), + [sym_enum_item] = STATE(455), + [sym_brace_group] = STATE(455), + [sym_mixed_group] = STATE(455), + [sym_text] = STATE(455), + [sym__text_fragment] = STATE(980), + [sym_displayed_equation] = STATE(455), + [sym_inline_formula] = STATE(455), + [sym_begin] = STATE(105), + [sym_environment] = STATE(455), + [sym_caption] = STATE(455), + [sym_citation] = STATE(455), + [sym_package_include] = STATE(455), + [sym_class_include] = STATE(455), + [sym_biblatex_include] = STATE(455), + [sym_graphics_include] = STATE(455), + [sym_import] = STATE(455), + [sym_label_definition] = STATE(455), + [sym_label_reference] = STATE(455), + [sym_label_reference_range] = STATE(455), + [sym_label_number] = STATE(455), + [sym_command_definition] = STATE(455), + [sym_math_operator] = STATE(455), + [sym_glossary_entry_definition] = STATE(455), + [sym_glossary_entry_reference] = STATE(455), + [sym_acronym_definition] = STATE(455), + [sym_theorem_definition] = STATE(455), + [sym_generic_command] = STATE(455), + [aux_sym_subparagraph_repeat1] = STATE(455), + [sym__generic_command_name] = ACTIONS(7479), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(7481), + [anon_sym_LBRACK] = ACTIONS(7483), + [anon_sym_RBRACK] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(7485), + [anon_sym_RBRACE] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7487), + [anon_sym_EQ] = ACTIONS(7487), + [sym_word] = ACTIONS(7487), + [sym_param] = ACTIONS(7489), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7491), + [anon_sym_DOLLAR] = ACTIONS(7493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7495), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7497), + [aux_sym_citation_token1] = ACTIONS(7499), + [aux_sym_package_include_token1] = ACTIONS(7501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7503), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7505), + [aux_sym_graphics_include_token1] = ACTIONS(7507), + [aux_sym_import_token1] = ACTIONS(7509), + [anon_sym_BSLASHlabel] = ACTIONS(7511), + [aux_sym_label_reference_token1] = ACTIONS(7513), + [aux_sym_label_reference_range_token1] = ACTIONS(7515), + [anon_sym_BSLASHnewlabel] = ACTIONS(7517), + [aux_sym_command_definition_token1] = ACTIONS(7519), + [aux_sym_math_operator_token1] = ACTIONS(7521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7523), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7525), + [anon_sym_BSLASHnewacronym] = ACTIONS(7527), + [aux_sym_theorem_definition_token1] = ACTIONS(7529), + }, + [455] = { + [sym__simple_content] = STATE(457), + [sym_enum_item] = STATE(457), + [sym_brace_group] = STATE(457), + [sym_mixed_group] = STATE(457), + [sym_text] = STATE(457), + [sym__text_fragment] = STATE(980), + [sym_displayed_equation] = STATE(457), + [sym_inline_formula] = STATE(457), + [sym_begin] = STATE(105), + [sym_environment] = STATE(457), + [sym_caption] = STATE(457), + [sym_citation] = STATE(457), + [sym_package_include] = STATE(457), + [sym_class_include] = STATE(457), + [sym_biblatex_include] = STATE(457), + [sym_graphics_include] = STATE(457), + [sym_import] = STATE(457), + [sym_label_definition] = STATE(457), + [sym_label_reference] = STATE(457), + [sym_label_reference_range] = STATE(457), + [sym_label_number] = STATE(457), + [sym_command_definition] = STATE(457), + [sym_math_operator] = STATE(457), + [sym_glossary_entry_definition] = STATE(457), + [sym_glossary_entry_reference] = STATE(457), + [sym_acronym_definition] = STATE(457), + [sym_theorem_definition] = STATE(457), + [sym_generic_command] = STATE(457), + [aux_sym_subparagraph_repeat1] = STATE(457), + [sym__generic_command_name] = ACTIONS(7479), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(7481), + [anon_sym_LBRACK] = ACTIONS(7483), + [anon_sym_RBRACK] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(7485), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7487), + [anon_sym_EQ] = ACTIONS(7487), + [sym_word] = ACTIONS(7487), + [sym_param] = ACTIONS(7531), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7491), + [anon_sym_DOLLAR] = ACTIONS(7493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7495), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7497), + [aux_sym_citation_token1] = ACTIONS(7499), + [aux_sym_package_include_token1] = ACTIONS(7501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7503), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7505), + [aux_sym_graphics_include_token1] = ACTIONS(7507), + [aux_sym_import_token1] = ACTIONS(7509), + [anon_sym_BSLASHlabel] = ACTIONS(7511), + [aux_sym_label_reference_token1] = ACTIONS(7513), + [aux_sym_label_reference_range_token1] = ACTIONS(7515), + [anon_sym_BSLASHnewlabel] = ACTIONS(7517), + [aux_sym_command_definition_token1] = ACTIONS(7519), + [aux_sym_math_operator_token1] = ACTIONS(7521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7523), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7525), + [anon_sym_BSLASHnewacronym] = ACTIONS(7527), + [aux_sym_theorem_definition_token1] = ACTIONS(7529), + }, + [456] = { + [sym__simple_content] = STATE(459), + [sym_brace_group] = STATE(459), + [sym_mixed_group] = STATE(459), + [sym_text] = STATE(459), + [sym__text_fragment] = STATE(914), + [sym_displayed_equation] = STATE(459), + [sym_inline_formula] = STATE(459), + [sym_begin] = STATE(71), + [sym_environment] = STATE(459), + [sym_caption] = STATE(459), + [sym_citation] = STATE(459), + [sym_package_include] = STATE(459), + [sym_class_include] = STATE(459), + [sym_biblatex_include] = STATE(459), + [sym_graphics_include] = STATE(459), + [sym_import] = STATE(459), + [sym_label_definition] = STATE(459), + [sym_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_theorem_definition] = STATE(459), + [sym_generic_command] = STATE(459), + [aux_sym_enum_item_repeat1] = STATE(459), + [sym__generic_command_name] = ACTIONS(7018), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(4342), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(7533), + [anon_sym_RBRACK] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(7026), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(7024), + [anon_sym_COMMA] = ACTIONS(7028), + [anon_sym_EQ] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [sym_param] = ACTIONS(7535), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7036), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7038), + [aux_sym_citation_token1] = ACTIONS(7040), + [aux_sym_package_include_token1] = ACTIONS(7042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7044), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7046), + [aux_sym_graphics_include_token1] = ACTIONS(7048), + [aux_sym_import_token1] = ACTIONS(7050), + [anon_sym_BSLASHlabel] = ACTIONS(7052), + [aux_sym_label_reference_token1] = ACTIONS(7054), + [aux_sym_label_reference_range_token1] = ACTIONS(7056), + [anon_sym_BSLASHnewlabel] = ACTIONS(7058), + [aux_sym_command_definition_token1] = ACTIONS(7060), + [aux_sym_math_operator_token1] = ACTIONS(7062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7064), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7066), + [anon_sym_BSLASHnewacronym] = ACTIONS(7068), + [aux_sym_theorem_definition_token1] = ACTIONS(7070), + }, + [457] = { + [sym__simple_content] = STATE(457), + [sym_enum_item] = STATE(457), + [sym_brace_group] = STATE(457), + [sym_mixed_group] = STATE(457), + [sym_text] = STATE(457), + [sym__text_fragment] = STATE(980), + [sym_displayed_equation] = STATE(457), + [sym_inline_formula] = STATE(457), + [sym_begin] = STATE(105), + [sym_environment] = STATE(457), + [sym_caption] = STATE(457), + [sym_citation] = STATE(457), + [sym_package_include] = STATE(457), + [sym_class_include] = STATE(457), + [sym_biblatex_include] = STATE(457), + [sym_graphics_include] = STATE(457), + [sym_import] = STATE(457), + [sym_label_definition] = STATE(457), + [sym_label_reference] = STATE(457), + [sym_label_reference_range] = STATE(457), + [sym_label_number] = STATE(457), + [sym_command_definition] = STATE(457), + [sym_math_operator] = STATE(457), + [sym_glossary_entry_definition] = STATE(457), + [sym_glossary_entry_reference] = STATE(457), + [sym_acronym_definition] = STATE(457), + [sym_theorem_definition] = STATE(457), + [sym_generic_command] = STATE(457), + [aux_sym_subparagraph_repeat1] = STATE(457), + [sym__generic_command_name] = ACTIONS(7537), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(7540), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_RBRACK] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(7546), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(7543), + [anon_sym_COMMA] = ACTIONS(7549), + [anon_sym_EQ] = ACTIONS(7549), + [sym_word] = ACTIONS(7549), + [sym_param] = ACTIONS(7552), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7555), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7555), + [anon_sym_DOLLAR] = ACTIONS(7558), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7561), + [anon_sym_BSLASHbegin] = ACTIONS(3756), + [anon_sym_BSLASHcaption] = ACTIONS(7564), + [aux_sym_citation_token1] = ACTIONS(7567), + [aux_sym_package_include_token1] = ACTIONS(7570), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7573), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7576), + [aux_sym_graphics_include_token1] = ACTIONS(7579), + [aux_sym_import_token1] = ACTIONS(7582), + [anon_sym_BSLASHlabel] = ACTIONS(7585), + [aux_sym_label_reference_token1] = ACTIONS(7588), + [aux_sym_label_reference_range_token1] = ACTIONS(7591), + [anon_sym_BSLASHnewlabel] = ACTIONS(7594), + [aux_sym_command_definition_token1] = ACTIONS(7597), + [aux_sym_math_operator_token1] = ACTIONS(7600), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7603), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7606), + [anon_sym_BSLASHnewacronym] = ACTIONS(7609), + [aux_sym_theorem_definition_token1] = ACTIONS(7612), + }, + [458] = { + [sym__simple_content] = STATE(461), + [sym_brace_group] = STATE(461), + [sym_mixed_group] = STATE(461), + [sym_text] = STATE(461), + [sym__text_fragment] = STATE(914), + [sym_displayed_equation] = STATE(461), + [sym_inline_formula] = STATE(461), + [sym_begin] = STATE(71), + [sym_environment] = STATE(461), + [sym_caption] = STATE(461), + [sym_citation] = STATE(461), + [sym_package_include] = STATE(461), + [sym_class_include] = STATE(461), + [sym_biblatex_include] = STATE(461), + [sym_graphics_include] = STATE(461), + [sym_import] = STATE(461), + [sym_label_definition] = STATE(461), + [sym_label_reference] = STATE(461), + [sym_label_reference_range] = STATE(461), + [sym_label_number] = STATE(461), + [sym_command_definition] = STATE(461), + [sym_math_operator] = STATE(461), + [sym_glossary_entry_definition] = STATE(461), + [sym_glossary_entry_reference] = STATE(461), + [sym_acronym_definition] = STATE(461), + [sym_theorem_definition] = STATE(461), + [sym_generic_command] = STATE(461), + [aux_sym_enum_item_repeat1] = STATE(461), + [sym__generic_command_name] = ACTIONS(7018), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(4252), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(7024), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(7026), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(7024), + [anon_sym_COMMA] = ACTIONS(7028), + [anon_sym_EQ] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [sym_param] = ACTIONS(7615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7036), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7038), + [aux_sym_citation_token1] = ACTIONS(7040), + [aux_sym_package_include_token1] = ACTIONS(7042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7044), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7046), + [aux_sym_graphics_include_token1] = ACTIONS(7048), + [aux_sym_import_token1] = ACTIONS(7050), + [anon_sym_BSLASHlabel] = ACTIONS(7052), + [aux_sym_label_reference_token1] = ACTIONS(7054), + [aux_sym_label_reference_range_token1] = ACTIONS(7056), + [anon_sym_BSLASHnewlabel] = ACTIONS(7058), + [aux_sym_command_definition_token1] = ACTIONS(7060), + [aux_sym_math_operator_token1] = ACTIONS(7062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7064), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7066), + [anon_sym_BSLASHnewacronym] = ACTIONS(7068), + [aux_sym_theorem_definition_token1] = ACTIONS(7070), + }, + [459] = { + [sym__simple_content] = STATE(461), + [sym_brace_group] = STATE(461), + [sym_mixed_group] = STATE(461), + [sym_text] = STATE(461), + [sym__text_fragment] = STATE(914), + [sym_displayed_equation] = STATE(461), + [sym_inline_formula] = STATE(461), + [sym_begin] = STATE(71), + [sym_environment] = STATE(461), + [sym_caption] = STATE(461), + [sym_citation] = STATE(461), + [sym_package_include] = STATE(461), + [sym_class_include] = STATE(461), + [sym_biblatex_include] = STATE(461), + [sym_graphics_include] = STATE(461), + [sym_import] = STATE(461), + [sym_label_definition] = STATE(461), + [sym_label_reference] = STATE(461), + [sym_label_reference_range] = STATE(461), + [sym_label_number] = STATE(461), + [sym_command_definition] = STATE(461), + [sym_math_operator] = STATE(461), + [sym_glossary_entry_definition] = STATE(461), + [sym_glossary_entry_reference] = STATE(461), + [sym_acronym_definition] = STATE(461), + [sym_theorem_definition] = STATE(461), + [sym_generic_command] = STATE(461), + [aux_sym_enum_item_repeat1] = STATE(461), + [sym__generic_command_name] = ACTIONS(7018), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(4008), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(7024), + [anon_sym_RBRACK] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(7026), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(7024), + [anon_sym_COMMA] = ACTIONS(7028), + [anon_sym_EQ] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [sym_param] = ACTIONS(7615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7036), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7038), + [aux_sym_citation_token1] = ACTIONS(7040), + [aux_sym_package_include_token1] = ACTIONS(7042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7044), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7046), + [aux_sym_graphics_include_token1] = ACTIONS(7048), + [aux_sym_import_token1] = ACTIONS(7050), + [anon_sym_BSLASHlabel] = ACTIONS(7052), + [aux_sym_label_reference_token1] = ACTIONS(7054), + [aux_sym_label_reference_range_token1] = ACTIONS(7056), + [anon_sym_BSLASHnewlabel] = ACTIONS(7058), + [aux_sym_command_definition_token1] = ACTIONS(7060), + [aux_sym_math_operator_token1] = ACTIONS(7062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7064), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7066), + [anon_sym_BSLASHnewacronym] = ACTIONS(7068), + [aux_sym_theorem_definition_token1] = ACTIONS(7070), + }, + [460] = { + [sym__simple_content] = STATE(458), + [sym_brace_group] = STATE(458), + [sym_mixed_group] = STATE(458), + [sym_text] = STATE(458), + [sym__text_fragment] = STATE(914), + [sym_displayed_equation] = STATE(458), + [sym_inline_formula] = STATE(458), + [sym_begin] = STATE(71), + [sym_environment] = STATE(458), + [sym_caption] = STATE(458), + [sym_citation] = STATE(458), + [sym_package_include] = STATE(458), + [sym_class_include] = STATE(458), + [sym_biblatex_include] = STATE(458), + [sym_graphics_include] = STATE(458), + [sym_import] = STATE(458), + [sym_label_definition] = STATE(458), + [sym_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_theorem_definition] = STATE(458), + [sym_generic_command] = STATE(458), + [aux_sym_enum_item_repeat1] = STATE(458), + [sym__generic_command_name] = ACTIONS(7018), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(4186), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(7024), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(7026), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(7024), + [anon_sym_COMMA] = ACTIONS(7028), + [anon_sym_EQ] = ACTIONS(7028), + [sym_word] = ACTIONS(7028), + [sym_param] = ACTIONS(7617), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7032), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7034), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7036), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7038), + [aux_sym_citation_token1] = ACTIONS(7040), + [aux_sym_package_include_token1] = ACTIONS(7042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7044), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7046), + [aux_sym_graphics_include_token1] = ACTIONS(7048), + [aux_sym_import_token1] = ACTIONS(7050), + [anon_sym_BSLASHlabel] = ACTIONS(7052), + [aux_sym_label_reference_token1] = ACTIONS(7054), + [aux_sym_label_reference_range_token1] = ACTIONS(7056), + [anon_sym_BSLASHnewlabel] = ACTIONS(7058), + [aux_sym_command_definition_token1] = ACTIONS(7060), + [aux_sym_math_operator_token1] = ACTIONS(7062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7064), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7066), + [anon_sym_BSLASHnewacronym] = ACTIONS(7068), + [aux_sym_theorem_definition_token1] = ACTIONS(7070), + }, + [461] = { + [sym__simple_content] = STATE(461), + [sym_brace_group] = STATE(461), + [sym_mixed_group] = STATE(461), + [sym_text] = STATE(461), + [sym__text_fragment] = STATE(914), + [sym_displayed_equation] = STATE(461), + [sym_inline_formula] = STATE(461), + [sym_begin] = STATE(71), + [sym_environment] = STATE(461), + [sym_caption] = STATE(461), + [sym_citation] = STATE(461), + [sym_package_include] = STATE(461), + [sym_class_include] = STATE(461), + [sym_biblatex_include] = STATE(461), + [sym_graphics_include] = STATE(461), + [sym_import] = STATE(461), + [sym_label_definition] = STATE(461), + [sym_label_reference] = STATE(461), + [sym_label_reference_range] = STATE(461), + [sym_label_number] = STATE(461), + [sym_command_definition] = STATE(461), + [sym_math_operator] = STATE(461), + [sym_glossary_entry_definition] = STATE(461), + [sym_glossary_entry_reference] = STATE(461), + [sym_acronym_definition] = STATE(461), + [sym_theorem_definition] = STATE(461), + [sym_generic_command] = STATE(461), + [aux_sym_enum_item_repeat1] = STATE(461), + [sym__generic_command_name] = ACTIONS(7619), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(4017), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(7622), + [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(7625), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(7622), + [anon_sym_COMMA] = ACTIONS(7628), + [anon_sym_EQ] = ACTIONS(7628), + [sym_word] = ACTIONS(7628), + [sym_param] = ACTIONS(7631), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7634), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7634), + [anon_sym_DOLLAR] = ACTIONS(7637), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7640), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(7643), + [aux_sym_citation_token1] = ACTIONS(7646), + [aux_sym_package_include_token1] = ACTIONS(7649), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7652), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7655), + [aux_sym_graphics_include_token1] = ACTIONS(7658), + [aux_sym_import_token1] = ACTIONS(7661), + [anon_sym_BSLASHlabel] = ACTIONS(7664), + [aux_sym_label_reference_token1] = ACTIONS(7667), + [aux_sym_label_reference_range_token1] = ACTIONS(7670), + [anon_sym_BSLASHnewlabel] = ACTIONS(7673), + [aux_sym_command_definition_token1] = ACTIONS(7676), + [aux_sym_math_operator_token1] = ACTIONS(7679), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7682), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7685), + [anon_sym_BSLASHnewacronym] = ACTIONS(7688), + [aux_sym_theorem_definition_token1] = ACTIONS(7691), + }, + [462] = { + [sym__simple_content] = STATE(462), + [sym_brace_group] = STATE(462), + [sym_mixed_group] = STATE(462), + [sym_text] = STATE(462), + [sym__text_fragment] = STATE(980), + [sym_displayed_equation] = STATE(462), + [sym_inline_formula] = STATE(462), + [sym_begin] = STATE(105), + [sym_environment] = STATE(462), + [sym_caption] = STATE(462), + [sym_citation] = STATE(462), + [sym_package_include] = STATE(462), + [sym_class_include] = STATE(462), + [sym_biblatex_include] = STATE(462), + [sym_graphics_include] = STATE(462), + [sym_import] = STATE(462), + [sym_label_definition] = STATE(462), + [sym_label_reference] = STATE(462), + [sym_label_reference_range] = STATE(462), + [sym_label_number] = STATE(462), + [sym_command_definition] = STATE(462), + [sym_math_operator] = STATE(462), + [sym_glossary_entry_definition] = STATE(462), + [sym_glossary_entry_reference] = STATE(462), + [sym_acronym_definition] = STATE(462), + [sym_theorem_definition] = STATE(462), + [sym_generic_command] = STATE(462), + [aux_sym_enum_item_repeat1] = STATE(462), + [sym__generic_command_name] = ACTIONS(7694), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(7697), + [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(7700), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(7697), + [anon_sym_COMMA] = ACTIONS(7703), + [anon_sym_EQ] = ACTIONS(7703), + [sym_word] = ACTIONS(7703), + [sym_param] = ACTIONS(7706), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7709), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7709), + [anon_sym_DOLLAR] = ACTIONS(7712), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7715), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(7718), + [aux_sym_citation_token1] = ACTIONS(7721), + [aux_sym_package_include_token1] = ACTIONS(7724), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7727), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7730), + [aux_sym_graphics_include_token1] = ACTIONS(7733), + [aux_sym_import_token1] = ACTIONS(7736), + [anon_sym_BSLASHlabel] = ACTIONS(7739), + [aux_sym_label_reference_token1] = ACTIONS(7742), + [aux_sym_label_reference_range_token1] = ACTIONS(7745), + [anon_sym_BSLASHnewlabel] = ACTIONS(7748), + [aux_sym_command_definition_token1] = ACTIONS(7751), + [aux_sym_math_operator_token1] = ACTIONS(7754), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7757), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7760), + [anon_sym_BSLASHnewacronym] = ACTIONS(7763), + [aux_sym_theorem_definition_token1] = ACTIONS(7766), + }, + [463] = { + [sym__simple_content] = STATE(464), + [sym_brace_group] = STATE(464), + [sym_mixed_group] = STATE(464), + [sym_text] = STATE(464), + [sym__text_fragment] = STATE(980), + [sym_displayed_equation] = STATE(464), + [sym_inline_formula] = STATE(464), + [sym_begin] = STATE(105), + [sym_environment] = STATE(464), + [sym_caption] = STATE(464), + [sym_citation] = STATE(464), + [sym_package_include] = STATE(464), + [sym_class_include] = STATE(464), + [sym_biblatex_include] = STATE(464), + [sym_graphics_include] = STATE(464), + [sym_import] = STATE(464), + [sym_label_definition] = STATE(464), + [sym_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_theorem_definition] = STATE(464), + [sym_generic_command] = STATE(464), + [aux_sym_enum_item_repeat1] = STATE(464), + [sym__generic_command_name] = ACTIONS(7479), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(7769), + [anon_sym_RBRACK] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(7485), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7487), + [anon_sym_EQ] = ACTIONS(7487), + [sym_word] = ACTIONS(7487), + [sym_param] = ACTIONS(7771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7491), + [anon_sym_DOLLAR] = ACTIONS(7493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7495), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7497), + [aux_sym_citation_token1] = ACTIONS(7499), + [aux_sym_package_include_token1] = ACTIONS(7501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7503), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7505), + [aux_sym_graphics_include_token1] = ACTIONS(7507), + [aux_sym_import_token1] = ACTIONS(7509), + [anon_sym_BSLASHlabel] = ACTIONS(7511), + [aux_sym_label_reference_token1] = ACTIONS(7513), + [aux_sym_label_reference_range_token1] = ACTIONS(7515), + [anon_sym_BSLASHnewlabel] = ACTIONS(7517), + [aux_sym_command_definition_token1] = ACTIONS(7519), + [aux_sym_math_operator_token1] = ACTIONS(7521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7523), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7525), + [anon_sym_BSLASHnewacronym] = ACTIONS(7527), + [aux_sym_theorem_definition_token1] = ACTIONS(7529), + }, + [464] = { + [sym__simple_content] = STATE(462), + [sym_brace_group] = STATE(462), + [sym_mixed_group] = STATE(462), + [sym_text] = STATE(462), + [sym__text_fragment] = STATE(980), + [sym_displayed_equation] = STATE(462), + [sym_inline_formula] = STATE(462), + [sym_begin] = STATE(105), + [sym_environment] = STATE(462), + [sym_caption] = STATE(462), + [sym_citation] = STATE(462), + [sym_package_include] = STATE(462), + [sym_class_include] = STATE(462), + [sym_biblatex_include] = STATE(462), + [sym_graphics_include] = STATE(462), + [sym_import] = STATE(462), + [sym_label_definition] = STATE(462), + [sym_label_reference] = STATE(462), + [sym_label_reference_range] = STATE(462), + [sym_label_number] = STATE(462), + [sym_command_definition] = STATE(462), + [sym_math_operator] = STATE(462), + [sym_glossary_entry_definition] = STATE(462), + [sym_glossary_entry_reference] = STATE(462), + [sym_acronym_definition] = STATE(462), + [sym_theorem_definition] = STATE(462), + [sym_generic_command] = STATE(462), + [aux_sym_enum_item_repeat1] = STATE(462), + [sym__generic_command_name] = ACTIONS(7479), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(7483), + [anon_sym_RBRACK] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(7485), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7487), + [anon_sym_EQ] = ACTIONS(7487), + [sym_word] = ACTIONS(7487), + [sym_param] = ACTIONS(7773), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7491), + [anon_sym_DOLLAR] = ACTIONS(7493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7495), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7497), + [aux_sym_citation_token1] = ACTIONS(7499), + [aux_sym_package_include_token1] = ACTIONS(7501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7503), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7505), + [aux_sym_graphics_include_token1] = ACTIONS(7507), + [aux_sym_import_token1] = ACTIONS(7509), + [anon_sym_BSLASHlabel] = ACTIONS(7511), + [aux_sym_label_reference_token1] = ACTIONS(7513), + [aux_sym_label_reference_range_token1] = ACTIONS(7515), + [anon_sym_BSLASHnewlabel] = ACTIONS(7517), + [aux_sym_command_definition_token1] = ACTIONS(7519), + [aux_sym_math_operator_token1] = ACTIONS(7521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7523), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7525), + [anon_sym_BSLASHnewacronym] = ACTIONS(7527), + [aux_sym_theorem_definition_token1] = ACTIONS(7529), + }, + [465] = { + [sym__simple_content] = STATE(466), + [sym_brace_group] = STATE(466), + [sym_mixed_group] = STATE(466), + [sym_text] = STATE(466), + [sym__text_fragment] = STATE(980), + [sym_displayed_equation] = STATE(466), + [sym_inline_formula] = STATE(466), + [sym_begin] = STATE(105), + [sym_environment] = STATE(466), + [sym_caption] = STATE(466), + [sym_citation] = STATE(466), + [sym_package_include] = STATE(466), + [sym_class_include] = STATE(466), + [sym_biblatex_include] = STATE(466), + [sym_graphics_include] = STATE(466), + [sym_import] = STATE(466), + [sym_label_definition] = STATE(466), + [sym_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_theorem_definition] = STATE(466), + [sym_generic_command] = STATE(466), + [aux_sym_enum_item_repeat1] = STATE(466), + [sym__generic_command_name] = ACTIONS(7479), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(4186), + [anon_sym_LBRACK] = ACTIONS(7483), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(7485), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7487), + [anon_sym_EQ] = ACTIONS(7487), + [sym_word] = ACTIONS(7487), + [sym_param] = ACTIONS(7775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7491), + [anon_sym_DOLLAR] = ACTIONS(7493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7495), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7497), + [aux_sym_citation_token1] = ACTIONS(7499), + [aux_sym_package_include_token1] = ACTIONS(7501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7503), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7505), + [aux_sym_graphics_include_token1] = ACTIONS(7507), + [aux_sym_import_token1] = ACTIONS(7509), + [anon_sym_BSLASHlabel] = ACTIONS(7511), + [aux_sym_label_reference_token1] = ACTIONS(7513), + [aux_sym_label_reference_range_token1] = ACTIONS(7515), + [anon_sym_BSLASHnewlabel] = ACTIONS(7517), + [aux_sym_command_definition_token1] = ACTIONS(7519), + [aux_sym_math_operator_token1] = ACTIONS(7521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7523), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7525), + [anon_sym_BSLASHnewacronym] = ACTIONS(7527), + [aux_sym_theorem_definition_token1] = ACTIONS(7529), + }, + [466] = { + [sym__simple_content] = STATE(462), + [sym_brace_group] = STATE(462), + [sym_mixed_group] = STATE(462), + [sym_text] = STATE(462), + [sym__text_fragment] = STATE(980), + [sym_displayed_equation] = STATE(462), + [sym_inline_formula] = STATE(462), + [sym_begin] = STATE(105), + [sym_environment] = STATE(462), + [sym_caption] = STATE(462), + [sym_citation] = STATE(462), + [sym_package_include] = STATE(462), + [sym_class_include] = STATE(462), + [sym_biblatex_include] = STATE(462), + [sym_graphics_include] = STATE(462), + [sym_import] = STATE(462), + [sym_label_definition] = STATE(462), + [sym_label_reference] = STATE(462), + [sym_label_reference_range] = STATE(462), + [sym_label_number] = STATE(462), + [sym_command_definition] = STATE(462), + [sym_math_operator] = STATE(462), + [sym_glossary_entry_definition] = STATE(462), + [sym_glossary_entry_reference] = STATE(462), + [sym_acronym_definition] = STATE(462), + [sym_theorem_definition] = STATE(462), + [sym_generic_command] = STATE(462), + [aux_sym_enum_item_repeat1] = STATE(462), + [sym__generic_command_name] = ACTIONS(7479), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(7483), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(7485), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7487), + [anon_sym_EQ] = ACTIONS(7487), + [sym_word] = ACTIONS(7487), + [sym_param] = ACTIONS(7773), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7491), + [anon_sym_DOLLAR] = ACTIONS(7493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7495), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7497), + [aux_sym_citation_token1] = ACTIONS(7499), + [aux_sym_package_include_token1] = ACTIONS(7501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7503), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7505), + [aux_sym_graphics_include_token1] = ACTIONS(7507), + [aux_sym_import_token1] = ACTIONS(7509), + [anon_sym_BSLASHlabel] = ACTIONS(7511), + [aux_sym_label_reference_token1] = ACTIONS(7513), + [aux_sym_label_reference_range_token1] = ACTIONS(7515), + [anon_sym_BSLASHnewlabel] = ACTIONS(7517), + [aux_sym_command_definition_token1] = ACTIONS(7519), + [aux_sym_math_operator_token1] = ACTIONS(7521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7523), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7525), + [anon_sym_BSLASHnewacronym] = ACTIONS(7527), + [aux_sym_theorem_definition_token1] = ACTIONS(7529), + }, + [467] = { + [sym__simple_content] = STATE(468), + [sym_brace_group] = STATE(468), + [sym_mixed_group] = STATE(468), + [sym_text] = STATE(468), + [sym__text_fragment] = STATE(1015), + [sym_displayed_equation] = STATE(468), + [sym_inline_formula] = STATE(468), + [sym_begin] = STATE(56), + [sym_environment] = STATE(468), + [sym_caption] = STATE(468), + [sym_citation] = STATE(468), + [sym_package_include] = STATE(468), + [sym_class_include] = STATE(468), + [sym_biblatex_include] = STATE(468), + [sym_graphics_include] = STATE(468), + [sym_import] = STATE(468), + [sym_label_definition] = STATE(468), + [sym_label_reference] = STATE(468), + [sym_label_reference_range] = STATE(468), + [sym_label_number] = STATE(468), + [sym_command_definition] = STATE(468), + [sym_math_operator] = STATE(468), + [sym_glossary_entry_definition] = STATE(468), + [sym_glossary_entry_reference] = STATE(468), + [sym_acronym_definition] = STATE(468), + [sym_theorem_definition] = STATE(468), + [sym_generic_command] = STATE(468), + [aux_sym_enum_item_repeat1] = STATE(468), + [sym__generic_command_name] = ACTIONS(7777), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(7779), + [anon_sym_RBRACK] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(7779), + [anon_sym_COMMA] = ACTIONS(7783), + [anon_sym_EQ] = ACTIONS(7783), + [sym_word] = ACTIONS(7783), + [sym_param] = ACTIONS(7785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7787), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7787), + [anon_sym_DOLLAR] = ACTIONS(7789), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7791), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7793), + [aux_sym_citation_token1] = ACTIONS(7795), + [aux_sym_package_include_token1] = ACTIONS(7797), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7799), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7801), + [aux_sym_graphics_include_token1] = ACTIONS(7803), + [aux_sym_import_token1] = ACTIONS(7805), + [anon_sym_BSLASHlabel] = ACTIONS(7807), + [aux_sym_label_reference_token1] = ACTIONS(7809), + [aux_sym_label_reference_range_token1] = ACTIONS(7811), + [anon_sym_BSLASHnewlabel] = ACTIONS(7813), + [aux_sym_command_definition_token1] = ACTIONS(7815), + [aux_sym_math_operator_token1] = ACTIONS(7817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7819), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7821), + [anon_sym_BSLASHnewacronym] = ACTIONS(7823), + [aux_sym_theorem_definition_token1] = ACTIONS(7825), + }, + [468] = { + [sym__simple_content] = STATE(468), + [sym_brace_group] = STATE(468), + [sym_mixed_group] = STATE(468), + [sym_text] = STATE(468), + [sym__text_fragment] = STATE(1015), + [sym_displayed_equation] = STATE(468), + [sym_inline_formula] = STATE(468), + [sym_begin] = STATE(56), + [sym_environment] = STATE(468), + [sym_caption] = STATE(468), + [sym_citation] = STATE(468), + [sym_package_include] = STATE(468), + [sym_class_include] = STATE(468), + [sym_biblatex_include] = STATE(468), + [sym_graphics_include] = STATE(468), + [sym_import] = STATE(468), + [sym_label_definition] = STATE(468), + [sym_label_reference] = STATE(468), + [sym_label_reference_range] = STATE(468), + [sym_label_number] = STATE(468), + [sym_command_definition] = STATE(468), + [sym_math_operator] = STATE(468), + [sym_glossary_entry_definition] = STATE(468), + [sym_glossary_entry_reference] = STATE(468), + [sym_acronym_definition] = STATE(468), + [sym_theorem_definition] = STATE(468), + [sym_generic_command] = STATE(468), + [aux_sym_enum_item_repeat1] = STATE(468), + [sym__generic_command_name] = ACTIONS(7827), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(7830), + [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(7833), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(7830), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_EQ] = ACTIONS(7836), + [sym_word] = ACTIONS(7836), + [sym_param] = ACTIONS(7839), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7842), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7842), + [anon_sym_DOLLAR] = ACTIONS(7845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7848), + [anon_sym_BSLASHbegin] = ACTIONS(4040), + [anon_sym_BSLASHcaption] = ACTIONS(7851), + [aux_sym_citation_token1] = ACTIONS(7854), + [aux_sym_package_include_token1] = ACTIONS(7857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7860), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7863), + [aux_sym_graphics_include_token1] = ACTIONS(7866), + [aux_sym_import_token1] = ACTIONS(7869), + [anon_sym_BSLASHlabel] = ACTIONS(7872), + [aux_sym_label_reference_token1] = ACTIONS(7875), + [aux_sym_label_reference_range_token1] = ACTIONS(7878), + [anon_sym_BSLASHnewlabel] = ACTIONS(7881), + [aux_sym_command_definition_token1] = ACTIONS(7884), + [aux_sym_math_operator_token1] = ACTIONS(7887), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7890), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7893), + [anon_sym_BSLASHnewacronym] = ACTIONS(7896), + [aux_sym_theorem_definition_token1] = ACTIONS(7899), + }, + [469] = { + [sym__simple_content] = STATE(467), + [sym_brace_group] = STATE(467), + [sym_mixed_group] = STATE(467), + [sym_text] = STATE(467), + [sym__text_fragment] = STATE(1015), + [sym_displayed_equation] = STATE(467), + [sym_inline_formula] = STATE(467), + [sym_begin] = STATE(56), + [sym_environment] = STATE(467), + [sym_caption] = STATE(467), + [sym_citation] = STATE(467), + [sym_package_include] = STATE(467), + [sym_class_include] = STATE(467), + [sym_biblatex_include] = STATE(467), + [sym_graphics_include] = STATE(467), + [sym_import] = STATE(467), + [sym_label_definition] = STATE(467), + [sym_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_theorem_definition] = STATE(467), + [sym_generic_command] = STATE(467), + [aux_sym_enum_item_repeat1] = STATE(467), + [sym__generic_command_name] = ACTIONS(7777), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(7902), + [anon_sym_RBRACK] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(7779), + [anon_sym_COMMA] = ACTIONS(7783), + [anon_sym_EQ] = ACTIONS(7783), + [sym_word] = ACTIONS(7783), + [sym_param] = ACTIONS(7904), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7787), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7787), + [anon_sym_DOLLAR] = ACTIONS(7789), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7791), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7793), + [aux_sym_citation_token1] = ACTIONS(7795), + [aux_sym_package_include_token1] = ACTIONS(7797), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7799), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7801), + [aux_sym_graphics_include_token1] = ACTIONS(7803), + [aux_sym_import_token1] = ACTIONS(7805), + [anon_sym_BSLASHlabel] = ACTIONS(7807), + [aux_sym_label_reference_token1] = ACTIONS(7809), + [aux_sym_label_reference_range_token1] = ACTIONS(7811), + [anon_sym_BSLASHnewlabel] = ACTIONS(7813), + [aux_sym_command_definition_token1] = ACTIONS(7815), + [aux_sym_math_operator_token1] = ACTIONS(7817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7819), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7821), + [anon_sym_BSLASHnewacronym] = ACTIONS(7823), + [aux_sym_theorem_definition_token1] = ACTIONS(7825), + }, + [470] = { + [sym__simple_content] = STATE(468), + [sym_brace_group] = STATE(468), + [sym_mixed_group] = STATE(468), + [sym_text] = STATE(468), + [sym__text_fragment] = STATE(1015), + [sym_displayed_equation] = STATE(468), + [sym_inline_formula] = STATE(468), + [sym_begin] = STATE(56), + [sym_environment] = STATE(468), + [sym_caption] = STATE(468), + [sym_citation] = STATE(468), + [sym_package_include] = STATE(468), + [sym_class_include] = STATE(468), + [sym_biblatex_include] = STATE(468), + [sym_graphics_include] = STATE(468), + [sym_import] = STATE(468), + [sym_label_definition] = STATE(468), + [sym_label_reference] = STATE(468), + [sym_label_reference_range] = STATE(468), + [sym_label_number] = STATE(468), + [sym_command_definition] = STATE(468), + [sym_math_operator] = STATE(468), + [sym_glossary_entry_definition] = STATE(468), + [sym_glossary_entry_reference] = STATE(468), + [sym_acronym_definition] = STATE(468), + [sym_theorem_definition] = STATE(468), + [sym_generic_command] = STATE(468), + [aux_sym_enum_item_repeat1] = STATE(468), + [sym__generic_command_name] = ACTIONS(7777), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(7779), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(7779), + [anon_sym_COMMA] = ACTIONS(7783), + [anon_sym_EQ] = ACTIONS(7783), + [sym_word] = ACTIONS(7783), + [sym_param] = ACTIONS(7785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7787), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7787), + [anon_sym_DOLLAR] = ACTIONS(7789), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7791), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7793), + [aux_sym_citation_token1] = ACTIONS(7795), + [aux_sym_package_include_token1] = ACTIONS(7797), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7799), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7801), + [aux_sym_graphics_include_token1] = ACTIONS(7803), + [aux_sym_import_token1] = ACTIONS(7805), + [anon_sym_BSLASHlabel] = ACTIONS(7807), + [aux_sym_label_reference_token1] = ACTIONS(7809), + [aux_sym_label_reference_range_token1] = ACTIONS(7811), + [anon_sym_BSLASHnewlabel] = ACTIONS(7813), + [aux_sym_command_definition_token1] = ACTIONS(7815), + [aux_sym_math_operator_token1] = ACTIONS(7817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7819), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7821), + [anon_sym_BSLASHnewacronym] = ACTIONS(7823), + [aux_sym_theorem_definition_token1] = ACTIONS(7825), + }, + [471] = { + [sym__simple_content] = STATE(470), + [sym_brace_group] = STATE(470), + [sym_mixed_group] = STATE(470), + [sym_text] = STATE(470), + [sym__text_fragment] = STATE(1015), + [sym_displayed_equation] = STATE(470), + [sym_inline_formula] = STATE(470), + [sym_begin] = STATE(56), + [sym_environment] = STATE(470), + [sym_caption] = STATE(470), + [sym_citation] = STATE(470), + [sym_package_include] = STATE(470), + [sym_class_include] = STATE(470), + [sym_biblatex_include] = STATE(470), + [sym_graphics_include] = STATE(470), + [sym_import] = STATE(470), + [sym_label_definition] = STATE(470), + [sym_label_reference] = STATE(470), + [sym_label_reference_range] = STATE(470), + [sym_label_number] = STATE(470), + [sym_command_definition] = STATE(470), + [sym_math_operator] = STATE(470), + [sym_glossary_entry_definition] = STATE(470), + [sym_glossary_entry_reference] = STATE(470), + [sym_acronym_definition] = STATE(470), + [sym_theorem_definition] = STATE(470), + [sym_generic_command] = STATE(470), + [aux_sym_enum_item_repeat1] = STATE(470), + [sym__generic_command_name] = ACTIONS(7777), + [sym_whitespace] = ACTIONS(3), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(7779), + [anon_sym_RBRACK] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(7779), + [anon_sym_COMMA] = ACTIONS(7783), + [anon_sym_EQ] = ACTIONS(7783), + [sym_word] = ACTIONS(7783), + [sym_param] = ACTIONS(7906), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7787), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7787), + [anon_sym_DOLLAR] = ACTIONS(7789), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7791), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7793), + [aux_sym_citation_token1] = ACTIONS(7795), + [aux_sym_package_include_token1] = ACTIONS(7797), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7799), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7801), + [aux_sym_graphics_include_token1] = ACTIONS(7803), + [aux_sym_import_token1] = ACTIONS(7805), + [anon_sym_BSLASHlabel] = ACTIONS(7807), + [aux_sym_label_reference_token1] = ACTIONS(7809), + [aux_sym_label_reference_range_token1] = ACTIONS(7811), + [anon_sym_BSLASHnewlabel] = ACTIONS(7813), + [aux_sym_command_definition_token1] = ACTIONS(7815), + [aux_sym_math_operator_token1] = ACTIONS(7817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7819), + [aux_sym_glossary_entry_reference_token1] = ACTIONS(7821), + [anon_sym_BSLASHnewacronym] = ACTIONS(7823), + [aux_sym_theorem_definition_token1] = ACTIONS(7825), + }, +}; + +static uint16_t ts_small_parse_table[] = { + [0] = 7, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(7914), 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(7908), 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(7910), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [63] = 7, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(7914), 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(7916), 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(7918), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [126] = 7, + ACTIONS(7924), 1, + anon_sym_LBRACK, + ACTIONS(7927), 1, + anon_sym_LBRACE, + ACTIONS(7930), 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(7920), 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(7922), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [189] = 6, + STATE(475), 1, + sym__text_fragment, + STATE(531), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(29), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [248] = 7, + ACTIONS(1666), 1, + anon_sym_LBRACE, + ACTIONS(7937), 1, + anon_sym_LBRACK, + ACTIONS(7939), 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(7908), 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(7910), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [308] = 7, + ACTIONS(7941), 1, + anon_sym_LBRACK, + ACTIONS(7944), 1, + anon_sym_LBRACE, + ACTIONS(7947), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(477), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7920), 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(7922), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [368] = 7, + ACTIONS(287), 1, + anon_sym_LBRACE, + ACTIONS(7950), 1, + anon_sym_LBRACK, + ACTIONS(7952), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(477), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7916), 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(7918), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [428] = 7, + ACTIONS(7954), 1, + anon_sym_LBRACK, + ACTIONS(7957), 1, + anon_sym_LBRACE, + ACTIONS(7960), 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(7920), 7, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7922), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [488] = 7, + ACTIONS(287), 1, + anon_sym_LBRACE, + ACTIONS(7950), 1, + anon_sym_LBRACK, + ACTIONS(7952), 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(7908), 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(7910), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [548] = 7, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(7966), 1, + anon_sym_LBRACE, + ACTIONS(7969), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(481), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7920), 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(7922), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [608] = 7, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(7975), 1, + anon_sym_LBRACE, + ACTIONS(7978), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(482), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7920), 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(7922), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [668] = 7, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(7981), 1, + anon_sym_LBRACK, + ACTIONS(7983), 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(7908), 7, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7910), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [728] = 7, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(7985), 1, + anon_sym_LBRACK, + ACTIONS(7987), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(482), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7916), 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(7918), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [788] = 7, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(7985), 1, + anon_sym_LBRACK, + ACTIONS(7987), 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(7908), 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(7910), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [848] = 7, + ACTIONS(1666), 1, + anon_sym_LBRACE, + ACTIONS(7937), 1, + anon_sym_LBRACK, + ACTIONS(7939), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(481), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7916), 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(7918), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [908] = 7, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(7981), 1, + anon_sym_LBRACK, + ACTIONS(7983), 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(7916), 7, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7918), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [968] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 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(7991), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1019] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 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(7995), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1070] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 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(7999), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1121] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 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(8003), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1172] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 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(8007), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1223] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 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(8011), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1274] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 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(8015), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1325] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 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(87), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1376] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 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(8019), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1427] = 7, + ACTIONS(2939), 1, + anon_sym_LBRACE, + ACTIONS(8021), 1, + anon_sym_LBRACK, + ACTIONS(8023), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(524), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7908), 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(7910), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1486] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 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(8027), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1537] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 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(77), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1588] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 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(8031), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1639] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 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(8035), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1690] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 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(8039), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1741] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 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(8043), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1792] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 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(8047), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1843] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 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(8051), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1894] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 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(8055), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [1945] = 7, + ACTIONS(8057), 1, + anon_sym_LBRACK, + ACTIONS(8060), 1, + anon_sym_LBRACE, + ACTIONS(8063), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(507), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7920), 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(7922), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2004] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 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(8068), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2055] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 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(8072), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2106] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 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(8076), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2157] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 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(8080), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2208] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 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(8084), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2259] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 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(8088), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2310] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 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(8092), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2361] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 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(8096), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2412] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 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(8100), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2463] = 4, + ACTIONS(8106), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2516] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 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(8110), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2567] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 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(8114), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2618] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 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(8118), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2669] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 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(8122), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2720] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 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(8126), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2771] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 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(8130), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2822] = 7, + ACTIONS(2939), 1, + anon_sym_LBRACE, + ACTIONS(8021), 1, + anon_sym_LBRACK, + ACTIONS(8023), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(507), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7916), 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(7918), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2881] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 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(8134), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2932] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 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(8138), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [2983] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 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(8142), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3034] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 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(8146), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3085] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 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(8150), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3136] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 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(8154), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3187] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 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(8158), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3238] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 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(8162), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3289] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 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(8166), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3340] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 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(8170), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3391] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 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(8174), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3442] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 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(83), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3493] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 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(93), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3544] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 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(8178), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3595] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 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(8182), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3646] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 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(8186), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3697] = 7, + ACTIONS(4204), 1, + anon_sym_LBRACE, + ACTIONS(8188), 1, + anon_sym_LBRACK, + ACTIONS(8190), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(545), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7916), 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(7918), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3755] = 6, + STATE(542), 1, + sym__text_fragment, + STATE(714), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(359), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3811] = 6, + STATE(543), 1, + sym__text_fragment, + STATE(575), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(235), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3867] = 5, + ACTIONS(8194), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(544), 2, + sym_bracket_group, + aux_sym_begin_repeat1, + ACTIONS(8197), 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(8192), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3921] = 7, + ACTIONS(8199), 1, + anon_sym_LBRACK, + ACTIONS(8202), 1, + anon_sym_LBRACE, + ACTIONS(8205), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(545), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7920), 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(7922), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [3979] = 7, + ACTIONS(4204), 1, + anon_sym_LBRACE, + ACTIONS(8188), 1, + anon_sym_LBRACK, + ACTIONS(8190), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(541), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7908), 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(7910), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4037] = 6, + STATE(547), 1, + sym__text_fragment, + STATE(592), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(1668), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4093] = 5, + ACTIONS(7981), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(544), 2, + sym_bracket_group, + aux_sym_begin_repeat1, + ACTIONS(8210), 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(8208), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4147] = 5, + ACTIONS(7981), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(548), 2, + sym_bracket_group, + aux_sym_begin_repeat1, + ACTIONS(8214), 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(8212), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4201] = 6, + STATE(550), 1, + sym__text_fragment, + STATE(689), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(289), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4257] = 4, + ACTIONS(8220), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4308] = 7, + ACTIONS(8222), 1, + anon_sym_LBRACK, + ACTIONS(8225), 1, + anon_sym_LBRACE, + ACTIONS(8228), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(552), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7920), 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(7922), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4365] = 4, + ACTIONS(8231), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4416] = 4, + ACTIONS(8233), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4467] = 4, + ACTIONS(8235), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4518] = 4, + ACTIONS(8237), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4569] = 4, + ACTIONS(8239), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4620] = 4, + ACTIONS(8241), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4671] = 6, + STATE(559), 1, + sym__text_fragment, + STATE(787), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(2941), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4726] = 4, + ACTIONS(8243), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4777] = 4, + ACTIONS(8245), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4828] = 4, + ACTIONS(8247), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4879] = 4, + ACTIONS(8249), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4930] = 7, + ACTIONS(5307), 1, + anon_sym_LBRACE, + ACTIONS(8251), 1, + anon_sym_LBRACK, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(565), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7908), 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(7910), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [4987] = 7, + ACTIONS(5307), 1, + anon_sym_LBRACE, + ACTIONS(8251), 1, + anon_sym_LBRACK, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(552), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7916), 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(7918), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5044] = 4, + ACTIONS(8255), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8218), 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(8216), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5095] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8186), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5143] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 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(8015), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5191] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 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(8096), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5239] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 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(8110), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5287] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 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(8114), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5335] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 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(8118), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5383] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 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(8142), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5431] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 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(8146), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5479] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 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(8158), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5527] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 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(8178), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5575] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 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(8182), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5623] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 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(8186), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5671] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7999), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5719] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 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(8031), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5767] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(87), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5815] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(77), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5863] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8043), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5911] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8068), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [5959] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8088), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6007] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8096), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6055] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8110), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6103] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8114), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6151] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8118), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6199] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8142), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6247] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8146), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6295] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8158), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6343] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8178), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6391] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8182), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6439] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 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(8080), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6487] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(93), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6535] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(83), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6583] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8174), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6631] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8170), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6679] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8166), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6727] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8162), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6775] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8154), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6823] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8150), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6871] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7995), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6919] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8138), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [6967] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8134), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7015] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8130), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7063] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8126), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7111] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8122), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7159] = 4, + ACTIONS(8257), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7209] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8100), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7257] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8092), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7305] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8084), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7353] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8080), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7401] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8076), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7449] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8072), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7497] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8055), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7545] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8051), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7593] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8047), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7641] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8039), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7689] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8035), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7737] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7991), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7785] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8031), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7833] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8027), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7881] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8019), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7929] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8015), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [7977] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8011), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8025] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8007), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8073] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 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(87), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8121] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 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(77), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8169] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 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(8007), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8217] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 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(8072), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8265] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 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(8055), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8313] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 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(8051), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8361] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 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(8047), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8409] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 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(8076), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8457] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 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(8019), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8505] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 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(8039), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8553] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 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(8043), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8601] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 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(8035), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8649] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 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(7991), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8697] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 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(93), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8745] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 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(8015), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8793] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 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(8110), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8841] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 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(83), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8889] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 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(8174), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8937] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 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(8170), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [8985] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 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(8166), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9033] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 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(8007), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9081] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 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(8162), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9129] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 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(7999), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9177] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 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(8011), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9225] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 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(8027), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9273] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 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(8088), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9321] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 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(8154), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9369] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 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(8084), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9417] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 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(8092), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9465] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 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(8100), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9513] = 4, + ACTIONS(8259), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9563] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 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(8122), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9611] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 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(8126), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9659] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 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(8130), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9707] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 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(8134), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9755] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 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(8138), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9803] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 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(7995), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9851] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 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(8150), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9899] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 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(8154), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9947] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 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(8162), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [9995] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 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(8166), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10043] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 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(8170), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10091] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 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(8150), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10139] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 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(8174), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10187] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 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(7995), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10235] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 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(8088), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10283] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 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(8068), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10331] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 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(8043), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10379] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 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(77), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10427] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 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(87), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10475] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 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(8096), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10523] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 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(83), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10571] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 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(8110), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10619] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 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(93), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10667] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 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(8186), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10715] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 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(8114), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10763] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 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(8118), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10811] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 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(8003), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10859] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 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(8182), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10907] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 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(8178), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [10955] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 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(8158), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11003] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 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(8146), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11051] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 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(8142), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11099] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 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(8118), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11147] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 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(8114), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11195] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 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(8084), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11243] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 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(8096), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11291] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 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(7999), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11339] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 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(8134), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11387] = 6, + STATE(698), 1, + sym__text_fragment, + STATE(866), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(4206), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11441] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 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(8130), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11489] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 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(8126), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11537] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 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(8122), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11585] = 4, + ACTIONS(8261), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11635] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 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(8100), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11683] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 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(8088), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11731] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 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(8068), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11779] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 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(8092), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11827] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 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(8043), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11875] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 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(8138), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11923] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 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(8142), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [11971] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 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(77), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12019] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 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(8146), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12067] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 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(87), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12115] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 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(8003), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12163] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 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(8158), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12211] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 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(8178), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12259] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 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(8182), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12307] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 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(8068), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12355] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 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(93), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12403] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 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(8080), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12451] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 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(83), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12499] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 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(8174), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12547] = 7, + ACTIONS(8263), 1, + anon_sym_LBRACK, + ACTIONS(8266), 1, + anon_sym_LBRACE, + ACTIONS(8269), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(722), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7920), 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(7922), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12603] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 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(8076), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12651] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 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(8072), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12699] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 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(8055), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12747] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 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(8051), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12795] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 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(8170), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12843] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 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(8166), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12891] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 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(8047), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12939] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 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(7999), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [12987] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 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(8039), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13035] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 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(8162), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13083] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 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(8154), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13131] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 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(8150), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13179] = 7, + ACTIONS(6541), 1, + anon_sym_LBRACE, + ACTIONS(8272), 1, + anon_sym_LBRACK, + ACTIONS(8274), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(722), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7916), 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(7918), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13235] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 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(7995), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13283] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 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(8138), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13331] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 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(8007), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13379] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 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(8134), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13427] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 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(8130), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13475] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 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(8126), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13523] = 7, + ACTIONS(6541), 1, + anon_sym_LBRACE, + ACTIONS(8272), 1, + anon_sym_LBRACK, + ACTIONS(8274), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(735), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7908), 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(7910), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13579] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 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(8122), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13627] = 4, + ACTIONS(8276), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13677] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 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(8100), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13725] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 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(8092), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13773] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 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(8035), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13821] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 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(8084), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13869] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 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(7991), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13917] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 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(8031), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [13965] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 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(8027), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14013] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 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(8019), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14061] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8003), 27, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14109] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 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(8080), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14157] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 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(8076), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14205] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 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(8072), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14253] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 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(8055), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14301] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 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(8051), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14349] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 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(8047), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14397] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 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(8039), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14445] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 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(8015), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14493] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 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(8035), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14541] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 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(7991), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14589] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 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(8031), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14637] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 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(8027), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14685] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 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(8019), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14733] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 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(8003), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14781] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 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(8011), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14829] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 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(8186), 29, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_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, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14877] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 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(8011), 28, + aux_sym_part_token1, + aux_sym_chapter_token1, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14925] = 7, + ACTIONS(7026), 1, + anon_sym_LBRACE, + ACTIONS(8278), 1, + anon_sym_LBRACK, + ACTIONS(8280), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(817), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7908), 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(7910), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [14980] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8003), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15027] = 6, + STATE(773), 1, + sym__text_fragment, + STATE(885), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(5309), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15080] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8186), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15127] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7999), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15174] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(87), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15221] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(77), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15268] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8043), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15315] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8068), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15362] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8088), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15409] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8096), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15456] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8110), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15503] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8114), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15550] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8118), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15597] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8142), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15644] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8146), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15691] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8158), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15738] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8178), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15785] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8182), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15832] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(93), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15879] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(83), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15926] = 7, + ACTIONS(8282), 1, + anon_sym_LBRACK, + ACTIONS(8285), 1, + anon_sym_LBRACE, + ACTIONS(8288), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(792), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7920), 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(7922), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [15981] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8174), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16028] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8170), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16075] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8166), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16122] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8162), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16169] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8154), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16216] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8150), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16263] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7995), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16310] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8138), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16357] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8134), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16404] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8130), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16451] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8126), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16498] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8122), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16545] = 4, + ACTIONS(8291), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16594] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8100), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16641] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8092), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16688] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8084), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16735] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8080), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16782] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8076), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16829] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8072), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16876] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8055), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16923] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8051), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [16970] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8047), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17017] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8039), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17064] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8035), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17111] = 7, + ACTIONS(7026), 1, + anon_sym_LBRACE, + ACTIONS(8278), 1, + anon_sym_LBRACK, + ACTIONS(8280), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(792), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7916), 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(7918), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17166] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7991), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17213] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8031), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17260] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8027), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17307] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8019), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17354] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8015), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17401] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8011), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17448] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8007), 26, + aux_sym_section_token1, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17495] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8100), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17541] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8015), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17587] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8080), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17633] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8084), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17679] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8092), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17725] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8007), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17771] = 4, + ACTIONS(8293), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17819] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7999), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17865] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8122), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17911] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(87), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [17957] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(77), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18003] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8043), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18049] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8068), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18095] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8088), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18141] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8096), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18187] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8110), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18233] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8114), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18279] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8118), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18325] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8126), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18371] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8130), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18417] = 6, + STATE(845), 1, + sym__text_fragment, + STATE(933), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(6543), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18469] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8134), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18515] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8138), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18561] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7995), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18607] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8011), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18653] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8150), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18699] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8154), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18745] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8186), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18791] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8162), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18837] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8019), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18883] = 7, + ACTIONS(7485), 1, + anon_sym_LBRACE, + ACTIONS(8295), 1, + anon_sym_LBRACK, + ACTIONS(8297), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(859), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7908), 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(7910), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18937] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8003), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [18983] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8027), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19029] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8142), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19075] = 7, + ACTIONS(7485), 1, + anon_sym_LBRACE, + ACTIONS(8295), 1, + anon_sym_LBRACK, + ACTIONS(8297), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(873), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7916), 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(7918), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19129] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8031), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19175] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8076), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19221] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7991), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19267] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8072), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19313] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8166), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19359] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8146), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19405] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8158), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19451] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8170), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19497] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8174), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19543] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(83), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19589] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8178), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19635] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(93), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19681] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8055), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19727] = 7, + ACTIONS(8299), 1, + anon_sym_LBRACK, + ACTIONS(8302), 1, + anon_sym_LBRACE, + ACTIONS(8305), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(873), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7920), 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(7922), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19781] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8182), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19827] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8051), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19873] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8047), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19919] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8039), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [19965] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8035), 25, + aux_sym_subsection_token1, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20011] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8114), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20056] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8118), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20101] = 7, + ACTIONS(8308), 1, + anon_sym_LBRACK, + ACTIONS(8311), 1, + anon_sym_LBRACE, + ACTIONS(8314), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(881), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7920), 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(7922), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20154] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8142), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20199] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8146), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20244] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8080), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20289] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8158), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20334] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8178), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20379] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8122), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20424] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8110), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20469] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8096), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20514] = 7, + ACTIONS(7781), 1, + anon_sym_LBRACE, + ACTIONS(8317), 1, + anon_sym_LBRACK, + ACTIONS(8319), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(881), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7916), 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(7918), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20567] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8088), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20612] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8186), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20657] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8068), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20702] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8043), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20747] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8182), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20792] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8084), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20837] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(93), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20882] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(77), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20927] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(83), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [20972] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8174), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21017] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8170), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21062] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(87), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21107] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8166), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21152] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8162), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21197] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8154), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21242] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8150), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21287] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7995), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21332] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8138), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21377] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8134), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21422] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8130), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21467] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8126), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21512] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7999), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21557] = 7, + ACTIONS(7781), 1, + anon_sym_LBRACE, + ACTIONS(8317), 1, + anon_sym_LBRACK, + ACTIONS(8319), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + STATE(890), 4, + sym_brace_group, + sym_bracket_group, + sym_paren_group, + aux_sym_generic_command_repeat1, + ACTIONS(7908), 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(7910), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21610] = 6, + STATE(914), 1, + sym__text_fragment, + STATE(1006), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7028), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21661] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8007), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21706] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8011), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21751] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8015), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21796] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8019), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21841] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8027), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21886] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8031), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21931] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7991), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [21976] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8035), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22021] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8003), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22066] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8039), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22111] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8047), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22156] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8051), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22201] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8055), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22246] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8072), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22291] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8092), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22336] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8076), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22381] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8100), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22426] = 4, + ACTIONS(8321), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 24, + aux_sym_subsubsection_token1, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22473] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8158), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22517] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7999), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22561] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8007), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22605] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8011), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22649] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8015), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22693] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8019), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22737] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8027), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22781] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8031), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22825] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7991), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22869] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8035), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22913] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8039), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [22957] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8047), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23001] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8051), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23045] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8055), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23089] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8072), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23133] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8076), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23177] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8186), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23221] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8080), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23265] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8084), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23309] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8092), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23353] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8100), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23397] = 4, + ACTIONS(8323), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23443] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8122), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23487] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8126), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23531] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8130), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23575] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8134), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23619] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8138), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23663] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7995), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23707] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8150), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23751] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8154), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23795] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8162), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23839] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8166), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23883] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8170), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23927] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8174), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [23971] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(83), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24015] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(93), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24059] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8182), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24103] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8178), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24147] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8146), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24191] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8142), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24235] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8118), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24279] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8114), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24323] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8003), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24367] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8110), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24411] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8096), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24455] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8088), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24499] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8068), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24543] = 6, + STATE(980), 1, + sym__text_fragment, + STATE(1068), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7487), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24593] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8043), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24637] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(77), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24681] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(87), 23, + aux_sym_paragraph_token1, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24725] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8162), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24768] = 4, + ACTIONS(8325), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24813] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8080), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24856] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8076), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24899] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8072), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24942] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8055), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [24985] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8051), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25028] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8047), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25071] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8039), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25114] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8035), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25157] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7991), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25200] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8031), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25243] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8027), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25286] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8019), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25329] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8015), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25372] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8011), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25415] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8007), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25458] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8088), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25501] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8096), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25544] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8118), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25587] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8142), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25630] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8146), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25673] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8158), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25716] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8110), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25759] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8114), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25802] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8068), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25845] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8043), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25888] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(77), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25931] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(87), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [25974] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7999), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26017] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8186), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26060] = 6, + STATE(1015), 1, + sym__text_fragment, + STATE(1100), 1, + sym_text, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7783), 3, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + ACTIONS(7933), 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(7935), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26109] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8178), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26152] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8182), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26195] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(93), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26238] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(83), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26281] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8174), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26324] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8170), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26367] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8166), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26410] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8154), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26453] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8150), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26496] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8084), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26539] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7995), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26582] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8138), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26625] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8134), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26668] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8130), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26711] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8003), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26754] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8122), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26797] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8126), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26840] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8092), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26883] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8100), 22, + aux_sym_subparagraph_token1, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26926] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7995), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [26968] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8126), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27010] = 4, + ACTIONS(8327), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27054] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8100), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27096] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8092), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27138] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8084), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27180] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8080), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27222] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8076), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27264] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8072), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27306] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8055), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27348] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8051), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27390] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8047), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27432] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8039), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27474] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8035), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27516] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7991), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27558] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8031), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27600] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8027), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27642] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8019), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27684] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8015), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27726] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8011), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27768] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8007), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27810] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(87), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27852] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(77), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27894] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8043), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27936] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8068), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [27978] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8088), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28020] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8096), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28062] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8110), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28104] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8114), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28146] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8118), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28188] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8142), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28230] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8146), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28272] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8003), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28314] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8158), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28356] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8178), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28398] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8182), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28440] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(93), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28482] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8186), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28524] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(83), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28566] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8174), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28608] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8170), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28650] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8166), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28692] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8162), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28734] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8154), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28776] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8150), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28818] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8130), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28860] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8134), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28902] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8122), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28944] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8138), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [28986] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7999), 21, + anon_sym_BSLASHitem, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29028] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8049), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8051), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29069] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(85), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(87), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29110] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8148), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8150), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29151] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8152), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8154), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29192] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8045), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8047), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29233] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8001), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8003), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29274] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8164), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8166), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29315] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8033), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8035), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29356] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7989), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7991), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29397] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8168), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8170), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29438] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8172), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8174), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29479] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(81), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(83), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29520] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(91), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(93), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29561] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8180), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8182), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29602] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8176), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8178), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29643] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8156), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8158), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29684] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8144), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8146), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29725] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8140), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8142), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29766] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8116), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8118), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29807] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8112), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8114), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29848] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8029), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8031), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29889] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8108), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8110), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29930] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8094), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8096), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [29971] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8086), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8088), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30012] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8025), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8027), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30053] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8066), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8068), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30094] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8037), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8039), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30135] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8136), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8138), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30176] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8017), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8019), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30217] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8013), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8015), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30258] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8009), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8011), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30299] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8041), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8043), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30340] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8005), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8007), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30381] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(75), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(77), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30422] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7993), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7995), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30463] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(7997), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(7999), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30504] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8160), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8162), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30545] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8070), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8072), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30586] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8053), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8055), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30627] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8132), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8134), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30668] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8128), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8130), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30709] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8124), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8126), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30750] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8120), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8122), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30791] = 4, + ACTIONS(8329), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8102), 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(8104), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30834] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8098), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8100), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30875] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8184), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8186), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30916] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8082), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8084), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30957] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8090), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8092), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [30998] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8078), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8080), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [31039] = 3, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8074), 12, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + sym_word, + sym_param, + anon_sym_DOLLAR_DOLLAR, + anon_sym_BSLASH_LBRACK, + anon_sym_BSLASH_LPAREN, + ACTIONS(8076), 20, + anon_sym_DOLLAR, + anon_sym_BSLASHbegin, + anon_sym_BSLASHcaption, + aux_sym_citation_token1, + aux_sym_package_include_token1, + anon_sym_BSLASHdocumentclass, + anon_sym_BSLASHaddbibresource, + aux_sym_graphics_include_token1, + aux_sym_import_token1, + anon_sym_BSLASHlabel, + aux_sym_label_reference_token1, + aux_sym_label_reference_range_token1, + anon_sym_BSLASHnewlabel, + aux_sym_command_definition_token1, + aux_sym_math_operator_token1, + anon_sym_BSLASHnewglossaryentry, + aux_sym_glossary_entry_reference_token1, + anon_sym_BSLASHnewacronym, + aux_sym_theorem_definition_token1, + sym__generic_command_name, + [31080] = 4, + ACTIONS(8333), 1, + sym_word, + STATE(1136), 1, + aux_sym_key_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8331), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + [31097] = 4, + ACTIONS(8337), 1, + sym_word, + STATE(1136), 1, + aux_sym_key_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8335), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + [31114] = 6, + ACTIONS(8340), 1, + anon_sym_RBRACK, + ACTIONS(8342), 1, + sym_word, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1309), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31134] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8344), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1305), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31154] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8346), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1290), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31174] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8348), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1298), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31194] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8350), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1288), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31214] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8352), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1261), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31234] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8354), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1317), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31254] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8356), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1278), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31274] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8358), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1319), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31294] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8360), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1294), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31314] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8362), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1293), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31334] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8364), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1322), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31354] = 6, + ACTIONS(8342), 1, + sym_word, + ACTIONS(8366), 1, + anon_sym_RBRACE, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1267), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31374] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8370), 1, + anon_sym_LBRACE, + STATE(1101), 1, + sym__word_group, + STATE(1352), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31391] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1106), 1, + sym__comma_sep_word_group, + STATE(1407), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31408] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(1009), 1, + sym__comma_sep_word_group, + STATE(1194), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31425] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(780), 1, + sym__comma_sep_word_group, + STATE(1367), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31442] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym__comma_sep_word_group, + STATE(1232), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31459] = 5, + ACTIONS(7026), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(1010), 1, + sym_brace_group, + STATE(1582), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31476] = 5, + ACTIONS(2939), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(778), 1, + sym_brace_group, + STATE(1364), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31493] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1416), 1, + sym_key_val_options, + STATE(1612), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31510] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1435), 1, + sym_key_val_options, + STATE(1652), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31527] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1450), 1, + sym_key_val_options, + STATE(1678), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31544] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1459), 1, + sym_key_val_options, + STATE(1718), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31561] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1469), 1, + sym_key_val_options, + STATE(1712), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31578] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1488), 1, + sym_key_val_options, + STATE(1706), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31595] = 5, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(676), 1, + sym_brace_group, + STATE(1327), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31612] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(963), 1, + sym__comma_sep_word_group, + STATE(1546), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31629] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(675), 1, + sym__comma_sep_word_group, + STATE(1227), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31646] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(971), 1, + sym__word_group, + STATE(1539), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31663] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym__comma_sep_word_group, + STATE(1535), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31680] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(976), 1, + sym__comma_sep_word_group, + STATE(1534), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31697] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(977), 1, + sym__comma_sep_word_group, + STATE(1533), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31714] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(978), 1, + sym__comma_sep_word_group, + STATE(1532), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31731] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(979), 1, + sym__comma_sep_word_group, + STATE(1164), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31748] = 5, + ACTIONS(6541), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(981), 1, + sym_brace_group, + STATE(1529), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31765] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(674), 1, + sym__comma_sep_word_group, + STATE(1650), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31782] = 5, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(639), 1, + sym_brace_group, + STATE(1503), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31799] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(717), 1, + sym__comma_sep_word_group, + STATE(1192), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31816] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(654), 1, + sym__comma_sep_word_group, + STATE(1497), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31833] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(679), 1, + sym__comma_sep_word_group, + STATE(1496), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31850] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(681), 1, + sym__comma_sep_word_group, + STATE(1494), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31867] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(684), 1, + sym__comma_sep_word_group, + STATE(1491), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31884] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym__comma_sep_word_group, + STATE(1662), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31901] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(601), 1, + sym__comma_sep_word_group, + STATE(1349), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31918] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8390), 1, + anon_sym_LBRACE, + STATE(711), 1, + sym__word_group, + STATE(1473), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31935] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(570), 1, + sym__comma_sep_word_group, + STATE(1659), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31952] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(1002), 1, + sym__comma_sep_word_group, + STATE(1586), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31969] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(1007), 1, + sym__comma_sep_word_group, + STATE(1587), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [31986] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(1008), 1, + sym__comma_sep_word_group, + STATE(1588), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32003] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8392), 1, + anon_sym_LBRACE, + STATE(1005), 1, + sym__word_group, + STATE(1592), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32020] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(532), 1, + sym__comma_sep_word_group, + STATE(1511), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32037] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(668), 1, + sym__comma_sep_word_group, + STATE(1567), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32054] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(571), 1, + sym__comma_sep_word_group, + STATE(1656), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32071] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1502), 1, + sym_key_val_options, + STATE(1700), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32088] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(732), 1, + sym__comma_sep_word_group, + STATE(1467), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32105] = 3, + ACTIONS(8400), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8398), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + [32118] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(984), 1, + sym__comma_sep_word_group, + STATE(1599), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32135] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1522), 1, + sym_key_val_options, + STATE(1694), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32152] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1400), 1, + sym_key_val_options, + STATE(1563), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32169] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8402), 1, + anon_sym_LBRACE, + STATE(574), 1, + sym__word_group, + STATE(1646), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32186] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(904), 1, + sym__comma_sep_word_group, + STATE(1492), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32203] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8406), 1, + anon_sym_LBRACE, + STATE(690), 1, + sym__word_group, + STATE(1568), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32220] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8408), 1, + anon_sym_LBRACE, + STATE(883), 1, + sym__word_group, + STATE(1485), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32237] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1531), 1, + sym_key_val_options, + STATE(1688), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32254] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1525), 1, + sym__word_group, + STATE(1526), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32271] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(528), 1, + sym__word_group, + STATE(1527), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32288] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(693), 1, + sym__comma_sep_word_group, + STATE(1574), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32305] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(644), 1, + sym__comma_sep_word_group, + STATE(1577), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32322] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1545), 1, + sym_key_val_options, + STATE(1676), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32339] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(879), 1, + sym__comma_sep_word_group, + STATE(1481), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32356] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(888), 1, + sym__comma_sep_word_group, + STATE(1480), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32373] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(695), 1, + sym__comma_sep_word_group, + STATE(1578), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32390] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(889), 1, + sym__comma_sep_word_group, + STATE(1479), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32407] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(704), 1, + sym__comma_sep_word_group, + STATE(1584), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32424] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8410), 1, + anon_sym_LBRACE, + STATE(591), 1, + sym__word_group, + STATE(1332), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32441] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(891), 1, + sym__comma_sep_word_group, + STATE(1478), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32458] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(893), 1, + sym__comma_sep_word_group, + STATE(1198), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32475] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(782), 1, + sym__comma_sep_word_group, + STATE(1369), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32492] = 5, + ACTIONS(5307), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(894), 1, + sym_brace_group, + STATE(1475), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32509] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(783), 1, + sym__comma_sep_word_group, + STATE(1370), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32526] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(588), 1, + sym__comma_sep_word_group, + STATE(1348), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32543] = 5, + ACTIONS(8342), 1, + sym_word, + STATE(1135), 1, + aux_sym_key_repeat1, + STATE(1193), 1, + sym_key, + STATE(1273), 1, + sym_key_val_pair, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32560] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(587), 1, + sym__comma_sep_word_group, + STATE(1347), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32577] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(586), 1, + sym__comma_sep_word_group, + STATE(1346), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32594] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(585), 1, + sym__comma_sep_word_group, + STATE(1345), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32611] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(584), 1, + sym__comma_sep_word_group, + STATE(1181), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32628] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(705), 1, + sym__comma_sep_word_group, + STATE(1189), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32645] = 5, + ACTIONS(287), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(707), 1, + sym_brace_group, + STATE(1596), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32662] = 5, + ACTIONS(1666), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(583), 1, + sym_brace_group, + STATE(1344), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32679] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(650), 1, + sym__comma_sep_word_group, + STATE(1645), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32696] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8412), 1, + anon_sym_LBRACE, + STATE(786), 1, + sym__word_group, + STATE(1374), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32713] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(781), 1, + sym__comma_sep_word_group, + STATE(1368), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32730] = 5, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(503), 1, + sym_brace_group, + STATE(1580), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32747] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(508), 1, + sym__comma_sep_word_group, + STATE(1188), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32764] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(796), 1, + sym__comma_sep_word_group, + STATE(1381), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32781] = 5, + ACTIONS(7781), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(1116), 1, + sym_brace_group, + STATE(1413), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32798] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1110), 1, + sym__comma_sep_word_group, + STATE(1251), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32815] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1108), 1, + sym__comma_sep_word_group, + STATE(1409), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32832] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1107), 1, + sym__comma_sep_word_group, + STATE(1408), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32849] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(1001), 1, + sym__comma_sep_word_group, + STATE(1585), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32866] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1104), 1, + sym__comma_sep_word_group, + STATE(1406), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32883] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(853), 1, + sym__comma_sep_word_group, + STATE(1437), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32900] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1077), 1, + sym__comma_sep_word_group, + STATE(1651), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32917] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(513), 1, + sym__comma_sep_word_group, + STATE(1576), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32934] = 5, + ACTIONS(7485), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(1058), 1, + sym_brace_group, + STATE(1634), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32951] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1059), 1, + sym__comma_sep_word_group, + STATE(1240), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32968] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym__comma_sep_word_group, + STATE(1637), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [32985] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1061), 1, + sym__comma_sep_word_group, + STATE(1638), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33002] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym__comma_sep_word_group, + STATE(1639), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33019] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(515), 1, + sym__comma_sep_word_group, + STATE(1575), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33036] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1063), 1, + sym__comma_sep_word_group, + STATE(1640), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33053] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8418), 1, + anon_sym_LBRACE, + STATE(865), 1, + sym__word_group, + STATE(1430), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33070] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(841), 1, + sym__comma_sep_word_group, + STATE(1426), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33087] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1121), 1, + sym__comma_sep_word_group, + STATE(1326), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33104] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(840), 1, + sym__comma_sep_word_group, + STATE(1425), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33121] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(839), 1, + sym__comma_sep_word_group, + STATE(1424), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33138] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(838), 1, + sym__comma_sep_word_group, + STATE(1423), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33155] = 5, + ACTIONS(7912), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(837), 1, + sym__comma_sep_word_group, + STATE(1239), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33172] = 5, + ACTIONS(4204), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + anon_sym_LBRACK, + STATE(836), 1, + sym_brace_group, + STATE(1420), 1, + sym_bracket_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33189] = 4, + ACTIONS(8422), 1, + anon_sym_COMMA, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8420), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [33204] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(518), 1, + sym__comma_sep_word_group, + STATE(1565), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33221] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym__comma_sep_word_group, + STATE(1564), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33238] = 5, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8425), 1, + anon_sym_LBRACE, + STATE(1066), 1, + sym__word_group, + STATE(1644), 1, + sym_key_val_options, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33255] = 4, + ACTIONS(8427), 1, + anon_sym_RBRACE, + ACTIONS(8429), 1, + anon_sym_COMMA, + STATE(1271), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33269] = 4, + ACTIONS(8431), 1, + anon_sym_RBRACE, + ACTIONS(8433), 1, + anon_sym_COMMA, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33283] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8435), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33297] = 2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8437), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + [33307] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8439), 1, + anon_sym_RBRACE, + STATE(1262), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33321] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8441), 1, + anon_sym_RBRACK, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33335] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8443), 1, + anon_sym_RBRACE, + STATE(1263), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33349] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8445), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33363] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8447), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33377] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33391] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8451), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33405] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8453), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33419] = 2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8420), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + [33429] = 4, + ACTIONS(7781), 1, + anon_sym_LBRACE, + ACTIONS(8455), 1, + anon_sym_LBRACK, + STATE(1128), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33443] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8457), 1, + anon_sym_RBRACE, + STATE(1269), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33457] = 4, + ACTIONS(2939), 1, + anon_sym_LBRACE, + ACTIONS(8459), 1, + anon_sym_LBRACK, + STATE(805), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33471] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33485] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8463), 1, + anon_sym_RBRACE, + STATE(1270), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33499] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8465), 1, + anon_sym_RBRACE, + STATE(1295), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33513] = 4, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(8467), 1, + anon_sym_LBRACK, + STATE(702), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33527] = 4, + ACTIONS(7485), 1, + anon_sym_LBRACE, + ACTIONS(8469), 1, + anon_sym_LBRACK, + STATE(1037), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33541] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8471), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33555] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8473), 1, + anon_sym_RBRACE, + STATE(1282), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33569] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8475), 1, + anon_sym_RBRACE, + STATE(1285), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33583] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8477), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33597] = 4, + ACTIONS(4204), 1, + anon_sym_LBRACE, + ACTIONS(8479), 1, + anon_sym_LBRACK, + STATE(831), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33611] = 4, + ACTIONS(8481), 1, + anon_sym_RBRACE, + ACTIONS(8483), 1, + anon_sym_COMMA, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33625] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8486), 1, + anon_sym_RBRACE, + STATE(1289), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33639] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8488), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33653] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8490), 1, + anon_sym_RBRACE, + STATE(1272), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33667] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8492), 1, + anon_sym_RBRACE, + STATE(1292), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33681] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8494), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33695] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8496), 1, + anon_sym_RBRACE, + STATE(1277), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33709] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8498), 1, + anon_sym_RBRACE, + STATE(1268), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33723] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8500), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33737] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8502), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33751] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8504), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33765] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8506), 1, + anon_sym_RBRACE, + STATE(1296), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33779] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8508), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33793] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8510), 1, + anon_sym_RBRACE, + STATE(1299), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33807] = 4, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(8512), 1, + anon_sym_LBRACK, + STATE(744), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33821] = 4, + ACTIONS(5307), 1, + anon_sym_LBRACE, + ACTIONS(8514), 1, + anon_sym_LBRACK, + STATE(932), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33835] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8516), 1, + anon_sym_RBRACE, + STATE(1304), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33849] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8518), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33863] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8520), 1, + anon_sym_RBRACE, + STATE(1307), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33877] = 4, + ACTIONS(7026), 1, + anon_sym_LBRACE, + ACTIONS(8522), 1, + anon_sym_LBRACK, + STATE(985), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33891] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8524), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33905] = 4, + ACTIONS(1666), 1, + anon_sym_LBRACE, + ACTIONS(8526), 1, + anon_sym_LBRACK, + STATE(610), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33919] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8528), 1, + anon_sym_RBRACK, + STATE(1266), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33933] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8530), 1, + anon_sym_RBRACE, + STATE(1297), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33947] = 4, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(8532), 1, + anon_sym_LBRACK, + STATE(517), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33961] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8534), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33975] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8536), 1, + anon_sym_RBRACE, + STATE(1316), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [33989] = 4, + ACTIONS(6541), 1, + anon_sym_LBRACE, + ACTIONS(8538), 1, + anon_sym_LBRACK, + STATE(954), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34003] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8540), 1, + anon_sym_RBRACE, + STATE(1320), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34017] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8542), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34031] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8544), 1, + anon_sym_RBRACE, + STATE(1318), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34045] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8546), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34059] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8548), 1, + anon_sym_RBRACE, + STATE(1312), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34073] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8550), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34087] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8552), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34101] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8554), 1, + anon_sym_RBRACE, + STATE(1323), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34115] = 4, + ACTIONS(8429), 1, + anon_sym_COMMA, + ACTIONS(8556), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_key_val_options_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34129] = 4, + ACTIONS(8433), 1, + anon_sym_COMMA, + ACTIONS(8558), 1, + anon_sym_RBRACE, + STATE(1321), 1, + aux_sym__comma_sep_word_group_repeat1, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34143] = 4, + ACTIONS(287), 1, + anon_sym_LBRACE, + ACTIONS(8560), 1, + anon_sym_LBRACK, + STATE(659), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34157] = 3, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1134), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34168] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(647), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34179] = 3, + ACTIONS(8410), 1, + anon_sym_LBRACE, + STATE(607), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34190] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(608), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34201] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(621), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34212] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(622), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34223] = 3, + ACTIONS(8410), 1, + anon_sym_LBRACE, + STATE(609), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34234] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(624), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34245] = 3, + ACTIONS(8562), 1, + anon_sym_LBRACK, + ACTIONS(8564), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34256] = 3, + ACTIONS(8566), 1, + anon_sym_RBRACE, + ACTIONS(8568), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34267] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(627), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34278] = 3, + ACTIONS(8570), 1, + anon_sym_LBRACK, + ACTIONS(8572), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34289] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(628), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34300] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(311), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34311] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(336), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34322] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(347), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34333] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(375), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34344] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(397), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34355] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(599), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34366] = 3, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(602), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34377] = 3, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(603), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34388] = 3, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34399] = 3, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(605), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34410] = 3, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(615), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34421] = 3, + ACTIONS(8574), 1, + anon_sym_LBRACK, + ACTIONS(8576), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34432] = 3, + ACTIONS(8410), 1, + anon_sym_LBRACE, + STATE(606), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34443] = 3, + ACTIONS(8370), 1, + anon_sym_LBRACE, + STATE(1127), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34454] = 3, + ACTIONS(8388), 1, + anon_sym_LBRACE, + STATE(590), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34465] = 3, + ACTIONS(8412), 1, + anon_sym_LBRACE, + STATE(784), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34476] = 3, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(785), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34487] = 3, + ACTIONS(8410), 1, + anon_sym_LBRACE, + STATE(589), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34498] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(376), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34509] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(351), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34520] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(321), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34531] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(318), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34542] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(290), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34553] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(269), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34564] = 3, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(1117), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34575] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(794), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34586] = 3, + ACTIONS(8578), 1, + anon_sym_RBRACE, + ACTIONS(8580), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34597] = 3, + ACTIONS(8582), 1, + anon_sym_LBRACK, + ACTIONS(8584), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34608] = 3, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(797), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34619] = 3, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(798), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34630] = 3, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(799), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34641] = 3, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(800), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34652] = 3, + ACTIONS(8412), 1, + anon_sym_LBRACE, + STATE(801), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34663] = 3, + ACTIONS(8412), 1, + anon_sym_LBRACE, + STATE(802), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34674] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(803), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34685] = 3, + ACTIONS(8412), 1, + anon_sym_LBRACE, + STATE(804), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34696] = 3, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(1115), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34707] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(492), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34718] = 3, + ACTIONS(8586), 1, + anon_sym_LBRACK, + ACTIONS(8588), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34729] = 3, + ACTIONS(8590), 1, + anon_sym_LBRACK, + ACTIONS(8592), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34740] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(493), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34751] = 3, + ACTIONS(8594), 1, + anon_sym_LBRACK, + ACTIONS(8596), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34762] = 3, + ACTIONS(8376), 1, + anon_sym_LBRACE, + STATE(810), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34773] = 3, + ACTIONS(8598), 1, + anon_sym_LBRACK, + ACTIONS(8600), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34784] = 3, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(1109), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34795] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(813), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34806] = 3, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(1093), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34817] = 3, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34828] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(816), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34839] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(818), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34850] = 3, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(1085), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34861] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(820), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34872] = 3, + ACTIONS(8602), 1, + anon_sym_LBRACK, + ACTIONS(8604), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34883] = 3, + ACTIONS(8606), 1, + anon_sym_LBRACK, + ACTIONS(8608), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34894] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(823), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34905] = 3, + ACTIONS(8610), 1, + anon_sym_LBRACK, + ACTIONS(8612), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34916] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(824), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34927] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(342), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34938] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(372), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34949] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(403), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34960] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34971] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1559), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34982] = 3, + ACTIONS(8390), 1, + anon_sym_LBRACE, + STATE(685), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [34993] = 3, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(1126), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35004] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(277), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35015] = 3, + ACTIONS(8370), 1, + anon_sym_LBRACE, + STATE(1125), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35026] = 3, + ACTIONS(8370), 1, + anon_sym_LBRACE, + STATE(1124), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35037] = 3, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1112), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35048] = 3, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1119), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35059] = 3, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1087), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35070] = 3, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1088), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35081] = 3, + ACTIONS(8418), 1, + anon_sym_LBRACE, + STATE(842), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35092] = 3, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(858), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35103] = 3, + ACTIONS(8614), 1, + anon_sym_RBRACE, + ACTIONS(8616), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35114] = 3, + ACTIONS(7781), 1, + anon_sym_LBRACE, + STATE(1094), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35125] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1815), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35136] = 2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + ACTIONS(8481), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [35145] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1609), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35156] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(283), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35167] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1801), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35178] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(498), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35189] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(867), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35200] = 3, + ACTIONS(8618), 1, + anon_sym_RBRACE, + ACTIONS(8620), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35211] = 3, + ACTIONS(8372), 1, + anon_sym_LBRACE, + STATE(1102), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35222] = 3, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35233] = 3, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(850), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35244] = 3, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(848), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35255] = 3, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(847), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35266] = 3, + ACTIONS(8418), 1, + anon_sym_LBRACE, + STATE(846), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35277] = 3, + ACTIONS(8418), 1, + anon_sym_LBRACE, + STATE(844), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35288] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(843), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35299] = 3, + ACTIONS(8418), 1, + anon_sym_LBRACE, + STATE(833), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35310] = 3, + ACTIONS(8370), 1, + anon_sym_LBRACE, + STATE(1103), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35321] = 3, + ACTIONS(7485), 1, + anon_sym_LBRACE, + STATE(454), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35332] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(488), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35343] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(501), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35354] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1648), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35365] = 3, + ACTIONS(7026), 1, + anon_sym_LBRACE, + STATE(445), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35376] = 3, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(861), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35387] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(306), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35398] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35409] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(875), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35420] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(380), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35431] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(334), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35442] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(878), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35453] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(862), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35464] = 3, + ACTIONS(2939), 1, + anon_sym_LBRACE, + STATE(298), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35475] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(857), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35486] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1787), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35497] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(253), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35508] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(849), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35519] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1677), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35530] = 3, + ACTIONS(4204), 1, + anon_sym_LBRACE, + STATE(830), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35541] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(395), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35552] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35563] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(434), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35574] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(649), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35585] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(324), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35596] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1773), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35607] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(768), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35618] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1523), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35629] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(765), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35640] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(763), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35651] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(762), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35662] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(758), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35673] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(358), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35684] = 3, + ACTIONS(8408), 1, + anon_sym_LBRACE, + STATE(880), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35695] = 3, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(882), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35706] = 3, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(755), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35717] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1759), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35728] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1713), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35739] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(365), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35750] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(505), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35761] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1419), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35772] = 3, + ACTIONS(8390), 1, + anon_sym_LBRACE, + STATE(743), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35783] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1745), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35794] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(901), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35805] = 3, + ACTIONS(8622), 1, + anon_sym_RBRACE, + ACTIONS(8624), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35816] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(741), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35827] = 3, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(905), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35838] = 3, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(906), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35849] = 3, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(907), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35860] = 3, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(908), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35871] = 3, + ACTIONS(8408), 1, + anon_sym_LBRACE, + STATE(909), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35882] = 3, + ACTIONS(8408), 1, + anon_sym_LBRACE, + STATE(910), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35893] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(911), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35904] = 3, + ACTIONS(8408), 1, + anon_sym_LBRACE, + STATE(887), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35915] = 3, + ACTIONS(8390), 1, + anon_sym_LBRACE, + STATE(740), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35926] = 3, + ACTIONS(1666), 1, + anon_sym_LBRACE, + STATE(618), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35937] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1707), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35948] = 3, + ACTIONS(8402), 1, + anon_sym_LBRACE, + STATE(572), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35959] = 3, + ACTIONS(8390), 1, + anon_sym_LBRACE, + STATE(739), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35970] = 3, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(737), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35981] = 3, + ACTIONS(8404), 1, + anon_sym_LBRACE, + STATE(930), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [35992] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1731), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36003] = 3, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36014] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(926), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36025] = 3, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(734), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36036] = 3, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(733), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36047] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(922), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36058] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(921), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36069] = 3, + ACTIONS(8626), 1, + anon_sym_RBRACE, + ACTIONS(8628), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36080] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(919), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36091] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1701), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36102] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(727), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36113] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(916), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36124] = 3, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(573), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36135] = 3, + ACTIONS(5307), 1, + anon_sym_LBRACE, + STATE(915), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36146] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(428), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36157] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36168] = 3, + ACTIONS(8386), 1, + anon_sym_LBRACE, + STATE(709), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36179] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1757), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36190] = 3, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(510), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36201] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(631), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36212] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(377), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36223] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(355), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36234] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(325), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36245] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(317), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36256] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36267] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(274), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36278] = 3, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(973), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36289] = 3, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(972), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36300] = 3, + ACTIONS(357), 1, + anon_sym_LBRACE, + STATE(256), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36311] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1695), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36322] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1446), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36333] = 3, + ACTIONS(8402), 1, + anon_sym_LBRACE, + STATE(699), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36344] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1471), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36355] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1472), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36366] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(521), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36377] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1727), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36388] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(965), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36399] = 3, + ACTIONS(8630), 1, + anon_sym_RBRACE, + ACTIONS(8632), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36410] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1689), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36421] = 3, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(962), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36432] = 3, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(961), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36443] = 3, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(960), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36454] = 3, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36465] = 3, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(958), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36476] = 3, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(957), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36487] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36498] = 3, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(955), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36509] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(652), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36520] = 3, + ACTIONS(8634), 1, + anon_sym_RBRACE, + ACTIONS(8636), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36531] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(48), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36542] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1721), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36553] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(522), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36564] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1679), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36575] = 3, + ACTIONS(8380), 1, + anon_sym_LBRACE, + STATE(948), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36586] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(259), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36597] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(653), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36608] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(945), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36619] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(523), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36630] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(641), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36641] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(942), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36652] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(941), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36663] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(640), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36674] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36685] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1783), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36696] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(634), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36707] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(936), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36718] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1660), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36729] = 3, + ACTIONS(6541), 1, + anon_sym_LBRACE, + STATE(935), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36740] = 3, + ACTIONS(7026), 1, + anon_sym_LBRACE, + STATE(448), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36751] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(525), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36762] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1654), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36773] = 3, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(526), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36784] = 3, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(489), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36795] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1281), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36806] = 3, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(636), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36817] = 3, + ACTIONS(8406), 1, + anon_sym_LBRACE, + STATE(660), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36828] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(661), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36839] = 3, + ACTIONS(8406), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36850] = 3, + ACTIONS(8406), 1, + anon_sym_LBRACE, + STATE(663), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36861] = 3, + ACTIONS(8392), 1, + anon_sym_LBRACE, + STATE(1003), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36872] = 3, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(1004), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36883] = 3, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(664), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36894] = 3, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(529), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36905] = 3, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(530), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36916] = 3, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(665), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36927] = 3, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(666), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36938] = 3, + ACTIONS(8638), 1, + anon_sym_RBRACE, + ACTIONS(8640), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36949] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(534), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36960] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1643), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36971] = 3, + ACTIONS(7026), 1, + anon_sym_LBRACE, + STATE(1021), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36982] = 3, + ACTIONS(8642), 1, + anon_sym_RBRACE, + ACTIONS(8644), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [36993] = 3, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(667), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37004] = 3, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(1023), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37015] = 3, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(1024), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37026] = 3, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(1026), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37037] = 3, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(1027), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37048] = 3, + ACTIONS(8392), 1, + anon_sym_LBRACE, + STATE(1028), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37059] = 3, + ACTIONS(8392), 1, + anon_sym_LBRACE, + STATE(1029), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37070] = 3, + ACTIONS(7026), 1, + anon_sym_LBRACE, + STATE(1032), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37081] = 3, + ACTIONS(8392), 1, + anon_sym_LBRACE, + STATE(1031), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37092] = 3, + ACTIONS(8646), 1, + anon_sym_RBRACE, + ACTIONS(8648), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37103] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1642), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37114] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1311), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37125] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(670), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37136] = 3, + ACTIONS(8396), 1, + anon_sym_LBRACE, + STATE(691), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37147] = 3, + ACTIONS(8406), 1, + anon_sym_LBRACE, + STATE(692), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37158] = 3, + ACTIONS(8374), 1, + anon_sym_LBRACE, + STATE(987), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37169] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1641), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37180] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(360), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37191] = 3, + ACTIONS(7026), 1, + anon_sym_LBRACE, + STATE(990), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37202] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1841), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37213] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(350), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37224] = 3, + ACTIONS(7026), 1, + anon_sym_LBRACE, + STATE(993), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37235] = 3, + ACTIONS(7026), 1, + anon_sym_LBRACE, + STATE(994), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37246] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(332), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37257] = 3, + ACTIONS(7026), 1, + anon_sym_LBRACE, + STATE(996), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37268] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1608), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37279] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(308), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37290] = 3, + ACTIONS(7026), 1, + anon_sym_LBRACE, + STATE(999), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37301] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1602), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37312] = 3, + ACTIONS(7026), 1, + anon_sym_LBRACE, + STATE(1000), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37323] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1306), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37334] = 3, + ACTIONS(8650), 1, + anon_sym_LBRACK, + ACTIONS(8652), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37345] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1544), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37356] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1550), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37367] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(295), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37378] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37389] = 3, + ACTIONS(287), 1, + anon_sym_LBRACE, + STATE(263), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37400] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(738), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37411] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1591), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37422] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37433] = 3, + ACTIONS(8425), 1, + anon_sym_LBRACE, + STATE(1064), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37444] = 3, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37455] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1590), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37466] = 3, + ACTIONS(8394), 1, + anon_sym_LBRACE, + STATE(527), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37477] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(520), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37488] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1562), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37499] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(751), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37510] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(749), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37521] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(747), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37532] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(726), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37543] = 3, + ACTIONS(7485), 1, + anon_sym_LBRACE, + STATE(1075), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37554] = 3, + ACTIONS(8654), 1, + anon_sym_RBRACE, + ACTIONS(8656), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37565] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1589), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37576] = 3, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1078), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37587] = 3, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1079), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37598] = 3, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1035), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37609] = 3, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1083), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37620] = 3, + ACTIONS(8425), 1, + anon_sym_LBRACE, + STATE(1081), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37631] = 3, + ACTIONS(8425), 1, + anon_sym_LBRACE, + STATE(1080), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37642] = 3, + ACTIONS(7485), 1, + anon_sym_LBRACE, + STATE(1036), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37653] = 3, + ACTIONS(8425), 1, + anon_sym_LBRACE, + STATE(1082), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37664] = 3, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37675] = 3, + ACTIONS(8402), 1, + anon_sym_LBRACE, + STATE(701), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37686] = 3, + ACTIONS(233), 1, + anon_sym_LBRACE, + STATE(700), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37697] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1555), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37708] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(313), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37719] = 3, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37730] = 3, + ACTIONS(8416), 1, + anon_sym_LBRACE, + STATE(1042), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37741] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1549), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37752] = 3, + ACTIONS(8402), 1, + anon_sym_LBRACE, + STATE(697), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37763] = 3, + ACTIONS(7485), 1, + anon_sym_LBRACE, + STATE(1045), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37774] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(288), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37785] = 3, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(708), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37796] = 3, + ACTIONS(7485), 1, + anon_sym_LBRACE, + STATE(1048), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37807] = 3, + ACTIONS(7485), 1, + anon_sym_LBRACE, + STATE(1049), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37818] = 3, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(673), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37829] = 3, + ACTIONS(7485), 1, + anon_sym_LBRACE, + STATE(1051), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37840] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1314), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37851] = 3, + ACTIONS(8382), 1, + anon_sym_LBRACE, + STATE(671), 1, + sym__comma_sep_word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37862] = 3, + ACTIONS(7485), 1, + anon_sym_LBRACE, + STATE(1054), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37873] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1538), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37884] = 3, + ACTIONS(7485), 1, + anon_sym_LBRACE, + STATE(1055), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37895] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(275), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37906] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(252), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37917] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(249), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37928] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(239), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37939] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1653), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37950] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1524), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37961] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1647), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37972] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1280), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37983] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1537), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [37994] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1536), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38005] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1633), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38016] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1501), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38027] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1495), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38038] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1630), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38049] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1302), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38060] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1484), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38071] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1483), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38082] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1482), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38093] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1571), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38104] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1570), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38115] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1569), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38126] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1325), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38137] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1557), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38148] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1548), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38159] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1490), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38170] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1486), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38181] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1477), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38192] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1301), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38203] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1463), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38214] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1460), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38225] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1405), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38236] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1404), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38247] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1402), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38258] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1274), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38269] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1389), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38280] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1383), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38291] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1351), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38302] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1328), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38313] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1329), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38324] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1308), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38335] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1487), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38346] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1333), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38357] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1371), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38368] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1372), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38379] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1373), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38390] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1276), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38401] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1384), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38412] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1390), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38423] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1427), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38434] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1428), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38445] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1429), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38456] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, + STATE(1286), 1, + sym__word_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38467] = 3, + ACTIONS(27), 1, + anon_sym_LBRACE, + STATE(1440), 1, + sym_brace_group, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38478] = 2, + ACTIONS(8658), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38486] = 2, + ACTIONS(8660), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38494] = 2, + ACTIONS(8662), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38502] = 2, + ACTIONS(8664), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38510] = 2, + ACTIONS(8666), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38518] = 2, + ACTIONS(8668), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38526] = 2, + ACTIONS(8670), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38534] = 2, + ACTIONS(8672), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38542] = 2, + ACTIONS(8674), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38550] = 2, + ACTIONS(8676), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38558] = 2, + ACTIONS(8678), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38566] = 2, + ACTIONS(8680), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38574] = 2, + ACTIONS(8682), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38582] = 2, + ACTIONS(8684), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38590] = 2, + ACTIONS(8686), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38598] = 2, + ACTIONS(8688), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38606] = 2, + ACTIONS(8690), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38614] = 2, + ACTIONS(8692), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38622] = 2, + ACTIONS(8694), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38630] = 2, + ACTIONS(8696), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38638] = 2, + ACTIONS(8698), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38646] = 2, + ACTIONS(8700), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38654] = 2, + ACTIONS(8702), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38662] = 2, + ACTIONS(8704), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38670] = 2, + ACTIONS(8706), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38678] = 2, + ACTIONS(8708), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38686] = 2, + ACTIONS(8710), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38694] = 2, + ACTIONS(8712), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38702] = 2, + ACTIONS(8714), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38710] = 2, + ACTIONS(8716), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38718] = 2, + ACTIONS(8718), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38726] = 2, + ACTIONS(8720), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38734] = 2, + ACTIONS(8722), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38742] = 2, + ACTIONS(8724), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38750] = 2, + ACTIONS(8726), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38758] = 2, + ACTIONS(8728), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38766] = 2, + ACTIONS(8730), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38774] = 2, + ACTIONS(8732), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38782] = 2, + ACTIONS(8734), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38790] = 2, + ACTIONS(8736), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38798] = 2, + ACTIONS(8738), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38806] = 2, + ACTIONS(8740), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38814] = 2, + ACTIONS(8742), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38822] = 2, + ACTIONS(8744), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38830] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38838] = 2, + ACTIONS(8748), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38846] = 2, + ACTIONS(8750), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38854] = 2, + ACTIONS(8752), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38862] = 2, + ACTIONS(8754), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38870] = 2, + ACTIONS(8756), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38878] = 2, + ACTIONS(8758), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38886] = 2, + ACTIONS(8760), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38894] = 2, + ACTIONS(8762), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38902] = 2, + ACTIONS(8764), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38910] = 2, + ACTIONS(8766), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38918] = 2, + ACTIONS(8768), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38926] = 2, + ACTIONS(8770), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38934] = 2, + ACTIONS(8772), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38942] = 2, + ACTIONS(8774), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38950] = 2, + ACTIONS(8776), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38958] = 2, + ACTIONS(8778), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38966] = 2, + ACTIONS(8780), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38974] = 2, + ACTIONS(8782), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38982] = 2, + ACTIONS(8784), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38990] = 2, + ACTIONS(8786), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [38998] = 2, + ACTIONS(8788), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39006] = 2, + ACTIONS(8790), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39014] = 2, + ACTIONS(8792), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39022] = 2, + ACTIONS(8794), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39030] = 2, + ACTIONS(8796), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39038] = 2, + ACTIONS(8798), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39046] = 2, + ACTIONS(8800), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39054] = 2, + ACTIONS(8802), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39062] = 2, + ACTIONS(8804), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39070] = 2, + ACTIONS(8806), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39078] = 2, + ACTIONS(8808), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39086] = 2, + ACTIONS(8810), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39094] = 2, + ACTIONS(8812), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39102] = 2, + ACTIONS(8814), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39110] = 2, + ACTIONS(8816), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39118] = 2, + ACTIONS(8818), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39126] = 2, + ACTIONS(8820), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39134] = 2, + ACTIONS(8822), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39142] = 2, + ACTIONS(8824), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39150] = 2, + ACTIONS(8826), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39158] = 2, + ACTIONS(8828), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39166] = 2, + ACTIONS(8830), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39174] = 2, + ACTIONS(8832), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39182] = 2, + ACTIONS(8834), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39190] = 2, + ACTIONS(8836), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39198] = 2, + ACTIONS(8838), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39206] = 2, + ACTIONS(8840), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39214] = 2, + ACTIONS(8842), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39222] = 2, + ACTIONS(8844), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39230] = 2, + ACTIONS(8846), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39238] = 2, + ACTIONS(8848), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39246] = 2, + ACTIONS(8850), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39254] = 2, + ACTIONS(8852), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39262] = 2, + ACTIONS(8854), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39270] = 2, + ACTIONS(8856), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39278] = 2, + ACTIONS(8858), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39286] = 2, + ACTIONS(8860), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39294] = 2, + ACTIONS(8862), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39302] = 2, + ACTIONS(8864), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39310] = 2, + ACTIONS(8866), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39318] = 2, + ACTIONS(8868), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39326] = 2, + ACTIONS(8870), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39334] = 2, + ACTIONS(8872), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39342] = 2, + ACTIONS(8874), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39350] = 2, + ACTIONS(8876), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39358] = 2, + ACTIONS(8878), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39366] = 2, + ACTIONS(8880), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39374] = 2, + ACTIONS(8882), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39382] = 2, + ACTIONS(8884), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39390] = 2, + ACTIONS(8886), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39398] = 2, + ACTIONS(8888), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39406] = 2, + ACTIONS(8890), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39414] = 2, + ACTIONS(8892), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39422] = 2, + ACTIONS(8894), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39430] = 2, + ACTIONS(8896), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39438] = 2, + ACTIONS(8898), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39446] = 2, + ACTIONS(8900), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39454] = 2, + ACTIONS(8902), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39462] = 2, + ACTIONS(8904), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39470] = 2, + ACTIONS(8906), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39478] = 2, + ACTIONS(8908), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39486] = 2, + ACTIONS(8910), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39494] = 2, + ACTIONS(8912), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39502] = 2, + ACTIONS(8914), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39510] = 2, + ACTIONS(8916), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39518] = 2, + ACTIONS(8918), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39526] = 2, + ACTIONS(8920), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39534] = 2, + ACTIONS(8922), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39542] = 2, + ACTIONS(8924), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39550] = 2, + ACTIONS(8926), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39558] = 2, + ACTIONS(8928), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39566] = 2, + ACTIONS(8930), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39574] = 2, + ACTIONS(8932), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39582] = 2, + ACTIONS(8934), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39590] = 2, + ACTIONS(8936), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39598] = 2, + ACTIONS(8938), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39606] = 2, + ACTIONS(8940), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39614] = 2, + ACTIONS(8942), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39622] = 2, + ACTIONS(8944), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39630] = 2, + ACTIONS(8946), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39638] = 2, + ACTIONS(8948), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39646] = 2, + ACTIONS(8950), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39654] = 2, + ACTIONS(8952), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39662] = 2, + ACTIONS(8954), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39670] = 2, + ACTIONS(8956), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39678] = 2, + ACTIONS(8958), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39686] = 2, + ACTIONS(8960), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39694] = 2, + ACTIONS(8962), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39702] = 2, + ACTIONS(8964), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39710] = 2, + ACTIONS(8966), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39718] = 2, + ACTIONS(8968), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39726] = 2, + ACTIONS(8970), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39734] = 2, + ACTIONS(8972), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39742] = 2, + ACTIONS(8974), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39750] = 2, + ACTIONS(8976), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39758] = 2, + ACTIONS(8978), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39766] = 2, + ACTIONS(8980), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39774] = 2, + ACTIONS(8982), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39782] = 2, + ACTIONS(8984), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39790] = 2, + ACTIONS(8986), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39798] = 2, + ACTIONS(8988), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39806] = 2, + ACTIONS(8990), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39814] = 2, + ACTIONS(8992), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39822] = 2, + ACTIONS(8994), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39830] = 2, + ACTIONS(8996), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39838] = 2, + ACTIONS(8998), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39846] = 2, + ACTIONS(9000), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39854] = 2, + ACTIONS(9002), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39862] = 2, + ACTIONS(9004), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39870] = 2, + ACTIONS(9006), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39878] = 2, + ACTIONS(9008), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39886] = 2, + ACTIONS(9010), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39894] = 2, + ACTIONS(9012), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39902] = 2, + ACTIONS(9014), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39910] = 2, + ACTIONS(9016), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39918] = 2, + ACTIONS(9018), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39926] = 2, + ACTIONS(9020), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39934] = 2, + ACTIONS(9022), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39942] = 2, + ACTIONS(9024), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39950] = 2, + ACTIONS(9026), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39958] = 2, + ACTIONS(9028), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39966] = 2, + ACTIONS(9030), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39974] = 2, + ACTIONS(9032), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39982] = 2, + ACTIONS(9034), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39990] = 2, + ACTIONS(9036), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [39998] = 2, + ACTIONS(9038), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40006] = 2, + ACTIONS(9040), 1, + sym_word, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40014] = 2, + ACTIONS(9042), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40022] = 2, + ACTIONS(9044), 1, + sym__generic_command_name, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40030] = 2, + ACTIONS(9046), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40038] = 2, + ACTIONS(9048), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40046] = 2, + ACTIONS(9050), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40054] = 2, + ACTIONS(9052), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40062] = 2, + ACTIONS(9054), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40070] = 2, + ACTIONS(9056), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40078] = 2, + ACTIONS(9058), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40086] = 2, + ACTIONS(9060), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40094] = 2, + ACTIONS(9062), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40102] = 2, + ACTIONS(9064), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40110] = 2, + ACTIONS(9066), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40118] = 2, + ACTIONS(9068), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40126] = 2, + ACTIONS(9070), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40134] = 2, + ACTIONS(9072), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40142] = 2, + ACTIONS(9074), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40150] = 2, + ACTIONS(9076), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40158] = 2, + ACTIONS(9078), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40166] = 2, + ACTIONS(9080), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40174] = 2, + ACTIONS(9082), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40182] = 2, + ACTIONS(9084), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40190] = 2, + ACTIONS(9086), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40198] = 2, + ACTIONS(9088), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40206] = 2, + ACTIONS(9090), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40214] = 2, + ACTIONS(9092), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40222] = 2, + ACTIONS(9094), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40230] = 2, + ACTIONS(9096), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40238] = 2, + ACTIONS(9098), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40246] = 2, + ACTIONS(9100), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40254] = 2, + ACTIONS(9102), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40262] = 2, + ACTIONS(9104), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40270] = 2, + ACTIONS(9106), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40278] = 2, + ACTIONS(9108), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40286] = 2, + ACTIONS(9110), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40294] = 2, + ACTIONS(9112), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40302] = 2, + ACTIONS(9114), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40310] = 2, + ACTIONS(9116), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40318] = 2, + ACTIONS(9118), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40326] = 2, + ACTIONS(9120), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40334] = 2, + ACTIONS(9122), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40342] = 2, + ACTIONS(9124), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40350] = 2, + ACTIONS(9126), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40358] = 2, + ACTIONS(9128), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40366] = 2, + ACTIONS(9130), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40374] = 2, + ACTIONS(9132), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40382] = 2, + ACTIONS(9134), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40390] = 2, + ACTIONS(9136), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40398] = 2, + ACTIONS(9138), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40406] = 2, + ACTIONS(9140), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40414] = 2, + ACTIONS(9142), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40422] = 2, + ACTIONS(9144), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40430] = 2, + ACTIONS(9146), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40438] = 2, + ACTIONS(9148), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40446] = 2, + ACTIONS(9150), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, + [40454] = 2, + ACTIONS(9152), 1, + aux_sym_command_definition_token2, + ACTIONS(3), 2, + sym_whitespace, + sym_comment, +}; + +static uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(472)] = 0, + [SMALL_STATE(473)] = 63, + [SMALL_STATE(474)] = 126, + [SMALL_STATE(475)] = 189, + [SMALL_STATE(476)] = 248, + [SMALL_STATE(477)] = 308, + [SMALL_STATE(478)] = 368, + [SMALL_STATE(479)] = 428, + [SMALL_STATE(480)] = 488, + [SMALL_STATE(481)] = 548, + [SMALL_STATE(482)] = 608, + [SMALL_STATE(483)] = 668, + [SMALL_STATE(484)] = 728, + [SMALL_STATE(485)] = 788, + [SMALL_STATE(486)] = 848, + [SMALL_STATE(487)] = 908, + [SMALL_STATE(488)] = 968, + [SMALL_STATE(489)] = 1019, + [SMALL_STATE(490)] = 1070, + [SMALL_STATE(491)] = 1121, + [SMALL_STATE(492)] = 1172, + [SMALL_STATE(493)] = 1223, + [SMALL_STATE(494)] = 1274, + [SMALL_STATE(495)] = 1325, + [SMALL_STATE(496)] = 1376, + [SMALL_STATE(497)] = 1427, + [SMALL_STATE(498)] = 1486, + [SMALL_STATE(499)] = 1537, + [SMALL_STATE(500)] = 1588, + [SMALL_STATE(501)] = 1639, + [SMALL_STATE(502)] = 1690, + [SMALL_STATE(503)] = 1741, + [SMALL_STATE(504)] = 1792, + [SMALL_STATE(505)] = 1843, + [SMALL_STATE(506)] = 1894, + [SMALL_STATE(507)] = 1945, + [SMALL_STATE(508)] = 2004, + [SMALL_STATE(509)] = 2055, + [SMALL_STATE(510)] = 2106, + [SMALL_STATE(511)] = 2157, + [SMALL_STATE(512)] = 2208, + [SMALL_STATE(513)] = 2259, + [SMALL_STATE(514)] = 2310, + [SMALL_STATE(515)] = 2361, + [SMALL_STATE(516)] = 2412, + [SMALL_STATE(517)] = 2463, + [SMALL_STATE(518)] = 2516, + [SMALL_STATE(519)] = 2567, + [SMALL_STATE(520)] = 2618, + [SMALL_STATE(521)] = 2669, + [SMALL_STATE(522)] = 2720, + [SMALL_STATE(523)] = 2771, + [SMALL_STATE(524)] = 2822, + [SMALL_STATE(525)] = 2881, + [SMALL_STATE(526)] = 2932, + [SMALL_STATE(527)] = 2983, + [SMALL_STATE(528)] = 3034, + [SMALL_STATE(529)] = 3085, + [SMALL_STATE(530)] = 3136, + [SMALL_STATE(531)] = 3187, + [SMALL_STATE(532)] = 3238, + [SMALL_STATE(533)] = 3289, + [SMALL_STATE(534)] = 3340, + [SMALL_STATE(535)] = 3391, + [SMALL_STATE(536)] = 3442, + [SMALL_STATE(537)] = 3493, + [SMALL_STATE(538)] = 3544, + [SMALL_STATE(539)] = 3595, + [SMALL_STATE(540)] = 3646, + [SMALL_STATE(541)] = 3697, + [SMALL_STATE(542)] = 3755, + [SMALL_STATE(543)] = 3811, + [SMALL_STATE(544)] = 3867, + [SMALL_STATE(545)] = 3921, + [SMALL_STATE(546)] = 3979, + [SMALL_STATE(547)] = 4037, + [SMALL_STATE(548)] = 4093, + [SMALL_STATE(549)] = 4147, + [SMALL_STATE(550)] = 4201, + [SMALL_STATE(551)] = 4257, + [SMALL_STATE(552)] = 4308, + [SMALL_STATE(553)] = 4365, + [SMALL_STATE(554)] = 4416, + [SMALL_STATE(555)] = 4467, + [SMALL_STATE(556)] = 4518, + [SMALL_STATE(557)] = 4569, + [SMALL_STATE(558)] = 4620, + [SMALL_STATE(559)] = 4671, + [SMALL_STATE(560)] = 4726, + [SMALL_STATE(561)] = 4777, + [SMALL_STATE(562)] = 4828, + [SMALL_STATE(563)] = 4879, + [SMALL_STATE(564)] = 4930, + [SMALL_STATE(565)] = 4987, + [SMALL_STATE(566)] = 5044, + [SMALL_STATE(567)] = 5095, + [SMALL_STATE(568)] = 5143, + [SMALL_STATE(569)] = 5191, + [SMALL_STATE(570)] = 5239, + [SMALL_STATE(571)] = 5287, + [SMALL_STATE(572)] = 5335, + [SMALL_STATE(573)] = 5383, + [SMALL_STATE(574)] = 5431, + [SMALL_STATE(575)] = 5479, + [SMALL_STATE(576)] = 5527, + [SMALL_STATE(577)] = 5575, + [SMALL_STATE(578)] = 5623, + [SMALL_STATE(579)] = 5671, + [SMALL_STATE(580)] = 5719, + [SMALL_STATE(581)] = 5767, + [SMALL_STATE(582)] = 5815, + [SMALL_STATE(583)] = 5863, + [SMALL_STATE(584)] = 5911, + [SMALL_STATE(585)] = 5959, + [SMALL_STATE(586)] = 6007, + [SMALL_STATE(587)] = 6055, + [SMALL_STATE(588)] = 6103, + [SMALL_STATE(589)] = 6151, + [SMALL_STATE(590)] = 6199, + [SMALL_STATE(591)] = 6247, + [SMALL_STATE(592)] = 6295, + [SMALL_STATE(593)] = 6343, + [SMALL_STATE(594)] = 6391, + [SMALL_STATE(595)] = 6439, + [SMALL_STATE(596)] = 6487, + [SMALL_STATE(597)] = 6535, + [SMALL_STATE(598)] = 6583, + [SMALL_STATE(599)] = 6631, + [SMALL_STATE(600)] = 6679, + [SMALL_STATE(601)] = 6727, + [SMALL_STATE(602)] = 6775, + [SMALL_STATE(603)] = 6823, + [SMALL_STATE(604)] = 6871, + [SMALL_STATE(605)] = 6919, + [SMALL_STATE(606)] = 6967, + [SMALL_STATE(607)] = 7015, + [SMALL_STATE(608)] = 7063, + [SMALL_STATE(609)] = 7111, + [SMALL_STATE(610)] = 7159, + [SMALL_STATE(611)] = 7209, + [SMALL_STATE(612)] = 7257, + [SMALL_STATE(613)] = 7305, + [SMALL_STATE(614)] = 7353, + [SMALL_STATE(615)] = 7401, + [SMALL_STATE(616)] = 7449, + [SMALL_STATE(617)] = 7497, + [SMALL_STATE(618)] = 7545, + [SMALL_STATE(619)] = 7593, + [SMALL_STATE(620)] = 7641, + [SMALL_STATE(621)] = 7689, + [SMALL_STATE(622)] = 7737, + [SMALL_STATE(623)] = 7785, + [SMALL_STATE(624)] = 7833, + [SMALL_STATE(625)] = 7881, + [SMALL_STATE(626)] = 7929, + [SMALL_STATE(627)] = 7977, + [SMALL_STATE(628)] = 8025, + [SMALL_STATE(629)] = 8073, + [SMALL_STATE(630)] = 8121, + [SMALL_STATE(631)] = 8169, + [SMALL_STATE(632)] = 8217, + [SMALL_STATE(633)] = 8265, + [SMALL_STATE(634)] = 8313, + [SMALL_STATE(635)] = 8361, + [SMALL_STATE(636)] = 8409, + [SMALL_STATE(637)] = 8457, + [SMALL_STATE(638)] = 8505, + [SMALL_STATE(639)] = 8553, + [SMALL_STATE(640)] = 8601, + [SMALL_STATE(641)] = 8649, + [SMALL_STATE(642)] = 8697, + [SMALL_STATE(643)] = 8745, + [SMALL_STATE(644)] = 8793, + [SMALL_STATE(645)] = 8841, + [SMALL_STATE(646)] = 8889, + [SMALL_STATE(647)] = 8937, + [SMALL_STATE(648)] = 8985, + [SMALL_STATE(649)] = 9033, + [SMALL_STATE(650)] = 9081, + [SMALL_STATE(651)] = 9129, + [SMALL_STATE(652)] = 9177, + [SMALL_STATE(653)] = 9225, + [SMALL_STATE(654)] = 9273, + [SMALL_STATE(655)] = 9321, + [SMALL_STATE(656)] = 9369, + [SMALL_STATE(657)] = 9417, + [SMALL_STATE(658)] = 9465, + [SMALL_STATE(659)] = 9513, + [SMALL_STATE(660)] = 9563, + [SMALL_STATE(661)] = 9611, + [SMALL_STATE(662)] = 9659, + [SMALL_STATE(663)] = 9707, + [SMALL_STATE(664)] = 9755, + [SMALL_STATE(665)] = 9803, + [SMALL_STATE(666)] = 9851, + [SMALL_STATE(667)] = 9899, + [SMALL_STATE(668)] = 9947, + [SMALL_STATE(669)] = 9995, + [SMALL_STATE(670)] = 10043, + [SMALL_STATE(671)] = 10091, + [SMALL_STATE(672)] = 10139, + [SMALL_STATE(673)] = 10187, + [SMALL_STATE(674)] = 10235, + [SMALL_STATE(675)] = 10283, + [SMALL_STATE(676)] = 10331, + [SMALL_STATE(677)] = 10379, + [SMALL_STATE(678)] = 10427, + [SMALL_STATE(679)] = 10475, + [SMALL_STATE(680)] = 10523, + [SMALL_STATE(681)] = 10571, + [SMALL_STATE(682)] = 10619, + [SMALL_STATE(683)] = 10667, + [SMALL_STATE(684)] = 10715, + [SMALL_STATE(685)] = 10763, + [SMALL_STATE(686)] = 10811, + [SMALL_STATE(687)] = 10859, + [SMALL_STATE(688)] = 10907, + [SMALL_STATE(689)] = 10955, + [SMALL_STATE(690)] = 11003, + [SMALL_STATE(691)] = 11051, + [SMALL_STATE(692)] = 11099, + [SMALL_STATE(693)] = 11147, + [SMALL_STATE(694)] = 11195, + [SMALL_STATE(695)] = 11243, + [SMALL_STATE(696)] = 11291, + [SMALL_STATE(697)] = 11339, + [SMALL_STATE(698)] = 11387, + [SMALL_STATE(699)] = 11441, + [SMALL_STATE(700)] = 11489, + [SMALL_STATE(701)] = 11537, + [SMALL_STATE(702)] = 11585, + [SMALL_STATE(703)] = 11635, + [SMALL_STATE(704)] = 11683, + [SMALL_STATE(705)] = 11731, + [SMALL_STATE(706)] = 11779, + [SMALL_STATE(707)] = 11827, + [SMALL_STATE(708)] = 11875, + [SMALL_STATE(709)] = 11923, + [SMALL_STATE(710)] = 11971, + [SMALL_STATE(711)] = 12019, + [SMALL_STATE(712)] = 12067, + [SMALL_STATE(713)] = 12115, + [SMALL_STATE(714)] = 12163, + [SMALL_STATE(715)] = 12211, + [SMALL_STATE(716)] = 12259, + [SMALL_STATE(717)] = 12307, + [SMALL_STATE(718)] = 12355, + [SMALL_STATE(719)] = 12403, + [SMALL_STATE(720)] = 12451, + [SMALL_STATE(721)] = 12499, + [SMALL_STATE(722)] = 12547, + [SMALL_STATE(723)] = 12603, + [SMALL_STATE(724)] = 12651, + [SMALL_STATE(725)] = 12699, + [SMALL_STATE(726)] = 12747, + [SMALL_STATE(727)] = 12795, + [SMALL_STATE(728)] = 12843, + [SMALL_STATE(729)] = 12891, + [SMALL_STATE(730)] = 12939, + [SMALL_STATE(731)] = 12987, + [SMALL_STATE(732)] = 13035, + [SMALL_STATE(733)] = 13083, + [SMALL_STATE(734)] = 13131, + [SMALL_STATE(735)] = 13179, + [SMALL_STATE(736)] = 13235, + [SMALL_STATE(737)] = 13283, + [SMALL_STATE(738)] = 13331, + [SMALL_STATE(739)] = 13379, + [SMALL_STATE(740)] = 13427, + [SMALL_STATE(741)] = 13475, + [SMALL_STATE(742)] = 13523, + [SMALL_STATE(743)] = 13579, + [SMALL_STATE(744)] = 13627, + [SMALL_STATE(745)] = 13677, + [SMALL_STATE(746)] = 13725, + [SMALL_STATE(747)] = 13773, + [SMALL_STATE(748)] = 13821, + [SMALL_STATE(749)] = 13869, + [SMALL_STATE(750)] = 13917, + [SMALL_STATE(751)] = 13965, + [SMALL_STATE(752)] = 14013, + [SMALL_STATE(753)] = 14061, + [SMALL_STATE(754)] = 14109, + [SMALL_STATE(755)] = 14157, + [SMALL_STATE(756)] = 14205, + [SMALL_STATE(757)] = 14253, + [SMALL_STATE(758)] = 14301, + [SMALL_STATE(759)] = 14349, + [SMALL_STATE(760)] = 14397, + [SMALL_STATE(761)] = 14445, + [SMALL_STATE(762)] = 14493, + [SMALL_STATE(763)] = 14541, + [SMALL_STATE(764)] = 14589, + [SMALL_STATE(765)] = 14637, + [SMALL_STATE(766)] = 14685, + [SMALL_STATE(767)] = 14733, + [SMALL_STATE(768)] = 14781, + [SMALL_STATE(769)] = 14829, + [SMALL_STATE(770)] = 14877, + [SMALL_STATE(771)] = 14925, + [SMALL_STATE(772)] = 14980, + [SMALL_STATE(773)] = 15027, + [SMALL_STATE(774)] = 15080, + [SMALL_STATE(775)] = 15127, + [SMALL_STATE(776)] = 15174, + [SMALL_STATE(777)] = 15221, + [SMALL_STATE(778)] = 15268, + [SMALL_STATE(779)] = 15315, + [SMALL_STATE(780)] = 15362, + [SMALL_STATE(781)] = 15409, + [SMALL_STATE(782)] = 15456, + [SMALL_STATE(783)] = 15503, + [SMALL_STATE(784)] = 15550, + [SMALL_STATE(785)] = 15597, + [SMALL_STATE(786)] = 15644, + [SMALL_STATE(787)] = 15691, + [SMALL_STATE(788)] = 15738, + [SMALL_STATE(789)] = 15785, + [SMALL_STATE(790)] = 15832, + [SMALL_STATE(791)] = 15879, + [SMALL_STATE(792)] = 15926, + [SMALL_STATE(793)] = 15981, + [SMALL_STATE(794)] = 16028, + [SMALL_STATE(795)] = 16075, + [SMALL_STATE(796)] = 16122, + [SMALL_STATE(797)] = 16169, + [SMALL_STATE(798)] = 16216, + [SMALL_STATE(799)] = 16263, + [SMALL_STATE(800)] = 16310, + [SMALL_STATE(801)] = 16357, + [SMALL_STATE(802)] = 16404, + [SMALL_STATE(803)] = 16451, + [SMALL_STATE(804)] = 16498, + [SMALL_STATE(805)] = 16545, + [SMALL_STATE(806)] = 16594, + [SMALL_STATE(807)] = 16641, + [SMALL_STATE(808)] = 16688, + [SMALL_STATE(809)] = 16735, + [SMALL_STATE(810)] = 16782, + [SMALL_STATE(811)] = 16829, + [SMALL_STATE(812)] = 16876, + [SMALL_STATE(813)] = 16923, + [SMALL_STATE(814)] = 16970, + [SMALL_STATE(815)] = 17017, + [SMALL_STATE(816)] = 17064, + [SMALL_STATE(817)] = 17111, + [SMALL_STATE(818)] = 17166, + [SMALL_STATE(819)] = 17213, + [SMALL_STATE(820)] = 17260, + [SMALL_STATE(821)] = 17307, + [SMALL_STATE(822)] = 17354, + [SMALL_STATE(823)] = 17401, + [SMALL_STATE(824)] = 17448, + [SMALL_STATE(825)] = 17495, + [SMALL_STATE(826)] = 17541, + [SMALL_STATE(827)] = 17587, + [SMALL_STATE(828)] = 17633, + [SMALL_STATE(829)] = 17679, + [SMALL_STATE(830)] = 17725, + [SMALL_STATE(831)] = 17771, + [SMALL_STATE(832)] = 17819, + [SMALL_STATE(833)] = 17865, + [SMALL_STATE(834)] = 17911, + [SMALL_STATE(835)] = 17957, + [SMALL_STATE(836)] = 18003, + [SMALL_STATE(837)] = 18049, + [SMALL_STATE(838)] = 18095, + [SMALL_STATE(839)] = 18141, + [SMALL_STATE(840)] = 18187, + [SMALL_STATE(841)] = 18233, + [SMALL_STATE(842)] = 18279, + [SMALL_STATE(843)] = 18325, + [SMALL_STATE(844)] = 18371, + [SMALL_STATE(845)] = 18417, + [SMALL_STATE(846)] = 18469, + [SMALL_STATE(847)] = 18515, + [SMALL_STATE(848)] = 18561, + [SMALL_STATE(849)] = 18607, + [SMALL_STATE(850)] = 18653, + [SMALL_STATE(851)] = 18699, + [SMALL_STATE(852)] = 18745, + [SMALL_STATE(853)] = 18791, + [SMALL_STATE(854)] = 18837, + [SMALL_STATE(855)] = 18883, + [SMALL_STATE(856)] = 18937, + [SMALL_STATE(857)] = 18983, + [SMALL_STATE(858)] = 19029, + [SMALL_STATE(859)] = 19075, + [SMALL_STATE(860)] = 19129, + [SMALL_STATE(861)] = 19175, + [SMALL_STATE(862)] = 19221, + [SMALL_STATE(863)] = 19267, + [SMALL_STATE(864)] = 19313, + [SMALL_STATE(865)] = 19359, + [SMALL_STATE(866)] = 19405, + [SMALL_STATE(867)] = 19451, + [SMALL_STATE(868)] = 19497, + [SMALL_STATE(869)] = 19543, + [SMALL_STATE(870)] = 19589, + [SMALL_STATE(871)] = 19635, + [SMALL_STATE(872)] = 19681, + [SMALL_STATE(873)] = 19727, + [SMALL_STATE(874)] = 19781, + [SMALL_STATE(875)] = 19827, + [SMALL_STATE(876)] = 19873, + [SMALL_STATE(877)] = 19919, + [SMALL_STATE(878)] = 19965, + [SMALL_STATE(879)] = 20011, + [SMALL_STATE(880)] = 20056, + [SMALL_STATE(881)] = 20101, + [SMALL_STATE(882)] = 20154, + [SMALL_STATE(883)] = 20199, + [SMALL_STATE(884)] = 20244, + [SMALL_STATE(885)] = 20289, + [SMALL_STATE(886)] = 20334, + [SMALL_STATE(887)] = 20379, + [SMALL_STATE(888)] = 20424, + [SMALL_STATE(889)] = 20469, + [SMALL_STATE(890)] = 20514, + [SMALL_STATE(891)] = 20567, + [SMALL_STATE(892)] = 20612, + [SMALL_STATE(893)] = 20657, + [SMALL_STATE(894)] = 20702, + [SMALL_STATE(895)] = 20747, + [SMALL_STATE(896)] = 20792, + [SMALL_STATE(897)] = 20837, + [SMALL_STATE(898)] = 20882, + [SMALL_STATE(899)] = 20927, + [SMALL_STATE(900)] = 20972, + [SMALL_STATE(901)] = 21017, + [SMALL_STATE(902)] = 21062, + [SMALL_STATE(903)] = 21107, + [SMALL_STATE(904)] = 21152, + [SMALL_STATE(905)] = 21197, + [SMALL_STATE(906)] = 21242, + [SMALL_STATE(907)] = 21287, + [SMALL_STATE(908)] = 21332, + [SMALL_STATE(909)] = 21377, + [SMALL_STATE(910)] = 21422, + [SMALL_STATE(911)] = 21467, + [SMALL_STATE(912)] = 21512, + [SMALL_STATE(913)] = 21557, + [SMALL_STATE(914)] = 21610, + [SMALL_STATE(915)] = 21661, + [SMALL_STATE(916)] = 21706, + [SMALL_STATE(917)] = 21751, + [SMALL_STATE(918)] = 21796, + [SMALL_STATE(919)] = 21841, + [SMALL_STATE(920)] = 21886, + [SMALL_STATE(921)] = 21931, + [SMALL_STATE(922)] = 21976, + [SMALL_STATE(923)] = 22021, + [SMALL_STATE(924)] = 22066, + [SMALL_STATE(925)] = 22111, + [SMALL_STATE(926)] = 22156, + [SMALL_STATE(927)] = 22201, + [SMALL_STATE(928)] = 22246, + [SMALL_STATE(929)] = 22291, + [SMALL_STATE(930)] = 22336, + [SMALL_STATE(931)] = 22381, + [SMALL_STATE(932)] = 22426, + [SMALL_STATE(933)] = 22473, + [SMALL_STATE(934)] = 22517, + [SMALL_STATE(935)] = 22561, + [SMALL_STATE(936)] = 22605, + [SMALL_STATE(937)] = 22649, + [SMALL_STATE(938)] = 22693, + [SMALL_STATE(939)] = 22737, + [SMALL_STATE(940)] = 22781, + [SMALL_STATE(941)] = 22825, + [SMALL_STATE(942)] = 22869, + [SMALL_STATE(943)] = 22913, + [SMALL_STATE(944)] = 22957, + [SMALL_STATE(945)] = 23001, + [SMALL_STATE(946)] = 23045, + [SMALL_STATE(947)] = 23089, + [SMALL_STATE(948)] = 23133, + [SMALL_STATE(949)] = 23177, + [SMALL_STATE(950)] = 23221, + [SMALL_STATE(951)] = 23265, + [SMALL_STATE(952)] = 23309, + [SMALL_STATE(953)] = 23353, + [SMALL_STATE(954)] = 23397, + [SMALL_STATE(955)] = 23443, + [SMALL_STATE(956)] = 23487, + [SMALL_STATE(957)] = 23531, + [SMALL_STATE(958)] = 23575, + [SMALL_STATE(959)] = 23619, + [SMALL_STATE(960)] = 23663, + [SMALL_STATE(961)] = 23707, + [SMALL_STATE(962)] = 23751, + [SMALL_STATE(963)] = 23795, + [SMALL_STATE(964)] = 23839, + [SMALL_STATE(965)] = 23883, + [SMALL_STATE(966)] = 23927, + [SMALL_STATE(967)] = 23971, + [SMALL_STATE(968)] = 24015, + [SMALL_STATE(969)] = 24059, + [SMALL_STATE(970)] = 24103, + [SMALL_STATE(971)] = 24147, + [SMALL_STATE(972)] = 24191, + [SMALL_STATE(973)] = 24235, + [SMALL_STATE(974)] = 24279, + [SMALL_STATE(975)] = 24323, + [SMALL_STATE(976)] = 24367, + [SMALL_STATE(977)] = 24411, + [SMALL_STATE(978)] = 24455, + [SMALL_STATE(979)] = 24499, + [SMALL_STATE(980)] = 24543, + [SMALL_STATE(981)] = 24593, + [SMALL_STATE(982)] = 24637, + [SMALL_STATE(983)] = 24681, + [SMALL_STATE(984)] = 24725, + [SMALL_STATE(985)] = 24768, + [SMALL_STATE(986)] = 24813, + [SMALL_STATE(987)] = 24856, + [SMALL_STATE(988)] = 24899, + [SMALL_STATE(989)] = 24942, + [SMALL_STATE(990)] = 24985, + [SMALL_STATE(991)] = 25028, + [SMALL_STATE(992)] = 25071, + [SMALL_STATE(993)] = 25114, + [SMALL_STATE(994)] = 25157, + [SMALL_STATE(995)] = 25200, + [SMALL_STATE(996)] = 25243, + [SMALL_STATE(997)] = 25286, + [SMALL_STATE(998)] = 25329, + [SMALL_STATE(999)] = 25372, + [SMALL_STATE(1000)] = 25415, + [SMALL_STATE(1001)] = 25458, + [SMALL_STATE(1002)] = 25501, + [SMALL_STATE(1003)] = 25544, + [SMALL_STATE(1004)] = 25587, + [SMALL_STATE(1005)] = 25630, + [SMALL_STATE(1006)] = 25673, + [SMALL_STATE(1007)] = 25716, + [SMALL_STATE(1008)] = 25759, + [SMALL_STATE(1009)] = 25802, + [SMALL_STATE(1010)] = 25845, + [SMALL_STATE(1011)] = 25888, + [SMALL_STATE(1012)] = 25931, + [SMALL_STATE(1013)] = 25974, + [SMALL_STATE(1014)] = 26017, + [SMALL_STATE(1015)] = 26060, + [SMALL_STATE(1016)] = 26109, + [SMALL_STATE(1017)] = 26152, + [SMALL_STATE(1018)] = 26195, + [SMALL_STATE(1019)] = 26238, + [SMALL_STATE(1020)] = 26281, + [SMALL_STATE(1021)] = 26324, + [SMALL_STATE(1022)] = 26367, + [SMALL_STATE(1023)] = 26410, + [SMALL_STATE(1024)] = 26453, + [SMALL_STATE(1025)] = 26496, + [SMALL_STATE(1026)] = 26539, + [SMALL_STATE(1027)] = 26582, + [SMALL_STATE(1028)] = 26625, + [SMALL_STATE(1029)] = 26668, + [SMALL_STATE(1030)] = 26711, + [SMALL_STATE(1031)] = 26754, + [SMALL_STATE(1032)] = 26797, + [SMALL_STATE(1033)] = 26840, + [SMALL_STATE(1034)] = 26883, + [SMALL_STATE(1035)] = 26926, + [SMALL_STATE(1036)] = 26968, + [SMALL_STATE(1037)] = 27010, + [SMALL_STATE(1038)] = 27054, + [SMALL_STATE(1039)] = 27096, + [SMALL_STATE(1040)] = 27138, + [SMALL_STATE(1041)] = 27180, + [SMALL_STATE(1042)] = 27222, + [SMALL_STATE(1043)] = 27264, + [SMALL_STATE(1044)] = 27306, + [SMALL_STATE(1045)] = 27348, + [SMALL_STATE(1046)] = 27390, + [SMALL_STATE(1047)] = 27432, + [SMALL_STATE(1048)] = 27474, + [SMALL_STATE(1049)] = 27516, + [SMALL_STATE(1050)] = 27558, + [SMALL_STATE(1051)] = 27600, + [SMALL_STATE(1052)] = 27642, + [SMALL_STATE(1053)] = 27684, + [SMALL_STATE(1054)] = 27726, + [SMALL_STATE(1055)] = 27768, + [SMALL_STATE(1056)] = 27810, + [SMALL_STATE(1057)] = 27852, + [SMALL_STATE(1058)] = 27894, + [SMALL_STATE(1059)] = 27936, + [SMALL_STATE(1060)] = 27978, + [SMALL_STATE(1061)] = 28020, + [SMALL_STATE(1062)] = 28062, + [SMALL_STATE(1063)] = 28104, + [SMALL_STATE(1064)] = 28146, + [SMALL_STATE(1065)] = 28188, + [SMALL_STATE(1066)] = 28230, + [SMALL_STATE(1067)] = 28272, + [SMALL_STATE(1068)] = 28314, + [SMALL_STATE(1069)] = 28356, + [SMALL_STATE(1070)] = 28398, + [SMALL_STATE(1071)] = 28440, + [SMALL_STATE(1072)] = 28482, + [SMALL_STATE(1073)] = 28524, + [SMALL_STATE(1074)] = 28566, + [SMALL_STATE(1075)] = 28608, + [SMALL_STATE(1076)] = 28650, + [SMALL_STATE(1077)] = 28692, + [SMALL_STATE(1078)] = 28734, + [SMALL_STATE(1079)] = 28776, + [SMALL_STATE(1080)] = 28818, + [SMALL_STATE(1081)] = 28860, + [SMALL_STATE(1082)] = 28902, + [SMALL_STATE(1083)] = 28944, + [SMALL_STATE(1084)] = 28986, + [SMALL_STATE(1085)] = 29028, + [SMALL_STATE(1086)] = 29069, + [SMALL_STATE(1087)] = 29110, + [SMALL_STATE(1088)] = 29151, + [SMALL_STATE(1089)] = 29192, + [SMALL_STATE(1090)] = 29233, + [SMALL_STATE(1091)] = 29274, + [SMALL_STATE(1092)] = 29315, + [SMALL_STATE(1093)] = 29356, + [SMALL_STATE(1094)] = 29397, + [SMALL_STATE(1095)] = 29438, + [SMALL_STATE(1096)] = 29479, + [SMALL_STATE(1097)] = 29520, + [SMALL_STATE(1098)] = 29561, + [SMALL_STATE(1099)] = 29602, + [SMALL_STATE(1100)] = 29643, + [SMALL_STATE(1101)] = 29684, + [SMALL_STATE(1102)] = 29725, + [SMALL_STATE(1103)] = 29766, + [SMALL_STATE(1104)] = 29807, + [SMALL_STATE(1105)] = 29848, + [SMALL_STATE(1106)] = 29889, + [SMALL_STATE(1107)] = 29930, + [SMALL_STATE(1108)] = 29971, + [SMALL_STATE(1109)] = 30012, + [SMALL_STATE(1110)] = 30053, + [SMALL_STATE(1111)] = 30094, + [SMALL_STATE(1112)] = 30135, + [SMALL_STATE(1113)] = 30176, + [SMALL_STATE(1114)] = 30217, + [SMALL_STATE(1115)] = 30258, + [SMALL_STATE(1116)] = 30299, + [SMALL_STATE(1117)] = 30340, + [SMALL_STATE(1118)] = 30381, + [SMALL_STATE(1119)] = 30422, + [SMALL_STATE(1120)] = 30463, + [SMALL_STATE(1121)] = 30504, + [SMALL_STATE(1122)] = 30545, + [SMALL_STATE(1123)] = 30586, + [SMALL_STATE(1124)] = 30627, + [SMALL_STATE(1125)] = 30668, + [SMALL_STATE(1126)] = 30709, + [SMALL_STATE(1127)] = 30750, + [SMALL_STATE(1128)] = 30791, + [SMALL_STATE(1129)] = 30834, + [SMALL_STATE(1130)] = 30875, + [SMALL_STATE(1131)] = 30916, + [SMALL_STATE(1132)] = 30957, + [SMALL_STATE(1133)] = 30998, + [SMALL_STATE(1134)] = 31039, + [SMALL_STATE(1135)] = 31080, + [SMALL_STATE(1136)] = 31097, + [SMALL_STATE(1137)] = 31114, + [SMALL_STATE(1138)] = 31134, + [SMALL_STATE(1139)] = 31154, + [SMALL_STATE(1140)] = 31174, + [SMALL_STATE(1141)] = 31194, + [SMALL_STATE(1142)] = 31214, + [SMALL_STATE(1143)] = 31234, + [SMALL_STATE(1144)] = 31254, + [SMALL_STATE(1145)] = 31274, + [SMALL_STATE(1146)] = 31294, + [SMALL_STATE(1147)] = 31314, + [SMALL_STATE(1148)] = 31334, + [SMALL_STATE(1149)] = 31354, + [SMALL_STATE(1150)] = 31374, + [SMALL_STATE(1151)] = 31391, + [SMALL_STATE(1152)] = 31408, + [SMALL_STATE(1153)] = 31425, + [SMALL_STATE(1154)] = 31442, + [SMALL_STATE(1155)] = 31459, + [SMALL_STATE(1156)] = 31476, + [SMALL_STATE(1157)] = 31493, + [SMALL_STATE(1158)] = 31510, + [SMALL_STATE(1159)] = 31527, + [SMALL_STATE(1160)] = 31544, + [SMALL_STATE(1161)] = 31561, + [SMALL_STATE(1162)] = 31578, + [SMALL_STATE(1163)] = 31595, + [SMALL_STATE(1164)] = 31612, + [SMALL_STATE(1165)] = 31629, + [SMALL_STATE(1166)] = 31646, + [SMALL_STATE(1167)] = 31663, + [SMALL_STATE(1168)] = 31680, + [SMALL_STATE(1169)] = 31697, + [SMALL_STATE(1170)] = 31714, + [SMALL_STATE(1171)] = 31731, + [SMALL_STATE(1172)] = 31748, + [SMALL_STATE(1173)] = 31765, + [SMALL_STATE(1174)] = 31782, + [SMALL_STATE(1175)] = 31799, + [SMALL_STATE(1176)] = 31816, + [SMALL_STATE(1177)] = 31833, + [SMALL_STATE(1178)] = 31850, + [SMALL_STATE(1179)] = 31867, + [SMALL_STATE(1180)] = 31884, + [SMALL_STATE(1181)] = 31901, + [SMALL_STATE(1182)] = 31918, + [SMALL_STATE(1183)] = 31935, + [SMALL_STATE(1184)] = 31952, + [SMALL_STATE(1185)] = 31969, + [SMALL_STATE(1186)] = 31986, + [SMALL_STATE(1187)] = 32003, + [SMALL_STATE(1188)] = 32020, + [SMALL_STATE(1189)] = 32037, + [SMALL_STATE(1190)] = 32054, + [SMALL_STATE(1191)] = 32071, + [SMALL_STATE(1192)] = 32088, + [SMALL_STATE(1193)] = 32105, + [SMALL_STATE(1194)] = 32118, + [SMALL_STATE(1195)] = 32135, + [SMALL_STATE(1196)] = 32152, + [SMALL_STATE(1197)] = 32169, + [SMALL_STATE(1198)] = 32186, + [SMALL_STATE(1199)] = 32203, + [SMALL_STATE(1200)] = 32220, + [SMALL_STATE(1201)] = 32237, + [SMALL_STATE(1202)] = 32254, + [SMALL_STATE(1203)] = 32271, + [SMALL_STATE(1204)] = 32288, + [SMALL_STATE(1205)] = 32305, + [SMALL_STATE(1206)] = 32322, + [SMALL_STATE(1207)] = 32339, + [SMALL_STATE(1208)] = 32356, + [SMALL_STATE(1209)] = 32373, + [SMALL_STATE(1210)] = 32390, + [SMALL_STATE(1211)] = 32407, + [SMALL_STATE(1212)] = 32424, + [SMALL_STATE(1213)] = 32441, + [SMALL_STATE(1214)] = 32458, + [SMALL_STATE(1215)] = 32475, + [SMALL_STATE(1216)] = 32492, + [SMALL_STATE(1217)] = 32509, + [SMALL_STATE(1218)] = 32526, + [SMALL_STATE(1219)] = 32543, + [SMALL_STATE(1220)] = 32560, + [SMALL_STATE(1221)] = 32577, + [SMALL_STATE(1222)] = 32594, + [SMALL_STATE(1223)] = 32611, + [SMALL_STATE(1224)] = 32628, + [SMALL_STATE(1225)] = 32645, + [SMALL_STATE(1226)] = 32662, + [SMALL_STATE(1227)] = 32679, + [SMALL_STATE(1228)] = 32696, + [SMALL_STATE(1229)] = 32713, + [SMALL_STATE(1230)] = 32730, + [SMALL_STATE(1231)] = 32747, + [SMALL_STATE(1232)] = 32764, + [SMALL_STATE(1233)] = 32781, + [SMALL_STATE(1234)] = 32798, + [SMALL_STATE(1235)] = 32815, + [SMALL_STATE(1236)] = 32832, + [SMALL_STATE(1237)] = 32849, + [SMALL_STATE(1238)] = 32866, + [SMALL_STATE(1239)] = 32883, + [SMALL_STATE(1240)] = 32900, + [SMALL_STATE(1241)] = 32917, + [SMALL_STATE(1242)] = 32934, + [SMALL_STATE(1243)] = 32951, + [SMALL_STATE(1244)] = 32968, + [SMALL_STATE(1245)] = 32985, + [SMALL_STATE(1246)] = 33002, + [SMALL_STATE(1247)] = 33019, + [SMALL_STATE(1248)] = 33036, + [SMALL_STATE(1249)] = 33053, + [SMALL_STATE(1250)] = 33070, + [SMALL_STATE(1251)] = 33087, + [SMALL_STATE(1252)] = 33104, + [SMALL_STATE(1253)] = 33121, + [SMALL_STATE(1254)] = 33138, + [SMALL_STATE(1255)] = 33155, + [SMALL_STATE(1256)] = 33172, + [SMALL_STATE(1257)] = 33189, + [SMALL_STATE(1258)] = 33204, + [SMALL_STATE(1259)] = 33221, + [SMALL_STATE(1260)] = 33238, + [SMALL_STATE(1261)] = 33255, + [SMALL_STATE(1262)] = 33269, + [SMALL_STATE(1263)] = 33283, + [SMALL_STATE(1264)] = 33297, + [SMALL_STATE(1265)] = 33307, + [SMALL_STATE(1266)] = 33321, + [SMALL_STATE(1267)] = 33335, + [SMALL_STATE(1268)] = 33349, + [SMALL_STATE(1269)] = 33363, + [SMALL_STATE(1270)] = 33377, + [SMALL_STATE(1271)] = 33391, + [SMALL_STATE(1272)] = 33405, + [SMALL_STATE(1273)] = 33419, + [SMALL_STATE(1274)] = 33429, + [SMALL_STATE(1275)] = 33443, + [SMALL_STATE(1276)] = 33457, + [SMALL_STATE(1277)] = 33471, + [SMALL_STATE(1278)] = 33485, + [SMALL_STATE(1279)] = 33499, + [SMALL_STATE(1280)] = 33513, + [SMALL_STATE(1281)] = 33527, + [SMALL_STATE(1282)] = 33541, + [SMALL_STATE(1283)] = 33555, + [SMALL_STATE(1284)] = 33569, + [SMALL_STATE(1285)] = 33583, + [SMALL_STATE(1286)] = 33597, + [SMALL_STATE(1287)] = 33611, + [SMALL_STATE(1288)] = 33625, + [SMALL_STATE(1289)] = 33639, + [SMALL_STATE(1290)] = 33653, + [SMALL_STATE(1291)] = 33667, + [SMALL_STATE(1292)] = 33681, + [SMALL_STATE(1293)] = 33695, + [SMALL_STATE(1294)] = 33709, + [SMALL_STATE(1295)] = 33723, + [SMALL_STATE(1296)] = 33737, + [SMALL_STATE(1297)] = 33751, + [SMALL_STATE(1298)] = 33765, + [SMALL_STATE(1299)] = 33779, + [SMALL_STATE(1300)] = 33793, + [SMALL_STATE(1301)] = 33807, + [SMALL_STATE(1302)] = 33821, + [SMALL_STATE(1303)] = 33835, + [SMALL_STATE(1304)] = 33849, + [SMALL_STATE(1305)] = 33863, + [SMALL_STATE(1306)] = 33877, + [SMALL_STATE(1307)] = 33891, + [SMALL_STATE(1308)] = 33905, + [SMALL_STATE(1309)] = 33919, + [SMALL_STATE(1310)] = 33933, + [SMALL_STATE(1311)] = 33947, + [SMALL_STATE(1312)] = 33961, + [SMALL_STATE(1313)] = 33975, + [SMALL_STATE(1314)] = 33989, + [SMALL_STATE(1315)] = 34003, + [SMALL_STATE(1316)] = 34017, + [SMALL_STATE(1317)] = 34031, + [SMALL_STATE(1318)] = 34045, + [SMALL_STATE(1319)] = 34059, + [SMALL_STATE(1320)] = 34073, + [SMALL_STATE(1321)] = 34087, + [SMALL_STATE(1322)] = 34101, + [SMALL_STATE(1323)] = 34115, + [SMALL_STATE(1324)] = 34129, + [SMALL_STATE(1325)] = 34143, + [SMALL_STATE(1326)] = 34157, + [SMALL_STATE(1327)] = 34168, + [SMALL_STATE(1328)] = 34179, + [SMALL_STATE(1329)] = 34190, + [SMALL_STATE(1330)] = 34201, + [SMALL_STATE(1331)] = 34212, + [SMALL_STATE(1332)] = 34223, + [SMALL_STATE(1333)] = 34234, + [SMALL_STATE(1334)] = 34245, + [SMALL_STATE(1335)] = 34256, + [SMALL_STATE(1336)] = 34267, + [SMALL_STATE(1337)] = 34278, + [SMALL_STATE(1338)] = 34289, + [SMALL_STATE(1339)] = 34300, + [SMALL_STATE(1340)] = 34311, + [SMALL_STATE(1341)] = 34322, + [SMALL_STATE(1342)] = 34333, + [SMALL_STATE(1343)] = 34344, + [SMALL_STATE(1344)] = 34355, + [SMALL_STATE(1345)] = 34366, + [SMALL_STATE(1346)] = 34377, + [SMALL_STATE(1347)] = 34388, + [SMALL_STATE(1348)] = 34399, + [SMALL_STATE(1349)] = 34410, + [SMALL_STATE(1350)] = 34421, + [SMALL_STATE(1351)] = 34432, + [SMALL_STATE(1352)] = 34443, + [SMALL_STATE(1353)] = 34454, + [SMALL_STATE(1354)] = 34465, + [SMALL_STATE(1355)] = 34476, + [SMALL_STATE(1356)] = 34487, + [SMALL_STATE(1357)] = 34498, + [SMALL_STATE(1358)] = 34509, + [SMALL_STATE(1359)] = 34520, + [SMALL_STATE(1360)] = 34531, + [SMALL_STATE(1361)] = 34542, + [SMALL_STATE(1362)] = 34553, + [SMALL_STATE(1363)] = 34564, + [SMALL_STATE(1364)] = 34575, + [SMALL_STATE(1365)] = 34586, + [SMALL_STATE(1366)] = 34597, + [SMALL_STATE(1367)] = 34608, + [SMALL_STATE(1368)] = 34619, + [SMALL_STATE(1369)] = 34630, + [SMALL_STATE(1370)] = 34641, + [SMALL_STATE(1371)] = 34652, + [SMALL_STATE(1372)] = 34663, + [SMALL_STATE(1373)] = 34674, + [SMALL_STATE(1374)] = 34685, + [SMALL_STATE(1375)] = 34696, + [SMALL_STATE(1376)] = 34707, + [SMALL_STATE(1377)] = 34718, + [SMALL_STATE(1378)] = 34729, + [SMALL_STATE(1379)] = 34740, + [SMALL_STATE(1380)] = 34751, + [SMALL_STATE(1381)] = 34762, + [SMALL_STATE(1382)] = 34773, + [SMALL_STATE(1383)] = 34784, + [SMALL_STATE(1384)] = 34795, + [SMALL_STATE(1385)] = 34806, + [SMALL_STATE(1386)] = 34817, + [SMALL_STATE(1387)] = 34828, + [SMALL_STATE(1388)] = 34839, + [SMALL_STATE(1389)] = 34850, + [SMALL_STATE(1390)] = 34861, + [SMALL_STATE(1391)] = 34872, + [SMALL_STATE(1392)] = 34883, + [SMALL_STATE(1393)] = 34894, + [SMALL_STATE(1394)] = 34905, + [SMALL_STATE(1395)] = 34916, + [SMALL_STATE(1396)] = 34927, + [SMALL_STATE(1397)] = 34938, + [SMALL_STATE(1398)] = 34949, + [SMALL_STATE(1399)] = 34960, + [SMALL_STATE(1400)] = 34971, + [SMALL_STATE(1401)] = 34982, + [SMALL_STATE(1402)] = 34993, + [SMALL_STATE(1403)] = 35004, + [SMALL_STATE(1404)] = 35015, + [SMALL_STATE(1405)] = 35026, + [SMALL_STATE(1406)] = 35037, + [SMALL_STATE(1407)] = 35048, + [SMALL_STATE(1408)] = 35059, + [SMALL_STATE(1409)] = 35070, + [SMALL_STATE(1410)] = 35081, + [SMALL_STATE(1411)] = 35092, + [SMALL_STATE(1412)] = 35103, + [SMALL_STATE(1413)] = 35114, + [SMALL_STATE(1414)] = 35125, + [SMALL_STATE(1415)] = 35136, + [SMALL_STATE(1416)] = 35145, + [SMALL_STATE(1417)] = 35156, + [SMALL_STATE(1418)] = 35167, + [SMALL_STATE(1419)] = 35178, + [SMALL_STATE(1420)] = 35189, + [SMALL_STATE(1421)] = 35200, + [SMALL_STATE(1422)] = 35211, + [SMALL_STATE(1423)] = 35222, + [SMALL_STATE(1424)] = 35233, + [SMALL_STATE(1425)] = 35244, + [SMALL_STATE(1426)] = 35255, + [SMALL_STATE(1427)] = 35266, + [SMALL_STATE(1428)] = 35277, + [SMALL_STATE(1429)] = 35288, + [SMALL_STATE(1430)] = 35299, + [SMALL_STATE(1431)] = 35310, + [SMALL_STATE(1432)] = 35321, + [SMALL_STATE(1433)] = 35332, + [SMALL_STATE(1434)] = 35343, + [SMALL_STATE(1435)] = 35354, + [SMALL_STATE(1436)] = 35365, + [SMALL_STATE(1437)] = 35376, + [SMALL_STATE(1438)] = 35387, + [SMALL_STATE(1439)] = 35398, + [SMALL_STATE(1440)] = 35409, + [SMALL_STATE(1441)] = 35420, + [SMALL_STATE(1442)] = 35431, + [SMALL_STATE(1443)] = 35442, + [SMALL_STATE(1444)] = 35453, + [SMALL_STATE(1445)] = 35464, + [SMALL_STATE(1446)] = 35475, + [SMALL_STATE(1447)] = 35486, + [SMALL_STATE(1448)] = 35497, + [SMALL_STATE(1449)] = 35508, + [SMALL_STATE(1450)] = 35519, + [SMALL_STATE(1451)] = 35530, + [SMALL_STATE(1452)] = 35541, + [SMALL_STATE(1453)] = 35552, + [SMALL_STATE(1454)] = 35563, + [SMALL_STATE(1455)] = 35574, + [SMALL_STATE(1456)] = 35585, + [SMALL_STATE(1457)] = 35596, + [SMALL_STATE(1458)] = 35607, + [SMALL_STATE(1459)] = 35618, + [SMALL_STATE(1460)] = 35629, + [SMALL_STATE(1461)] = 35640, + [SMALL_STATE(1462)] = 35651, + [SMALL_STATE(1463)] = 35662, + [SMALL_STATE(1464)] = 35673, + [SMALL_STATE(1465)] = 35684, + [SMALL_STATE(1466)] = 35695, + [SMALL_STATE(1467)] = 35706, + [SMALL_STATE(1468)] = 35717, + [SMALL_STATE(1469)] = 35728, + [SMALL_STATE(1470)] = 35739, + [SMALL_STATE(1471)] = 35750, + [SMALL_STATE(1472)] = 35761, + [SMALL_STATE(1473)] = 35772, + [SMALL_STATE(1474)] = 35783, + [SMALL_STATE(1475)] = 35794, + [SMALL_STATE(1476)] = 35805, + [SMALL_STATE(1477)] = 35816, + [SMALL_STATE(1478)] = 35827, + [SMALL_STATE(1479)] = 35838, + [SMALL_STATE(1480)] = 35849, + [SMALL_STATE(1481)] = 35860, + [SMALL_STATE(1482)] = 35871, + [SMALL_STATE(1483)] = 35882, + [SMALL_STATE(1484)] = 35893, + [SMALL_STATE(1485)] = 35904, + [SMALL_STATE(1486)] = 35915, + [SMALL_STATE(1487)] = 35926, + [SMALL_STATE(1488)] = 35937, + [SMALL_STATE(1489)] = 35948, + [SMALL_STATE(1490)] = 35959, + [SMALL_STATE(1491)] = 35970, + [SMALL_STATE(1492)] = 35981, + [SMALL_STATE(1493)] = 35992, + [SMALL_STATE(1494)] = 36003, + [SMALL_STATE(1495)] = 36014, + [SMALL_STATE(1496)] = 36025, + [SMALL_STATE(1497)] = 36036, + [SMALL_STATE(1498)] = 36047, + [SMALL_STATE(1499)] = 36058, + [SMALL_STATE(1500)] = 36069, + [SMALL_STATE(1501)] = 36080, + [SMALL_STATE(1502)] = 36091, + [SMALL_STATE(1503)] = 36102, + [SMALL_STATE(1504)] = 36113, + [SMALL_STATE(1505)] = 36124, + [SMALL_STATE(1506)] = 36135, + [SMALL_STATE(1507)] = 36146, + [SMALL_STATE(1508)] = 36157, + [SMALL_STATE(1509)] = 36168, + [SMALL_STATE(1510)] = 36179, + [SMALL_STATE(1511)] = 36190, + [SMALL_STATE(1512)] = 36201, + [SMALL_STATE(1513)] = 36212, + [SMALL_STATE(1514)] = 36223, + [SMALL_STATE(1515)] = 36234, + [SMALL_STATE(1516)] = 36245, + [SMALL_STATE(1517)] = 36256, + [SMALL_STATE(1518)] = 36267, + [SMALL_STATE(1519)] = 36278, + [SMALL_STATE(1520)] = 36289, + [SMALL_STATE(1521)] = 36300, + [SMALL_STATE(1522)] = 36311, + [SMALL_STATE(1523)] = 36322, + [SMALL_STATE(1524)] = 36333, + [SMALL_STATE(1525)] = 36344, + [SMALL_STATE(1526)] = 36355, + [SMALL_STATE(1527)] = 36366, + [SMALL_STATE(1528)] = 36377, + [SMALL_STATE(1529)] = 36388, + [SMALL_STATE(1530)] = 36399, + [SMALL_STATE(1531)] = 36410, + [SMALL_STATE(1532)] = 36421, + [SMALL_STATE(1533)] = 36432, + [SMALL_STATE(1534)] = 36443, + [SMALL_STATE(1535)] = 36454, + [SMALL_STATE(1536)] = 36465, + [SMALL_STATE(1537)] = 36476, + [SMALL_STATE(1538)] = 36487, + [SMALL_STATE(1539)] = 36498, + [SMALL_STATE(1540)] = 36509, + [SMALL_STATE(1541)] = 36520, + [SMALL_STATE(1542)] = 36531, + [SMALL_STATE(1543)] = 36542, + [SMALL_STATE(1544)] = 36553, + [SMALL_STATE(1545)] = 36564, + [SMALL_STATE(1546)] = 36575, + [SMALL_STATE(1547)] = 36586, + [SMALL_STATE(1548)] = 36597, + [SMALL_STATE(1549)] = 36608, + [SMALL_STATE(1550)] = 36619, + [SMALL_STATE(1551)] = 36630, + [SMALL_STATE(1552)] = 36641, + [SMALL_STATE(1553)] = 36652, + [SMALL_STATE(1554)] = 36663, + [SMALL_STATE(1555)] = 36674, + [SMALL_STATE(1556)] = 36685, + [SMALL_STATE(1557)] = 36696, + [SMALL_STATE(1558)] = 36707, + [SMALL_STATE(1559)] = 36718, + [SMALL_STATE(1560)] = 36729, + [SMALL_STATE(1561)] = 36740, + [SMALL_STATE(1562)] = 36751, + [SMALL_STATE(1563)] = 36762, + [SMALL_STATE(1564)] = 36773, + [SMALL_STATE(1565)] = 36784, + [SMALL_STATE(1566)] = 36795, + [SMALL_STATE(1567)] = 36806, + [SMALL_STATE(1568)] = 36817, + [SMALL_STATE(1569)] = 36828, + [SMALL_STATE(1570)] = 36839, + [SMALL_STATE(1571)] = 36850, + [SMALL_STATE(1572)] = 36861, + [SMALL_STATE(1573)] = 36872, + [SMALL_STATE(1574)] = 36883, + [SMALL_STATE(1575)] = 36894, + [SMALL_STATE(1576)] = 36905, + [SMALL_STATE(1577)] = 36916, + [SMALL_STATE(1578)] = 36927, + [SMALL_STATE(1579)] = 36938, + [SMALL_STATE(1580)] = 36949, + [SMALL_STATE(1581)] = 36960, + [SMALL_STATE(1582)] = 36971, + [SMALL_STATE(1583)] = 36982, + [SMALL_STATE(1584)] = 36993, + [SMALL_STATE(1585)] = 37004, + [SMALL_STATE(1586)] = 37015, + [SMALL_STATE(1587)] = 37026, + [SMALL_STATE(1588)] = 37037, + [SMALL_STATE(1589)] = 37048, + [SMALL_STATE(1590)] = 37059, + [SMALL_STATE(1591)] = 37070, + [SMALL_STATE(1592)] = 37081, + [SMALL_STATE(1593)] = 37092, + [SMALL_STATE(1594)] = 37103, + [SMALL_STATE(1595)] = 37114, + [SMALL_STATE(1596)] = 37125, + [SMALL_STATE(1597)] = 37136, + [SMALL_STATE(1598)] = 37147, + [SMALL_STATE(1599)] = 37158, + [SMALL_STATE(1600)] = 37169, + [SMALL_STATE(1601)] = 37180, + [SMALL_STATE(1602)] = 37191, + [SMALL_STATE(1603)] = 37202, + [SMALL_STATE(1604)] = 37213, + [SMALL_STATE(1605)] = 37224, + [SMALL_STATE(1606)] = 37235, + [SMALL_STATE(1607)] = 37246, + [SMALL_STATE(1608)] = 37257, + [SMALL_STATE(1609)] = 37268, + [SMALL_STATE(1610)] = 37279, + [SMALL_STATE(1611)] = 37290, + [SMALL_STATE(1612)] = 37301, + [SMALL_STATE(1613)] = 37312, + [SMALL_STATE(1614)] = 37323, + [SMALL_STATE(1615)] = 37334, + [SMALL_STATE(1616)] = 37345, + [SMALL_STATE(1617)] = 37356, + [SMALL_STATE(1618)] = 37367, + [SMALL_STATE(1619)] = 37378, + [SMALL_STATE(1620)] = 37389, + [SMALL_STATE(1621)] = 37400, + [SMALL_STATE(1622)] = 37411, + [SMALL_STATE(1623)] = 37422, + [SMALL_STATE(1624)] = 37433, + [SMALL_STATE(1625)] = 37444, + [SMALL_STATE(1626)] = 37455, + [SMALL_STATE(1627)] = 37466, + [SMALL_STATE(1628)] = 37477, + [SMALL_STATE(1629)] = 37488, + [SMALL_STATE(1630)] = 37499, + [SMALL_STATE(1631)] = 37510, + [SMALL_STATE(1632)] = 37521, + [SMALL_STATE(1633)] = 37532, + [SMALL_STATE(1634)] = 37543, + [SMALL_STATE(1635)] = 37554, + [SMALL_STATE(1636)] = 37565, + [SMALL_STATE(1637)] = 37576, + [SMALL_STATE(1638)] = 37587, + [SMALL_STATE(1639)] = 37598, + [SMALL_STATE(1640)] = 37609, + [SMALL_STATE(1641)] = 37620, + [SMALL_STATE(1642)] = 37631, + [SMALL_STATE(1643)] = 37642, + [SMALL_STATE(1644)] = 37653, + [SMALL_STATE(1645)] = 37664, + [SMALL_STATE(1646)] = 37675, + [SMALL_STATE(1647)] = 37686, + [SMALL_STATE(1648)] = 37697, + [SMALL_STATE(1649)] = 37708, + [SMALL_STATE(1650)] = 37719, + [SMALL_STATE(1651)] = 37730, + [SMALL_STATE(1652)] = 37741, + [SMALL_STATE(1653)] = 37752, + [SMALL_STATE(1654)] = 37763, + [SMALL_STATE(1655)] = 37774, + [SMALL_STATE(1656)] = 37785, + [SMALL_STATE(1657)] = 37796, + [SMALL_STATE(1658)] = 37807, + [SMALL_STATE(1659)] = 37818, + [SMALL_STATE(1660)] = 37829, + [SMALL_STATE(1661)] = 37840, + [SMALL_STATE(1662)] = 37851, + [SMALL_STATE(1663)] = 37862, + [SMALL_STATE(1664)] = 37873, + [SMALL_STATE(1665)] = 37884, + [SMALL_STATE(1666)] = 37895, + [SMALL_STATE(1667)] = 37906, + [SMALL_STATE(1668)] = 37917, + [SMALL_STATE(1669)] = 37928, + [SMALL_STATE(1670)] = 37939, + [SMALL_STATE(1671)] = 37950, + [SMALL_STATE(1672)] = 37961, + [SMALL_STATE(1673)] = 37972, + [SMALL_STATE(1674)] = 37983, + [SMALL_STATE(1675)] = 37994, + [SMALL_STATE(1676)] = 38005, + [SMALL_STATE(1677)] = 38016, + [SMALL_STATE(1678)] = 38027, + [SMALL_STATE(1679)] = 38038, + [SMALL_STATE(1680)] = 38049, + [SMALL_STATE(1681)] = 38060, + [SMALL_STATE(1682)] = 38071, + [SMALL_STATE(1683)] = 38082, + [SMALL_STATE(1684)] = 38093, + [SMALL_STATE(1685)] = 38104, + [SMALL_STATE(1686)] = 38115, + [SMALL_STATE(1687)] = 38126, + [SMALL_STATE(1688)] = 38137, + [SMALL_STATE(1689)] = 38148, + [SMALL_STATE(1690)] = 38159, + [SMALL_STATE(1691)] = 38170, + [SMALL_STATE(1692)] = 38181, + [SMALL_STATE(1693)] = 38192, + [SMALL_STATE(1694)] = 38203, + [SMALL_STATE(1695)] = 38214, + [SMALL_STATE(1696)] = 38225, + [SMALL_STATE(1697)] = 38236, + [SMALL_STATE(1698)] = 38247, + [SMALL_STATE(1699)] = 38258, + [SMALL_STATE(1700)] = 38269, + [SMALL_STATE(1701)] = 38280, + [SMALL_STATE(1702)] = 38291, + [SMALL_STATE(1703)] = 38302, + [SMALL_STATE(1704)] = 38313, + [SMALL_STATE(1705)] = 38324, + [SMALL_STATE(1706)] = 38335, + [SMALL_STATE(1707)] = 38346, + [SMALL_STATE(1708)] = 38357, + [SMALL_STATE(1709)] = 38368, + [SMALL_STATE(1710)] = 38379, + [SMALL_STATE(1711)] = 38390, + [SMALL_STATE(1712)] = 38401, + [SMALL_STATE(1713)] = 38412, + [SMALL_STATE(1714)] = 38423, + [SMALL_STATE(1715)] = 38434, + [SMALL_STATE(1716)] = 38445, + [SMALL_STATE(1717)] = 38456, + [SMALL_STATE(1718)] = 38467, + [SMALL_STATE(1719)] = 38478, + [SMALL_STATE(1720)] = 38486, + [SMALL_STATE(1721)] = 38494, + [SMALL_STATE(1722)] = 38502, + [SMALL_STATE(1723)] = 38510, + [SMALL_STATE(1724)] = 38518, + [SMALL_STATE(1725)] = 38526, + [SMALL_STATE(1726)] = 38534, + [SMALL_STATE(1727)] = 38542, + [SMALL_STATE(1728)] = 38550, + [SMALL_STATE(1729)] = 38558, + [SMALL_STATE(1730)] = 38566, + [SMALL_STATE(1731)] = 38574, + [SMALL_STATE(1732)] = 38582, + [SMALL_STATE(1733)] = 38590, + [SMALL_STATE(1734)] = 38598, + [SMALL_STATE(1735)] = 38606, + [SMALL_STATE(1736)] = 38614, + [SMALL_STATE(1737)] = 38622, + [SMALL_STATE(1738)] = 38630, + [SMALL_STATE(1739)] = 38638, + [SMALL_STATE(1740)] = 38646, + [SMALL_STATE(1741)] = 38654, + [SMALL_STATE(1742)] = 38662, + [SMALL_STATE(1743)] = 38670, + [SMALL_STATE(1744)] = 38678, + [SMALL_STATE(1745)] = 38686, + [SMALL_STATE(1746)] = 38694, + [SMALL_STATE(1747)] = 38702, + [SMALL_STATE(1748)] = 38710, + [SMALL_STATE(1749)] = 38718, + [SMALL_STATE(1750)] = 38726, + [SMALL_STATE(1751)] = 38734, + [SMALL_STATE(1752)] = 38742, + [SMALL_STATE(1753)] = 38750, + [SMALL_STATE(1754)] = 38758, + [SMALL_STATE(1755)] = 38766, + [SMALL_STATE(1756)] = 38774, + [SMALL_STATE(1757)] = 38782, + [SMALL_STATE(1758)] = 38790, + [SMALL_STATE(1759)] = 38798, + [SMALL_STATE(1760)] = 38806, + [SMALL_STATE(1761)] = 38814, + [SMALL_STATE(1762)] = 38822, + [SMALL_STATE(1763)] = 38830, + [SMALL_STATE(1764)] = 38838, + [SMALL_STATE(1765)] = 38846, + [SMALL_STATE(1766)] = 38854, + [SMALL_STATE(1767)] = 38862, + [SMALL_STATE(1768)] = 38870, + [SMALL_STATE(1769)] = 38878, + [SMALL_STATE(1770)] = 38886, + [SMALL_STATE(1771)] = 38894, + [SMALL_STATE(1772)] = 38902, + [SMALL_STATE(1773)] = 38910, + [SMALL_STATE(1774)] = 38918, + [SMALL_STATE(1775)] = 38926, + [SMALL_STATE(1776)] = 38934, + [SMALL_STATE(1777)] = 38942, + [SMALL_STATE(1778)] = 38950, + [SMALL_STATE(1779)] = 38958, + [SMALL_STATE(1780)] = 38966, + [SMALL_STATE(1781)] = 38974, + [SMALL_STATE(1782)] = 38982, + [SMALL_STATE(1783)] = 38990, + [SMALL_STATE(1784)] = 38998, + [SMALL_STATE(1785)] = 39006, + [SMALL_STATE(1786)] = 39014, + [SMALL_STATE(1787)] = 39022, + [SMALL_STATE(1788)] = 39030, + [SMALL_STATE(1789)] = 39038, + [SMALL_STATE(1790)] = 39046, + [SMALL_STATE(1791)] = 39054, + [SMALL_STATE(1792)] = 39062, + [SMALL_STATE(1793)] = 39070, + [SMALL_STATE(1794)] = 39078, + [SMALL_STATE(1795)] = 39086, + [SMALL_STATE(1796)] = 39094, + [SMALL_STATE(1797)] = 39102, + [SMALL_STATE(1798)] = 39110, + [SMALL_STATE(1799)] = 39118, + [SMALL_STATE(1800)] = 39126, + [SMALL_STATE(1801)] = 39134, + [SMALL_STATE(1802)] = 39142, + [SMALL_STATE(1803)] = 39150, + [SMALL_STATE(1804)] = 39158, + [SMALL_STATE(1805)] = 39166, + [SMALL_STATE(1806)] = 39174, + [SMALL_STATE(1807)] = 39182, + [SMALL_STATE(1808)] = 39190, + [SMALL_STATE(1809)] = 39198, + [SMALL_STATE(1810)] = 39206, + [SMALL_STATE(1811)] = 39214, + [SMALL_STATE(1812)] = 39222, + [SMALL_STATE(1813)] = 39230, + [SMALL_STATE(1814)] = 39238, + [SMALL_STATE(1815)] = 39246, + [SMALL_STATE(1816)] = 39254, + [SMALL_STATE(1817)] = 39262, + [SMALL_STATE(1818)] = 39270, + [SMALL_STATE(1819)] = 39278, + [SMALL_STATE(1820)] = 39286, + [SMALL_STATE(1821)] = 39294, + [SMALL_STATE(1822)] = 39302, + [SMALL_STATE(1823)] = 39310, + [SMALL_STATE(1824)] = 39318, + [SMALL_STATE(1825)] = 39326, + [SMALL_STATE(1826)] = 39334, + [SMALL_STATE(1827)] = 39342, + [SMALL_STATE(1828)] = 39350, + [SMALL_STATE(1829)] = 39358, + [SMALL_STATE(1830)] = 39366, + [SMALL_STATE(1831)] = 39374, + [SMALL_STATE(1832)] = 39382, + [SMALL_STATE(1833)] = 39390, + [SMALL_STATE(1834)] = 39398, + [SMALL_STATE(1835)] = 39406, + [SMALL_STATE(1836)] = 39414, + [SMALL_STATE(1837)] = 39422, + [SMALL_STATE(1838)] = 39430, + [SMALL_STATE(1839)] = 39438, + [SMALL_STATE(1840)] = 39446, + [SMALL_STATE(1841)] = 39454, + [SMALL_STATE(1842)] = 39462, + [SMALL_STATE(1843)] = 39470, + [SMALL_STATE(1844)] = 39478, + [SMALL_STATE(1845)] = 39486, + [SMALL_STATE(1846)] = 39494, + [SMALL_STATE(1847)] = 39502, + [SMALL_STATE(1848)] = 39510, + [SMALL_STATE(1849)] = 39518, + [SMALL_STATE(1850)] = 39526, + [SMALL_STATE(1851)] = 39534, + [SMALL_STATE(1852)] = 39542, + [SMALL_STATE(1853)] = 39550, + [SMALL_STATE(1854)] = 39558, + [SMALL_STATE(1855)] = 39566, + [SMALL_STATE(1856)] = 39574, + [SMALL_STATE(1857)] = 39582, + [SMALL_STATE(1858)] = 39590, + [SMALL_STATE(1859)] = 39598, + [SMALL_STATE(1860)] = 39606, + [SMALL_STATE(1861)] = 39614, + [SMALL_STATE(1862)] = 39622, + [SMALL_STATE(1863)] = 39630, + [SMALL_STATE(1864)] = 39638, + [SMALL_STATE(1865)] = 39646, + [SMALL_STATE(1866)] = 39654, + [SMALL_STATE(1867)] = 39662, + [SMALL_STATE(1868)] = 39670, + [SMALL_STATE(1869)] = 39678, + [SMALL_STATE(1870)] = 39686, + [SMALL_STATE(1871)] = 39694, + [SMALL_STATE(1872)] = 39702, + [SMALL_STATE(1873)] = 39710, + [SMALL_STATE(1874)] = 39718, + [SMALL_STATE(1875)] = 39726, + [SMALL_STATE(1876)] = 39734, + [SMALL_STATE(1877)] = 39742, + [SMALL_STATE(1878)] = 39750, + [SMALL_STATE(1879)] = 39758, + [SMALL_STATE(1880)] = 39766, + [SMALL_STATE(1881)] = 39774, + [SMALL_STATE(1882)] = 39782, + [SMALL_STATE(1883)] = 39790, + [SMALL_STATE(1884)] = 39798, + [SMALL_STATE(1885)] = 39806, + [SMALL_STATE(1886)] = 39814, + [SMALL_STATE(1887)] = 39822, + [SMALL_STATE(1888)] = 39830, + [SMALL_STATE(1889)] = 39838, + [SMALL_STATE(1890)] = 39846, + [SMALL_STATE(1891)] = 39854, + [SMALL_STATE(1892)] = 39862, + [SMALL_STATE(1893)] = 39870, + [SMALL_STATE(1894)] = 39878, + [SMALL_STATE(1895)] = 39886, + [SMALL_STATE(1896)] = 39894, + [SMALL_STATE(1897)] = 39902, + [SMALL_STATE(1898)] = 39910, + [SMALL_STATE(1899)] = 39918, + [SMALL_STATE(1900)] = 39926, + [SMALL_STATE(1901)] = 39934, + [SMALL_STATE(1902)] = 39942, + [SMALL_STATE(1903)] = 39950, + [SMALL_STATE(1904)] = 39958, + [SMALL_STATE(1905)] = 39966, + [SMALL_STATE(1906)] = 39974, + [SMALL_STATE(1907)] = 39982, + [SMALL_STATE(1908)] = 39990, + [SMALL_STATE(1909)] = 39998, + [SMALL_STATE(1910)] = 40006, + [SMALL_STATE(1911)] = 40014, + [SMALL_STATE(1912)] = 40022, + [SMALL_STATE(1913)] = 40030, + [SMALL_STATE(1914)] = 40038, + [SMALL_STATE(1915)] = 40046, + [SMALL_STATE(1916)] = 40054, + [SMALL_STATE(1917)] = 40062, + [SMALL_STATE(1918)] = 40070, + [SMALL_STATE(1919)] = 40078, + [SMALL_STATE(1920)] = 40086, + [SMALL_STATE(1921)] = 40094, + [SMALL_STATE(1922)] = 40102, + [SMALL_STATE(1923)] = 40110, + [SMALL_STATE(1924)] = 40118, + [SMALL_STATE(1925)] = 40126, + [SMALL_STATE(1926)] = 40134, + [SMALL_STATE(1927)] = 40142, + [SMALL_STATE(1928)] = 40150, + [SMALL_STATE(1929)] = 40158, + [SMALL_STATE(1930)] = 40166, + [SMALL_STATE(1931)] = 40174, + [SMALL_STATE(1932)] = 40182, + [SMALL_STATE(1933)] = 40190, + [SMALL_STATE(1934)] = 40198, + [SMALL_STATE(1935)] = 40206, + [SMALL_STATE(1936)] = 40214, + [SMALL_STATE(1937)] = 40222, + [SMALL_STATE(1938)] = 40230, + [SMALL_STATE(1939)] = 40238, + [SMALL_STATE(1940)] = 40246, + [SMALL_STATE(1941)] = 40254, + [SMALL_STATE(1942)] = 40262, + [SMALL_STATE(1943)] = 40270, + [SMALL_STATE(1944)] = 40278, + [SMALL_STATE(1945)] = 40286, + [SMALL_STATE(1946)] = 40294, + [SMALL_STATE(1947)] = 40302, + [SMALL_STATE(1948)] = 40310, + [SMALL_STATE(1949)] = 40318, + [SMALL_STATE(1950)] = 40326, + [SMALL_STATE(1951)] = 40334, + [SMALL_STATE(1952)] = 40342, + [SMALL_STATE(1953)] = 40350, + [SMALL_STATE(1954)] = 40358, + [SMALL_STATE(1955)] = 40366, + [SMALL_STATE(1956)] = 40374, + [SMALL_STATE(1957)] = 40382, + [SMALL_STATE(1958)] = 40390, + [SMALL_STATE(1959)] = 40398, + [SMALL_STATE(1960)] = 40406, + [SMALL_STATE(1961)] = 40414, + [SMALL_STATE(1962)] = 40422, + [SMALL_STATE(1963)] = 40430, + [SMALL_STATE(1964)] = 40438, + [SMALL_STATE(1965)] = 40446, + [SMALL_STATE(1966)] = 40454, +}; + +static TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [75] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 2), + [77] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 2), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 3), + [83] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 3), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 2), + [87] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 2), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 3), + [93] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 3), + [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(472), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1542), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1669), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1668), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1667), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1666), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1655), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1649), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(333), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(61), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(213), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(475), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(6), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(194), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(189), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(189), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1796), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1230), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1231), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1241), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1247), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1258), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1259), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1629), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1628), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1627), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1617), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1616), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1615), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1802), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1603), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1203), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1202), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1595), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 2), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 2), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 3), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 3), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(472), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1669), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1668), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1667), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1666), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1655), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1649), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(333), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(61), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(213), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(475), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(106), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(194), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(189), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(189), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1796), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1230), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1231), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1241), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1247), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1258), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1259), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1629), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1628), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1627), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1617), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1616), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1615), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1802), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1603), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1203), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1202), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1595), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(472), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1668), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1667), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1666), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1655), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1649), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(333), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(61), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(213), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(475), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(145), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(194), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(189), + [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(189), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1796), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1230), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1231), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1241), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1247), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1258), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1259), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1629), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1628), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1627), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1617), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1616), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1615), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1802), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1603), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1203), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1202), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1595), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 3), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 3), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(480), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1620), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1619), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1618), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1610), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1607), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1604), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1601), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(402), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(101), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(147), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(550), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(163), + [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(114), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(149), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(149), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1225), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1224), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1211), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1209), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1205), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1204), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1684), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1598), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1597), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1685), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1686), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1392), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1916), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1543), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1199), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1201), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1687), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(483), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1521), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1518), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1517), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1516), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1515), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1514), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1513), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(394), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(79), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(185), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(542), + [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(214), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(186), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(188), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(188), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1174), + [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1175), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1176), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1177), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1178), + [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1179), + [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1690), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1401), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1509), + [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1691), + [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1692), + [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1391), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1919), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1528), + [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1182), + [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1195), + [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1693), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(485), + [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1547), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1403), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1417), + [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1438), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1456), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1464), + [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1470), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(387), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(109), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(121), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(543), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(227), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(124), + [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(127), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(127), + [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1163), + [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1165), + [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1173), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1180), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1183), + [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1190), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1670), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1489), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1505), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1671), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1672), + [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1394), + [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1913), + [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1556), + [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1197), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1206), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1673), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 2), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 2), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(472), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1667), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1666), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1655), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1649), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(333), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(61), + [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(213), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(475), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(251), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(194), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(189), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(189), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1796), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1230), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1231), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1241), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1247), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1258), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1259), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1629), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1628), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1627), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1617), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1616), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1615), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1802), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1603), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1203), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1202), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1595), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 2), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 2), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(480), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1619), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1618), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1610), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1607), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1604), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1601), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(402), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(101), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(147), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(550), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(254), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(114), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(149), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(149), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1225), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1224), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1211), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1209), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1205), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1204), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1684), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1598), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1597), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1685), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1686), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1392), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1916), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1543), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1199), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1201), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1687), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 3), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 3), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(472), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1666), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1655), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1649), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(333), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(61), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(213), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(475), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(257), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(194), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(189), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(189), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1796), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1230), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1231), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1241), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1247), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1258), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1259), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1629), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1628), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1627), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1617), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1616), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1615), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1802), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1603), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1203), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1202), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1595), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(476), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1362), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1361), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1360), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1359), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1358), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1357), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(388), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(47), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(231), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(547), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(258), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(218), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(217), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(217), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1226), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1223), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1222), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1221), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1220), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1218), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1702), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1356), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1353), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1703), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1704), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1380), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1925), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1493), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1212), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1162), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1705), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(485), + [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1403), + [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1417), + [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1438), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1456), + [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1464), + [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1470), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(387), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(109), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(121), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(543), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(264), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(124), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(127), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(127), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1163), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1165), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1173), + [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1180), + [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1183), + [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1190), + [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1670), + [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1489), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1505), + [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1671), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1672), + [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1394), + [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1913), + [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1556), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1197), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1206), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1673), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(483), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1518), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1517), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1516), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1515), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1514), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1513), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(394), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(79), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(185), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(542), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(266), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(186), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(188), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(188), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1174), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1175), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1176), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1177), + [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1178), + [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1179), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1690), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1401), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1509), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1691), + [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1692), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1391), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1919), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1528), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1182), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1195), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1693), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(476), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1361), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1360), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1359), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1358), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1357), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(388), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(47), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(231), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(547), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(271), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(218), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(217), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(217), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1226), + [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1223), + [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1222), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1221), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1220), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1218), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1702), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1356), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1353), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1703), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1704), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1380), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1925), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1493), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1212), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1162), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1705), + [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(480), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1618), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1610), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1607), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1604), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1601), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(402), + [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(101), + [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(147), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(550), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(272), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(114), + [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(149), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(149), + [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1225), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1224), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1211), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1209), + [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1205), + [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1204), + [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1684), + [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1598), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1597), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1685), + [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1686), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1392), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1916), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1543), + [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1199), + [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1201), + [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1687), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 2), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 2), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(472), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1655), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1649), + [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(333), + [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(61), + [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(213), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(475), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(276), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(194), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(189), + [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(189), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1796), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1230), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1231), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1241), + [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1247), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1258), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1259), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1629), + [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1628), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1627), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1617), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1616), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1615), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1802), + [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1603), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1203), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1202), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1595), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(483), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1517), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1516), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1515), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1514), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1513), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(394), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(79), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(185), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(542), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(278), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(186), + [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(188), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(188), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1174), + [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1175), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1176), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1177), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1178), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1179), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1690), + [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1401), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1509), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1691), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1692), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1391), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1919), + [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1528), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1182), + [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1195), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1693), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(485), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1417), + [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1438), + [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1456), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1464), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1470), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(387), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(109), + [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(121), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(543), + [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(280), + [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(124), + [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(127), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(127), + [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1163), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1165), + [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1173), + [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1180), + [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1183), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1190), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1670), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1489), + [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1505), + [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1671), + [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1672), + [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1394), + [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1913), + [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1556), + [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1197), + [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1206), + [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1673), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 3), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 3), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(480), + [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1610), + [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1607), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1604), + [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1601), + [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(402), + [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(101), + [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(147), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(550), + [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(284), + [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(114), + [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(149), + [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(149), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1225), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1224), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1211), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1209), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1205), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1204), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1684), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1598), + [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1597), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1685), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1686), + [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1392), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1916), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1543), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1199), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1201), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1687), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 3), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 3), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(483), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1516), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1515), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1514), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1513), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(394), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(79), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(185), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(542), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(287), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(186), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(188), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(188), + [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1174), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1175), + [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1176), + [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1177), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1178), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1179), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1690), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1401), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1509), + [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1691), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1692), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1391), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1919), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1528), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1182), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1195), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1693), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), + [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(472), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1649), + [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(333), + [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(61), + [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(213), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(475), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(291), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(194), + [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(189), + [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(189), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1796), + [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1230), + [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1231), + [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1241), + [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1247), + [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1258), + [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1259), + [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1629), + [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1628), + [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1627), + [3051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1617), + [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1616), + [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1615), + [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1802), + [3063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1603), + [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1203), + [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1202), + [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1595), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(497), + [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1339), + [3085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1340), + [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1341), + [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1342), + [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1343), + [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(414), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(64), + [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(247), + [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(559), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(294), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(180), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(179), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(179), + [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1156), + [3124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1154), + [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1153), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1229), + [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1215), + [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1217), + [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1708), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1354), + [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1355), + [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1709), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1710), + [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1378), + [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1928), + [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1474), + [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1228), + [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1161), + [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(1711), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(476), + [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1360), + [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1359), + [3185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1358), + [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1357), + [3191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(388), + [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(47), + [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(231), + [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(547), + [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(297), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(218), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(217), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(217), + [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1226), + [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1223), + [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1222), + [3224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1221), + [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1220), + [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1218), + [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1702), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1356), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1353), + [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1703), + [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1704), + [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1380), + [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1925), + [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1493), + [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1212), + [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1162), + [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1705), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(485), + [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1438), + [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1456), + [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1464), + [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1470), + [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(387), + [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(109), + [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(121), + [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(543), + [3297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(300), + [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(124), + [3303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(127), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(127), + [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1163), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1165), + [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1173), + [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1180), + [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1183), + [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1190), + [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1670), + [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1489), + [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1505), + [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1671), + [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1672), + [3342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1394), + [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1913), + [3348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1556), + [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1197), + [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1206), + [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1673), + [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(497), + [3363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1340), + [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1341), + [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1342), + [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1343), + [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(414), + [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(64), + [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(247), + [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(559), + [3387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(301), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(180), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(179), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(179), + [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1156), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1154), + [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1153), + [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1229), + [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1215), + [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1217), + [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1708), + [3420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1354), + [3423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1355), + [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1709), + [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1710), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1378), + [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1928), + [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1474), + [3441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1228), + [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1161), + [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1711), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(480), + [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1607), + [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1604), + [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1601), + [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(402), + [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(101), + [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(147), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(550), + [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(305), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(114), + [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(149), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(149), + [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1225), + [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1224), + [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1211), + [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1209), + [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1205), + [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1204), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1684), + [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1598), + [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1597), + [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1685), + [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1686), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1392), + [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1916), + [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1543), + [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1199), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1201), + [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1687), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(476), + [3552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1359), + [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1358), + [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1357), + [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(388), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(47), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(231), + [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(547), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(309), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(218), + [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(217), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(217), + [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1226), + [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1223), + [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1222), + [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1221), + [3597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1220), + [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1218), + [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1702), + [3606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1356), + [3609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1353), + [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1703), + [3615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1704), + [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1380), + [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1925), + [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1493), + [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1212), + [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1162), + [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1705), + [3636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(483), + [3639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1515), + [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1514), + [3645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1513), + [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(394), + [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(79), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(185), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(542), + [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(310), + [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(186), + [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(188), + [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(188), + [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1174), + [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1175), + [3678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1176), + [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1177), + [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1178), + [3687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1179), + [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1690), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1401), + [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1509), + [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1691), + [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1692), + [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1391), + [3708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1919), + [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1528), + [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1182), + [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1195), + [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1693), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), + [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(472), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), + [3732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(333), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(61), + [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(213), + [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(475), + [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(312), + [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(194), + [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(189), + [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(189), + [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1796), + [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1230), + [3762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1231), + [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1241), + [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1247), + [3771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1258), + [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1259), + [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1629), + [3780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1628), + [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1627), + [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1617), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1616), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1615), + [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1802), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1603), + [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1203), + [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1202), + [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1595), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 2), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 2), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 3), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 3), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(485), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1456), + [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1464), + [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1470), + [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(387), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(109), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(121), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(543), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(315), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(124), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(127), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(127), + [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1163), + [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1165), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1173), + [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1180), + [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1183), + [3873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1190), + [3876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1670), + [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1489), + [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1505), + [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1671), + [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1672), + [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1394), + [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1913), + [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1556), + [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1197), + [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1206), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1673), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(497), + [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1341), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1342), + [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1343), + [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(414), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(64), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(247), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(559), + [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(320), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(180), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(179), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(179), + [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1156), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1154), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1153), + [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1229), + [3965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1215), + [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1217), + [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1708), + [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1354), + [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1355), + [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1709), + [3983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1710), + [3986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1378), + [3989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1928), + [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1474), + [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1228), + [3998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1161), + [4001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1711), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 2), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 2), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), + [4014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(472), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), + [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(61), + [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(213), + [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(475), + [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(323), + [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(194), + [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(189), + [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(189), + [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1796), + [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1230), + [4046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1231), + [4049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1241), + [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1247), + [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1258), + [4058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1259), + [4061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1629), + [4064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1628), + [4067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1627), + [4070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1617), + [4073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1616), + [4076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1615), + [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1802), + [4082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1603), + [4085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1203), + [4088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1202), + [4091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1595), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(485), + [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1464), + [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1470), + [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(387), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(109), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(121), + [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(543), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(326), + [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(124), + [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(127), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(127), + [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1163), + [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1165), + [4137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1173), + [4140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1180), + [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1183), + [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1190), + [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1670), + [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1489), + [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1505), + [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1671), + [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1672), + [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1394), + [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1913), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1556), + [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1197), + [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1206), + [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1673), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5), + [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(476), + [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1358), + [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1357), + [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(388), + [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(47), + [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(231), + [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(547), + [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(331), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(218), + [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(217), + [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(217), + [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1226), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1223), + [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1222), + [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1221), + [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1220), + [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1218), + [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1702), + [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1356), + [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1353), + [4314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1703), + [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1704), + [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1380), + [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1925), + [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1493), + [4329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1212), + [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1162), + [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1705), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 1), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 1), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(546), + [4353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1396), + [4356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1397), + [4359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1398), + [4362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1399), + [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(427), + [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(81), + [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(219), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(698), + [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(335), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(155), + [4383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(154), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(154), + [4389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1256), + [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1255), + [4395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1254), + [4398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1253), + [4401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1252), + [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1250), + [4407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1714), + [4410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1410), + [4413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1411), + [4416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1715), + [4419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1716), + [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1377), + [4425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1931), + [4428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1468), + [4431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1249), + [4434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1160), + [4437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(1717), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(483), + [4445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1514), + [4448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1513), + [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(394), + [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(79), + [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(185), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(542), + [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(337), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(186), + [4469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(188), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(188), + [4475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1174), + [4478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1175), + [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1176), + [4484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1177), + [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1178), + [4490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1179), + [4493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1690), + [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1401), + [4499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1509), + [4502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1691), + [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1692), + [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1391), + [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1919), + [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1528), + [4517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1182), + [4520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1195), + [4523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1693), + [4526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(480), + [4529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1604), + [4532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1601), + [4535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(402), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(101), + [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(147), + [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(550), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(338), + [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(114), + [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(149), + [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(149), + [4559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1225), + [4562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1224), + [4565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1211), + [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1209), + [4571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1205), + [4574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1204), + [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1684), + [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1598), + [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1597), + [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1685), + [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1686), + [4592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1392), + [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1916), + [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1543), + [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1199), + [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1201), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1687), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(480), + [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1601), + [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(402), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(101), + [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(147), + [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(550), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(348), + [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(114), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(149), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(149), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1225), + [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1224), + [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1211), + [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1209), + [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1205), + [4673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1204), + [4676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1684), + [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1598), + [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1597), + [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1685), + [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1686), + [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1392), + [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1916), + [4697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1543), + [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1199), + [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1201), + [4706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1687), + [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(483), + [4712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1513), + [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(394), + [4718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(79), + [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(185), + [4724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(542), + [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(349), + [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(186), + [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(188), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(188), + [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1174), + [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1175), + [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1176), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1177), + [4751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1178), + [4754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1179), + [4757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1690), + [4760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1401), + [4763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1509), + [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1691), + [4769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1692), + [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1391), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1919), + [4778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1528), + [4781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1182), + [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1195), + [4787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1693), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(497), + [4797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1342), + [4800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1343), + [4803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(414), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(64), + [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(247), + [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(559), + [4815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(352), + [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(180), + [4821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(179), + [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(179), + [4827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1156), + [4830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1154), + [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1153), + [4836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1229), + [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1215), + [4842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1217), + [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1708), + [4848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1354), + [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1355), + [4854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1709), + [4857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1710), + [4860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1378), + [4863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1928), + [4866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1474), + [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1228), + [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1161), + [4875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1711), + [4878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(476), + [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1357), + [4884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(388), + [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(47), + [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(231), + [4893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(547), + [4896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(353), + [4899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(218), + [4902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(217), + [4905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(217), + [4908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1226), + [4911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1223), + [4914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1222), + [4917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1221), + [4920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1220), + [4923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1218), + [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1702), + [4929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1356), + [4932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1353), + [4935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1703), + [4938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1704), + [4941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1380), + [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1925), + [4947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1493), + [4950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1212), + [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1162), + [4956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1705), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(546), + [4968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1397), + [4971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1398), + [4974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1399), + [4977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(427), + [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(81), + [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(219), + [4986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(698), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(357), + [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(155), + [4995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(154), + [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(154), + [5001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1256), + [5004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1255), + [5007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1254), + [5010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1253), + [5013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1252), + [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1250), + [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1714), + [5022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1410), + [5025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1411), + [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1715), + [5031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1716), + [5034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1377), + [5037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1931), + [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1468), + [5043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1249), + [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1160), + [5049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1717), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(485), + [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1470), + [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(387), + [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(109), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(121), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(543), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(359), + [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(124), + [5078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(127), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(127), + [5084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1163), + [5087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1165), + [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1173), + [5093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1180), + [5096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1183), + [5099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1190), + [5102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1670), + [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1489), + [5108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1505), + [5111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1671), + [5114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1672), + [5117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1394), + [5120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1913), + [5123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1556), + [5126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1197), + [5129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1206), + [5132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1673), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(483), + [5142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(394), + [5145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(79), + [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(185), + [5151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(542), + [5154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(362), + [5157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(186), + [5160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(188), + [5163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(188), + [5166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1174), + [5169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1175), + [5172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1176), + [5175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1177), + [5178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1178), + [5181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1179), + [5184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1690), + [5187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1401), + [5190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1509), + [5193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1691), + [5196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1692), + [5199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1391), + [5202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1919), + [5205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1528), + [5208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1182), + [5211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1195), + [5214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1693), + [5217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(480), + [5220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(402), + [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(101), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(147), + [5229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(550), + [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(363), + [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(114), + [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(149), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(149), + [5244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1225), + [5247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1224), + [5250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1211), + [5253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1209), + [5256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1205), + [5259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1204), + [5262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1684), + [5265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1598), + [5268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1597), + [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1685), + [5274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1686), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1392), + [5280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1916), + [5283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1543), + [5286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1199), + [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1201), + [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1687), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(546), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1398), + [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1399), + [5364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(427), + [5367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(81), + [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(219), + [5373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(698), + [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(366), + [5379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(155), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(154), + [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(154), + [5388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1256), + [5391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1255), + [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1254), + [5397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1253), + [5400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1252), + [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1250), + [5406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1714), + [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1410), + [5412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1411), + [5415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1715), + [5418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1716), + [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1377), + [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1931), + [5427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1468), + [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1249), + [5433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1160), + [5436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1717), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(485), + [5444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(387), + [5447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(109), + [5450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(121), + [5453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(543), + [5456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(368), + [5459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(124), + [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(127), + [5465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(127), + [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1163), + [5471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1165), + [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1173), + [5477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1180), + [5480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1183), + [5483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1190), + [5486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1670), + [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1489), + [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1505), + [5495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1671), + [5498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1672), + [5501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1394), + [5504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1913), + [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1556), + [5510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1197), + [5513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1206), + [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1673), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(564), + [5530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1452), + [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1453), + [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1454), + [5539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(436), + [5542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(92), + [5545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(181), + [5548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(773), + [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(373), + [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(125), + [5557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(122), + [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(122), + [5563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1216), + [5566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1214), + [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1213), + [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1210), + [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1208), + [5578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1207), + [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1683), + [5584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1465), + [5587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1466), + [5590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1682), + [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1681), + [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1366), + [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1934), + [5602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1457), + [5605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1200), + [5608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1159), + [5611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1680), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(476), + [5625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(388), + [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(47), + [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(231), + [5634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(547), + [5637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(378), + [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(218), + [5643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(217), + [5646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(217), + [5649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1226), + [5652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1223), + [5655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1222), + [5658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1221), + [5661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1220), + [5664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1218), + [5667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1702), + [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1356), + [5673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1353), + [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1703), + [5679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1704), + [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1380), + [5685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1925), + [5688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1493), + [5691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1212), + [5694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1162), + [5697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1705), + [5700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(497), + [5703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1343), + [5706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(414), + [5709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(64), + [5712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(247), + [5715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(559), + [5718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(379), + [5721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(180), + [5724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(179), + [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(179), + [5730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1156), + [5733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1154), + [5736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1153), + [5739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1229), + [5742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1215), + [5745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1217), + [5748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1708), + [5751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1354), + [5754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1355), + [5757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1709), + [5760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1710), + [5763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1378), + [5766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1928), + [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1474), + [5772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1228), + [5775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1161), + [5778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1711), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(485), + [5788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(109), + [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(121), + [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(543), + [5797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(382), + [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(124), + [5803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(127), + [5806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(127), + [5809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1163), + [5812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1165), + [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1173), + [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1180), + [5821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1183), + [5824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1190), + [5827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1670), + [5830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1489), + [5833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1505), + [5836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1671), + [5839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1672), + [5842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1394), + [5845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1913), + [5848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1556), + [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1197), + [5854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1206), + [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1673), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(480), + [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(101), + [5872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(147), + [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(550), + [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(386), + [5881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(114), + [5884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(149), + [5887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(149), + [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1225), + [5893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1224), + [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1211), + [5899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1209), + [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1205), + [5905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1204), + [5908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1684), + [5911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1598), + [5914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1597), + [5917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1685), + [5920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1686), + [5923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1392), + [5926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1916), + [5929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1543), + [5932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1199), + [5935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1201), + [5938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1687), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(497), + [5960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(414), + [5963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(64), + [5966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(247), + [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(559), + [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(393), + [5975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(180), + [5978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(179), + [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(179), + [5984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1156), + [5987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1154), + [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1153), + [5993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1229), + [5996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1215), + [5999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1217), + [6002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1708), + [6005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1354), + [6008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1355), + [6011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1709), + [6014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1710), + [6017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1378), + [6020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1928), + [6023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1474), + [6026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1228), + [6029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1161), + [6032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1711), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(476), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(47), + [6049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(231), + [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(547), + [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(398), + [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(218), + [6061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(217), + [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(217), + [6067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1226), + [6070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1223), + [6073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1222), + [6076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1221), + [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1220), + [6082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1218), + [6085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1702), + [6088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1356), + [6091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1353), + [6094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1703), + [6097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1704), + [6100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1380), + [6103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1925), + [6106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1493), + [6109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1212), + [6112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1162), + [6115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1705), + [6118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(564), + [6121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1453), + [6124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1454), + [6127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(436), + [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(92), + [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(181), + [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(773), + [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(399), + [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(125), + [6145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(122), + [6148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(122), + [6151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1216), + [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1214), + [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1213), + [6160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1210), + [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1208), + [6166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1207), + [6169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1683), + [6172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1465), + [6175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1466), + [6178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1682), + [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1681), + [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1366), + [6187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1934), + [6190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1457), + [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1200), + [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1159), + [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1680), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(483), + [6213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(79), + [6216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(185), + [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(542), + [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(405), + [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(186), + [6228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(188), + [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(188), + [6234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1174), + [6237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1175), + [6240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1176), + [6243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1177), + [6246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1178), + [6249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1179), + [6252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1690), + [6255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1401), + [6258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1509), + [6261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1691), + [6264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1692), + [6267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1391), + [6270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1919), + [6273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1528), + [6276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1182), + [6279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1195), + [6282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1693), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(546), + [6292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1399), + [6295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(427), + [6298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(81), + [6301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(219), + [6304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(698), + [6307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(408), + [6310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(155), + [6313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(154), + [6316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(154), + [6319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1256), + [6322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1255), + [6325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1254), + [6328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1253), + [6331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1252), + [6334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1250), + [6337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1714), + [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1410), + [6343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1411), + [6346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1715), + [6349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1716), + [6352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1377), + [6355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1931), + [6358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1468), + [6361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1249), + [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1160), + [6367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1717), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [6374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(497), + [6377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(64), + [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(247), + [6383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(559), + [6386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(413), + [6389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(180), + [6392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(179), + [6395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(179), + [6398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1156), + [6401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1154), + [6404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1153), + [6407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1229), + [6410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1215), + [6413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1217), + [6416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1708), + [6419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1354), + [6422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1355), + [6425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1709), + [6428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1710), + [6431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1378), + [6434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1928), + [6437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1474), + [6440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1228), + [6443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1161), + [6446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1711), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(546), + [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(427), + [6459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(81), + [6462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(219), + [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(698), + [6468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(415), + [6471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(155), + [6474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(154), + [6477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(154), + [6480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1256), + [6483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1255), + [6486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1254), + [6489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1253), + [6492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1252), + [6495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1250), + [6498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1714), + [6501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1410), + [6504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1411), + [6507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1715), + [6510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1716), + [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1377), + [6516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1931), + [6519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1468), + [6522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1249), + [6525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1160), + [6528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1717), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [6587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(742), + [6590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1507), + [6593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1508), + [6596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(446), + [6599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(102), + [6602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(157), + [6605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(845), + [6608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(417), + [6611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(206), + [6614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(207), + [6617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(207), + [6620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1172), + [6623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1171), + [6626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1170), + [6629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1169), + [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1168), + [6635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1167), + [6638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1675), + [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1519), + [6644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1520), + [6647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1674), + [6650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1664), + [6653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1350), + [6656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1937), + [6659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1447), + [6662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1166), + [6665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1158), + [6668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1661), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [6679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(564), + [6682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1454), + [6685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(436), + [6688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(92), + [6691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(181), + [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(773), + [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(422), + [6700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(125), + [6703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(122), + [6706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(122), + [6709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1216), + [6712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1214), + [6715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1213), + [6718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1210), + [6721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1208), + [6724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1207), + [6727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1683), + [6730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1465), + [6733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1466), + [6736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1682), + [6739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1681), + [6742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1366), + [6745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1934), + [6748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1457), + [6751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1200), + [6754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1159), + [6757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1680), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(564), + [6767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(436), + [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(92), + [6773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(181), + [6776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(773), + [6779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(425), + [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(125), + [6785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(122), + [6788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(122), + [6791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1216), + [6794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1214), + [6797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1213), + [6800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1210), + [6803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1208), + [6806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1207), + [6809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1683), + [6812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1465), + [6815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1466), + [6818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1682), + [6821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1681), + [6824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1366), + [6827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1934), + [6830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1457), + [6833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1200), + [6836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1159), + [6839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1680), + [6842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(742), + [6845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1508), + [6848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(446), + [6851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(102), + [6854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(157), + [6857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(845), + [6860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(426), + [6863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(206), + [6866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(207), + [6869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(207), + [6872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1172), + [6875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1171), + [6878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1170), + [6881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1169), + [6884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1168), + [6887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1167), + [6890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1675), + [6893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1519), + [6896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1520), + [6899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1674), + [6902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1664), + [6905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1350), + [6908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1937), + [6911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1447), + [6914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1166), + [6917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1158), + [6920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1661), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [6931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(546), + [6934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(81), + [6937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(219), + [6940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(698), + [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(431), + [6946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(155), + [6949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(154), + [6952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(154), + [6955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1256), + [6958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1255), + [6961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1254), + [6964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1253), + [6967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1252), + [6970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1250), + [6973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1714), + [6976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1410), + [6979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1411), + [6982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1715), + [6985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1716), + [6988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1377), + [6991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1931), + [6994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1468), + [6997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1249), + [7000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1160), + [7003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1717), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [7074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(771), + [7077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1561), + [7080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(456), + [7083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(77), + [7086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(126), + [7089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(914), + [7092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(439), + [7095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(119), + [7098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(118), + [7101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(118), + [7104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1155), + [7107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1152), + [7110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1237), + [7113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1184), + [7116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1185), + [7119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1186), + [7122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1636), + [7125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1572), + [7128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1573), + [7131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1626), + [7134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1622), + [7137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1337), + [7140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1940), + [7143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1418), + [7146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1187), + [7149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1157), + [7152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1614), + [7155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(564), + [7158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(92), + [7161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(181), + [7164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(773), + [7167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(440), + [7170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(125), + [7173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(122), + [7176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(122), + [7179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1216), + [7182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1214), + [7185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1213), + [7188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1210), + [7191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1208), + [7194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1207), + [7197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1683), + [7200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1465), + [7203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1466), + [7206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1682), + [7209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1681), + [7212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1366), + [7215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1934), + [7218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1457), + [7221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1200), + [7224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1159), + [7227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1680), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [7234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(742), + [7237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(446), + [7240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(102), + [7243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(157), + [7246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(845), + [7249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(443), + [7252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(206), + [7255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(207), + [7258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(207), + [7261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1172), + [7264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1171), + [7267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1170), + [7270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1169), + [7273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1168), + [7276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1167), + [7279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1675), + [7282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1519), + [7285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1520), + [7288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1674), + [7291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1664), + [7294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1350), + [7297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1937), + [7300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1447), + [7303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1166), + [7306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1158), + [7309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1661), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [7322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(742), + [7325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(102), + [7328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(157), + [7331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(845), + [7334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(449), + [7337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(206), + [7340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(207), + [7343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(207), + [7346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1172), + [7349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1171), + [7352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1170), + [7355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1169), + [7358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1168), + [7361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1167), + [7364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1675), + [7367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1519), + [7370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1520), + [7373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1674), + [7376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1664), + [7379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1350), + [7382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1937), + [7385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1447), + [7388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1166), + [7391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1158), + [7394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1661), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [7399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(771), + [7402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(456), + [7405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(77), + [7408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(126), + [7411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(914), + [7414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(452), + [7417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(119), + [7420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(118), + [7423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(118), + [7426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1155), + [7429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1152), + [7432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1237), + [7435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1184), + [7438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1185), + [7441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1186), + [7444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1636), + [7447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1572), + [7450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1573), + [7453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1626), + [7456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1622), + [7459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1337), + [7462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1940), + [7465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1418), + [7468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1187), + [7471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1157), + [7474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1614), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [7537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(855), + [7540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(463), + [7543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(75), + [7546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(191), + [7549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(980), + [7552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(457), + [7555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(240), + [7558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(242), + [7561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(242), + [7564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1242), + [7567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1243), + [7570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1244), + [7573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1245), + [7576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1246), + [7579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1248), + [7582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1600), + [7585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1624), + [7588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1625), + [7591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1594), + [7594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1581), + [7597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1334), + [7600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1943), + [7603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1414), + [7606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1260), + [7609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1196), + [7612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1566), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [7619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(771), + [7622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(77), + [7625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(126), + [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(914), + [7631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(461), + [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(119), + [7637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(118), + [7640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(118), + [7643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1155), + [7646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1152), + [7649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1237), + [7652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1184), + [7655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1185), + [7658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1186), + [7661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1636), + [7664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1572), + [7667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1573), + [7670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1626), + [7673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1622), + [7676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1337), + [7679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1940), + [7682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1418), + [7685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1187), + [7688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1157), + [7691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1614), + [7694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(855), + [7697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(75), + [7700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(191), + [7703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(980), + [7706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(462), + [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(240), + [7712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(242), + [7715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(242), + [7718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1242), + [7721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1243), + [7724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1244), + [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1245), + [7730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1246), + [7733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1248), + [7736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1600), + [7739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1624), + [7742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1625), + [7745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1594), + [7748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1581), + [7751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1334), + [7754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1943), + [7757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1414), + [7760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1260), + [7763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1196), + [7766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1566), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [7827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(913), + [7830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(53), + [7833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(120), + [7836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1015), + [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(468), + [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(246), + [7845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(245), + [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(245), + [7851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1233), + [7854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1234), + [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1235), + [7860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1236), + [7863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1151), + [7866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1238), + [7869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1696), + [7872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1431), + [7875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1422), + [7878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1697), + [7881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1698), + [7884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1382), + [7887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1922), + [7890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1510), + [7893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1150), + [7896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1191), + [7899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1699), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 1), + [7910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 1), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 2), + [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 2), + [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), + [7922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 2), + [7924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(220), + [7927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(213), + [7930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(164), + [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [7935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(169), + [7944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(147), + [7947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(172), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(201), + [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(185), + [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(200), + [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(236), + [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(231), + [7969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(226), + [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(139), + [7975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(121), + [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(141), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 5), + [7991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 5), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 3), + [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 3), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 2), + [7999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 2), + [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_group, 2), + [8003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_group, 2), + [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_definition, 8), + [8007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_definition, 8), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 6), + [8011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 6), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 6), + [8015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 6), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end, 4), + [8019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end, 4), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 5), + [8027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 5), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 5), + [8031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 5), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_definition, 5), + [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_definition, 5), + [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comma_sep_word_group, 4), + [8039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comma_sep_word_group, 4), + [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 2), + [8043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 2), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_group, 3), + [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_group, 3), + [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 4), + [8051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 4), + [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 4), + [8055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 4), + [8057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(196), + [8060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(247), + [8063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(193), + [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2), + [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2), + [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__word_group, 3), + [8072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__word_group, 3), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4), + [8076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comma_sep_word_group, 3), + [8080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comma_sep_word_group, 3), + [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_group, 3), + [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_group, 3), + [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 2), + [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 2), + [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment, 3), + [8092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment, 3), + [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 2), + [8096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 2), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_group, 2), + [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_group, 2), + [8102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3), + [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 2), + [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 2), + [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 2), + [8114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 2), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), + [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), + [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 3), + [8122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 3), + [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_number, 3), + [8126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_number, 3), + [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 3), + [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 3), + [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 3), + [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 3), + [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 3), + [8138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 3), + [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 2), + [8142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 2), + [8144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 2), + [8146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 2), + [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 3), + [8150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 3), + [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 3), + [8154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 3), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 2), + [8158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 2), + [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3), + [8162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3), + [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comma_sep_word_group, 2), + [8166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comma_sep_word_group, 2), + [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3), + [8170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_group, 2), + [8174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_group, 2), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment, 2), + [8178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment, 2), + [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 3), + [8182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 3), + [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_group, 3), + [8186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_group, 3), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [8192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_begin_repeat1, 2), + [8194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_begin_repeat1, 2), SHIFT_REPEAT(201), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_begin_repeat1, 2), + [8199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(167), + [8202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(219), + [8205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(165), + [8208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 5), + [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 5), + [8212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 4), + [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 4), + [8216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_fragment, 1), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_fragment, 1), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [8222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(136), + [8225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(181), + [8228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(135), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [8263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(178), + [8266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(157), + [8269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(182), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [8282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(237), + [8285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(126), + [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(156), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [8299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(153), + [8302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(191), + [8305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(158), + [8308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(195), + [8311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(120), + [8314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(192), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key, 1), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_repeat1, 2), + [8337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_repeat1, 2), SHIFT_REPEAT(1136), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_pair, 1), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [8420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_val_options_repeat1, 2), + [8422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_val_options_repeat1, 2), SHIFT_REPEAT(1219), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_pair, 3), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comma_sep_word_group_repeat1, 2), + [8483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comma_sep_word_group_repeat1, 2), SHIFT_REPEAT(1873), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [8756] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_options, 2), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [8982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_options, 3), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [9036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_options, 4), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), +}; + +#ifdef __cplusplus +extern "C" { +#endif +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_latex(void) { + static TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .alias_map = ts_non_terminal_alias_map, + .state_count = STATE_COUNT, + .symbol_metadata = ts_symbol_metadata, + .parse_table = (const unsigned short *)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, + .symbol_names = ts_symbol_names, + .public_symbol_map = ts_symbol_map, + .alias_sequences = (const TSSymbol *)ts_alias_sequences, + .field_count = FIELD_COUNT, + .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, + .external_token_count = EXTERNAL_TOKEN_COUNT, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h new file mode 100644 index 000000000..c5a788ff6 --- /dev/null +++ b/src/tree_sitter/parser.h @@ -0,0 +1,238 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef uint16_t TSStateId; + +typedef struct { + bool visible : 1; + bool named : 1; + bool supertype: 1; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef 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; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable : 1; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + const char **symbol_names; + const TSSymbolMetadata *symbol_metadata; + const uint16_t *parse_table; + const TSParseActionEntry *parse_actions; + const TSLexMode *lex_modes; + const TSSymbol *alias_sequences; + uint16_t max_alias_sequence_length; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + 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; +}; + +/* + * Lexer Macros + */ + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) id - LARGE_STATE_COUNT + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + { \ + { \ + .params = { \ + .shift = { \ + .state = state_value \ + } \ + }, \ + .type = TSParseActionTypeShift \ + } \ + } + +#define SHIFT_REPEAT(state_value) \ + { \ + { \ + .params = { \ + .shift = { \ + .state = state_value, \ + .repetition = true \ + } \ + }, \ + .type = TSParseActionTypeShift \ + } \ + } + +#define RECOVER() \ + { \ + { .type = TSParseActionTypeRecover } \ + } + +#define SHIFT_EXTRA() \ + { \ + { \ + .params = { \ + .shift = { \ + .extra = true \ + } \ + }, \ + .type = TSParseActionTypeShift \ + } \ + } + +#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 } \ + } + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_