diff --git a/change_log.txt b/change_log.txt index 16242fe9..3b054d19 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,7 @@ +12/04/2009 +- added max attribute to for loop +- added security mode allow_super_globals + 12/03/2009 - template inheritance: child templates can now call functions defined by the {function} tag in the parent template - added {for $foo = 1 to 5 step 2} syntax diff --git a/libs/sysplugins/smarty_internal_compile_for.php b/libs/sysplugins/smarty_internal_compile_for.php index d6e58964..7b9889e2 100644 --- a/libs/sysplugins/smarty_internal_compile_for.php +++ b/libs/sysplugins/smarty_internal_compile_for.php @@ -38,7 +38,7 @@ class Smarty_Internal_Compile_For extends Smarty_Internal_CompileBase { $this->required_attributes = array('ifexp', 'start', 'loop', 'varloop'); } else { $this->required_attributes = array('start', 'to'); - $this->optional_attributes = array('step'); + $this->optional_attributes = array('step', 'max'); } // check and get attributes $_attr = $this->_get_attributes($args); @@ -62,7 +62,11 @@ class Smarty_Internal_Compile_For extends Smarty_Internal_CompileBase { } else { $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->step = ($_attr[to] - ($_statement[value]) < 0) ? -1 : 1;"; } - $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->total = (int)ceil((\$_smarty_tpl->tpl_vars[$_statement[var]]->step > 0 ? $_attr[to]+1 - $_statement[value] : $_statement[value]-($_attr[to])+1)/abs(\$_smarty_tpl->tpl_vars[$_statement[var]]->step));\n"; + if (isset($_attr['max'])) { + $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->total = (int)min(ceil((\$_smarty_tpl->tpl_vars[$_statement[var]]->step > 0 ? $_attr[to]+1 - $_statement[value] : $_statement[value]-($_attr[to])+1)/abs(\$_smarty_tpl->tpl_vars[$_statement[var]]->step)),$_attr[max]);\n"; + } else { + $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->total = (int)ceil((\$_smarty_tpl->tpl_vars[$_statement[var]]->step > 0 ? $_attr[to]+1 - $_statement[value] : $_statement[value]-($_attr[to])+1)/abs(\$_smarty_tpl->tpl_vars[$_statement[var]]->step));\n"; + } $output .= "if (\$_smarty_tpl->tpl_vars[$_statement[var]]->total > 0){\n"; $output .= "for (\$_smarty_tpl->tpl_vars[$_statement[var]]->value = $_statement[value], \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration = 1;\$_smarty_tpl->tpl_vars[$_statement[var]]->iteration <= \$_smarty_tpl->tpl_vars[$_statement[var]]->total;\$_smarty_tpl->tpl_vars[$_statement[var]]->value += \$_smarty_tpl->tpl_vars[$_statement[var]]->step, \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration++){\n"; $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->first = \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration == 1;"; diff --git a/libs/sysplugins/smarty_internal_compile_special_smarty_variable.php b/libs/sysplugins/smarty_internal_compile_special_smarty_variable.php index 3b053230..2405385d 100644 --- a/libs/sysplugins/smarty_internal_compile_special_smarty_variable.php +++ b/libs/sysplugins/smarty_internal_compile_special_smarty_variable.php @@ -21,9 +21,10 @@ class Smarty_Internal_Compile_Special_Smarty_Variable extends Smarty_Internal_Co */ public function compile($args, $compiler) { - $_index = explode(',', str_replace(array(']['), array(','), substr($args,1,strlen($args)-2))); + $_index = explode(',', str_replace(array(']['), array(','), substr($args, 1, strlen($args)-2))); $compiled_ref = ' '; - switch (trim($_index[0], "'")) { + $variable = trim($_index[0], "'"); + switch ($variable) { case 'foreach': return "\$_smarty_tpl->getVariable('smarty')->value$args"; case 'section': @@ -34,31 +35,17 @@ class Smarty_Internal_Compile_Special_Smarty_Variable extends Smarty_Internal_Co return 'time()'; case 'get': - $compiled_ref = "\$_GET"; - break; - case 'post': - $compiled_ref = "\$_POST"; - break; - case 'cookies': - $compiled_ref = "\$_COOKIE"; - break; - case 'env': - $compiled_ref = "\$_ENV"; - break; - case 'server': - $compiled_ref = "\$_SERVER"; - break; - case 'session': - $compiled_ref = "\$_SESSION"; - break; - case 'request': - $compiled_ref = "\$_REQUEST"; + if ($compiler->smarty->security && !$compiler->smarty->security_policy->allow_super_globals) { + $compiler->trigger_template_error("(secure mode) super globals not permitted"); + break; + } + $compiled_ref = "\$_".strtoupper($variable); break; case 'template': @@ -103,4 +90,5 @@ class Smarty_Internal_Compile_Special_Smarty_Variable extends Smarty_Internal_Co return $compiled_ref; } } + ?> diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index d3d25a3b..8fdaf278 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -69,7 +69,6 @@ class Smarty_Internal_Templatelexer 'LITERALEND' => 'literal close', 'AS' => 'as', 'TO' => 'to', - 'STEP' => 'step', 'NULL' => 'null', 'BOOLEAN' => 'boolean' ); @@ -393,12 +392,12 @@ class Smarty_Internal_Templatelexer 13 => 0, 14 => 1, 16 => 1, - 18 => 1, + 18 => 0, + 19 => 0, 20 => 0, 21 => 0, 22 => 0, - 23 => 0, - 24 => 0, + 23 => 1, 25 => 1, 27 => 1, 29 => 1, @@ -409,7 +408,8 @@ class Smarty_Internal_Templatelexer 39 => 1, 41 => 1, 43 => 1, - 45 => 1, + 45 => 0, + 46 => 0, 47 => 0, 48 => 0, 49 => 0, @@ -418,19 +418,19 @@ class Smarty_Internal_Templatelexer 52 => 0, 53 => 0, 54 => 0, - 55 => 0, - 56 => 0, - 57 => 3, + 55 => 3, + 59 => 0, + 60 => 0, 61 => 0, 62 => 0, 63 => 0, 64 => 0, 65 => 0, - 66 => 0, - 67 => 0, + 66 => 1, 68 => 1, 70 => 1, - 72 => 1, + 72 => 0, + 73 => 0, 74 => 0, 75 => 0, 76 => 0, @@ -442,20 +442,18 @@ class Smarty_Internal_Templatelexer 82 => 0, 83 => 0, 84 => 0, - 85 => 0, - 86 => 0, - 87 => 1, + 85 => 1, + 87 => 0, + 88 => 0, 89 => 0, 90 => 0, 91 => 0, 92 => 0, - 93 => 0, - 94 => 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+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\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+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -495,77 +493,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+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 11 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 12 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 13 => array(1, "^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 14 => array(2, "^(\\s+(to)\\s+)|^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 16 => array(3, "^(\\s+(step)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 18 => array(4, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 20 => array(4, "^(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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 21 => array(4, "^(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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 22 => array(4, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 23 => array(4, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 24 => array(4, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 25 => array(5, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 27 => array(6, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 29 => array(7, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 31 => array(8, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 33 => array(9, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 35 => array(10, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 37 => array(11, "^(!\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 39 => array(12, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 41 => array(13, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 43 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 45 => array(15, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 47 => array(15, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 48 => array(15, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 49 => array(15, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 50 => array(15, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 51 => array(15, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 52 => array(15, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 53 => array(15, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 54 => array(15, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 55 => array(15, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 56 => array(15, "^(\\((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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 57 => array(18, "^(\\(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 61 => array(18, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 62 => array(18, "^(\\[\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 63 => array(18, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 64 => array(18, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 65 => array(18, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 66 => array(18, "^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 67 => array(18, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 68 => array(19, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 70 => array(20, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 72 => array(21, "^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 74 => array(21, "^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 75 => array(21, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 76 => array(21, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 77 => array(21, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 78 => array(21, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 79 => array(21, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 80 => array(21, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 81 => array(21, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 82 => array(21, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 83 => array(21, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 84 => array(21, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 85 => array(21, "^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 86 => array(21, "^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 87 => array(22, "^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 89 => array(22, "^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 90 => array(22, "^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 91 => array(22, "^(\\d+)|^(\\s+)|^(.)"), - 92 => array(22, "^(\\s+)|^(.)"), - 93 => array(22, "^(.)"), - 94 => array(22, ""), + 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+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([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+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 11 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 12 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 13 => array(1, "^(\\s+(AS|as)\\s+)|^(\\s+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 14 => array(2, "^(\\s+(to)\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 16 => array(3, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 18 => array(3, "^(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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 19 => array(3, "^(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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 20 => array(3, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 21 => array(3, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 22 => array(3, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 23 => array(4, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 25 => array(5, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 27 => array(6, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 29 => array(7, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 31 => array(8, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 33 => array(9, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 35 => array(10, "^(!\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 37 => array(11, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 39 => array(12, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 41 => array(13, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 43 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 45 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 46 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 47 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 48 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 49 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 50 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 51 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 52 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 53 => array(14, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 54 => array(14, "^(\\((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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 55 => array(17, "^(\\(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 59 => array(17, "^(\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 60 => array(17, "^(\\[\\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)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 61 => array(17, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 62 => array(17, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 63 => array(17, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 64 => array(17, "^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 65 => array(17, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 66 => array(18, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 68 => array(19, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 70 => array(20, "^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 72 => array(20, "^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 73 => array(20, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 74 => array(20, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 75 => array(20, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 76 => array(20, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 77 => array(20, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 78 => array(20, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 79 => array(20, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 80 => array(20, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 81 => array(20, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 82 => array(20, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 83 => array(20, "^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 84 => array(20, "^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 85 => array(21, "^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 87 => array(21, "^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 88 => 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 @@ -713,291 +710,286 @@ class Smarty_Internal_Templatelexer function yy_r2_18($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_STEP; - } - function yy_r2_20($yy_subpatterns) - { - $this->token = Smarty_Internal_Templateparser::TP_INSTANCEOF; } - function yy_r2_21($yy_subpatterns) + function yy_r2_19($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_BOOLEAN; } - function yy_r2_22($yy_subpatterns) + function yy_r2_20($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NULL; } - function yy_r2_23($yy_subpatterns) + function yy_r2_21($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_IDENTITY; } - function yy_r2_24($yy_subpatterns) + function yy_r2_22($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NONEIDENTITY; } - function yy_r2_25($yy_subpatterns) + function yy_r2_23($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_EQUALS; } - function yy_r2_27($yy_subpatterns) + function yy_r2_25($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NOTEQUALS; } - function yy_r2_29($yy_subpatterns) + function yy_r2_27($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_GREATEREQUAL; } - function yy_r2_31($yy_subpatterns) + function yy_r2_29($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LESSEQUAL; } - function yy_r2_33($yy_subpatterns) + function yy_r2_31($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_GREATERTHAN; } - function yy_r2_35($yy_subpatterns) + function yy_r2_33($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LESSTHAN; } - function yy_r2_37($yy_subpatterns) + function yy_r2_35($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_MOD; } - function yy_r2_39($yy_subpatterns) + function yy_r2_37($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NOT; } - function yy_r2_41($yy_subpatterns) + function yy_r2_39($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LAND; } - function yy_r2_43($yy_subpatterns) + function yy_r2_41($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LOR; } - function yy_r2_45($yy_subpatterns) + function yy_r2_43($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LXOR; } - function yy_r2_47($yy_subpatterns) + function yy_r2_45($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISODDBY; } - function yy_r2_48($yy_subpatterns) + function yy_r2_46($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY; } - function yy_r2_49($yy_subpatterns) + function yy_r2_47($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISODD; } - function yy_r2_50($yy_subpatterns) + function yy_r2_48($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTODD; } - function yy_r2_51($yy_subpatterns) + function yy_r2_49($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISEVENBY; } - function yy_r2_52($yy_subpatterns) + function yy_r2_50($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY; } - function yy_r2_53($yy_subpatterns) + function yy_r2_51($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISEVEN; } - function yy_r2_54($yy_subpatterns) + function yy_r2_52($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN; } - function yy_r2_55($yy_subpatterns) + function yy_r2_53($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISDIVBY; } - function yy_r2_56($yy_subpatterns) + function yy_r2_54($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY; } - function yy_r2_57($yy_subpatterns) + function yy_r2_55($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_TYPECAST; } - function yy_r2_61($yy_subpatterns) + function yy_r2_59($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OPENP; } - function yy_r2_62($yy_subpatterns) + function yy_r2_60($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_CLOSEP; } - function yy_r2_63($yy_subpatterns) + function yy_r2_61($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OPENB; } - function yy_r2_64($yy_subpatterns) + function yy_r2_62($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_CLOSEB; } - function yy_r2_65($yy_subpatterns) + function yy_r2_63($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_PTR; } - function yy_r2_66($yy_subpatterns) + function yy_r2_64($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_APTR; } - function yy_r2_67($yy_subpatterns) + function yy_r2_65($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_EQUAL; } - function yy_r2_68($yy_subpatterns) + function yy_r2_66($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_INCDEC; } - function yy_r2_70($yy_subpatterns) + function yy_r2_68($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_UNIMATH; } - function yy_r2_72($yy_subpatterns) + function yy_r2_70($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_MATH; } - function yy_r2_74($yy_subpatterns) + function yy_r2_72($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOLLAR; } - function yy_r2_75($yy_subpatterns) + function yy_r2_73($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON; } - function yy_r2_76($yy_subpatterns) + function yy_r2_74($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON; } - function yy_r2_77($yy_subpatterns) + function yy_r2_75($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_COLON; } - function yy_r2_78($yy_subpatterns) + function yy_r2_76($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_AT; } - function yy_r2_79($yy_subpatterns) + function yy_r2_77($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_HATCH; } - function yy_r2_80($yy_subpatterns) + function yy_r2_78($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_QUOTE; $this->yypushstate(self::DOUBLEQUOTEDSTRING); } - function yy_r2_81($yy_subpatterns) + function yy_r2_79($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; $this->yypopstate(); } - function yy_r2_82($yy_subpatterns) + function yy_r2_80($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_VERT; } - function yy_r2_83($yy_subpatterns) + function yy_r2_81($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOT; } - function yy_r2_84($yy_subpatterns) + function yy_r2_82($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_COMMA; } - function yy_r2_85($yy_subpatterns) + function yy_r2_83($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ANDSYM; } - function yy_r2_86($yy_subpatterns) + function yy_r2_84($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_QMARK; } - function yy_r2_87($yy_subpatterns) + function yy_r2_85($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_IF; } - function yy_r2_89($yy_subpatterns) + function yy_r2_87($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_FOREACH; } - function yy_r2_90($yy_subpatterns) + function yy_r2_88($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_FOR; } - function yy_r2_91($yy_subpatterns) + function yy_r2_89($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ID; } - function yy_r2_92($yy_subpatterns) + function yy_r2_90($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_INTEGER; } - function yy_r2_93($yy_subpatterns) + function yy_r2_91($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SPACE; } - function yy_r2_94($yy_subpatterns) + 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 c123c5cb..b616eef8 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -171,61 +171,60 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph const TP_SEMICOLON = 17; const TP_INCDEC = 18; const TP_TO = 19; - const TP_STEP = 20; - const TP_AS = 21; - const TP_APTR = 22; - const TP_LDELSLASH = 23; - const TP_INTEGER = 24; - const TP_COMMA = 25; - const TP_COLON = 26; - const TP_UNIMATH = 27; - const TP_OPENP = 28; - const TP_CLOSEP = 29; - const TP_QMARK = 30; - const TP_MATH = 31; - const TP_ANDSYM = 32; - const TP_TYPECAST = 33; - const TP_DOT = 34; - const TP_BOOLEAN = 35; - const TP_NULL = 36; - const TP_SINGLEQUOTESTRING = 37; - const TP_QUOTE = 38; - const TP_DOUBLECOLON = 39; - const TP_AT = 40; - const TP_HATCH = 41; - const TP_OPENB = 42; - const TP_CLOSEB = 43; - const TP_VERT = 44; - const TP_NOT = 45; - const TP_ISIN = 46; - const TP_ISDIVBY = 47; - const TP_ISNOTDIVBY = 48; - const TP_ISEVEN = 49; - const TP_ISNOTEVEN = 50; - const TP_ISEVENBY = 51; - const TP_ISNOTEVENBY = 52; - const TP_ISODD = 53; - const TP_ISNOTODD = 54; - const TP_ISODDBY = 55; - const TP_ISNOTODDBY = 56; - const TP_INSTANCEOF = 57; - const TP_EQUALS = 58; - const TP_NOTEQUALS = 59; - const TP_GREATERTHAN = 60; - const TP_LESSTHAN = 61; - const TP_GREATEREQUAL = 62; - const TP_LESSEQUAL = 63; - const TP_IDENTITY = 64; - const TP_NONEIDENTITY = 65; - const TP_MOD = 66; - const TP_LAND = 67; - const TP_LOR = 68; - const TP_LXOR = 69; - const TP_BACKTICK = 70; - const TP_DOLLARID = 71; - const YY_NO_ACTION = 548; - const YY_ACCEPT_ACTION = 547; - const YY_ERROR_ACTION = 546; + const TP_AS = 20; + const TP_APTR = 21; + const TP_LDELSLASH = 22; + const TP_INTEGER = 23; + const TP_COMMA = 24; + const TP_COLON = 25; + const TP_UNIMATH = 26; + const TP_OPENP = 27; + const TP_CLOSEP = 28; + const TP_QMARK = 29; + const TP_MATH = 30; + const TP_ANDSYM = 31; + const TP_TYPECAST = 32; + const TP_DOT = 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 = 545; + const YY_ACCEPT_ACTION = 544; + const YY_ERROR_ACTION = 543; /* 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 @@ -277,574 +276,568 @@ 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 = 1375; + const YY_SZ_ACTTAB = 1350; static public $yy_action = array( - /* 0 */ 15, 320, 86, 50, 23, 92, 415, 211, 24, 209, - /* 10 */ 206, 299, 36, 415, 31, 132, 108, 230, 17, 261, - /* 20 */ 46, 3, 547, 67, 273, 274, 62, 48, 349, 356, - /* 30 */ 287, 49, 181, 221, 54, 13, 15, 216, 74, 185, - /* 40 */ 91, 231, 26, 291, 229, 41, 218, 160, 23, 91, - /* 50 */ 244, 18, 108, 230, 245, 246, 46, 12, 282, 132, - /* 60 */ 294, 114, 62, 361, 349, 356, 287, 49, 23, 294, - /* 70 */ 54, 13, 181, 15, 10, 84, 176, 182, 254, 132, - /* 80 */ 291, 232, 174, 218, 53, 90, 91, 255, 24, 108, - /* 90 */ 230, 299, 36, 46, 32, 282, 128, 150, 114, 62, - /* 100 */ 361, 349, 356, 287, 49, 154, 294, 54, 13, 241, - /* 110 */ 15, 306, 77, 185, 143, 292, 201, 344, 343, 207, - /* 120 */ 341, 15, 23, 181, 310, 290, 108, 230, 58, 306, - /* 130 */ 46, 12, 187, 132, 63, 326, 62, 108, 349, 356, - /* 140 */ 287, 49, 310, 172, 54, 13, 91, 15, 10, 74, - /* 150 */ 185, 84, 227, 175, 153, 24, 313, 219, 299, 339, - /* 160 */ 91, 40, 279, 108, 230, 310, 294, 46, 32, 164, - /* 170 */ 193, 35, 325, 62, 308, 349, 356, 287, 49, 280, - /* 180 */ 294, 54, 13, 54, 11, 7, 329, 307, 2, 4, - /* 190 */ 311, 305, 5, 6, 323, 181, 208, 24, 244, 169, - /* 200 */ 299, 33, 245, 246, 300, 303, 312, 281, 346, 20, - /* 210 */ 203, 48, 11, 7, 329, 307, 2, 4, 311, 305, - /* 220 */ 5, 6, 15, 250, 84, 183, 24, 304, 37, 299, - /* 230 */ 84, 125, 300, 303, 312, 181, 21, 225, 108, 230, - /* 240 */ 355, 217, 46, 32, 68, 202, 138, 187, 62, 25, - /* 250 */ 349, 356, 287, 49, 242, 29, 54, 13, 15, 247, - /* 260 */ 84, 186, 54, 213, 24, 291, 184, 299, 218, 149, - /* 270 */ 277, 91, 234, 181, 108, 230, 181, 297, 46, 32, - /* 280 */ 282, 223, 173, 114, 62, 361, 349, 356, 287, 49, - /* 290 */ 84, 294, 54, 13, 142, 24, 165, 231, 299, 11, - /* 300 */ 7, 329, 307, 2, 4, 311, 305, 5, 6, 15, - /* 310 */ 61, 74, 185, 354, 24, 309, 328, 299, 181, 300, - /* 320 */ 303, 312, 54, 187, 327, 108, 230, 120, 220, 46, - /* 330 */ 3, 187, 174, 24, 301, 62, 299, 349, 356, 287, - /* 340 */ 49, 148, 306, 54, 13, 322, 30, 22, 91, 296, - /* 350 */ 272, 274, 11, 7, 329, 307, 2, 4, 311, 305, - /* 360 */ 5, 6, 15, 195, 74, 177, 181, 16, 294, 362, - /* 370 */ 412, 244, 300, 303, 312, 245, 246, 187, 108, 230, - /* 380 */ 326, 155, 46, 32, 127, 181, 174, 243, 62, 168, - /* 390 */ 349, 356, 287, 49, 23, 324, 54, 13, 15, 306, - /* 400 */ 74, 179, 257, 222, 199, 132, 42, 139, 75, 295, - /* 410 */ 422, 27, 174, 289, 108, 230, 124, 181, 46, 3, - /* 420 */ 187, 170, 306, 262, 62, 28, 349, 356, 287, 49, - /* 430 */ 187, 306, 54, 13, 285, 286, 11, 7, 329, 307, - /* 440 */ 2, 4, 311, 305, 5, 6, 15, 288, 84, 178, - /* 450 */ 135, 196, 190, 269, 316, 171, 300, 303, 312, 181, - /* 460 */ 187, 187, 108, 180, 321, 306, 15, 32, 84, 186, - /* 470 */ 48, 187, 62, 257, 349, 356, 287, 49, 268, 271, - /* 480 */ 54, 13, 108, 230, 39, 187, 187, 32, 181, 181, - /* 490 */ 44, 175, 62, 250, 349, 356, 287, 49, 88, 40, - /* 500 */ 54, 13, 259, 252, 363, 345, 338, 332, 331, 334, - /* 510 */ 337, 275, 326, 291, 226, 181, 218, 66, 187, 91, - /* 520 */ 123, 284, 98, 210, 15, 78, 84, 189, 282, 340, - /* 530 */ 51, 114, 270, 361, 264, 306, 265, 240, 187, 294, - /* 540 */ 108, 230, 147, 24, 350, 32, 299, 174, 310, 41, - /* 550 */ 62, 107, 349, 356, 287, 49, 24, 306, 54, 188, - /* 560 */ 15, 348, 84, 186, 317, 71, 360, 266, 133, 109, - /* 570 */ 224, 187, 291, 302, 187, 218, 108, 230, 91, 24, - /* 580 */ 360, 32, 228, 306, 360, 181, 62, 44, 349, 356, - /* 590 */ 287, 49, 361, 113, 54, 181, 47, 44, 294, 259, - /* 600 */ 252, 363, 345, 338, 332, 331, 334, 337, 360, 259, - /* 610 */ 252, 363, 345, 338, 332, 331, 334, 337, 291, 226, - /* 620 */ 276, 218, 66, 278, 91, 330, 134, 104, 319, 297, - /* 630 */ 187, 57, 187, 282, 314, 187, 114, 69, 361, 291, - /* 640 */ 226, 187, 218, 66, 294, 91, 70, 117, 101, 350, - /* 650 */ 163, 347, 360, 351, 282, 308, 115, 114, 187, 361, - /* 660 */ 187, 360, 360, 291, 226, 294, 218, 66, 167, 91, - /* 670 */ 350, 360, 100, 308, 315, 318, 144, 118, 282, 333, - /* 680 */ 233, 114, 187, 361, 291, 226, 187, 218, 65, 294, - /* 690 */ 91, 306, 360, 97, 350, 23, 157, 121, 236, 282, - /* 700 */ 293, 308, 114, 119, 361, 221, 132, 38, 234, 253, - /* 710 */ 294, 181, 306, 291, 226, 350, 218, 66, 306, 91, - /* 720 */ 291, 226, 99, 218, 66, 358, 91, 237, 282, 102, - /* 730 */ 16, 114, 136, 361, 238, 282, 197, 34, 114, 294, - /* 740 */ 361, 145, 291, 298, 350, 218, 294, 306, 91, 291, - /* 750 */ 226, 350, 218, 66, 239, 91, 306, 282, 105, 205, - /* 760 */ 110, 76, 361, 82, 282, 85, 25, 114, 294, 361, - /* 770 */ 291, 226, 87, 218, 66, 294, 91, 352, 1, 95, - /* 780 */ 350, 18, 80, 214, 263, 282, 267, 200, 114, 9, - /* 790 */ 361, 291, 226, 81, 218, 64, 294, 91, 187, 359, - /* 800 */ 96, 350, 192, 297, 45, 137, 282, 43, 94, 114, - /* 810 */ 325, 361, 291, 226, 204, 218, 66, 294, 91, 19, - /* 820 */ 251, 103, 350, 212, 14, 335, 55, 282, 8, 297, - /* 830 */ 114, 336, 361, 297, 297, 297, 297, 297, 294, 297, - /* 840 */ 108, 291, 226, 350, 218, 66, 297, 91, 291, 298, - /* 850 */ 106, 218, 129, 297, 91, 342, 282, 297, 297, 114, - /* 860 */ 297, 361, 297, 282, 297, 297, 114, 294, 361, 297, - /* 870 */ 297, 215, 350, 297, 294, 297, 297, 291, 229, 297, - /* 880 */ 218, 160, 297, 91, 297, 297, 297, 60, 249, 297, - /* 890 */ 291, 298, 282, 218, 129, 114, 91, 361, 297, 297, - /* 900 */ 297, 297, 297, 294, 297, 282, 297, 297, 114, 297, - /* 910 */ 361, 297, 256, 235, 297, 297, 294, 297, 291, 83, - /* 920 */ 297, 73, 52, 89, 79, 291, 298, 297, 218, 129, - /* 930 */ 297, 91, 297, 282, 297, 297, 114, 297, 361, 297, - /* 940 */ 282, 297, 297, 114, 294, 361, 297, 297, 283, 291, - /* 950 */ 298, 294, 218, 56, 93, 91, 297, 297, 297, 297, - /* 960 */ 297, 297, 297, 297, 282, 297, 297, 114, 297, 361, - /* 970 */ 297, 297, 297, 291, 83, 294, 72, 59, 89, 79, - /* 980 */ 291, 298, 297, 218, 129, 297, 91, 297, 282, 297, - /* 990 */ 297, 114, 297, 361, 297, 282, 297, 297, 114, 294, - /* 1000 */ 361, 291, 298, 198, 218, 112, 294, 91, 291, 298, - /* 1010 */ 297, 218, 131, 297, 91, 297, 282, 297, 297, 114, - /* 1020 */ 297, 361, 297, 282, 297, 297, 114, 294, 361, 291, - /* 1030 */ 298, 297, 218, 151, 294, 91, 297, 297, 297, 297, - /* 1040 */ 297, 297, 297, 297, 282, 297, 297, 114, 297, 361, - /* 1050 */ 291, 298, 297, 218, 152, 294, 91, 291, 298, 297, - /* 1060 */ 218, 130, 297, 91, 297, 282, 297, 297, 114, 297, - /* 1070 */ 361, 297, 282, 297, 297, 114, 294, 361, 291, 298, - /* 1080 */ 297, 218, 161, 294, 91, 291, 298, 297, 218, 146, - /* 1090 */ 297, 91, 297, 282, 297, 297, 114, 297, 361, 297, - /* 1100 */ 282, 297, 297, 114, 294, 361, 291, 298, 297, 218, - /* 1110 */ 156, 294, 91, 297, 297, 297, 297, 297, 297, 297, - /* 1120 */ 297, 282, 297, 297, 114, 297, 361, 291, 298, 297, - /* 1130 */ 218, 122, 294, 91, 291, 298, 297, 218, 162, 297, - /* 1140 */ 91, 297, 282, 297, 297, 114, 297, 361, 297, 282, - /* 1150 */ 297, 297, 114, 294, 361, 291, 298, 297, 218, 166, - /* 1160 */ 294, 91, 291, 298, 297, 218, 126, 297, 91, 297, - /* 1170 */ 282, 297, 297, 114, 297, 361, 297, 282, 297, 297, - /* 1180 */ 114, 294, 361, 291, 298, 297, 218, 141, 294, 91, - /* 1190 */ 297, 297, 297, 297, 297, 297, 297, 297, 282, 297, - /* 1200 */ 297, 114, 297, 361, 291, 298, 297, 218, 158, 294, - /* 1210 */ 91, 291, 298, 297, 218, 159, 297, 91, 297, 282, - /* 1220 */ 297, 297, 114, 297, 361, 297, 282, 297, 297, 114, - /* 1230 */ 294, 361, 291, 298, 297, 218, 140, 294, 91, 291, - /* 1240 */ 298, 297, 218, 297, 297, 91, 297, 282, 297, 297, - /* 1250 */ 114, 297, 361, 297, 282, 297, 297, 111, 294, 361, - /* 1260 */ 291, 298, 297, 218, 297, 294, 91, 297, 297, 297, - /* 1270 */ 297, 297, 297, 297, 297, 282, 297, 297, 116, 297, - /* 1280 */ 361, 291, 191, 297, 218, 297, 294, 91, 291, 260, - /* 1290 */ 297, 218, 291, 353, 91, 218, 194, 297, 91, 291, - /* 1300 */ 357, 361, 218, 258, 297, 91, 251, 294, 361, 297, - /* 1310 */ 14, 297, 361, 297, 294, 297, 297, 297, 294, 361, - /* 1320 */ 297, 297, 297, 297, 297, 294, 108, 297, 297, 297, - /* 1330 */ 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, - /* 1340 */ 297, 248, 297, 297, 297, 297, 297, 297, 297, 297, - /* 1350 */ 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, - /* 1360 */ 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, - /* 1370 */ 297, 297, 297, 60, 249, + /* 0 */ 15, 47, 84, 49, 174, 90, 250, 198, 121, 204, + /* 10 */ 242, 269, 39, 170, 32, 108, 196, 306, 35, 46, + /* 20 */ 11, 149, 260, 294, 314, 63, 307, 293, 292, 272, + /* 30 */ 48, 171, 17, 53, 13, 15, 32, 86, 182, 306, + /* 40 */ 35, 284, 227, 128, 199, 159, 212, 89, 257, 32, + /* 50 */ 108, 196, 306, 250, 46, 4, 271, 242, 269, 112, + /* 60 */ 63, 277, 293, 292, 272, 48, 186, 285, 53, 13, + /* 70 */ 327, 15, 12, 81, 175, 187, 349, 179, 409, 32, + /* 80 */ 333, 209, 306, 186, 18, 179, 108, 196, 304, 172, + /* 90 */ 46, 33, 89, 206, 32, 329, 63, 306, 293, 292, + /* 100 */ 272, 48, 236, 186, 53, 13, 264, 15, 254, 76, + /* 110 */ 182, 179, 285, 284, 234, 31, 199, 52, 88, 89, + /* 120 */ 250, 40, 108, 196, 242, 269, 46, 4, 271, 81, + /* 130 */ 220, 112, 63, 277, 293, 292, 272, 48, 38, 285, + /* 140 */ 53, 13, 129, 15, 12, 86, 182, 169, 30, 284, + /* 150 */ 82, 20, 71, 61, 92, 74, 186, 294, 108, 196, + /* 160 */ 53, 225, 46, 33, 271, 214, 186, 112, 63, 277, + /* 170 */ 293, 292, 272, 48, 179, 285, 53, 13, 352, 3, + /* 180 */ 2, 270, 355, 5, 7, 338, 323, 10, 9, 15, + /* 190 */ 203, 86, 182, 32, 337, 25, 306, 81, 147, 325, + /* 200 */ 326, 322, 186, 205, 108, 196, 286, 208, 46, 11, + /* 210 */ 544, 67, 246, 330, 63, 312, 293, 292, 272, 48, + /* 220 */ 27, 23, 53, 13, 15, 219, 86, 176, 53, 16, + /* 230 */ 32, 32, 334, 306, 306, 284, 344, 17, 199, 108, + /* 240 */ 196, 89, 195, 46, 11, 150, 321, 347, 128, 63, + /* 250 */ 345, 293, 292, 272, 48, 277, 148, 53, 13, 193, + /* 260 */ 217, 285, 212, 153, 3, 2, 270, 355, 5, 7, + /* 270 */ 338, 323, 10, 9, 3, 2, 270, 355, 5, 7, + /* 280 */ 338, 323, 10, 9, 325, 326, 322, 15, 32, 86, + /* 290 */ 177, 306, 26, 319, 325, 326, 322, 275, 274, 247, + /* 300 */ 179, 167, 108, 196, 303, 179, 46, 33, 304, 210, + /* 310 */ 339, 179, 63, 24, 293, 292, 272, 48, 142, 17, + /* 320 */ 53, 13, 15, 173, 81, 184, 233, 54, 284, 227, + /* 330 */ 128, 199, 159, 294, 89, 163, 186, 108, 196, 186, + /* 340 */ 307, 46, 33, 271, 81, 173, 112, 63, 277, 293, + /* 350 */ 292, 272, 48, 17, 285, 53, 13, 15, 37, 81, + /* 360 */ 183, 331, 29, 348, 128, 41, 19, 83, 255, 419, + /* 370 */ 36, 132, 108, 196, 310, 53, 46, 33, 22, 55, + /* 380 */ 230, 238, 63, 17, 293, 292, 272, 48, 22, 226, + /* 390 */ 53, 13, 266, 252, 128, 186, 224, 42, 245, 3, + /* 400 */ 2, 270, 355, 5, 7, 338, 323, 10, 9, 340, + /* 410 */ 341, 342, 343, 350, 351, 358, 359, 360, 47, 325, + /* 420 */ 326, 322, 315, 3, 2, 270, 355, 5, 7, 338, + /* 430 */ 323, 10, 9, 15, 228, 81, 178, 127, 174, 32, + /* 440 */ 280, 131, 306, 325, 326, 322, 39, 291, 108, 188, + /* 450 */ 361, 330, 294, 33, 179, 186, 294, 282, 63, 295, + /* 460 */ 293, 292, 272, 48, 179, 295, 53, 13, 15, 295, + /* 470 */ 81, 184, 165, 324, 221, 354, 283, 223, 356, 15, + /* 480 */ 232, 189, 186, 108, 196, 50, 241, 239, 33, 262, + /* 490 */ 200, 240, 186, 63, 108, 293, 292, 272, 48, 134, + /* 500 */ 173, 53, 13, 15, 310, 81, 184, 68, 40, 284, + /* 510 */ 82, 186, 72, 51, 92, 74, 161, 32, 108, 196, + /* 520 */ 192, 307, 244, 33, 271, 123, 58, 112, 63, 277, + /* 530 */ 293, 292, 272, 48, 56, 285, 53, 241, 15, 80, + /* 540 */ 81, 185, 135, 151, 110, 69, 124, 280, 307, 284, + /* 550 */ 297, 168, 199, 108, 196, 89, 60, 294, 33, 279, + /* 560 */ 279, 294, 186, 63, 42, 293, 292, 272, 48, 277, + /* 570 */ 295, 53, 186, 259, 42, 285, 340, 341, 342, 343, + /* 580 */ 350, 351, 358, 359, 360, 126, 340, 341, 342, 343, + /* 590 */ 350, 351, 358, 359, 360, 284, 190, 91, 199, 66, + /* 600 */ 412, 89, 263, 115, 98, 201, 21, 412, 47, 137, + /* 610 */ 271, 87, 70, 112, 173, 277, 284, 190, 279, 199, + /* 620 */ 66, 285, 89, 276, 294, 104, 353, 279, 27, 218, + /* 630 */ 140, 271, 89, 141, 112, 173, 277, 214, 173, 309, + /* 640 */ 284, 190, 285, 199, 64, 294, 89, 353, 294, 95, + /* 650 */ 32, 305, 285, 180, 89, 271, 231, 288, 112, 89, + /* 660 */ 277, 160, 284, 296, 179, 199, 285, 195, 89, 78, + /* 670 */ 113, 353, 284, 190, 285, 199, 66, 271, 89, 285, + /* 680 */ 111, 105, 277, 304, 258, 279, 143, 271, 285, 109, + /* 690 */ 112, 179, 277, 284, 190, 268, 199, 66, 285, 89, + /* 700 */ 287, 294, 102, 353, 279, 317, 1, 179, 271, 318, + /* 710 */ 73, 112, 179, 277, 290, 116, 179, 284, 190, 285, + /* 720 */ 199, 66, 273, 89, 353, 279, 96, 23, 213, 179, + /* 730 */ 279, 289, 271, 215, 45, 112, 313, 277, 179, 284, + /* 740 */ 296, 114, 199, 285, 298, 89, 253, 28, 353, 284, + /* 750 */ 190, 179, 199, 66, 271, 89, 279, 117, 101, 277, + /* 760 */ 346, 301, 332, 130, 271, 285, 133, 112, 179, 277, + /* 770 */ 284, 190, 251, 199, 65, 285, 89, 299, 294, 97, + /* 780 */ 353, 294, 336, 278, 179, 271, 281, 138, 112, 179, + /* 790 */ 277, 211, 311, 179, 284, 190, 285, 199, 66, 328, + /* 800 */ 89, 353, 294, 99, 34, 265, 179, 79, 335, 271, + /* 810 */ 85, 261, 112, 77, 277, 179, 284, 296, 44, 199, + /* 820 */ 285, 300, 89, 145, 310, 353, 284, 190, 179, 199, + /* 830 */ 66, 271, 89, 314, 107, 106, 277, 302, 294, 139, + /* 840 */ 93, 271, 285, 6, 112, 235, 277, 284, 190, 14, + /* 850 */ 199, 66, 285, 89, 294, 179, 103, 353, 43, 75, + /* 860 */ 256, 207, 271, 202, 108, 112, 235, 277, 146, 243, + /* 870 */ 14, 284, 190, 285, 199, 66, 8, 89, 353, 248, + /* 880 */ 100, 295, 295, 295, 295, 108, 271, 295, 295, 112, + /* 890 */ 295, 277, 295, 284, 191, 295, 199, 285, 295, 89, + /* 900 */ 237, 295, 353, 284, 296, 295, 199, 119, 197, 89, + /* 910 */ 295, 62, 267, 277, 295, 295, 295, 295, 271, 285, + /* 920 */ 295, 112, 295, 277, 284, 296, 229, 199, 119, 285, + /* 930 */ 89, 295, 62, 267, 295, 295, 295, 295, 295, 271, + /* 940 */ 295, 295, 112, 295, 277, 295, 295, 316, 284, 296, + /* 950 */ 285, 199, 119, 295, 89, 295, 295, 320, 295, 295, + /* 960 */ 295, 295, 216, 271, 179, 295, 112, 295, 277, 295, + /* 970 */ 295, 222, 295, 295, 285, 295, 17, 295, 284, 296, + /* 980 */ 295, 199, 57, 94, 89, 284, 296, 128, 199, 119, + /* 990 */ 295, 89, 186, 271, 295, 295, 112, 295, 277, 295, + /* 1000 */ 271, 295, 295, 112, 285, 277, 295, 295, 194, 295, + /* 1010 */ 295, 285, 295, 295, 295, 284, 181, 295, 199, 162, + /* 1020 */ 249, 89, 295, 295, 295, 284, 296, 295, 199, 152, + /* 1030 */ 271, 89, 295, 112, 295, 277, 295, 295, 295, 295, + /* 1040 */ 271, 285, 295, 112, 295, 277, 295, 295, 295, 295, + /* 1050 */ 295, 285, 295, 295, 284, 296, 295, 199, 154, 295, + /* 1060 */ 89, 284, 296, 295, 199, 120, 295, 89, 295, 271, + /* 1070 */ 295, 295, 112, 295, 277, 295, 271, 295, 295, 112, + /* 1080 */ 285, 277, 295, 295, 295, 295, 295, 285, 295, 295, + /* 1090 */ 295, 284, 296, 295, 199, 136, 295, 89, 295, 295, + /* 1100 */ 295, 284, 296, 295, 199, 164, 271, 89, 295, 112, + /* 1110 */ 295, 277, 295, 295, 295, 295, 271, 285, 295, 112, + /* 1120 */ 295, 277, 295, 295, 295, 295, 295, 285, 295, 295, + /* 1130 */ 284, 296, 295, 199, 118, 295, 89, 284, 296, 295, + /* 1140 */ 199, 157, 295, 89, 295, 271, 295, 295, 112, 295, + /* 1150 */ 277, 295, 271, 295, 295, 112, 285, 277, 295, 295, + /* 1160 */ 295, 295, 295, 285, 295, 295, 295, 284, 296, 295, + /* 1170 */ 199, 125, 295, 89, 295, 295, 295, 284, 296, 295, + /* 1180 */ 199, 155, 271, 89, 295, 112, 295, 277, 295, 295, + /* 1190 */ 295, 295, 271, 285, 295, 112, 295, 277, 295, 295, + /* 1200 */ 295, 295, 295, 285, 295, 295, 284, 296, 295, 199, + /* 1210 */ 59, 295, 89, 284, 296, 295, 199, 122, 295, 89, + /* 1220 */ 295, 271, 295, 295, 112, 295, 277, 295, 271, 295, + /* 1230 */ 295, 112, 285, 277, 295, 295, 295, 295, 295, 285, + /* 1240 */ 295, 295, 295, 284, 296, 295, 199, 156, 295, 89, + /* 1250 */ 295, 295, 295, 284, 296, 295, 199, 158, 271, 89, + /* 1260 */ 295, 112, 295, 277, 295, 295, 295, 295, 271, 285, + /* 1270 */ 295, 112, 295, 277, 295, 295, 295, 295, 295, 285, + /* 1280 */ 295, 295, 284, 296, 295, 199, 144, 295, 89, 284, + /* 1290 */ 296, 295, 199, 166, 295, 89, 295, 271, 295, 295, + /* 1300 */ 112, 295, 277, 295, 271, 295, 295, 112, 285, 277, + /* 1310 */ 295, 295, 295, 295, 295, 285, 295, 295, 295, 284, + /* 1320 */ 308, 295, 199, 284, 357, 89, 199, 295, 295, 89, + /* 1330 */ 295, 295, 295, 295, 295, 295, 295, 295, 295, 277, + /* 1340 */ 295, 295, 295, 277, 295, 285, 295, 295, 295, 285, ); static public $yy_lookahead = array( - /* 0 */ 7, 105, 9, 10, 28, 12, 8, 14, 7, 16, - /* 10 */ 34, 10, 11, 15, 26, 39, 23, 24, 11, 43, - /* 20 */ 27, 28, 73, 74, 75, 76, 33, 13, 35, 36, - /* 30 */ 37, 38, 44, 26, 41, 42, 7, 79, 9, 10, - /* 40 */ 82, 40, 22, 76, 77, 26, 79, 80, 28, 82, - /* 50 */ 27, 11, 23, 24, 31, 32, 27, 28, 91, 39, - /* 60 */ 102, 94, 33, 96, 35, 36, 37, 38, 28, 102, - /* 70 */ 41, 42, 44, 7, 45, 9, 10, 110, 111, 39, - /* 80 */ 76, 77, 83, 79, 80, 81, 82, 8, 7, 23, - /* 90 */ 24, 10, 11, 27, 28, 91, 78, 17, 94, 33, - /* 100 */ 96, 35, 36, 37, 38, 25, 102, 41, 42, 43, - /* 110 */ 7, 93, 9, 10, 78, 1, 2, 3, 4, 5, - /* 120 */ 6, 7, 28, 44, 106, 8, 23, 24, 84, 93, - /* 130 */ 27, 28, 15, 39, 84, 18, 33, 23, 35, 36, - /* 140 */ 37, 38, 106, 79, 41, 42, 82, 7, 45, 9, - /* 150 */ 10, 9, 10, 34, 17, 7, 8, 79, 10, 8, - /* 160 */ 82, 42, 98, 23, 24, 106, 102, 27, 28, 100, - /* 170 */ 22, 20, 103, 33, 105, 35, 36, 37, 38, 8, - /* 180 */ 102, 41, 42, 41, 47, 48, 49, 50, 51, 52, - /* 190 */ 53, 54, 55, 56, 29, 44, 10, 7, 27, 8, - /* 200 */ 10, 11, 31, 32, 67, 68, 69, 10, 18, 11, - /* 210 */ 24, 13, 47, 48, 49, 50, 51, 52, 53, 54, - /* 220 */ 55, 56, 7, 76, 9, 10, 7, 8, 7, 10, - /* 230 */ 9, 10, 67, 68, 69, 44, 25, 40, 23, 24, - /* 240 */ 8, 22, 27, 28, 97, 13, 101, 15, 33, 11, - /* 250 */ 35, 36, 37, 38, 43, 26, 41, 42, 7, 112, - /* 260 */ 9, 10, 41, 90, 7, 76, 77, 10, 79, 80, - /* 270 */ 81, 82, 34, 44, 23, 24, 44, 104, 27, 28, - /* 280 */ 91, 29, 8, 94, 33, 96, 35, 36, 37, 38, - /* 290 */ 9, 102, 41, 42, 101, 7, 84, 40, 10, 47, - /* 300 */ 48, 49, 50, 51, 52, 53, 54, 55, 56, 7, - /* 310 */ 84, 9, 10, 8, 7, 8, 8, 10, 44, 67, - /* 320 */ 68, 69, 41, 15, 8, 23, 24, 78, 40, 27, - /* 330 */ 28, 15, 83, 7, 8, 33, 10, 35, 36, 37, - /* 340 */ 38, 101, 93, 41, 42, 79, 7, 25, 82, 8, - /* 350 */ 75, 76, 47, 48, 49, 50, 51, 52, 53, 54, - /* 360 */ 55, 56, 7, 21, 9, 10, 44, 28, 102, 10, - /* 370 */ 8, 27, 67, 68, 69, 31, 32, 15, 23, 24, - /* 380 */ 18, 10, 27, 28, 78, 44, 83, 43, 33, 83, - /* 390 */ 35, 36, 37, 38, 28, 10, 41, 42, 7, 93, - /* 400 */ 9, 10, 29, 9, 10, 39, 7, 78, 9, 10, - /* 410 */ 44, 108, 83, 8, 23, 24, 78, 44, 27, 28, - /* 420 */ 15, 83, 93, 24, 33, 30, 35, 36, 37, 38, - /* 430 */ 15, 93, 41, 42, 35, 36, 47, 48, 49, 50, - /* 440 */ 51, 52, 53, 54, 55, 56, 7, 41, 9, 10, - /* 450 */ 78, 86, 87, 8, 8, 83, 67, 68, 69, 44, - /* 460 */ 15, 15, 23, 24, 8, 93, 7, 28, 9, 10, - /* 470 */ 13, 15, 33, 29, 35, 36, 37, 38, 8, 8, - /* 480 */ 41, 42, 23, 24, 30, 15, 15, 28, 44, 44, - /* 490 */ 46, 34, 33, 76, 35, 36, 37, 38, 29, 42, - /* 500 */ 41, 42, 58, 59, 60, 61, 62, 63, 64, 65, - /* 510 */ 66, 8, 18, 76, 77, 44, 79, 80, 15, 82, - /* 520 */ 78, 70, 85, 86, 7, 9, 9, 10, 91, 112, - /* 530 */ 10, 94, 12, 96, 14, 93, 16, 10, 15, 102, - /* 540 */ 23, 24, 78, 7, 107, 28, 10, 83, 106, 26, - /* 550 */ 33, 89, 35, 36, 37, 38, 7, 93, 41, 10, - /* 560 */ 7, 24, 9, 10, 8, 89, 104, 8, 78, 89, - /* 570 */ 29, 15, 76, 77, 15, 79, 23, 24, 82, 7, - /* 580 */ 104, 28, 10, 93, 104, 44, 33, 46, 35, 36, - /* 590 */ 37, 38, 96, 89, 41, 44, 57, 46, 102, 58, - /* 600 */ 59, 60, 61, 62, 63, 64, 65, 66, 104, 58, - /* 610 */ 59, 60, 61, 62, 63, 64, 65, 66, 76, 77, - /* 620 */ 8, 79, 80, 8, 82, 8, 101, 85, 8, 104, - /* 630 */ 15, 10, 15, 91, 8, 15, 94, 89, 96, 76, - /* 640 */ 77, 15, 79, 80, 102, 82, 89, 89, 85, 107, - /* 650 */ 100, 8, 104, 8, 91, 105, 89, 94, 15, 96, - /* 660 */ 15, 104, 104, 76, 77, 102, 79, 80, 100, 82, - /* 670 */ 107, 104, 85, 105, 10, 8, 78, 89, 91, 8, - /* 680 */ 13, 94, 15, 96, 76, 77, 15, 79, 80, 102, - /* 690 */ 82, 93, 104, 85, 107, 28, 100, 78, 29, 91, - /* 700 */ 41, 105, 94, 78, 96, 26, 39, 22, 34, 4, - /* 710 */ 102, 44, 93, 76, 77, 107, 79, 80, 93, 82, - /* 720 */ 76, 77, 85, 79, 80, 8, 82, 29, 91, 85, - /* 730 */ 28, 94, 78, 96, 43, 91, 3, 19, 94, 102, - /* 740 */ 96, 78, 76, 77, 107, 79, 102, 93, 82, 76, - /* 750 */ 77, 107, 79, 80, 4, 82, 93, 91, 85, 10, - /* 760 */ 94, 9, 96, 9, 91, 9, 11, 94, 102, 96, - /* 770 */ 76, 77, 15, 79, 80, 102, 82, 8, 15, 85, - /* 780 */ 107, 11, 9, 3, 8, 91, 8, 10, 94, 109, - /* 790 */ 96, 76, 77, 9, 79, 80, 102, 82, 15, 93, - /* 800 */ 85, 107, 21, 104, 95, 101, 91, 15, 98, 94, - /* 810 */ 103, 96, 76, 77, 92, 79, 80, 102, 82, 28, - /* 820 */ 3, 85, 107, 88, 7, 86, 101, 91, 88, 113, - /* 830 */ 94, 15, 96, 113, 113, 113, 113, 113, 102, 113, - /* 840 */ 23, 76, 77, 107, 79, 80, 113, 82, 76, 77, - /* 850 */ 85, 79, 80, 113, 82, 38, 91, 113, 113, 94, - /* 860 */ 113, 96, 113, 91, 113, 113, 94, 102, 96, 113, - /* 870 */ 113, 99, 107, 113, 102, 113, 113, 76, 77, 113, - /* 880 */ 79, 80, 113, 82, 113, 113, 113, 70, 71, 113, - /* 890 */ 76, 77, 91, 79, 80, 94, 82, 96, 113, 113, - /* 900 */ 113, 113, 113, 102, 113, 91, 113, 113, 94, 113, - /* 910 */ 96, 113, 111, 99, 113, 113, 102, 113, 76, 77, - /* 920 */ 113, 79, 80, 81, 82, 76, 77, 113, 79, 80, - /* 930 */ 113, 82, 113, 91, 113, 113, 94, 113, 96, 113, - /* 940 */ 91, 113, 113, 94, 102, 96, 113, 113, 99, 76, - /* 950 */ 77, 102, 79, 80, 81, 82, 113, 113, 113, 113, - /* 960 */ 113, 113, 113, 113, 91, 113, 113, 94, 113, 96, - /* 970 */ 113, 113, 113, 76, 77, 102, 79, 80, 81, 82, - /* 980 */ 76, 77, 113, 79, 80, 113, 82, 113, 91, 113, - /* 990 */ 113, 94, 113, 96, 113, 91, 113, 113, 94, 102, - /* 1000 */ 96, 76, 77, 99, 79, 80, 102, 82, 76, 77, - /* 1010 */ 113, 79, 80, 113, 82, 113, 91, 113, 113, 94, - /* 1020 */ 113, 96, 113, 91, 113, 113, 94, 102, 96, 76, - /* 1030 */ 77, 113, 79, 80, 102, 82, 113, 113, 113, 113, - /* 1040 */ 113, 113, 113, 113, 91, 113, 113, 94, 113, 96, - /* 1050 */ 76, 77, 113, 79, 80, 102, 82, 76, 77, 113, - /* 1060 */ 79, 80, 113, 82, 113, 91, 113, 113, 94, 113, - /* 1070 */ 96, 113, 91, 113, 113, 94, 102, 96, 76, 77, - /* 1080 */ 113, 79, 80, 102, 82, 76, 77, 113, 79, 80, - /* 1090 */ 113, 82, 113, 91, 113, 113, 94, 113, 96, 113, - /* 1100 */ 91, 113, 113, 94, 102, 96, 76, 77, 113, 79, - /* 1110 */ 80, 102, 82, 113, 113, 113, 113, 113, 113, 113, - /* 1120 */ 113, 91, 113, 113, 94, 113, 96, 76, 77, 113, - /* 1130 */ 79, 80, 102, 82, 76, 77, 113, 79, 80, 113, - /* 1140 */ 82, 113, 91, 113, 113, 94, 113, 96, 113, 91, - /* 1150 */ 113, 113, 94, 102, 96, 76, 77, 113, 79, 80, - /* 1160 */ 102, 82, 76, 77, 113, 79, 80, 113, 82, 113, - /* 1170 */ 91, 113, 113, 94, 113, 96, 113, 91, 113, 113, - /* 1180 */ 94, 102, 96, 76, 77, 113, 79, 80, 102, 82, - /* 1190 */ 113, 113, 113, 113, 113, 113, 113, 113, 91, 113, - /* 1200 */ 113, 94, 113, 96, 76, 77, 113, 79, 80, 102, - /* 1210 */ 82, 76, 77, 113, 79, 80, 113, 82, 113, 91, - /* 1220 */ 113, 113, 94, 113, 96, 113, 91, 113, 113, 94, - /* 1230 */ 102, 96, 76, 77, 113, 79, 80, 102, 82, 76, - /* 1240 */ 77, 113, 79, 113, 113, 82, 113, 91, 113, 113, - /* 1250 */ 94, 113, 96, 113, 91, 113, 113, 94, 102, 96, - /* 1260 */ 76, 77, 113, 79, 113, 102, 82, 113, 113, 113, - /* 1270 */ 113, 113, 113, 113, 113, 91, 113, 113, 94, 113, - /* 1280 */ 96, 76, 77, 113, 79, 113, 102, 82, 76, 77, - /* 1290 */ 113, 79, 76, 77, 82, 79, 91, 113, 82, 76, - /* 1300 */ 77, 96, 79, 91, 113, 82, 3, 102, 96, 113, - /* 1310 */ 7, 113, 96, 113, 102, 113, 113, 113, 102, 96, - /* 1320 */ 113, 113, 113, 113, 113, 102, 23, 113, 113, 113, - /* 1330 */ 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, - /* 1340 */ 113, 38, 113, 113, 113, 113, 113, 113, 113, 113, - /* 1350 */ 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, - /* 1360 */ 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, - /* 1370 */ 113, 113, 113, 70, 71, + /* 0 */ 7, 13, 9, 10, 33, 12, 26, 14, 77, 16, + /* 10 */ 30, 31, 41, 82, 7, 22, 23, 10, 11, 26, + /* 20 */ 27, 99, 42, 92, 102, 32, 104, 34, 35, 36, + /* 30 */ 37, 8, 27, 40, 41, 7, 7, 9, 10, 10, + /* 40 */ 11, 75, 76, 38, 78, 79, 39, 81, 8, 7, + /* 50 */ 22, 23, 10, 26, 26, 27, 90, 30, 31, 93, + /* 60 */ 32, 95, 34, 35, 36, 37, 43, 101, 40, 41, + /* 70 */ 8, 7, 44, 9, 10, 109, 110, 15, 8, 7, + /* 80 */ 8, 39, 10, 43, 24, 15, 22, 23, 18, 78, + /* 90 */ 26, 27, 81, 21, 7, 8, 32, 10, 34, 35, + /* 100 */ 36, 37, 8, 43, 40, 41, 42, 7, 97, 9, + /* 110 */ 10, 15, 101, 75, 76, 29, 78, 79, 80, 81, + /* 120 */ 26, 25, 22, 23, 30, 31, 26, 27, 90, 9, + /* 130 */ 10, 93, 32, 95, 34, 35, 36, 37, 25, 101, + /* 140 */ 40, 41, 77, 7, 44, 9, 10, 82, 25, 75, + /* 150 */ 76, 11, 78, 79, 80, 81, 43, 92, 22, 23, + /* 160 */ 40, 28, 26, 27, 90, 25, 43, 93, 32, 95, + /* 170 */ 34, 35, 36, 37, 15, 101, 40, 41, 4, 46, + /* 180 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, + /* 190 */ 10, 9, 10, 7, 8, 7, 10, 9, 10, 66, + /* 200 */ 67, 68, 43, 23, 22, 23, 40, 21, 26, 27, + /* 210 */ 72, 73, 74, 75, 32, 104, 34, 35, 36, 37, + /* 220 */ 11, 11, 40, 41, 7, 3, 9, 10, 40, 24, + /* 230 */ 7, 7, 8, 10, 10, 75, 76, 27, 78, 22, + /* 240 */ 23, 81, 33, 26, 27, 17, 28, 42, 38, 32, + /* 250 */ 90, 34, 35, 36, 37, 95, 17, 40, 41, 9, + /* 260 */ 10, 101, 39, 24, 46, 47, 48, 49, 50, 51, + /* 270 */ 52, 53, 54, 55, 46, 47, 48, 49, 50, 51, + /* 280 */ 52, 53, 54, 55, 66, 67, 68, 7, 7, 9, + /* 290 */ 10, 10, 11, 8, 66, 67, 68, 10, 8, 18, + /* 300 */ 15, 8, 22, 23, 8, 15, 26, 27, 18, 13, + /* 310 */ 4, 15, 32, 21, 34, 35, 36, 37, 77, 27, + /* 320 */ 40, 41, 7, 82, 9, 10, 39, 100, 75, 76, + /* 330 */ 38, 78, 79, 92, 81, 99, 43, 22, 23, 43, + /* 340 */ 104, 26, 27, 90, 9, 82, 93, 32, 95, 34, + /* 350 */ 35, 36, 37, 27, 101, 40, 41, 7, 7, 9, + /* 360 */ 10, 8, 21, 110, 38, 7, 27, 9, 10, 43, + /* 370 */ 107, 100, 22, 23, 103, 40, 26, 27, 27, 10, + /* 380 */ 28, 23, 32, 27, 34, 35, 36, 37, 27, 33, + /* 390 */ 40, 41, 34, 35, 38, 43, 3, 45, 42, 46, + /* 400 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, + /* 410 */ 58, 59, 60, 61, 62, 63, 64, 65, 13, 66, + /* 420 */ 67, 68, 40, 46, 47, 48, 49, 50, 51, 52, + /* 430 */ 53, 54, 55, 7, 10, 9, 10, 77, 33, 7, + /* 440 */ 28, 77, 10, 66, 67, 68, 41, 8, 22, 23, + /* 450 */ 74, 75, 92, 27, 15, 43, 92, 8, 32, 105, + /* 460 */ 34, 35, 36, 37, 15, 105, 40, 41, 7, 105, + /* 470 */ 9, 10, 83, 1, 2, 3, 4, 5, 6, 7, + /* 480 */ 85, 86, 43, 22, 23, 10, 75, 12, 27, 14, + /* 490 */ 89, 16, 43, 32, 22, 34, 35, 36, 37, 100, + /* 500 */ 82, 40, 41, 7, 103, 9, 10, 96, 25, 75, + /* 510 */ 76, 43, 78, 79, 80, 81, 99, 7, 22, 23, + /* 520 */ 10, 104, 111, 27, 90, 100, 83, 93, 32, 95, + /* 530 */ 34, 35, 36, 37, 83, 101, 40, 75, 7, 9, + /* 540 */ 9, 10, 77, 99, 88, 88, 77, 28, 104, 75, + /* 550 */ 76, 82, 78, 22, 23, 81, 83, 92, 27, 103, + /* 560 */ 103, 92, 43, 32, 45, 34, 35, 36, 37, 95, + /* 570 */ 105, 40, 43, 111, 45, 101, 57, 58, 59, 60, + /* 580 */ 61, 62, 63, 64, 65, 100, 57, 58, 59, 60, + /* 590 */ 61, 62, 63, 64, 65, 75, 76, 28, 78, 79, + /* 600 */ 8, 81, 28, 88, 84, 85, 11, 15, 13, 77, + /* 610 */ 90, 15, 88, 93, 82, 95, 75, 76, 103, 78, + /* 620 */ 79, 101, 81, 10, 92, 84, 106, 103, 11, 78, + /* 630 */ 77, 90, 81, 77, 93, 82, 95, 25, 82, 23, + /* 640 */ 75, 76, 101, 78, 79, 92, 81, 106, 92, 84, + /* 650 */ 7, 78, 101, 10, 81, 90, 78, 8, 93, 81, + /* 660 */ 95, 10, 75, 76, 15, 78, 101, 33, 81, 9, + /* 670 */ 88, 106, 75, 76, 101, 78, 79, 90, 81, 101, + /* 680 */ 93, 84, 95, 18, 8, 103, 77, 90, 101, 88, + /* 690 */ 93, 15, 95, 75, 76, 8, 78, 79, 101, 81, + /* 700 */ 8, 92, 84, 106, 103, 8, 15, 15, 90, 8, + /* 710 */ 88, 93, 15, 95, 8, 88, 15, 75, 76, 101, + /* 720 */ 78, 79, 8, 81, 106, 103, 84, 11, 20, 15, + /* 730 */ 103, 8, 90, 20, 56, 93, 10, 95, 15, 75, + /* 740 */ 76, 88, 78, 101, 8, 81, 8, 29, 106, 75, + /* 750 */ 76, 15, 78, 79, 90, 81, 103, 93, 84, 95, + /* 760 */ 28, 8, 8, 77, 90, 101, 77, 93, 15, 95, + /* 770 */ 75, 76, 42, 78, 79, 101, 81, 8, 92, 84, + /* 780 */ 106, 92, 8, 10, 15, 90, 8, 77, 93, 15, + /* 790 */ 95, 10, 10, 15, 75, 76, 101, 78, 79, 8, + /* 800 */ 81, 106, 92, 84, 19, 8, 15, 9, 8, 90, + /* 810 */ 9, 69, 93, 9, 95, 15, 75, 76, 94, 78, + /* 820 */ 101, 8, 81, 77, 103, 106, 75, 76, 15, 78, + /* 830 */ 79, 90, 81, 102, 93, 84, 95, 92, 92, 77, + /* 840 */ 97, 90, 101, 108, 93, 3, 95, 75, 76, 7, + /* 850 */ 78, 79, 101, 81, 92, 15, 84, 106, 15, 9, + /* 860 */ 15, 91, 90, 87, 22, 93, 3, 95, 100, 85, + /* 870 */ 7, 75, 76, 101, 78, 79, 87, 81, 106, 37, + /* 880 */ 84, 112, 112, 112, 112, 22, 90, 112, 112, 93, + /* 890 */ 112, 95, 112, 75, 76, 112, 78, 101, 112, 81, + /* 900 */ 37, 112, 106, 75, 76, 112, 78, 79, 90, 81, + /* 910 */ 112, 69, 70, 95, 112, 112, 112, 112, 90, 101, + /* 920 */ 112, 93, 112, 95, 75, 76, 98, 78, 79, 101, + /* 930 */ 81, 112, 69, 70, 112, 112, 112, 112, 112, 90, + /* 940 */ 112, 112, 93, 112, 95, 112, 112, 98, 75, 76, + /* 950 */ 101, 78, 79, 112, 81, 112, 112, 8, 112, 112, + /* 960 */ 112, 112, 13, 90, 15, 112, 93, 112, 95, 112, + /* 970 */ 112, 98, 112, 112, 101, 112, 27, 112, 75, 76, + /* 980 */ 112, 78, 79, 80, 81, 75, 76, 38, 78, 79, + /* 990 */ 112, 81, 43, 90, 112, 112, 93, 112, 95, 112, + /* 1000 */ 90, 112, 112, 93, 101, 95, 112, 112, 98, 112, + /* 1010 */ 112, 101, 112, 112, 112, 75, 76, 112, 78, 79, + /* 1020 */ 80, 81, 112, 112, 112, 75, 76, 112, 78, 79, + /* 1030 */ 90, 81, 112, 93, 112, 95, 112, 112, 112, 112, + /* 1040 */ 90, 101, 112, 93, 112, 95, 112, 112, 112, 112, + /* 1050 */ 112, 101, 112, 112, 75, 76, 112, 78, 79, 112, + /* 1060 */ 81, 75, 76, 112, 78, 79, 112, 81, 112, 90, + /* 1070 */ 112, 112, 93, 112, 95, 112, 90, 112, 112, 93, + /* 1080 */ 101, 95, 112, 112, 112, 112, 112, 101, 112, 112, + /* 1090 */ 112, 75, 76, 112, 78, 79, 112, 81, 112, 112, + /* 1100 */ 112, 75, 76, 112, 78, 79, 90, 81, 112, 93, + /* 1110 */ 112, 95, 112, 112, 112, 112, 90, 101, 112, 93, + /* 1120 */ 112, 95, 112, 112, 112, 112, 112, 101, 112, 112, + /* 1130 */ 75, 76, 112, 78, 79, 112, 81, 75, 76, 112, + /* 1140 */ 78, 79, 112, 81, 112, 90, 112, 112, 93, 112, + /* 1150 */ 95, 112, 90, 112, 112, 93, 101, 95, 112, 112, + /* 1160 */ 112, 112, 112, 101, 112, 112, 112, 75, 76, 112, + /* 1170 */ 78, 79, 112, 81, 112, 112, 112, 75, 76, 112, + /* 1180 */ 78, 79, 90, 81, 112, 93, 112, 95, 112, 112, + /* 1190 */ 112, 112, 90, 101, 112, 93, 112, 95, 112, 112, + /* 1200 */ 112, 112, 112, 101, 112, 112, 75, 76, 112, 78, + /* 1210 */ 79, 112, 81, 75, 76, 112, 78, 79, 112, 81, + /* 1220 */ 112, 90, 112, 112, 93, 112, 95, 112, 90, 112, + /* 1230 */ 112, 93, 101, 95, 112, 112, 112, 112, 112, 101, + /* 1240 */ 112, 112, 112, 75, 76, 112, 78, 79, 112, 81, + /* 1250 */ 112, 112, 112, 75, 76, 112, 78, 79, 90, 81, + /* 1260 */ 112, 93, 112, 95, 112, 112, 112, 112, 90, 101, + /* 1270 */ 112, 93, 112, 95, 112, 112, 112, 112, 112, 101, + /* 1280 */ 112, 112, 75, 76, 112, 78, 79, 112, 81, 75, + /* 1290 */ 76, 112, 78, 79, 112, 81, 112, 90, 112, 112, + /* 1300 */ 93, 112, 95, 112, 90, 112, 112, 93, 101, 95, + /* 1310 */ 112, 112, 112, 112, 112, 101, 112, 112, 112, 75, + /* 1320 */ 76, 112, 78, 75, 76, 81, 78, 112, 112, 81, + /* 1330 */ 112, 112, 112, 112, 112, 112, 112, 112, 112, 95, + /* 1340 */ 112, 112, 112, 95, 112, 101, 112, 112, 112, 101, ); - const YY_SHIFT_USE_DFLT = -25; - const YY_SHIFT_MAX = 235; + const YY_SHIFT_USE_DFLT = -30; + const YY_SHIFT_MAX = 234; static public $yy_shift_ofst = array( - /* 0 */ 114, 103, 29, 29, 29, 29, 29, 29, 29, 29, - /* 10 */ 29, 29, 29, 355, -7, -7, 140, 302, 391, 140, - /* 20 */ 302, 355, 140, 140, 140, 140, 140, 140, 140, 140, - /* 30 */ 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, - /* 40 */ 66, 215, 251, 439, 459, 553, 553, 517, 221, 1303, - /* 50 */ 667, 232, 445, 471, 142, 457, 415, 415, 523, 415, - /* 60 */ 281, 523, 281, 523, 444, 541, 551, 114, 817, 190, - /* 70 */ 1, 257, 362, 117, 572, 536, 536, 572, 536, 198, - /* 80 */ 536, 536, 536, 671, 536, 536, 549, 784, 14, 783, - /* 90 */ 783, 14, 792, 783, 14, 137, 165, 252, 305, 389, - /* 100 */ 389, 389, 389, 389, 389, 389, 389, 148, 520, 219, - /* 110 */ 171, 344, 151, 288, 23, 81, 23, 326, 307, 308, - /* 120 */ 316, 446, 79, 456, 645, 339, 229, 620, 617, 322, - /* 130 */ 341, 373, 394, 643, 119, 626, 405, 119, 119, 615, - /* 140 */ -12, 274, 119, 556, 470, 503, 191, 559, 119, 28, - /* 150 */ 816, 28, 28, 816, 784, 791, 28, 14, 28, 28, - /* 160 */ 28, 28, 28, 14, 14, 19, 28, 14, -25, -25, - /* 170 */ -25, -25, -25, -25, -25, 399, -24, 20, 40, 366, - /* 180 */ 238, 197, 211, 94, -2, 94, 94, 186, 7, 94, - /* 190 */ 80, 781, 752, 754, 342, 756, 718, 750, 698, 702, - /* 200 */ 691, 733, 749, 755, 776, 778, 777, 780, 770, 757, - /* 210 */ 769, 763, 773, 717, 705, 469, 451, 516, 494, 406, - /* 220 */ 385, 359, 371, 395, 454, 527, 539, 659, 679, 685, - /* 230 */ 674, 664, 612, 621, 537, 669, + /* 0 */ 472, 100, 28, 28, 28, 28, 28, 28, 28, 28, + /* 10 */ 28, 28, 28, 280, -7, -7, 280, 136, 136, 136, + /* 20 */ 182, 182, 136, 217, 136, 136, 136, 136, 136, 136, + /* 30 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 64, + /* 40 */ 350, 315, 461, 426, 496, 531, 496, 188, 863, 949, + /* 50 */ 296, 449, 439, 120, 405, 159, 96, 159, 96, 159, + /* 60 */ 96, 159, 335, 335, 519, 352, 529, 472, 842, 281, + /* 70 */ 7, 70, 290, 223, 595, 432, 510, 432, 432, 432, + /* 80 */ 432, 432, 813, 432, 643, 432, 510, 850, 840, -12, + /* 90 */ 843, -12, 840, -12, 840, 218, 228, 133, 353, 377, + /* 100 */ 377, 377, 377, 377, 377, 377, 377, -20, 475, 72, + /* 110 */ 186, 94, 27, 29, 42, 87, 224, 27, 113, 60, + /* 120 */ 123, 285, 40, -29, 62, 23, -29, 800, 250, 769, + /* 130 */ 753, 736, -29, 774, -29, 791, 412, 778, 723, 692, + /* 140 */ 676, 649, 697, 714, 293, 701, -29, 351, 845, -12, + /* 150 */ 845, -12, 468, 850, 468, 468, 468, 468, 468, 468, + /* 160 */ 339, -12, 468, -12, 468, 483, 468, -30, -30, -30, + /* 170 */ -30, -30, -30, -30, 358, 356, 326, 292, 210, 180, + /* 180 */ 140, 592, 5, 5, 5, 5, 287, 205, 209, 239, + /* 190 */ 678, 713, 612, 651, 569, 616, 634, 708, 691, 665, + /* 200 */ 687, 754, 660, 716, 596, 617, 798, 797, 801, 782, + /* 210 */ 781, 738, 726, 530, 773, 804, 369, 361, 382, 306, + /* 220 */ 166, 222, 574, 393, 174, 86, 424, 341, 730, 732, + /* 230 */ 718, 742, 785, 613, 706, ); - const YY_REDUCE_USE_DFLT = -105; - const YY_REDUCE_MAX = 174; + const YY_REDUCE_USE_DFLT = -79; + const YY_REDUCE_MAX = 173; static public $yy_reduce_ofst = array( - /* 0 */ -51, 437, 637, 608, 563, 644, 542, 587, 694, 736, - /* 10 */ 765, 673, 715, -33, 842, 897, 904, 4, 189, 772, - /* 20 */ 873, 801, 849, 814, 1051, 1058, 1128, 1079, 1086, 1030, - /* 30 */ 1009, 953, 932, 974, 925, 981, 1002, 1107, 1135, 1156, - /* 40 */ 1163, 1184, 666, 1205, 1212, 1216, 496, 1223, 64, 147, - /* 50 */ 372, 338, 329, 464, 78, 69, 249, 306, 36, 329, - /* 60 */ -42, 18, 266, 442, 303, 303, 303, 275, 417, 173, - /* 70 */ 525, 525, 654, 654, 476, 504, 462, 557, 588, 550, - /* 80 */ 548, 567, 558, 490, 476, 480, 476, 365, 596, 663, - /* 90 */ 598, 550, 625, 619, 568, 680, 680, 680, 680, 680, - /* 100 */ 680, 680, 680, 680, 680, 680, 680, 699, 722, 699, - /* 110 */ 709, 709, -1, 699, 709, 699, 709, 699, 699, 706, - /* 120 */ 706, 706, -1, 706, 706, 704, -1, 706, 706, -1, - /* 130 */ -1, -1, 710, 706, 707, 706, 706, 707, 707, 706, - /* 140 */ -1, -1, 707, 706, 706, 706, -1, 706, 707, -1, - /* 150 */ 740, -1, -1, 735, 739, 725, -1, -104, -1, -1, - /* 160 */ -1, -1, -1, -104, -104, 59, -1, -104, 44, 240, - /* 170 */ 226, 50, 145, 193, 212, + /* 0 */ 138, 520, 597, 618, 565, 541, 796, 751, 642, 772, + /* 10 */ 719, 695, 674, -34, 434, 74, 253, 828, 849, 910, + /* 20 */ 38, 903, 873, 940, 1062, 1092, 950, 1102, 1055, 1026, + /* 30 */ 979, 986, 1138, 1016, 1131, 1168, 1214, 1207, 1178, 741, + /* 40 */ 664, 587, 160, 818, 1244, 1248, 474, 11, 411, -69, + /* 50 */ 65, 532, 556, 551, -78, 469, 465, 241, 360, 553, + /* 60 */ 364, 532, 578, 573, 263, 263, 263, 376, 462, 401, + /* 70 */ 271, 609, 609, 271, 236, 582, 524, 456, 457, 515, + /* 80 */ 601, 622, 686, 653, 622, 627, 622, 395, 762, 236, + /* 90 */ 689, 444, 710, 417, 746, 735, 735, 735, 735, 735, + /* 100 */ 735, 735, 735, 735, 735, 735, 735, 724, 770, 721, + /* 110 */ 721, 724, 724, 721, 721, 721, 721, 724, 418, 418, + /* 120 */ 418, 745, 418, 731, 745, 418, 731, 745, 743, 745, + /* 130 */ 745, 745, 731, 745, 731, 745, 418, 745, 745, 745, + /* 140 */ 745, 745, 745, 745, 418, 745, 731, 768, 789, 111, + /* 150 */ 776, 111, 418, 784, 418, 418, 418, 418, 418, 418, + /* 160 */ 227, 111, 418, 111, 418, 354, 418, 399, 451, 473, + /* 170 */ 443, 425, 485, 389, ); static public $yyExpectedTokens = array( - /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 23, ), - /* 1 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 2 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 3 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 4 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 5 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 6 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 7 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 8 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 9 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 10 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 11 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 12 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), - /* 13 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 14 */ array(7, 9, 10, 12, 14, 16, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 15 */ array(7, 9, 10, 12, 14, 16, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 16 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 17 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 18 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 19 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 20 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 21 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 22 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 23 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 24 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 25 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 26 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 27 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 28 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 29 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 30 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 31 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 32 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 33 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 34 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 35 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 36 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 37 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 38 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 39 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 40 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 43, ), - /* 41 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 42 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 43 */ array(7, 9, 10, 23, 24, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 44 */ array(7, 9, 10, 23, 24, 28, 33, 35, 36, 37, 38, 41, 42, ), - /* 45 */ array(7, 9, 10, 23, 24, 28, 33, 35, 36, 37, 38, 41, ), - /* 46 */ array(7, 9, 10, 23, 24, 28, 33, 35, 36, 37, 38, 41, ), - /* 47 */ array(7, 9, 10, 23, 24, 28, 33, 35, 36, 37, 38, 41, ), - /* 48 */ array(7, 9, 10, 41, ), - /* 49 */ array(3, 7, 23, 38, 70, 71, ), - /* 50 */ array(8, 13, 15, 28, 39, 44, ), - /* 51 */ array(8, 13, 15, 44, ), - /* 52 */ array(8, 15, 44, ), - /* 53 */ array(8, 15, 44, ), - /* 54 */ array(9, 10, 41, ), - /* 55 */ array(13, 34, 42, ), - /* 56 */ array(15, 44, ), - /* 57 */ array(15, 44, ), - /* 58 */ array(15, 26, ), - /* 59 */ array(15, 44, ), - /* 60 */ array(9, 41, ), - /* 61 */ array(15, 26, ), - /* 62 */ array(9, 41, ), - /* 63 */ array(15, 26, ), - /* 64 */ array(29, 44, 46, 58, 59, 60, 61, 62, 63, 64, 65, 66, ), - /* 65 */ array(29, 44, 46, 58, 59, 60, 61, 62, 63, 64, 65, 66, ), - /* 66 */ array(44, 46, 58, 59, 60, 61, 62, 63, 64, 65, 66, ), - /* 67 */ array(1, 2, 3, 4, 5, 6, 7, 23, ), - /* 68 */ array(3, 7, 23, 38, 70, 71, ), + /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 22, ), + /* 1 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 2 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 3 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 4 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 5 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 6 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 7 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 8 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 9 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 10 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 11 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 12 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 44, ), + /* 13 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 14 */ array(7, 9, 10, 12, 14, 16, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 15 */ array(7, 9, 10, 12, 14, 16, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 16 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 17 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 18 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 19 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 20 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 21 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 22 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 23 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 24 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 25 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 26 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 27 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 28 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 29 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 30 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 31 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 32 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 33 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 34 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 35 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 36 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 37 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 38 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 39 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, 42, ), + /* 40 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 41 */ array(7, 9, 10, 22, 23, 26, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 42 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 43 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, 41, ), + /* 44 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, ), + /* 45 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, ), + /* 46 */ array(7, 9, 10, 22, 23, 27, 32, 34, 35, 36, 37, 40, ), + /* 47 */ array(7, 9, 10, 40, ), + /* 48 */ array(3, 7, 22, 37, 69, 70, ), + /* 49 */ array(8, 13, 15, 27, 38, 43, ), + /* 50 */ array(8, 13, 15, 43, ), + /* 51 */ array(8, 15, 43, ), + /* 52 */ array(8, 15, 43, ), + /* 53 */ array(9, 10, 40, ), + /* 54 */ array(13, 33, 41, ), + /* 55 */ array(15, 43, ), + /* 56 */ array(15, 25, ), + /* 57 */ array(15, 43, ), + /* 58 */ array(15, 25, ), + /* 59 */ array(15, 43, ), + /* 60 */ array(15, 25, ), + /* 61 */ array(15, 43, ), + /* 62 */ array(9, 40, ), + /* 63 */ array(9, 40, ), + /* 64 */ array(28, 43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), + /* 65 */ array(28, 43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), + /* 66 */ array(43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), + /* 67 */ array(1, 2, 3, 4, 5, 6, 7, 22, ), + /* 68 */ array(3, 7, 22, 37, 69, 70, ), /* 69 */ array(7, 10, 11, 18, ), - /* 70 */ array(7, 10, 11, 40, ), - /* 71 */ array(7, 10, 40, ), + /* 70 */ array(7, 10, 11, 39, ), + /* 71 */ array(8, 15, 18, ), /* 72 */ array(8, 15, 18, ), - /* 73 */ array(8, 15, 18, ), - /* 74 */ array(7, 10, ), + /* 73 */ array(7, 10, 39, ), + /* 74 */ array(11, 13, ), /* 75 */ array(7, 10, ), /* 76 */ array(7, 10, ), /* 77 */ array(7, 10, ), /* 78 */ array(7, 10, ), - /* 79 */ array(11, 13, ), + /* 79 */ array(7, 10, ), /* 80 */ array(7, 10, ), /* 81 */ array(7, 10, ), - /* 82 */ array(7, 10, ), - /* 83 */ array(8, 15, ), + /* 82 */ array(8, 15, ), + /* 83 */ array(7, 10, ), /* 84 */ array(7, 10, ), /* 85 */ array(7, 10, ), /* 86 */ array(7, 10, ), /* 87 */ array(9, ), - /* 88 */ array(13, ), - /* 89 */ array(15, ), + /* 88 */ array(15, ), + /* 89 */ array(13, ), /* 90 */ array(15, ), /* 91 */ array(13, ), /* 92 */ array(15, ), - /* 93 */ array(15, ), - /* 94 */ array(13, ), - /* 95 */ array(17, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 96 */ array(29, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 97 */ array(29, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 98 */ array(8, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 99 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 100 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 101 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 102 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 103 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 104 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 105 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 106 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), - /* 107 */ array(7, 8, 10, 22, ), + /* 93 */ array(13, ), + /* 94 */ array(15, ), + /* 95 */ array(28, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 96 */ array(17, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 97 */ array(28, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 98 */ array(8, 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(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 106 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), + /* 107 */ array(26, 30, 31, 42, ), /* 108 */ array(10, 12, 14, 16, ), - /* 109 */ array(7, 8, 10, 22, ), - /* 110 */ array(8, 27, 31, 32, ), - /* 111 */ array(27, 31, 32, 43, ), - /* 112 */ array(8, 20, 44, ), - /* 113 */ array(7, 10, 40, ), - /* 114 */ array(27, 31, 32, ), - /* 115 */ array(7, 10, 11, ), - /* 116 */ array(27, 31, 32, ), - /* 117 */ array(7, 8, 10, ), - /* 118 */ array(7, 8, 10, ), - /* 119 */ array(8, 15, ), - /* 120 */ array(8, 15, ), + /* 109 */ array(7, 8, 10, 21, ), + /* 110 */ array(7, 8, 10, 21, ), + /* 111 */ array(8, 26, 30, 31, ), + /* 112 */ array(26, 30, 31, ), + /* 113 */ array(7, 10, 11, ), + /* 114 */ array(7, 10, 39, ), + /* 115 */ array(7, 8, 10, ), + /* 116 */ array(7, 8, 10, ), + /* 117 */ array(26, 30, 31, ), + /* 118 */ array(25, 43, ), + /* 119 */ array(24, 43, ), + /* 120 */ array(25, 43, ), /* 121 */ array(8, 15, ), - /* 122 */ array(8, 44, ), - /* 123 */ array(8, 15, ), + /* 122 */ array(8, 43, ), + /* 123 */ array(33, 41, ), /* 124 */ array(8, 15, ), - /* 125 */ array(7, 28, ), - /* 126 */ array(26, 44, ), + /* 125 */ array(8, 43, ), + /* 126 */ array(33, 41, ), /* 127 */ array(8, 15, ), - /* 128 */ array(8, 15, ), - /* 129 */ array(25, 44, ), - /* 130 */ array(8, 44, ), - /* 131 */ array(29, 44, ), - /* 132 */ array(9, 10, ), + /* 128 */ array(9, 10, ), + /* 129 */ array(8, 15, ), + /* 130 */ array(8, 15, ), + /* 131 */ array(8, 15, ), + /* 132 */ array(33, 41, ), /* 133 */ array(8, 15, ), - /* 134 */ array(34, 42, ), + /* 134 */ array(33, 41, ), /* 135 */ array(8, 15, ), - /* 136 */ array(8, 15, ), - /* 137 */ array(34, 42, ), - /* 138 */ array(34, 42, ), + /* 136 */ array(28, 43, ), + /* 137 */ array(8, 15, ), + /* 138 */ array(8, 15, ), /* 139 */ array(8, 15, ), - /* 140 */ array(26, 44, ), - /* 141 */ array(8, 44, ), - /* 142 */ array(34, 42, ), + /* 140 */ array(8, 15, ), + /* 141 */ array(8, 15, ), + /* 142 */ array(8, 15, ), /* 143 */ array(8, 15, ), - /* 144 */ array(8, 15, ), + /* 144 */ array(8, 43, ), /* 145 */ array(8, 15, ), - /* 146 */ array(8, 44, ), - /* 147 */ array(8, 15, ), - /* 148 */ array(34, 42, ), - /* 149 */ array(44, ), + /* 146 */ array(33, 41, ), + /* 147 */ array(7, 27, ), + /* 148 */ array(15, ), + /* 149 */ array(13, ), /* 150 */ array(15, ), - /* 151 */ array(44, ), - /* 152 */ array(44, ), - /* 153 */ array(15, ), - /* 154 */ array(9, ), - /* 155 */ array(28, ), - /* 156 */ array(44, ), - /* 157 */ array(13, ), - /* 158 */ array(44, ), - /* 159 */ array(44, ), - /* 160 */ array(44, ), - /* 161 */ array(44, ), - /* 162 */ array(44, ), + /* 151 */ array(13, ), + /* 152 */ array(43, ), + /* 153 */ array(9, ), + /* 154 */ array(43, ), + /* 155 */ array(43, ), + /* 156 */ array(43, ), + /* 157 */ array(43, ), + /* 158 */ array(43, ), + /* 159 */ array(43, ), + /* 160 */ array(27, ), + /* 161 */ array(13, ), + /* 162 */ array(43, ), /* 163 */ array(13, ), - /* 164 */ array(13, ), - /* 165 */ array(26, ), - /* 166 */ array(44, ), - /* 167 */ array(13, ), + /* 164 */ array(43, ), + /* 165 */ array(25, ), + /* 166 */ array(43, ), + /* 167 */ array(), /* 168 */ array(), /* 169 */ array(), /* 170 */ array(), /* 171 */ array(), /* 172 */ array(), /* 173 */ array(), - /* 174 */ array(), - /* 175 */ array(7, 9, 10, 24, 35, 36, ), - /* 176 */ array(28, 34, 39, 43, ), - /* 177 */ array(22, 28, 39, ), - /* 178 */ array(11, 28, 39, ), - /* 179 */ array(28, 39, 44, ), - /* 180 */ array(11, 34, ), - /* 181 */ array(10, 40, ), - /* 182 */ array(25, 43, ), - /* 183 */ array(28, 39, ), - /* 184 */ array(8, 15, ), - /* 185 */ array(28, 39, ), - /* 186 */ array(28, 39, ), - /* 187 */ array(10, 24, ), - /* 188 */ array(11, 26, ), - /* 189 */ array(28, 39, ), - /* 190 */ array(17, 25, ), - /* 191 */ array(21, ), - /* 192 */ array(9, ), - /* 193 */ array(9, ), - /* 194 */ array(21, ), - /* 195 */ array(9, ), - /* 196 */ array(19, ), - /* 197 */ array(4, ), - /* 198 */ array(29, ), - /* 199 */ array(28, ), - /* 200 */ array(43, ), - /* 201 */ array(3, ), - /* 202 */ array(10, ), + /* 174 */ array(7, 9, 10, 23, 34, 35, ), + /* 175 */ array(27, 33, 38, 42, ), + /* 176 */ array(27, 38, 43, ), + /* 177 */ array(21, 27, 38, ), + /* 178 */ array(11, 27, 38, ), + /* 179 */ array(10, 23, ), + /* 180 */ array(11, 25, ), + /* 181 */ array(8, 15, ), + /* 182 */ array(27, 38, ), + /* 183 */ array(27, 38, ), + /* 184 */ array(27, 38, ), + /* 185 */ array(27, 38, ), + /* 186 */ array(10, 39, ), + /* 187 */ array(24, 42, ), + /* 188 */ array(11, 33, ), + /* 189 */ array(17, 24, ), + /* 190 */ array(56, ), + /* 191 */ array(20, ), + /* 192 */ array(25, ), + /* 193 */ array(10, ), + /* 194 */ array(28, ), + /* 195 */ array(23, ), + /* 196 */ array(33, ), + /* 197 */ array(20, ), + /* 198 */ array(15, ), + /* 199 */ array(18, ), + /* 200 */ array(8, ), + /* 201 */ array(8, ), + /* 202 */ array(9, ), /* 203 */ array(11, ), - /* 204 */ array(8, ), - /* 205 */ array(8, ), - /* 206 */ array(10, ), - /* 207 */ array(3, ), - /* 208 */ array(11, ), - /* 209 */ array(15, ), - /* 210 */ array(8, ), - /* 211 */ array(15, ), - /* 212 */ array(9, ), - /* 213 */ array(8, ), - /* 214 */ array(4, ), - /* 215 */ array(29, ), - /* 216 */ array(70, ), - /* 217 */ array(9, ), - /* 218 */ array(18, ), - /* 219 */ array(41, ), - /* 220 */ array(10, ), - /* 221 */ array(10, ), - /* 222 */ array(10, ), - /* 223 */ array(30, ), - /* 224 */ array(30, ), - /* 225 */ array(10, ), - /* 226 */ array(57, ), - /* 227 */ array(41, ), - /* 228 */ array(26, ), - /* 229 */ array(22, ), - /* 230 */ array(34, ), - /* 231 */ array(10, ), - /* 232 */ array(8, ), + /* 204 */ array(15, ), + /* 205 */ array(11, ), + /* 206 */ array(9, ), + /* 207 */ array(8, ), + /* 208 */ array(9, ), + /* 209 */ array(10, ), + /* 210 */ array(10, ), + /* 211 */ array(8, ), + /* 212 */ array(10, ), + /* 213 */ array(9, ), + /* 214 */ array(10, ), + /* 215 */ array(9, ), + /* 216 */ array(10, ), + /* 217 */ array(27, ), + /* 218 */ array(40, ), + /* 219 */ array(4, ), + /* 220 */ array(40, ), + /* 221 */ array(3, ), + /* 222 */ array(28, ), + /* 223 */ array(3, ), + /* 224 */ array(4, ), + /* 225 */ array(29, ), + /* 226 */ array(10, ), + /* 227 */ array(21, ), + /* 228 */ array(42, ), + /* 229 */ array(28, ), + /* 230 */ array(29, ), + /* 231 */ array(69, ), + /* 232 */ array(19, ), /* 233 */ array(10, ), - /* 234 */ array(24, ), - /* 235 */ array(29, ), + /* 234 */ array(8, ), + /* 235 */ array(), /* 236 */ array(), /* 237 */ array(), /* 238 */ array(), @@ -971,47 +964,45 @@ static public $yy_action = array( /* 359 */ array(), /* 360 */ array(), /* 361 */ array(), - /* 362 */ array(), - /* 363 */ array(), ); static public $yy_default = array( - /* 0 */ 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, - /* 10 */ 546, 546, 546, 532, 546, 546, 490, 546, 546, 490, - /* 20 */ 546, 546, 490, 490, 546, 546, 546, 546, 546, 546, - /* 30 */ 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, - /* 40 */ 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, - /* 50 */ 546, 546, 546, 546, 546, 452, 412, 412, 412, 412, - /* 60 */ 546, 412, 546, 412, 500, 500, 500, 364, 546, 546, - /* 70 */ 462, 462, 435, 435, 546, 546, 546, 546, 546, 455, - /* 80 */ 546, 546, 546, 426, 546, 546, 546, 546, 448, 412, - /* 90 */ 412, 455, 412, 412, 447, 546, 546, 546, 546, 509, - /* 100 */ 506, 510, 513, 504, 514, 505, 498, 546, 546, 546, - /* 110 */ 546, 546, 546, 463, 423, 546, 495, 546, 546, 546, - /* 120 */ 546, 546, 546, 546, 546, 462, 546, 546, 546, 489, - /* 130 */ 546, 546, 546, 546, 460, 546, 546, 481, 482, 546, - /* 140 */ 546, 546, 483, 546, 546, 546, 546, 546, 484, 414, - /* 150 */ 545, 431, 394, 545, 546, 462, 430, 450, 534, 533, - /* 160 */ 535, 421, 418, 478, 453, 425, 501, 449, 494, 462, - /* 170 */ 494, 494, 462, 462, 494, 546, 546, 422, 417, 413, - /* 180 */ 438, 546, 546, 496, 426, 422, 546, 546, 476, 515, - /* 190 */ 546, 546, 546, 546, 546, 546, 419, 546, 546, 451, - /* 200 */ 546, 546, 546, 546, 546, 546, 546, 546, 417, 546, - /* 210 */ 546, 546, 546, 546, 546, 546, 546, 546, 435, 546, - /* 220 */ 546, 546, 546, 546, 443, 546, 426, 546, 476, 426, - /* 230 */ 438, 546, 426, 546, 546, 546, 486, 487, 471, 369, - /* 240 */ 491, 473, 529, 472, 432, 433, 434, 537, 446, 539, - /* 250 */ 542, 543, 518, 370, 530, 477, 531, 443, 502, 517, - /* 260 */ 503, 470, 468, 403, 404, 405, 381, 409, 382, 541, - /* 270 */ 406, 380, 366, 365, 367, 378, 379, 416, 377, 485, - /* 280 */ 469, 492, 429, 488, 538, 466, 467, 444, 459, 376, - /* 290 */ 540, 454, 368, 458, 457, 465, 397, 475, 426, 476, - /* 300 */ 526, 399, 427, 527, 400, 512, 411, 508, 479, 401, - /* 310 */ 493, 511, 528, 398, 385, 456, 384, 390, 387, 388, - /* 320 */ 480, 389, 436, 499, 464, 461, 437, 383, 386, 507, - /* 330 */ 408, 523, 522, 374, 524, 420, 544, 525, 521, 396, - /* 340 */ 536, 371, 445, 372, 373, 520, 395, 375, 439, 440, - /* 350 */ 497, 407, 392, 428, 391, 402, 441, 516, 393, 410, - /* 360 */ 474, 442, 424, 519, + /* 0 */ 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, + /* 10 */ 543, 543, 543, 529, 543, 543, 543, 487, 487, 487, + /* 20 */ 543, 543, 487, 543, 543, 543, 543, 543, 543, 543, + /* 30 */ 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, + /* 40 */ 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, + /* 50 */ 543, 543, 543, 543, 449, 409, 409, 409, 409, 409, + /* 60 */ 409, 409, 543, 543, 497, 497, 497, 362, 543, 543, + /* 70 */ 459, 432, 432, 459, 452, 543, 543, 543, 543, 543, + /* 80 */ 543, 543, 423, 543, 543, 543, 543, 543, 409, 452, + /* 90 */ 409, 445, 409, 444, 409, 543, 543, 543, 543, 510, + /* 100 */ 501, 495, 502, 511, 506, 503, 507, 543, 543, 543, + /* 110 */ 543, 543, 420, 543, 460, 543, 543, 492, 543, 486, + /* 120 */ 543, 543, 543, 480, 543, 543, 479, 543, 543, 543, + /* 130 */ 543, 543, 457, 543, 481, 543, 543, 543, 543, 543, + /* 140 */ 543, 543, 543, 543, 543, 543, 478, 459, 542, 450, + /* 150 */ 542, 447, 392, 543, 427, 415, 418, 531, 428, 532, + /* 160 */ 459, 446, 411, 475, 530, 422, 498, 459, 491, 491, + /* 170 */ 491, 459, 459, 491, 543, 543, 410, 419, 414, 543, + /* 180 */ 473, 423, 419, 493, 543, 512, 543, 543, 435, 543, + /* 190 */ 423, 543, 473, 543, 543, 543, 435, 543, 543, 432, + /* 200 */ 543, 543, 543, 414, 543, 543, 543, 543, 543, 543, + /* 210 */ 543, 543, 543, 543, 543, 543, 543, 448, 543, 543, + /* 220 */ 543, 543, 543, 543, 543, 543, 543, 423, 543, 543, + /* 230 */ 440, 543, 416, 543, 423, 540, 466, 443, 465, 403, + /* 240 */ 402, 539, 430, 417, 534, 467, 363, 393, 442, 413, + /* 250 */ 429, 468, 464, 406, 482, 462, 541, 474, 394, 533, + /* 260 */ 469, 535, 401, 484, 470, 400, 463, 536, 391, 431, + /* 270 */ 504, 426, 441, 374, 537, 489, 488, 439, 421, 471, + /* 280 */ 440, 375, 538, 370, 451, 454, 455, 380, 379, 376, + /* 290 */ 377, 378, 438, 437, 408, 490, 423, 424, 405, 404, + /* 300 */ 372, 373, 407, 399, 434, 433, 473, 476, 425, 436, + /* 310 */ 472, 461, 477, 453, 458, 456, 485, 381, 382, 383, + /* 320 */ 385, 496, 525, 509, 366, 523, 524, 386, 388, 398, + /* 330 */ 365, 389, 390, 397, 396, 387, 384, 395, 508, 367, + /* 340 */ 514, 515, 516, 517, 500, 499, 483, 526, 528, 527, + /* 350 */ 518, 519, 368, 494, 371, 505, 369, 513, 520, 521, + /* 360 */ 522, 364, ); /* The next thing included is series of defines which control ** various aspects of the generated parser. @@ -1028,11 +1019,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 = 114; + const YYNOCODE = 113; const YYSTACKDEPTH = 100; - const YYNSTATE = 364; - const YYNRULE = 182; - const YYERRORSYMBOL = 72; + const YYNSTATE = 362; + const YYNRULE = 181; + const YYERRORSYMBOL = 71; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; /** The next table maps tokens into fallback tokens. If a construct @@ -1119,30 +1110,29 @@ static public $yy_action = array( 'RDEL', 'DOLLAR', 'ID', 'EQUAL', 'FOREACH', 'PTR', 'IF', 'SPACE', 'FOR', 'SEMICOLON', 'INCDEC', 'TO', - 'STEP', 'AS', 'APTR', 'LDELSLASH', - 'INTEGER', 'COMMA', 'COLON', 'UNIMATH', - 'OPENP', 'CLOSEP', 'QMARK', 'MATH', - 'ANDSYM', 'TYPECAST', 'DOT', 'BOOLEAN', - 'NULL', 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', - 'AT', 'HATCH', 'OPENB', 'CLOSEB', - 'VERT', 'NOT', 'ISIN', 'ISDIVBY', - 'ISNOTDIVBY', 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', - 'ISNOTEVENBY', 'ISODD', 'ISNOTODD', 'ISODDBY', - 'ISNOTODDBY', 'INSTANCEOF', 'EQUALS', 'NOTEQUALS', - 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', - 'IDENTITY', 'NONEIDENTITY', 'MOD', 'LAND', - 'LOR', 'LXOR', 'BACKTICK', 'DOLLARID', - 'error', 'start', 'template', 'template_element', - 'smartytag', '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', + 'AS', 'APTR', 'LDELSLASH', 'INTEGER', + 'COMMA', 'COLON', 'UNIMATH', 'OPENP', + 'CLOSEP', 'QMARK', 'MATH', 'ANDSYM', + 'TYPECAST', 'DOT', 'BOOLEAN', 'NULL', + 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', 'AT', + 'HATCH', 'OPENB', 'CLOSEB', 'VERT', + 'NOT', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', + 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', + 'ISODD', 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', + 'INSTANCEOF', 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', + 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', + 'NONEIDENTITY', 'MOD', 'LAND', 'LOR', + 'LXOR', 'BACKTICK', 'DOLLARID', 'error', + 'start', 'template', 'template_element', 'smartytag', + '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', ); /** @@ -1182,156 +1172,155 @@ static public $yy_action = array( /* 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 FOR SPACE statement TO expr RDEL", - /* 33 */ "smartytag ::= LDEL FOR SPACE statement TO expr STEP expr RDEL", - /* 34 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL", - /* 35 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 36 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL", - /* 37 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 38 */ "smartytag ::= LDELSLASH ID RDEL", - /* 39 */ "smartytag ::= LDELSLASH specialclose RDEL", - /* 40 */ "specialclose ::= IF", - /* 41 */ "specialclose ::= FOR", - /* 42 */ "specialclose ::= FOREACH", - /* 43 */ "smartytag ::= LDELSLASH ID attributes RDEL", - /* 44 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", - /* 45 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", - /* 46 */ "attributes ::= attributes attribute", - /* 47 */ "attributes ::= attribute", - /* 48 */ "attributes ::=", - /* 49 */ "attribute ::= SPACE ID EQUAL ID", - /* 50 */ "attribute ::= SPACE ID EQUAL expr", - /* 51 */ "attribute ::= SPACE ID EQUAL value", - /* 52 */ "attribute ::= SPACE ID EQUAL ternary", - /* 53 */ "attribute ::= SPACE ID", - /* 54 */ "attribute ::= SPACE INTEGER EQUAL expr", - /* 55 */ "statements ::= statement", - /* 56 */ "statements ::= statements COMMA statement", - /* 57 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 58 */ "expr ::= ID", - /* 59 */ "expr ::= exprs", - /* 60 */ "expr ::= DOLLAR ID COLON ID", - /* 61 */ "expr ::= expr modifier modparameters", - /* 62 */ "exprs ::= value", - /* 63 */ "exprs ::= UNIMATH value", - /* 64 */ "exprs ::= exprs math value", - /* 65 */ "exprs ::= array", - /* 66 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", - /* 67 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 68 */ "math ::= UNIMATH", - /* 69 */ "math ::= MATH", - /* 70 */ "math ::= ANDSYM", - /* 71 */ "value ::= variable", - /* 72 */ "value ::= TYPECAST variable", - /* 73 */ "value ::= variable INCDEC", - /* 74 */ "value ::= INTEGER", - /* 75 */ "value ::= INTEGER DOT INTEGER", - /* 76 */ "value ::= BOOLEAN", - /* 77 */ "value ::= NULL", - /* 78 */ "value ::= function", - /* 79 */ "value ::= OPENP expr CLOSEP", - /* 80 */ "value ::= SINGLEQUOTESTRING", - /* 81 */ "value ::= QUOTE doublequoted QUOTE", - /* 82 */ "value ::= QUOTE QUOTE", - /* 83 */ "value ::= ID DOUBLECOLON method", - /* 84 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", - /* 85 */ "value ::= ID DOUBLECOLON method objectchain", - /* 86 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", - /* 87 */ "value ::= ID DOUBLECOLON ID", - /* 88 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", - /* 89 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", - /* 90 */ "value ::= smartytag", - /* 91 */ "variable ::= varindexed", - /* 92 */ "variable ::= DOLLAR varvar AT ID", - /* 93 */ "variable ::= object", - /* 94 */ "variable ::= HATCH ID HATCH", - /* 95 */ "variable ::= HATCH variable HATCH", - /* 96 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 97 */ "arrayindex ::= arrayindex indexdef", - /* 98 */ "arrayindex ::=", - /* 99 */ "indexdef ::= DOT DOLLAR varvar", - /* 100 */ "indexdef ::= DOT DOLLAR varvar AT ID", - /* 101 */ "indexdef ::= DOT ID", - /* 102 */ "indexdef ::= DOT BOOLEAN", - /* 103 */ "indexdef ::= DOT NULL", - /* 104 */ "indexdef ::= DOT INTEGER", - /* 105 */ "indexdef ::= DOT LDEL exprs RDEL", - /* 106 */ "indexdef ::= OPENB ID CLOSEB", - /* 107 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 108 */ "indexdef ::= OPENB exprs CLOSEB", - /* 109 */ "indexdef ::= OPENB CLOSEB", - /* 110 */ "varvar ::= varvarele", - /* 111 */ "varvar ::= varvar varvarele", - /* 112 */ "varvarele ::= ID", - /* 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 ::=", + /* 32 */ "smartytag ::= LDEL FOR SPACE statement TO expr attributes RDEL", + /* 33 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL", + /* 34 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 35 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL", + /* 36 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 37 */ "smartytag ::= LDELSLASH ID RDEL", + /* 38 */ "smartytag ::= LDELSLASH specialclose RDEL", + /* 39 */ "specialclose ::= IF", + /* 40 */ "specialclose ::= FOR", + /* 41 */ "specialclose ::= FOREACH", + /* 42 */ "smartytag ::= LDELSLASH ID attributes RDEL", + /* 43 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", + /* 44 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", + /* 45 */ "attributes ::= attributes attribute", + /* 46 */ "attributes ::= attribute", + /* 47 */ "attributes ::=", + /* 48 */ "attribute ::= SPACE ID EQUAL ID", + /* 49 */ "attribute ::= SPACE ID EQUAL expr", + /* 50 */ "attribute ::= SPACE ID EQUAL value", + /* 51 */ "attribute ::= SPACE ID EQUAL ternary", + /* 52 */ "attribute ::= SPACE ID", + /* 53 */ "attribute ::= SPACE INTEGER EQUAL expr", + /* 54 */ "statements ::= statement", + /* 55 */ "statements ::= statements COMMA statement", + /* 56 */ "statement ::= DOLLAR varvar EQUAL expr", + /* 57 */ "expr ::= ID", + /* 58 */ "expr ::= exprs", + /* 59 */ "expr ::= DOLLAR ID COLON ID", + /* 60 */ "expr ::= expr modifier modparameters", + /* 61 */ "exprs ::= value", + /* 62 */ "exprs ::= UNIMATH value", + /* 63 */ "exprs ::= exprs math value", + /* 64 */ "exprs ::= array", + /* 65 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", + /* 66 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 67 */ "math ::= UNIMATH", + /* 68 */ "math ::= MATH", + /* 69 */ "math ::= ANDSYM", + /* 70 */ "value ::= variable", + /* 71 */ "value ::= TYPECAST variable", + /* 72 */ "value ::= variable INCDEC", + /* 73 */ "value ::= INTEGER", + /* 74 */ "value ::= INTEGER DOT INTEGER", + /* 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 ID", + /* 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 DOLLAR varvar", + /* 99 */ "indexdef ::= DOT DOLLAR varvar AT ID", + /* 100 */ "indexdef ::= DOT ID", + /* 101 */ "indexdef ::= DOT BOOLEAN", + /* 102 */ "indexdef ::= DOT NULL", + /* 103 */ "indexdef ::= DOT INTEGER", + /* 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 ::= LDEL expr RDEL", + /* 113 */ "object ::= varindexed objectchain", + /* 114 */ "objectchain ::= objectelement", + /* 115 */ "objectchain ::= objectchain objectelement", + /* 116 */ "objectelement ::= PTR ID arrayindex", + /* 117 */ "objectelement ::= PTR variable arrayindex", + /* 118 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 119 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 120 */ "objectelement ::= PTR method", + /* 121 */ "function ::= ID OPENP params CLOSEP", + /* 122 */ "method ::= ID OPENP params CLOSEP", + /* 123 */ "params ::= expr COMMA params", + /* 124 */ "params ::= expr", + /* 125 */ "params ::=", + /* 126 */ "modifier ::= VERT AT ID", + /* 127 */ "modifier ::= VERT ID", + /* 128 */ "modparameters ::= modparameters modparameter", + /* 129 */ "modparameters ::=", + /* 130 */ "modparameter ::= COLON exprs", + /* 131 */ "modparameter ::= COLON ID", + /* 132 */ "ifexprs ::= ifexpr", + /* 133 */ "ifexprs ::= NOT ifexprs", + /* 134 */ "ifexprs ::= OPENP ifexprs CLOSEP", + /* 135 */ "ifexpr ::= expr", + /* 136 */ "ifexpr ::= expr ifcond expr", + /* 137 */ "ifexpr ::= expr ISIN array", + /* 138 */ "ifexpr ::= expr ISIN value", + /* 139 */ "ifexpr ::= ifexprs lop ifexprs", + /* 140 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", + /* 141 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", + /* 142 */ "ifexpr ::= ifexprs ISEVEN", + /* 143 */ "ifexpr ::= ifexprs ISNOTEVEN", + /* 144 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", + /* 145 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", + /* 146 */ "ifexpr ::= ifexprs ISODD", + /* 147 */ "ifexpr ::= ifexprs ISNOTODD", + /* 148 */ "ifexpr ::= ifexprs ISODDBY ifexprs", + /* 149 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", + /* 150 */ "ifexpr ::= value INSTANCEOF ID", + /* 151 */ "ifexpr ::= value INSTANCEOF value", + /* 152 */ "ifcond ::= EQUALS", + /* 153 */ "ifcond ::= NOTEQUALS", + /* 154 */ "ifcond ::= GREATERTHAN", + /* 155 */ "ifcond ::= LESSTHAN", + /* 156 */ "ifcond ::= GREATEREQUAL", + /* 157 */ "ifcond ::= LESSEQUAL", + /* 158 */ "ifcond ::= IDENTITY", + /* 159 */ "ifcond ::= NONEIDENTITY", + /* 160 */ "ifcond ::= MOD", + /* 161 */ "lop ::= LAND", + /* 162 */ "lop ::= LOR", + /* 163 */ "lop ::= LXOR", + /* 164 */ "array ::= OPENB arrayelements CLOSEB", + /* 165 */ "arrayelements ::= arrayelement", + /* 166 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 167 */ "arrayelements ::=", + /* 168 */ "arrayelement ::= value APTR expr", + /* 169 */ "arrayelement ::= ID APTR expr", + /* 170 */ "arrayelement ::= expr", + /* 171 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 172 */ "doublequoted ::= doublequotedcontent", + /* 173 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 174 */ "doublequotedcontent ::= DOLLARID", + /* 175 */ "doublequotedcontent ::= LDEL variable RDEL", + /* 176 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 177 */ "doublequotedcontent ::= smartytag", + /* 178 */ "doublequotedcontent ::= OTHER", + /* 179 */ "optspace ::= SPACE", + /* 180 */ "optspace ::=", ); /** @@ -1696,188 +1685,187 @@ static public $yy_action = array( * */ static public $yyRuleInfo = array( + array( 'lhs' => 72, 'rhs' => 1 ), array( 'lhs' => 73, 'rhs' => 1 ), + array( 'lhs' => 73, 'rhs' => 2 ), array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 2 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 3 ), + 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' => 75, 'rhs' => 8 ), + 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' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 4 ), - array( 'lhs' => 76, 'rhs' => 4 ), - array( 'lhs' => 76, 'rhs' => 4 ), - array( 'lhs' => 76, 'rhs' => 4 ), - array( 'lhs' => 76, 'rhs' => 6 ), - array( 'lhs' => 76, 'rhs' => 6 ), - array( 'lhs' => 76, 'rhs' => 7 ), - array( 'lhs' => 76, 'rhs' => 7 ), - array( 'lhs' => 76, 'rhs' => 6 ), - array( 'lhs' => 76, 'rhs' => 6 ), - array( 'lhs' => 76, 'rhs' => 4 ), - array( 'lhs' => 76, 'rhs' => 4 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 6 ), - array( 'lhs' => 76, 'rhs' => 6 ), - array( 'lhs' => 76, 'rhs' => 8 ), - array( 'lhs' => 76, 'rhs' => 5 ), - array( 'lhs' => 76, 'rhs' => 5 ), - array( 'lhs' => 76, 'rhs' => 13 ), - array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 7 ), - array( 'lhs' => 76, 'rhs' => 9 ), - array( 'lhs' => 76, 'rhs' => 8 ), - array( 'lhs' => 76, 'rhs' => 11 ), - array( 'lhs' => 76, 'rhs' => 8 ), - array( 'lhs' => 76, 'rhs' => 11 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 92, 'rhs' => 1 ), - array( 'lhs' => 92, 'rhs' => 1 ), - array( 'lhs' => 92, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 4 ), - array( 'lhs' => 76, 'rhs' => 6 ), - array( 'lhs' => 76, 'rhs' => 5 ), - array( 'lhs' => 78, 'rhs' => 2 ), - array( 'lhs' => 78, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 0 ), - array( 'lhs' => 93, 'rhs' => 4 ), - array( 'lhs' => 93, 'rhs' => 4 ), - array( 'lhs' => 93, 'rhs' => 4 ), - array( 'lhs' => 93, 'rhs' => 4 ), - array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 93, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 86, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 3 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 2 ), - array( 'lhs' => 94, 'rhs' => 3 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 7 ), - array( 'lhs' => 81, 'rhs' => 7 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 2 ), + 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' => 3 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 2 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 7 ), - array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 8 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 5 ), - array( 'lhs' => 77, 'rhs' => 6 ), - 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' => 1 ), array( 'lhs' => 79, 'rhs' => 3 ), - array( 'lhs' => 79, 'rhs' => 3 ), - array( 'lhs' => 82, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 0 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 5 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 4 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 5 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 2 ), - array( 'lhs' => 104, 'rhs' => 1 ), - array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 2 ), + array( 'lhs' => 93, 'rhs' => 3 ), + array( 'lhs' => 93, 'rhs' => 1 ), + 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' => 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' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 5 ), - array( 'lhs' => 105, 'rhs' => 6 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 99, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 0 ), + array( 'lhs' => 102, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 5 ), + 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' => 3 ), + array( 'lhs' => 101, 'rhs' => 2 ), array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 0 ), - array( 'lhs' => 83, 'rhs' => 3 ), + array( 'lhs' => 99, 'rhs' => 2 ), + array( 'lhs' => 104, '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' => 0 ), + array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + 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' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 2 ), - array( 'lhs' => 85, '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' => 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' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, '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' => 1 ), - array( 'lhs' => 109, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 1 ), + array( 'lhs' => 109, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 0 ), array( 'lhs' => 110, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 0 ), + 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' => 97, 'rhs' => 2 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 88, 'rhs' => 1 ), - array( 'lhs' => 88, 'rhs' => 0 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 0 ), ); /** @@ -1888,30 +1876,30 @@ static public $yy_action = array( */ static public $yyReduceMap = array( 0 => 0, + 39 => 0, 40 => 0, 41 => 0, - 42 => 0, - 62 => 0, - 71 => 0, - 74 => 0, + 61 => 0, + 70 => 0, + 73 => 0, + 75 => 0, 76 => 0, 77 => 0, - 78 => 0, - 80 => 0, - 93 => 0, - 166 => 0, + 79 => 0, + 92 => 0, + 165 => 0, 1 => 1, - 59 => 1, - 65 => 1, + 58 => 1, + 64 => 1, + 67 => 1, 68 => 1, - 69 => 1, - 110 => 1, - 133 => 1, - 173 => 1, + 109 => 1, + 132 => 1, + 172 => 1, + 178 => 1, 179 => 1, - 180 => 1, 2 => 2, - 129 => 2, + 128 => 2, 3 => 3, 4 => 4, 5 => 5, @@ -1941,43 +1929,43 @@ static public $yy_action = array( 29 => 29, 30 => 30, 31 => 31, - 47 => 31, - 125 => 31, - 171 => 31, + 46 => 31, + 124 => 31, + 170 => 31, 32 => 32, 33 => 33, 34 => 34, 35 => 35, 36 => 36, 37 => 37, - 38 => 38, - 39 => 38, + 38 => 37, + 42 => 42, 43 => 43, 44 => 44, 45 => 45, - 46 => 46, + 47 => 47, 48 => 48, 49 => 49, - 50 => 50, - 51 => 50, - 52 => 50, - 54 => 50, - 53 => 53, + 50 => 49, + 51 => 49, + 53 => 49, + 52 => 52, + 54 => 54, 55 => 55, 56 => 56, 57 => 57, - 58 => 58, + 59 => 59, 60 => 60, - 61 => 61, + 62 => 62, + 71 => 62, + 72 => 62, 63 => 63, - 72 => 63, - 73 => 63, - 64 => 64, - 66 => 66, - 67 => 66, - 70 => 70, - 75 => 75, - 79 => 79, + 65 => 65, + 66 => 65, + 69 => 69, + 74 => 74, + 78 => 78, + 80 => 80, 81 => 81, 82 => 82, 83 => 83, @@ -1989,30 +1977,30 @@ static public $yy_action = array( 89 => 89, 90 => 90, 91 => 91, - 92 => 92, + 93 => 93, 94 => 94, 95 => 95, 96 => 96, + 171 => 96, 97 => 97, - 172 => 97, + 129 => 97, 98 => 98, - 130 => 98, 99 => 99, 100 => 100, - 101 => 101, - 102 => 101, - 103 => 101, + 101 => 100, + 102 => 100, + 103 => 103, 104 => 104, + 107 => 104, 105 => 105, - 108 => 105, 106 => 106, - 107 => 107, - 109 => 109, - 181 => 109, + 108 => 108, + 180 => 108, + 110 => 110, 111 => 111, 112 => 112, + 134 => 112, 113 => 113, - 135 => 113, 114 => 114, 115 => 115, 116 => 116, @@ -2023,29 +2011,29 @@ static public $yy_action = array( 121 => 121, 122 => 122, 123 => 123, - 124 => 124, + 125 => 125, 126 => 126, 127 => 127, - 128 => 128, + 130 => 130, 131 => 131, - 132 => 132, - 134 => 134, + 133 => 133, + 135 => 135, 136 => 136, + 139 => 136, + 150 => 136, 137 => 137, - 140 => 137, - 151 => 137, 138 => 138, - 139 => 139, + 140 => 140, 141 => 141, 142 => 142, + 147 => 142, 143 => 143, - 148 => 143, + 146 => 143, 144 => 144, - 147 => 144, + 149 => 144, 145 => 145, - 150 => 145, - 146 => 146, - 149 => 146, + 148 => 145, + 151 => 151, 152 => 152, 153 => 153, 154 => 154, @@ -2059,16 +2047,15 @@ static public $yy_action = array( 162 => 162, 163 => 163, 164 => 164, - 165 => 165, + 166 => 166, 167 => 167, 168 => 168, 169 => 169, - 170 => 170, + 173 => 173, + 175 => 173, 174 => 174, - 176 => 174, - 175 => 175, + 176 => 176, 177 => 177, - 178 => 178, ); /* Beginning here are the reduction cases. A typical example ** follows: @@ -2078,23 +2065,23 @@ static public $yy_action = array( */ #line 78 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2086 "smarty_internal_templateparser.php" +#line 2073 "smarty_internal_templateparser.php" #line 84 "smarty_internal_templateparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2089 "smarty_internal_templateparser.php" +#line 2076 "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 2092 "smarty_internal_templateparser.php" +#line 2079 "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 2099 "smarty_internal_templateparser.php" +#line 2086 "smarty_internal_templateparser.php" #line 99 "smarty_internal_templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 2102 "smarty_internal_templateparser.php" +#line 2089 "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); @@ -2106,7 +2093,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2114 "smarty_internal_templateparser.php" +#line 2101 "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) { @@ -2117,40 +2104,40 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2125 "smarty_internal_templateparser.php" +#line 2112 "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 2128 "smarty_internal_templateparser.php" +#line 2115 "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 2131 "smarty_internal_templateparser.php" +#line 2118 "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 2134 "smarty_internal_templateparser.php" +#line 2121 "smarty_internal_templateparser.php" #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 2137 "smarty_internal_templateparser.php" +#line 2124 "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 2140 "smarty_internal_templateparser.php" +#line 2127 "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 2143 "smarty_internal_templateparser.php" +#line 2130 "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 2146 "smarty_internal_templateparser.php" +#line 2133 "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 2149 "smarty_internal_templateparser.php" +#line 2136 "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 2152 "smarty_internal_templateparser.php" +#line 2139 "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 2155 "smarty_internal_templateparser.php" +#line 2142 "smarty_internal_templateparser.php" #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 2158 "smarty_internal_templateparser.php" +#line 2145 "smarty_internal_templateparser.php" #line 162 "smarty_internal_templateparser.y" function yy_r25(){ $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')) { @@ -2165,7 +2152,7 @@ static public $yy_action = array( } } } -#line 2173 "smarty_internal_templateparser.php" +#line 2160 "smarty_internal_templateparser.php" #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')) { @@ -2180,50 +2167,47 @@ static public $yy_action = array( } } } -#line 2188 "smarty_internal_templateparser.php" +#line 2175 "smarty_internal_templateparser.php" #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 2191 "smarty_internal_templateparser.php" +#line 2178 "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 2195 "smarty_internal_templateparser.php" +#line 2182 "smarty_internal_templateparser.php" #line 195 "smarty_internal_templateparser.y" function yy_r30(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2198 "smarty_internal_templateparser.php" +#line 2185 "smarty_internal_templateparser.php" #line 196 "smarty_internal_templateparser.y" function yy_r31(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2201 "smarty_internal_templateparser.php" +#line 2188 "smarty_internal_templateparser.php" #line 197 "smarty_internal_templateparser.y" - function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array('start'=>$this->yystack[$this->yyidx + -3]->minor,'to'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2204 "smarty_internal_templateparser.php" -#line 198 "smarty_internal_templateparser.y" - function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -7]->minor,array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2207 "smarty_internal_templateparser.php" + function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2191 "smarty_internal_templateparser.php" #line 200 "smarty_internal_templateparser.y" - function yy_r34(){ + function yy_r33(){ $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 2211 "smarty_internal_templateparser.php" +#line 2195 "smarty_internal_templateparser.php" #line 202 "smarty_internal_templateparser.y" - function yy_r35(){ + function yy_r34(){ $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 2215 "smarty_internal_templateparser.php" +#line 2199 "smarty_internal_templateparser.php" #line 204 "smarty_internal_templateparser.y" - function yy_r36(){ + function yy_r35(){ $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 2219 "smarty_internal_templateparser.php" +#line 2203 "smarty_internal_templateparser.php" #line 206 "smarty_internal_templateparser.y" - function yy_r37(){ + function yy_r36(){ $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 2223 "smarty_internal_templateparser.php" +#line 2207 "smarty_internal_templateparser.php" #line 210 "smarty_internal_templateparser.y" - function yy_r38(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } -#line 2226 "smarty_internal_templateparser.php" + function yy_r37(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } +#line 2210 "smarty_internal_templateparser.php" #line 215 "smarty_internal_templateparser.y" - function yy_r43(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 2229 "smarty_internal_templateparser.php" + function yy_r42(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } +#line 2213 "smarty_internal_templateparser.php" #line 216 "smarty_internal_templateparser.y" - function yy_r44(){ $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.'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 { @@ -2236,42 +2220,42 @@ static public $yy_action = array( } } } -#line 2244 "smarty_internal_templateparser.php" +#line 2228 "smarty_internal_templateparser.php" #line 230 "smarty_internal_templateparser.y" - function yy_r45(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2247 "smarty_internal_templateparser.php" + function yy_r44(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2231 "smarty_internal_templateparser.php" #line 237 "smarty_internal_templateparser.y" - function yy_r46(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2250 "smarty_internal_templateparser.php" + function yy_r45(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } +#line 2234 "smarty_internal_templateparser.php" #line 241 "smarty_internal_templateparser.y" - function yy_r48(){ $this->_retvalue = array(); } -#line 2253 "smarty_internal_templateparser.php" + function yy_r47(){ $this->_retvalue = array(); } +#line 2237 "smarty_internal_templateparser.php" #line 244 "smarty_internal_templateparser.y" - function yy_r49(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } -#line 2256 "smarty_internal_templateparser.php" + function yy_r48(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } +#line 2240 "smarty_internal_templateparser.php" #line 245 "smarty_internal_templateparser.y" - function yy_r50(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2259 "smarty_internal_templateparser.php" + function yy_r49(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2243 "smarty_internal_templateparser.php" #line 248 "smarty_internal_templateparser.y" - function yy_r53(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2262 "smarty_internal_templateparser.php" + function yy_r52(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } +#line 2246 "smarty_internal_templateparser.php" #line 255 "smarty_internal_templateparser.y" - function yy_r55(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2265 "smarty_internal_templateparser.php" + function yy_r54(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } +#line 2249 "smarty_internal_templateparser.php" #line 256 "smarty_internal_templateparser.y" - function yy_r56(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2268 "smarty_internal_templateparser.php" + function yy_r55(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } +#line 2252 "smarty_internal_templateparser.php" #line 258 "smarty_internal_templateparser.y" - function yy_r57(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2271 "smarty_internal_templateparser.php" + function yy_r56(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2255 "smarty_internal_templateparser.php" #line 264 "smarty_internal_templateparser.y" - function yy_r58(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2274 "smarty_internal_templateparser.php" + function yy_r57(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2258 "smarty_internal_templateparser.php" #line 267 "smarty_internal_templateparser.y" - function yy_r60(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2277 "smarty_internal_templateparser.php" + function yy_r59(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } +#line 2261 "smarty_internal_templateparser.php" #line 268 "smarty_internal_templateparser.y" - function yy_r61(){ + function yy_r60(){ 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 { @@ -2284,270 +2268,270 @@ static public $yy_action = array( } } } -#line 2292 "smarty_internal_templateparser.php" +#line 2276 "smarty_internal_templateparser.php" #line 285 "smarty_internal_templateparser.y" - function yy_r63(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2295 "smarty_internal_templateparser.php" + function yy_r62(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2279 "smarty_internal_templateparser.php" #line 287 "smarty_internal_templateparser.y" - function yy_r64(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } -#line 2298 "smarty_internal_templateparser.php" + function yy_r63(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } +#line 2282 "smarty_internal_templateparser.php" #line 294 "smarty_internal_templateparser.y" - function yy_r66(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2301 "smarty_internal_templateparser.php" + function yy_r65(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } +#line 2285 "smarty_internal_templateparser.php" #line 308 "smarty_internal_templateparser.y" - function yy_r70(){$this->_retvalue = ' & '; } -#line 2304 "smarty_internal_templateparser.php" + function yy_r69(){$this->_retvalue = ' & '; } +#line 2288 "smarty_internal_templateparser.php" #line 316 "smarty_internal_templateparser.y" - function yy_r75(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2307 "smarty_internal_templateparser.php" + function yy_r74(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2291 "smarty_internal_templateparser.php" #line 326 "smarty_internal_templateparser.y" - function yy_r79(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2310 "smarty_internal_templateparser.php" + function yy_r78(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2294 "smarty_internal_templateparser.php" #line 330 "smarty_internal_templateparser.y" - function yy_r81(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); + 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 2319 "smarty_internal_templateparser.php" +#line 2303 "smarty_internal_templateparser.php" #line 337 "smarty_internal_templateparser.y" - function yy_r82(){ $this->_retvalue = "''"; } -#line 2322 "smarty_internal_templateparser.php" + function yy_r81(){ $this->_retvalue = "''"; } +#line 2306 "smarty_internal_templateparser.php" #line 339 "smarty_internal_templateparser.y" - function yy_r83(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2325 "smarty_internal_templateparser.php" + function yy_r82(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2309 "smarty_internal_templateparser.php" #line 340 "smarty_internal_templateparser.y" - function yy_r84(){ $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 2328 "smarty_internal_templateparser.php" + 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 2312 "smarty_internal_templateparser.php" #line 342 "smarty_internal_templateparser.y" - function yy_r85(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2331 "smarty_internal_templateparser.php" + function yy_r84(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2315 "smarty_internal_templateparser.php" #line 343 "smarty_internal_templateparser.y" - function yy_r86(){ $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 2334 "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 2318 "smarty_internal_templateparser.php" #line 345 "smarty_internal_templateparser.y" - function yy_r87(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2337 "smarty_internal_templateparser.php" + function yy_r86(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2321 "smarty_internal_templateparser.php" #line 347 "smarty_internal_templateparser.y" - function yy_r88(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2340 "smarty_internal_templateparser.php" + function yy_r87(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2324 "smarty_internal_templateparser.php" #line 349 "smarty_internal_templateparser.y" - function yy_r89(){ $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 2343 "smarty_internal_templateparser.php" + 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 2327 "smarty_internal_templateparser.php" #line 351 "smarty_internal_templateparser.y" - function yy_r90(){ $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 2346 "smarty_internal_templateparser.php" + 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 2330 "smarty_internal_templateparser.php" #line 360 "smarty_internal_templateparser.y" - function yy_r91(){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 { + 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 2350 "smarty_internal_templateparser.php" +#line 2334 "smarty_internal_templateparser.php" #line 363 "smarty_internal_templateparser.y" - function yy_r92(){ $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 2353 "smarty_internal_templateparser.php" + 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 2337 "smarty_internal_templateparser.php" #line 367 "smarty_internal_templateparser.y" - function yy_r94(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2356 "smarty_internal_templateparser.php" + function yy_r93(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } +#line 2340 "smarty_internal_templateparser.php" #line 368 "smarty_internal_templateparser.y" - function yy_r95(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2359 "smarty_internal_templateparser.php" + function yy_r94(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2343 "smarty_internal_templateparser.php" #line 371 "smarty_internal_templateparser.y" - function yy_r96(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2362 "smarty_internal_templateparser.php" + function yy_r95(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2346 "smarty_internal_templateparser.php" #line 377 "smarty_internal_templateparser.y" - function yy_r97(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2365 "smarty_internal_templateparser.php" + function yy_r96(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2349 "smarty_internal_templateparser.php" #line 379 "smarty_internal_templateparser.y" - function yy_r98(){return; } -#line 2368 "smarty_internal_templateparser.php" + function yy_r97(){return; } +#line 2352 "smarty_internal_templateparser.php" #line 383 "smarty_internal_templateparser.y" - function yy_r99(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } -#line 2371 "smarty_internal_templateparser.php" + function yy_r98(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } +#line 2355 "smarty_internal_templateparser.php" #line 384 "smarty_internal_templateparser.y" - function yy_r100(){ $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 2374 "smarty_internal_templateparser.php" + function yy_r99(){ $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 2358 "smarty_internal_templateparser.php" #line 387 "smarty_internal_templateparser.y" - function yy_r101(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2377 "smarty_internal_templateparser.php" + function yy_r100(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2361 "smarty_internal_templateparser.php" #line 391 "smarty_internal_templateparser.y" - function yy_r104(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2380 "smarty_internal_templateparser.php" + function yy_r103(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2364 "smarty_internal_templateparser.php" #line 392 "smarty_internal_templateparser.y" - function yy_r105(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2383 "smarty_internal_templateparser.php" + function yy_r104(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2367 "smarty_internal_templateparser.php" #line 394 "smarty_internal_templateparser.y" - function yy_r106(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2386 "smarty_internal_templateparser.php" + function yy_r105(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2370 "smarty_internal_templateparser.php" #line 395 "smarty_internal_templateparser.y" - function yy_r107(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2389 "smarty_internal_templateparser.php" + 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 2373 "smarty_internal_templateparser.php" #line 399 "smarty_internal_templateparser.y" - function yy_r109(){$this->_retvalue = ''; } -#line 2392 "smarty_internal_templateparser.php" + function yy_r108(){$this->_retvalue = ''; } +#line 2376 "smarty_internal_templateparser.php" #line 407 "smarty_internal_templateparser.y" - function yy_r111(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2395 "smarty_internal_templateparser.php" + function yy_r110(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2379 "smarty_internal_templateparser.php" #line 409 "smarty_internal_templateparser.y" - function yy_r112(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2398 "smarty_internal_templateparser.php" + function yy_r111(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2382 "smarty_internal_templateparser.php" #line 412 "smarty_internal_templateparser.y" - function yy_r113(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2401 "smarty_internal_templateparser.php" + function yy_r112(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2385 "smarty_internal_templateparser.php" #line 417 "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 { + function yy_r113(){ 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 2405 "smarty_internal_templateparser.php" +#line 2389 "smarty_internal_templateparser.php" #line 420 "smarty_internal_templateparser.y" - function yy_r115(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2408 "smarty_internal_templateparser.php" + function yy_r114(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2392 "smarty_internal_templateparser.php" #line 422 "smarty_internal_templateparser.y" - function yy_r116(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2411 "smarty_internal_templateparser.php" + function yy_r115(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2395 "smarty_internal_templateparser.php" #line 424 "smarty_internal_templateparser.y" - function yy_r117(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2414 "smarty_internal_templateparser.php" + function yy_r116(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2398 "smarty_internal_templateparser.php" #line 425 "smarty_internal_templateparser.y" - function yy_r118(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2417 "smarty_internal_templateparser.php" + function yy_r117(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2401 "smarty_internal_templateparser.php" #line 426 "smarty_internal_templateparser.y" - function yy_r119(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2420 "smarty_internal_templateparser.php" + function yy_r118(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2404 "smarty_internal_templateparser.php" #line 427 "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 2423 "smarty_internal_templateparser.php" + function yy_r119(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2407 "smarty_internal_templateparser.php" #line 429 "smarty_internal_templateparser.y" - function yy_r121(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2426 "smarty_internal_templateparser.php" + function yy_r120(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2410 "smarty_internal_templateparser.php" #line 435 "smarty_internal_templateparser.y" - function yy_r122(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r121(){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 2435 "smarty_internal_templateparser.php" +#line 2419 "smarty_internal_templateparser.php" #line 446 "smarty_internal_templateparser.y" - function yy_r123(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2438 "smarty_internal_templateparser.php" + function yy_r122(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2422 "smarty_internal_templateparser.php" #line 450 "smarty_internal_templateparser.y" - function yy_r124(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2441 "smarty_internal_templateparser.php" + function yy_r123(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } +#line 2425 "smarty_internal_templateparser.php" #line 454 "smarty_internal_templateparser.y" - function yy_r126(){ return; } -#line 2444 "smarty_internal_templateparser.php" + function yy_r125(){ return; } +#line 2428 "smarty_internal_templateparser.php" #line 459 "smarty_internal_templateparser.y" - function yy_r127(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } -#line 2447 "smarty_internal_templateparser.php" + function yy_r126(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } +#line 2431 "smarty_internal_templateparser.php" #line 460 "smarty_internal_templateparser.y" - function yy_r128(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } -#line 2450 "smarty_internal_templateparser.php" + function yy_r127(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } +#line 2434 "smarty_internal_templateparser.php" #line 476 "smarty_internal_templateparser.y" - function yy_r131(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2453 "smarty_internal_templateparser.php" + function yy_r130(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2437 "smarty_internal_templateparser.php" #line 477 "smarty_internal_templateparser.y" - function yy_r132(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2456 "smarty_internal_templateparser.php" + function yy_r131(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2440 "smarty_internal_templateparser.php" #line 484 "smarty_internal_templateparser.y" - function yy_r134(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2459 "smarty_internal_templateparser.php" + function yy_r133(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2443 "smarty_internal_templateparser.php" #line 489 "smarty_internal_templateparser.y" - function yy_r136(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2462 "smarty_internal_templateparser.php" + function yy_r135(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } +#line 2446 "smarty_internal_templateparser.php" #line 491 "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 2465 "smarty_internal_templateparser.php" + function yy_r136(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2449 "smarty_internal_templateparser.php" #line 492 "smarty_internal_templateparser.y" - function yy_r138(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2468 "smarty_internal_templateparser.php" + function yy_r137(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2452 "smarty_internal_templateparser.php" #line 493 "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 2471 "smarty_internal_templateparser.php" + function yy_r138(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2455 "smarty_internal_templateparser.php" #line 495 "smarty_internal_templateparser.y" - function yy_r141(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2474 "smarty_internal_templateparser.php" + function yy_r140(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2458 "smarty_internal_templateparser.php" #line 496 "smarty_internal_templateparser.y" - function yy_r142(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2477 "smarty_internal_templateparser.php" + function yy_r141(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2461 "smarty_internal_templateparser.php" #line 497 "smarty_internal_templateparser.y" - function yy_r143(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2480 "smarty_internal_templateparser.php" + function yy_r142(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2464 "smarty_internal_templateparser.php" #line 498 "smarty_internal_templateparser.y" - function yy_r144(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2483 "smarty_internal_templateparser.php" + function yy_r143(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2467 "smarty_internal_templateparser.php" #line 499 "smarty_internal_templateparser.y" - function yy_r145(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2486 "smarty_internal_templateparser.php" + function yy_r144(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2470 "smarty_internal_templateparser.php" #line 500 "smarty_internal_templateparser.y" - function yy_r146(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2489 "smarty_internal_templateparser.php" + function yy_r145(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2473 "smarty_internal_templateparser.php" #line 506 "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 2492 "smarty_internal_templateparser.php" + function yy_r151(){$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 2476 "smarty_internal_templateparser.php" #line 508 "smarty_internal_templateparser.y" - function yy_r153(){$this->_retvalue = '=='; } -#line 2495 "smarty_internal_templateparser.php" + function yy_r152(){$this->_retvalue = '=='; } +#line 2479 "smarty_internal_templateparser.php" #line 509 "smarty_internal_templateparser.y" - function yy_r154(){$this->_retvalue = '!='; } -#line 2498 "smarty_internal_templateparser.php" + function yy_r153(){$this->_retvalue = '!='; } +#line 2482 "smarty_internal_templateparser.php" #line 510 "smarty_internal_templateparser.y" - function yy_r155(){$this->_retvalue = '>'; } -#line 2501 "smarty_internal_templateparser.php" + function yy_r154(){$this->_retvalue = '>'; } +#line 2485 "smarty_internal_templateparser.php" #line 511 "smarty_internal_templateparser.y" - function yy_r156(){$this->_retvalue = '<'; } -#line 2504 "smarty_internal_templateparser.php" + function yy_r155(){$this->_retvalue = '<'; } +#line 2488 "smarty_internal_templateparser.php" #line 512 "smarty_internal_templateparser.y" - function yy_r157(){$this->_retvalue = '>='; } -#line 2507 "smarty_internal_templateparser.php" + function yy_r156(){$this->_retvalue = '>='; } +#line 2491 "smarty_internal_templateparser.php" #line 513 "smarty_internal_templateparser.y" - function yy_r158(){$this->_retvalue = '<='; } -#line 2510 "smarty_internal_templateparser.php" + function yy_r157(){$this->_retvalue = '<='; } +#line 2494 "smarty_internal_templateparser.php" #line 514 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = '==='; } -#line 2513 "smarty_internal_templateparser.php" + function yy_r158(){$this->_retvalue = '==='; } +#line 2497 "smarty_internal_templateparser.php" #line 515 "smarty_internal_templateparser.y" - function yy_r160(){$this->_retvalue = '!=='; } -#line 2516 "smarty_internal_templateparser.php" + function yy_r159(){$this->_retvalue = '!=='; } +#line 2500 "smarty_internal_templateparser.php" #line 516 "smarty_internal_templateparser.y" - function yy_r161(){$this->_retvalue = '%'; } -#line 2519 "smarty_internal_templateparser.php" + function yy_r160(){$this->_retvalue = '%'; } +#line 2503 "smarty_internal_templateparser.php" #line 518 "smarty_internal_templateparser.y" - function yy_r162(){$this->_retvalue = '&&'; } -#line 2522 "smarty_internal_templateparser.php" + function yy_r161(){$this->_retvalue = '&&'; } +#line 2506 "smarty_internal_templateparser.php" #line 519 "smarty_internal_templateparser.y" - function yy_r163(){$this->_retvalue = '||'; } -#line 2525 "smarty_internal_templateparser.php" + function yy_r162(){$this->_retvalue = '||'; } +#line 2509 "smarty_internal_templateparser.php" #line 520 "smarty_internal_templateparser.y" - function yy_r164(){$this->_retvalue = ' XOR '; } -#line 2528 "smarty_internal_templateparser.php" + function yy_r163(){$this->_retvalue = ' XOR '; } +#line 2512 "smarty_internal_templateparser.php" #line 525 "smarty_internal_templateparser.y" - function yy_r165(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2531 "smarty_internal_templateparser.php" + function yy_r164(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2515 "smarty_internal_templateparser.php" #line 527 "smarty_internal_templateparser.y" - function yy_r167(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2534 "smarty_internal_templateparser.php" + function yy_r166(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2518 "smarty_internal_templateparser.php" #line 528 "smarty_internal_templateparser.y" - function yy_r168(){ return; } -#line 2537 "smarty_internal_templateparser.php" + function yy_r167(){ return; } +#line 2521 "smarty_internal_templateparser.php" #line 529 "smarty_internal_templateparser.y" - function yy_r169(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2540 "smarty_internal_templateparser.php" + function yy_r168(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2524 "smarty_internal_templateparser.php" #line 530 "smarty_internal_templateparser.y" - function yy_r170(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2543 "smarty_internal_templateparser.php" + function yy_r169(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2527 "smarty_internal_templateparser.php" #line 539 "smarty_internal_templateparser.y" - function yy_r174(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } -#line 2546 "smarty_internal_templateparser.php" + function yy_r173(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } +#line 2530 "smarty_internal_templateparser.php" #line 540 "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 2549 "smarty_internal_templateparser.php" + function yy_r174(){$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 2533 "smarty_internal_templateparser.php" #line 542 "smarty_internal_templateparser.y" - function yy_r177(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } -#line 2552 "smarty_internal_templateparser.php" + function yy_r176(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } +#line 2536 "smarty_internal_templateparser.php" #line 543 "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 2555 "smarty_internal_templateparser.php" + function yy_r177(){ $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 2539 "smarty_internal_templateparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -2664,7 +2648,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2673 "smarty_internal_templateparser.php" +#line 2657 "smarty_internal_templateparser.php" } /** @@ -2688,7 +2672,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2698 "smarty_internal_templateparser.php" +#line 2682 "smarty_internal_templateparser.php" } /** diff --git a/libs/sysplugins/smarty_security.php b/libs/sysplugins/smarty_security.php index 5464c0db..2c99fbc3 100644 --- a/libs/sysplugins/smarty_security.php +++ b/libs/sysplugins/smarty_security.php @@ -76,6 +76,10 @@ class Smarty_Security { */ public $allow_constants = true; /** + + flag if super globals can be accessed from template + */ + public $allow_super_globals = true; + /** + flag if {php} tag can be executed */ public $allow_php_tag = false;