From a8a17d09e934b20f8248fade0f000baebaf528a4 Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Tue, 1 Dec 2009 17:08:54 +0000 Subject: [PATCH] - fixed parsing of names of special formated tags like if,elseif,while,for,foreach - removed direct access to constants in templates because of some syntax problems --- change_log.txt | 4 + .../smarty_internal_templatelexer.php | 157 +- .../smarty_internal_templateparser.php | 2254 ++++++++--------- 3 files changed, 1196 insertions(+), 1219 deletions(-) diff --git a/change_log.txt b/change_log.txt index 7069def6..98abb85a 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,7 @@ +12/01/2009 +- fixed parsing of names of special formated tags like if,elseif,while,for,foreach +- removed direct access to constants in templates because of some syntax problems + 11/30/2009 - map 'true' to SMARTY_CACHING_LIFETIME_CURRENT for the $smarty->caching parameter - allow {function} tags within {block} tags diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index 5b6ee6ef..a36f5f12 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -443,16 +443,15 @@ class Smarty_Internal_Templatelexer 83 => 1, 85 => 0, 86 => 0, - 87 => 1, + 87 => 0, + 88 => 0, 89 => 0, 90 => 0, - 91 => 0, - 92 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^((\\\\\"|\\\\'))|^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; + $yy_global_pattern = "/^((\\\\\"|\\\\'))|^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\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)) { @@ -492,76 +491,75 @@ class Smarty_Internal_Templatelexer // skip this token continue; } else { $yy_yymore_patterns = array( - 1 => array(0, "^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 3 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 5 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 6 => array(1, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 7 => array(1, "^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 8 => array(1, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 9 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 10 => array(1, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 11 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 12 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 13 => array(1, "^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 14 => array(2, "^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 16 => array(2, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 17 => array(2, "^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 18 => array(2, "^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 19 => array(2, "^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 20 => array(2, "^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 21 => array(3, "^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 23 => array(4, "^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 25 => array(5, "^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 27 => array(6, "^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 29 => array(7, "^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 31 => array(8, "^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 33 => array(9, "^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 35 => array(10, "^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 37 => array(11, "^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 39 => array(12, "^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 41 => array(13, "^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 43 => array(13, "^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 44 => array(13, "^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 45 => array(13, "^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 46 => array(13, "^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 47 => array(13, "^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 48 => array(13, "^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 49 => array(13, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 50 => array(13, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 51 => array(13, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 52 => array(13, "^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 53 => array(16, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 57 => array(16, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 58 => array(16, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 59 => array(16, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 60 => array(16, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 61 => array(16, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 62 => array(16, "^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 63 => array(16, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 64 => array(17, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 66 => array(18, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 68 => array(19, "^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 70 => array(19, "^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 71 => array(19, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 72 => array(19, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 73 => array(19, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 74 => array(19, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 75 => array(19, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 76 => array(19, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 77 => array(19, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 78 => array(19, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 79 => array(19, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 80 => array(19, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 81 => array(19, "^(\\s*\\?\\s*)|^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 82 => array(19, "^((if|elseif|while)(?![a-z]))|^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 83 => array(20, "^(foreach(?![a-z.]))|^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 85 => array(20, "^(for(?![a-z]))|^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 86 => array(20, "^(([_]+[A-Z0-9][0-9A-Z_]*|[A-Z][0-9A-Z_]*)(?![0-9A-Z_]*[a-z]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 87 => array(21, "^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 89 => array(21, "^(\\d+)|^(\\s+)|^(.)"), - 90 => array(21, "^(\\s+)|^(.)"), - 91 => array(21, "^(.)"), - 92 => array(21, ""), + 1 => array(0, "^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\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+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+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+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+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+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+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+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+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+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+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+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(2, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 17 => array(2, "^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 18 => array(2, "^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 19 => array(2, "^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 20 => array(2, "^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 21 => array(3, "^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 23 => array(4, "^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 25 => array(5, "^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 27 => array(6, "^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 29 => array(7, "^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 31 => array(8, "^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 33 => array(9, "^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 35 => array(10, "^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 37 => array(11, "^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 39 => array(12, "^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 41 => array(13, "^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 43 => array(13, "^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 44 => array(13, "^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 45 => array(13, "^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 46 => array(13, "^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 47 => array(13, "^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 48 => array(13, "^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 49 => array(13, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 50 => array(13, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 51 => array(13, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 52 => array(13, "^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 53 => array(16, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 57 => array(16, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 58 => array(16, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 59 => array(16, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 60 => array(16, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 61 => array(16, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 62 => array(16, "^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 63 => array(16, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\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*)|^((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*)|^((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*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 70 => array(19, "^(\\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+)|^(.)"), + 71 => array(19, "^(::)|^(\\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(19, "^(\\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(19, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 74 => array(19, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 75 => array(19, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 76 => array(19, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 77 => array(19, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 78 => array(19, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 79 => array(19, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 80 => array(19, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 81 => array(19, "^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 82 => array(19, "^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 83 => array(20, "^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 85 => array(20, "^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 86 => array(20, "^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 87 => array(20, "^(\\d+)|^(\\s+)|^(.)"), + 88 => array(20, "^(\\s+)|^(.)"), + 89 => array(20, "^(.)"), + 90 => array(20, ""), ); // yymore is needed @@ -971,24 +969,19 @@ class Smarty_Internal_Templatelexer function yy_r2_87($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_CONSTANT; - } - function yy_r2_89($yy_subpatterns) - { - $this->token = Smarty_Internal_Templateparser::TP_ID; } - function yy_r2_90($yy_subpatterns) + function yy_r2_88($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_INTEGER; } - function yy_r2_91($yy_subpatterns) + function yy_r2_89($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SPACE; } - function yy_r2_92($yy_subpatterns) + function yy_r2_90($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 348612bf..dcdeb3fb 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -184,47 +184,46 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph const TP_ANDSYM = 30; const TP_TYPECAST = 31; const TP_DOT = 32; - const TP_CONSTANT = 33; - const TP_BOOLEAN = 34; - const TP_NULL = 35; - const TP_SINGLEQUOTESTRING = 36; - const TP_QUOTE = 37; - const TP_DOUBLECOLON = 38; - const TP_AT = 39; - const TP_HATCH = 40; - const TP_OPENB = 41; - const TP_CLOSEB = 42; - const TP_VERT = 43; - const TP_NOT = 44; - const TP_ISIN = 45; - const TP_ISDIVBY = 46; - const TP_ISNOTDIVBY = 47; - const TP_ISEVEN = 48; - const TP_ISNOTEVEN = 49; - const TP_ISEVENBY = 50; - const TP_ISNOTEVENBY = 51; - const TP_ISODD = 52; - const TP_ISNOTODD = 53; - const TP_ISODDBY = 54; - const TP_ISNOTODDBY = 55; - const TP_INSTANCEOF = 56; - const TP_EQUALS = 57; - const TP_NOTEQUALS = 58; - const TP_GREATERTHAN = 59; - const TP_LESSTHAN = 60; - const TP_GREATEREQUAL = 61; - const TP_LESSEQUAL = 62; - const TP_IDENTITY = 63; - const TP_NONEIDENTITY = 64; - const TP_MOD = 65; - const TP_LAND = 66; - const TP_LOR = 67; - const TP_LXOR = 68; - const TP_BACKTICK = 69; - const TP_DOLLARID = 70; - const YY_NO_ACTION = 543; - const YY_ACCEPT_ACTION = 542; - const YY_ERROR_ACTION = 541; + const TP_BOOLEAN = 33; + const TP_NULL = 34; + const TP_SINGLEQUOTESTRING = 35; + const TP_QUOTE = 36; + const TP_DOUBLECOLON = 37; + const TP_AT = 38; + const TP_HATCH = 39; + const TP_OPENB = 40; + const TP_CLOSEB = 41; + const TP_VERT = 42; + const TP_NOT = 43; + const TP_ISIN = 44; + const TP_ISDIVBY = 45; + const TP_ISNOTDIVBY = 46; + const TP_ISEVEN = 47; + const TP_ISNOTEVEN = 48; + const TP_ISEVENBY = 49; + const TP_ISNOTEVENBY = 50; + const TP_ISODD = 51; + const TP_ISNOTODD = 52; + const TP_ISODDBY = 53; + const TP_ISNOTODDBY = 54; + const TP_INSTANCEOF = 55; + const TP_EQUALS = 56; + const TP_NOTEQUALS = 57; + const TP_GREATERTHAN = 58; + const TP_LESSTHAN = 59; + const TP_GREATEREQUAL = 60; + const TP_LESSEQUAL = 61; + const TP_IDENTITY = 62; + const TP_NONEIDENTITY = 63; + const TP_MOD = 64; + const TP_LAND = 65; + const TP_LOR = 66; + const TP_LXOR = 67; + const TP_BACKTICK = 68; + const TP_DOLLARID = 69; + const YY_NO_ACTION = 536; + const YY_ACCEPT_ACTION = 535; + const YY_ERROR_ACTION = 534; /* 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 @@ -276,497 +275,491 @@ 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 = 1367; + const YY_SZ_ACTTAB = 1335; static public $yy_action = array( - /* 0 */ 15, 156, 72, 49, 266, 88, 286, 201, 18, 190, - /* 10 */ 28, 317, 284, 320, 109, 192, 275, 278, 44, 7, - /* 20 */ 115, 8, 28, 209, 62, 216, 356, 348, 341, 352, - /* 30 */ 48, 276, 231, 52, 13, 15, 299, 73, 182, 175, - /* 40 */ 302, 83, 242, 74, 61, 89, 84, 178, 299, 109, - /* 50 */ 192, 214, 213, 44, 9, 243, 71, 198, 114, 62, - /* 60 */ 339, 356, 348, 341, 352, 48, 245, 28, 52, 13, - /* 70 */ 320, 15, 11, 77, 182, 268, 302, 83, 148, 75, - /* 80 */ 51, 89, 84, 47, 153, 109, 192, 52, 132, 44, - /* 90 */ 9, 243, 38, 299, 114, 62, 339, 356, 348, 341, - /* 100 */ 352, 48, 245, 28, 52, 13, 177, 15, 11, 71, - /* 110 */ 170, 46, 270, 203, 285, 315, 208, 316, 15, 36, - /* 120 */ 57, 109, 192, 27, 28, 44, 30, 320, 26, 299, - /* 130 */ 47, 62, 109, 356, 348, 341, 352, 48, 178, 38, - /* 140 */ 52, 13, 251, 15, 186, 73, 182, 220, 302, 219, - /* 150 */ 299, 221, 159, 228, 90, 327, 211, 109, 192, 207, - /* 160 */ 121, 44, 30, 243, 20, 169, 114, 62, 339, 356, - /* 170 */ 348, 341, 352, 48, 245, 291, 52, 13, 15, 18, - /* 180 */ 73, 182, 184, 306, 28, 175, 194, 320, 25, 90, - /* 190 */ 178, 115, 109, 192, 39, 265, 44, 7, 542, 66, - /* 200 */ 235, 272, 62, 196, 356, 348, 341, 352, 48, 245, - /* 210 */ 299, 52, 13, 15, 18, 73, 171, 319, 302, 303, - /* 220 */ 224, 221, 58, 91, 90, 166, 115, 109, 192, 239, - /* 230 */ 257, 44, 7, 243, 164, 152, 114, 62, 339, 356, - /* 240 */ 348, 341, 352, 48, 245, 405, 52, 13, 15, 250, - /* 250 */ 73, 172, 175, 302, 219, 242, 221, 159, 218, 90, - /* 260 */ 178, 163, 109, 192, 90, 151, 44, 30, 243, 178, - /* 270 */ 286, 114, 62, 339, 356, 348, 341, 352, 48, 245, - /* 280 */ 244, 52, 13, 15, 245, 71, 176, 59, 305, 24, - /* 290 */ 142, 71, 135, 28, 334, 168, 320, 109, 192, 138, - /* 300 */ 168, 44, 30, 248, 168, 291, 199, 62, 342, 356, - /* 310 */ 348, 341, 352, 48, 291, 175, 52, 13, 15, 299, - /* 320 */ 71, 180, 52, 302, 205, 35, 221, 54, 85, 90, - /* 330 */ 16, 28, 109, 192, 320, 26, 44, 30, 243, 260, - /* 340 */ 242, 114, 62, 339, 356, 348, 341, 352, 48, 245, - /* 350 */ 178, 52, 13, 15, 18, 71, 173, 299, 302, 179, - /* 360 */ 146, 221, 160, 271, 90, 20, 115, 109, 183, 34, - /* 370 */ 123, 415, 30, 243, 45, 167, 114, 62, 339, 356, - /* 380 */ 348, 341, 352, 48, 245, 291, 52, 13, 23, 6, - /* 390 */ 5, 290, 289, 2, 3, 287, 288, 4, 10, 15, - /* 400 */ 31, 71, 180, 155, 28, 333, 33, 320, 286, 345, - /* 410 */ 346, 347, 18, 109, 192, 344, 158, 233, 30, 28, - /* 420 */ 55, 286, 320, 62, 115, 356, 348, 341, 352, 48, - /* 430 */ 299, 246, 52, 13, 6, 5, 290, 289, 2, 3, - /* 440 */ 287, 288, 4, 10, 129, 299, 212, 175, 284, 112, - /* 450 */ 328, 211, 275, 278, 345, 346, 347, 302, 343, 240, - /* 460 */ 221, 22, 90, 90, 312, 6, 5, 290, 289, 2, - /* 470 */ 3, 287, 288, 4, 10, 178, 168, 339, 302, 279, - /* 480 */ 298, 221, 245, 245, 90, 345, 346, 347, 6, 5, - /* 490 */ 290, 289, 2, 3, 287, 288, 4, 10, 339, 355, - /* 500 */ 297, 237, 272, 225, 245, 226, 175, 175, 345, 346, - /* 510 */ 347, 124, 6, 5, 290, 289, 2, 3, 287, 288, - /* 520 */ 4, 10, 15, 284, 71, 181, 291, 275, 278, 17, - /* 530 */ 46, 46, 345, 346, 347, 178, 109, 192, 116, 321, - /* 540 */ 256, 30, 15, 168, 71, 180, 62, 189, 356, 348, - /* 550 */ 341, 352, 48, 291, 19, 52, 109, 192, 50, 227, - /* 560 */ 230, 30, 241, 178, 229, 42, 62, 215, 356, 348, - /* 570 */ 341, 352, 48, 28, 318, 52, 320, 311, 310, 307, - /* 580 */ 308, 309, 295, 294, 280, 281, 302, 222, 107, 221, - /* 590 */ 65, 276, 90, 267, 174, 95, 185, 191, 283, 299, - /* 600 */ 90, 243, 178, 312, 114, 175, 339, 178, 350, 42, - /* 610 */ 255, 238, 245, 302, 323, 175, 221, 277, 92, 90, - /* 620 */ 245, 311, 310, 307, 308, 309, 295, 294, 280, 281, - /* 630 */ 136, 302, 222, 339, 221, 65, 130, 90, 248, 245, - /* 640 */ 101, 32, 71, 178, 126, 291, 243, 319, 134, 114, - /* 650 */ 178, 339, 42, 282, 254, 1, 331, 245, 321, 67, - /* 660 */ 178, 175, 277, 291, 311, 310, 307, 308, 309, 295, - /* 670 */ 294, 280, 281, 52, 258, 357, 321, 302, 222, 87, - /* 680 */ 221, 65, 175, 90, 358, 118, 100, 337, 322, 178, - /* 690 */ 165, 90, 243, 353, 175, 114, 186, 339, 302, 222, - /* 700 */ 291, 221, 65, 245, 90, 197, 105, 102, 277, 56, - /* 710 */ 338, 245, 296, 243, 79, 106, 114, 175, 339, 175, - /* 720 */ 108, 312, 302, 222, 245, 221, 65, 354, 90, 277, - /* 730 */ 312, 97, 193, 236, 175, 312, 137, 243, 234, 119, - /* 740 */ 114, 69, 339, 302, 222, 18, 221, 65, 245, 90, - /* 750 */ 249, 291, 104, 277, 291, 78, 312, 115, 243, 329, - /* 760 */ 293, 114, 178, 339, 76, 70, 292, 175, 37, 245, - /* 770 */ 336, 259, 215, 175, 277, 302, 222, 175, 221, 64, - /* 780 */ 312, 90, 232, 40, 96, 71, 330, 263, 144, 175, - /* 790 */ 243, 23, 82, 114, 175, 339, 300, 68, 273, 302, - /* 800 */ 222, 245, 221, 65, 80, 90, 277, 195, 98, 332, - /* 810 */ 335, 326, 312, 140, 243, 349, 52, 114, 117, 339, - /* 820 */ 302, 222, 175, 221, 65, 245, 90, 131, 291, 93, - /* 830 */ 277, 187, 351, 291, 325, 243, 340, 324, 114, 175, - /* 840 */ 339, 175, 291, 304, 141, 206, 245, 408, 27, 29, - /* 850 */ 175, 277, 302, 222, 408, 221, 63, 261, 90, 291, - /* 860 */ 41, 94, 274, 175, 81, 266, 43, 243, 86, 319, - /* 870 */ 114, 252, 339, 223, 264, 14, 302, 222, 245, 221, - /* 880 */ 65, 200, 90, 277, 21, 103, 321, 53, 39, 109, - /* 890 */ 12, 243, 127, 262, 114, 296, 339, 302, 222, 296, - /* 900 */ 221, 65, 245, 90, 296, 269, 99, 277, 296, 296, - /* 910 */ 296, 296, 243, 296, 296, 114, 252, 339, 296, 296, - /* 920 */ 14, 296, 296, 245, 296, 296, 296, 296, 277, 302, - /* 930 */ 303, 296, 221, 120, 109, 90, 296, 60, 247, 296, - /* 940 */ 296, 296, 296, 296, 243, 296, 296, 114, 296, 339, - /* 950 */ 253, 296, 217, 302, 303, 245, 221, 120, 296, 90, - /* 960 */ 296, 296, 296, 296, 296, 296, 296, 296, 243, 296, - /* 970 */ 296, 114, 296, 339, 302, 303, 210, 221, 120, 245, - /* 980 */ 90, 296, 60, 247, 296, 296, 296, 296, 296, 243, - /* 990 */ 296, 296, 114, 296, 339, 296, 296, 188, 296, 296, - /* 1000 */ 245, 296, 296, 296, 302, 303, 296, 221, 120, 296, - /* 1010 */ 90, 302, 303, 296, 221, 154, 296, 90, 296, 243, - /* 1020 */ 296, 296, 114, 296, 339, 296, 243, 301, 296, 114, - /* 1030 */ 245, 339, 302, 303, 296, 221, 128, 245, 90, 296, - /* 1040 */ 296, 296, 296, 296, 296, 296, 296, 243, 296, 296, - /* 1050 */ 114, 296, 339, 302, 303, 296, 221, 143, 245, 90, - /* 1060 */ 296, 296, 296, 296, 296, 296, 296, 296, 243, 296, - /* 1070 */ 296, 114, 296, 339, 296, 296, 296, 296, 296, 245, - /* 1080 */ 302, 303, 296, 221, 161, 296, 90, 302, 303, 296, - /* 1090 */ 221, 125, 296, 90, 296, 243, 296, 296, 114, 296, - /* 1100 */ 339, 296, 243, 296, 296, 114, 245, 339, 302, 303, - /* 1110 */ 296, 221, 162, 245, 90, 296, 296, 296, 296, 296, - /* 1120 */ 296, 296, 296, 243, 296, 296, 114, 296, 339, 302, - /* 1130 */ 303, 296, 221, 157, 245, 90, 296, 296, 296, 296, - /* 1140 */ 296, 296, 296, 296, 243, 296, 296, 114, 296, 339, - /* 1150 */ 296, 296, 296, 296, 296, 245, 302, 303, 296, 221, - /* 1160 */ 122, 296, 90, 302, 303, 296, 221, 149, 296, 90, - /* 1170 */ 296, 243, 296, 296, 114, 296, 339, 296, 243, 296, - /* 1180 */ 296, 114, 245, 339, 302, 303, 296, 221, 133, 245, - /* 1190 */ 90, 296, 296, 296, 296, 296, 296, 296, 296, 243, - /* 1200 */ 296, 296, 114, 296, 339, 302, 303, 296, 221, 145, - /* 1210 */ 245, 90, 296, 296, 296, 296, 296, 296, 296, 296, - /* 1220 */ 243, 296, 296, 114, 296, 339, 296, 296, 296, 296, - /* 1230 */ 296, 245, 302, 303, 296, 221, 147, 296, 90, 302, - /* 1240 */ 303, 296, 221, 139, 296, 90, 296, 243, 296, 296, - /* 1250 */ 114, 296, 339, 296, 243, 296, 296, 114, 245, 339, - /* 1260 */ 302, 303, 296, 221, 150, 245, 90, 296, 296, 296, - /* 1270 */ 296, 296, 296, 296, 296, 243, 296, 296, 114, 296, - /* 1280 */ 339, 302, 303, 296, 221, 296, 245, 90, 296, 296, - /* 1290 */ 296, 296, 296, 296, 296, 296, 243, 296, 296, 111, - /* 1300 */ 296, 339, 296, 296, 296, 296, 296, 245, 302, 303, - /* 1310 */ 296, 221, 302, 303, 90, 221, 302, 204, 90, 221, - /* 1320 */ 296, 296, 90, 243, 296, 296, 113, 243, 339, 296, - /* 1330 */ 110, 202, 339, 296, 245, 296, 339, 296, 245, 296, - /* 1340 */ 302, 314, 245, 221, 296, 296, 90, 296, 296, 296, - /* 1350 */ 296, 296, 296, 296, 296, 313, 296, 296, 296, 296, - /* 1360 */ 339, 296, 296, 296, 296, 296, 245, + /* 0 */ 15, 20, 73, 48, 50, 87, 259, 210, 257, 216, + /* 10 */ 258, 46, 141, 252, 109, 189, 290, 14, 45, 11, + /* 20 */ 299, 344, 31, 291, 58, 302, 332, 310, 336, 49, + /* 30 */ 47, 109, 54, 13, 15, 218, 75, 183, 38, 269, + /* 40 */ 220, 184, 212, 162, 31, 86, 243, 302, 109, 189, + /* 50 */ 224, 200, 45, 7, 325, 26, 47, 110, 58, 313, + /* 60 */ 332, 310, 336, 49, 38, 300, 54, 13, 277, 15, + /* 70 */ 5, 81, 170, 174, 287, 217, 191, 31, 56, 253, + /* 80 */ 302, 25, 46, 109, 189, 290, 21, 45, 27, 299, + /* 90 */ 344, 31, 343, 58, 302, 332, 310, 336, 49, 227, + /* 100 */ 169, 54, 13, 233, 15, 20, 84, 183, 217, 269, + /* 110 */ 326, 206, 212, 59, 89, 86, 141, 176, 109, 189, + /* 120 */ 238, 347, 45, 7, 325, 225, 40, 110, 58, 313, + /* 130 */ 332, 310, 336, 49, 184, 300, 54, 13, 168, 176, + /* 140 */ 5, 86, 23, 4, 2, 351, 352, 3, 8, 340, + /* 150 */ 342, 9, 10, 15, 290, 75, 183, 273, 299, 344, + /* 160 */ 282, 300, 254, 301, 298, 292, 184, 109, 189, 142, + /* 170 */ 237, 45, 27, 15, 166, 75, 183, 58, 20, 332, + /* 180 */ 310, 336, 49, 67, 330, 54, 13, 109, 189, 141, + /* 190 */ 34, 45, 11, 15, 411, 75, 171, 58, 249, 332, + /* 200 */ 310, 336, 49, 164, 146, 54, 13, 109, 189, 19, + /* 210 */ 31, 45, 27, 302, 25, 31, 322, 58, 302, 332, + /* 220 */ 310, 336, 49, 40, 308, 54, 13, 24, 186, 81, + /* 230 */ 129, 176, 4, 2, 351, 352, 3, 8, 340, 342, + /* 240 */ 9, 10, 15, 159, 81, 177, 321, 31, 318, 57, + /* 250 */ 302, 36, 301, 298, 292, 204, 109, 189, 289, 54, + /* 260 */ 45, 27, 15, 324, 81, 179, 58, 190, 332, 310, + /* 270 */ 336, 49, 113, 323, 54, 13, 109, 189, 184, 252, + /* 280 */ 45, 27, 208, 14, 294, 311, 58, 346, 332, 310, + /* 290 */ 336, 49, 176, 353, 54, 13, 304, 109, 535, 66, + /* 300 */ 267, 268, 4, 2, 351, 352, 3, 8, 340, 342, + /* 310 */ 9, 10, 251, 242, 31, 303, 116, 302, 211, 401, + /* 320 */ 176, 144, 301, 298, 292, 348, 176, 151, 86, 349, + /* 330 */ 4, 2, 351, 352, 3, 8, 340, 342, 9, 10, + /* 340 */ 15, 22, 75, 172, 56, 253, 334, 184, 300, 115, + /* 350 */ 301, 298, 292, 176, 109, 189, 349, 29, 45, 11, + /* 360 */ 184, 81, 194, 20, 58, 329, 332, 310, 336, 49, + /* 370 */ 164, 120, 54, 13, 141, 130, 4, 2, 351, 352, + /* 380 */ 3, 8, 340, 342, 9, 10, 15, 70, 81, 179, + /* 390 */ 330, 54, 295, 222, 157, 35, 301, 298, 292, 176, + /* 400 */ 109, 189, 346, 323, 317, 27, 15, 86, 81, 173, + /* 410 */ 58, 62, 332, 310, 336, 49, 135, 244, 54, 13, + /* 420 */ 109, 178, 69, 191, 176, 27, 15, 300, 81, 179, + /* 430 */ 58, 330, 332, 310, 336, 49, 335, 346, 54, 13, + /* 440 */ 109, 189, 18, 176, 323, 27, 15, 83, 81, 181, + /* 450 */ 58, 184, 332, 310, 336, 49, 126, 20, 54, 31, + /* 460 */ 109, 189, 302, 207, 203, 27, 196, 86, 141, 86, + /* 470 */ 58, 330, 332, 310, 336, 49, 269, 221, 54, 212, + /* 480 */ 65, 270, 86, 324, 323, 96, 198, 300, 176, 300, + /* 490 */ 139, 325, 245, 195, 110, 164, 313, 404, 184, 176, + /* 500 */ 42, 167, 300, 85, 404, 330, 122, 327, 184, 345, + /* 510 */ 42, 163, 250, 234, 235, 236, 231, 229, 230, 255, + /* 520 */ 240, 330, 250, 234, 235, 236, 231, 229, 230, 255, + /* 530 */ 240, 262, 30, 269, 221, 184, 212, 65, 176, 86, + /* 540 */ 161, 39, 97, 81, 296, 318, 31, 125, 325, 175, + /* 550 */ 184, 110, 164, 313, 269, 221, 315, 212, 65, 300, + /* 560 */ 86, 145, 330, 100, 327, 184, 318, 305, 306, 325, + /* 570 */ 246, 182, 110, 54, 313, 269, 221, 68, 212, 65, + /* 580 */ 300, 86, 138, 123, 103, 327, 81, 164, 165, 286, + /* 590 */ 325, 31, 346, 110, 226, 313, 176, 330, 330, 269, + /* 600 */ 221, 300, 212, 65, 354, 86, 327, 254, 102, 269, + /* 610 */ 221, 176, 212, 65, 325, 86, 54, 110, 101, 313, + /* 620 */ 16, 316, 46, 284, 325, 300, 314, 110, 176, 313, + /* 630 */ 327, 32, 108, 176, 320, 300, 184, 339, 42, 265, + /* 640 */ 327, 176, 349, 241, 266, 268, 176, 346, 337, 184, + /* 650 */ 250, 234, 235, 236, 231, 229, 230, 255, 240, 269, + /* 660 */ 221, 133, 212, 65, 304, 86, 331, 155, 104, 239, + /* 670 */ 1, 184, 318, 176, 325, 307, 176, 110, 112, 313, + /* 680 */ 269, 221, 176, 212, 65, 300, 86, 106, 111, 98, + /* 690 */ 327, 213, 256, 346, 33, 325, 187, 134, 110, 176, + /* 700 */ 313, 137, 346, 346, 269, 221, 300, 212, 64, 82, + /* 710 */ 86, 327, 330, 95, 283, 6, 330, 124, 143, 325, + /* 720 */ 227, 341, 110, 118, 313, 269, 221, 153, 212, 63, + /* 730 */ 300, 86, 330, 330, 93, 327, 37, 263, 330, 140, + /* 740 */ 325, 338, 43, 110, 280, 313, 202, 309, 188, 269, + /* 750 */ 221, 300, 212, 65, 330, 86, 327, 260, 94, 269, + /* 760 */ 221, 297, 212, 65, 325, 86, 26, 110, 99, 313, + /* 770 */ 78, 261, 28, 77, 325, 300, 293, 110, 18, 313, + /* 780 */ 327, 248, 19, 269, 326, 300, 212, 117, 232, 86, + /* 790 */ 327, 272, 209, 276, 274, 215, 275, 15, 325, 90, + /* 800 */ 278, 110, 185, 313, 269, 220, 264, 212, 162, 300, + /* 810 */ 86, 109, 350, 61, 76, 269, 319, 60, 212, 325, + /* 820 */ 321, 86, 110, 228, 313, 269, 326, 80, 212, 117, + /* 830 */ 300, 86, 44, 193, 41, 313, 304, 128, 176, 285, + /* 840 */ 325, 300, 92, 110, 53, 313, 17, 333, 205, 269, + /* 850 */ 219, 300, 212, 51, 91, 86, 12, 214, 279, 292, + /* 860 */ 292, 292, 292, 292, 325, 292, 292, 110, 292, 313, + /* 870 */ 292, 292, 292, 269, 180, 300, 212, 154, 271, 86, + /* 880 */ 269, 326, 292, 212, 117, 292, 86, 292, 325, 292, + /* 890 */ 292, 110, 292, 313, 292, 325, 292, 292, 110, 300, + /* 900 */ 313, 292, 292, 223, 269, 79, 300, 71, 55, 88, + /* 910 */ 74, 292, 292, 292, 292, 269, 328, 292, 212, 325, + /* 920 */ 292, 86, 110, 292, 313, 292, 292, 292, 269, 79, + /* 930 */ 300, 72, 52, 88, 74, 313, 292, 292, 292, 292, + /* 940 */ 292, 300, 292, 325, 292, 292, 110, 292, 313, 269, + /* 950 */ 326, 292, 212, 117, 300, 86, 269, 326, 292, 212, + /* 960 */ 158, 292, 86, 292, 325, 292, 292, 110, 292, 313, + /* 970 */ 292, 325, 201, 292, 110, 300, 313, 292, 292, 292, + /* 980 */ 269, 326, 300, 212, 148, 292, 86, 292, 292, 292, + /* 990 */ 292, 269, 247, 292, 212, 325, 292, 86, 110, 292, + /* 1000 */ 313, 292, 292, 292, 269, 326, 300, 212, 132, 292, + /* 1010 */ 86, 313, 292, 292, 292, 292, 292, 300, 292, 325, + /* 1020 */ 292, 292, 110, 292, 313, 269, 326, 292, 212, 119, + /* 1030 */ 300, 86, 269, 326, 292, 212, 136, 292, 86, 292, + /* 1040 */ 325, 292, 292, 110, 292, 313, 292, 325, 292, 292, + /* 1050 */ 110, 300, 313, 292, 292, 292, 269, 326, 300, 212, + /* 1060 */ 147, 292, 86, 292, 292, 292, 292, 292, 292, 292, + /* 1070 */ 292, 325, 292, 292, 110, 292, 313, 292, 292, 292, + /* 1080 */ 269, 326, 300, 212, 149, 292, 86, 292, 292, 292, + /* 1090 */ 292, 292, 292, 292, 292, 325, 292, 292, 110, 292, + /* 1100 */ 313, 269, 326, 292, 212, 121, 300, 86, 269, 326, + /* 1110 */ 292, 212, 152, 292, 86, 292, 325, 292, 292, 110, + /* 1120 */ 292, 313, 292, 325, 292, 292, 110, 300, 313, 292, + /* 1130 */ 292, 292, 269, 326, 300, 212, 156, 292, 86, 292, + /* 1140 */ 292, 292, 292, 292, 292, 292, 292, 325, 292, 292, + /* 1150 */ 110, 292, 313, 292, 292, 292, 269, 326, 300, 212, + /* 1160 */ 160, 292, 86, 292, 292, 292, 292, 292, 292, 292, + /* 1170 */ 292, 325, 292, 292, 110, 292, 313, 269, 326, 292, + /* 1180 */ 212, 150, 300, 86, 269, 326, 292, 212, 127, 292, + /* 1190 */ 86, 292, 325, 292, 292, 110, 292, 313, 292, 325, + /* 1200 */ 292, 292, 110, 300, 313, 292, 292, 292, 269, 326, + /* 1210 */ 300, 212, 131, 292, 86, 292, 292, 292, 292, 292, + /* 1220 */ 292, 292, 292, 325, 292, 292, 110, 292, 313, 292, + /* 1230 */ 292, 292, 269, 326, 300, 212, 292, 292, 86, 292, + /* 1240 */ 292, 292, 292, 292, 292, 292, 292, 325, 292, 292, + /* 1250 */ 107, 292, 313, 269, 326, 292, 212, 292, 300, 86, + /* 1260 */ 269, 326, 292, 212, 292, 292, 86, 292, 325, 292, + /* 1270 */ 292, 114, 292, 313, 292, 325, 292, 292, 105, 300, + /* 1280 */ 313, 292, 292, 292, 269, 192, 300, 212, 312, 292, + /* 1290 */ 86, 292, 292, 199, 292, 176, 292, 292, 292, 197, + /* 1300 */ 292, 292, 292, 292, 313, 292, 20, 292, 269, 288, + /* 1310 */ 300, 212, 292, 292, 86, 292, 292, 141, 292, 292, + /* 1320 */ 292, 292, 184, 281, 292, 292, 292, 292, 313, 292, + /* 1330 */ 292, 292, 292, 292, 300, ); static public $yy_lookahead = array( - /* 0 */ 7, 99, 9, 10, 102, 12, 104, 14, 26, 16, - /* 10 */ 7, 8, 25, 10, 21, 22, 29, 30, 25, 26, - /* 20 */ 38, 108, 7, 20, 31, 10, 33, 34, 35, 36, - /* 30 */ 37, 27, 8, 40, 41, 7, 33, 9, 10, 15, - /* 40 */ 75, 76, 18, 78, 79, 80, 81, 43, 33, 21, - /* 50 */ 22, 9, 10, 25, 26, 90, 9, 10, 93, 31, - /* 60 */ 95, 33, 34, 35, 36, 37, 101, 7, 40, 41, - /* 70 */ 10, 7, 44, 9, 10, 33, 75, 76, 17, 78, - /* 80 */ 79, 80, 81, 32, 23, 21, 22, 40, 100, 25, - /* 90 */ 26, 90, 41, 33, 93, 31, 95, 33, 34, 35, - /* 100 */ 36, 37, 101, 7, 40, 41, 10, 7, 44, 9, - /* 110 */ 10, 13, 1, 2, 3, 4, 5, 6, 7, 24, - /* 120 */ 83, 21, 22, 11, 7, 25, 26, 10, 11, 33, - /* 130 */ 32, 31, 21, 33, 34, 35, 36, 37, 43, 41, - /* 140 */ 40, 41, 42, 7, 32, 9, 10, 10, 75, 76, - /* 150 */ 33, 78, 79, 8, 81, 8, 39, 21, 22, 22, - /* 160 */ 77, 25, 26, 90, 11, 82, 93, 31, 95, 33, - /* 170 */ 34, 35, 36, 37, 101, 92, 40, 41, 7, 26, - /* 180 */ 9, 10, 109, 110, 7, 15, 78, 10, 11, 81, - /* 190 */ 43, 38, 21, 22, 24, 18, 25, 26, 72, 73, - /* 200 */ 74, 75, 31, 89, 33, 34, 35, 36, 37, 101, - /* 210 */ 33, 40, 41, 7, 26, 9, 10, 103, 75, 76, - /* 220 */ 32, 78, 79, 80, 81, 8, 38, 21, 22, 10, - /* 230 */ 42, 25, 26, 90, 8, 83, 93, 31, 95, 33, - /* 240 */ 34, 35, 36, 37, 101, 8, 40, 41, 7, 42, - /* 250 */ 9, 10, 15, 75, 76, 18, 78, 79, 39, 81, - /* 260 */ 43, 78, 21, 22, 81, 99, 25, 26, 90, 43, - /* 270 */ 104, 93, 31, 95, 33, 34, 35, 36, 37, 101, - /* 280 */ 97, 40, 41, 7, 101, 9, 10, 83, 110, 7, - /* 290 */ 77, 9, 10, 7, 8, 82, 10, 21, 22, 77, - /* 300 */ 82, 25, 26, 75, 82, 92, 20, 31, 8, 33, - /* 310 */ 34, 35, 36, 37, 92, 15, 40, 41, 7, 33, - /* 320 */ 9, 10, 40, 75, 76, 107, 78, 79, 80, 81, - /* 330 */ 23, 7, 21, 22, 10, 11, 25, 26, 90, 111, - /* 340 */ 18, 93, 31, 95, 33, 34, 35, 36, 37, 101, - /* 350 */ 43, 40, 41, 7, 26, 9, 10, 33, 75, 76, - /* 360 */ 17, 78, 79, 80, 81, 11, 38, 21, 22, 7, - /* 370 */ 77, 43, 26, 90, 56, 82, 93, 31, 95, 33, - /* 380 */ 34, 35, 36, 37, 101, 92, 40, 41, 26, 46, - /* 390 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, - /* 400 */ 20, 9, 10, 99, 7, 8, 20, 10, 104, 66, - /* 410 */ 67, 68, 26, 21, 22, 27, 99, 8, 26, 7, - /* 420 */ 83, 104, 10, 31, 38, 33, 34, 35, 36, 37, - /* 430 */ 33, 8, 40, 41, 46, 47, 48, 49, 50, 51, - /* 440 */ 52, 53, 54, 55, 100, 33, 27, 15, 25, 88, - /* 450 */ 8, 39, 29, 30, 66, 67, 68, 75, 76, 78, - /* 460 */ 78, 23, 81, 81, 103, 46, 47, 48, 49, 50, - /* 470 */ 51, 52, 53, 54, 55, 43, 82, 95, 75, 76, - /* 480 */ 42, 78, 101, 101, 81, 66, 67, 68, 46, 47, - /* 490 */ 48, 49, 50, 51, 52, 53, 54, 55, 95, 8, - /* 500 */ 8, 74, 75, 10, 101, 13, 15, 15, 66, 67, - /* 510 */ 68, 77, 46, 47, 48, 49, 50, 51, 52, 53, - /* 520 */ 54, 55, 7, 25, 9, 10, 92, 29, 30, 11, - /* 530 */ 13, 13, 66, 67, 68, 43, 21, 22, 77, 105, - /* 540 */ 42, 26, 7, 82, 9, 10, 31, 27, 33, 34, - /* 550 */ 35, 36, 37, 92, 11, 40, 21, 22, 10, 10, - /* 560 */ 12, 26, 14, 43, 16, 45, 31, 24, 33, 34, - /* 570 */ 35, 36, 37, 7, 8, 40, 10, 57, 58, 59, - /* 580 */ 60, 61, 62, 63, 64, 65, 75, 76, 88, 78, - /* 590 */ 79, 27, 81, 85, 86, 84, 85, 78, 8, 33, - /* 600 */ 81, 90, 43, 103, 93, 15, 95, 43, 8, 45, - /* 610 */ 104, 10, 101, 75, 76, 15, 78, 106, 15, 81, - /* 620 */ 101, 57, 58, 59, 60, 61, 62, 63, 64, 65, - /* 630 */ 77, 75, 76, 95, 78, 79, 100, 81, 75, 101, - /* 640 */ 84, 24, 9, 43, 100, 92, 90, 103, 77, 93, - /* 650 */ 43, 95, 45, 10, 8, 15, 40, 101, 105, 96, - /* 660 */ 43, 15, 106, 92, 57, 58, 59, 60, 61, 62, - /* 670 */ 63, 64, 65, 40, 111, 8, 105, 75, 76, 27, - /* 680 */ 78, 79, 15, 81, 4, 77, 84, 8, 78, 43, - /* 690 */ 82, 81, 90, 22, 15, 93, 32, 95, 75, 76, - /* 700 */ 92, 78, 79, 101, 81, 19, 88, 84, 106, 10, - /* 710 */ 8, 101, 8, 90, 9, 88, 93, 15, 95, 15, - /* 720 */ 88, 103, 75, 76, 101, 78, 79, 8, 81, 106, - /* 730 */ 103, 84, 13, 40, 15, 103, 77, 90, 8, 77, - /* 740 */ 93, 88, 95, 75, 76, 26, 78, 79, 101, 81, - /* 750 */ 69, 92, 84, 106, 92, 9, 103, 38, 90, 8, - /* 760 */ 8, 93, 43, 95, 9, 88, 8, 15, 28, 101, - /* 770 */ 8, 10, 24, 15, 106, 75, 76, 15, 78, 79, - /* 780 */ 103, 81, 8, 7, 84, 9, 10, 8, 10, 15, - /* 790 */ 90, 26, 9, 93, 15, 95, 27, 88, 22, 75, - /* 800 */ 76, 101, 78, 79, 9, 81, 106, 19, 84, 33, - /* 810 */ 34, 35, 103, 77, 90, 8, 40, 93, 77, 95, - /* 820 */ 75, 76, 15, 78, 79, 101, 81, 77, 92, 84, - /* 830 */ 106, 3, 8, 92, 8, 90, 4, 8, 93, 15, - /* 840 */ 95, 15, 92, 8, 77, 3, 101, 8, 11, 28, - /* 850 */ 15, 106, 75, 76, 15, 78, 79, 27, 81, 92, - /* 860 */ 15, 84, 92, 15, 9, 102, 94, 90, 97, 103, - /* 870 */ 93, 3, 95, 91, 15, 7, 75, 76, 101, 78, - /* 880 */ 79, 87, 81, 106, 26, 84, 105, 100, 24, 21, - /* 890 */ 87, 90, 100, 85, 93, 112, 95, 75, 76, 112, - /* 900 */ 78, 79, 101, 81, 112, 37, 84, 106, 112, 112, - /* 910 */ 112, 112, 90, 112, 112, 93, 3, 95, 112, 112, - /* 920 */ 7, 112, 112, 101, 112, 112, 112, 112, 106, 75, - /* 930 */ 76, 112, 78, 79, 21, 81, 112, 69, 70, 112, - /* 940 */ 112, 112, 112, 112, 90, 112, 112, 93, 112, 95, - /* 950 */ 37, 112, 98, 75, 76, 101, 78, 79, 112, 81, - /* 960 */ 112, 112, 112, 112, 112, 112, 112, 112, 90, 112, - /* 970 */ 112, 93, 112, 95, 75, 76, 98, 78, 79, 101, - /* 980 */ 81, 112, 69, 70, 112, 112, 112, 112, 112, 90, - /* 990 */ 112, 112, 93, 112, 95, 112, 112, 98, 112, 112, - /* 1000 */ 101, 112, 112, 112, 75, 76, 112, 78, 79, 112, - /* 1010 */ 81, 75, 76, 112, 78, 79, 112, 81, 112, 90, - /* 1020 */ 112, 112, 93, 112, 95, 112, 90, 98, 112, 93, - /* 1030 */ 101, 95, 75, 76, 112, 78, 79, 101, 81, 112, - /* 1040 */ 112, 112, 112, 112, 112, 112, 112, 90, 112, 112, - /* 1050 */ 93, 112, 95, 75, 76, 112, 78, 79, 101, 81, - /* 1060 */ 112, 112, 112, 112, 112, 112, 112, 112, 90, 112, - /* 1070 */ 112, 93, 112, 95, 112, 112, 112, 112, 112, 101, - /* 1080 */ 75, 76, 112, 78, 79, 112, 81, 75, 76, 112, - /* 1090 */ 78, 79, 112, 81, 112, 90, 112, 112, 93, 112, - /* 1100 */ 95, 112, 90, 112, 112, 93, 101, 95, 75, 76, - /* 1110 */ 112, 78, 79, 101, 81, 112, 112, 112, 112, 112, - /* 1120 */ 112, 112, 112, 90, 112, 112, 93, 112, 95, 75, - /* 1130 */ 76, 112, 78, 79, 101, 81, 112, 112, 112, 112, - /* 1140 */ 112, 112, 112, 112, 90, 112, 112, 93, 112, 95, - /* 1150 */ 112, 112, 112, 112, 112, 101, 75, 76, 112, 78, - /* 1160 */ 79, 112, 81, 75, 76, 112, 78, 79, 112, 81, - /* 1170 */ 112, 90, 112, 112, 93, 112, 95, 112, 90, 112, - /* 1180 */ 112, 93, 101, 95, 75, 76, 112, 78, 79, 101, - /* 1190 */ 81, 112, 112, 112, 112, 112, 112, 112, 112, 90, - /* 1200 */ 112, 112, 93, 112, 95, 75, 76, 112, 78, 79, - /* 1210 */ 101, 81, 112, 112, 112, 112, 112, 112, 112, 112, - /* 1220 */ 90, 112, 112, 93, 112, 95, 112, 112, 112, 112, - /* 1230 */ 112, 101, 75, 76, 112, 78, 79, 112, 81, 75, - /* 1240 */ 76, 112, 78, 79, 112, 81, 112, 90, 112, 112, - /* 1250 */ 93, 112, 95, 112, 90, 112, 112, 93, 101, 95, - /* 1260 */ 75, 76, 112, 78, 79, 101, 81, 112, 112, 112, - /* 1270 */ 112, 112, 112, 112, 112, 90, 112, 112, 93, 112, - /* 1280 */ 95, 75, 76, 112, 78, 112, 101, 81, 112, 112, - /* 1290 */ 112, 112, 112, 112, 112, 112, 90, 112, 112, 93, - /* 1300 */ 112, 95, 112, 112, 112, 112, 112, 101, 75, 76, - /* 1310 */ 112, 78, 75, 76, 81, 78, 75, 76, 81, 78, - /* 1320 */ 112, 112, 81, 90, 112, 112, 93, 90, 95, 112, - /* 1330 */ 93, 90, 95, 112, 101, 112, 95, 112, 101, 112, - /* 1340 */ 75, 76, 101, 78, 112, 112, 81, 112, 112, 112, - /* 1350 */ 112, 112, 112, 112, 112, 90, 112, 112, 112, 112, - /* 1360 */ 95, 112, 112, 112, 112, 112, 101, + /* 0 */ 7, 26, 9, 10, 10, 12, 12, 14, 14, 16, + /* 10 */ 16, 13, 37, 3, 21, 22, 25, 7, 25, 26, + /* 20 */ 29, 30, 7, 8, 31, 10, 33, 34, 35, 36, + /* 30 */ 32, 21, 39, 40, 7, 20, 9, 10, 40, 74, + /* 40 */ 75, 42, 77, 78, 7, 80, 36, 10, 21, 22, + /* 50 */ 9, 10, 25, 26, 89, 11, 32, 92, 31, 94, + /* 60 */ 33, 34, 35, 36, 40, 100, 39, 40, 8, 7, + /* 70 */ 43, 9, 10, 108, 109, 38, 32, 7, 68, 69, + /* 80 */ 10, 11, 13, 21, 22, 25, 11, 25, 26, 29, + /* 90 */ 30, 7, 8, 31, 10, 33, 34, 35, 36, 24, + /* 100 */ 8, 39, 40, 41, 7, 26, 9, 10, 38, 74, + /* 110 */ 75, 32, 77, 78, 79, 80, 37, 15, 21, 22, + /* 120 */ 41, 103, 25, 26, 89, 27, 24, 92, 31, 94, + /* 130 */ 33, 34, 35, 36, 42, 100, 39, 40, 77, 15, + /* 140 */ 43, 80, 23, 45, 46, 47, 48, 49, 50, 51, + /* 150 */ 52, 53, 54, 7, 25, 9, 10, 96, 29, 30, + /* 160 */ 41, 100, 74, 65, 66, 67, 42, 21, 22, 76, + /* 170 */ 41, 25, 26, 7, 81, 9, 10, 31, 26, 33, + /* 180 */ 34, 35, 36, 95, 91, 39, 40, 21, 22, 37, + /* 190 */ 7, 25, 26, 7, 42, 9, 10, 31, 110, 33, + /* 200 */ 34, 35, 36, 81, 17, 39, 40, 21, 22, 26, + /* 210 */ 7, 25, 26, 10, 11, 7, 8, 31, 10, 33, + /* 220 */ 34, 35, 36, 24, 8, 39, 40, 7, 20, 9, + /* 230 */ 10, 15, 45, 46, 47, 48, 49, 50, 51, 52, + /* 240 */ 53, 54, 7, 98, 9, 10, 101, 7, 103, 82, + /* 250 */ 10, 11, 65, 66, 67, 10, 21, 22, 18, 39, + /* 260 */ 25, 26, 7, 27, 9, 10, 31, 22, 33, 34, + /* 270 */ 35, 36, 87, 104, 39, 40, 21, 22, 42, 3, + /* 280 */ 25, 26, 88, 7, 27, 8, 31, 102, 33, 34, + /* 290 */ 35, 36, 15, 8, 39, 40, 102, 21, 71, 72, + /* 300 */ 73, 74, 45, 46, 47, 48, 49, 50, 51, 52, + /* 310 */ 53, 54, 36, 8, 7, 8, 99, 10, 13, 8, + /* 320 */ 15, 17, 65, 66, 67, 77, 15, 23, 80, 18, + /* 330 */ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, + /* 340 */ 7, 23, 9, 10, 68, 69, 8, 42, 100, 99, + /* 350 */ 65, 66, 67, 15, 21, 22, 18, 20, 25, 26, + /* 360 */ 42, 9, 10, 26, 31, 10, 33, 34, 35, 36, + /* 370 */ 81, 99, 39, 40, 37, 76, 45, 46, 47, 48, + /* 380 */ 49, 50, 51, 52, 53, 54, 7, 87, 9, 10, + /* 390 */ 91, 39, 8, 38, 82, 106, 65, 66, 67, 15, + /* 400 */ 21, 22, 102, 104, 77, 26, 7, 80, 9, 10, + /* 410 */ 31, 82, 33, 34, 35, 36, 76, 8, 39, 40, + /* 420 */ 21, 22, 87, 32, 15, 26, 7, 100, 9, 10, + /* 430 */ 31, 91, 33, 34, 35, 36, 8, 102, 39, 40, + /* 440 */ 21, 22, 11, 15, 104, 26, 7, 9, 9, 10, + /* 450 */ 31, 42, 33, 34, 35, 36, 76, 26, 39, 7, + /* 460 */ 21, 22, 10, 3, 77, 26, 77, 80, 37, 80, + /* 470 */ 31, 91, 33, 34, 35, 36, 74, 75, 39, 77, + /* 480 */ 78, 8, 80, 27, 104, 83, 84, 100, 15, 100, + /* 490 */ 76, 89, 8, 27, 92, 81, 94, 8, 42, 15, + /* 500 */ 44, 8, 100, 15, 15, 91, 76, 105, 42, 10, + /* 510 */ 44, 81, 56, 57, 58, 59, 60, 61, 62, 63, + /* 520 */ 64, 91, 56, 57, 58, 59, 60, 61, 62, 63, + /* 530 */ 64, 8, 24, 74, 75, 42, 77, 78, 15, 80, + /* 540 */ 98, 7, 83, 9, 10, 103, 7, 76, 89, 10, + /* 550 */ 42, 92, 81, 94, 74, 75, 22, 77, 78, 100, + /* 560 */ 80, 98, 91, 83, 105, 42, 103, 33, 34, 89, + /* 570 */ 84, 85, 92, 39, 94, 74, 75, 87, 77, 78, + /* 580 */ 100, 80, 76, 76, 83, 105, 9, 81, 81, 8, + /* 590 */ 89, 7, 102, 92, 10, 94, 15, 91, 91, 74, + /* 600 */ 75, 100, 77, 78, 8, 80, 105, 74, 83, 74, + /* 610 */ 75, 15, 77, 78, 89, 80, 39, 92, 83, 94, + /* 620 */ 11, 8, 13, 4, 89, 100, 8, 92, 15, 94, + /* 630 */ 105, 24, 87, 15, 8, 100, 42, 8, 44, 8, + /* 640 */ 105, 15, 18, 110, 73, 74, 15, 102, 8, 42, + /* 650 */ 56, 57, 58, 59, 60, 61, 62, 63, 64, 74, + /* 660 */ 75, 99, 77, 78, 102, 80, 8, 98, 83, 8, + /* 670 */ 15, 42, 103, 15, 89, 8, 15, 92, 87, 94, + /* 680 */ 74, 75, 15, 77, 78, 100, 80, 87, 87, 83, + /* 690 */ 105, 3, 8, 102, 28, 89, 10, 76, 92, 15, + /* 700 */ 94, 76, 102, 102, 74, 75, 100, 77, 78, 9, + /* 710 */ 80, 105, 91, 83, 8, 107, 91, 76, 76, 89, + /* 720 */ 24, 10, 92, 76, 94, 74, 75, 10, 77, 78, + /* 730 */ 100, 80, 91, 91, 83, 105, 20, 27, 91, 76, + /* 740 */ 89, 10, 55, 92, 4, 94, 10, 22, 19, 74, + /* 750 */ 75, 100, 77, 78, 91, 80, 105, 8, 83, 74, + /* 760 */ 75, 39, 77, 78, 89, 80, 11, 92, 83, 94, + /* 770 */ 9, 8, 28, 9, 89, 100, 39, 92, 11, 94, + /* 780 */ 105, 68, 26, 74, 75, 100, 77, 78, 41, 80, + /* 790 */ 105, 1, 2, 3, 4, 5, 6, 7, 89, 27, + /* 800 */ 27, 92, 19, 94, 74, 75, 97, 77, 78, 100, + /* 810 */ 80, 21, 8, 10, 9, 74, 75, 82, 77, 89, + /* 820 */ 101, 80, 92, 91, 94, 74, 75, 9, 77, 78, + /* 830 */ 100, 80, 93, 90, 15, 94, 102, 99, 15, 109, + /* 840 */ 89, 100, 96, 92, 99, 94, 26, 15, 97, 74, + /* 850 */ 75, 100, 77, 78, 79, 80, 86, 86, 84, 111, + /* 860 */ 111, 111, 111, 111, 89, 111, 111, 92, 111, 94, + /* 870 */ 111, 111, 111, 74, 75, 100, 77, 78, 79, 80, + /* 880 */ 74, 75, 111, 77, 78, 111, 80, 111, 89, 111, + /* 890 */ 111, 92, 111, 94, 111, 89, 111, 111, 92, 100, + /* 900 */ 94, 111, 111, 97, 74, 75, 100, 77, 78, 79, + /* 910 */ 80, 111, 111, 111, 111, 74, 75, 111, 77, 89, + /* 920 */ 111, 80, 92, 111, 94, 111, 111, 111, 74, 75, + /* 930 */ 100, 77, 78, 79, 80, 94, 111, 111, 111, 111, + /* 940 */ 111, 100, 111, 89, 111, 111, 92, 111, 94, 74, + /* 950 */ 75, 111, 77, 78, 100, 80, 74, 75, 111, 77, + /* 960 */ 78, 111, 80, 111, 89, 111, 111, 92, 111, 94, + /* 970 */ 111, 89, 97, 111, 92, 100, 94, 111, 111, 111, + /* 980 */ 74, 75, 100, 77, 78, 111, 80, 111, 111, 111, + /* 990 */ 111, 74, 75, 111, 77, 89, 111, 80, 92, 111, + /* 1000 */ 94, 111, 111, 111, 74, 75, 100, 77, 78, 111, + /* 1010 */ 80, 94, 111, 111, 111, 111, 111, 100, 111, 89, + /* 1020 */ 111, 111, 92, 111, 94, 74, 75, 111, 77, 78, + /* 1030 */ 100, 80, 74, 75, 111, 77, 78, 111, 80, 111, + /* 1040 */ 89, 111, 111, 92, 111, 94, 111, 89, 111, 111, + /* 1050 */ 92, 100, 94, 111, 111, 111, 74, 75, 100, 77, + /* 1060 */ 78, 111, 80, 111, 111, 111, 111, 111, 111, 111, + /* 1070 */ 111, 89, 111, 111, 92, 111, 94, 111, 111, 111, + /* 1080 */ 74, 75, 100, 77, 78, 111, 80, 111, 111, 111, + /* 1090 */ 111, 111, 111, 111, 111, 89, 111, 111, 92, 111, + /* 1100 */ 94, 74, 75, 111, 77, 78, 100, 80, 74, 75, + /* 1110 */ 111, 77, 78, 111, 80, 111, 89, 111, 111, 92, + /* 1120 */ 111, 94, 111, 89, 111, 111, 92, 100, 94, 111, + /* 1130 */ 111, 111, 74, 75, 100, 77, 78, 111, 80, 111, + /* 1140 */ 111, 111, 111, 111, 111, 111, 111, 89, 111, 111, + /* 1150 */ 92, 111, 94, 111, 111, 111, 74, 75, 100, 77, + /* 1160 */ 78, 111, 80, 111, 111, 111, 111, 111, 111, 111, + /* 1170 */ 111, 89, 111, 111, 92, 111, 94, 74, 75, 111, + /* 1180 */ 77, 78, 100, 80, 74, 75, 111, 77, 78, 111, + /* 1190 */ 80, 111, 89, 111, 111, 92, 111, 94, 111, 89, + /* 1200 */ 111, 111, 92, 100, 94, 111, 111, 111, 74, 75, + /* 1210 */ 100, 77, 78, 111, 80, 111, 111, 111, 111, 111, + /* 1220 */ 111, 111, 111, 89, 111, 111, 92, 111, 94, 111, + /* 1230 */ 111, 111, 74, 75, 100, 77, 111, 111, 80, 111, + /* 1240 */ 111, 111, 111, 111, 111, 111, 111, 89, 111, 111, + /* 1250 */ 92, 111, 94, 74, 75, 111, 77, 111, 100, 80, + /* 1260 */ 74, 75, 111, 77, 111, 111, 80, 111, 89, 111, + /* 1270 */ 111, 92, 111, 94, 111, 89, 111, 111, 92, 100, + /* 1280 */ 94, 111, 111, 111, 74, 75, 100, 77, 8, 111, + /* 1290 */ 80, 111, 111, 13, 111, 15, 111, 111, 111, 89, + /* 1300 */ 111, 111, 111, 111, 94, 111, 26, 111, 74, 75, + /* 1310 */ 100, 77, 111, 111, 80, 111, 111, 37, 111, 111, + /* 1320 */ 111, 111, 42, 89, 111, 111, 111, 111, 94, 111, + /* 1330 */ 111, 111, 111, 111, 100, ); - const YY_SHIFT_USE_DFLT = -19; + const YY_SHIFT_USE_DFLT = -26; const YY_SHIFT_MAX = 227; static public $yy_shift_ofst = array( - /* 0 */ 111, 64, 28, 28, 28, 28, 28, 28, 28, 28, - /* 10 */ 28, 28, 28, 241, -7, -7, 136, 171, 136, 171, - /* 20 */ 206, 136, 241, 136, 136, 136, 136, 136, 136, 136, - /* 30 */ 136, 136, 136, 136, 136, 136, 136, 136, 100, 276, - /* 40 */ 311, 346, 392, 535, 535, 515, 282, 776, 913, 719, - /* 50 */ 492, 646, 47, 98, 600, 170, 432, 170, 432, 170, - /* 60 */ 633, 432, 633, 564, 520, 607, 111, 868, 177, 117, - /* 70 */ 412, 60, 96, 15, 237, 24, 60, 15, 60, 60, - /* 80 */ 60, 60, 60, 752, 518, 848, 517, 517, 845, 848, - /* 90 */ 517, 848, 855, 343, 388, 442, 419, 466, 466, 466, - /* 100 */ 466, 466, 466, 466, 466, 286, 3, 324, 397, 548, - /* 110 */ 498, 423, 566, -13, -13, 42, 300, 491, 667, 590, - /* 120 */ 307, 835, 617, 824, 679, 226, 51, 51, 4, 51, - /* 130 */ 51, 826, 51, 217, 704, 362, 702, 758, 779, 147, - /* 140 */ 774, 762, 807, 95, 858, 559, 859, 559, 859, 559, - /* 150 */ 559, 517, 864, 855, 559, 517, 517, 559, 517, 559, - /* 160 */ 559, 559, 559, -19, -19, -19, -19, -19, -19, -19, - /* 170 */ 188, 328, 386, 153, 61, 137, -18, 543, 219, 839, - /* 180 */ -18, -18, -18, 112, 438, 751, 671, 680, 652, 821, - /* 190 */ 603, 616, 664, 699, 681, 746, 730, 705, 693, 783, - /* 200 */ 755, 640, 686, 828, 788, 829, 832, 837, 842, 795, - /* 210 */ 769, 761, 740, 765, 778, 643, 748, 830, 601, 380, - /* 220 */ 354, 322, 318, 409, 493, 207, 549, 145, + /* 0 */ 790, 97, 27, 27, 27, 27, 27, 27, 27, 27, + /* 10 */ 27, 27, 27, 186, -7, -7, 166, 146, 333, 146, + /* 20 */ 146, 166, 146, 186, 146, 146, 146, 146, 146, 146, + /* 30 */ 146, 146, 146, 146, 146, 146, 146, 146, 62, 255, + /* 40 */ 235, 399, 379, 439, 419, 419, 220, 534, 1280, 276, + /* 50 */ 305, 523, 409, -2, 352, 124, 577, 102, 577, 124, + /* 60 */ 102, 124, 102, 466, 456, 594, 790, 10, 70, 240, + /* 70 */ 37, 311, 338, 539, 609, 584, 452, 452, 452, 684, + /* 80 */ 452, 452, 452, 452, 584, 818, 69, 819, 823, 823, + /* 90 */ 69, 823, 69, 98, 187, 257, 285, 331, 331, 331, + /* 100 */ 331, 331, 331, 331, 331, 60, 15, 129, 208, -6, + /* 110 */ -9, 203, 84, 307, -9, 24, 24, 318, 384, 92, + /* 120 */ 24, 236, 216, 277, 667, 618, 626, 508, 24, 183, + /* 130 */ 613, 493, 607, 24, 661, 658, 629, 428, 631, 596, + /* 140 */ 581, 41, 484, 473, 832, 69, 832, -1, -1, -1, + /* 150 */ -1, 818, -1, 820, -1, 69, -1, 199, -1, 69, + /* 160 */ -1, 69, -1, -26, -26, -26, -26, -26, -26, -26, + /* 170 */ 79, 337, 152, 431, 119, 75, 245, -25, 44, -25, + /* 180 */ 489, -25, 304, -25, 355, 805, 761, 763, 764, 391, + /* 190 */ 755, 725, 729, 749, 722, 744, 737, 783, 804, 803, + /* 200 */ 756, 773, 747, 713, 767, 772, 736, 740, 640, 688, + /* 210 */ 655, 686, 624, 619, 438, 460, 488, 499, 700, 706, + /* 220 */ 716, 687, 731, 710, 717, 666, 696, 711, ); - const YY_REDUCE_USE_DFLT = -99; + const YY_REDUCE_USE_DFLT = -36; const YY_REDUCE_MAX = 169; static public $yy_reduce_ofst = array( - /* 0 */ 126, 511, 668, 647, 602, 556, 623, 700, 822, 777, - /* 10 */ 724, 801, 745, 73, 1, -35, 929, 143, 878, 248, - /* 20 */ 283, 899, 178, 854, 1109, 1088, 1130, 1157, 1164, 978, - /* 30 */ 957, 1005, 1185, 1033, 1012, 936, 1054, 1081, 1237, 1233, - /* 40 */ 1206, 1241, 1265, 538, 382, 403, 183, 610, 563, 608, - /* 50 */ 83, 222, 519, -98, 213, 434, 293, 571, 461, 553, - /* 60 */ 108, 222, 381, 218, 218, 218, 427, 228, 114, 544, - /* 70 */ 544, 677, 677, 677, 736, 736, 709, 653, 627, 618, - /* 80 */ 361, 500, 632, 662, 166, 659, 317, 304, 750, 767, - /* 90 */ 166, 741, 508, -87, -87, -87, -87, -87, -87, -87, - /* 100 */ -87, -87, -87, -87, -87, 766, 766, 766, 766, 782, - /* 110 */ 772, 772, 766, 772, 772, 771, 770, 770, 770, 770, - /* 120 */ 394, 770, 394, 770, 770, 394, 763, 763, 394, 763, - /* 130 */ 763, 770, 763, 394, 770, 792, 770, 770, 770, 394, - /* 140 */ 770, 770, 770, 394, 787, 394, 794, 394, 803, 394, - /* 150 */ 394, 506, 781, 808, 394, 506, 506, 394, 506, 394, - /* 160 */ 394, 394, 394, 536, 344, 337, -12, 204, 152, 37, + /* 0 */ 227, 402, 585, 535, 501, 459, 480, 630, 525, 606, + /* 10 */ 685, 651, 675, -35, 854, 830, 35, 751, 799, 875, + /* 20 */ 806, 775, 709, 730, 951, 1006, 882, 1027, 1110, 1082, + /* 30 */ 1058, 958, 906, 930, 1134, 982, 1103, 1034, 1158, 1186, + /* 40 */ 1179, 1210, 1234, 917, 741, 841, 61, 327, 507, 88, + /* 50 */ 93, 506, 414, 145, 389, 414, 387, 340, 248, 471, + /* 60 */ 299, 430, 380, 289, 289, 289, 571, 533, 562, 194, + /* 70 */ 562, 625, 625, 300, 442, 300, 545, 600, 591, 621, + /* 80 */ 601, 300, 185, 335, 490, 486, 442, 647, 663, 641, + /* 90 */ 463, 642, 569, 608, 608, 608, 608, 608, 608, 608, + /* 100 */ 608, 608, 608, 608, 608, 739, 734, 739, 734, 743, + /* 110 */ 739, 734, 734, 734, 739, 719, 719, 122, 732, 122, + /* 120 */ 719, 122, 732, 732, 732, 732, 732, 122, 719, 738, + /* 130 */ 732, 122, 122, 719, 732, 732, 122, 732, 732, 732, + /* 140 */ 732, 746, 732, 732, 770, 18, 771, 122, 122, 122, + /* 150 */ 122, 774, 122, 745, 122, 18, 122, 169, 122, 18, + /* 160 */ 122, 18, 122, 329, 312, 735, 167, 217, 250, 272, ); static public $yyExpectedTokens = array( /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 21, ), - /* 1 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 2 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 3 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 4 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 5 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 6 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 7 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 8 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 9 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 10 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 11 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 12 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 44, ), - /* 13 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 14 */ array(7, 9, 10, 12, 14, 16, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 15 */ array(7, 9, 10, 12, 14, 16, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 16 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 17 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 18 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 19 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 20 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 21 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 22 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 23 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 24 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 25 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 26 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 27 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 28 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 29 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 30 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 31 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 32 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 33 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 34 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 35 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 36 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 37 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 38 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, 42, ), - /* 39 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 40 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 41 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 42 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 37, 40, 41, ), - /* 43 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 37, 40, ), - /* 44 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 37, 40, ), - /* 45 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 37, 40, ), - /* 46 */ array(7, 9, 10, 40, ), - /* 47 */ array(7, 9, 10, 22, 33, 34, 35, 40, ), - /* 48 */ array(3, 7, 21, 37, 69, 70, ), - /* 49 */ array(8, 13, 15, 26, 38, 43, ), - /* 50 */ array(8, 13, 15, 43, ), - /* 51 */ array(8, 15, 43, ), - /* 52 */ array(9, 10, 40, ), - /* 53 */ array(13, 32, 41, ), - /* 54 */ array(8, 15, 43, ), - /* 55 */ array(15, 24, ), - /* 56 */ array(15, 43, ), + /* 1 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 2 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 3 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 4 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 5 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 6 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 7 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 8 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 9 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 10 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 11 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 12 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), + /* 13 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 14 */ array(7, 9, 10, 12, 14, 16, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 15 */ array(7, 9, 10, 12, 14, 16, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 16 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 17 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 18 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 19 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 20 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 21 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 22 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 23 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 24 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 25 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 26 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 27 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 28 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 29 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 30 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 31 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 32 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 33 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 34 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 35 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 36 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 37 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 38 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 41, ), + /* 39 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 40 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 41 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 42 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 39, 40, ), + /* 43 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 39, ), + /* 44 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 39, ), + /* 45 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 39, ), + /* 46 */ array(7, 9, 10, 39, ), + /* 47 */ array(7, 9, 10, 22, 33, 34, 39, ), + /* 48 */ array(8, 13, 15, 26, 37, 42, ), + /* 49 */ array(3, 7, 21, 36, 68, 69, ), + /* 50 */ array(8, 13, 15, 42, ), + /* 51 */ array(8, 15, 42, ), + /* 52 */ array(8, 15, 42, ), + /* 53 */ array(13, 32, 40, ), + /* 54 */ array(9, 10, 39, ), + /* 55 */ array(15, 42, ), + /* 56 */ array(9, 39, ), /* 57 */ array(15, 24, ), - /* 58 */ array(15, 43, ), - /* 59 */ array(15, 24, ), - /* 60 */ array(9, 40, ), - /* 61 */ array(15, 43, ), - /* 62 */ array(9, 40, ), - /* 63 */ array(27, 43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), - /* 64 */ array(27, 43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), - /* 65 */ array(43, 45, 57, 58, 59, 60, 61, 62, 63, 64, 65, ), + /* 58 */ array(9, 39, ), + /* 59 */ array(15, 42, ), + /* 60 */ array(15, 24, ), + /* 61 */ array(15, 42, ), + /* 62 */ array(15, 24, ), + /* 63 */ array(27, 42, 44, 56, 57, 58, 59, 60, 61, 62, 63, 64, ), + /* 64 */ array(27, 42, 44, 56, 57, 58, 59, 60, 61, 62, 63, 64, ), + /* 65 */ array(42, 44, 56, 57, 58, 59, 60, 61, 62, 63, 64, ), /* 66 */ array(1, 2, 3, 4, 5, 6, 7, 21, ), - /* 67 */ array(3, 7, 21, 37, 69, 70, ), - /* 68 */ array(7, 10, 11, 18, 33, ), - /* 69 */ array(7, 10, 11, 33, 39, ), - /* 70 */ array(7, 10, 33, 39, ), - /* 71 */ array(7, 10, 33, ), - /* 72 */ array(7, 10, 33, ), - /* 73 */ array(7, 10, 33, ), - /* 74 */ array(8, 15, 18, ), - /* 75 */ array(8, 15, 18, ), - /* 76 */ array(7, 10, 33, ), - /* 77 */ array(7, 10, 33, ), - /* 78 */ array(7, 10, 33, ), - /* 79 */ array(7, 10, 33, ), - /* 80 */ array(7, 10, 33, ), - /* 81 */ array(7, 10, 33, ), - /* 82 */ array(7, 10, 33, ), - /* 83 */ array(8, 15, ), - /* 84 */ array(11, 13, ), - /* 85 */ array(15, ), + /* 67 */ array(3, 7, 21, 36, 68, 69, ), + /* 68 */ array(7, 10, 11, 38, ), + /* 69 */ array(7, 10, 11, 18, ), + /* 70 */ array(7, 10, 38, ), + /* 71 */ array(8, 15, 18, ), + /* 72 */ array(8, 15, 18, ), + /* 73 */ array(7, 10, ), + /* 74 */ array(11, 13, ), + /* 75 */ array(7, 10, ), + /* 76 */ array(7, 10, ), + /* 77 */ array(7, 10, ), + /* 78 */ array(7, 10, ), + /* 79 */ array(8, 15, ), + /* 80 */ array(7, 10, ), + /* 81 */ array(7, 10, ), + /* 82 */ array(7, 10, ), + /* 83 */ array(7, 10, ), + /* 84 */ array(7, 10, ), + /* 85 */ array(9, ), /* 86 */ array(13, ), - /* 87 */ array(13, ), + /* 87 */ array(15, ), /* 88 */ array(15, ), /* 89 */ array(15, ), /* 90 */ array(13, ), /* 91 */ array(15, ), - /* 92 */ array(9, ), - /* 93 */ array(17, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 94 */ array(27, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 95 */ array(8, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 96 */ array(27, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 97 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 98 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 99 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 100 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 101 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 102 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 103 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 104 */ array(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 66, 67, 68, ), - /* 105 */ array(7, 8, 10, 20, 33, ), - /* 106 */ array(7, 8, 10, 20, 33, ), - /* 107 */ array(7, 10, 11, 33, ), - /* 108 */ array(7, 8, 10, 33, ), + /* 92 */ array(13, ), + /* 93 */ array(27, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 94 */ array(17, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 95 */ array(27, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 96 */ array(8, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 97 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 98 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 99 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 100 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 101 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 102 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 103 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 104 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), + /* 105 */ array(8, 25, 29, 30, ), + /* 106 */ array(7, 8, 10, 20, ), + /* 107 */ array(25, 29, 30, 41, ), + /* 108 */ array(7, 8, 10, 20, ), /* 109 */ array(10, 12, 14, 16, ), - /* 110 */ array(25, 29, 30, 42, ), - /* 111 */ array(8, 25, 29, 30, ), - /* 112 */ array(7, 8, 10, 33, ), - /* 113 */ array(25, 29, 30, ), + /* 110 */ array(25, 29, 30, ), + /* 111 */ array(7, 10, 11, ), + /* 112 */ array(7, 8, 10, ), + /* 113 */ array(7, 8, 10, ), /* 114 */ array(25, 29, 30, ), - /* 115 */ array(9, 10, 33, ), - /* 116 */ array(8, 15, ), - /* 117 */ array(8, 15, ), + /* 115 */ array(32, 40, ), + /* 116 */ array(32, 40, ), + /* 117 */ array(23, 42, ), /* 118 */ array(8, 15, ), - /* 119 */ array(8, 15, ), - /* 120 */ array(23, 43, ), - /* 121 */ array(8, 15, ), - /* 122 */ array(24, 43, ), + /* 119 */ array(8, 42, ), + /* 120 */ array(32, 40, ), + /* 121 */ array(27, 42, ), + /* 122 */ array(8, 15, ), /* 123 */ array(8, 15, ), /* 124 */ array(8, 15, ), - /* 125 */ array(8, 43, ), - /* 126 */ array(32, 41, ), - /* 127 */ array(32, 41, ), - /* 128 */ array(27, 43, ), - /* 129 */ array(32, 41, ), - /* 130 */ array(32, 41, ), - /* 131 */ array(8, 15, ), - /* 132 */ array(32, 41, ), - /* 133 */ array(8, 43, ), + /* 125 */ array(8, 15, ), + /* 126 */ array(8, 15, ), + /* 127 */ array(24, 42, ), + /* 128 */ array(32, 40, ), + /* 129 */ array(7, 26, ), + /* 130 */ array(8, 15, ), + /* 131 */ array(8, 42, ), + /* 132 */ array(24, 42, ), + /* 133 */ array(32, 40, ), /* 134 */ array(8, 15, ), - /* 135 */ array(7, 26, ), - /* 136 */ array(8, 15, ), + /* 135 */ array(8, 15, ), + /* 136 */ array(8, 42, ), /* 137 */ array(8, 15, ), /* 138 */ array(8, 15, ), - /* 139 */ array(8, 43, ), + /* 139 */ array(8, 15, ), /* 140 */ array(8, 15, ), - /* 141 */ array(8, 15, ), + /* 141 */ array(9, 10, ), /* 142 */ array(8, 15, ), - /* 143 */ array(24, 43, ), - /* 144 */ array(26, ), - /* 145 */ array(43, ), + /* 143 */ array(8, 15, ), + /* 144 */ array(15, ), + /* 145 */ array(13, ), /* 146 */ array(15, ), - /* 147 */ array(43, ), - /* 148 */ array(15, ), - /* 149 */ array(43, ), - /* 150 */ array(43, ), - /* 151 */ array(13, ), - /* 152 */ array(24, ), - /* 153 */ array(9, ), - /* 154 */ array(43, ), + /* 147 */ array(42, ), + /* 148 */ array(42, ), + /* 149 */ array(42, ), + /* 150 */ array(42, ), + /* 151 */ array(9, ), + /* 152 */ array(42, ), + /* 153 */ array(26, ), + /* 154 */ array(42, ), /* 155 */ array(13, ), - /* 156 */ array(13, ), - /* 157 */ array(43, ), - /* 158 */ array(13, ), - /* 159 */ array(43, ), - /* 160 */ array(43, ), - /* 161 */ array(43, ), - /* 162 */ array(43, ), + /* 156 */ array(42, ), + /* 157 */ array(24, ), + /* 158 */ array(42, ), + /* 159 */ array(13, ), + /* 160 */ array(42, ), + /* 161 */ array(13, ), + /* 162 */ array(42, ), /* 163 */ array(), /* 164 */ array(), /* 165 */ array(), @@ -774,64 +767,64 @@ static public $yy_action = array( /* 167 */ array(), /* 168 */ array(), /* 169 */ array(), - /* 170 */ array(26, 32, 38, 42, ), - /* 171 */ array(26, 38, 43, ), - /* 172 */ array(20, 26, 38, ), - /* 173 */ array(11, 26, 38, ), - /* 174 */ array(17, 23, ), - /* 175 */ array(10, 22, ), - /* 176 */ array(26, 38, ), - /* 177 */ array(11, 24, ), - /* 178 */ array(10, 39, ), - /* 179 */ array(8, 15, ), - /* 180 */ array(26, 38, ), - /* 181 */ array(26, 38, ), - /* 182 */ array(26, 38, ), - /* 183 */ array(11, 32, ), - /* 184 */ array(23, 42, ), - /* 185 */ array(8, ), - /* 186 */ array(22, ), - /* 187 */ array(4, ), - /* 188 */ array(27, ), - /* 189 */ array(28, ), - /* 190 */ array(15, ), - /* 191 */ array(40, ), - /* 192 */ array(32, ), - /* 193 */ array(10, ), - /* 194 */ array(69, ), - /* 195 */ array(9, ), - /* 196 */ array(8, ), - /* 197 */ array(9, ), - /* 198 */ array(40, ), - /* 199 */ array(9, ), - /* 200 */ array(9, ), - /* 201 */ array(15, ), - /* 202 */ array(19, ), - /* 203 */ array(3, ), - /* 204 */ array(19, ), - /* 205 */ array(8, ), - /* 206 */ array(4, ), - /* 207 */ array(11, ), - /* 208 */ array(3, ), - /* 209 */ array(9, ), - /* 210 */ array(27, ), + /* 170 */ array(26, 32, 37, 41, ), + /* 171 */ array(20, 26, 37, ), + /* 172 */ array(26, 37, 42, ), + /* 173 */ array(11, 26, 37, ), + /* 174 */ array(23, 41, ), + /* 175 */ array(11, 24, ), + /* 176 */ array(10, 22, ), + /* 177 */ array(26, 37, ), + /* 178 */ array(11, 32, ), + /* 179 */ array(26, 37, ), + /* 180 */ array(8, 15, ), + /* 181 */ array(26, 37, ), + /* 182 */ array(17, 23, ), + /* 183 */ array(26, 37, ), + /* 184 */ array(10, 38, ), + /* 185 */ array(9, ), + /* 186 */ array(9, ), + /* 187 */ array(8, ), + /* 188 */ array(9, ), + /* 189 */ array(32, ), + /* 190 */ array(11, ), + /* 191 */ array(22, ), + /* 192 */ array(19, ), + /* 193 */ array(8, ), + /* 194 */ array(39, ), + /* 195 */ array(28, ), + /* 196 */ array(39, ), + /* 197 */ array(19, ), + /* 198 */ array(8, ), + /* 199 */ array(10, ), + /* 200 */ array(26, ), + /* 201 */ array(27, ), + /* 202 */ array(41, ), + /* 203 */ array(68, ), + /* 204 */ array(11, ), + /* 205 */ array(27, ), + /* 206 */ array(10, ), + /* 207 */ array(4, ), + /* 208 */ array(8, ), + /* 209 */ array(3, ), + /* 210 */ array(15, ), /* 211 */ array(10, ), - /* 212 */ array(28, ), - /* 213 */ array(26, ), - /* 214 */ array(10, ), - /* 215 */ array(10, ), - /* 216 */ array(24, ), - /* 217 */ array(27, ), - /* 218 */ array(10, ), - /* 219 */ array(20, ), - /* 220 */ array(11, ), - /* 221 */ array(18, ), - /* 222 */ array(56, ), - /* 223 */ array(8, ), + /* 212 */ array(18, ), + /* 213 */ array(4, ), + /* 214 */ array(9, ), + /* 215 */ array(3, ), + /* 216 */ array(15, ), + /* 217 */ array(10, ), + /* 218 */ array(9, ), + /* 219 */ array(8, ), + /* 220 */ array(20, ), + /* 221 */ array(55, ), + /* 222 */ array(10, ), + /* 223 */ array(27, ), /* 224 */ array(10, ), - /* 225 */ array(42, ), - /* 226 */ array(10, ), - /* 227 */ array(8, ), + /* 225 */ array(28, ), + /* 226 */ array(24, ), + /* 227 */ array(10, ), /* 228 */ array(), /* 229 */ array(), /* 230 */ array(), @@ -959,48 +952,44 @@ static public $yy_action = array( /* 352 */ array(), /* 353 */ array(), /* 354 */ array(), - /* 355 */ array(), - /* 356 */ array(), - /* 357 */ array(), - /* 358 */ array(), ); static public $yy_default = array( - /* 0 */ 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, - /* 10 */ 541, 541, 541, 527, 541, 541, 485, 541, 485, 541, - /* 20 */ 541, 485, 541, 485, 541, 541, 541, 541, 541, 541, - /* 30 */ 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, - /* 40 */ 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, - /* 50 */ 541, 541, 541, 446, 541, 405, 405, 405, 405, 405, - /* 60 */ 541, 405, 541, 495, 495, 495, 359, 541, 541, 456, - /* 70 */ 456, 541, 541, 541, 428, 428, 541, 541, 541, 541, - /* 80 */ 541, 541, 541, 419, 449, 405, 441, 442, 405, 405, - /* 90 */ 449, 405, 541, 541, 541, 541, 541, 505, 509, 499, - /* 100 */ 508, 501, 500, 493, 504, 541, 541, 541, 541, 541, - /* 110 */ 541, 541, 541, 490, 416, 541, 541, 541, 541, 541, - /* 120 */ 484, 541, 541, 541, 541, 541, 454, 476, 541, 479, - /* 130 */ 477, 541, 478, 541, 541, 456, 541, 541, 541, 541, - /* 140 */ 541, 541, 541, 541, 456, 414, 540, 411, 540, 389, - /* 150 */ 423, 473, 418, 541, 496, 444, 447, 424, 443, 530, - /* 160 */ 407, 528, 529, 456, 456, 489, 456, 489, 489, 489, - /* 170 */ 541, 406, 415, 410, 541, 541, 491, 470, 541, 419, - /* 180 */ 541, 510, 415, 431, 541, 541, 541, 541, 541, 437, - /* 190 */ 541, 541, 431, 541, 541, 541, 541, 541, 541, 541, - /* 200 */ 541, 541, 541, 541, 541, 419, 541, 541, 541, 541, - /* 210 */ 541, 541, 541, 541, 541, 541, 470, 541, 541, 419, - /* 220 */ 410, 428, 419, 541, 541, 541, 541, 541, 402, 398, - /* 230 */ 399, 535, 371, 396, 388, 360, 452, 361, 486, 487, - /* 240 */ 429, 397, 430, 422, 480, 451, 463, 534, 537, 533, - /* 250 */ 465, 467, 538, 440, 536, 475, 466, 464, 532, 450, - /* 260 */ 531, 482, 413, 372, 539, 390, 455, 412, 445, 439, - /* 270 */ 363, 409, 362, 461, 403, 426, 437, 492, 427, 511, - /* 280 */ 519, 520, 417, 370, 425, 368, 474, 506, 507, 503, - /* 290 */ 502, 404, 377, 369, 518, 517, 401, 395, 524, 471, - /* 300 */ 481, 483, 448, 419, 400, 526, 525, 514, 515, 516, - /* 310 */ 513, 512, 468, 497, 498, 367, 366, 391, 392, 469, - /* 320 */ 470, 488, 462, 421, 374, 381, 460, 472, 386, 387, - /* 330 */ 457, 453, 458, 394, 393, 459, 373, 384, 385, 436, - /* 340 */ 365, 435, 378, 420, 494, 521, 522, 523, 434, 376, - /* 350 */ 375, 383, 438, 432, 382, 379, 433, 380, 364, + /* 0 */ 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, + /* 10 */ 534, 534, 534, 520, 534, 534, 534, 478, 534, 478, + /* 20 */ 478, 534, 478, 534, 534, 534, 534, 534, 534, 534, + /* 30 */ 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, + /* 40 */ 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, + /* 50 */ 534, 534, 534, 441, 534, 401, 534, 401, 534, 401, + /* 60 */ 401, 401, 401, 488, 488, 488, 355, 534, 451, 534, + /* 70 */ 451, 424, 424, 534, 444, 534, 534, 534, 534, 415, + /* 80 */ 534, 534, 534, 534, 534, 534, 444, 401, 401, 401, + /* 90 */ 437, 401, 436, 534, 534, 534, 534, 486, 501, 502, + /* 100 */ 492, 497, 498, 493, 494, 534, 534, 534, 534, 534, + /* 110 */ 412, 534, 534, 534, 483, 470, 472, 477, 534, 534, + /* 120 */ 471, 534, 534, 534, 534, 534, 534, 534, 469, 451, + /* 130 */ 534, 534, 534, 449, 534, 534, 534, 534, 534, 534, + /* 140 */ 534, 534, 534, 534, 533, 439, 533, 489, 419, 410, + /* 150 */ 385, 534, 521, 451, 403, 438, 420, 414, 407, 442, + /* 160 */ 522, 466, 523, 482, 482, 482, 482, 451, 451, 451, + /* 170 */ 534, 411, 402, 406, 534, 464, 534, 484, 427, 534, + /* 180 */ 415, 503, 534, 411, 534, 534, 534, 534, 534, 427, + /* 190 */ 534, 534, 534, 534, 534, 432, 534, 534, 534, 534, + /* 200 */ 440, 534, 534, 534, 406, 534, 534, 534, 534, 534, + /* 210 */ 534, 534, 424, 534, 534, 534, 534, 534, 534, 415, + /* 220 */ 415, 415, 534, 534, 534, 534, 464, 534, 399, 510, + /* 230 */ 511, 509, 459, 461, 506, 507, 508, 460, 458, 366, + /* 240 */ 513, 524, 391, 434, 529, 396, 408, 504, 526, 525, + /* 250 */ 505, 435, 531, 527, 530, 512, 365, 393, 394, 395, + /* 260 */ 392, 398, 371, 474, 476, 372, 357, 356, 358, 443, + /* 270 */ 373, 405, 359, 473, 363, 362, 364, 457, 475, 409, + /* 280 */ 361, 490, 517, 370, 360, 519, 369, 518, 491, 386, + /* 290 */ 421, 387, 516, 448, 487, 377, 452, 447, 515, 422, + /* 300 */ 446, 514, 464, 388, 463, 453, 454, 375, 379, 428, + /* 310 */ 430, 376, 378, 431, 374, 455, 380, 456, 467, 417, + /* 320 */ 381, 450, 389, 481, 432, 418, 415, 485, 416, 480, + /* 330 */ 400, 397, 429, 532, 528, 367, 433, 384, 479, 465, + /* 340 */ 499, 413, 500, 390, 423, 445, 462, 468, 425, 426, + /* 350 */ 383, 495, 496, 382, 368, ); /* The next thing included is series of defines which control ** various aspects of the generated parser. @@ -1017,11 +1006,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 = 113; + const YYNOCODE = 112; const YYSTACKDEPTH = 100; - const YYNSTATE = 359; - const YYNRULE = 182; - const YYERRORSYMBOL = 71; + const YYNSTATE = 355; + const YYNRULE = 179; + const YYERRORSYMBOL = 70; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; /** The next table maps tokens into fallback tokens. If a construct @@ -1111,26 +1100,26 @@ static public $yy_action = array( 'APTR', 'LDELSLASH', 'INTEGER', 'COMMA', 'COLON', 'UNIMATH', 'OPENP', 'CLOSEP', 'QMARK', 'MATH', 'ANDSYM', 'TYPECAST', - 'DOT', 'CONSTANT', 'BOOLEAN', 'NULL', - 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', 'AT', - 'HATCH', 'OPENB', 'CLOSEB', 'VERT', - 'NOT', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', - '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', + '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', ); /** @@ -1212,114 +1201,111 @@ static public $yy_action = array( /* 71 */ "value ::= variable INCDEC", /* 72 */ "value ::= INTEGER", /* 73 */ "value ::= INTEGER DOT INTEGER", - /* 74 */ "value ::= CONSTANT", - /* 75 */ "value ::= BOOLEAN", - /* 76 */ "value ::= NULL", - /* 77 */ "value ::= function", - /* 78 */ "value ::= OPENP expr CLOSEP", - /* 79 */ "value ::= SINGLEQUOTESTRING", - /* 80 */ "value ::= QUOTE doublequoted QUOTE", - /* 81 */ "value ::= QUOTE QUOTE", - /* 82 */ "value ::= ID DOUBLECOLON method", - /* 83 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", - /* 84 */ "value ::= ID DOUBLECOLON method objectchain", - /* 85 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", - /* 86 */ "value ::= ID DOUBLECOLON CONSTANT", - /* 87 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", - /* 88 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", - /* 89 */ "value ::= smartytag", - /* 90 */ "variable ::= varindexed", - /* 91 */ "variable ::= DOLLAR varvar AT ID", - /* 92 */ "variable ::= object", - /* 93 */ "variable ::= HATCH ID HATCH", - /* 94 */ "variable ::= HATCH variable HATCH", - /* 95 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 96 */ "arrayindex ::= arrayindex indexdef", - /* 97 */ "arrayindex ::=", - /* 98 */ "indexdef ::= DOT ID", - /* 99 */ "indexdef ::= DOT CONSTANT", - /* 100 */ "indexdef ::= DOT BOOLEAN", - /* 101 */ "indexdef ::= DOT NULL", - /* 102 */ "indexdef ::= DOT INTEGER", - /* 103 */ "indexdef ::= DOT variable", - /* 104 */ "indexdef ::= DOT LDEL exprs RDEL", - /* 105 */ "indexdef ::= OPENB ID CLOSEB", - /* 106 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 107 */ "indexdef ::= OPENB exprs CLOSEB", - /* 108 */ "indexdef ::= OPENB CLOSEB", - /* 109 */ "varvar ::= varvarele", - /* 110 */ "varvar ::= varvar varvarele", - /* 111 */ "varvarele ::= ID", - /* 112 */ "varvarele ::= CONSTANT", - /* 113 */ "varvarele ::= LDEL expr RDEL", - /* 114 */ "object ::= varindexed objectchain", - /* 115 */ "objectchain ::= objectelement", - /* 116 */ "objectchain ::= objectchain objectelement", - /* 117 */ "objectelement ::= PTR ID arrayindex", - /* 118 */ "objectelement ::= PTR variable arrayindex", - /* 119 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 120 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 121 */ "objectelement ::= PTR method", - /* 122 */ "function ::= ID OPENP params CLOSEP", - /* 123 */ "method ::= ID OPENP params CLOSEP", - /* 124 */ "params ::= expr COMMA params", - /* 125 */ "params ::= expr", - /* 126 */ "params ::=", - /* 127 */ "modifier ::= VERT AT ID", - /* 128 */ "modifier ::= VERT ID", - /* 129 */ "modparameters ::= modparameters modparameter", - /* 130 */ "modparameters ::=", - /* 131 */ "modparameter ::= COLON exprs", - /* 132 */ "modparameter ::= COLON ID", - /* 133 */ "ifexprs ::= ifexpr", - /* 134 */ "ifexprs ::= NOT ifexprs", - /* 135 */ "ifexprs ::= OPENP ifexprs CLOSEP", - /* 136 */ "ifexpr ::= expr", - /* 137 */ "ifexpr ::= expr ifcond expr", - /* 138 */ "ifexpr ::= expr ISIN array", - /* 139 */ "ifexpr ::= expr ISIN value", - /* 140 */ "ifexpr ::= ifexprs lop ifexprs", - /* 141 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", - /* 142 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", - /* 143 */ "ifexpr ::= ifexprs ISEVEN", - /* 144 */ "ifexpr ::= ifexprs ISNOTEVEN", - /* 145 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", - /* 146 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", - /* 147 */ "ifexpr ::= ifexprs ISODD", - /* 148 */ "ifexpr ::= ifexprs ISNOTODD", - /* 149 */ "ifexpr ::= ifexprs ISODDBY ifexprs", - /* 150 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", - /* 151 */ "ifexpr ::= value INSTANCEOF ID", - /* 152 */ "ifexpr ::= value INSTANCEOF value", - /* 153 */ "ifcond ::= EQUALS", - /* 154 */ "ifcond ::= NOTEQUALS", - /* 155 */ "ifcond ::= GREATERTHAN", - /* 156 */ "ifcond ::= LESSTHAN", - /* 157 */ "ifcond ::= GREATEREQUAL", - /* 158 */ "ifcond ::= LESSEQUAL", - /* 159 */ "ifcond ::= IDENTITY", - /* 160 */ "ifcond ::= NONEIDENTITY", - /* 161 */ "ifcond ::= MOD", - /* 162 */ "lop ::= LAND", - /* 163 */ "lop ::= LOR", - /* 164 */ "lop ::= LXOR", - /* 165 */ "array ::= OPENB arrayelements CLOSEB", - /* 166 */ "arrayelements ::= arrayelement", - /* 167 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 168 */ "arrayelements ::=", - /* 169 */ "arrayelement ::= value APTR expr", - /* 170 */ "arrayelement ::= ID APTR expr", - /* 171 */ "arrayelement ::= expr", - /* 172 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 173 */ "doublequoted ::= doublequotedcontent", - /* 174 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 175 */ "doublequotedcontent ::= DOLLARID", - /* 176 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 177 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 178 */ "doublequotedcontent ::= smartytag", - /* 179 */ "doublequotedcontent ::= OTHER", - /* 180 */ "optspace ::= SPACE", - /* 181 */ "optspace ::=", + /* 74 */ "value ::= BOOLEAN", + /* 75 */ "value ::= NULL", + /* 76 */ "value ::= function", + /* 77 */ "value ::= OPENP expr CLOSEP", + /* 78 */ "value ::= SINGLEQUOTESTRING", + /* 79 */ "value ::= QUOTE doublequoted QUOTE", + /* 80 */ "value ::= QUOTE QUOTE", + /* 81 */ "value ::= ID DOUBLECOLON method", + /* 82 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", + /* 83 */ "value ::= ID DOUBLECOLON method objectchain", + /* 84 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", + /* 85 */ "value ::= ID DOUBLECOLON ID", + /* 86 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", + /* 87 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", + /* 88 */ "value ::= smartytag", + /* 89 */ "variable ::= varindexed", + /* 90 */ "variable ::= DOLLAR varvar AT ID", + /* 91 */ "variable ::= object", + /* 92 */ "variable ::= HATCH ID HATCH", + /* 93 */ "variable ::= HATCH variable HATCH", + /* 94 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 95 */ "arrayindex ::= arrayindex indexdef", + /* 96 */ "arrayindex ::=", + /* 97 */ "indexdef ::= DOT ID", + /* 98 */ "indexdef ::= DOT BOOLEAN", + /* 99 */ "indexdef ::= DOT NULL", + /* 100 */ "indexdef ::= DOT INTEGER", + /* 101 */ "indexdef ::= DOT variable", + /* 102 */ "indexdef ::= DOT LDEL exprs RDEL", + /* 103 */ "indexdef ::= OPENB ID CLOSEB", + /* 104 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 105 */ "indexdef ::= OPENB exprs CLOSEB", + /* 106 */ "indexdef ::= OPENB CLOSEB", + /* 107 */ "varvar ::= varvarele", + /* 108 */ "varvar ::= varvar varvarele", + /* 109 */ "varvarele ::= ID", + /* 110 */ "varvarele ::= LDEL expr RDEL", + /* 111 */ "object ::= varindexed objectchain", + /* 112 */ "objectchain ::= objectelement", + /* 113 */ "objectchain ::= objectchain objectelement", + /* 114 */ "objectelement ::= PTR ID arrayindex", + /* 115 */ "objectelement ::= PTR variable arrayindex", + /* 116 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 117 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 118 */ "objectelement ::= PTR method", + /* 119 */ "function ::= ID OPENP params CLOSEP", + /* 120 */ "method ::= ID OPENP params CLOSEP", + /* 121 */ "params ::= expr COMMA params", + /* 122 */ "params ::= expr", + /* 123 */ "params ::=", + /* 124 */ "modifier ::= VERT AT ID", + /* 125 */ "modifier ::= VERT ID", + /* 126 */ "modparameters ::= modparameters modparameter", + /* 127 */ "modparameters ::=", + /* 128 */ "modparameter ::= COLON exprs", + /* 129 */ "modparameter ::= COLON ID", + /* 130 */ "ifexprs ::= ifexpr", + /* 131 */ "ifexprs ::= NOT ifexprs", + /* 132 */ "ifexprs ::= OPENP ifexprs CLOSEP", + /* 133 */ "ifexpr ::= expr", + /* 134 */ "ifexpr ::= expr ifcond expr", + /* 135 */ "ifexpr ::= expr ISIN array", + /* 136 */ "ifexpr ::= expr ISIN value", + /* 137 */ "ifexpr ::= ifexprs lop ifexprs", + /* 138 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", + /* 139 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", + /* 140 */ "ifexpr ::= ifexprs ISEVEN", + /* 141 */ "ifexpr ::= ifexprs ISNOTEVEN", + /* 142 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", + /* 143 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", + /* 144 */ "ifexpr ::= ifexprs ISODD", + /* 145 */ "ifexpr ::= ifexprs ISNOTODD", + /* 146 */ "ifexpr ::= ifexprs ISODDBY ifexprs", + /* 147 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", + /* 148 */ "ifexpr ::= value INSTANCEOF ID", + /* 149 */ "ifexpr ::= value INSTANCEOF value", + /* 150 */ "ifcond ::= EQUALS", + /* 151 */ "ifcond ::= NOTEQUALS", + /* 152 */ "ifcond ::= GREATERTHAN", + /* 153 */ "ifcond ::= LESSTHAN", + /* 154 */ "ifcond ::= GREATEREQUAL", + /* 155 */ "ifcond ::= LESSEQUAL", + /* 156 */ "ifcond ::= IDENTITY", + /* 157 */ "ifcond ::= NONEIDENTITY", + /* 158 */ "ifcond ::= MOD", + /* 159 */ "lop ::= LAND", + /* 160 */ "lop ::= LOR", + /* 161 */ "lop ::= LXOR", + /* 162 */ "array ::= OPENB arrayelements CLOSEB", + /* 163 */ "arrayelements ::= arrayelement", + /* 164 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 165 */ "arrayelements ::=", + /* 166 */ "arrayelement ::= value APTR expr", + /* 167 */ "arrayelement ::= ID APTR expr", + /* 168 */ "arrayelement ::= expr", + /* 169 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 170 */ "doublequoted ::= doublequotedcontent", + /* 171 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 172 */ "doublequotedcontent ::= DOLLARID", + /* 173 */ "doublequotedcontent ::= LDEL variable RDEL", + /* 174 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 175 */ "doublequotedcontent ::= smartytag", + /* 176 */ "doublequotedcontent ::= OTHER", + /* 177 */ "optspace ::= SPACE", + /* 178 */ "optspace ::=", ); /** @@ -1684,188 +1670,185 @@ static public $yy_action = array( * */ static public $yyRuleInfo = array( + array( 'lhs' => 71, 'rhs' => 1 ), array( 'lhs' => 72, 'rhs' => 1 ), + array( 'lhs' => 72, 'rhs' => 2 ), array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 2 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 73, 'rhs' => 1 ), + array( 'lhs' => 73, 'rhs' => 3 ), + array( 'lhs' => 73, 'rhs' => 3 ), + array( 'lhs' => 73, 'rhs' => 1 ), + array( 'lhs' => 73, 'rhs' => 1 ), + array( 'lhs' => 73, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 6 ), + array( 'lhs' => 74, 'rhs' => 6 ), + array( 'lhs' => 74, 'rhs' => 7 ), + array( 'lhs' => 74, 'rhs' => 7 ), + array( 'lhs' => 74, 'rhs' => 6 ), + array( 'lhs' => 74, 'rhs' => 6 ), + array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 6 ), + array( 'lhs' => 74, 'rhs' => 6 ), + array( 'lhs' => 74, 'rhs' => 8 ), + array( 'lhs' => 74, 'rhs' => 5 ), + array( 'lhs' => 74, 'rhs' => 5 ), + array( 'lhs' => 74, 'rhs' => 13 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 8 ), + array( 'lhs' => 74, 'rhs' => 11 ), + array( 'lhs' => 74, 'rhs' => 8 ), + array( 'lhs' => 74, 'rhs' => 11 ), 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' => 11 ), - array( 'lhs' => 75, 'rhs' => 8 ), - array( 'lhs' => 75, 'rhs' => 11 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 75, 'rhs' => 5 ), - array( 'lhs' => 77, 'rhs' => 2 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 0 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 2 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 3 ), - array( 'lhs' => 85, 'rhs' => 4 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 4 ), - array( 'lhs' => 79, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 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' => 90, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 6 ), + array( 'lhs' => 74, 'rhs' => 5 ), array( 'lhs' => 76, 'rhs' => 2 ), array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 2 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 7 ), - array( 'lhs' => 76, 'rhs' => 4 ), - array( 'lhs' => 76, 'rhs' => 8 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 76, 'rhs' => 5 ), - array( 'lhs' => 76, 'rhs' => 6 ), - array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 0 ), + array( 'lhs' => 91, 'rhs' => 4 ), + array( 'lhs' => 91, 'rhs' => 4 ), + array( 'lhs' => 91, 'rhs' => 4 ), + array( 'lhs' => 91, 'rhs' => 4 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 4 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 84, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 1 ), array( 'lhs' => 78, 'rhs' => 1 ), array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 1 ), array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 100, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 0 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 4 ), - array( 'lhs' => 102, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 5 ), - array( 'lhs' => 102, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 88, 'rhs' => 1 ), - array( 'lhs' => 88, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 99, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 2 ), + array( 'lhs' => 92, 'rhs' => 3 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 7 ), + array( 'lhs' => 79, 'rhs' => 7 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 2 ), + array( 'lhs' => 75, 'rhs' => 2 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 2 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 7 ), + array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 75, 'rhs' => 8 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 5 ), + array( 'lhs' => 75, 'rhs' => 6 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 4 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 3 ), + array( 'lhs' => 77, 'rhs' => 3 ), + array( 'lhs' => 80, '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' => 99, 'rhs' => 0 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 101, 'rhs' => 4 ), + array( 'lhs' => 101, 'rhs' => 3 ), + array( 'lhs' => 101, 'rhs' => 5 ), + array( 'lhs' => 101, 'rhs' => 3 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 1 ), + array( 'lhs' => 102, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 2 ), array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 0 ), - array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 98, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 5 ), + array( 'lhs' => 103, 'rhs' => 6 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 94, 'rhs' => 4 ), + array( 'lhs' => 96, 'rhs' => 4 ), + array( 'lhs' => 97, 'rhs' => 3 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 0 ), + array( 'lhs' => 81, 'rhs' => 3 ), + array( 'lhs' => 81, 'rhs' => 2 ), array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 0 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 1 ), array( 'lhs' => 83, 'rhs' => 2 ), - array( 'lhs' => 83, 'rhs' => 0 ), + array( 'lhs' => 83, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 1 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), array( 'lhs' => 105, 'rhs' => 2 ), array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 1 ), 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' => 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' => 89, 'rhs' => 3 ), 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' => 108, 'rhs' => 3 ), + array( 'lhs' => 108, 'rhs' => 0 ), array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 0 ), + array( 'lhs' => 109, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 1 ), array( 'lhs' => 110, 'rhs' => 3 ), array( 'lhs' => 110, 'rhs' => 3 ), array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 0 ), + array( 'lhs' => 110, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 0 ), ); /** @@ -1885,22 +1868,21 @@ static public $yy_action = array( 74 => 0, 75 => 0, 76 => 0, - 77 => 0, - 79 => 0, - 92 => 0, - 166 => 0, + 78 => 0, + 91 => 0, + 163 => 0, 1 => 1, 57 => 1, 63 => 1, 66 => 1, 67 => 1, - 109 => 1, - 133 => 1, - 173 => 1, - 179 => 1, - 180 => 1, + 107 => 1, + 130 => 1, + 170 => 1, + 176 => 1, + 177 => 1, 2 => 2, - 129 => 2, + 126 => 2, 3 => 3, 4 => 4, 5 => 5, @@ -1931,8 +1913,8 @@ static public $yy_action = array( 30 => 30, 31 => 31, 45 => 31, - 125 => 31, - 171 => 31, + 122 => 31, + 168 => 31, 32 => 32, 33 => 33, 34 => 34, @@ -1964,7 +1946,8 @@ static public $yy_action = array( 65 => 64, 68 => 68, 73 => 73, - 78 => 78, + 77 => 77, + 79 => 79, 80 => 80, 81 => 81, 82 => 82, @@ -1976,31 +1959,31 @@ static public $yy_action = array( 88 => 88, 89 => 89, 90 => 90, - 91 => 91, + 92 => 92, 93 => 93, 94 => 94, 95 => 95, + 169 => 95, 96 => 96, - 172 => 96, + 127 => 96, 97 => 97, - 130 => 97, - 98 => 98, - 99 => 98, - 100 => 98, - 101 => 98, + 98 => 97, + 99 => 97, + 100 => 100, + 101 => 101, 102 => 102, + 105 => 102, 103 => 103, 104 => 104, - 107 => 104, - 105 => 105, 106 => 106, + 178 => 106, 108 => 108, - 181 => 108, + 109 => 109, 110 => 110, + 132 => 110, 111 => 111, - 112 => 111, + 112 => 112, 113 => 113, - 135 => 113, 114 => 114, 115 => 115, 116 => 116, @@ -2009,31 +1992,31 @@ static public $yy_action = array( 119 => 119, 120 => 120, 121 => 121, - 122 => 122, 123 => 123, 124 => 124, - 126 => 126, - 127 => 127, + 125 => 125, 128 => 128, + 129 => 129, 131 => 131, - 132 => 132, + 133 => 133, 134 => 134, + 137 => 134, + 148 => 134, + 135 => 135, 136 => 136, - 137 => 137, - 140 => 137, - 151 => 137, 138 => 138, 139 => 139, + 140 => 140, + 145 => 140, 141 => 141, + 144 => 141, 142 => 142, + 147 => 142, 143 => 143, - 148 => 143, - 144 => 144, - 147 => 144, - 145 => 145, - 150 => 145, - 146 => 146, - 149 => 146, + 146 => 143, + 149 => 149, + 150 => 150, + 151 => 151, 152 => 152, 153 => 153, 154 => 154, @@ -2045,18 +2028,15 @@ static public $yy_action = array( 160 => 160, 161 => 161, 162 => 162, - 163 => 163, 164 => 164, 165 => 165, + 166 => 166, 167 => 167, - 168 => 168, - 169 => 169, - 170 => 170, + 171 => 171, + 173 => 171, + 172 => 172, 174 => 174, - 176 => 174, 175 => 175, - 177 => 177, - 178 => 178, ); /* Beginning here are the reduction cases. A typical example ** follows: @@ -2066,23 +2046,23 @@ static public $yy_action = array( */ #line 78 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2074 "smarty_internal_templateparser.php" +#line 2054 "smarty_internal_templateparser.php" #line 84 "smarty_internal_templateparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2077 "smarty_internal_templateparser.php" +#line 2057 "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 2080 "smarty_internal_templateparser.php" +#line 2060 "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 2087 "smarty_internal_templateparser.php" +#line 2067 "smarty_internal_templateparser.php" #line 99 "smarty_internal_templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 2090 "smarty_internal_templateparser.php" +#line 2070 "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); @@ -2094,7 +2074,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2102 "smarty_internal_templateparser.php" +#line 2082 "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) { @@ -2105,40 +2085,40 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2113 "smarty_internal_templateparser.php" +#line 2093 "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 2116 "smarty_internal_templateparser.php" +#line 2096 "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 2119 "smarty_internal_templateparser.php" +#line 2099 "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 2122 "smarty_internal_templateparser.php" +#line 2102 "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 2125 "smarty_internal_templateparser.php" +#line 2105 "smarty_internal_templateparser.php" #line 138 "smarty_internal_templateparser.y" function yy_r11(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2128 "smarty_internal_templateparser.php" +#line 2108 "smarty_internal_templateparser.php" #line 149 "smarty_internal_templateparser.y" function yy_r15(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } -#line 2131 "smarty_internal_templateparser.php" +#line 2111 "smarty_internal_templateparser.php" #line 151 "smarty_internal_templateparser.y" function yy_r17(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2134 "smarty_internal_templateparser.php" +#line 2114 "smarty_internal_templateparser.php" #line 153 "smarty_internal_templateparser.y" function yy_r19(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } -#line 2137 "smarty_internal_templateparser.php" +#line 2117 "smarty_internal_templateparser.php" #line 156 "smarty_internal_templateparser.y" function yy_r21(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2140 "smarty_internal_templateparser.php" +#line 2120 "smarty_internal_templateparser.php" #line 158 "smarty_internal_templateparser.y" function yy_r23(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2143 "smarty_internal_templateparser.php" +#line 2123 "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 2146 "smarty_internal_templateparser.php" +#line 2126 "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')) { @@ -2153,7 +2133,7 @@ static public $yy_action = array( } } } -#line 2161 "smarty_internal_templateparser.php" +#line 2141 "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')) { @@ -2168,42 +2148,42 @@ static public $yy_action = array( } } } -#line 2176 "smarty_internal_templateparser.php" +#line 2156 "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 2179 "smarty_internal_templateparser.php" +#line 2159 "smarty_internal_templateparser.php" #line 193 "smarty_internal_templateparser.y" function yy_r29(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2183 "smarty_internal_templateparser.php" +#line 2163 "smarty_internal_templateparser.php" #line 195 "smarty_internal_templateparser.y" function yy_r30(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2186 "smarty_internal_templateparser.php" +#line 2166 "smarty_internal_templateparser.php" #line 196 "smarty_internal_templateparser.y" function yy_r31(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2189 "smarty_internal_templateparser.php" +#line 2169 "smarty_internal_templateparser.php" #line 198 "smarty_internal_templateparser.y" function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2193 "smarty_internal_templateparser.php" +#line 2173 "smarty_internal_templateparser.php" #line 200 "smarty_internal_templateparser.y" function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2197 "smarty_internal_templateparser.php" +#line 2177 "smarty_internal_templateparser.php" #line 202 "smarty_internal_templateparser.y" function yy_r34(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2201 "smarty_internal_templateparser.php" +#line 2181 "smarty_internal_templateparser.php" #line 204 "smarty_internal_templateparser.y" function yy_r35(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2205 "smarty_internal_templateparser.php" +#line 2185 "smarty_internal_templateparser.php" #line 208 "smarty_internal_templateparser.y" function yy_r36(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } -#line 2208 "smarty_internal_templateparser.php" +#line 2188 "smarty_internal_templateparser.php" #line 213 "smarty_internal_templateparser.y" function yy_r41(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 2211 "smarty_internal_templateparser.php" +#line 2191 "smarty_internal_templateparser.php" #line 214 "smarty_internal_templateparser.y" function yy_r42(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { @@ -2218,40 +2198,40 @@ static public $yy_action = array( } } } -#line 2226 "smarty_internal_templateparser.php" +#line 2206 "smarty_internal_templateparser.php" #line 228 "smarty_internal_templateparser.y" function yy_r43(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2229 "smarty_internal_templateparser.php" +#line 2209 "smarty_internal_templateparser.php" #line 235 "smarty_internal_templateparser.y" function yy_r44(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2232 "smarty_internal_templateparser.php" +#line 2212 "smarty_internal_templateparser.php" #line 239 "smarty_internal_templateparser.y" function yy_r46(){ $this->_retvalue = array(); } -#line 2235 "smarty_internal_templateparser.php" +#line 2215 "smarty_internal_templateparser.php" #line 242 "smarty_internal_templateparser.y" function yy_r47(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } -#line 2238 "smarty_internal_templateparser.php" +#line 2218 "smarty_internal_templateparser.php" #line 243 "smarty_internal_templateparser.y" function yy_r48(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2241 "smarty_internal_templateparser.php" +#line 2221 "smarty_internal_templateparser.php" #line 246 "smarty_internal_templateparser.y" function yy_r51(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2244 "smarty_internal_templateparser.php" +#line 2224 "smarty_internal_templateparser.php" #line 253 "smarty_internal_templateparser.y" function yy_r53(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2247 "smarty_internal_templateparser.php" +#line 2227 "smarty_internal_templateparser.php" #line 254 "smarty_internal_templateparser.y" function yy_r54(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2250 "smarty_internal_templateparser.php" +#line 2230 "smarty_internal_templateparser.php" #line 256 "smarty_internal_templateparser.y" function yy_r55(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2253 "smarty_internal_templateparser.php" +#line 2233 "smarty_internal_templateparser.php" #line 262 "smarty_internal_templateparser.y" function yy_r56(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2256 "smarty_internal_templateparser.php" +#line 2236 "smarty_internal_templateparser.php" #line 265 "smarty_internal_templateparser.y" function yy_r58(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2259 "smarty_internal_templateparser.php" +#line 2239 "smarty_internal_templateparser.php" #line 266 "smarty_internal_templateparser.y" function yy_r59(){ if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) { @@ -2266,267 +2246,267 @@ static public $yy_action = array( } } } -#line 2274 "smarty_internal_templateparser.php" +#line 2254 "smarty_internal_templateparser.php" #line 283 "smarty_internal_templateparser.y" function yy_r61(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2277 "smarty_internal_templateparser.php" +#line 2257 "smarty_internal_templateparser.php" #line 285 "smarty_internal_templateparser.y" function yy_r62(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } -#line 2280 "smarty_internal_templateparser.php" +#line 2260 "smarty_internal_templateparser.php" #line 292 "smarty_internal_templateparser.y" function yy_r64(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2283 "smarty_internal_templateparser.php" +#line 2263 "smarty_internal_templateparser.php" #line 306 "smarty_internal_templateparser.y" function yy_r68(){$this->_retvalue = ' & '; } -#line 2286 "smarty_internal_templateparser.php" +#line 2266 "smarty_internal_templateparser.php" #line 314 "smarty_internal_templateparser.y" function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2289 "smarty_internal_templateparser.php" +#line 2269 "smarty_internal_templateparser.php" #line 324 "smarty_internal_templateparser.y" - function yy_r78(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2292 "smarty_internal_templateparser.php" + function yy_r77(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2272 "smarty_internal_templateparser.php" #line 328 "smarty_internal_templateparser.y" - function yy_r80(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); + function yy_r79(){ $_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 2301 "smarty_internal_templateparser.php" +#line 2281 "smarty_internal_templateparser.php" #line 335 "smarty_internal_templateparser.y" - function yy_r81(){ $this->_retvalue = "''"; } -#line 2304 "smarty_internal_templateparser.php" + function yy_r80(){ $this->_retvalue = "''"; } +#line 2284 "smarty_internal_templateparser.php" #line 337 "smarty_internal_templateparser.y" - function yy_r82(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2307 "smarty_internal_templateparser.php" + function yy_r81(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2287 "smarty_internal_templateparser.php" #line 338 "smarty_internal_templateparser.y" - function yy_r83(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2310 "smarty_internal_templateparser.php" + function yy_r82(){ $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 2290 "smarty_internal_templateparser.php" #line 340 "smarty_internal_templateparser.y" - function yy_r84(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2313 "smarty_internal_templateparser.php" + function yy_r83(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2293 "smarty_internal_templateparser.php" #line 341 "smarty_internal_templateparser.y" - function yy_r85(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2316 "smarty_internal_templateparser.php" + function yy_r84(){ $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 2296 "smarty_internal_templateparser.php" #line 343 "smarty_internal_templateparser.y" - function yy_r86(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2319 "smarty_internal_templateparser.php" + function yy_r85(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2299 "smarty_internal_templateparser.php" #line 345 "smarty_internal_templateparser.y" - function yy_r87(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2322 "smarty_internal_templateparser.php" + function yy_r86(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2302 "smarty_internal_templateparser.php" #line 347 "smarty_internal_templateparser.y" - function yy_r88(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2325 "smarty_internal_templateparser.php" + function yy_r87(){ $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 2305 "smarty_internal_templateparser.php" #line 349 "smarty_internal_templateparser.y" - function yy_r89(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2328 "smarty_internal_templateparser.php" + function yy_r88(){ $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 2308 "smarty_internal_templateparser.php" #line 358 "smarty_internal_templateparser.y" - function yy_r90(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { + function yy_r89(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2332 "smarty_internal_templateparser.php" +#line 2312 "smarty_internal_templateparser.php" #line 361 "smarty_internal_templateparser.y" - function yy_r91(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2335 "smarty_internal_templateparser.php" + function yy_r90(){ $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 2315 "smarty_internal_templateparser.php" #line 365 "smarty_internal_templateparser.y" - function yy_r93(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2338 "smarty_internal_templateparser.php" + function yy_r92(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } +#line 2318 "smarty_internal_templateparser.php" #line 366 "smarty_internal_templateparser.y" - function yy_r94(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2341 "smarty_internal_templateparser.php" + function yy_r93(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2321 "smarty_internal_templateparser.php" #line 369 "smarty_internal_templateparser.y" - function yy_r95(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2344 "smarty_internal_templateparser.php" + function yy_r94(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2324 "smarty_internal_templateparser.php" #line 375 "smarty_internal_templateparser.y" - function yy_r96(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2347 "smarty_internal_templateparser.php" + function yy_r95(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2327 "smarty_internal_templateparser.php" #line 377 "smarty_internal_templateparser.y" - function yy_r97(){return; } -#line 2350 "smarty_internal_templateparser.php" + function yy_r96(){return; } +#line 2330 "smarty_internal_templateparser.php" #line 381 "smarty_internal_templateparser.y" - function yy_r98(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2353 "smarty_internal_templateparser.php" + function yy_r97(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2333 "smarty_internal_templateparser.php" #line 385 "smarty_internal_templateparser.y" - function yy_r102(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2356 "smarty_internal_templateparser.php" + function yy_r100(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2336 "smarty_internal_templateparser.php" #line 386 "smarty_internal_templateparser.y" - function yy_r103(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } -#line 2359 "smarty_internal_templateparser.php" + function yy_r101(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } +#line 2339 "smarty_internal_templateparser.php" #line 387 "smarty_internal_templateparser.y" - function yy_r104(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2362 "smarty_internal_templateparser.php" + function yy_r102(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2342 "smarty_internal_templateparser.php" #line 389 "smarty_internal_templateparser.y" - function yy_r105(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2365 "smarty_internal_templateparser.php" + function yy_r103(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2345 "smarty_internal_templateparser.php" #line 390 "smarty_internal_templateparser.y" - function yy_r106(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2368 "smarty_internal_templateparser.php" + function yy_r104(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2348 "smarty_internal_templateparser.php" #line 394 "smarty_internal_templateparser.y" - function yy_r108(){$this->_retvalue = ''; } -#line 2371 "smarty_internal_templateparser.php" + function yy_r106(){$this->_retvalue = ''; } +#line 2351 "smarty_internal_templateparser.php" #line 402 "smarty_internal_templateparser.y" - function yy_r110(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2374 "smarty_internal_templateparser.php" + function yy_r108(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2354 "smarty_internal_templateparser.php" #line 404 "smarty_internal_templateparser.y" - function yy_r111(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2377 "smarty_internal_templateparser.php" + function yy_r109(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2357 "smarty_internal_templateparser.php" #line 407 "smarty_internal_templateparser.y" - function yy_r113(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2380 "smarty_internal_templateparser.php" + function yy_r110(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2360 "smarty_internal_templateparser.php" #line 412 "smarty_internal_templateparser.y" - function yy_r114(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else { + function yy_r111(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2384 "smarty_internal_templateparser.php" +#line 2364 "smarty_internal_templateparser.php" #line 415 "smarty_internal_templateparser.y" - function yy_r115(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2387 "smarty_internal_templateparser.php" + function yy_r112(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2367 "smarty_internal_templateparser.php" #line 417 "smarty_internal_templateparser.y" - function yy_r116(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2390 "smarty_internal_templateparser.php" + function yy_r113(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2370 "smarty_internal_templateparser.php" #line 419 "smarty_internal_templateparser.y" - function yy_r117(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2393 "smarty_internal_templateparser.php" + function yy_r114(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2373 "smarty_internal_templateparser.php" #line 420 "smarty_internal_templateparser.y" - function yy_r118(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2396 "smarty_internal_templateparser.php" + function yy_r115(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2376 "smarty_internal_templateparser.php" #line 421 "smarty_internal_templateparser.y" - function yy_r119(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2399 "smarty_internal_templateparser.php" + function yy_r116(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2379 "smarty_internal_templateparser.php" #line 422 "smarty_internal_templateparser.y" - function yy_r120(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2402 "smarty_internal_templateparser.php" + function yy_r117(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2382 "smarty_internal_templateparser.php" #line 424 "smarty_internal_templateparser.y" - function yy_r121(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2405 "smarty_internal_templateparser.php" + function yy_r118(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2385 "smarty_internal_templateparser.php" #line 430 "smarty_internal_templateparser.y" - function yy_r122(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r119(){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 2414 "smarty_internal_templateparser.php" +#line 2394 "smarty_internal_templateparser.php" #line 441 "smarty_internal_templateparser.y" - function yy_r123(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2417 "smarty_internal_templateparser.php" + function yy_r120(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2397 "smarty_internal_templateparser.php" #line 445 "smarty_internal_templateparser.y" - function yy_r124(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2420 "smarty_internal_templateparser.php" + function yy_r121(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } +#line 2400 "smarty_internal_templateparser.php" #line 449 "smarty_internal_templateparser.y" - function yy_r126(){ return; } -#line 2423 "smarty_internal_templateparser.php" + function yy_r123(){ return; } +#line 2403 "smarty_internal_templateparser.php" #line 454 "smarty_internal_templateparser.y" - function yy_r127(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } -#line 2426 "smarty_internal_templateparser.php" + function yy_r124(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } +#line 2406 "smarty_internal_templateparser.php" #line 455 "smarty_internal_templateparser.y" - function yy_r128(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } -#line 2429 "smarty_internal_templateparser.php" + function yy_r125(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } +#line 2409 "smarty_internal_templateparser.php" #line 471 "smarty_internal_templateparser.y" - function yy_r131(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2432 "smarty_internal_templateparser.php" + function yy_r128(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2412 "smarty_internal_templateparser.php" #line 472 "smarty_internal_templateparser.y" - function yy_r132(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2435 "smarty_internal_templateparser.php" + function yy_r129(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2415 "smarty_internal_templateparser.php" #line 479 "smarty_internal_templateparser.y" - function yy_r134(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2438 "smarty_internal_templateparser.php" + function yy_r131(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2418 "smarty_internal_templateparser.php" #line 484 "smarty_internal_templateparser.y" - function yy_r136(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2441 "smarty_internal_templateparser.php" + function yy_r133(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } +#line 2421 "smarty_internal_templateparser.php" #line 486 "smarty_internal_templateparser.y" - function yy_r137(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2444 "smarty_internal_templateparser.php" + function yy_r134(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2424 "smarty_internal_templateparser.php" #line 487 "smarty_internal_templateparser.y" - function yy_r138(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2447 "smarty_internal_templateparser.php" + function yy_r135(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2427 "smarty_internal_templateparser.php" #line 488 "smarty_internal_templateparser.y" - function yy_r139(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2450 "smarty_internal_templateparser.php" + function yy_r136(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2430 "smarty_internal_templateparser.php" #line 490 "smarty_internal_templateparser.y" - function yy_r141(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2453 "smarty_internal_templateparser.php" + function yy_r138(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2433 "smarty_internal_templateparser.php" #line 491 "smarty_internal_templateparser.y" - function yy_r142(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2456 "smarty_internal_templateparser.php" + function yy_r139(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2436 "smarty_internal_templateparser.php" #line 492 "smarty_internal_templateparser.y" - function yy_r143(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2459 "smarty_internal_templateparser.php" + function yy_r140(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2439 "smarty_internal_templateparser.php" #line 493 "smarty_internal_templateparser.y" - function yy_r144(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2462 "smarty_internal_templateparser.php" + function yy_r141(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2442 "smarty_internal_templateparser.php" #line 494 "smarty_internal_templateparser.y" - function yy_r145(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2465 "smarty_internal_templateparser.php" + function yy_r142(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2445 "smarty_internal_templateparser.php" #line 495 "smarty_internal_templateparser.y" - function yy_r146(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2468 "smarty_internal_templateparser.php" + function yy_r143(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2448 "smarty_internal_templateparser.php" #line 501 "smarty_internal_templateparser.y" - function yy_r152(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } -#line 2471 "smarty_internal_templateparser.php" + function yy_r149(){$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 2451 "smarty_internal_templateparser.php" #line 503 "smarty_internal_templateparser.y" - function yy_r153(){$this->_retvalue = '=='; } -#line 2474 "smarty_internal_templateparser.php" + function yy_r150(){$this->_retvalue = '=='; } +#line 2454 "smarty_internal_templateparser.php" #line 504 "smarty_internal_templateparser.y" - function yy_r154(){$this->_retvalue = '!='; } -#line 2477 "smarty_internal_templateparser.php" + function yy_r151(){$this->_retvalue = '!='; } +#line 2457 "smarty_internal_templateparser.php" #line 505 "smarty_internal_templateparser.y" - function yy_r155(){$this->_retvalue = '>'; } -#line 2480 "smarty_internal_templateparser.php" + function yy_r152(){$this->_retvalue = '>'; } +#line 2460 "smarty_internal_templateparser.php" #line 506 "smarty_internal_templateparser.y" - function yy_r156(){$this->_retvalue = '<'; } -#line 2483 "smarty_internal_templateparser.php" + function yy_r153(){$this->_retvalue = '<'; } +#line 2463 "smarty_internal_templateparser.php" #line 507 "smarty_internal_templateparser.y" - function yy_r157(){$this->_retvalue = '>='; } -#line 2486 "smarty_internal_templateparser.php" + function yy_r154(){$this->_retvalue = '>='; } +#line 2466 "smarty_internal_templateparser.php" #line 508 "smarty_internal_templateparser.y" - function yy_r158(){$this->_retvalue = '<='; } -#line 2489 "smarty_internal_templateparser.php" + function yy_r155(){$this->_retvalue = '<='; } +#line 2469 "smarty_internal_templateparser.php" #line 509 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = '==='; } -#line 2492 "smarty_internal_templateparser.php" + function yy_r156(){$this->_retvalue = '==='; } +#line 2472 "smarty_internal_templateparser.php" #line 510 "smarty_internal_templateparser.y" - function yy_r160(){$this->_retvalue = '!=='; } -#line 2495 "smarty_internal_templateparser.php" + function yy_r157(){$this->_retvalue = '!=='; } +#line 2475 "smarty_internal_templateparser.php" #line 511 "smarty_internal_templateparser.y" - function yy_r161(){$this->_retvalue = '%'; } -#line 2498 "smarty_internal_templateparser.php" + function yy_r158(){$this->_retvalue = '%'; } +#line 2478 "smarty_internal_templateparser.php" #line 513 "smarty_internal_templateparser.y" - function yy_r162(){$this->_retvalue = '&&'; } -#line 2501 "smarty_internal_templateparser.php" + function yy_r159(){$this->_retvalue = '&&'; } +#line 2481 "smarty_internal_templateparser.php" #line 514 "smarty_internal_templateparser.y" - function yy_r163(){$this->_retvalue = '||'; } -#line 2504 "smarty_internal_templateparser.php" + function yy_r160(){$this->_retvalue = '||'; } +#line 2484 "smarty_internal_templateparser.php" #line 515 "smarty_internal_templateparser.y" - function yy_r164(){$this->_retvalue = ' XOR '; } -#line 2507 "smarty_internal_templateparser.php" + function yy_r161(){$this->_retvalue = ' XOR '; } +#line 2487 "smarty_internal_templateparser.php" #line 520 "smarty_internal_templateparser.y" - function yy_r165(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2510 "smarty_internal_templateparser.php" + function yy_r162(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2490 "smarty_internal_templateparser.php" #line 522 "smarty_internal_templateparser.y" - function yy_r167(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2513 "smarty_internal_templateparser.php" + function yy_r164(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2493 "smarty_internal_templateparser.php" #line 523 "smarty_internal_templateparser.y" - function yy_r168(){ return; } -#line 2516 "smarty_internal_templateparser.php" + function yy_r165(){ return; } +#line 2496 "smarty_internal_templateparser.php" #line 524 "smarty_internal_templateparser.y" - function yy_r169(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2519 "smarty_internal_templateparser.php" + function yy_r166(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2499 "smarty_internal_templateparser.php" #line 525 "smarty_internal_templateparser.y" - function yy_r170(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2522 "smarty_internal_templateparser.php" + function yy_r167(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2502 "smarty_internal_templateparser.php" #line 534 "smarty_internal_templateparser.y" - function yy_r174(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } -#line 2525 "smarty_internal_templateparser.php" + function yy_r171(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } +#line 2505 "smarty_internal_templateparser.php" #line 535 "smarty_internal_templateparser.y" - function yy_r175(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; $this->compiler->has_variable_string = true; } -#line 2528 "smarty_internal_templateparser.php" + function yy_r172(){$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 2508 "smarty_internal_templateparser.php" #line 537 "smarty_internal_templateparser.y" - function yy_r177(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } -#line 2531 "smarty_internal_templateparser.php" + function yy_r174(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } +#line 2511 "smarty_internal_templateparser.php" #line 538 "smarty_internal_templateparser.y" - function yy_r178(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } -#line 2534 "smarty_internal_templateparser.php" + function yy_r175(){ $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 2514 "smarty_internal_templateparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -2643,7 +2623,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2652 "smarty_internal_templateparser.php" +#line 2632 "smarty_internal_templateparser.php" } /** @@ -2667,7 +2647,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2677 "smarty_internal_templateparser.php" +#line 2657 "smarty_internal_templateparser.php" } /**