diff --git a/change_log.txt b/change_log.txt index a80c0e58..cf87e65b 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,8 @@ +11/28/2009 +- ignore compile_id at debug template +- added direct access to constants in templates +- some lexer/parser optimizations + 11/27/2009 - added cache resource MYSQL plugin diff --git a/libs/sysplugins/smarty_internal_debug.php b/libs/sysplugins/smarty_internal_debug.php index 9e5f7bed..6f5d1424 100644 --- a/libs/sysplugins/smarty_internal_debug.php +++ b/libs/sysplugins/smarty_internal_debug.php @@ -83,6 +83,8 @@ class Smarty_Internal_Debug extends Smarty_Internal_TemplateBase { $_template->caching = false; $_template->force_compile = false; $_template->security = false; + $_template->cache_id = null; + $_template->compile_id = null; $_template->assign('template_data', self::$template_data); $_template->assign('assigned_vars', $_assigned_vars); $_template->assign('config_vars', $_config_vars); diff --git a/libs/sysplugins/smarty_internal_smartytemplatecompiler.php b/libs/sysplugins/smarty_internal_smartytemplatecompiler.php index 4ee8aec6..c627cc19 100644 --- a/libs/sysplugins/smarty_internal_smartytemplatecompiler.php +++ b/libs/sysplugins/smarty_internal_smartytemplatecompiler.php @@ -39,10 +39,10 @@ class Smarty_Internal_SmartyTemplateCompiler extends Smarty_Internal_TemplateCom // init the lexer/parser to compile the template $this->lex = new $this->lexer_class($_content,$this->smarty); $this->parser = new $this->parser_class($this->lex, $this); - // $this->parser->PrintTrace(); + //$this->parser->PrintTrace(); // get tokens from lexer and parse them while ($this->lex->yylex() && !$this->abort_and_recompile) { - // echo "Line {$this->lex->line} Parsing {$this->parser->yyTokenName[$this->lex->token]} Token
".htmlentities($this->lex->value)."
"; + //echo "
Line {$this->lex->line} Parsing  {$this->parser->yyTokenName[$this->lex->token]} Token ".htmlentities($this->lex->value)."
"; $this->parser->doParse($this->lex->token, $this->lex->value); } diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index e4bc6d31..5b6ee6ef 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -424,10 +424,10 @@ class Smarty_Internal_Templatelexer 61 => 0, 62 => 0, 63 => 0, - 64 => 0, - 65 => 1, - 67 => 1, - 69 => 1, + 64 => 1, + 66 => 1, + 68 => 1, + 70 => 0, 71 => 0, 72 => 0, 73 => 0, @@ -440,15 +440,19 @@ class Smarty_Internal_Templatelexer 80 => 0, 81 => 0, 82 => 0, - 83 => 0, - 84 => 0, + 83 => 1, 85 => 0, 86 => 0, + 87 => 1, + 89 => 0, + 90 => 0, + 91 => 0, + 92 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^((\\\\\"|\\\\'))|^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)/"; + $yy_global_pattern = "/^((\\\\\"|\\\\'))|^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -488,72 +492,76 @@ class Smarty_Internal_Templatelexer // skip this token continue; } else { $yy_yymore_patterns = array( - 1 => array(0, "^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 3 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 5 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 6 => array(1, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 7 => array(1, "^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 8 => array(1, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 9 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 10 => array(1, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 11 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 12 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 13 => array(1, "^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 14 => array(2, "^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 16 => array(2, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 17 => array(2, "^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 18 => array(2, "^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 19 => array(2, "^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 20 => array(2, "^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 21 => array(3, "^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 23 => array(4, "^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 25 => array(5, "^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 27 => array(6, "^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 29 => array(7, "^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 31 => array(8, "^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 33 => array(9, "^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 35 => array(10, "^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 37 => array(11, "^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 39 => array(12, "^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 41 => array(13, "^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 43 => array(13, "^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 44 => array(13, "^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 45 => array(13, "^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 46 => array(13, "^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 47 => array(13, "^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 48 => array(13, "^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 49 => array(13, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 50 => array(13, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 51 => array(13, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 52 => array(13, "^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 53 => array(16, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 57 => array(16, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 58 => array(16, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 59 => array(16, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 60 => array(16, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 61 => array(16, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 62 => array(16, "^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 63 => array(16, "^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 64 => array(16, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 65 => array(17, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 67 => array(18, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 69 => array(19, "^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 71 => array(19, "^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 72 => array(19, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 73 => array(19, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 74 => array(19, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 75 => array(19, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 76 => array(19, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 77 => array(19, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 78 => array(19, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 79 => array(19, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 80 => array(19, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 81 => array(19, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 82 => array(19, "^(\\s*\\?\\s*)|^(\\w+)|^(\\s+)|^(.)"), - 83 => array(19, "^(\\w+)|^(\\s+)|^(.)"), - 84 => array(19, "^(\\s+)|^(.)"), - 85 => array(19, "^(.)"), - 86 => array(19, ""), + 1 => array(0, "^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 3 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 5 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 6 => array(1, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 7 => array(1, "^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 8 => array(1, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 9 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 10 => array(1, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 11 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 12 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 13 => array(1, "^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 14 => array(2, "^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 16 => array(2, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 17 => array(2, "^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 18 => array(2, "^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 19 => array(2, "^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 20 => array(2, "^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 21 => array(3, "^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 23 => array(4, "^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 25 => array(5, "^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 27 => array(6, "^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 29 => array(7, "^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 31 => array(8, "^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 33 => array(9, "^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 35 => array(10, "^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 37 => array(11, "^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 39 => array(12, "^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 41 => array(13, "^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 43 => array(13, "^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 44 => array(13, "^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 45 => array(13, "^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 46 => array(13, "^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 47 => array(13, "^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 48 => array(13, "^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 49 => array(13, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 50 => array(13, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 51 => array(13, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 52 => array(13, "^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 53 => array(16, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 57 => array(16, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 58 => array(16, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 59 => array(16, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 60 => array(16, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 61 => array(16, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 62 => array(16, "^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 63 => array(16, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 64 => array(17, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 66 => array(18, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 68 => array(19, "^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 70 => array(19, "^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 71 => array(19, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 72 => array(19, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 73 => array(19, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 74 => array(19, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 75 => array(19, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 76 => array(19, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 77 => array(19, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 78 => array(19, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 79 => array(19, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 80 => array(19, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 81 => array(19, "^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 82 => array(19, "^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 83 => array(20, "^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 85 => array(20, "^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 86 => array(20, "^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 87 => array(21, "^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 89 => array(21, "^(\\d+)|^(\\s+)|^(.)"), + 90 => array(21, "^(\\s+)|^(.)"), + 91 => array(21, "^(.)"), + 92 => array(21, ""), ); // yymore is needed @@ -866,103 +874,123 @@ class Smarty_Internal_Templatelexer function yy_r2_64($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_INTEGER; - } - function yy_r2_65($yy_subpatterns) - { - $this->token = Smarty_Internal_Templateparser::TP_INCDEC; } - function yy_r2_67($yy_subpatterns) + function yy_r2_66($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_UNIMATH; } - function yy_r2_69($yy_subpatterns) + function yy_r2_68($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_MATH; } - function yy_r2_71($yy_subpatterns) + function yy_r2_70($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOLLAR; } - function yy_r2_72($yy_subpatterns) + function yy_r2_71($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON; } - function yy_r2_73($yy_subpatterns) + function yy_r2_72($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON; } - function yy_r2_74($yy_subpatterns) + function yy_r2_73($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_COLON; } - function yy_r2_75($yy_subpatterns) + function yy_r2_74($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_AT; } - function yy_r2_76($yy_subpatterns) + function yy_r2_75($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_HATCH; } - function yy_r2_77($yy_subpatterns) + function yy_r2_76($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_QUOTE; $this->yypushstate(self::DOUBLEQUOTEDSTRING); } - function yy_r2_78($yy_subpatterns) + function yy_r2_77($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; $this->yypopstate(); } - function yy_r2_79($yy_subpatterns) + function yy_r2_78($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_VERT; } - function yy_r2_80($yy_subpatterns) + function yy_r2_79($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOT; } - function yy_r2_81($yy_subpatterns) + function yy_r2_80($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_COMMA; } - function yy_r2_82($yy_subpatterns) + function yy_r2_81($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ANDSYM; } - function yy_r2_83($yy_subpatterns) + function yy_r2_82($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_QMARK; } - function yy_r2_84($yy_subpatterns) + function yy_r2_83($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ID; + $this->token = Smarty_Internal_Templateparser::TP_IF; } function yy_r2_85($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_SPACE; + $this->token = Smarty_Internal_Templateparser::TP_FOREACH; } function yy_r2_86($yy_subpatterns) { + $this->token = Smarty_Internal_Templateparser::TP_FOR; + } + function yy_r2_87($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_CONSTANT; + } + function yy_r2_89($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_ID; + } + function yy_r2_90($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_INTEGER; + } + function yy_r2_91($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_SPACE; + } + function yy_r2_92($yy_subpatterns) + { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; } diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index 42a6a91f..348612bf 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -160,67 +160,71 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph const TP_XML = 6; const TP_LDEL = 7; const TP_RDEL = 8; - const TP_EQUAL = 9; + const TP_DOLLAR = 9; const TP_ID = 10; - const TP_PTR = 11; - const TP_SPACE = 12; - const TP_SEMICOLON = 13; - const TP_DOLLAR = 14; - const TP_INCDEC = 15; - const TP_AS = 16; - const TP_APTR = 17; - const TP_LDELSLASH = 18; - const TP_INTEGER = 19; - const TP_COMMA = 20; - const TP_COLON = 21; - const TP_UNIMATH = 22; - const TP_OPENP = 23; - const TP_CLOSEP = 24; - const TP_QMARK = 25; - const TP_MATH = 26; - const TP_ANDSYM = 27; - const TP_TYPECAST = 28; - const TP_DOT = 29; - const TP_BOOLEAN = 30; - const TP_NULL = 31; - const TP_SINGLEQUOTESTRING = 32; - const TP_QUOTE = 33; - const TP_DOUBLECOLON = 34; - const TP_AT = 35; - const TP_HATCH = 36; - const TP_OPENB = 37; - const TP_CLOSEB = 38; - const TP_VERT = 39; - const TP_NOT = 40; - const TP_ISIN = 41; - const TP_ISDIVBY = 42; - const TP_ISNOTDIVBY = 43; - const TP_ISEVEN = 44; - const TP_ISNOTEVEN = 45; - const TP_ISEVENBY = 46; - const TP_ISNOTEVENBY = 47; - const TP_ISODD = 48; - const TP_ISNOTODD = 49; - const TP_ISODDBY = 50; - const TP_ISNOTODDBY = 51; - const TP_INSTANCEOF = 52; - const TP_EQUALS = 53; - const TP_NOTEQUALS = 54; - const TP_GREATERTHAN = 55; - const TP_LESSTHAN = 56; - const TP_GREATEREQUAL = 57; - const TP_LESSEQUAL = 58; - const TP_IDENTITY = 59; - const TP_NONEIDENTITY = 60; - const TP_MOD = 61; - const TP_LAND = 62; - const TP_LOR = 63; - const TP_LXOR = 64; - const TP_BACKTICK = 65; - const TP_DOLLARID = 66; - const YY_NO_ACTION = 493; - const YY_ACCEPT_ACTION = 492; - const YY_ERROR_ACTION = 491; + const TP_EQUAL = 11; + const TP_FOREACH = 12; + const TP_PTR = 13; + const TP_IF = 14; + const TP_SPACE = 15; + const TP_FOR = 16; + const TP_SEMICOLON = 17; + const TP_INCDEC = 18; + const TP_AS = 19; + const TP_APTR = 20; + const TP_LDELSLASH = 21; + const TP_INTEGER = 22; + const TP_COMMA = 23; + const TP_COLON = 24; + const TP_UNIMATH = 25; + const TP_OPENP = 26; + const TP_CLOSEP = 27; + const TP_QMARK = 28; + const TP_MATH = 29; + const TP_ANDSYM = 30; + const TP_TYPECAST = 31; + const TP_DOT = 32; + const TP_CONSTANT = 33; + const TP_BOOLEAN = 34; + const TP_NULL = 35; + const TP_SINGLEQUOTESTRING = 36; + const TP_QUOTE = 37; + const TP_DOUBLECOLON = 38; + const TP_AT = 39; + const TP_HATCH = 40; + const TP_OPENB = 41; + const TP_CLOSEB = 42; + const TP_VERT = 43; + const TP_NOT = 44; + const TP_ISIN = 45; + const TP_ISDIVBY = 46; + const TP_ISNOTDIVBY = 47; + const TP_ISEVEN = 48; + const TP_ISNOTEVEN = 49; + const TP_ISEVENBY = 50; + const TP_ISNOTEVENBY = 51; + const TP_ISODD = 52; + const TP_ISNOTODD = 53; + const TP_ISODDBY = 54; + const TP_ISNOTODDBY = 55; + const TP_INSTANCEOF = 56; + const TP_EQUALS = 57; + const TP_NOTEQUALS = 58; + const TP_GREATERTHAN = 59; + const TP_LESSTHAN = 60; + const TP_GREATEREQUAL = 61; + const TP_LESSEQUAL = 62; + const TP_IDENTITY = 63; + const TP_NONEIDENTITY = 64; + const TP_MOD = 65; + const TP_LAND = 66; + const TP_LOR = 67; + const TP_LXOR = 68; + const TP_BACKTICK = 69; + const TP_DOLLARID = 70; + const YY_NO_ACTION = 543; + const YY_ACCEPT_ACTION = 542; + const YY_ERROR_ACTION = 541; /* Next are that tables used to determine what action to take based on the ** current state and lookahead token. These tables are used to implement @@ -272,573 +276,562 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph ** shifting non-terminals after a reduce. ** self::$yy_default Default action for each state. */ - const YY_SZ_ACTTAB = 1436; + const YY_SZ_ACTTAB = 1367; static public $yy_action = array( - /* 0 */ 19, 111, 26, 164, 23, 319, 35, 73, 17, 117, - /* 10 */ 322, 194, 198, 77, 126, 42, 3, 492, 63, 224, - /* 20 */ 222, 59, 293, 323, 302, 318, 47, 166, 234, 51, - /* 30 */ 13, 19, 306, 4, 158, 51, 300, 299, 77, 314, - /* 40 */ 195, 236, 194, 198, 81, 156, 42, 36, 250, 81, - /* 50 */ 106, 45, 59, 290, 323, 302, 318, 47, 303, 37, - /* 60 */ 51, 13, 256, 19, 259, 240, 157, 312, 214, 259, - /* 70 */ 78, 161, 18, 203, 194, 160, 190, 128, 42, 3, - /* 80 */ 77, 237, 173, 194, 59, 34, 323, 302, 318, 47, - /* 90 */ 155, 234, 51, 13, 19, 306, 4, 164, 228, 300, - /* 100 */ 299, 73, 51, 166, 236, 194, 198, 306, 176, 42, - /* 110 */ 36, 300, 299, 26, 305, 59, 319, 323, 302, 318, - /* 120 */ 47, 166, 321, 51, 13, 19, 161, 269, 164, 255, - /* 130 */ 56, 212, 73, 314, 195, 239, 194, 198, 81, 161, - /* 140 */ 42, 2, 26, 225, 43, 319, 59, 247, 323, 302, - /* 150 */ 318, 47, 303, 289, 51, 13, 114, 26, 259, 28, - /* 160 */ 319, 8, 7, 280, 282, 12, 10, 304, 281, 11, - /* 170 */ 5, 8, 7, 280, 282, 12, 10, 304, 281, 11, - /* 180 */ 5, 278, 283, 284, 145, 192, 362, 15, 31, 112, - /* 190 */ 362, 278, 283, 284, 229, 208, 241, 242, 205, 252, - /* 200 */ 19, 21, 136, 234, 26, 207, 28, 319, 199, 172, - /* 210 */ 161, 194, 118, 8, 7, 280, 282, 12, 10, 304, - /* 220 */ 281, 11, 5, 8, 7, 280, 282, 12, 10, 304, - /* 230 */ 281, 11, 5, 278, 283, 284, 20, 166, 44, 19, - /* 240 */ 44, 21, 163, 278, 283, 284, 77, 187, 298, 243, - /* 250 */ 194, 198, 118, 161, 42, 36, 249, 123, 45, 277, - /* 260 */ 59, 24, 323, 302, 318, 47, 37, 21, 51, 13, - /* 270 */ 19, 234, 286, 165, 166, 183, 1, 77, 118, 310, - /* 280 */ 161, 194, 198, 161, 236, 42, 36, 21, 125, 39, - /* 290 */ 296, 59, 153, 323, 302, 318, 47, 154, 118, 51, - /* 300 */ 13, 19, 234, 166, 46, 226, 258, 358, 73, 81, - /* 310 */ 166, 161, 194, 198, 255, 142, 42, 2, 233, 124, - /* 320 */ 260, 166, 59, 153, 323, 302, 318, 47, 166, 259, - /* 330 */ 51, 13, 19, 234, 309, 159, 103, 139, 161, 73, - /* 340 */ 314, 195, 260, 194, 198, 81, 121, 42, 36, 26, - /* 350 */ 151, 295, 319, 59, 221, 323, 302, 318, 47, 303, - /* 360 */ 234, 51, 13, 19, 147, 259, 165, 21, 120, 109, - /* 370 */ 77, 138, 152, 150, 194, 198, 311, 192, 118, 36, - /* 380 */ 161, 197, 234, 234, 59, 297, 323, 302, 318, 47, - /* 390 */ 191, 214, 51, 13, 81, 18, 8, 7, 280, 282, - /* 400 */ 12, 10, 304, 281, 11, 5, 194, 27, 181, 274, - /* 410 */ 196, 219, 81, 161, 259, 33, 278, 283, 284, 314, - /* 420 */ 195, 218, 62, 22, 81, 255, 316, 88, 174, 170, - /* 430 */ 161, 64, 259, 169, 184, 360, 102, 166, 303, 360, - /* 440 */ 29, 254, 314, 195, 259, 81, 217, 81, 16, 279, - /* 450 */ 223, 222, 19, 56, 212, 165, 268, 273, 235, 77, - /* 460 */ 77, 303, 161, 194, 198, 259, 270, 259, 36, 26, - /* 470 */ 294, 129, 319, 59, 320, 323, 302, 318, 47, 186, - /* 480 */ 178, 51, 51, 19, 200, 262, 167, 266, 277, 161, - /* 490 */ 77, 161, 285, 49, 194, 198, 161, 26, 193, 36, - /* 500 */ 202, 153, 108, 166, 59, 40, 323, 302, 318, 47, - /* 510 */ 53, 26, 51, 166, 319, 40, 234, 267, 261, 263, - /* 520 */ 264, 265, 275, 276, 287, 288, 25, 267, 261, 263, - /* 530 */ 264, 265, 275, 276, 287, 288, 314, 195, 227, 62, - /* 540 */ 30, 81, 141, 219, 86, 38, 161, 260, 211, 67, - /* 550 */ 189, 307, 77, 102, 137, 303, 65, 201, 166, 260, - /* 560 */ 140, 259, 314, 195, 295, 62, 279, 81, 232, 230, - /* 570 */ 96, 295, 52, 166, 51, 131, 189, 307, 220, 102, - /* 580 */ 105, 303, 66, 100, 166, 314, 195, 259, 62, 234, - /* 590 */ 81, 99, 279, 92, 171, 295, 101, 295, 295, 189, - /* 600 */ 307, 317, 102, 166, 303, 40, 295, 177, 320, 153, - /* 610 */ 259, 295, 9, 57, 15, 279, 251, 267, 261, 263, - /* 620 */ 264, 265, 275, 276, 287, 288, 199, 314, 195, 31, - /* 630 */ 62, 209, 81, 26, 301, 91, 319, 175, 179, 315, - /* 640 */ 58, 189, 307, 182, 102, 291, 303, 75, 314, 195, - /* 650 */ 248, 62, 259, 81, 79, 213, 93, 279, 210, 22, - /* 660 */ 206, 257, 189, 307, 43, 102, 76, 303, 215, 80, - /* 670 */ 216, 314, 195, 259, 62, 292, 81, 246, 279, 90, - /* 680 */ 72, 32, 185, 245, 70, 189, 307, 6, 102, 244, - /* 690 */ 303, 233, 314, 195, 127, 62, 259, 81, 41, 161, - /* 700 */ 89, 279, 44, 84, 74, 320, 189, 307, 236, 102, - /* 710 */ 39, 303, 253, 314, 195, 308, 62, 259, 81, 50, - /* 720 */ 14, 95, 279, 276, 276, 276, 276, 189, 307, 276, - /* 730 */ 102, 276, 303, 276, 314, 195, 276, 62, 259, 81, - /* 740 */ 276, 276, 94, 279, 276, 276, 276, 276, 189, 307, - /* 750 */ 276, 102, 276, 303, 276, 276, 276, 314, 195, 259, - /* 760 */ 61, 276, 81, 276, 279, 87, 276, 276, 276, 276, - /* 770 */ 276, 189, 307, 276, 102, 276, 303, 276, 314, 195, - /* 780 */ 276, 115, 259, 81, 276, 276, 276, 279, 276, 276, - /* 790 */ 276, 276, 238, 307, 276, 102, 276, 303, 276, 314, - /* 800 */ 195, 276, 60, 259, 81, 276, 276, 85, 276, 276, - /* 810 */ 276, 168, 272, 189, 307, 276, 102, 276, 303, 276, - /* 820 */ 314, 195, 276, 115, 259, 81, 276, 276, 276, 279, - /* 830 */ 276, 276, 276, 276, 238, 307, 276, 102, 276, 303, - /* 840 */ 276, 276, 276, 314, 195, 259, 110, 276, 81, 276, - /* 850 */ 276, 276, 276, 276, 271, 276, 276, 238, 307, 276, - /* 860 */ 102, 276, 303, 276, 276, 204, 276, 276, 259, 314, - /* 870 */ 68, 276, 48, 83, 71, 276, 314, 195, 276, 110, - /* 880 */ 276, 81, 276, 238, 307, 276, 102, 276, 303, 276, - /* 890 */ 238, 307, 276, 102, 259, 303, 276, 276, 188, 276, - /* 900 */ 276, 259, 276, 276, 276, 276, 314, 69, 276, 54, - /* 910 */ 83, 71, 276, 276, 276, 276, 276, 276, 276, 276, - /* 920 */ 238, 307, 276, 102, 276, 303, 276, 276, 276, 314, - /* 930 */ 195, 259, 55, 82, 81, 276, 276, 276, 276, 276, - /* 940 */ 276, 276, 276, 238, 307, 276, 102, 276, 303, 276, - /* 950 */ 276, 276, 276, 276, 259, 314, 195, 276, 110, 276, - /* 960 */ 81, 276, 276, 276, 276, 276, 276, 276, 276, 238, - /* 970 */ 307, 276, 102, 276, 303, 276, 276, 180, 314, 195, - /* 980 */ 259, 149, 231, 81, 276, 276, 276, 276, 276, 276, - /* 990 */ 276, 276, 162, 307, 276, 102, 276, 303, 276, 276, - /* 1000 */ 276, 314, 195, 259, 110, 276, 81, 276, 276, 276, - /* 1010 */ 276, 276, 276, 276, 276, 238, 307, 276, 102, 276, - /* 1020 */ 303, 276, 276, 313, 276, 276, 259, 314, 195, 276, - /* 1030 */ 135, 276, 81, 276, 276, 276, 276, 276, 276, 276, - /* 1040 */ 276, 238, 307, 276, 102, 276, 303, 276, 276, 276, - /* 1050 */ 314, 195, 259, 107, 276, 81, 276, 276, 276, 276, - /* 1060 */ 276, 276, 276, 276, 238, 307, 276, 102, 276, 303, - /* 1070 */ 276, 276, 276, 314, 195, 259, 144, 276, 81, 276, - /* 1080 */ 276, 276, 276, 276, 276, 276, 276, 238, 307, 276, - /* 1090 */ 102, 276, 303, 276, 276, 276, 276, 276, 259, 314, - /* 1100 */ 195, 276, 113, 276, 81, 276, 276, 276, 276, 276, - /* 1110 */ 276, 276, 276, 238, 307, 276, 102, 276, 303, 276, - /* 1120 */ 276, 276, 314, 195, 259, 122, 276, 81, 276, 276, - /* 1130 */ 276, 276, 276, 276, 276, 276, 238, 307, 276, 102, - /* 1140 */ 276, 303, 276, 276, 276, 314, 195, 259, 134, 276, - /* 1150 */ 81, 276, 276, 276, 276, 276, 276, 276, 276, 238, - /* 1160 */ 307, 276, 102, 276, 303, 276, 276, 276, 276, 276, - /* 1170 */ 259, 314, 195, 276, 143, 276, 81, 276, 276, 276, - /* 1180 */ 276, 276, 276, 276, 276, 238, 307, 276, 102, 276, - /* 1190 */ 303, 276, 276, 276, 314, 195, 259, 132, 276, 81, - /* 1200 */ 276, 276, 276, 276, 276, 276, 276, 276, 238, 307, - /* 1210 */ 276, 102, 276, 303, 276, 276, 276, 314, 195, 259, - /* 1220 */ 146, 276, 81, 276, 276, 276, 276, 276, 276, 276, - /* 1230 */ 276, 238, 307, 276, 102, 276, 303, 276, 276, 276, - /* 1240 */ 276, 276, 259, 314, 195, 276, 148, 276, 81, 276, - /* 1250 */ 276, 276, 276, 276, 276, 276, 276, 238, 307, 276, - /* 1260 */ 102, 276, 303, 276, 276, 276, 314, 195, 259, 130, - /* 1270 */ 276, 81, 276, 276, 276, 276, 276, 276, 276, 276, - /* 1280 */ 238, 307, 276, 102, 276, 303, 276, 276, 276, 314, - /* 1290 */ 195, 259, 116, 276, 81, 276, 276, 276, 276, 276, - /* 1300 */ 276, 276, 276, 238, 307, 276, 102, 276, 303, 276, - /* 1310 */ 276, 276, 276, 276, 259, 314, 195, 276, 133, 276, - /* 1320 */ 81, 276, 276, 276, 276, 276, 276, 276, 276, 238, - /* 1330 */ 307, 276, 102, 276, 303, 276, 276, 276, 314, 195, - /* 1340 */ 259, 119, 276, 81, 276, 276, 276, 276, 276, 276, - /* 1350 */ 276, 276, 238, 307, 276, 102, 276, 303, 276, 276, - /* 1360 */ 276, 314, 195, 259, 276, 276, 81, 276, 276, 276, - /* 1370 */ 276, 276, 276, 276, 276, 238, 307, 276, 98, 276, - /* 1380 */ 303, 276, 276, 276, 276, 276, 259, 314, 195, 276, - /* 1390 */ 276, 276, 81, 276, 276, 276, 276, 276, 276, 276, - /* 1400 */ 276, 238, 307, 276, 97, 276, 303, 276, 276, 276, - /* 1410 */ 314, 195, 259, 276, 276, 81, 276, 276, 276, 276, - /* 1420 */ 276, 276, 276, 276, 238, 307, 276, 104, 276, 303, - /* 1430 */ 276, 276, 276, 276, 276, 259, + /* 0 */ 15, 156, 72, 49, 266, 88, 286, 201, 18, 190, + /* 10 */ 28, 317, 284, 320, 109, 192, 275, 278, 44, 7, + /* 20 */ 115, 8, 28, 209, 62, 216, 356, 348, 341, 352, + /* 30 */ 48, 276, 231, 52, 13, 15, 299, 73, 182, 175, + /* 40 */ 302, 83, 242, 74, 61, 89, 84, 178, 299, 109, + /* 50 */ 192, 214, 213, 44, 9, 243, 71, 198, 114, 62, + /* 60 */ 339, 356, 348, 341, 352, 48, 245, 28, 52, 13, + /* 70 */ 320, 15, 11, 77, 182, 268, 302, 83, 148, 75, + /* 80 */ 51, 89, 84, 47, 153, 109, 192, 52, 132, 44, + /* 90 */ 9, 243, 38, 299, 114, 62, 339, 356, 348, 341, + /* 100 */ 352, 48, 245, 28, 52, 13, 177, 15, 11, 71, + /* 110 */ 170, 46, 270, 203, 285, 315, 208, 316, 15, 36, + /* 120 */ 57, 109, 192, 27, 28, 44, 30, 320, 26, 299, + /* 130 */ 47, 62, 109, 356, 348, 341, 352, 48, 178, 38, + /* 140 */ 52, 13, 251, 15, 186, 73, 182, 220, 302, 219, + /* 150 */ 299, 221, 159, 228, 90, 327, 211, 109, 192, 207, + /* 160 */ 121, 44, 30, 243, 20, 169, 114, 62, 339, 356, + /* 170 */ 348, 341, 352, 48, 245, 291, 52, 13, 15, 18, + /* 180 */ 73, 182, 184, 306, 28, 175, 194, 320, 25, 90, + /* 190 */ 178, 115, 109, 192, 39, 265, 44, 7, 542, 66, + /* 200 */ 235, 272, 62, 196, 356, 348, 341, 352, 48, 245, + /* 210 */ 299, 52, 13, 15, 18, 73, 171, 319, 302, 303, + /* 220 */ 224, 221, 58, 91, 90, 166, 115, 109, 192, 239, + /* 230 */ 257, 44, 7, 243, 164, 152, 114, 62, 339, 356, + /* 240 */ 348, 341, 352, 48, 245, 405, 52, 13, 15, 250, + /* 250 */ 73, 172, 175, 302, 219, 242, 221, 159, 218, 90, + /* 260 */ 178, 163, 109, 192, 90, 151, 44, 30, 243, 178, + /* 270 */ 286, 114, 62, 339, 356, 348, 341, 352, 48, 245, + /* 280 */ 244, 52, 13, 15, 245, 71, 176, 59, 305, 24, + /* 290 */ 142, 71, 135, 28, 334, 168, 320, 109, 192, 138, + /* 300 */ 168, 44, 30, 248, 168, 291, 199, 62, 342, 356, + /* 310 */ 348, 341, 352, 48, 291, 175, 52, 13, 15, 299, + /* 320 */ 71, 180, 52, 302, 205, 35, 221, 54, 85, 90, + /* 330 */ 16, 28, 109, 192, 320, 26, 44, 30, 243, 260, + /* 340 */ 242, 114, 62, 339, 356, 348, 341, 352, 48, 245, + /* 350 */ 178, 52, 13, 15, 18, 71, 173, 299, 302, 179, + /* 360 */ 146, 221, 160, 271, 90, 20, 115, 109, 183, 34, + /* 370 */ 123, 415, 30, 243, 45, 167, 114, 62, 339, 356, + /* 380 */ 348, 341, 352, 48, 245, 291, 52, 13, 23, 6, + /* 390 */ 5, 290, 289, 2, 3, 287, 288, 4, 10, 15, + /* 400 */ 31, 71, 180, 155, 28, 333, 33, 320, 286, 345, + /* 410 */ 346, 347, 18, 109, 192, 344, 158, 233, 30, 28, + /* 420 */ 55, 286, 320, 62, 115, 356, 348, 341, 352, 48, + /* 430 */ 299, 246, 52, 13, 6, 5, 290, 289, 2, 3, + /* 440 */ 287, 288, 4, 10, 129, 299, 212, 175, 284, 112, + /* 450 */ 328, 211, 275, 278, 345, 346, 347, 302, 343, 240, + /* 460 */ 221, 22, 90, 90, 312, 6, 5, 290, 289, 2, + /* 470 */ 3, 287, 288, 4, 10, 178, 168, 339, 302, 279, + /* 480 */ 298, 221, 245, 245, 90, 345, 346, 347, 6, 5, + /* 490 */ 290, 289, 2, 3, 287, 288, 4, 10, 339, 355, + /* 500 */ 297, 237, 272, 225, 245, 226, 175, 175, 345, 346, + /* 510 */ 347, 124, 6, 5, 290, 289, 2, 3, 287, 288, + /* 520 */ 4, 10, 15, 284, 71, 181, 291, 275, 278, 17, + /* 530 */ 46, 46, 345, 346, 347, 178, 109, 192, 116, 321, + /* 540 */ 256, 30, 15, 168, 71, 180, 62, 189, 356, 348, + /* 550 */ 341, 352, 48, 291, 19, 52, 109, 192, 50, 227, + /* 560 */ 230, 30, 241, 178, 229, 42, 62, 215, 356, 348, + /* 570 */ 341, 352, 48, 28, 318, 52, 320, 311, 310, 307, + /* 580 */ 308, 309, 295, 294, 280, 281, 302, 222, 107, 221, + /* 590 */ 65, 276, 90, 267, 174, 95, 185, 191, 283, 299, + /* 600 */ 90, 243, 178, 312, 114, 175, 339, 178, 350, 42, + /* 610 */ 255, 238, 245, 302, 323, 175, 221, 277, 92, 90, + /* 620 */ 245, 311, 310, 307, 308, 309, 295, 294, 280, 281, + /* 630 */ 136, 302, 222, 339, 221, 65, 130, 90, 248, 245, + /* 640 */ 101, 32, 71, 178, 126, 291, 243, 319, 134, 114, + /* 650 */ 178, 339, 42, 282, 254, 1, 331, 245, 321, 67, + /* 660 */ 178, 175, 277, 291, 311, 310, 307, 308, 309, 295, + /* 670 */ 294, 280, 281, 52, 258, 357, 321, 302, 222, 87, + /* 680 */ 221, 65, 175, 90, 358, 118, 100, 337, 322, 178, + /* 690 */ 165, 90, 243, 353, 175, 114, 186, 339, 302, 222, + /* 700 */ 291, 221, 65, 245, 90, 197, 105, 102, 277, 56, + /* 710 */ 338, 245, 296, 243, 79, 106, 114, 175, 339, 175, + /* 720 */ 108, 312, 302, 222, 245, 221, 65, 354, 90, 277, + /* 730 */ 312, 97, 193, 236, 175, 312, 137, 243, 234, 119, + /* 740 */ 114, 69, 339, 302, 222, 18, 221, 65, 245, 90, + /* 750 */ 249, 291, 104, 277, 291, 78, 312, 115, 243, 329, + /* 760 */ 293, 114, 178, 339, 76, 70, 292, 175, 37, 245, + /* 770 */ 336, 259, 215, 175, 277, 302, 222, 175, 221, 64, + /* 780 */ 312, 90, 232, 40, 96, 71, 330, 263, 144, 175, + /* 790 */ 243, 23, 82, 114, 175, 339, 300, 68, 273, 302, + /* 800 */ 222, 245, 221, 65, 80, 90, 277, 195, 98, 332, + /* 810 */ 335, 326, 312, 140, 243, 349, 52, 114, 117, 339, + /* 820 */ 302, 222, 175, 221, 65, 245, 90, 131, 291, 93, + /* 830 */ 277, 187, 351, 291, 325, 243, 340, 324, 114, 175, + /* 840 */ 339, 175, 291, 304, 141, 206, 245, 408, 27, 29, + /* 850 */ 175, 277, 302, 222, 408, 221, 63, 261, 90, 291, + /* 860 */ 41, 94, 274, 175, 81, 266, 43, 243, 86, 319, + /* 870 */ 114, 252, 339, 223, 264, 14, 302, 222, 245, 221, + /* 880 */ 65, 200, 90, 277, 21, 103, 321, 53, 39, 109, + /* 890 */ 12, 243, 127, 262, 114, 296, 339, 302, 222, 296, + /* 900 */ 221, 65, 245, 90, 296, 269, 99, 277, 296, 296, + /* 910 */ 296, 296, 243, 296, 296, 114, 252, 339, 296, 296, + /* 920 */ 14, 296, 296, 245, 296, 296, 296, 296, 277, 302, + /* 930 */ 303, 296, 221, 120, 109, 90, 296, 60, 247, 296, + /* 940 */ 296, 296, 296, 296, 243, 296, 296, 114, 296, 339, + /* 950 */ 253, 296, 217, 302, 303, 245, 221, 120, 296, 90, + /* 960 */ 296, 296, 296, 296, 296, 296, 296, 296, 243, 296, + /* 970 */ 296, 114, 296, 339, 302, 303, 210, 221, 120, 245, + /* 980 */ 90, 296, 60, 247, 296, 296, 296, 296, 296, 243, + /* 990 */ 296, 296, 114, 296, 339, 296, 296, 188, 296, 296, + /* 1000 */ 245, 296, 296, 296, 302, 303, 296, 221, 120, 296, + /* 1010 */ 90, 302, 303, 296, 221, 154, 296, 90, 296, 243, + /* 1020 */ 296, 296, 114, 296, 339, 296, 243, 301, 296, 114, + /* 1030 */ 245, 339, 302, 303, 296, 221, 128, 245, 90, 296, + /* 1040 */ 296, 296, 296, 296, 296, 296, 296, 243, 296, 296, + /* 1050 */ 114, 296, 339, 302, 303, 296, 221, 143, 245, 90, + /* 1060 */ 296, 296, 296, 296, 296, 296, 296, 296, 243, 296, + /* 1070 */ 296, 114, 296, 339, 296, 296, 296, 296, 296, 245, + /* 1080 */ 302, 303, 296, 221, 161, 296, 90, 302, 303, 296, + /* 1090 */ 221, 125, 296, 90, 296, 243, 296, 296, 114, 296, + /* 1100 */ 339, 296, 243, 296, 296, 114, 245, 339, 302, 303, + /* 1110 */ 296, 221, 162, 245, 90, 296, 296, 296, 296, 296, + /* 1120 */ 296, 296, 296, 243, 296, 296, 114, 296, 339, 302, + /* 1130 */ 303, 296, 221, 157, 245, 90, 296, 296, 296, 296, + /* 1140 */ 296, 296, 296, 296, 243, 296, 296, 114, 296, 339, + /* 1150 */ 296, 296, 296, 296, 296, 245, 302, 303, 296, 221, + /* 1160 */ 122, 296, 90, 302, 303, 296, 221, 149, 296, 90, + /* 1170 */ 296, 243, 296, 296, 114, 296, 339, 296, 243, 296, + /* 1180 */ 296, 114, 245, 339, 302, 303, 296, 221, 133, 245, + /* 1190 */ 90, 296, 296, 296, 296, 296, 296, 296, 296, 243, + /* 1200 */ 296, 296, 114, 296, 339, 302, 303, 296, 221, 145, + /* 1210 */ 245, 90, 296, 296, 296, 296, 296, 296, 296, 296, + /* 1220 */ 243, 296, 296, 114, 296, 339, 296, 296, 296, 296, + /* 1230 */ 296, 245, 302, 303, 296, 221, 147, 296, 90, 302, + /* 1240 */ 303, 296, 221, 139, 296, 90, 296, 243, 296, 296, + /* 1250 */ 114, 296, 339, 296, 243, 296, 296, 114, 245, 339, + /* 1260 */ 302, 303, 296, 221, 150, 245, 90, 296, 296, 296, + /* 1270 */ 296, 296, 296, 296, 296, 243, 296, 296, 114, 296, + /* 1280 */ 339, 302, 303, 296, 221, 296, 245, 90, 296, 296, + /* 1290 */ 296, 296, 296, 296, 296, 296, 243, 296, 296, 111, + /* 1300 */ 296, 339, 296, 296, 296, 296, 296, 245, 302, 303, + /* 1310 */ 296, 221, 302, 303, 90, 221, 302, 204, 90, 221, + /* 1320 */ 296, 296, 90, 243, 296, 296, 113, 243, 339, 296, + /* 1330 */ 110, 202, 339, 296, 245, 296, 339, 296, 245, 296, + /* 1340 */ 302, 314, 245, 221, 296, 296, 90, 296, 296, 296, + /* 1350 */ 296, 296, 296, 296, 296, 313, 296, 296, 296, 296, + /* 1360 */ 339, 296, 296, 296, 296, 296, 245, ); static public $yy_lookahead = array( - /* 0 */ 7, 95, 7, 10, 9, 10, 7, 14, 20, 10, - /* 10 */ 15, 18, 19, 14, 73, 22, 23, 68, 69, 70, - /* 20 */ 71, 28, 10, 30, 31, 32, 33, 39, 87, 36, - /* 30 */ 37, 7, 22, 40, 10, 36, 26, 27, 14, 71, - /* 40 */ 72, 100, 18, 19, 76, 72, 22, 23, 38, 76, - /* 50 */ 95, 29, 28, 85, 30, 31, 32, 33, 90, 37, - /* 60 */ 36, 37, 38, 7, 96, 92, 10, 8, 3, 96, - /* 70 */ 14, 12, 7, 10, 18, 19, 10, 73, 22, 23, - /* 80 */ 14, 8, 19, 18, 28, 21, 30, 31, 32, 33, - /* 90 */ 8, 87, 36, 37, 7, 22, 40, 10, 33, 26, - /* 100 */ 27, 14, 36, 39, 100, 18, 19, 22, 16, 22, - /* 110 */ 23, 26, 27, 7, 8, 28, 10, 30, 31, 32, - /* 120 */ 33, 39, 8, 36, 37, 7, 12, 8, 10, 15, - /* 130 */ 65, 66, 14, 71, 72, 8, 18, 19, 76, 12, - /* 140 */ 22, 23, 7, 8, 52, 10, 28, 85, 30, 31, - /* 150 */ 32, 33, 90, 24, 36, 37, 95, 7, 96, 9, - /* 160 */ 10, 42, 43, 44, 45, 46, 47, 48, 49, 50, - /* 170 */ 51, 42, 43, 44, 45, 46, 47, 48, 49, 50, - /* 180 */ 51, 62, 63, 64, 13, 35, 8, 9, 9, 73, - /* 190 */ 12, 62, 63, 64, 1, 2, 3, 4, 5, 6, - /* 200 */ 7, 23, 78, 87, 7, 24, 9, 10, 29, 11, - /* 210 */ 12, 18, 34, 42, 43, 44, 45, 46, 47, 48, - /* 220 */ 49, 50, 51, 42, 43, 44, 45, 46, 47, 48, - /* 230 */ 49, 50, 51, 62, 63, 64, 9, 39, 11, 7, - /* 240 */ 11, 23, 10, 62, 63, 64, 14, 29, 10, 8, - /* 250 */ 18, 19, 34, 12, 22, 23, 38, 73, 29, 24, - /* 260 */ 28, 17, 30, 31, 32, 33, 37, 23, 36, 37, - /* 270 */ 7, 87, 8, 10, 39, 11, 12, 14, 34, 8, - /* 280 */ 12, 18, 19, 12, 100, 22, 23, 23, 73, 21, - /* 290 */ 8, 28, 77, 30, 31, 32, 33, 8, 34, 36, - /* 300 */ 37, 7, 87, 39, 10, 72, 19, 8, 14, 76, - /* 310 */ 39, 12, 18, 19, 15, 94, 22, 23, 97, 73, - /* 320 */ 99, 39, 28, 77, 30, 31, 32, 33, 39, 96, - /* 330 */ 36, 37, 7, 87, 8, 10, 83, 94, 12, 14, - /* 340 */ 71, 72, 99, 18, 19, 76, 73, 22, 23, 7, - /* 350 */ 77, 98, 10, 28, 85, 30, 31, 32, 33, 90, - /* 360 */ 87, 36, 37, 7, 13, 96, 10, 23, 73, 73, - /* 370 */ 14, 20, 77, 77, 18, 19, 8, 35, 34, 23, - /* 380 */ 12, 21, 87, 87, 28, 10, 30, 31, 32, 33, - /* 390 */ 72, 3, 36, 37, 76, 7, 42, 43, 44, 45, - /* 400 */ 46, 47, 48, 49, 50, 51, 18, 7, 72, 8, - /* 410 */ 35, 71, 76, 12, 96, 17, 62, 63, 64, 71, - /* 420 */ 72, 33, 74, 23, 76, 15, 8, 79, 80, 81, - /* 430 */ 12, 91, 96, 85, 86, 8, 88, 39, 90, 12, - /* 440 */ 25, 72, 71, 72, 96, 76, 106, 76, 20, 101, - /* 450 */ 70, 71, 7, 65, 66, 10, 85, 86, 8, 14, - /* 460 */ 14, 90, 12, 18, 19, 96, 38, 96, 23, 7, - /* 470 */ 8, 95, 10, 28, 98, 30, 31, 32, 33, 17, - /* 480 */ 10, 36, 36, 7, 14, 8, 10, 8, 24, 12, - /* 490 */ 14, 12, 8, 10, 18, 19, 12, 7, 24, 23, - /* 500 */ 10, 77, 73, 39, 28, 41, 30, 31, 32, 33, - /* 510 */ 78, 7, 36, 39, 10, 41, 87, 53, 54, 55, - /* 520 */ 56, 57, 58, 59, 60, 61, 102, 53, 54, 55, - /* 530 */ 56, 57, 58, 59, 60, 61, 71, 72, 10, 74, - /* 540 */ 21, 76, 94, 71, 79, 7, 12, 99, 10, 83, - /* 550 */ 85, 86, 14, 88, 94, 90, 83, 19, 39, 99, - /* 560 */ 10, 96, 71, 72, 98, 74, 101, 76, 30, 31, - /* 570 */ 79, 98, 78, 39, 36, 73, 85, 86, 106, 88, - /* 580 */ 83, 90, 83, 83, 39, 71, 72, 96, 74, 87, - /* 590 */ 76, 83, 101, 79, 84, 98, 83, 98, 98, 85, - /* 600 */ 86, 12, 88, 39, 90, 41, 98, 82, 98, 77, - /* 610 */ 96, 98, 82, 78, 9, 101, 10, 53, 54, 55, - /* 620 */ 56, 57, 58, 59, 60, 61, 29, 71, 72, 9, - /* 630 */ 74, 3, 76, 7, 8, 79, 10, 10, 16, 8, - /* 640 */ 10, 85, 86, 17, 88, 8, 90, 14, 71, 72, - /* 650 */ 4, 74, 96, 76, 14, 8, 79, 101, 65, 23, - /* 660 */ 3, 38, 85, 86, 52, 88, 14, 90, 36, 24, - /* 670 */ 36, 71, 72, 96, 74, 24, 76, 24, 101, 79, - /* 680 */ 14, 25, 10, 4, 14, 85, 86, 103, 88, 87, - /* 690 */ 90, 97, 71, 72, 95, 74, 96, 76, 89, 12, - /* 700 */ 79, 101, 11, 92, 14, 98, 85, 86, 100, 88, - /* 710 */ 21, 90, 99, 71, 72, 80, 74, 96, 76, 95, - /* 720 */ 23, 79, 101, 107, 107, 107, 107, 85, 86, 107, - /* 730 */ 88, 107, 90, 107, 71, 72, 107, 74, 96, 76, - /* 740 */ 107, 107, 79, 101, 107, 107, 107, 107, 85, 86, - /* 750 */ 107, 88, 107, 90, 107, 107, 107, 71, 72, 96, - /* 760 */ 74, 107, 76, 107, 101, 79, 107, 107, 107, 107, - /* 770 */ 107, 85, 86, 107, 88, 107, 90, 107, 71, 72, - /* 780 */ 107, 74, 96, 76, 107, 107, 107, 101, 107, 107, - /* 790 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 71, - /* 800 */ 72, 107, 74, 96, 76, 107, 107, 79, 107, 107, - /* 810 */ 107, 104, 105, 85, 86, 107, 88, 107, 90, 107, - /* 820 */ 71, 72, 107, 74, 96, 76, 107, 107, 107, 101, - /* 830 */ 107, 107, 107, 107, 85, 86, 107, 88, 107, 90, - /* 840 */ 107, 107, 107, 71, 72, 96, 74, 107, 76, 107, - /* 850 */ 107, 107, 107, 107, 105, 107, 107, 85, 86, 107, - /* 860 */ 88, 107, 90, 107, 107, 93, 107, 107, 96, 71, - /* 870 */ 72, 107, 74, 75, 76, 107, 71, 72, 107, 74, - /* 880 */ 107, 76, 107, 85, 86, 107, 88, 107, 90, 107, - /* 890 */ 85, 86, 107, 88, 96, 90, 107, 107, 93, 107, - /* 900 */ 107, 96, 107, 107, 107, 107, 71, 72, 107, 74, - /* 910 */ 75, 76, 107, 107, 107, 107, 107, 107, 107, 107, - /* 920 */ 85, 86, 107, 88, 107, 90, 107, 107, 107, 71, - /* 930 */ 72, 96, 74, 75, 76, 107, 107, 107, 107, 107, - /* 940 */ 107, 107, 107, 85, 86, 107, 88, 107, 90, 107, - /* 950 */ 107, 107, 107, 107, 96, 71, 72, 107, 74, 107, - /* 960 */ 76, 107, 107, 107, 107, 107, 107, 107, 107, 85, - /* 970 */ 86, 107, 88, 107, 90, 107, 107, 93, 71, 72, - /* 980 */ 96, 74, 75, 76, 107, 107, 107, 107, 107, 107, - /* 990 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 107, - /* 1000 */ 107, 71, 72, 96, 74, 107, 76, 107, 107, 107, - /* 1010 */ 107, 107, 107, 107, 107, 85, 86, 107, 88, 107, - /* 1020 */ 90, 107, 107, 93, 107, 107, 96, 71, 72, 107, - /* 1030 */ 74, 107, 76, 107, 107, 107, 107, 107, 107, 107, - /* 1040 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 107, - /* 1050 */ 71, 72, 96, 74, 107, 76, 107, 107, 107, 107, - /* 1060 */ 107, 107, 107, 107, 85, 86, 107, 88, 107, 90, - /* 1070 */ 107, 107, 107, 71, 72, 96, 74, 107, 76, 107, - /* 1080 */ 107, 107, 107, 107, 107, 107, 107, 85, 86, 107, - /* 1090 */ 88, 107, 90, 107, 107, 107, 107, 107, 96, 71, - /* 1100 */ 72, 107, 74, 107, 76, 107, 107, 107, 107, 107, - /* 1110 */ 107, 107, 107, 85, 86, 107, 88, 107, 90, 107, - /* 1120 */ 107, 107, 71, 72, 96, 74, 107, 76, 107, 107, - /* 1130 */ 107, 107, 107, 107, 107, 107, 85, 86, 107, 88, - /* 1140 */ 107, 90, 107, 107, 107, 71, 72, 96, 74, 107, - /* 1150 */ 76, 107, 107, 107, 107, 107, 107, 107, 107, 85, - /* 1160 */ 86, 107, 88, 107, 90, 107, 107, 107, 107, 107, - /* 1170 */ 96, 71, 72, 107, 74, 107, 76, 107, 107, 107, - /* 1180 */ 107, 107, 107, 107, 107, 85, 86, 107, 88, 107, - /* 1190 */ 90, 107, 107, 107, 71, 72, 96, 74, 107, 76, - /* 1200 */ 107, 107, 107, 107, 107, 107, 107, 107, 85, 86, - /* 1210 */ 107, 88, 107, 90, 107, 107, 107, 71, 72, 96, - /* 1220 */ 74, 107, 76, 107, 107, 107, 107, 107, 107, 107, - /* 1230 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 107, - /* 1240 */ 107, 107, 96, 71, 72, 107, 74, 107, 76, 107, - /* 1250 */ 107, 107, 107, 107, 107, 107, 107, 85, 86, 107, - /* 1260 */ 88, 107, 90, 107, 107, 107, 71, 72, 96, 74, - /* 1270 */ 107, 76, 107, 107, 107, 107, 107, 107, 107, 107, - /* 1280 */ 85, 86, 107, 88, 107, 90, 107, 107, 107, 71, - /* 1290 */ 72, 96, 74, 107, 76, 107, 107, 107, 107, 107, - /* 1300 */ 107, 107, 107, 85, 86, 107, 88, 107, 90, 107, - /* 1310 */ 107, 107, 107, 107, 96, 71, 72, 107, 74, 107, - /* 1320 */ 76, 107, 107, 107, 107, 107, 107, 107, 107, 85, - /* 1330 */ 86, 107, 88, 107, 90, 107, 107, 107, 71, 72, - /* 1340 */ 96, 74, 107, 76, 107, 107, 107, 107, 107, 107, - /* 1350 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 107, - /* 1360 */ 107, 71, 72, 96, 107, 107, 76, 107, 107, 107, - /* 1370 */ 107, 107, 107, 107, 107, 85, 86, 107, 88, 107, - /* 1380 */ 90, 107, 107, 107, 107, 107, 96, 71, 72, 107, - /* 1390 */ 107, 107, 76, 107, 107, 107, 107, 107, 107, 107, - /* 1400 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 107, - /* 1410 */ 71, 72, 96, 107, 107, 76, 107, 107, 107, 107, - /* 1420 */ 107, 107, 107, 107, 85, 86, 107, 88, 107, 90, - /* 1430 */ 107, 107, 107, 107, 107, 96, + /* 0 */ 7, 99, 9, 10, 102, 12, 104, 14, 26, 16, + /* 10 */ 7, 8, 25, 10, 21, 22, 29, 30, 25, 26, + /* 20 */ 38, 108, 7, 20, 31, 10, 33, 34, 35, 36, + /* 30 */ 37, 27, 8, 40, 41, 7, 33, 9, 10, 15, + /* 40 */ 75, 76, 18, 78, 79, 80, 81, 43, 33, 21, + /* 50 */ 22, 9, 10, 25, 26, 90, 9, 10, 93, 31, + /* 60 */ 95, 33, 34, 35, 36, 37, 101, 7, 40, 41, + /* 70 */ 10, 7, 44, 9, 10, 33, 75, 76, 17, 78, + /* 80 */ 79, 80, 81, 32, 23, 21, 22, 40, 100, 25, + /* 90 */ 26, 90, 41, 33, 93, 31, 95, 33, 34, 35, + /* 100 */ 36, 37, 101, 7, 40, 41, 10, 7, 44, 9, + /* 110 */ 10, 13, 1, 2, 3, 4, 5, 6, 7, 24, + /* 120 */ 83, 21, 22, 11, 7, 25, 26, 10, 11, 33, + /* 130 */ 32, 31, 21, 33, 34, 35, 36, 37, 43, 41, + /* 140 */ 40, 41, 42, 7, 32, 9, 10, 10, 75, 76, + /* 150 */ 33, 78, 79, 8, 81, 8, 39, 21, 22, 22, + /* 160 */ 77, 25, 26, 90, 11, 82, 93, 31, 95, 33, + /* 170 */ 34, 35, 36, 37, 101, 92, 40, 41, 7, 26, + /* 180 */ 9, 10, 109, 110, 7, 15, 78, 10, 11, 81, + /* 190 */ 43, 38, 21, 22, 24, 18, 25, 26, 72, 73, + /* 200 */ 74, 75, 31, 89, 33, 34, 35, 36, 37, 101, + /* 210 */ 33, 40, 41, 7, 26, 9, 10, 103, 75, 76, + /* 220 */ 32, 78, 79, 80, 81, 8, 38, 21, 22, 10, + /* 230 */ 42, 25, 26, 90, 8, 83, 93, 31, 95, 33, + /* 240 */ 34, 35, 36, 37, 101, 8, 40, 41, 7, 42, + /* 250 */ 9, 10, 15, 75, 76, 18, 78, 79, 39, 81, + /* 260 */ 43, 78, 21, 22, 81, 99, 25, 26, 90, 43, + /* 270 */ 104, 93, 31, 95, 33, 34, 35, 36, 37, 101, + /* 280 */ 97, 40, 41, 7, 101, 9, 10, 83, 110, 7, + /* 290 */ 77, 9, 10, 7, 8, 82, 10, 21, 22, 77, + /* 300 */ 82, 25, 26, 75, 82, 92, 20, 31, 8, 33, + /* 310 */ 34, 35, 36, 37, 92, 15, 40, 41, 7, 33, + /* 320 */ 9, 10, 40, 75, 76, 107, 78, 79, 80, 81, + /* 330 */ 23, 7, 21, 22, 10, 11, 25, 26, 90, 111, + /* 340 */ 18, 93, 31, 95, 33, 34, 35, 36, 37, 101, + /* 350 */ 43, 40, 41, 7, 26, 9, 10, 33, 75, 76, + /* 360 */ 17, 78, 79, 80, 81, 11, 38, 21, 22, 7, + /* 370 */ 77, 43, 26, 90, 56, 82, 93, 31, 95, 33, + /* 380 */ 34, 35, 36, 37, 101, 92, 40, 41, 26, 46, + /* 390 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, + /* 400 */ 20, 9, 10, 99, 7, 8, 20, 10, 104, 66, + /* 410 */ 67, 68, 26, 21, 22, 27, 99, 8, 26, 7, + /* 420 */ 83, 104, 10, 31, 38, 33, 34, 35, 36, 37, + /* 430 */ 33, 8, 40, 41, 46, 47, 48, 49, 50, 51, + /* 440 */ 52, 53, 54, 55, 100, 33, 27, 15, 25, 88, + /* 450 */ 8, 39, 29, 30, 66, 67, 68, 75, 76, 78, + /* 460 */ 78, 23, 81, 81, 103, 46, 47, 48, 49, 50, + /* 470 */ 51, 52, 53, 54, 55, 43, 82, 95, 75, 76, + /* 480 */ 42, 78, 101, 101, 81, 66, 67, 68, 46, 47, + /* 490 */ 48, 49, 50, 51, 52, 53, 54, 55, 95, 8, + /* 500 */ 8, 74, 75, 10, 101, 13, 15, 15, 66, 67, + /* 510 */ 68, 77, 46, 47, 48, 49, 50, 51, 52, 53, + /* 520 */ 54, 55, 7, 25, 9, 10, 92, 29, 30, 11, + /* 530 */ 13, 13, 66, 67, 68, 43, 21, 22, 77, 105, + /* 540 */ 42, 26, 7, 82, 9, 10, 31, 27, 33, 34, + /* 550 */ 35, 36, 37, 92, 11, 40, 21, 22, 10, 10, + /* 560 */ 12, 26, 14, 43, 16, 45, 31, 24, 33, 34, + /* 570 */ 35, 36, 37, 7, 8, 40, 10, 57, 58, 59, + /* 580 */ 60, 61, 62, 63, 64, 65, 75, 76, 88, 78, + /* 590 */ 79, 27, 81, 85, 86, 84, 85, 78, 8, 33, + /* 600 */ 81, 90, 43, 103, 93, 15, 95, 43, 8, 45, + /* 610 */ 104, 10, 101, 75, 76, 15, 78, 106, 15, 81, + /* 620 */ 101, 57, 58, 59, 60, 61, 62, 63, 64, 65, + /* 630 */ 77, 75, 76, 95, 78, 79, 100, 81, 75, 101, + /* 640 */ 84, 24, 9, 43, 100, 92, 90, 103, 77, 93, + /* 650 */ 43, 95, 45, 10, 8, 15, 40, 101, 105, 96, + /* 660 */ 43, 15, 106, 92, 57, 58, 59, 60, 61, 62, + /* 670 */ 63, 64, 65, 40, 111, 8, 105, 75, 76, 27, + /* 680 */ 78, 79, 15, 81, 4, 77, 84, 8, 78, 43, + /* 690 */ 82, 81, 90, 22, 15, 93, 32, 95, 75, 76, + /* 700 */ 92, 78, 79, 101, 81, 19, 88, 84, 106, 10, + /* 710 */ 8, 101, 8, 90, 9, 88, 93, 15, 95, 15, + /* 720 */ 88, 103, 75, 76, 101, 78, 79, 8, 81, 106, + /* 730 */ 103, 84, 13, 40, 15, 103, 77, 90, 8, 77, + /* 740 */ 93, 88, 95, 75, 76, 26, 78, 79, 101, 81, + /* 750 */ 69, 92, 84, 106, 92, 9, 103, 38, 90, 8, + /* 760 */ 8, 93, 43, 95, 9, 88, 8, 15, 28, 101, + /* 770 */ 8, 10, 24, 15, 106, 75, 76, 15, 78, 79, + /* 780 */ 103, 81, 8, 7, 84, 9, 10, 8, 10, 15, + /* 790 */ 90, 26, 9, 93, 15, 95, 27, 88, 22, 75, + /* 800 */ 76, 101, 78, 79, 9, 81, 106, 19, 84, 33, + /* 810 */ 34, 35, 103, 77, 90, 8, 40, 93, 77, 95, + /* 820 */ 75, 76, 15, 78, 79, 101, 81, 77, 92, 84, + /* 830 */ 106, 3, 8, 92, 8, 90, 4, 8, 93, 15, + /* 840 */ 95, 15, 92, 8, 77, 3, 101, 8, 11, 28, + /* 850 */ 15, 106, 75, 76, 15, 78, 79, 27, 81, 92, + /* 860 */ 15, 84, 92, 15, 9, 102, 94, 90, 97, 103, + /* 870 */ 93, 3, 95, 91, 15, 7, 75, 76, 101, 78, + /* 880 */ 79, 87, 81, 106, 26, 84, 105, 100, 24, 21, + /* 890 */ 87, 90, 100, 85, 93, 112, 95, 75, 76, 112, + /* 900 */ 78, 79, 101, 81, 112, 37, 84, 106, 112, 112, + /* 910 */ 112, 112, 90, 112, 112, 93, 3, 95, 112, 112, + /* 920 */ 7, 112, 112, 101, 112, 112, 112, 112, 106, 75, + /* 930 */ 76, 112, 78, 79, 21, 81, 112, 69, 70, 112, + /* 940 */ 112, 112, 112, 112, 90, 112, 112, 93, 112, 95, + /* 950 */ 37, 112, 98, 75, 76, 101, 78, 79, 112, 81, + /* 960 */ 112, 112, 112, 112, 112, 112, 112, 112, 90, 112, + /* 970 */ 112, 93, 112, 95, 75, 76, 98, 78, 79, 101, + /* 980 */ 81, 112, 69, 70, 112, 112, 112, 112, 112, 90, + /* 990 */ 112, 112, 93, 112, 95, 112, 112, 98, 112, 112, + /* 1000 */ 101, 112, 112, 112, 75, 76, 112, 78, 79, 112, + /* 1010 */ 81, 75, 76, 112, 78, 79, 112, 81, 112, 90, + /* 1020 */ 112, 112, 93, 112, 95, 112, 90, 98, 112, 93, + /* 1030 */ 101, 95, 75, 76, 112, 78, 79, 101, 81, 112, + /* 1040 */ 112, 112, 112, 112, 112, 112, 112, 90, 112, 112, + /* 1050 */ 93, 112, 95, 75, 76, 112, 78, 79, 101, 81, + /* 1060 */ 112, 112, 112, 112, 112, 112, 112, 112, 90, 112, + /* 1070 */ 112, 93, 112, 95, 112, 112, 112, 112, 112, 101, + /* 1080 */ 75, 76, 112, 78, 79, 112, 81, 75, 76, 112, + /* 1090 */ 78, 79, 112, 81, 112, 90, 112, 112, 93, 112, + /* 1100 */ 95, 112, 90, 112, 112, 93, 101, 95, 75, 76, + /* 1110 */ 112, 78, 79, 101, 81, 112, 112, 112, 112, 112, + /* 1120 */ 112, 112, 112, 90, 112, 112, 93, 112, 95, 75, + /* 1130 */ 76, 112, 78, 79, 101, 81, 112, 112, 112, 112, + /* 1140 */ 112, 112, 112, 112, 90, 112, 112, 93, 112, 95, + /* 1150 */ 112, 112, 112, 112, 112, 101, 75, 76, 112, 78, + /* 1160 */ 79, 112, 81, 75, 76, 112, 78, 79, 112, 81, + /* 1170 */ 112, 90, 112, 112, 93, 112, 95, 112, 90, 112, + /* 1180 */ 112, 93, 101, 95, 75, 76, 112, 78, 79, 101, + /* 1190 */ 81, 112, 112, 112, 112, 112, 112, 112, 112, 90, + /* 1200 */ 112, 112, 93, 112, 95, 75, 76, 112, 78, 79, + /* 1210 */ 101, 81, 112, 112, 112, 112, 112, 112, 112, 112, + /* 1220 */ 90, 112, 112, 93, 112, 95, 112, 112, 112, 112, + /* 1230 */ 112, 101, 75, 76, 112, 78, 79, 112, 81, 75, + /* 1240 */ 76, 112, 78, 79, 112, 81, 112, 90, 112, 112, + /* 1250 */ 93, 112, 95, 112, 90, 112, 112, 93, 101, 95, + /* 1260 */ 75, 76, 112, 78, 79, 101, 81, 112, 112, 112, + /* 1270 */ 112, 112, 112, 112, 112, 90, 112, 112, 93, 112, + /* 1280 */ 95, 75, 76, 112, 78, 112, 101, 81, 112, 112, + /* 1290 */ 112, 112, 112, 112, 112, 112, 90, 112, 112, 93, + /* 1300 */ 112, 95, 112, 112, 112, 112, 112, 101, 75, 76, + /* 1310 */ 112, 78, 75, 76, 81, 78, 75, 76, 81, 78, + /* 1320 */ 112, 112, 81, 90, 112, 112, 93, 90, 95, 112, + /* 1330 */ 93, 90, 95, 112, 101, 112, 95, 112, 101, 112, + /* 1340 */ 75, 76, 101, 78, 112, 112, 81, 112, 112, 112, + /* 1350 */ 112, 112, 112, 112, 112, 90, 112, 112, 112, 112, + /* 1360 */ 95, 112, 112, 112, 112, 112, 101, ); - const YY_SHIFT_USE_DFLT = -13; - const YY_SHIFT_MAX = 209; + const YY_SHIFT_USE_DFLT = -19; + const YY_SHIFT_MAX = 227; static public $yy_shift_ofst = array( - /* 0 */ 193, 56, -7, -7, -7, -7, -7, -7, -7, -7, - /* 10 */ -7, -7, -7, 325, 87, 118, 325, 87, 294, 294, - /* 20 */ 118, 87, 87, 87, 87, 87, 87, 87, 87, 87, - /* 30 */ 87, 87, 87, 87, 87, 87, 87, 24, 263, 232, - /* 40 */ 356, 445, 445, 476, -1, 538, 264, 388, 271, 198, - /* 50 */ 229, 66, 268, 268, 534, 534, 446, 268, 534, 446, - /* 60 */ 474, 464, 564, 193, 65, -5, 150, 342, 114, 299, - /* 70 */ 504, 227, 504, 490, 504, 504, 504, 504, 490, 504, - /* 80 */ 691, 691, 687, 687, 691, 181, 171, 129, 119, 354, - /* 90 */ 354, 354, 354, 354, 354, 354, 354, 10, 73, 462, - /* 100 */ 626, 135, 85, 106, 85, 197, 22, 82, 59, 127, - /* 110 */ -12, 22, 241, 519, 22, 398, 289, 400, 470, 64, - /* 120 */ 484, 479, 282, 401, 368, 418, 477, 22, 450, 22, - /* 130 */ 235, 326, 545, 545, 545, 545, 689, 691, 690, 691, - /* 140 */ 697, 691, 691, 545, 545, 589, 545, 589, 545, 545, - /* 150 */ -13, -13, -13, -13, -13, -13, -13, 178, 218, 244, - /* 160 */ 179, 63, 427, 344, 344, 344, 375, 344, 428, 92, - /* 170 */ 351, 631, 627, 620, 637, 647, 633, 670, 636, 652, - /* 180 */ 645, 593, 640, 630, 622, 623, 666, 672, 653, 612, - /* 190 */ 632, 634, 606, 415, 483, 410, 238, 12, 597, 287, - /* 200 */ 550, 528, 360, 605, 651, 657, 679, 656, 628, 646, + /* 0 */ 111, 64, 28, 28, 28, 28, 28, 28, 28, 28, + /* 10 */ 28, 28, 28, 241, -7, -7, 136, 171, 136, 171, + /* 20 */ 206, 136, 241, 136, 136, 136, 136, 136, 136, 136, + /* 30 */ 136, 136, 136, 136, 136, 136, 136, 136, 100, 276, + /* 40 */ 311, 346, 392, 535, 535, 515, 282, 776, 913, 719, + /* 50 */ 492, 646, 47, 98, 600, 170, 432, 170, 432, 170, + /* 60 */ 633, 432, 633, 564, 520, 607, 111, 868, 177, 117, + /* 70 */ 412, 60, 96, 15, 237, 24, 60, 15, 60, 60, + /* 80 */ 60, 60, 60, 752, 518, 848, 517, 517, 845, 848, + /* 90 */ 517, 848, 855, 343, 388, 442, 419, 466, 466, 466, + /* 100 */ 466, 466, 466, 466, 466, 286, 3, 324, 397, 548, + /* 110 */ 498, 423, 566, -13, -13, 42, 300, 491, 667, 590, + /* 120 */ 307, 835, 617, 824, 679, 226, 51, 51, 4, 51, + /* 130 */ 51, 826, 51, 217, 704, 362, 702, 758, 779, 147, + /* 140 */ 774, 762, 807, 95, 858, 559, 859, 559, 859, 559, + /* 150 */ 559, 517, 864, 855, 559, 517, 517, 559, 517, 559, + /* 160 */ 559, 559, 559, -19, -19, -19, -19, -19, -19, -19, + /* 170 */ 188, 328, 386, 153, 61, 137, -18, 543, 219, 839, + /* 180 */ -18, -18, -18, 112, 438, 751, 671, 680, 652, 821, + /* 190 */ 603, 616, 664, 699, 681, 746, 730, 705, 693, 783, + /* 200 */ 755, 640, 686, 828, 788, 829, 832, 837, 842, 795, + /* 210 */ 769, 761, 740, 765, 778, 643, 748, 830, 601, 380, + /* 220 */ 354, 322, 318, 409, 493, 207, 549, 145, ); - const YY_REDUCE_USE_DFLT = -95; - const YY_REDUCE_MAX = 156; + const YY_REDUCE_USE_DFLT = -99; + const YY_REDUCE_MAX = 169; static public $yy_reduce_ofst = array( - /* 0 */ -51, 348, 728, 686, 491, 514, 600, 556, 577, 465, - /* 10 */ 621, 663, 642, 707, 884, 907, 749, 930, 798, 835, - /* 20 */ 858, 772, 805, 1100, 1123, 1074, 1051, 979, 1002, 1028, - /* 30 */ 1146, 1172, 1267, 956, 1244, 1218, 1195, 1316, 1290, 1339, - /* 40 */ 371, 269, 62, -32, -27, 233, 295, 340, 215, 296, - /* 50 */ 221, 318, -59, 184, 215, 246, 336, 4, 273, 369, - /* 60 */ 424, 424, 424, 380, 472, 510, 376, 376, 116, 116, - /* 70 */ 473, 243, 253, 466, 497, 508, 500, 466, 499, 513, - /* 80 */ 448, 243, 429, 502, 460, 584, 584, 584, 584, 584, - /* 90 */ 584, 584, 584, 584, 584, 584, 584, 609, 609, 607, - /* 100 */ 607, 607, 609, 607, 609, 607, 594, 532, 602, 602, - /* 110 */ 532, 594, 602, 532, 594, 532, 532, 599, 611, 532, - /* 120 */ 602, 602, 532, 602, 602, 602, 602, 594, 602, 594, - /* 130 */ 532, 602, 532, 532, 532, 532, 608, 613, 635, 613, - /* 140 */ 624, 613, 613, 532, 532, 525, 532, 530, 532, 532, - /* 150 */ 535, 494, 432, 124, 61, -45, -94, + /* 0 */ 126, 511, 668, 647, 602, 556, 623, 700, 822, 777, + /* 10 */ 724, 801, 745, 73, 1, -35, 929, 143, 878, 248, + /* 20 */ 283, 899, 178, 854, 1109, 1088, 1130, 1157, 1164, 978, + /* 30 */ 957, 1005, 1185, 1033, 1012, 936, 1054, 1081, 1237, 1233, + /* 40 */ 1206, 1241, 1265, 538, 382, 403, 183, 610, 563, 608, + /* 50 */ 83, 222, 519, -98, 213, 434, 293, 571, 461, 553, + /* 60 */ 108, 222, 381, 218, 218, 218, 427, 228, 114, 544, + /* 70 */ 544, 677, 677, 677, 736, 736, 709, 653, 627, 618, + /* 80 */ 361, 500, 632, 662, 166, 659, 317, 304, 750, 767, + /* 90 */ 166, 741, 508, -87, -87, -87, -87, -87, -87, -87, + /* 100 */ -87, -87, -87, -87, -87, 766, 766, 766, 766, 782, + /* 110 */ 772, 772, 766, 772, 772, 771, 770, 770, 770, 770, + /* 120 */ 394, 770, 394, 770, 770, 394, 763, 763, 394, 763, + /* 130 */ 763, 770, 763, 394, 770, 792, 770, 770, 770, 394, + /* 140 */ 770, 770, 770, 394, 787, 394, 794, 394, 803, 394, + /* 150 */ 394, 506, 781, 808, 394, 506, 506, 394, 506, 394, + /* 160 */ 394, 394, 394, 536, 344, 337, -12, 204, 152, 37, ); static public $yyExpectedTokens = array( - /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 18, ), - /* 1 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 2 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 3 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 4 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 5 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 6 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 7 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 8 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 9 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 10 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 11 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 12 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 13 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 14 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 15 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 16 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 17 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 18 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 19 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 20 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 21 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 22 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 23 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 24 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 25 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 26 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 27 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 28 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 29 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 30 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 31 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 32 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 33 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 34 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 35 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 36 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 37 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 38, ), - /* 38 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 39 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 40 */ array(7, 10, 14, 18, 19, 23, 28, 30, 31, 32, 33, 36, 37, ), - /* 41 */ array(7, 10, 14, 18, 19, 23, 28, 30, 31, 32, 33, 36, ), - /* 42 */ array(7, 10, 14, 18, 19, 23, 28, 30, 31, 32, 33, 36, ), - /* 43 */ array(7, 10, 14, 18, 19, 23, 28, 30, 31, 32, 33, 36, ), - /* 44 */ array(7, 10, 14, 36, ), - /* 45 */ array(7, 10, 14, 19, 30, 31, 36, ), - /* 46 */ array(8, 11, 12, 23, 34, 39, ), - /* 47 */ array(3, 7, 18, 33, 65, 66, ), - /* 48 */ array(8, 12, 39, ), - /* 49 */ array(11, 12, 39, ), - /* 50 */ array(11, 29, 37, ), - /* 51 */ array(10, 14, 36, ), - /* 52 */ array(12, 21, ), - /* 53 */ array(12, 21, ), - /* 54 */ array(12, 39, ), - /* 55 */ array(12, 39, ), - /* 56 */ array(14, 36, ), - /* 57 */ array(12, 21, ), - /* 58 */ array(12, 39, ), - /* 59 */ array(14, 36, ), - /* 60 */ array(24, 39, 41, 53, 54, 55, 56, 57, 58, 59, 60, 61, ), - /* 61 */ array(24, 39, 41, 53, 54, 55, 56, 57, 58, 59, 60, 61, ), - /* 62 */ array(39, 41, 53, 54, 55, 56, 57, 58, 59, 60, 61, ), - /* 63 */ array(1, 2, 3, 4, 5, 6, 7, 18, ), - /* 64 */ array(3, 7, 18, 33, 65, 66, ), - /* 65 */ array(7, 9, 10, 15, ), - /* 66 */ array(7, 9, 10, 35, ), - /* 67 */ array(7, 10, 35, ), - /* 68 */ array(8, 12, 15, ), - /* 69 */ array(8, 12, 15, ), - /* 70 */ array(7, 10, ), - /* 71 */ array(9, 11, ), - /* 72 */ array(7, 10, ), - /* 73 */ array(7, 10, ), - /* 74 */ array(7, 10, ), - /* 75 */ array(7, 10, ), - /* 76 */ array(7, 10, ), - /* 77 */ array(7, 10, ), - /* 78 */ array(7, 10, ), - /* 79 */ array(7, 10, ), - /* 80 */ array(11, ), - /* 81 */ array(11, ), - /* 82 */ array(12, ), - /* 83 */ array(12, ), - /* 84 */ array(11, ), - /* 85 */ array(24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 86 */ array(13, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 87 */ array(24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 88 */ array(8, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 89 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 90 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 91 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 92 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 93 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 94 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 95 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 96 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 97 */ array(22, 26, 27, 38, ), - /* 98 */ array(8, 22, 26, 27, ), - /* 99 */ array(7, 8, 10, 17, ), - /* 100 */ array(7, 8, 10, 17, ), - /* 101 */ array(7, 8, 10, ), - /* 102 */ array(22, 26, 27, ), - /* 103 */ array(7, 8, 10, ), - /* 104 */ array(22, 26, 27, ), - /* 105 */ array(7, 9, 10, ), - /* 106 */ array(29, 37, ), - /* 107 */ array(8, 39, ), - /* 108 */ array(8, 12, ), - /* 109 */ array(8, 12, ), - /* 110 */ array(20, 39, ), - /* 111 */ array(29, 37, ), - /* 112 */ array(8, 12, ), - /* 113 */ array(21, 39, ), - /* 114 */ array(29, 37, ), - /* 115 */ array(17, 39, ), - /* 116 */ array(8, 39, ), - /* 117 */ array(7, 23, ), - /* 118 */ array(10, 14, ), - /* 119 */ array(21, 39, ), - /* 120 */ array(8, 12, ), - /* 121 */ array(8, 12, ), - /* 122 */ array(8, 39, ), - /* 123 */ array(8, 12, ), - /* 124 */ array(8, 12, ), - /* 125 */ array(8, 12, ), - /* 126 */ array(8, 12, ), - /* 127 */ array(29, 37, ), - /* 128 */ array(8, 12, ), - /* 129 */ array(29, 37, ), - /* 130 */ array(24, 39, ), - /* 131 */ array(8, 12, ), - /* 132 */ array(39, ), - /* 133 */ array(39, ), - /* 134 */ array(39, ), - /* 135 */ array(39, ), - /* 136 */ array(21, ), - /* 137 */ array(11, ), - /* 138 */ array(14, ), - /* 139 */ array(11, ), - /* 140 */ array(23, ), - /* 141 */ array(11, ), - /* 142 */ array(11, ), - /* 143 */ array(39, ), - /* 144 */ array(39, ), - /* 145 */ array(12, ), - /* 146 */ array(39, ), - /* 147 */ array(12, ), - /* 148 */ array(39, ), - /* 149 */ array(39, ), - /* 150 */ array(), - /* 151 */ array(), - /* 152 */ array(), - /* 153 */ array(), - /* 154 */ array(), - /* 155 */ array(), - /* 156 */ array(), - /* 157 */ array(8, 9, 12, 23, 34, ), - /* 158 */ array(23, 29, 34, 38, ), - /* 159 */ array(17, 23, 34, ), - /* 160 */ array(9, 29, ), - /* 161 */ array(10, 19, ), - /* 162 */ array(8, 12, ), - /* 163 */ array(23, 34, ), - /* 164 */ array(23, 34, ), - /* 165 */ array(23, 34, ), - /* 166 */ array(10, 35, ), - /* 167 */ array(23, 34, ), - /* 168 */ array(20, 38, ), - /* 169 */ array(16, 52, ), - /* 170 */ array(13, 20, ), - /* 171 */ array(8, ), - /* 172 */ array(10, ), - /* 173 */ array(9, ), - /* 174 */ array(8, ), - /* 175 */ array(8, ), - /* 176 */ array(14, ), - /* 177 */ array(14, ), - /* 178 */ array(23, ), - /* 179 */ array(14, ), - /* 180 */ array(24, ), - /* 181 */ array(65, ), - /* 182 */ array(14, ), - /* 183 */ array(10, ), - /* 184 */ array(16, ), - /* 185 */ array(38, ), - /* 186 */ array(14, ), - /* 187 */ array(10, ), - /* 188 */ array(24, ), - /* 189 */ array(52, ), - /* 190 */ array(36, ), - /* 191 */ array(36, ), - /* 192 */ array(10, ), - /* 193 */ array(25, ), - /* 194 */ array(10, ), - /* 195 */ array(15, ), - /* 196 */ array(10, ), - /* 197 */ array(10, ), - /* 198 */ array(29, ), - /* 199 */ array(19, ), - /* 200 */ array(10, ), - /* 201 */ array(10, ), - /* 202 */ array(21, ), - /* 203 */ array(9, ), - /* 204 */ array(24, ), - /* 205 */ array(3, ), + /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 21, ), + /* 1 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 2 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 3 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 4 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 5 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 6 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 7 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 8 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 9 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 10 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 11 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 12 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), + /* 13 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 14 */ array(7, 9, 10, 12, 14, 16, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 15 */ array(7, 9, 10, 12, 14, 16, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 16 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 17 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 18 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 19 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 20 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 21 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 22 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 23 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 24 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 25 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 26 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 27 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 28 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 29 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 30 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 31 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 32 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 33 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 34 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 35 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 36 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 37 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 38 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 42, ), + /* 39 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 40 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 41 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 42 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), + /* 43 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 37, 40, ), + /* 44 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 37, 40, ), + /* 45 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 37, 40, ), + /* 46 */ array(7, 9, 10, 40, ), + /* 47 */ array(7, 9, 10, 22, 33, 34, 35, 40, ), + /* 48 */ array(3, 7, 21, 37, 69, 70, ), + /* 49 */ array(8, 13, 15, 26, 38, 43, ), + /* 50 */ array(8, 13, 15, 43, ), + /* 51 */ array(8, 15, 43, ), + /* 52 */ array(9, 10, 40, ), + /* 53 */ array(13, 32, 41, ), + /* 54 */ array(8, 15, 43, ), + /* 55 */ array(15, 24, ), + /* 56 */ array(15, 43, ), + /* 57 */ array(15, 24, ), + /* 58 */ array(15, 43, ), + /* 59 */ array(15, 24, ), + /* 60 */ array(9, 40, ), + /* 61 */ array(15, 43, ), + /* 62 */ array(9, 40, ), + /* 63 */ array(27, 43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), + /* 64 */ array(27, 43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), + /* 65 */ array(43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), + /* 66 */ array(1, 2, 3, 4, 5, 6, 7, 21, ), + /* 67 */ array(3, 7, 21, 37, 69, 70, ), + /* 68 */ array(7, 10, 11, 18, 33, ), + /* 69 */ array(7, 10, 11, 33, 39, ), + /* 70 */ array(7, 10, 33, 39, ), + /* 71 */ array(7, 10, 33, ), + /* 72 */ array(7, 10, 33, ), + /* 73 */ array(7, 10, 33, ), + /* 74 */ array(8, 15, 18, ), + /* 75 */ array(8, 15, 18, ), + /* 76 */ array(7, 10, 33, ), + /* 77 */ array(7, 10, 33, ), + /* 78 */ array(7, 10, 33, ), + /* 79 */ array(7, 10, 33, ), + /* 80 */ array(7, 10, 33, ), + /* 81 */ array(7, 10, 33, ), + /* 82 */ array(7, 10, 33, ), + /* 83 */ array(8, 15, ), + /* 84 */ array(11, 13, ), + /* 85 */ array(15, ), + /* 86 */ array(13, ), + /* 87 */ array(13, ), + /* 88 */ array(15, ), + /* 89 */ array(15, ), + /* 90 */ array(13, ), + /* 91 */ array(15, ), + /* 92 */ array(9, ), + /* 93 */ array(17, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 94 */ array(27, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 95 */ array(8, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 96 */ array(27, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 97 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 98 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 99 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 100 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 101 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 102 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 103 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 104 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 105 */ array(7, 8, 10, 20, 33, ), + /* 106 */ array(7, 8, 10, 20, 33, ), + /* 107 */ array(7, 10, 11, 33, ), + /* 108 */ array(7, 8, 10, 33, ), + /* 109 */ array(10, 12, 14, 16, ), + /* 110 */ array(25, 29, 30, 42, ), + /* 111 */ array(8, 25, 29, 30, ), + /* 112 */ array(7, 8, 10, 33, ), + /* 113 */ array(25, 29, 30, ), + /* 114 */ array(25, 29, 30, ), + /* 115 */ array(9, 10, 33, ), + /* 116 */ array(8, 15, ), + /* 117 */ array(8, 15, ), + /* 118 */ array(8, 15, ), + /* 119 */ array(8, 15, ), + /* 120 */ array(23, 43, ), + /* 121 */ array(8, 15, ), + /* 122 */ array(24, 43, ), + /* 123 */ array(8, 15, ), + /* 124 */ array(8, 15, ), + /* 125 */ array(8, 43, ), + /* 126 */ array(32, 41, ), + /* 127 */ array(32, 41, ), + /* 128 */ array(27, 43, ), + /* 129 */ array(32, 41, ), + /* 130 */ array(32, 41, ), + /* 131 */ array(8, 15, ), + /* 132 */ array(32, 41, ), + /* 133 */ array(8, 43, ), + /* 134 */ array(8, 15, ), + /* 135 */ array(7, 26, ), + /* 136 */ array(8, 15, ), + /* 137 */ array(8, 15, ), + /* 138 */ array(8, 15, ), + /* 139 */ array(8, 43, ), + /* 140 */ array(8, 15, ), + /* 141 */ array(8, 15, ), + /* 142 */ array(8, 15, ), + /* 143 */ array(24, 43, ), + /* 144 */ array(26, ), + /* 145 */ array(43, ), + /* 146 */ array(15, ), + /* 147 */ array(43, ), + /* 148 */ array(15, ), + /* 149 */ array(43, ), + /* 150 */ array(43, ), + /* 151 */ array(13, ), + /* 152 */ array(24, ), + /* 153 */ array(9, ), + /* 154 */ array(43, ), + /* 155 */ array(13, ), + /* 156 */ array(13, ), + /* 157 */ array(43, ), + /* 158 */ array(13, ), + /* 159 */ array(43, ), + /* 160 */ array(43, ), + /* 161 */ array(43, ), + /* 162 */ array(43, ), + /* 163 */ array(), + /* 164 */ array(), + /* 165 */ array(), + /* 166 */ array(), + /* 167 */ array(), + /* 168 */ array(), + /* 169 */ array(), + /* 170 */ array(26, 32, 38, 42, ), + /* 171 */ array(26, 38, 43, ), + /* 172 */ array(20, 26, 38, ), + /* 173 */ array(11, 26, 38, ), + /* 174 */ array(17, 23, ), + /* 175 */ array(10, 22, ), + /* 176 */ array(26, 38, ), + /* 177 */ array(11, 24, ), + /* 178 */ array(10, 39, ), + /* 179 */ array(8, 15, ), + /* 180 */ array(26, 38, ), + /* 181 */ array(26, 38, ), + /* 182 */ array(26, 38, ), + /* 183 */ array(11, 32, ), + /* 184 */ array(23, 42, ), + /* 185 */ array(8, ), + /* 186 */ array(22, ), + /* 187 */ array(4, ), + /* 188 */ array(27, ), + /* 189 */ array(28, ), + /* 190 */ array(15, ), + /* 191 */ array(40, ), + /* 192 */ array(32, ), + /* 193 */ array(10, ), + /* 194 */ array(69, ), + /* 195 */ array(9, ), + /* 196 */ array(8, ), + /* 197 */ array(9, ), + /* 198 */ array(40, ), + /* 199 */ array(9, ), + /* 200 */ array(9, ), + /* 201 */ array(15, ), + /* 202 */ array(19, ), + /* 203 */ array(3, ), + /* 204 */ array(19, ), + /* 205 */ array(8, ), /* 206 */ array(4, ), - /* 207 */ array(25, ), + /* 207 */ array(11, ), /* 208 */ array(3, ), - /* 209 */ array(4, ), - /* 210 */ array(), - /* 211 */ array(), - /* 212 */ array(), - /* 213 */ array(), - /* 214 */ array(), - /* 215 */ array(), - /* 216 */ array(), - /* 217 */ array(), - /* 218 */ array(), - /* 219 */ array(), - /* 220 */ array(), - /* 221 */ array(), - /* 222 */ array(), - /* 223 */ array(), - /* 224 */ array(), - /* 225 */ array(), - /* 226 */ array(), - /* 227 */ array(), + /* 209 */ array(9, ), + /* 210 */ array(27, ), + /* 211 */ array(10, ), + /* 212 */ array(28, ), + /* 213 */ array(26, ), + /* 214 */ array(10, ), + /* 215 */ array(10, ), + /* 216 */ array(24, ), + /* 217 */ array(27, ), + /* 218 */ array(10, ), + /* 219 */ array(20, ), + /* 220 */ array(11, ), + /* 221 */ array(18, ), + /* 222 */ array(56, ), + /* 223 */ array(8, ), + /* 224 */ array(10, ), + /* 225 */ array(42, ), + /* 226 */ array(10, ), + /* 227 */ array(8, ), /* 228 */ array(), /* 229 */ array(), /* 230 */ array(), @@ -935,41 +928,79 @@ static public $yy_action = array( /* 321 */ array(), /* 322 */ array(), /* 323 */ array(), + /* 324 */ array(), + /* 325 */ array(), + /* 326 */ array(), + /* 327 */ array(), + /* 328 */ array(), + /* 329 */ array(), + /* 330 */ array(), + /* 331 */ array(), + /* 332 */ array(), + /* 333 */ array(), + /* 334 */ array(), + /* 335 */ array(), + /* 336 */ array(), + /* 337 */ array(), + /* 338 */ array(), + /* 339 */ array(), + /* 340 */ array(), + /* 341 */ array(), + /* 342 */ array(), + /* 343 */ array(), + /* 344 */ array(), + /* 345 */ array(), + /* 346 */ array(), + /* 347 */ array(), + /* 348 */ array(), + /* 349 */ array(), + /* 350 */ array(), + /* 351 */ array(), + /* 352 */ array(), + /* 353 */ array(), + /* 354 */ array(), + /* 355 */ array(), + /* 356 */ array(), + /* 357 */ array(), + /* 358 */ array(), ); static public $yy_default = array( - /* 0 */ 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, - /* 10 */ 491, 491, 491, 477, 435, 491, 491, 435, 491, 491, - /* 20 */ 491, 435, 435, 491, 491, 491, 491, 491, 491, 491, - /* 30 */ 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, - /* 40 */ 491, 491, 491, 491, 491, 491, 491, 491, 491, 358, - /* 50 */ 397, 491, 358, 358, 358, 358, 491, 358, 358, 491, - /* 60 */ 445, 445, 445, 324, 491, 491, 407, 407, 380, 380, - /* 70 */ 491, 400, 491, 491, 491, 491, 491, 491, 491, 491, - /* 80 */ 393, 400, 358, 358, 392, 491, 491, 491, 491, 455, - /* 90 */ 449, 451, 459, 450, 458, 454, 443, 491, 491, 491, - /* 100 */ 491, 491, 368, 491, 440, 491, 429, 491, 491, 491, - /* 110 */ 434, 427, 491, 491, 428, 480, 491, 407, 491, 491, - /* 120 */ 491, 491, 491, 491, 491, 491, 491, 426, 491, 405, - /* 130 */ 491, 491, 479, 375, 446, 478, 370, 394, 491, 423, - /* 140 */ 407, 395, 398, 347, 366, 490, 376, 490, 363, 359, - /* 150 */ 439, 439, 439, 439, 407, 407, 407, 367, 491, 367, - /* 160 */ 383, 491, 371, 441, 367, 491, 491, 460, 491, 371, - /* 170 */ 491, 491, 491, 491, 364, 491, 491, 491, 396, 491, - /* 180 */ 491, 491, 491, 491, 374, 491, 491, 491, 491, 371, - /* 190 */ 491, 491, 491, 388, 491, 380, 491, 491, 383, 491, - /* 200 */ 491, 411, 421, 362, 491, 491, 491, 491, 491, 491, - /* 210 */ 483, 408, 484, 355, 488, 403, 404, 482, 391, 487, - /* 220 */ 481, 373, 327, 326, 325, 352, 413, 412, 390, 328, - /* 230 */ 410, 361, 409, 406, 357, 354, 438, 414, 371, 353, - /* 240 */ 430, 333, 332, 334, 356, 330, 432, 372, 329, 415, - /* 250 */ 417, 401, 331, 425, 381, 382, 418, 416, 384, 402, - /* 260 */ 424, 463, 343, 464, 465, 466, 341, 462, 448, 344, - /* 270 */ 474, 476, 475, 447, 342, 467, 468, 388, 471, 442, - /* 280 */ 452, 457, 453, 472, 473, 339, 340, 469, 470, 444, - /* 290 */ 461, 345, 431, 369, 349, 419, 422, 437, 436, 379, - /* 300 */ 378, 351, 386, 387, 456, 350, 377, 374, 365, 336, - /* 310 */ 486, 337, 338, 433, 399, 346, 335, 489, 389, 421, - /* 320 */ 420, 485, 348, 385, + /* 0 */ 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, + /* 10 */ 541, 541, 541, 527, 541, 541, 485, 541, 485, 541, + /* 20 */ 541, 485, 541, 485, 541, 541, 541, 541, 541, 541, + /* 30 */ 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, + /* 40 */ 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, + /* 50 */ 541, 541, 541, 446, 541, 405, 405, 405, 405, 405, + /* 60 */ 541, 405, 541, 495, 495, 495, 359, 541, 541, 456, + /* 70 */ 456, 541, 541, 541, 428, 428, 541, 541, 541, 541, + /* 80 */ 541, 541, 541, 419, 449, 405, 441, 442, 405, 405, + /* 90 */ 449, 405, 541, 541, 541, 541, 541, 505, 509, 499, + /* 100 */ 508, 501, 500, 493, 504, 541, 541, 541, 541, 541, + /* 110 */ 541, 541, 541, 490, 416, 541, 541, 541, 541, 541, + /* 120 */ 484, 541, 541, 541, 541, 541, 454, 476, 541, 479, + /* 130 */ 477, 541, 478, 541, 541, 456, 541, 541, 541, 541, + /* 140 */ 541, 541, 541, 541, 456, 414, 540, 411, 540, 389, + /* 150 */ 423, 473, 418, 541, 496, 444, 447, 424, 443, 530, + /* 160 */ 407, 528, 529, 456, 456, 489, 456, 489, 489, 489, + /* 170 */ 541, 406, 415, 410, 541, 541, 491, 470, 541, 419, + /* 180 */ 541, 510, 415, 431, 541, 541, 541, 541, 541, 437, + /* 190 */ 541, 541, 431, 541, 541, 541, 541, 541, 541, 541, + /* 200 */ 541, 541, 541, 541, 541, 419, 541, 541, 541, 541, + /* 210 */ 541, 541, 541, 541, 541, 541, 470, 541, 541, 419, + /* 220 */ 410, 428, 419, 541, 541, 541, 541, 541, 402, 398, + /* 230 */ 399, 535, 371, 396, 388, 360, 452, 361, 486, 487, + /* 240 */ 429, 397, 430, 422, 480, 451, 463, 534, 537, 533, + /* 250 */ 465, 467, 538, 440, 536, 475, 466, 464, 532, 450, + /* 260 */ 531, 482, 413, 372, 539, 390, 455, 412, 445, 439, + /* 270 */ 363, 409, 362, 461, 403, 426, 437, 492, 427, 511, + /* 280 */ 519, 520, 417, 370, 425, 368, 474, 506, 507, 503, + /* 290 */ 502, 404, 377, 369, 518, 517, 401, 395, 524, 471, + /* 300 */ 481, 483, 448, 419, 400, 526, 525, 514, 515, 516, + /* 310 */ 513, 512, 468, 497, 498, 367, 366, 391, 392, 469, + /* 320 */ 470, 488, 462, 421, 374, 381, 460, 472, 386, 387, + /* 330 */ 457, 453, 458, 394, 393, 459, 373, 384, 385, 436, + /* 340 */ 365, 435, 378, 420, 494, 521, 522, 523, 434, 376, + /* 350 */ 375, 383, 438, 432, 382, 379, 433, 380, 364, ); /* The next thing included is series of defines which control ** various aspects of the generated parser. @@ -986,11 +1017,11 @@ static public $yy_action = array( ** self::YYERRORSYMBOL is the code number of the error symbol. If not ** defined, then do no error processing. */ - const YYNOCODE = 108; + const YYNOCODE = 113; const YYSTACKDEPTH = 100; - const YYNSTATE = 324; - const YYNRULE = 167; - const YYERRORSYMBOL = 67; + const YYNSTATE = 359; + const YYNRULE = 182; + const YYERRORSYMBOL = 71; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; /** The next table maps tokens into fallback tokens. If a construct @@ -1074,12 +1105,13 @@ static public $yy_action = array( public $yyTokenName = array( '$', 'COMMENT', 'PHP', 'OTHER', 'SHORTTAGEND', 'SHORTTAGSTART', 'XML', 'LDEL', - 'RDEL', 'EQUAL', 'ID', 'PTR', - 'SPACE', 'SEMICOLON', 'DOLLAR', 'INCDEC', - 'AS', 'APTR', 'LDELSLASH', 'INTEGER', - 'COMMA', 'COLON', 'UNIMATH', 'OPENP', - 'CLOSEP', 'QMARK', 'MATH', 'ANDSYM', - 'TYPECAST', 'DOT', 'BOOLEAN', 'NULL', + 'RDEL', 'DOLLAR', 'ID', 'EQUAL', + 'FOREACH', 'PTR', 'IF', 'SPACE', + 'FOR', 'SEMICOLON', 'INCDEC', 'AS', + 'APTR', 'LDELSLASH', 'INTEGER', 'COMMA', + 'COLON', 'UNIMATH', 'OPENP', 'CLOSEP', + 'QMARK', 'MATH', 'ANDSYM', 'TYPECAST', + 'DOT', 'CONSTANT', 'BOOLEAN', 'NULL', 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', 'AT', 'HATCH', 'OPENB', 'CLOSEB', 'VERT', 'NOT', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', @@ -1090,15 +1122,15 @@ static public $yy_action = array( 'NONEIDENTITY', 'MOD', 'LAND', 'LOR', 'LXOR', 'BACKTICK', 'DOLLARID', 'error', 'start', 'template', 'template_element', 'smartytag', - 'variable', 'attributes', 'expr', 'ternary', - 'varindexed', 'modifier', 'modparameters', 'ifexprs', - 'statement', 'statements', 'optspace', 'varvar', - 'foraction', 'value', 'array', 'attribute', - 'exprs', 'math', 'function', 'doublequoted', - 'method', 'params', 'objectchain', 'arrayindex', - 'object', 'indexdef', 'varvarele', 'objectelement', - 'modparameter', 'ifexpr', 'ifcond', 'lop', - 'arrayelements', 'arrayelement', 'doublequotedcontent', + 'value', 'attributes', 'variable', 'expr', + 'ternary', 'varindexed', 'modifier', 'modparameters', + 'ifexprs', 'statement', 'statements', 'optspace', + 'varvar', 'foraction', 'array', 'specialclose', + 'attribute', 'exprs', 'math', 'function', + 'doublequoted', 'method', 'params', 'objectchain', + 'arrayindex', 'object', 'indexdef', 'varvarele', + 'objectelement', 'modparameter', 'ifexpr', 'ifcond', + 'lop', 'arrayelements', 'arrayelement', 'doublequotedcontent', ); /** @@ -1116,163 +1148,178 @@ static public $yy_action = array( /* 7 */ "template_element ::= XML", /* 8 */ "template_element ::= SHORTTAGEND", /* 9 */ "template_element ::= OTHER", - /* 10 */ "smartytag ::= LDEL variable attributes RDEL", - /* 11 */ "smartytag ::= LDEL expr attributes RDEL", - /* 12 */ "smartytag ::= LDEL ternary attributes RDEL", - /* 13 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", - /* 14 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL", - /* 15 */ "smartytag ::= LDEL ID attributes RDEL", - /* 16 */ "smartytag ::= LDEL ID RDEL", - /* 17 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", - /* 18 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", - /* 19 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL", - /* 20 */ "smartytag ::= LDEL ID SPACE ifexprs RDEL", - /* 21 */ "smartytag ::= LDEL ID SPACE statement RDEL", - /* 22 */ "smartytag ::= LDEL ID SPACE statements SEMICOLON optspace ifexprs SEMICOLON optspace DOLLAR varvar foraction RDEL", - /* 23 */ "foraction ::= EQUAL expr", - /* 24 */ "foraction ::= INCDEC", - /* 25 */ "smartytag ::= LDEL ID SPACE value AS DOLLAR varvar RDEL", - /* 26 */ "smartytag ::= LDEL ID SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 27 */ "smartytag ::= LDEL ID SPACE array AS DOLLAR varvar RDEL", - /* 28 */ "smartytag ::= LDEL ID SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 29 */ "smartytag ::= LDELSLASH ID attributes RDEL", - /* 30 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", - /* 31 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", - /* 32 */ "attributes ::= attributes attribute", - /* 33 */ "attributes ::= attribute", - /* 34 */ "attributes ::=", - /* 35 */ "attribute ::= SPACE ID EQUAL expr", - /* 36 */ "attribute ::= SPACE ID EQUAL value", - /* 37 */ "attribute ::= SPACE ID EQUAL ternary", - /* 38 */ "attribute ::= SPACE ID", - /* 39 */ "attribute ::= SPACE INTEGER EQUAL expr", - /* 40 */ "statements ::= statement", - /* 41 */ "statements ::= statements COMMA statement", - /* 42 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 43 */ "expr ::= ID", - /* 44 */ "expr ::= exprs", - /* 45 */ "expr ::= DOLLAR ID COLON ID", - /* 46 */ "expr ::= expr modifier modparameters", - /* 47 */ "exprs ::= value", - /* 48 */ "exprs ::= UNIMATH value", - /* 49 */ "exprs ::= exprs math value", - /* 50 */ "exprs ::= array", - /* 51 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", - /* 52 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 53 */ "math ::= UNIMATH", - /* 54 */ "math ::= MATH", - /* 55 */ "math ::= ANDSYM", - /* 56 */ "value ::= variable", - /* 57 */ "value ::= TYPECAST variable", - /* 58 */ "value ::= variable INCDEC", - /* 59 */ "value ::= INTEGER", - /* 60 */ "value ::= INTEGER DOT INTEGER", - /* 61 */ "value ::= BOOLEAN", - /* 62 */ "value ::= NULL", - /* 63 */ "value ::= function", - /* 64 */ "value ::= OPENP expr CLOSEP", - /* 65 */ "value ::= SINGLEQUOTESTRING", - /* 66 */ "value ::= QUOTE doublequoted QUOTE", - /* 67 */ "value ::= QUOTE QUOTE", - /* 68 */ "value ::= ID DOUBLECOLON method", - /* 69 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", - /* 70 */ "value ::= ID DOUBLECOLON method objectchain", - /* 71 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", - /* 72 */ "value ::= ID DOUBLECOLON ID", - /* 73 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", - /* 74 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", - /* 75 */ "value ::= smartytag", - /* 76 */ "variable ::= varindexed", - /* 77 */ "variable ::= DOLLAR varvar AT ID", - /* 78 */ "variable ::= object", - /* 79 */ "variable ::= HATCH ID HATCH", - /* 80 */ "variable ::= HATCH variable HATCH", - /* 81 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 82 */ "arrayindex ::= arrayindex indexdef", - /* 83 */ "arrayindex ::=", - /* 84 */ "indexdef ::= DOT ID", - /* 85 */ "indexdef ::= DOT BOOLEAN", - /* 86 */ "indexdef ::= DOT NULL", - /* 87 */ "indexdef ::= DOT INTEGER", - /* 88 */ "indexdef ::= DOT INTEGER ID", - /* 89 */ "indexdef ::= DOT variable", - /* 90 */ "indexdef ::= DOT LDEL exprs RDEL", - /* 91 */ "indexdef ::= OPENB ID CLOSEB", - /* 92 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 93 */ "indexdef ::= OPENB exprs CLOSEB", - /* 94 */ "indexdef ::= OPENB CLOSEB", - /* 95 */ "varvar ::= varvarele", - /* 96 */ "varvar ::= varvar varvarele", - /* 97 */ "varvarele ::= ID", - /* 98 */ "varvarele ::= LDEL expr RDEL", - /* 99 */ "object ::= varindexed objectchain", - /* 100 */ "objectchain ::= objectelement", - /* 101 */ "objectchain ::= objectchain objectelement", - /* 102 */ "objectelement ::= PTR ID arrayindex", - /* 103 */ "objectelement ::= PTR variable arrayindex", - /* 104 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 105 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 106 */ "objectelement ::= PTR method", - /* 107 */ "function ::= ID OPENP params CLOSEP", - /* 108 */ "method ::= ID OPENP params CLOSEP", - /* 109 */ "params ::= expr COMMA params", - /* 110 */ "params ::= expr", - /* 111 */ "params ::=", - /* 112 */ "modifier ::= VERT AT ID", - /* 113 */ "modifier ::= VERT ID", - /* 114 */ "modparameters ::= modparameters modparameter", - /* 115 */ "modparameters ::=", - /* 116 */ "modparameter ::= COLON exprs", - /* 117 */ "modparameter ::= COLON ID", - /* 118 */ "ifexprs ::= ifexpr", - /* 119 */ "ifexprs ::= NOT ifexprs", - /* 120 */ "ifexprs ::= OPENP ifexprs CLOSEP", - /* 121 */ "ifexpr ::= expr", - /* 122 */ "ifexpr ::= expr ifcond expr", - /* 123 */ "ifexpr ::= expr ISIN array", - /* 124 */ "ifexpr ::= expr ISIN value", - /* 125 */ "ifexpr ::= ifexprs lop ifexprs", - /* 126 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", - /* 127 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", - /* 128 */ "ifexpr ::= ifexprs ISEVEN", - /* 129 */ "ifexpr ::= ifexprs ISNOTEVEN", - /* 130 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", - /* 131 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", - /* 132 */ "ifexpr ::= ifexprs ISODD", - /* 133 */ "ifexpr ::= ifexprs ISNOTODD", - /* 134 */ "ifexpr ::= ifexprs ISODDBY ifexprs", - /* 135 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", - /* 136 */ "ifexpr ::= value INSTANCEOF ID", - /* 137 */ "ifexpr ::= value INSTANCEOF value", - /* 138 */ "ifcond ::= EQUALS", - /* 139 */ "ifcond ::= NOTEQUALS", - /* 140 */ "ifcond ::= GREATERTHAN", - /* 141 */ "ifcond ::= LESSTHAN", - /* 142 */ "ifcond ::= GREATEREQUAL", - /* 143 */ "ifcond ::= LESSEQUAL", - /* 144 */ "ifcond ::= IDENTITY", - /* 145 */ "ifcond ::= NONEIDENTITY", - /* 146 */ "ifcond ::= MOD", - /* 147 */ "lop ::= LAND", - /* 148 */ "lop ::= LOR", - /* 149 */ "lop ::= LXOR", - /* 150 */ "array ::= OPENB arrayelements CLOSEB", - /* 151 */ "arrayelements ::= arrayelement", - /* 152 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 153 */ "arrayelements ::=", - /* 154 */ "arrayelement ::= expr APTR expr", - /* 155 */ "arrayelement ::= ID APTR expr", - /* 156 */ "arrayelement ::= expr", - /* 157 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 158 */ "doublequoted ::= doublequotedcontent", - /* 159 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 160 */ "doublequotedcontent ::= DOLLARID", - /* 161 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 162 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 163 */ "doublequotedcontent ::= smartytag", - /* 164 */ "doublequotedcontent ::= OTHER", - /* 165 */ "optspace ::= SPACE", - /* 166 */ "optspace ::=", + /* 10 */ "smartytag ::= LDEL value RDEL", + /* 11 */ "smartytag ::= LDEL value attributes RDEL", + /* 12 */ "smartytag ::= LDEL variable attributes RDEL", + /* 13 */ "smartytag ::= LDEL expr attributes RDEL", + /* 14 */ "smartytag ::= LDEL ternary attributes RDEL", + /* 15 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL", + /* 16 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL", + /* 17 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL", + /* 18 */ "smartytag ::= LDEL DOLLAR ID EQUAL ternary attributes RDEL", + /* 19 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", + /* 20 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL", + /* 21 */ "smartytag ::= LDEL ID attributes RDEL", + /* 22 */ "smartytag ::= LDEL FOREACH attributes RDEL", + /* 23 */ "smartytag ::= LDEL ID RDEL", + /* 24 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", + /* 25 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", + /* 26 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL", + /* 27 */ "smartytag ::= LDEL IF SPACE ifexprs RDEL", + /* 28 */ "smartytag ::= LDEL IF SPACE statement RDEL", + /* 29 */ "smartytag ::= LDEL FOR SPACE statements SEMICOLON optspace ifexprs SEMICOLON optspace DOLLAR varvar foraction RDEL", + /* 30 */ "foraction ::= EQUAL expr", + /* 31 */ "foraction ::= INCDEC", + /* 32 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL", + /* 33 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 34 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL", + /* 35 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 36 */ "smartytag ::= LDELSLASH ID RDEL", + /* 37 */ "smartytag ::= LDELSLASH specialclose RDEL", + /* 38 */ "specialclose ::= IF", + /* 39 */ "specialclose ::= FOR", + /* 40 */ "specialclose ::= FOREACH", + /* 41 */ "smartytag ::= LDELSLASH ID attributes RDEL", + /* 42 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", + /* 43 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", + /* 44 */ "attributes ::= attributes attribute", + /* 45 */ "attributes ::= attribute", + /* 46 */ "attributes ::=", + /* 47 */ "attribute ::= SPACE ID EQUAL ID", + /* 48 */ "attribute ::= SPACE ID EQUAL expr", + /* 49 */ "attribute ::= SPACE ID EQUAL value", + /* 50 */ "attribute ::= SPACE ID EQUAL ternary", + /* 51 */ "attribute ::= SPACE ID", + /* 52 */ "attribute ::= SPACE INTEGER EQUAL expr", + /* 53 */ "statements ::= statement", + /* 54 */ "statements ::= statements COMMA statement", + /* 55 */ "statement ::= DOLLAR varvar EQUAL expr", + /* 56 */ "expr ::= ID", + /* 57 */ "expr ::= exprs", + /* 58 */ "expr ::= DOLLAR ID COLON ID", + /* 59 */ "expr ::= expr modifier modparameters", + /* 60 */ "exprs ::= value", + /* 61 */ "exprs ::= UNIMATH value", + /* 62 */ "exprs ::= exprs math value", + /* 63 */ "exprs ::= array", + /* 64 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", + /* 65 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 66 */ "math ::= UNIMATH", + /* 67 */ "math ::= MATH", + /* 68 */ "math ::= ANDSYM", + /* 69 */ "value ::= variable", + /* 70 */ "value ::= TYPECAST variable", + /* 71 */ "value ::= variable INCDEC", + /* 72 */ "value ::= INTEGER", + /* 73 */ "value ::= INTEGER DOT INTEGER", + /* 74 */ "value ::= CONSTANT", + /* 75 */ "value ::= BOOLEAN", + /* 76 */ "value ::= NULL", + /* 77 */ "value ::= function", + /* 78 */ "value ::= OPENP expr CLOSEP", + /* 79 */ "value ::= SINGLEQUOTESTRING", + /* 80 */ "value ::= QUOTE doublequoted QUOTE", + /* 81 */ "value ::= QUOTE QUOTE", + /* 82 */ "value ::= ID DOUBLECOLON method", + /* 83 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", + /* 84 */ "value ::= ID DOUBLECOLON method objectchain", + /* 85 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", + /* 86 */ "value ::= ID DOUBLECOLON CONSTANT", + /* 87 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", + /* 88 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", + /* 89 */ "value ::= smartytag", + /* 90 */ "variable ::= varindexed", + /* 91 */ "variable ::= DOLLAR varvar AT ID", + /* 92 */ "variable ::= object", + /* 93 */ "variable ::= HATCH ID HATCH", + /* 94 */ "variable ::= HATCH variable HATCH", + /* 95 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 96 */ "arrayindex ::= arrayindex indexdef", + /* 97 */ "arrayindex ::=", + /* 98 */ "indexdef ::= DOT ID", + /* 99 */ "indexdef ::= DOT CONSTANT", + /* 100 */ "indexdef ::= DOT BOOLEAN", + /* 101 */ "indexdef ::= DOT NULL", + /* 102 */ "indexdef ::= DOT INTEGER", + /* 103 */ "indexdef ::= DOT variable", + /* 104 */ "indexdef ::= DOT LDEL exprs RDEL", + /* 105 */ "indexdef ::= OPENB ID CLOSEB", + /* 106 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 107 */ "indexdef ::= OPENB exprs CLOSEB", + /* 108 */ "indexdef ::= OPENB CLOSEB", + /* 109 */ "varvar ::= varvarele", + /* 110 */ "varvar ::= varvar varvarele", + /* 111 */ "varvarele ::= ID", + /* 112 */ "varvarele ::= CONSTANT", + /* 113 */ "varvarele ::= LDEL expr RDEL", + /* 114 */ "object ::= varindexed objectchain", + /* 115 */ "objectchain ::= objectelement", + /* 116 */ "objectchain ::= objectchain objectelement", + /* 117 */ "objectelement ::= PTR ID arrayindex", + /* 118 */ "objectelement ::= PTR variable arrayindex", + /* 119 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 120 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 121 */ "objectelement ::= PTR method", + /* 122 */ "function ::= ID OPENP params CLOSEP", + /* 123 */ "method ::= ID OPENP params CLOSEP", + /* 124 */ "params ::= expr COMMA params", + /* 125 */ "params ::= expr", + /* 126 */ "params ::=", + /* 127 */ "modifier ::= VERT AT ID", + /* 128 */ "modifier ::= VERT ID", + /* 129 */ "modparameters ::= modparameters modparameter", + /* 130 */ "modparameters ::=", + /* 131 */ "modparameter ::= COLON exprs", + /* 132 */ "modparameter ::= COLON ID", + /* 133 */ "ifexprs ::= ifexpr", + /* 134 */ "ifexprs ::= NOT ifexprs", + /* 135 */ "ifexprs ::= OPENP ifexprs CLOSEP", + /* 136 */ "ifexpr ::= expr", + /* 137 */ "ifexpr ::= expr ifcond expr", + /* 138 */ "ifexpr ::= expr ISIN array", + /* 139 */ "ifexpr ::= expr ISIN value", + /* 140 */ "ifexpr ::= ifexprs lop ifexprs", + /* 141 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", + /* 142 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", + /* 143 */ "ifexpr ::= ifexprs ISEVEN", + /* 144 */ "ifexpr ::= ifexprs ISNOTEVEN", + /* 145 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", + /* 146 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", + /* 147 */ "ifexpr ::= ifexprs ISODD", + /* 148 */ "ifexpr ::= ifexprs ISNOTODD", + /* 149 */ "ifexpr ::= ifexprs ISODDBY ifexprs", + /* 150 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", + /* 151 */ "ifexpr ::= value INSTANCEOF ID", + /* 152 */ "ifexpr ::= value INSTANCEOF value", + /* 153 */ "ifcond ::= EQUALS", + /* 154 */ "ifcond ::= NOTEQUALS", + /* 155 */ "ifcond ::= GREATERTHAN", + /* 156 */ "ifcond ::= LESSTHAN", + /* 157 */ "ifcond ::= GREATEREQUAL", + /* 158 */ "ifcond ::= LESSEQUAL", + /* 159 */ "ifcond ::= IDENTITY", + /* 160 */ "ifcond ::= NONEIDENTITY", + /* 161 */ "ifcond ::= MOD", + /* 162 */ "lop ::= LAND", + /* 163 */ "lop ::= LOR", + /* 164 */ "lop ::= LXOR", + /* 165 */ "array ::= OPENB arrayelements CLOSEB", + /* 166 */ "arrayelements ::= arrayelement", + /* 167 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 168 */ "arrayelements ::=", + /* 169 */ "arrayelement ::= value APTR expr", + /* 170 */ "arrayelement ::= ID APTR expr", + /* 171 */ "arrayelement ::= expr", + /* 172 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 173 */ "doublequoted ::= doublequotedcontent", + /* 174 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 175 */ "doublequotedcontent ::= DOLLARID", + /* 176 */ "doublequotedcontent ::= LDEL variable RDEL", + /* 177 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 178 */ "doublequotedcontent ::= smartytag", + /* 179 */ "doublequotedcontent ::= OTHER", + /* 180 */ "optspace ::= SPACE", + /* 181 */ "optspace ::=", ); /** @@ -1637,173 +1684,188 @@ static public $yy_action = array( * */ static public $yyRuleInfo = array( - array( 'lhs' => 68, 'rhs' => 1 ), - array( 'lhs' => 69, 'rhs' => 1 ), - array( 'lhs' => 69, 'rhs' => 2 ), - array( 'lhs' => 70, 'rhs' => 1 ), - array( 'lhs' => 70, 'rhs' => 1 ), - array( 'lhs' => 70, 'rhs' => 3 ), - array( 'lhs' => 70, 'rhs' => 3 ), - array( 'lhs' => 70, 'rhs' => 1 ), - array( 'lhs' => 70, 'rhs' => 1 ), - array( 'lhs' => 70, 'rhs' => 1 ), - array( 'lhs' => 71, 'rhs' => 4 ), - array( 'lhs' => 71, 'rhs' => 4 ), - array( 'lhs' => 71, 'rhs' => 4 ), - array( 'lhs' => 71, 'rhs' => 6 ), - array( 'lhs' => 71, 'rhs' => 6 ), - array( 'lhs' => 71, 'rhs' => 4 ), - array( 'lhs' => 71, 'rhs' => 3 ), - array( 'lhs' => 71, 'rhs' => 6 ), - array( 'lhs' => 71, 'rhs' => 6 ), - array( 'lhs' => 71, 'rhs' => 8 ), - array( 'lhs' => 71, 'rhs' => 5 ), - array( 'lhs' => 71, 'rhs' => 5 ), - array( 'lhs' => 71, 'rhs' => 13 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 71, 'rhs' => 8 ), - array( 'lhs' => 71, 'rhs' => 11 ), - array( 'lhs' => 71, 'rhs' => 8 ), - array( 'lhs' => 71, 'rhs' => 11 ), - array( 'lhs' => 71, 'rhs' => 4 ), - array( 'lhs' => 71, 'rhs' => 6 ), - array( 'lhs' => 71, 'rhs' => 5 ), - array( 'lhs' => 73, 'rhs' => 2 ), + array( 'lhs' => 72, 'rhs' => 1 ), array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 0 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 80, 'rhs' => 4 ), + array( 'lhs' => 73, 'rhs' => 2 ), array( 'lhs' => 74, 'rhs' => 1 ), array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 4 ), array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 88, 'rhs' => 1 ), - array( 'lhs' => 88, 'rhs' => 2 ), - array( 'lhs' => 88, 'rhs' => 3 ), - array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 6 ), array( 'lhs' => 75, 'rhs' => 7 ), array( 'lhs' => 75, 'rhs' => 7 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 8 ), + array( 'lhs' => 75, 'rhs' => 5 ), + array( 'lhs' => 75, 'rhs' => 5 ), + array( 'lhs' => 75, 'rhs' => 13 ), + array( 'lhs' => 89, 'rhs' => 2 ), array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 2 ), - array( 'lhs' => 85, 'rhs' => 2 ), - array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 3 ), - array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 3 ), - array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 3 ), - array( 'lhs' => 85, 'rhs' => 2 ), - array( 'lhs' => 85, 'rhs' => 3 ), - array( 'lhs' => 85, 'rhs' => 7 ), - array( 'lhs' => 85, 'rhs' => 4 ), - array( 'lhs' => 85, 'rhs' => 8 ), - array( 'lhs' => 85, 'rhs' => 3 ), - array( 'lhs' => 85, 'rhs' => 5 ), - array( 'lhs' => 85, 'rhs' => 6 ), - array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 72, 'rhs' => 1 ), - array( 'lhs' => 72, 'rhs' => 4 ), - array( 'lhs' => 72, 'rhs' => 1 ), - array( 'lhs' => 72, 'rhs' => 3 ), - array( 'lhs' => 72, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 0 ), - array( 'lhs' => 97, 'rhs' => 2 ), - array( 'lhs' => 97, 'rhs' => 2 ), - array( 'lhs' => 97, 'rhs' => 2 ), - array( 'lhs' => 97, 'rhs' => 2 ), - array( 'lhs' => 97, 'rhs' => 3 ), - array( 'lhs' => 97, 'rhs' => 2 ), - array( 'lhs' => 97, 'rhs' => 4 ), - array( 'lhs' => 97, 'rhs' => 3 ), - array( 'lhs' => 97, 'rhs' => 5 ), - array( 'lhs' => 97, 'rhs' => 3 ), - array( 'lhs' => 97, 'rhs' => 2 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 3 ), - array( 'lhs' => 96, 'rhs' => 2 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 2 ), - array( 'lhs' => 99, 'rhs' => 3 ), - array( 'lhs' => 99, 'rhs' => 3 ), - array( 'lhs' => 99, 'rhs' => 5 ), - array( 'lhs' => 99, 'rhs' => 6 ), - array( 'lhs' => 99, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 8 ), + array( 'lhs' => 75, 'rhs' => 11 ), + array( 'lhs' => 75, 'rhs' => 8 ), + array( 'lhs' => 75, 'rhs' => 11 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 5 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 0 ), array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 2 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 2 ), array( 'lhs' => 93, 'rhs' => 3 ), array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 0 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 2 ), - array( 'lhs' => 78, 'rhs' => 2 ), - array( 'lhs' => 78, 'rhs' => 0 ), + array( 'lhs' => 80, 'rhs' => 7 ), + array( 'lhs' => 80, 'rhs' => 7 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 2 ), + array( 'lhs' => 76, 'rhs' => 2 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 2 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 7 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 8 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 5 ), + array( 'lhs' => 76, 'rhs' => 6 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 81, 'rhs' => 3 ), array( 'lhs' => 100, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 2 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 2 ), - array( 'lhs' => 79, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 1 ), - array( 'lhs' => 102, 'rhs' => 1 ), - array( 'lhs' => 102, 'rhs' => 1 ), - array( 'lhs' => 102, 'rhs' => 1 ), - array( 'lhs' => 102, 'rhs' => 1 ), - array( 'lhs' => 102, 'rhs' => 1 ), - array( 'lhs' => 102, 'rhs' => 1 ), - array( 'lhs' => 102, 'rhs' => 1 ), - array( 'lhs' => 102, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 0 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 4 ), + array( 'lhs' => 102, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 5 ), + array( 'lhs' => 102, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 2 ), array( 'lhs' => 103, 'rhs' => 1 ), array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 99, 'rhs' => 1 ), + array( 'lhs' => 99, 'rhs' => 2 ), array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 0 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 2 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 5 ), + array( 'lhs' => 104, 'rhs' => 6 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 4 ), + array( 'lhs' => 97, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 3 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 0 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 0 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 2 ), + array( 'lhs' => 84, 'rhs' => 3 ), array( 'lhs' => 106, 'rhs' => 1 ), array( 'lhs' => 106, 'rhs' => 3 ), array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 0 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 1 ), + array( 'lhs' => 109, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 0 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 2 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 0 ), ); /** @@ -1814,27 +1876,31 @@ static public $yy_action = array( */ static public $yyReduceMap = array( 0 => 0, - 47 => 0, - 56 => 0, - 59 => 0, - 61 => 0, - 62 => 0, - 63 => 0, - 65 => 0, - 78 => 0, - 151 => 0, + 38 => 0, + 39 => 0, + 40 => 0, + 60 => 0, + 69 => 0, + 72 => 0, + 74 => 0, + 75 => 0, + 76 => 0, + 77 => 0, + 79 => 0, + 92 => 0, + 166 => 0, 1 => 1, - 44 => 1, - 50 => 1, - 53 => 1, - 54 => 1, - 95 => 1, - 118 => 1, - 158 => 1, - 164 => 1, - 165 => 1, + 57 => 1, + 63 => 1, + 66 => 1, + 67 => 1, + 109 => 1, + 133 => 1, + 173 => 1, + 179 => 1, + 180 => 1, 2 => 2, - 114 => 2, + 129 => 2, 3 => 3, 4 => 4, 5 => 5, @@ -1843,143 +1909,154 @@ static public $yy_action = array( 8 => 8, 9 => 9, 10 => 10, - 11 => 10, - 12 => 10, - 13 => 13, - 14 => 13, + 11 => 11, + 12 => 11, + 13 => 11, + 14 => 11, 15 => 15, - 16 => 16, + 16 => 15, 17 => 17, - 18 => 18, + 18 => 17, 19 => 19, - 20 => 20, + 20 => 19, 21 => 21, - 22 => 22, + 22 => 21, 23 => 23, 24 => 24, - 33 => 24, - 110 => 24, - 156 => 24, 25 => 25, 26 => 26, 27 => 27, - 28 => 28, + 28 => 27, 29 => 29, 30 => 30, 31 => 31, + 45 => 31, + 125 => 31, + 171 => 31, 32 => 32, + 33 => 33, 34 => 34, 35 => 35, - 36 => 35, - 37 => 35, - 39 => 35, - 38 => 38, - 40 => 40, + 36 => 36, + 37 => 36, 41 => 41, 42 => 42, 43 => 43, - 45 => 45, + 44 => 44, 46 => 46, + 47 => 47, 48 => 48, - 57 => 48, - 58 => 48, - 49 => 49, + 49 => 48, + 50 => 48, + 52 => 48, 51 => 51, - 52 => 51, + 53 => 53, + 54 => 54, 55 => 55, - 60 => 60, + 56 => 56, + 58 => 58, + 59 => 59, + 61 => 61, + 70 => 61, + 71 => 61, + 62 => 62, 64 => 64, - 66 => 66, - 67 => 67, + 65 => 64, 68 => 68, - 69 => 69, - 70 => 70, - 71 => 71, - 72 => 72, 73 => 73, - 74 => 74, - 75 => 75, - 76 => 76, - 77 => 77, - 79 => 79, + 78 => 78, 80 => 80, 81 => 81, 82 => 82, - 157 => 82, 83 => 83, - 115 => 83, 84 => 84, - 85 => 84, - 86 => 84, + 85 => 85, + 86 => 86, 87 => 87, 88 => 88, 89 => 89, 90 => 90, - 93 => 90, 91 => 91, - 92 => 92, + 93 => 93, 94 => 94, - 166 => 94, + 95 => 95, 96 => 96, + 172 => 96, 97 => 97, + 130 => 97, 98 => 98, - 120 => 98, - 99 => 99, - 100 => 100, - 101 => 101, + 99 => 98, + 100 => 98, + 101 => 98, 102 => 102, 103 => 103, 104 => 104, + 107 => 104, 105 => 105, 106 => 106, - 107 => 107, 108 => 108, - 109 => 109, + 181 => 108, + 110 => 110, 111 => 111, - 112 => 112, + 112 => 111, 113 => 113, + 135 => 113, + 114 => 114, + 115 => 115, 116 => 116, 117 => 117, + 118 => 118, 119 => 119, + 120 => 120, 121 => 121, 122 => 122, - 125 => 122, - 136 => 122, 123 => 123, 124 => 124, 126 => 126, 127 => 127, 128 => 128, - 133 => 128, - 129 => 129, - 132 => 129, - 130 => 130, - 135 => 130, 131 => 131, - 134 => 131, + 132 => 132, + 134 => 134, + 136 => 136, 137 => 137, + 140 => 137, + 151 => 137, 138 => 138, 139 => 139, - 140 => 140, 141 => 141, 142 => 142, 143 => 143, + 148 => 143, 144 => 144, + 147 => 144, 145 => 145, + 150 => 145, 146 => 146, - 147 => 147, - 148 => 148, - 149 => 149, - 150 => 150, + 149 => 146, 152 => 152, 153 => 153, 154 => 154, 155 => 155, + 156 => 156, + 157 => 157, + 158 => 158, 159 => 159, - 161 => 159, 160 => 160, + 161 => 161, 162 => 162, 163 => 163, + 164 => 164, + 165 => 165, + 167 => 167, + 168 => 168, + 169 => 169, + 170 => 170, + 174 => 174, + 176 => 174, + 175 => 175, + 177 => 177, + 178 => 178, ); /* Beginning here are the reduction cases. A typical example ** follows: @@ -1987,26 +2064,26 @@ static public $yy_action = array( ** function yy_r0($yymsp){ ... } // User supplied code ** #line */ -#line 79 "smarty_internal_templateparser.y" +#line 78 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1997 "smarty_internal_templateparser.php" -#line 85 "smarty_internal_templateparser.y" +#line 2074 "smarty_internal_templateparser.php" +#line 84 "smarty_internal_templateparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2000 "smarty_internal_templateparser.php" -#line 87 "smarty_internal_templateparser.y" +#line 2077 "smarty_internal_templateparser.php" +#line 86 "smarty_internal_templateparser.y" function yy_r2(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2003 "smarty_internal_templateparser.php" -#line 93 "smarty_internal_templateparser.y" +#line 2080 "smarty_internal_templateparser.php" +#line 92 "smarty_internal_templateparser.y" function yy_r3(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;} $this->compiler->has_variable_string = false; } -#line 2010 "smarty_internal_templateparser.php" -#line 100 "smarty_internal_templateparser.y" +#line 2087 "smarty_internal_templateparser.php" +#line 99 "smarty_internal_templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 2013 "smarty_internal_templateparser.php" -#line 105 "smarty_internal_templateparser.y" +#line 2090 "smarty_internal_templateparser.php" +#line 104 "smarty_internal_templateparser.y" function yy_r5(){if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { $this->_retvalue = $this->cacher->processNocacheCode("yystack[$this->yyidx + -1]->minor)."?>', ENT_QUOTES);?>\n", $this->compiler, false); } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { @@ -2017,8 +2094,8 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2025 "smarty_internal_templateparser.php" -#line 116 "smarty_internal_templateparser.y" +#line 2102 "smarty_internal_templateparser.php" +#line 115 "smarty_internal_templateparser.y" function yy_r6(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU || $this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { $this->_retvalue = $this->cacher->processNocacheCode("yystack[$this->yyidx + -1]->minor."?>'?>\n", $this->compiler, false); @@ -2028,119 +2105,42 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2036 "smarty_internal_templateparser.php" -#line 127 "smarty_internal_templateparser.y" +#line 2113 "smarty_internal_templateparser.php" +#line 126 "smarty_internal_templateparser.y" function yy_r7(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("", $this->compiler, true); } -#line 2039 "smarty_internal_templateparser.php" -#line 128 "smarty_internal_templateparser.y" +#line 2116 "smarty_internal_templateparser.php" +#line 127 "smarty_internal_templateparser.y" function yy_r8(){$this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("';?>\n", $this->compiler, true); } -#line 2042 "smarty_internal_templateparser.php" -#line 130 "smarty_internal_templateparser.y" +#line 2119 "smarty_internal_templateparser.php" +#line 129 "smarty_internal_templateparser.y" function yy_r9(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false); } -#line 2045 "smarty_internal_templateparser.php" -#line 137 "smarty_internal_templateparser.y" - function yy_r10(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2048 "smarty_internal_templateparser.php" -#line 147 "smarty_internal_templateparser.y" - function yy_r13(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } -#line 2051 "smarty_internal_templateparser.php" -#line 150 "smarty_internal_templateparser.y" - function yy_r15(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2054 "smarty_internal_templateparser.php" -#line 151 "smarty_internal_templateparser.y" - function yy_r16(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2057 "smarty_internal_templateparser.php" -#line 153 "smarty_internal_templateparser.y" - function yy_r17(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2060 "smarty_internal_templateparser.php" -#line 155 "smarty_internal_templateparser.y" - function yy_r18(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { - $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>"; - } else { - if (is_callable($this->yystack[$this->yyidx + -3]->minor[0])) { - if (!$this->template->security || $this->smarty->security_handler->isTrustedModifier($this->yystack[$this->yyidx + -3]->minor[0], $this->compiler)) { - $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>"; - } - } else { - $this->compiler->trigger_template_error ("unknown modifier \"" . $this->yystack[$this->yyidx + -3]->minor[0] . "\""); - } - } - } -#line 2075 "smarty_internal_templateparser.php" -#line 169 "smarty_internal_templateparser.y" - function yy_r19(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { - $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>"; - } else { - if (is_callable($this->yystack[$this->yyidx + -3]->minor[0])) { - if (!$this->template->security || $this->smarty->security_handler->isTrustedModifier($this->yystack[$this->yyidx + -3]->minor[0], $this->compiler)) { - $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>"; - } - } else { - $this->compiler->trigger_template_error ("unknown modifier \"" . $this->yystack[$this->yyidx + -3]->minor[0] . "\""); - } - } - } -#line 2090 "smarty_internal_templateparser.php" -#line 183 "smarty_internal_templateparser.y" - function yy_r20(){if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) { - $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); - } - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2096 "smarty_internal_templateparser.php" -#line 187 "smarty_internal_templateparser.y" - function yy_r21(){ if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) { - $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); - } - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2102 "smarty_internal_templateparser.php" -#line 192 "smarty_internal_templateparser.y" - function yy_r22(){ - if ($this->yystack[$this->yyidx + -11]->minor != 'for') { - $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -11]->minor . "\""); - } - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2109 "smarty_internal_templateparser.php" -#line 197 "smarty_internal_templateparser.y" - function yy_r23(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2112 "smarty_internal_templateparser.php" -#line 198 "smarty_internal_templateparser.y" - function yy_r24(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2115 "smarty_internal_templateparser.php" -#line 200 "smarty_internal_templateparser.y" - function yy_r25(){ - if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') { - $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -6]->minor . "\""); - } - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } #line 2122 "smarty_internal_templateparser.php" -#line 205 "smarty_internal_templateparser.y" - function yy_r26(){ - if ($this->yystack[$this->yyidx + -9]->minor != 'foreach') { - $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -9]->minor . "\""); - } - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2129 "smarty_internal_templateparser.php" -#line 210 "smarty_internal_templateparser.y" - function yy_r27(){ - if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') { - $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -6]->minor . "\""); - } - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2136 "smarty_internal_templateparser.php" -#line 215 "smarty_internal_templateparser.y" - function yy_r28(){ - if ($this->yystack[$this->yyidx + -9]->minor != 'foreach') { - $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -9]->minor . "\""); - } - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } +#line 137 "smarty_internal_templateparser.y" + function yy_r10(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2125 "smarty_internal_templateparser.php" +#line 138 "smarty_internal_templateparser.y" + function yy_r11(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2128 "smarty_internal_templateparser.php" +#line 149 "smarty_internal_templateparser.y" + function yy_r15(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } +#line 2131 "smarty_internal_templateparser.php" +#line 151 "smarty_internal_templateparser.y" + function yy_r17(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2134 "smarty_internal_templateparser.php" +#line 153 "smarty_internal_templateparser.y" + function yy_r19(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } +#line 2137 "smarty_internal_templateparser.php" +#line 156 "smarty_internal_templateparser.y" + function yy_r21(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } +#line 2140 "smarty_internal_templateparser.php" +#line 158 "smarty_internal_templateparser.y" + function yy_r23(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } #line 2143 "smarty_internal_templateparser.php" -#line 222 "smarty_internal_templateparser.y" - function yy_r29(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } +#line 160 "smarty_internal_templateparser.y" + function yy_r24(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } #line 2146 "smarty_internal_templateparser.php" -#line 223 "smarty_internal_templateparser.y" - function yy_r30(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>"; } else { @@ -2154,38 +2154,106 @@ static public $yy_action = array( } } #line 2161 "smarty_internal_templateparser.php" -#line 237 "smarty_internal_templateparser.y" - function yy_r31(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2164 "smarty_internal_templateparser.php" -#line 244 "smarty_internal_templateparser.y" - function yy_r32(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2167 "smarty_internal_templateparser.php" -#line 248 "smarty_internal_templateparser.y" - function yy_r34(){ $this->_retvalue = array(); } -#line 2170 "smarty_internal_templateparser.php" -#line 251 "smarty_internal_templateparser.y" - function yy_r35(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2173 "smarty_internal_templateparser.php" -#line 254 "smarty_internal_templateparser.y" - function yy_r38(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } +#line 176 "smarty_internal_templateparser.y" + function yy_r26(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { + $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>"; + } else { + if (is_callable($this->yystack[$this->yyidx + -3]->minor[0])) { + if (!$this->template->security || $this->smarty->security_handler->isTrustedModifier($this->yystack[$this->yyidx + -3]->minor[0], $this->compiler)) { + $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>"; + } + } else { + $this->compiler->trigger_template_error ("unknown modifier \"" . $this->yystack[$this->yyidx + -3]->minor[0] . "\""); + } + } + } #line 2176 "smarty_internal_templateparser.php" -#line 261 "smarty_internal_templateparser.y" - function yy_r40(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } +#line 190 "smarty_internal_templateparser.y" + function yy_r27(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } #line 2179 "smarty_internal_templateparser.php" +#line 193 "smarty_internal_templateparser.y" + function yy_r29(){ + $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2183 "smarty_internal_templateparser.php" +#line 195 "smarty_internal_templateparser.y" + function yy_r30(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } +#line 2186 "smarty_internal_templateparser.php" +#line 196 "smarty_internal_templateparser.y" + function yy_r31(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2189 "smarty_internal_templateparser.php" +#line 198 "smarty_internal_templateparser.y" + function yy_r32(){ + $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2193 "smarty_internal_templateparser.php" +#line 200 "smarty_internal_templateparser.y" + function yy_r33(){ + $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } +#line 2197 "smarty_internal_templateparser.php" +#line 202 "smarty_internal_templateparser.y" + function yy_r34(){ + $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2201 "smarty_internal_templateparser.php" +#line 204 "smarty_internal_templateparser.y" + function yy_r35(){ + $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } +#line 2205 "smarty_internal_templateparser.php" +#line 208 "smarty_internal_templateparser.y" + function yy_r36(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } +#line 2208 "smarty_internal_templateparser.php" +#line 213 "smarty_internal_templateparser.y" + function yy_r41(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } +#line 2211 "smarty_internal_templateparser.php" +#line 214 "smarty_internal_templateparser.y" + function yy_r42(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { + $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>"; + } else { + if (is_callable($this->yystack[$this->yyidx + -3]->minor[0])) { + if (!$this->template->security || $this->smarty->security_handler->isTrustedModifier($this->yystack[$this->yyidx + -3]->minor[0], $this->compiler)) { + $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>"; + } + } else { + $this->compiler->trigger_template_error ("unknown modifier \"" . $this->yystack[$this->yyidx + -3]->minor[0] . "\""); + } + } + } +#line 2226 "smarty_internal_templateparser.php" +#line 228 "smarty_internal_templateparser.y" + function yy_r43(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2229 "smarty_internal_templateparser.php" +#line 235 "smarty_internal_templateparser.y" + function yy_r44(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } +#line 2232 "smarty_internal_templateparser.php" +#line 239 "smarty_internal_templateparser.y" + function yy_r46(){ $this->_retvalue = array(); } +#line 2235 "smarty_internal_templateparser.php" +#line 242 "smarty_internal_templateparser.y" + function yy_r47(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } +#line 2238 "smarty_internal_templateparser.php" +#line 243 "smarty_internal_templateparser.y" + function yy_r48(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2241 "smarty_internal_templateparser.php" +#line 246 "smarty_internal_templateparser.y" + function yy_r51(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } +#line 2244 "smarty_internal_templateparser.php" +#line 253 "smarty_internal_templateparser.y" + function yy_r53(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } +#line 2247 "smarty_internal_templateparser.php" +#line 254 "smarty_internal_templateparser.y" + function yy_r54(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } +#line 2250 "smarty_internal_templateparser.php" +#line 256 "smarty_internal_templateparser.y" + function yy_r55(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2253 "smarty_internal_templateparser.php" #line 262 "smarty_internal_templateparser.y" - function yy_r41(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2182 "smarty_internal_templateparser.php" -#line 264 "smarty_internal_templateparser.y" - function yy_r42(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2185 "smarty_internal_templateparser.php" -#line 270 "smarty_internal_templateparser.y" - function yy_r43(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2188 "smarty_internal_templateparser.php" -#line 273 "smarty_internal_templateparser.y" - function yy_r45(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2191 "smarty_internal_templateparser.php" -#line 274 "smarty_internal_templateparser.y" - function yy_r46(){ + function yy_r56(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2256 "smarty_internal_templateparser.php" +#line 265 "smarty_internal_templateparser.y" + function yy_r58(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } +#line 2259 "smarty_internal_templateparser.php" +#line 266 "smarty_internal_templateparser.y" + function yy_r59(){ if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) { $this->_retvalue = "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -1]->minor[0] . "',array(". $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + 0]->minor. "),".$this->yystack[$this->yyidx + -1]->minor[1].")"; } else { @@ -2198,270 +2266,267 @@ static public $yy_action = array( } } } -#line 2206 "smarty_internal_templateparser.php" -#line 291 "smarty_internal_templateparser.y" - function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2209 "smarty_internal_templateparser.php" -#line 293 "smarty_internal_templateparser.y" - function yy_r49(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } -#line 2212 "smarty_internal_templateparser.php" -#line 300 "smarty_internal_templateparser.y" - function yy_r51(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2215 "smarty_internal_templateparser.php" +#line 2274 "smarty_internal_templateparser.php" +#line 283 "smarty_internal_templateparser.y" + function yy_r61(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2277 "smarty_internal_templateparser.php" +#line 285 "smarty_internal_templateparser.y" + function yy_r62(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } +#line 2280 "smarty_internal_templateparser.php" +#line 292 "smarty_internal_templateparser.y" + function yy_r64(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } +#line 2283 "smarty_internal_templateparser.php" +#line 306 "smarty_internal_templateparser.y" + function yy_r68(){$this->_retvalue = ' & '; } +#line 2286 "smarty_internal_templateparser.php" #line 314 "smarty_internal_templateparser.y" - function yy_r55(){$this->_retvalue = ' & '; } -#line 2218 "smarty_internal_templateparser.php" -#line 322 "smarty_internal_templateparser.y" - function yy_r60(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2221 "smarty_internal_templateparser.php" -#line 330 "smarty_internal_templateparser.y" - function yy_r64(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2224 "smarty_internal_templateparser.php" -#line 334 "smarty_internal_templateparser.y" - function yy_r66(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); + function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2289 "smarty_internal_templateparser.php" +#line 324 "smarty_internal_templateparser.y" + function yy_r78(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2292 "smarty_internal_templateparser.php" +#line 328 "smarty_internal_templateparser.y" + function yy_r80(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); if (substr($_s,0,3) == '"".') { $this->_retvalue = substr($_s,3); } else { $this->_retvalue = $_s; } } -#line 2233 "smarty_internal_templateparser.php" +#line 2301 "smarty_internal_templateparser.php" +#line 335 "smarty_internal_templateparser.y" + function yy_r81(){ $this->_retvalue = "''"; } +#line 2304 "smarty_internal_templateparser.php" +#line 337 "smarty_internal_templateparser.y" + function yy_r82(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2307 "smarty_internal_templateparser.php" +#line 338 "smarty_internal_templateparser.y" + function yy_r83(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2310 "smarty_internal_templateparser.php" +#line 340 "smarty_internal_templateparser.y" + function yy_r84(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2313 "smarty_internal_templateparser.php" #line 341 "smarty_internal_templateparser.y" - function yy_r67(){ $this->_retvalue = "''"; } -#line 2236 "smarty_internal_templateparser.php" + function yy_r85(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2316 "smarty_internal_templateparser.php" #line 343 "smarty_internal_templateparser.y" - function yy_r68(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2239 "smarty_internal_templateparser.php" -#line 344 "smarty_internal_templateparser.y" - function yy_r69(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2242 "smarty_internal_templateparser.php" -#line 346 "smarty_internal_templateparser.y" - function yy_r70(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2245 "smarty_internal_templateparser.php" -#line 347 "smarty_internal_templateparser.y" - function yy_r71(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2248 "smarty_internal_templateparser.php" -#line 349 "smarty_internal_templateparser.y" - function yy_r72(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2251 "smarty_internal_templateparser.php" -#line 351 "smarty_internal_templateparser.y" - function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2254 "smarty_internal_templateparser.php" -#line 353 "smarty_internal_templateparser.y" - function yy_r74(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2257 "smarty_internal_templateparser.php" -#line 355 "smarty_internal_templateparser.y" - function yy_r75(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2260 "smarty_internal_templateparser.php" -#line 364 "smarty_internal_templateparser.y" - function yy_r76(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { - $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2264 "smarty_internal_templateparser.php" -#line 367 "smarty_internal_templateparser.y" - function yy_r77(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2267 "smarty_internal_templateparser.php" -#line 371 "smarty_internal_templateparser.y" - function yy_r79(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2270 "smarty_internal_templateparser.php" -#line 372 "smarty_internal_templateparser.y" - function yy_r80(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2273 "smarty_internal_templateparser.php" -#line 375 "smarty_internal_templateparser.y" - function yy_r81(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2276 "smarty_internal_templateparser.php" -#line 381 "smarty_internal_templateparser.y" - function yy_r82(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2279 "smarty_internal_templateparser.php" -#line 383 "smarty_internal_templateparser.y" - function yy_r83(){return; } -#line 2282 "smarty_internal_templateparser.php" -#line 387 "smarty_internal_templateparser.y" - function yy_r84(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2285 "smarty_internal_templateparser.php" -#line 390 "smarty_internal_templateparser.y" - function yy_r87(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2288 "smarty_internal_templateparser.php" -#line 391 "smarty_internal_templateparser.y" - function yy_r88(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2291 "smarty_internal_templateparser.php" -#line 392 "smarty_internal_templateparser.y" - function yy_r89(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } -#line 2294 "smarty_internal_templateparser.php" -#line 393 "smarty_internal_templateparser.y" - function yy_r90(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2297 "smarty_internal_templateparser.php" -#line 395 "smarty_internal_templateparser.y" - function yy_r91(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2300 "smarty_internal_templateparser.php" -#line 396 "smarty_internal_templateparser.y" - function yy_r92(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2303 "smarty_internal_templateparser.php" -#line 400 "smarty_internal_templateparser.y" - function yy_r94(){$this->_retvalue = ''; } -#line 2306 "smarty_internal_templateparser.php" -#line 408 "smarty_internal_templateparser.y" - function yy_r96(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2309 "smarty_internal_templateparser.php" -#line 410 "smarty_internal_templateparser.y" - function yy_r97(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2312 "smarty_internal_templateparser.php" -#line 412 "smarty_internal_templateparser.y" - function yy_r98(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2315 "smarty_internal_templateparser.php" -#line 417 "smarty_internal_templateparser.y" - function yy_r99(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else { - $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } + function yy_r86(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } #line 2319 "smarty_internal_templateparser.php" -#line 420 "smarty_internal_templateparser.y" - function yy_r100(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 345 "smarty_internal_templateparser.y" + function yy_r87(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2322 "smarty_internal_templateparser.php" -#line 422 "smarty_internal_templateparser.y" - function yy_r101(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 347 "smarty_internal_templateparser.y" + function yy_r88(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2325 "smarty_internal_templateparser.php" -#line 424 "smarty_internal_templateparser.y" - function yy_r102(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 349 "smarty_internal_templateparser.y" + function yy_r89(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } #line 2328 "smarty_internal_templateparser.php" -#line 425 "smarty_internal_templateparser.y" - function yy_r103(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2331 "smarty_internal_templateparser.php" -#line 426 "smarty_internal_templateparser.y" - function yy_r104(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2334 "smarty_internal_templateparser.php" -#line 427 "smarty_internal_templateparser.y" - function yy_r105(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2337 "smarty_internal_templateparser.php" -#line 429 "smarty_internal_templateparser.y" - function yy_r106(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2340 "smarty_internal_templateparser.php" -#line 435 "smarty_internal_templateparser.y" - function yy_r107(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { +#line 358 "smarty_internal_templateparser.y" + function yy_r90(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { + $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } +#line 2332 "smarty_internal_templateparser.php" +#line 361 "smarty_internal_templateparser.y" + function yy_r91(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } +#line 2335 "smarty_internal_templateparser.php" +#line 365 "smarty_internal_templateparser.y" + function yy_r93(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } +#line 2338 "smarty_internal_templateparser.php" +#line 366 "smarty_internal_templateparser.y" + function yy_r94(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2341 "smarty_internal_templateparser.php" +#line 369 "smarty_internal_templateparser.y" + function yy_r95(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2344 "smarty_internal_templateparser.php" +#line 375 "smarty_internal_templateparser.y" + function yy_r96(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2347 "smarty_internal_templateparser.php" +#line 377 "smarty_internal_templateparser.y" + function yy_r97(){return; } +#line 2350 "smarty_internal_templateparser.php" +#line 381 "smarty_internal_templateparser.y" + function yy_r98(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2353 "smarty_internal_templateparser.php" +#line 385 "smarty_internal_templateparser.y" + function yy_r102(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2356 "smarty_internal_templateparser.php" +#line 386 "smarty_internal_templateparser.y" + function yy_r103(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } +#line 2359 "smarty_internal_templateparser.php" +#line 387 "smarty_internal_templateparser.y" + function yy_r104(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2362 "smarty_internal_templateparser.php" +#line 389 "smarty_internal_templateparser.y" + function yy_r105(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2365 "smarty_internal_templateparser.php" +#line 390 "smarty_internal_templateparser.y" + function yy_r106(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2368 "smarty_internal_templateparser.php" +#line 394 "smarty_internal_templateparser.y" + function yy_r108(){$this->_retvalue = ''; } +#line 2371 "smarty_internal_templateparser.php" +#line 402 "smarty_internal_templateparser.y" + function yy_r110(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2374 "smarty_internal_templateparser.php" +#line 404 "smarty_internal_templateparser.y" + function yy_r111(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2377 "smarty_internal_templateparser.php" +#line 407 "smarty_internal_templateparser.y" + function yy_r113(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2380 "smarty_internal_templateparser.php" +#line 412 "smarty_internal_templateparser.y" + function yy_r114(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else { + $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } +#line 2384 "smarty_internal_templateparser.php" +#line 415 "smarty_internal_templateparser.y" + function yy_r115(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2387 "smarty_internal_templateparser.php" +#line 417 "smarty_internal_templateparser.y" + function yy_r116(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2390 "smarty_internal_templateparser.php" +#line 419 "smarty_internal_templateparser.y" + function yy_r117(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2393 "smarty_internal_templateparser.php" +#line 420 "smarty_internal_templateparser.y" + function yy_r118(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2396 "smarty_internal_templateparser.php" +#line 421 "smarty_internal_templateparser.y" + function yy_r119(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2399 "smarty_internal_templateparser.php" +#line 422 "smarty_internal_templateparser.y" + function yy_r120(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2402 "smarty_internal_templateparser.php" +#line 424 "smarty_internal_templateparser.y" + function yy_r121(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2405 "smarty_internal_templateparser.php" +#line 430 "smarty_internal_templateparser.y" + function yy_r122(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) { $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } else { $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } -#line 2349 "smarty_internal_templateparser.php" -#line 446 "smarty_internal_templateparser.y" - function yy_r108(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2352 "smarty_internal_templateparser.php" -#line 450 "smarty_internal_templateparser.y" - function yy_r109(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2355 "smarty_internal_templateparser.php" +#line 2414 "smarty_internal_templateparser.php" +#line 441 "smarty_internal_templateparser.y" + function yy_r123(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2417 "smarty_internal_templateparser.php" +#line 445 "smarty_internal_templateparser.y" + function yy_r124(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } +#line 2420 "smarty_internal_templateparser.php" +#line 449 "smarty_internal_templateparser.y" + function yy_r126(){ return; } +#line 2423 "smarty_internal_templateparser.php" #line 454 "smarty_internal_templateparser.y" - function yy_r111(){ return; } -#line 2358 "smarty_internal_templateparser.php" -#line 459 "smarty_internal_templateparser.y" - function yy_r112(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } -#line 2361 "smarty_internal_templateparser.php" -#line 460 "smarty_internal_templateparser.y" - function yy_r113(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } -#line 2364 "smarty_internal_templateparser.php" -#line 476 "smarty_internal_templateparser.y" - function yy_r116(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2367 "smarty_internal_templateparser.php" -#line 477 "smarty_internal_templateparser.y" - function yy_r117(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2370 "smarty_internal_templateparser.php" + function yy_r127(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } +#line 2426 "smarty_internal_templateparser.php" +#line 455 "smarty_internal_templateparser.y" + function yy_r128(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } +#line 2429 "smarty_internal_templateparser.php" +#line 471 "smarty_internal_templateparser.y" + function yy_r131(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2432 "smarty_internal_templateparser.php" +#line 472 "smarty_internal_templateparser.y" + function yy_r132(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2435 "smarty_internal_templateparser.php" +#line 479 "smarty_internal_templateparser.y" + function yy_r134(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2438 "smarty_internal_templateparser.php" #line 484 "smarty_internal_templateparser.y" - function yy_r119(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2373 "smarty_internal_templateparser.php" -#line 489 "smarty_internal_templateparser.y" - function yy_r121(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2376 "smarty_internal_templateparser.php" + function yy_r136(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } +#line 2441 "smarty_internal_templateparser.php" +#line 486 "smarty_internal_templateparser.y" + function yy_r137(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2444 "smarty_internal_templateparser.php" +#line 487 "smarty_internal_templateparser.y" + function yy_r138(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2447 "smarty_internal_templateparser.php" +#line 488 "smarty_internal_templateparser.y" + function yy_r139(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2450 "smarty_internal_templateparser.php" +#line 490 "smarty_internal_templateparser.y" + function yy_r141(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2453 "smarty_internal_templateparser.php" #line 491 "smarty_internal_templateparser.y" - function yy_r122(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2379 "smarty_internal_templateparser.php" + function yy_r142(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2456 "smarty_internal_templateparser.php" #line 492 "smarty_internal_templateparser.y" - function yy_r123(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2382 "smarty_internal_templateparser.php" + function yy_r143(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2459 "smarty_internal_templateparser.php" #line 493 "smarty_internal_templateparser.y" - function yy_r124(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2385 "smarty_internal_templateparser.php" + function yy_r144(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2462 "smarty_internal_templateparser.php" +#line 494 "smarty_internal_templateparser.y" + function yy_r145(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2465 "smarty_internal_templateparser.php" #line 495 "smarty_internal_templateparser.y" - function yy_r126(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2388 "smarty_internal_templateparser.php" -#line 496 "smarty_internal_templateparser.y" - function yy_r127(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2391 "smarty_internal_templateparser.php" -#line 497 "smarty_internal_templateparser.y" - function yy_r128(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2394 "smarty_internal_templateparser.php" -#line 498 "smarty_internal_templateparser.y" - function yy_r129(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2397 "smarty_internal_templateparser.php" -#line 499 "smarty_internal_templateparser.y" - function yy_r130(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2400 "smarty_internal_templateparser.php" -#line 500 "smarty_internal_templateparser.y" - function yy_r131(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2403 "smarty_internal_templateparser.php" + function yy_r146(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2468 "smarty_internal_templateparser.php" +#line 501 "smarty_internal_templateparser.y" + function yy_r152(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } +#line 2471 "smarty_internal_templateparser.php" +#line 503 "smarty_internal_templateparser.y" + function yy_r153(){$this->_retvalue = '=='; } +#line 2474 "smarty_internal_templateparser.php" +#line 504 "smarty_internal_templateparser.y" + function yy_r154(){$this->_retvalue = '!='; } +#line 2477 "smarty_internal_templateparser.php" +#line 505 "smarty_internal_templateparser.y" + function yy_r155(){$this->_retvalue = '>'; } +#line 2480 "smarty_internal_templateparser.php" #line 506 "smarty_internal_templateparser.y" - function yy_r137(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } -#line 2406 "smarty_internal_templateparser.php" + function yy_r156(){$this->_retvalue = '<'; } +#line 2483 "smarty_internal_templateparser.php" +#line 507 "smarty_internal_templateparser.y" + function yy_r157(){$this->_retvalue = '>='; } +#line 2486 "smarty_internal_templateparser.php" #line 508 "smarty_internal_templateparser.y" - function yy_r138(){$this->_retvalue = '=='; } -#line 2409 "smarty_internal_templateparser.php" + function yy_r158(){$this->_retvalue = '<='; } +#line 2489 "smarty_internal_templateparser.php" #line 509 "smarty_internal_templateparser.y" - function yy_r139(){$this->_retvalue = '!='; } -#line 2412 "smarty_internal_templateparser.php" + function yy_r159(){$this->_retvalue = '==='; } +#line 2492 "smarty_internal_templateparser.php" #line 510 "smarty_internal_templateparser.y" - function yy_r140(){$this->_retvalue = '>'; } -#line 2415 "smarty_internal_templateparser.php" + function yy_r160(){$this->_retvalue = '!=='; } +#line 2495 "smarty_internal_templateparser.php" #line 511 "smarty_internal_templateparser.y" - function yy_r141(){$this->_retvalue = '<'; } -#line 2418 "smarty_internal_templateparser.php" -#line 512 "smarty_internal_templateparser.y" - function yy_r142(){$this->_retvalue = '>='; } -#line 2421 "smarty_internal_templateparser.php" + function yy_r161(){$this->_retvalue = '%'; } +#line 2498 "smarty_internal_templateparser.php" #line 513 "smarty_internal_templateparser.y" - function yy_r143(){$this->_retvalue = '<='; } -#line 2424 "smarty_internal_templateparser.php" + function yy_r162(){$this->_retvalue = '&&'; } +#line 2501 "smarty_internal_templateparser.php" #line 514 "smarty_internal_templateparser.y" - function yy_r144(){$this->_retvalue = '==='; } -#line 2427 "smarty_internal_templateparser.php" + function yy_r163(){$this->_retvalue = '||'; } +#line 2504 "smarty_internal_templateparser.php" #line 515 "smarty_internal_templateparser.y" - function yy_r145(){$this->_retvalue = '!=='; } -#line 2430 "smarty_internal_templateparser.php" -#line 516 "smarty_internal_templateparser.y" - function yy_r146(){$this->_retvalue = '%'; } -#line 2433 "smarty_internal_templateparser.php" -#line 518 "smarty_internal_templateparser.y" - function yy_r147(){$this->_retvalue = '&&'; } -#line 2436 "smarty_internal_templateparser.php" -#line 519 "smarty_internal_templateparser.y" - function yy_r148(){$this->_retvalue = '||'; } -#line 2439 "smarty_internal_templateparser.php" + function yy_r164(){$this->_retvalue = ' XOR '; } +#line 2507 "smarty_internal_templateparser.php" #line 520 "smarty_internal_templateparser.y" - function yy_r149(){$this->_retvalue = ' XOR '; } -#line 2442 "smarty_internal_templateparser.php" + function yy_r165(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2510 "smarty_internal_templateparser.php" +#line 522 "smarty_internal_templateparser.y" + function yy_r167(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2513 "smarty_internal_templateparser.php" +#line 523 "smarty_internal_templateparser.y" + function yy_r168(){ return; } +#line 2516 "smarty_internal_templateparser.php" +#line 524 "smarty_internal_templateparser.y" + function yy_r169(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2519 "smarty_internal_templateparser.php" #line 525 "smarty_internal_templateparser.y" - function yy_r150(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2445 "smarty_internal_templateparser.php" -#line 527 "smarty_internal_templateparser.y" - function yy_r152(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2448 "smarty_internal_templateparser.php" -#line 528 "smarty_internal_templateparser.y" - function yy_r153(){ return; } -#line 2451 "smarty_internal_templateparser.php" -#line 529 "smarty_internal_templateparser.y" - function yy_r154(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2454 "smarty_internal_templateparser.php" -#line 530 "smarty_internal_templateparser.y" - function yy_r155(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2457 "smarty_internal_templateparser.php" -#line 539 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } -#line 2460 "smarty_internal_templateparser.php" -#line 540 "smarty_internal_templateparser.y" - function yy_r160(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; $this->compiler->has_variable_string = true; } -#line 2463 "smarty_internal_templateparser.php" -#line 542 "smarty_internal_templateparser.y" - function yy_r162(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } -#line 2466 "smarty_internal_templateparser.php" -#line 543 "smarty_internal_templateparser.y" - function yy_r163(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } -#line 2469 "smarty_internal_templateparser.php" + function yy_r170(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2522 "smarty_internal_templateparser.php" +#line 534 "smarty_internal_templateparser.y" + function yy_r174(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } +#line 2525 "smarty_internal_templateparser.php" +#line 535 "smarty_internal_templateparser.y" + function yy_r175(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; $this->compiler->has_variable_string = true; } +#line 2528 "smarty_internal_templateparser.php" +#line 537 "smarty_internal_templateparser.y" + function yy_r177(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } +#line 2531 "smarty_internal_templateparser.php" +#line 538 "smarty_internal_templateparser.y" + function yy_r178(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } +#line 2534 "smarty_internal_templateparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -2578,7 +2643,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2587 "smarty_internal_templateparser.php" +#line 2652 "smarty_internal_templateparser.php" } /** @@ -2602,7 +2667,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2612 "smarty_internal_templateparser.php" +#line 2677 "smarty_internal_templateparser.php" } /**