diff --git a/change_log.txt b/change_log.txt index 36be5196..b537da42 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,6 @@ +10/31/2009 +- change of filenames in sysplugins folder for internal spl_autoload function +- lexer/parser changed for increased compilation speed 10/27/2009 - fixed missing quotes in include_php.php diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index 7d5ce4ba..95b0ca5d 100644 --- a/libs/Smarty.class.php +++ b/libs/Smarty.class.php @@ -73,7 +73,7 @@ define('SMARTY_GLOBAL_SCOPE', 3); */ define('SMARTY_CACHING_OFF', 0); define('SMARTY_CACHING_LIFETIME_CURRENT', 1); -define('SMARTY_CACHING_LIVETIME_SAVED', 2); +define('SMARTY_CACHING_LIFETIME_SAVED', 2); /** * This determines how Smarty handles "" tags in templates. @@ -86,9 +86,16 @@ define('SMARTY_PHP_ALLOW', 3); //-> escape tags as entities /** * register the class autoloader -**/ -spl_autoload_register('smartyAutoload'); - +*/ +if (set_include_path(SMARTY_SYSPLUGINS_DIR . PATH_SEPARATOR . get_include_path()) !== false) { + spl_autoload_extensions('.php,.inc'); + $registeredAutoLoadFunctions = spl_autoload_functions(); + if (!isset($registeredAutoLoadFunctions['spl_autoload'])) { + spl_autoload_register(); + } +} else { + spl_autoload_register('smartyAutoload'); +} /** * This is the main Smarty class */ @@ -97,8 +104,8 @@ class Smarty extends Smarty_Internal_TemplateBase { public static $_version = 'Smarty3-SVN$Rev: 3286 $'; // auto literal on delimiters with whitspace public $auto_literal = true; - // display error on not assigned variabled - static $error_unassigned = false; + // display error on not assigned variables + public $error_unassigned = false; // template directory public $template_dir = null; // default template handler @@ -154,7 +161,7 @@ class Smarty extends Smarty_Internal_TemplateBase { // config var settings public $config_overwrite = true; //Controls whether variables with the same name overwrite each other. public $config_booleanize = true; //Controls whether config values of on/true/yes and off/false/no get converted to boolean - public $config_read_hidden = true; //Controls whether hidden config sections/vars are read from the file. + public $config_read_hidden = true; //Controls whether hidden config sections/vars are read from the file. // config vars public $config_vars = array(); // assigned tpl vars @@ -204,12 +211,17 @@ class Smarty extends Smarty_Internal_TemplateBase { // global internal smarty vars public $_smarty_vars = array(); // start time for execution time calculation - public $start_time = 0; + public $start_time = 0; + // default file permissions + public $_file_perms = 0644; + // default dir permissions + public $_dir_perms = 0771; + /** * Class constructor, initializes basic smarty properties */ public function __construct() - { + { // self reference needed by other classes methodes $this->smarty = $this; @@ -226,7 +238,7 @@ class Smarty extends Smarty_Internal_TemplateBase { $this->plugins_dir = array(SMARTY_PLUGINS_DIR); $this->cache_dir = '.' . DS . 'cache' . DS; $this->config_dir = '.' . DS . 'configs' . DS; - $this->debug_tpl = SMARTY_DIR . 'debug.tpl'; + $this->debug_tpl = SMARTY_DIR . 'debug.tpl'; $this->plugin_handler = new Smarty_Internal_Plugin_Handler($this); $this->filter_handler = new Smarty_Internal_Run_Filter($this); if (!$this->debugging && $this->debugging_ctrl == 'URL') { @@ -435,24 +447,24 @@ class Smarty extends Smarty_Internal_TemplateBase { if (is_callable($plugin_name)) return true; // Plugin name is expected to be: Smarty_[Type]_[Name] - $plugin_name = strtolower($plugin_name); - $_name_parts = explode('_', $plugin_name, 3); + $_plugin_name = strtolower($plugin_name); + $_name_parts = explode('_', $_plugin_name, 3); // class name must have three parts to be valid plugin if (count($_name_parts) < 3 || $_name_parts[0] !== 'smarty') { throw new Exception("plugin {$plugin_name} is not a valid name format"); return false; } - // plugin filename is expected to be: [type].[name].php - $_plugin_filename = "{$_name_parts[1]}.{$_name_parts[2]}{$this->php_ext}"; // if type is "internal", get plugin from sysplugins if ($_name_parts[1] == 'internal') { - if (file_exists(SMARTY_SYSPLUGINS_DIR . $_plugin_filename)) { - require_once(SMARTY_SYSPLUGINS_DIR . $_plugin_filename); + if (file_exists(SMARTY_SYSPLUGINS_DIR . $_plugin_name . $this->php_ext)) { + require_once(SMARTY_SYSPLUGINS_DIR . $_plugin_name . $this->php_ext); return true; } else { return false; } } + // plugin filename is expected to be: [type].[name].php + $_plugin_filename = "{$_name_parts[1]}.{$_name_parts[2]}{$this->php_ext}"; // loop through plugin dirs and find the plugin foreach((array)$this->plugins_dir as $_plugin_dir) { if (strpos('/\\', substr($_plugin_dir, -1)) === false) { @@ -512,7 +524,7 @@ class Smarty extends Smarty_Internal_TemplateBase { public function __call($name, $args) { if (!is_callable($name)) { - $_plugin_filename = strtolower('method.' . $name . $this->php_ext); + $_plugin_filename = strtolower('smarty_method_' . $name . $this->php_ext); if (!file_exists(SMARTY_SYSPLUGINS_DIR . $_plugin_filename)) { throw new Exception("Sysplugin file " . $_plugin_filename . " does not exist"); } @@ -527,10 +539,9 @@ class Smarty extends Smarty_Internal_TemplateBase { function smartyAutoload($class) { - if (substr($class, 0, 16) === 'Smarty_Internal_') { - $class = strtolower($class); - $_name_parts = explode('_', $class, 3); - include SMARTY_SYSPLUGINS_DIR . 'internal.' . $_name_parts[2] . '.php'; + $_class = strtolower($class); + if (substr($_class, 0, 16) === 'smarty_internal_') { + include SMARTY_SYSPLUGINS_DIR . $_class . '.php'; } } diff --git a/libs/sysplugins/internal.compile_block.php b/libs/sysplugins/internal.compile_block.php deleted file mode 100644 index 7d011dd8..00000000 --- a/libs/sysplugins/internal.compile_block.php +++ /dev/null @@ -1,38 +0,0 @@ -compiler = $compiler; - $this->required_attributes = array('name'); - $this->optional_attributes = array('assign'); - // check and get attributes - $_attr = $this->_get_attributes($args); - $save = array($_attr, $compiler->template->extracted_compiled_code, $compiler->template->extract_code); - $this->_open_tag('block', $save); - $compiler->template->extract_code = true; - $compiler->template->extracted_compiled_code = ''; - $compiler->template->has_code = false; - return true; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_captureclose.php b/libs/sysplugins/internal.compile_captureclose.php deleted file mode 100644 index 3e0db494..00000000 --- a/libs/sysplugins/internal.compile_captureclose.php +++ /dev/null @@ -1,42 +0,0 @@ -compiler = $compiler; - // check and get attributes - $_attr = $this->_get_attributes($args); - - list($buffer, $assign, $append) = array_pop($this->compiler->_capture_stack); - - $_output = "assign($assign, ob_get_contents());"; - } - if (isset($append)) { - $_output .= " \$_smarty_tpl->append($append, ob_get_contents());"; - } - $_output .= " \$_smarty_tpl->smarty->_smarty_vars['capture'][$buffer]=ob_get_clean(); ?>"; - return $_output; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_else.php b/libs/sysplugins/internal.compile_else.php deleted file mode 100644 index ab6201b6..00000000 --- a/libs/sysplugins/internal.compile_else.php +++ /dev/null @@ -1,33 +0,0 @@ -compiler = $compiler; - list($nesting, $compiler->tag_nocache) = $this->_close_tag(array('if', 'elseif')); - $this->_open_tag('else',array($nesting,$compiler->tag_nocache)); - - return ''; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_elseif.php b/libs/sysplugins/internal.compile_elseif.php deleted file mode 100644 index b9444af8..00000000 --- a/libs/sysplugins/internal.compile_elseif.php +++ /dev/null @@ -1,44 +0,0 @@ -compiler = $compiler; - $this->required_attributes = array('if condition'); - // check and get attributes - $_attr = $this->_get_attributes($args); - - list($nesting, $compiler->tag_nocache) = $this->_close_tag(array('if', 'elseif')); - - if (empty($this->compiler->prefix_code)) { - $this->_open_tag('elseif', array($nesting, $compiler->tag_nocache)); - return ''; - } else { - $tmp = ''; - foreach ($this->compiler->prefix_code as $code) $tmp .= $code; - $this->compiler->prefix_code = array(); - $this->_open_tag('elseif', array($nesting + 1, $compiler->tag_nocache)); - return '' . $tmp . ''; - } - } -} - -?> diff --git a/libs/sysplugins/internal.compile_forclose.php b/libs/sysplugins/internal.compile_forclose.php deleted file mode 100644 index 880c1bc7..00000000 --- a/libs/sysplugins/internal.compile_forclose.php +++ /dev/null @@ -1,40 +0,0 @@ -compiler = $compiler; - // check and get attributes - $_attr = $this->_get_attributes($args); - // must endblock be nocache? - if ($this->compiler->nocache) { - $this->compiler->tag_nocache = true; - } - - list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('for', 'forelse')); - if ($_open_tag == 'forelse') - return ""; - else - return ""; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_foreachclose.php b/libs/sysplugins/internal.compile_foreachclose.php deleted file mode 100644 index adbaa8ee..00000000 --- a/libs/sysplugins/internal.compile_foreachclose.php +++ /dev/null @@ -1,41 +0,0 @@ -compiler = $compiler; - // check and get attributes - $_attr = $this->_get_attributes($args); - - // must endblock be nocache? - if ($this->compiler->nocache) { - $this->compiler->tag_nocache = true; - } - - list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('foreach', 'foreachelse')); - - if ($_open_tag == 'foreachelse') - return ""; - else - return ""; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_foreachelse.php b/libs/sysplugins/internal.compile_foreachelse.php deleted file mode 100644 index 6b9eba5b..00000000 --- a/libs/sysplugins/internal.compile_foreachelse.php +++ /dev/null @@ -1,34 +0,0 @@ -compiler = $compiler; - // check and get attributes - $_attr = $this->_get_attributes($args); - - list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('foreach')); - $this->_open_tag('foreachelse',array('foreachelse', $this->compiler->nocache)); - - return ""; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_forelse.php b/libs/sysplugins/internal.compile_forelse.php deleted file mode 100644 index c68b883e..00000000 --- a/libs/sysplugins/internal.compile_forelse.php +++ /dev/null @@ -1,34 +0,0 @@ -compiler = $compiler; - // check and get attributes - $_attr = $this->_get_attributes($args); - - list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('for')); - $this->_open_tag('forelse',array('forelse', $this->compiler->nocache)); - return ""; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_function.php b/libs/sysplugins/internal.compile_function.php deleted file mode 100644 index 33c23e13..00000000 --- a/libs/sysplugins/internal.compile_function.php +++ /dev/null @@ -1,44 +0,0 @@ -compiler = $compiler; - $this->required_attributes = array('name'); - $this->optional_attributes = array('_any'); - // check and get attributes - $_attr = $this->_get_attributes($args); - $save = array($_attr, $compiler->template->extracted_compiled_code, $compiler->template->extract_code); - $this->_open_tag('function', $save); - $_name = trim($_attr['name'], "'"); - foreach ($_attr as $_key => $_data) { - $compiler->template->properties['function'][$_name]['parameter'][$_key] = $_data; - } - // make function known for recursive calls - $this->compiler->smarty->template_functions[$_name]['compiled'] = ''; - $compiler->template->extract_code = true; - $compiler->template->extracted_compiled_code = ''; - $compiler->template->has_code = false; - return true; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_if.php b/libs/sysplugins/internal.compile_if.php deleted file mode 100644 index d3915688..00000000 --- a/libs/sysplugins/internal.compile_if.php +++ /dev/null @@ -1,39 +0,0 @@ -compiler = $compiler; - $this->required_attributes = array('if condition'); - // check and get attributes - $_attr = $this->_get_attributes($args); - $this->_open_tag('if',array(1,$compiler->tag_nocache)); - if (is_array($args['if condition'])) { - $_output = "tpl_vars[".$args['if condition']['var']."])) \$_smarty_tpl->tpl_vars[".$args['if condition']['var']."] = new Smarty_Variable;"; - $_output .= "if (\$_smarty_tpl->tpl_vars[".$args['if condition']['var']."]->value = ".$args['if condition']['value']."){?>"; - return $_output; - } else { - return ''; - } - } -} - -?> diff --git a/libs/sysplugins/internal.compile_ifclose.php b/libs/sysplugins/internal.compile_ifclose.php deleted file mode 100644 index 5e34cdb1..00000000 --- a/libs/sysplugins/internal.compile_ifclose.php +++ /dev/null @@ -1,33 +0,0 @@ -compiler = $compiler; - list($nesting, $compiler->tag_nocache) = $this->_close_tag(array('if', 'else', 'elseif')); - $tmp = ''; - for ($i = 0; $i < $nesting ; $i++) $tmp .= '}'; - return ""; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_nocacheclose.php b/libs/sysplugins/internal.compile_nocacheclose.php deleted file mode 100644 index d8175357..00000000 --- a/libs/sysplugins/internal.compile_nocacheclose.php +++ /dev/null @@ -1,35 +0,0 @@ -compiler = $compiler; - $_attr = $this->_get_attributes($args); - // leave nocache mode - $this->compiler->nocache = false; - // this tag does not return compiled code - $this->compiler->has_code = false; - return true; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_sectionclose.php b/libs/sysplugins/internal.compile_sectionclose.php deleted file mode 100644 index 9877e380..00000000 --- a/libs/sysplugins/internal.compile_sectionclose.php +++ /dev/null @@ -1,42 +0,0 @@ -compiler = $compiler; - // check and get attributes - $_attr = $this->_get_attributes($args); - - // must endblock be nocache? - if ($this->compiler->nocache) { - $this->compiler->tag_nocache = true; - } - - list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('section', 'sectionelse')); - - if ($_open_tag == 'sectionelse') - return ""; - else - return ""; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_sectionelse.php b/libs/sysplugins/internal.compile_sectionelse.php deleted file mode 100644 index d280c278..00000000 --- a/libs/sysplugins/internal.compile_sectionelse.php +++ /dev/null @@ -1,35 +0,0 @@ -compiler = $compiler; - // check and get attributes - $_attr = $this->_get_attributes($args); - - list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('section')); - $this->_open_tag('sectionelse',array('sectionelse', $this->compiler->nocache)); - - return ""; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_strip.php b/libs/sysplugins/internal.compile_strip.php deleted file mode 100644 index cde798eb..00000000 --- a/libs/sysplugins/internal.compile_strip.php +++ /dev/null @@ -1,36 +0,0 @@ -compiler = $compiler; - // check and get attributes - $_attr = $this->_get_attributes($args); - - $this->_open_tag('strip'); - - $_output = ""; - - return $_output; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_stripclose.php b/libs/sysplugins/internal.compile_stripclose.php deleted file mode 100644 index 33c5bda5..00000000 --- a/libs/sysplugins/internal.compile_stripclose.php +++ /dev/null @@ -1,35 +0,0 @@ -compiler = $compiler; - // check and get attributes - $_attr = $this->_get_attributes($args); - - $saved_attr = $this->_close_tag(array('strip')); - - $_output = "\n"; - return $_output; - } -} - -?> diff --git a/libs/sysplugins/internal.compile_whileclose.php b/libs/sysplugins/internal.compile_whileclose.php deleted file mode 100644 index 2e5976fc..00000000 --- a/libs/sysplugins/internal.compile_whileclose.php +++ /dev/null @@ -1,35 +0,0 @@ -compiler = $compiler; - // must endblock be nocache? - if ($this->compiler->nocache) { - $this->compiler->tag_nocache = true; - } - $this->compiler->nocache = $this->_close_tag(array('while')); - return ""; - } -} - -?> diff --git a/libs/sysplugins/internal.cacher_inlinecode.php b/libs/sysplugins/smarty_internal_cacher_inlinecode.php similarity index 100% rename from libs/sysplugins/internal.cacher_inlinecode.php rename to libs/sysplugins/smarty_internal_cacher_inlinecode.php diff --git a/libs/sysplugins/internal.cacheresource_file.php b/libs/sysplugins/smarty_internal_cacheresource_file.php similarity index 100% rename from libs/sysplugins/internal.cacheresource_file.php rename to libs/sysplugins/smarty_internal_cacheresource_file.php diff --git a/libs/sysplugins/internal.compile_append.php b/libs/sysplugins/smarty_internal_compile_append.php similarity index 100% rename from libs/sysplugins/internal.compile_append.php rename to libs/sysplugins/smarty_internal_compile_append.php diff --git a/libs/sysplugins/internal.compile_assign.php b/libs/sysplugins/smarty_internal_compile_assign.php similarity index 100% rename from libs/sysplugins/internal.compile_assign.php rename to libs/sysplugins/smarty_internal_compile_assign.php diff --git a/libs/sysplugins/internal.compile_blockclose.php b/libs/sysplugins/smarty_internal_compile_block.php similarity index 66% rename from libs/sysplugins/internal.compile_blockclose.php rename to libs/sysplugins/smarty_internal_compile_block.php index a92642ce..d5d49a83 100644 --- a/libs/sysplugins/internal.compile_blockclose.php +++ b/libs/sysplugins/smarty_internal_compile_block.php @@ -1,17 +1,44 @@ compiler = $compiler; + $this->required_attributes = array('name'); + $this->optional_attributes = array('assign'); + // check and get attributes + $_attr = $this->_get_attributes($args); + $save = array($_attr, $compiler->template->extracted_compiled_code, $compiler->template->extract_code); + $this->_open_tag('block', $save); + $compiler->template->extract_code = true; + $compiler->template->extracted_compiled_code = ''; + $compiler->template->has_code = false; + return true; + } +} + /** * Smarty Internal Plugin Compile BlockClose Class */ -class Smarty_Internal_Compile_BlockClose extends Smarty_Internal_CompileBase { +class Smarty_Internal_Compile_Blockclose extends Smarty_Internal_CompileBase { /** * Compiles code for the {/block} tag * diff --git a/libs/sysplugins/internal.compile_block_plugin.php b/libs/sysplugins/smarty_internal_compile_block_plugin.php similarity index 95% rename from libs/sysplugins/internal.compile_block_plugin.php rename to libs/sysplugins/smarty_internal_compile_block_plugin.php index 321aba80..887a3890 100644 --- a/libs/sysplugins/internal.compile_block_plugin.php +++ b/libs/sysplugins/smarty_internal_compile_block_plugin.php @@ -20,7 +20,7 @@ class Smarty_Internal_Compile_Block_Plugin extends Smarty_Internal_CompileBase { * @param object $compiler compiler object * @return string compiled code */ - public function compile($args, $tag, $compiler) + public function compile($args, $compiler, $tag) { $this->compiler = $compiler; if (strlen($tag) < 6 || substr_compare($tag, 'close', -5, 5) != 0) { diff --git a/libs/sysplugins/internal.compile_capture.php b/libs/sysplugins/smarty_internal_compile_capture.php similarity index 50% rename from libs/sysplugins/internal.compile_capture.php rename to libs/sysplugins/smarty_internal_compile_capture.php index 85c979be..fe8041d7 100644 --- a/libs/sysplugins/internal.compile_capture.php +++ b/libs/sysplugins/smarty_internal_compile_capture.php @@ -38,4 +38,35 @@ class Smarty_Internal_Compile_Capture extends Smarty_Internal_CompileBase { } } +/** +* Smarty Internal Plugin Compile Captureclose Class +*/ +class Smarty_Internal_Compile_CaptureClose extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {/capture} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + // check and get attributes + $_attr = $this->_get_attributes($args); + + list($buffer, $assign, $append) = array_pop($this->compiler->_capture_stack); + + $_output = "assign($assign, ob_get_contents());"; + } + if (isset($append)) { + $_output .= " \$_smarty_tpl->append($append, ob_get_contents());"; + } + $_output .= " \$_smarty_tpl->smarty->_smarty_vars['capture'][$buffer]=ob_get_clean(); ?>"; + return $_output; + } +} + ?> diff --git a/libs/sysplugins/internal.compile_config_load.php b/libs/sysplugins/smarty_internal_compile_config_load.php similarity index 100% rename from libs/sysplugins/internal.compile_config_load.php rename to libs/sysplugins/smarty_internal_compile_config_load.php diff --git a/libs/sysplugins/internal.compile_debug.php b/libs/sysplugins/smarty_internal_compile_debug.php similarity index 100% rename from libs/sysplugins/internal.compile_debug.php rename to libs/sysplugins/smarty_internal_compile_debug.php diff --git a/libs/sysplugins/internal.compile_eval.php b/libs/sysplugins/smarty_internal_compile_eval.php similarity index 100% rename from libs/sysplugins/internal.compile_eval.php rename to libs/sysplugins/smarty_internal_compile_eval.php diff --git a/libs/sysplugins/internal.compile_extend.php b/libs/sysplugins/smarty_internal_compile_extend.php similarity index 100% rename from libs/sysplugins/internal.compile_extend.php rename to libs/sysplugins/smarty_internal_compile_extend.php diff --git a/libs/sysplugins/internal.compile_for.php b/libs/sysplugins/smarty_internal_compile_for.php similarity index 50% rename from libs/sysplugins/internal.compile_for.php rename to libs/sysplugins/smarty_internal_compile_for.php index 07cd3f7d..a527ee18 100644 --- a/libs/sysplugins/internal.compile_for.php +++ b/libs/sysplugins/smarty_internal_compile_for.php @@ -2,7 +2,7 @@ /** * Smarty Internal Plugin Compile For * -* Compiles the {for} tag +* Compiles the {for} {forelse} {/for} tags * * @package Smarty * @subpackage Compiler @@ -54,4 +54,56 @@ class Smarty_Internal_Compile_For extends Smarty_Internal_CompileBase { } } +/** +* Smarty Internal Plugin Compile Forelse Class +*/ +class Smarty_Internal_Compile_Forelse extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {forelse} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + // check and get attributes + $_attr = $this->_get_attributes($args); + + list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('for')); + $this->_open_tag('forelse',array('forelse', $this->compiler->nocache)); + return ""; + } +} + +/** +* Smarty Internal Plugin Compile Forclose Class +*/ +class Smarty_Internal_Compile_Forclose extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {/for} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + // check and get attributes + $_attr = $this->_get_attributes($args); + // must endblock be nocache? + if ($this->compiler->nocache) { + $this->compiler->tag_nocache = true; + } + + list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('for', 'forelse')); + if ($_open_tag == 'forelse') + return ""; + else + return ""; + } +} + ?> diff --git a/libs/sysplugins/internal.compile_foreach.php b/libs/sysplugins/smarty_internal_compile_foreach.php similarity index 76% rename from libs/sysplugins/internal.compile_foreach.php rename to libs/sysplugins/smarty_internal_compile_foreach.php index 8d12aded..76a9fd66 100644 --- a/libs/sysplugins/internal.compile_foreach.php +++ b/libs/sysplugins/smarty_internal_compile_foreach.php @@ -2,7 +2,7 @@ /** * Smarty Internal Plugin Compile Foreach * -* Compiles the {foreach} tag +* Compiles the {foreach} {foreachelse} {/foreach} tags * * @package Smarty * @subpackage Compiler @@ -134,4 +134,59 @@ class Smarty_Internal_Compile_Foreach extends Smarty_Internal_CompileBase { } } +/** +* Smarty Internal Plugin Compile Foreachelse Class +*/ +class Smarty_Internal_Compile_Foreachelse extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {foreachelse} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + // check and get attributes + $_attr = $this->_get_attributes($args); + + list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('foreach')); + $this->_open_tag('foreachelse',array('foreachelse', $this->compiler->nocache)); + + return ""; + } +} + +/** +* Smarty Internal Plugin Compile Foreachclose Class +*/ +class Smarty_Internal_Compile_Foreachclose extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {/foreach} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + // check and get attributes + $_attr = $this->_get_attributes($args); + + // must endblock be nocache? + if ($this->compiler->nocache) { + $this->compiler->tag_nocache = true; + } + + list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('foreach', 'foreachelse')); + + if ($_open_tag == 'foreachelse') + return ""; + else + return ""; + } +} + ?> diff --git a/libs/sysplugins/internal.compile_functionclose.php b/libs/sysplugins/smarty_internal_compile_function.php similarity index 51% rename from libs/sysplugins/internal.compile_functionclose.php rename to libs/sysplugins/smarty_internal_compile_function.php index 2c614249..16da54bd 100644 --- a/libs/sysplugins/internal.compile_functionclose.php +++ b/libs/sysplugins/smarty_internal_compile_function.php @@ -1,17 +1,50 @@ compiler = $compiler; + $this->required_attributes = array('name'); + $this->optional_attributes = array('_any'); + // check and get attributes + $_attr = $this->_get_attributes($args); + $save = array($_attr, $compiler->template->extracted_compiled_code, $compiler->template->extract_code); + $this->_open_tag('function', $save); + $_name = trim($_attr['name'], "'"); + foreach ($_attr as $_key => $_data) { + $compiler->template->properties['function'][$_name]['parameter'][$_key] = $_data; + } + // make function known for recursive calls + $this->compiler->smarty->template_functions[$_name]['compiled'] = ''; + $compiler->template->extract_code = true; + $compiler->template->extracted_compiled_code = ''; + $compiler->template->has_code = false; + return true; + } +} + +/** +* Smarty Internal Plugin Compile Functionclose Class +*/ +class Smarty_Internal_Compile_Functionclose extends Smarty_Internal_CompileBase { /** * Compiles code for the {/function} tag * diff --git a/libs/sysplugins/internal.compile_internal_function_call.php b/libs/sysplugins/smarty_internal_compile_function_call.php similarity index 89% rename from libs/sysplugins/internal.compile_internal_function_call.php rename to libs/sysplugins/smarty_internal_compile_function_call.php index 74b51b2e..31692941 100644 --- a/libs/sysplugins/internal.compile_internal_function_call.php +++ b/libs/sysplugins/smarty_internal_compile_function_call.php @@ -1,20 +1,20 @@ compiler = $compiler; // This tag does create output diff --git a/libs/sysplugins/smarty_internal_compile_if.php b/libs/sysplugins/smarty_internal_compile_if.php new file mode 100644 index 00000000..0095208d --- /dev/null +++ b/libs/sysplugins/smarty_internal_compile_if.php @@ -0,0 +1,114 @@ +compiler = $compiler; + $this->required_attributes = array('if condition'); + // check and get attributes + $_attr = $this->_get_attributes($args); + $this->_open_tag('if',array(1,$compiler->tag_nocache)); + if (is_array($args['if condition'])) { + $_output = "tpl_vars[".$args['if condition']['var']."])) \$_smarty_tpl->tpl_vars[".$args['if condition']['var']."] = new Smarty_Variable;"; + $_output .= "if (\$_smarty_tpl->tpl_vars[".$args['if condition']['var']."]->value = ".$args['if condition']['value']."){?>"; + return $_output; + } else { + return ''; + } + } +} + +/** +* Smarty Internal Plugin Compile Else Class +*/ +class Smarty_Internal_Compile_Else extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {else} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + list($nesting, $compiler->tag_nocache) = $this->_close_tag(array('if', 'elseif')); + $this->_open_tag('else',array($nesting,$compiler->tag_nocache)); + + return ''; + } +} + +/** +* Smarty Internal Plugin Compile ElseIf Class +*/ +class Smarty_Internal_Compile_Elseif extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {elseif} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + $this->required_attributes = array('if condition'); + // check and get attributes + $_attr = $this->_get_attributes($args); + + list($nesting, $compiler->tag_nocache) = $this->_close_tag(array('if', 'elseif')); + + if (empty($this->compiler->prefix_code)) { + $this->_open_tag('elseif', array($nesting, $compiler->tag_nocache)); + return ''; + } else { + $tmp = ''; + foreach ($this->compiler->prefix_code as $code) $tmp .= $code; + $this->compiler->prefix_code = array(); + $this->_open_tag('elseif', array($nesting + 1, $compiler->tag_nocache)); + return '' . $tmp . ''; + } + } +} + +/** +* Smarty Internal Plugin Compile Ifclose Class +*/ +class Smarty_Internal_Compile_Ifclose extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {/if} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + list($nesting, $compiler->tag_nocache) = $this->_close_tag(array('if', 'else', 'elseif')); + $tmp = ''; + for ($i = 0; $i < $nesting ; $i++) $tmp .= '}'; + return ""; + } +} + +?> diff --git a/libs/sysplugins/internal.compile_include.php b/libs/sysplugins/smarty_internal_compile_include.php similarity index 100% rename from libs/sysplugins/internal.compile_include.php rename to libs/sysplugins/smarty_internal_compile_include.php diff --git a/libs/sysplugins/internal.compile_include_php.php b/libs/sysplugins/smarty_internal_compile_include_php.php similarity index 100% rename from libs/sysplugins/internal.compile_include_php.php rename to libs/sysplugins/smarty_internal_compile_include_php.php diff --git a/libs/sysplugins/internal.compile_insert.php b/libs/sysplugins/smarty_internal_compile_insert.php similarity index 100% rename from libs/sysplugins/internal.compile_insert.php rename to libs/sysplugins/smarty_internal_compile_insert.php diff --git a/libs/sysplugins/internal.compile_nocache.php b/libs/sysplugins/smarty_internal_compile_nocache.php similarity index 51% rename from libs/sysplugins/internal.compile_nocache.php rename to libs/sysplugins/smarty_internal_compile_nocache.php index b3f4fd11..ebeef9dd 100644 --- a/libs/sysplugins/internal.compile_nocache.php +++ b/libs/sysplugins/smarty_internal_compile_nocache.php @@ -3,7 +3,7 @@ /** * Smarty Internal Plugin Compile Nocache * -* Compiles the {nocache} tag +* Compiles the {nocache} {/nocache} tags * @package Smarty * @subpackage Compiler * @author Uwe Tews @@ -32,4 +32,28 @@ class Smarty_Internal_Compile_Nocache extends Smarty_Internal_CompileBase { } } +/** +* Smarty Internal Plugin Compile Nocacheclose Class +*/ +class Smarty_Internal_Compile_Nocacheclose extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {/nocache} tag + * + * This tag does not generate compiled output. It only sets a compiler flag + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + $_attr = $this->_get_attributes($args); + // leave nocache mode + $this->compiler->nocache = false; + // this tag does not return compiled code + $this->compiler->has_code = false; + return true; + } +} + ?> diff --git a/libs/sysplugins/internal.compile_object_block_function.php b/libs/sysplugins/smarty_internal_compile_object_block_function.php similarity index 97% rename from libs/sysplugins/internal.compile_object_block_function.php rename to libs/sysplugins/smarty_internal_compile_object_block_function.php index fb399e39..3d5523d2 100644 --- a/libs/sysplugins/internal.compile_object_block_function.php +++ b/libs/sysplugins/smarty_internal_compile_object_block_function.php @@ -21,7 +21,7 @@ class Smarty_Internal_Compile_Object_Block_Function extends Smarty_Internal_Comp * @param object $compiler compiler object * @return string compiled code */ - public function compile($args, $tag, $methode, $compiler) + public function compile($args, $compiler, $tag, $methode) { $this->compiler = $compiler; if (strlen($tag) < 5 || substr_compare($tag, 'close', -5, 5) != 0) { diff --git a/libs/sysplugins/internal.compile_object_function.php b/libs/sysplugins/smarty_internal_compile_object_function.php similarity index 95% rename from libs/sysplugins/internal.compile_object_function.php rename to libs/sysplugins/smarty_internal_compile_object_function.php index 020c23f8..c3b2d8eb 100644 --- a/libs/sysplugins/internal.compile_object_function.php +++ b/libs/sysplugins/smarty_internal_compile_object_function.php @@ -21,7 +21,7 @@ class Smarty_Internal_Compile_Object_Function extends Smarty_Internal_CompileBas * @param object $compiler compiler object * @return string compiled code */ - public function compile($args, $tag, $methode, $compiler) + public function compile($args, $compiler, $tag, $methode) { $this->compiler = $compiler; // This tag does create output diff --git a/libs/sysplugins/internal.compile_print_expression.php b/libs/sysplugins/smarty_internal_compile_print_expression.php similarity index 100% rename from libs/sysplugins/internal.compile_print_expression.php rename to libs/sysplugins/smarty_internal_compile_print_expression.php diff --git a/libs/sysplugins/internal.compile_section.php b/libs/sysplugins/smarty_internal_compile_section.php similarity index 73% rename from libs/sysplugins/internal.compile_section.php rename to libs/sysplugins/smarty_internal_compile_section.php index 94b1c0f2..427af50b 100644 --- a/libs/sysplugins/internal.compile_section.php +++ b/libs/sysplugins/smarty_internal_compile_section.php @@ -2,7 +2,7 @@ /** * Smarty Internal Plugin Compile Section * -* Compiles the {section} tag +* Compiles the {section} {sectionelse} {/section} tags * * @package Smarty * @subpackage Compiler @@ -111,4 +111,60 @@ class Smarty_Internal_Compile_Section extends Smarty_Internal_CompileBase { } } +/** +* Smarty Internal Plugin Compile Sectionelse Class +*/ +class Smarty_Internal_Compile_Sectionelse extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {sectionelse} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + // check and get attributes + $_attr = $this->_get_attributes($args); + + list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('section')); + $this->_open_tag('sectionelse',array('sectionelse', $this->compiler->nocache)); + + return ""; + } +} + +/** +* Smarty Internal Plugin Compile Sectionclose Class +*/ +class Smarty_Internal_Compile_Sectionclose extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {/section} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + // check and get attributes + $_attr = $this->_get_attributes($args); + + // must endblock be nocache? + if ($this->compiler->nocache) { + $this->compiler->tag_nocache = true; + } + + list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('section', 'sectionelse')); + + if ($_open_tag == 'sectionelse') + return ""; + else + return ""; + } +} + + ?> diff --git a/libs/sysplugins/internal.compile_internal_smarty_var.php b/libs/sysplugins/smarty_internal_compile_special_smarty_variable.php similarity index 90% rename from libs/sysplugins/internal.compile_internal_smarty_var.php rename to libs/sysplugins/smarty_internal_compile_special_smarty_variable.php index af7cdc9e..109a24af 100644 --- a/libs/sysplugins/internal.compile_internal_smarty_var.php +++ b/libs/sysplugins/smarty_internal_compile_special_smarty_variable.php @@ -1,6 +1,6 @@ compiler = $compiler; + // check and get attributes + $_attr = $this->_get_attributes($args); + + $this->_open_tag('strip'); + + $_output = ""; + + return $_output; + } +} + +/** +* Smarty Internal Plugin Compile Stripclose Class +*/ +class Smarty_Internal_Compile_Stripclose extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {/strip} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + // check and get attributes + $_attr = $this->_get_attributes($args); + + $saved_attr = $this->_close_tag(array('strip')); + + $_output = "\n"; + return $_output; + } +} +?> diff --git a/libs/sysplugins/internal.compile_while.php b/libs/sysplugins/smarty_internal_compile_while.php similarity index 66% rename from libs/sysplugins/internal.compile_while.php rename to libs/sysplugins/smarty_internal_compile_while.php index 43cb8bb8..5c83e366 100644 --- a/libs/sysplugins/internal.compile_while.php +++ b/libs/sysplugins/smarty_internal_compile_while.php @@ -41,4 +41,26 @@ class Smarty_Internal_Compile_While extends Smarty_Internal_CompileBase { } } +/** +* Smarty Internal Plugin Compile Whileclose Class +*/ +class Smarty_Internal_Compile_Whileclose extends Smarty_Internal_CompileBase { + /** + * Compiles code for the {/while} tag + * + * @param array $args array with attributes from parser + * @param object $compiler compiler object + * @return string compiled code + */ + public function compile($args, $compiler) + { + $this->compiler = $compiler; + // must endblock be nocache? + if ($this->compiler->nocache) { + $this->compiler->tag_nocache = true; + } + $this->compiler->nocache = $this->_close_tag(array('while')); + return ""; + } +} ?> diff --git a/libs/sysplugins/internal.compilebase.php b/libs/sysplugins/smarty_internal_compilebase.php similarity index 100% rename from libs/sysplugins/internal.compilebase.php rename to libs/sysplugins/smarty_internal_compilebase.php diff --git a/libs/sysplugins/internal.config.php b/libs/sysplugins/smarty_internal_config.php similarity index 96% rename from libs/sysplugins/internal.config.php rename to libs/sysplugins/smarty_internal_config.php index 6beee8e9..90d94bd2 100644 --- a/libs/sysplugins/internal.config.php +++ b/libs/sysplugins/smarty_internal_config.php @@ -137,9 +137,9 @@ class Smarty_Internal_Config { $_filepath = (string)abs(crc32($this->config_resource_name . $_flag)); // if use_sub_dirs, break file into directories if ($this->smarty->use_sub_dirs) { - $_filepath = substr($_filepath, 0, 3) . DS - . substr($_filepath, 0, 2) . DS - . substr($_filepath, 0, 1) . DS + $_filepath = substr($_filepath, 0, 2) . DS + . substr($_filepath, 2, 2) . DS + . substr($_filepath, 4, 2) . DS . $_filepath; } $_compile_dir = $this->smarty->compile_dir; @@ -226,7 +226,9 @@ class Smarty_Internal_Config { { if (isset($this->template)) { $this->template->properties['file_dependency']['F' . abs(crc32($this->getConfigFilepath()))] = array($this->getConfigFilepath(), $this->getTimestamp()); - } + } else { + $this->smarty->properties['file_dependency']['F' . abs(crc32($this->getConfigFilepath()))] = array($this->getConfigFilepath(), $this->getTimestamp()); + } $config_data = unserialize($this->getCompiledConfig()); // var_dump($config_data); // copy global config vars diff --git a/libs/sysplugins/internal.config_file_compiler.php b/libs/sysplugins/smarty_internal_config_file_compiler.php similarity index 100% rename from libs/sysplugins/internal.config_file_compiler.php rename to libs/sysplugins/smarty_internal_config_file_compiler.php diff --git a/libs/sysplugins/internal.configfilelexer.php b/libs/sysplugins/smarty_internal_configfilelexer.php similarity index 99% rename from libs/sysplugins/internal.configfilelexer.php rename to libs/sysplugins/smarty_internal_configfilelexer.php index 6e245251..05a28a23 100644 --- a/libs/sysplugins/internal.configfilelexer.php +++ b/libs/sysplugins/smarty_internal_configfilelexer.php @@ -8,7 +8,7 @@ * @author Uwe Tews */ /** -* Smarty Internal Plugin Templatelexer +* Smarty Internal Plugin Configfilelexer */ class Smarty_Internal_Configfilelexer { diff --git a/libs/sysplugins/internal.configfileparser.php b/libs/sysplugins/smarty_internal_configfileparser.php similarity index 96% rename from libs/sysplugins/internal.configfileparser.php rename to libs/sysplugins/smarty_internal_configfileparser.php index 9b4a7eee..a201f39d 100644 --- a/libs/sysplugins/internal.configfileparser.php +++ b/libs/sysplugins/smarty_internal_configfileparser.php @@ -103,12 +103,12 @@ class TPC_yyStackEntry // code external to the class is included here // declare_class is output here -#line 12 "internal.configfileparser.y" -class Smarty_Internal_Configfileparser#line 109 "internal.configfileparser.php" +#line 12 "Smarty_Internal_Configfileparser.y" +class Smarty_Internal_Configfileparser#line 109 "Smarty_Internal_Configfileparser.php" { /* First off, code is included which follows the "include_class" declaration ** in the input file. */ -#line 14 "internal.configfileparser.y" +#line 14 "Smarty_Internal_Configfileparser.y" // states whether the parse was successful or not public $successful = true; @@ -133,7 +133,7 @@ class Smarty_Internal_Configfileparser#line 109 "internal.configfileparser.php" return $instance; } -#line 139 "internal.configfileparser.php" +#line 139 "Smarty_Internal_Configfileparser.php" /* Next is all token values, as class constants */ @@ -830,24 +830,24 @@ static public $yy_action = array( ** function yy_r0($yymsp){ ... } // User supplied code ** #line */ -#line 67 "internal.configfileparser.y" +#line 67 "Smarty_Internal_Configfileparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 840 "internal.configfileparser.php" -#line 73 "internal.configfileparser.y" +#line 840 "Smarty_Internal_Configfileparser.php" +#line 73 "Smarty_Internal_Configfileparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 843 "internal.configfileparser.php" -#line 75 "internal.configfileparser.y" +#line 843 "Smarty_Internal_Configfileparser.php" +#line 75 "Smarty_Internal_Configfileparser.y" function yy_r2(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 846 "internal.configfileparser.php" -#line 81 "internal.configfileparser.y" +#line 846 "Smarty_Internal_Configfileparser.php" +#line 81 "Smarty_Internal_Configfileparser.y" function yy_r3(){ $this->hidden_section = false; $this->current_section = $this->yystack[$this->yyidx + -2]->minor; $this->_retvalue =''; } -#line 849 "internal.configfileparser.php" -#line 83 "internal.configfileparser.y" +#line 849 "Smarty_Internal_Configfileparser.php" +#line 83 "Smarty_Internal_Configfileparser.y" function yy_r4(){ if ($this->smarty->config_read_hidden) { $this->hidden_section = false; $this->current_section = $this->yystack[$this->yyidx + -2]->minor; } else {$this->hidden_section = true; } $this->_retvalue =''; } -#line 854 "internal.configfileparser.php" -#line 87 "internal.configfileparser.y" +#line 854 "Smarty_Internal_Configfileparser.php" +#line 87 "Smarty_Internal_Configfileparser.y" function yy_r5(){if (!$this->hidden_section) { $value=$this->yystack[$this->yyidx + -1]->minor; if ($this->smarty->config_booleanize) { @@ -871,19 +871,19 @@ static public $yy_action = array( $this->compiler->config_data['sections'][$this->current_section]['vars'][$this->yystack[$this->yyidx + -3]->minor][]=$value; } }} $this->_retvalue =''; } -#line 879 "internal.configfileparser.php" -#line 111 "internal.configfileparser.y" +#line 879 "Smarty_Internal_Configfileparser.php" +#line 111 "Smarty_Internal_Configfileparser.y" function yy_r6(){ $this->_retvalue =''; } -#line 882 "internal.configfileparser.php" -#line 115 "internal.configfileparser.y" +#line 882 "Smarty_Internal_Configfileparser.php" +#line 115 "Smarty_Internal_Configfileparser.y" function yy_r9(){$this->_retvalue = trim($this->yystack[$this->yyidx + 0]->minor,"'"); } -#line 885 "internal.configfileparser.php" -#line 116 "internal.configfileparser.y" +#line 885 "Smarty_Internal_Configfileparser.php" +#line 116 "Smarty_Internal_Configfileparser.y" function yy_r10(){$this->_retvalue = trim($this->yystack[$this->yyidx + 0]->minor,'"'); } -#line 888 "internal.configfileparser.php" -#line 118 "internal.configfileparser.y" +#line 888 "Smarty_Internal_Configfileparser.php" +#line 118 "Smarty_Internal_Configfileparser.y" function yy_r12(){$this->_retvalue = (int)$this->yystack[$this->yyidx + 0]->minor; } -#line 891 "internal.configfileparser.php" +#line 891 "Smarty_Internal_Configfileparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -995,12 +995,12 @@ static public $yy_action = array( */ function yy_syntax_error($yymajor, $TOKEN) { -#line 52 "internal.configfileparser.y" +#line 52 "Smarty_Internal_Configfileparser.y" $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_config_file_error(); -#line 1009 "internal.configfileparser.php" +#line 1009 "Smarty_Internal_Configfileparser.php" } /** @@ -1018,13 +1018,13 @@ static public $yy_action = array( } /* Here code is inserted which will be executed whenever the ** parser accepts */ -#line 44 "internal.configfileparser.y" +#line 44 "Smarty_Internal_Configfileparser.y" $this->successful = !$this->internalError; $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 1034 "internal.configfileparser.php" +#line 1034 "Smarty_Internal_Configfileparser.php" } /** diff --git a/libs/sysplugins/internal.debug.php b/libs/sysplugins/smarty_internal_debug.php similarity index 100% rename from libs/sysplugins/internal.debug.php rename to libs/sysplugins/smarty_internal_debug.php diff --git a/libs/sysplugins/internal.plugin_handler.php b/libs/sysplugins/smarty_internal_plugin_handler.php similarity index 100% rename from libs/sysplugins/internal.plugin_handler.php rename to libs/sysplugins/smarty_internal_plugin_handler.php diff --git a/libs/sysplugins/internal.resource_extend.php b/libs/sysplugins/smarty_internal_resource_extend.php similarity index 98% rename from libs/sysplugins/internal.resource_extend.php rename to libs/sysplugins/smarty_internal_resource_extend.php index 1b8a9b8d..28d57e47 100644 --- a/libs/sysplugins/internal.resource_extend.php +++ b/libs/sysplugins/smarty_internal_resource_extend.php @@ -171,9 +171,9 @@ class Smarty_Internal_Resource_Extend { $_filepath = (string)abs(crc32($template->resource_name)); // if use_sub_dirs, break file into directories if ($template->smarty->use_sub_dirs) { - $_filepath = substr($_filepath, 0, 3) . DS - . substr($_filepath, 0, 2) . DS - . substr($_filepath, 0, 1) . DS + $_filepath = substr($_filepath, 0, 2) . DS + . substr($_filepath, 2, 2) . DS + . substr($_filepath, 4, 2) . DS . $_filepath; } $_compile_dir_sep = $template->smarty->use_sub_dirs ? DS : '^'; diff --git a/libs/sysplugins/internal.resource_file.php b/libs/sysplugins/smarty_internal_resource_file.php similarity index 96% rename from libs/sysplugins/internal.resource_file.php rename to libs/sysplugins/smarty_internal_resource_file.php index 0cc197a0..678c36f7 100644 --- a/libs/sysplugins/internal.resource_file.php +++ b/libs/sysplugins/smarty_internal_resource_file.php @@ -115,9 +115,9 @@ class Smarty_Internal_Resource_File { $_filepath = (string)abs(crc32($_template->resource_name)); // if use_sub_dirs, break file into directories if ($_template->smarty->use_sub_dirs) { - $_filepath = substr($_filepath, 0, 3) . DS - . substr($_filepath, 0, 2) . DS - . substr($_filepath, 0, 1) . DS + $_filepath = substr($_filepath, 0, 2) . DS + . substr($_filepath, 2, 2) . DS + . substr($_filepath, 4, 2) . DS . $_filepath; } $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^'; diff --git a/libs/sysplugins/internal.resource_php.php b/libs/sysplugins/smarty_internal_resource_php.php similarity index 100% rename from libs/sysplugins/internal.resource_php.php rename to libs/sysplugins/smarty_internal_resource_php.php diff --git a/libs/sysplugins/internal.resource_registered.php b/libs/sysplugins/smarty_internal_resource_registered.php similarity index 96% rename from libs/sysplugins/internal.resource_registered.php rename to libs/sysplugins/smarty_internal_resource_registered.php index 355e7de3..78c84840 100644 --- a/libs/sysplugins/internal.resource_registered.php +++ b/libs/sysplugins/smarty_internal_resource_registered.php @@ -127,9 +127,9 @@ class Smarty_Internal_Resource_Registered { $_filepath = (string)abs(crc32($_template->template_resource)); // if use_sub_dirs, break file into directories if ($_template->smarty->use_sub_dirs) { - $_filepath = substr($_filepath, 0, 3) . DS - . substr($_filepath, 0, 2) . DS - . substr($_filepath, 0, 1) . DS + $_filepath = substr($_filepath, 0, 2) . DS + . substr($_filepath, 2, 2) . DS + . substr($_filepath, 4, 2) . DS . $_filepath; } $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^'; diff --git a/libs/sysplugins/internal.resource_stream.php b/libs/sysplugins/smarty_internal_resource_stream.php similarity index 100% rename from libs/sysplugins/internal.resource_stream.php rename to libs/sysplugins/smarty_internal_resource_stream.php diff --git a/libs/sysplugins/internal.resource_string.php b/libs/sysplugins/smarty_internal_resource_string.php similarity index 100% rename from libs/sysplugins/internal.resource_string.php rename to libs/sysplugins/smarty_internal_resource_string.php diff --git a/libs/sysplugins/internal.run_filter.php b/libs/sysplugins/smarty_internal_run_filter.php similarity index 100% rename from libs/sysplugins/internal.run_filter.php rename to libs/sysplugins/smarty_internal_run_filter.php diff --git a/libs/sysplugins/internal.security_handler.php b/libs/sysplugins/smarty_internal_security_handler.php similarity index 100% rename from libs/sysplugins/internal.security_handler.php rename to libs/sysplugins/smarty_internal_security_handler.php diff --git a/libs/sysplugins/internal.smartytemplatecompiler.php b/libs/sysplugins/smarty_internal_smartytemplatecompiler.php similarity index 100% rename from libs/sysplugins/internal.smartytemplatecompiler.php rename to libs/sysplugins/smarty_internal_smartytemplatecompiler.php diff --git a/libs/sysplugins/internal.template.php b/libs/sysplugins/smarty_internal_template.php similarity index 98% rename from libs/sysplugins/internal.template.php rename to libs/sysplugins/smarty_internal_template.php index d2322b96..87fa49db 100644 --- a/libs/sysplugins/internal.template.php +++ b/libs/sysplugins/smarty_internal_template.php @@ -209,7 +209,6 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase { public function mustCompile () { $this->isExisting(true); - if ($this->mustCompile === null) { $this->mustCompile = ($this->usesCompiler() && ($this->force_compile || $this->isEvaluated() || ($this->smarty->compile_check && $this->getCompiledTimestamp () !== $this->getTemplateTimestamp ()))); } @@ -291,7 +290,12 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase { // write compiled template Smarty_Internal_Write_File::writeFile($this->getCompiledFilepath(), $this->compiled_template); // make template and compiled file timestamp match + $this->compiled_timestamp = null; touch($this->getCompiledFilepath(), $this->getTemplateTimestamp()); + // daylight saving time problem on windows + if ($this->template_timestamp != $this->getCompiledTimestamp()) { + touch($this->getCompiledFilepath(),2*$this->template_timestamp - $this->compiled_timestamp); + } } } else { // error compiling template @@ -366,11 +370,11 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase { if ($this->getCachedTimestamp() === false) { return $this->isCached; } - if (($this->caching == SMARTY_CACHING_LIVETIME_SAVED || ($this->caching == SMARTY_CACHING_LIFETIME_CURRENT && (time() <= ($this->getCachedTimestamp() + $this->cache_lifetime) || $this->cache_lifetime < 0)))) { + if (($this->caching == SMARTY_CACHING_LIFETIME_SAVED || ($this->caching == SMARTY_CACHING_LIFETIME_CURRENT && (time() <= ($this->getCachedTimestamp() + $this->cache_lifetime) || $this->cache_lifetime < 0)))) { $_start_time = $this->_get_time(); $this->rendered_content = $this->cache_resource_object->getCachedContents($this); $this->cache_time += $this->_get_time() - $_start_time; - if ($this->caching == SMARTY_CACHING_LIVETIME_SAVED && $this->properties['cache_lifetime'] >0 && (time() > ($this->getCachedTimestamp() + $this->properties['cache_lifetime']))) { + if ($this->caching == SMARTY_CACHING_LIFETIME_SAVED && $this->properties['cache_lifetime'] >0 && (time() > ($this->getCachedTimestamp() + $this->properties['cache_lifetime']))) { $this->rendered_content = null; return $this->isCached; } @@ -664,12 +668,12 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase { return $this->smarty->resource_objects[$resource_type] = new Smarty_Internal_Resource_Registered($this->smarty); } else { // try sysplugins dir - $_resource_class = "Smarty_Internal_Resource_{$resource_type}"; + $_resource_class = 'Smarty_Internal_Resource_' . $resource_type; if ($this->smarty->loadPlugin($_resource_class)) { return $this->smarty->resource_objects[$resource_type] = new $_resource_class($this->smarty); } else { // try plugins dir - $_resource_class = "Smarty_Resource_{$resource_type}"; + $_resource_class = 'Smarty_Resource_' . $resource_type; if ($this->smarty->loadPlugin($_resource_class)) { if (class_exists($_resource_class, false)) { return $this->smarty->resource_objects[$resource_type] = new $_resource_class($this->smarty); diff --git a/libs/sysplugins/internal.templatebase.php b/libs/sysplugins/smarty_internal_templatebase.php similarity index 98% rename from libs/sysplugins/internal.templatebase.php rename to libs/sysplugins/smarty_internal_templatebase.php index 2ba5b4a9..768e158a 100644 --- a/libs/sysplugins/internal.templatebase.php +++ b/libs/sysplugins/smarty_internal_templatebase.php @@ -228,7 +228,7 @@ class Smarty_Internal_TemplateBase { // found it, return it return $this->smarty->global_tpl_vars[$variable]; } - if (Smarty::$error_unassigned && $error_enable) { + if ($this->smarty->error_unassigned && $error_enable) { throw new Exception('Undefined Smarty variable "' . $variable . '"'); } else { return new Undefined_Smarty_Variable; @@ -251,7 +251,7 @@ class Smarty_Internal_TemplateBase { // not found, try at parent $_ptr = $_ptr->parent; } - if (Smarty::$error_unassigned) { + if ($this->smarty->error_unassigned) { throw new Exception('Undefined config variable "' . $variable . '"'); } else { return ''; @@ -274,7 +274,7 @@ class Smarty_Internal_TemplateBase { return $_result; } - if (Smarty::$error_unassigned) { + if ($this->smarty->$error_unassigned) { throw new Exception('Undefined stream variable "' . $variable . '"'); } else { return ''; diff --git a/libs/sysplugins/internal.templatecompilerbase.php b/libs/sysplugins/smarty_internal_templatecompilerbase.php similarity index 87% rename from libs/sysplugins/internal.templatecompilerbase.php rename to libs/sysplugins/smarty_internal_templatecompilerbase.php index 51c8cbbd..273d9c01 100644 --- a/libs/sysplugins/internal.templatecompilerbase.php +++ b/libs/sysplugins/smarty_internal_templatecompilerbase.php @@ -100,8 +100,8 @@ class Smarty_Internal_TemplateCompilerBase { /** * Compile Tag * - * This is a call back from the lexer/parser - * It executes the required compile plugin for the Smarty tag + * This is a call back from the lexer/parser + * It executes the required compile plugin for the Smarty tag * * @param string $tag tag name * @param array $args array with tag attributes @@ -114,12 +114,12 @@ class Smarty_Internal_TemplateCompilerBase { $this->has_code = true; $this->has_output = false; // compile the smarty tag (required compile classes to compile the tag are autoloaded) - if (($_output = $this->$tag($args, $this)) === false) { + if (($_output = $this->generateCode($tag, $args)) === false) { if (isset($this->smarty->template_functions[$tag])) { // template defined by {template} tag $args['name'] = $tag; - $tag = 'internal_function_call'; - $_output = $this->$tag($args, $this); + $tag = 'function_call'; + $_output = $this->generateCode($tag, $args); } } if ($_output !== false) { @@ -144,9 +144,9 @@ class Smarty_Internal_TemplateCompilerBase { unset ($args['object_methode']); if (!in_array($methode, $this->smarty->registered_objects[$tag][3]) && (empty($this->smarty->registered_objects[$tag][1]) || in_array($methode, $this->smarty->registered_objects[$tag][1]))) { - return $this->object_function($args, $tag, $methode, $this); + return $this->generateCode('object_function',$args, $tag, $methode); } elseif (in_array($methode, $this->smarty->registered_objects[$tag][3])) { - return $this->object_block_function($args, $tag, $methode, $this); + return $this->generateCode('object_block_function',$args, $tag, $methode); } else { return $this->trigger_template_error ('unallowed methode "' . $methode . '" in registered object "' . $tag . '"'); } @@ -159,11 +159,11 @@ class Smarty_Internal_TemplateCompilerBase { if (!$this->smarty->registered_plugins[$tag][2]) { $this->tag_nocache = true; } - return call_user_func_array($this->smarty->registered_plugins[$tag][1], array($args, $this)); + return call_user_func($this->smarty->registered_plugins[$tag][1], $args, $this); } // compile function or block plugin $plugin_type = $this->smarty->registered_plugins[$tag][0] . '_plugin'; - return $this->$plugin_type($args, $tag, $this); + return $this->generateCode($plugin_type, $args, $tag); } // compile closing tag of block function if (strlen($tag) > 5 && substr_compare($tag, 'close', -5, 5) == 0) { @@ -173,14 +173,14 @@ class Smarty_Internal_TemplateCompilerBase { $methode = $args['object_methode']; unset ($args['object_methode']); if (in_array($methode, $this->smarty->registered_objects[$base_tag][3])) { - return $this->object_block_function($args, $tag, $methode, $this); + return $this->generateCode('object_block_function', $args, $tag, $methode); } else { return $this->trigger_template_error ('unallowed closing tag methode "' . $methode . '" in registered object "' . $base_tag . '"'); } } // plugin ? if (isset($this->smarty->registered_plugins[$base_tag]) && $this->smarty->registered_plugins[$base_tag][0] == 'block') { - return $this->block_plugin($args, $tag, $this); + return $this->generateCode('block_plugin',$args, $tag); } } $this->trigger_template_error ("unknown tag \"" . $tag . "\""); @@ -192,26 +192,28 @@ class Smarty_Internal_TemplateCompilerBase { * * compile objects cached for reuse. * class name format: Smarty_Internal_Compile_TagName - * plugin filename format: internal.compile_tagname.php + * plugin filename format: Smarty_Internal_Tagname.php * * @param $tag string tag name * @param $args array with tag attributes + * @param $subtag optional tag name at plugins + * @param $method string optional method on object tags * @return string compiled code */ - public function __call($name, $args) + public function generateCode($tag, $args, $subtag = null, $method = null) { // re-use object if already exists - if (isset(self::$_tag_objects[$name])) { + if (isset(self::$_tag_objects[$tag])) { // compile this tag - return call_user_func_array(array(self::$_tag_objects[$name], 'compile'), $args); + return call_user_func(array(self::$_tag_objects[$tag], 'compile'), $args, $this, $subtag, $method); } // lazy load internal compiler plugin - $class_name = "Smarty_Internal_Compile_{$name}"; + $class_name = 'Smarty_Internal_Compile_' . $tag; if ($this->smarty->loadPlugin($class_name)) { // use plugin if found - self::$_tag_objects[$name] = new $class_name; + self::$_tag_objects[$tag] = new $class_name; // compile this tag - return call_user_func_array(array(self::$_tag_objects[$name], 'compile'), $args); + return call_user_func(array(self::$_tag_objects[$tag], 'compile'), $args, $this, $subtag, $method); } // no internal compile plugin for this tag return false; diff --git a/libs/sysplugins/internal.templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php similarity index 52% rename from libs/sysplugins/internal.templatelexer.php rename to libs/sysplugins/smarty_internal_templatelexer.php index 0effcf07..1cfc2b36 100644 --- a/libs/sysplugins/internal.templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -18,7 +18,7 @@ class Smarty_Internal_Templatelexer public $value; public $node; public $line; - private $state = 1; + public $state = 1; public $smarty_token_names = array ( // Text for parser error messages 'IDENTITY' => '===', 'NONEIDENTITY' => '!==', @@ -62,8 +62,7 @@ class Smarty_Internal_Templatelexer 'OTHER' => 'text', 'PHP' => 'PHP code', 'LDELSLASH' => 'closing tag', - 'COMMENTSTART' => '{*', - 'COMMENTEND' => '*}', + 'COMMENT' => 'comment', 'LITERALEND' => 'literal close', 'AS' => 'as', 'NULL' => 'null', @@ -83,6 +82,7 @@ class Smarty_Internal_Templatelexer $this->rdel = preg_quote($this->smarty->right_delimiter); $this->smarty_token_names['LDEL'] = $this->smarty->left_delimiter; $this->smarty_token_names['RDEL'] = $this->smarty->right_delimiter; + $this->ldel_count = 0; } public static function &instance($new_instance = null) { @@ -123,85 +123,13 @@ class Smarty_Internal_Templatelexer function yylex1() { $tokenMap = array ( - 1 => 0, - 2 => 0, - 3 => 0, + 1 => 2, 4 => 0, - 5 => 0, - 6 => 0, - 7 => 0, - 8 => 1, - 10 => 0, - 11 => 0, - 12 => 0, - 13 => 0, - 14 => 0, - 15 => 0, - 16 => 0, - 17 => 0, - 18 => 0, - 19 => 0, - 20 => 0, - 21 => 0, - 22 => 1, - 24 => 0, - 25 => 0, - 26 => 0, - 27 => 0, - 28 => 0, - 29 => 1, - 31 => 1, - 33 => 1, - 35 => 1, - 37 => 1, - 39 => 1, - 41 => 1, - 43 => 1, - 45 => 1, - 47 => 1, - 49 => 0, - 50 => 0, - 51 => 0, - 52 => 0, - 53 => 0, - 54 => 0, - 55 => 0, - 56 => 0, - 57 => 0, - 58 => 0, - 59 => 0, - 60 => 0, - 61 => 0, - 62 => 0, - 63 => 0, - 64 => 0, - 65 => 0, - 66 => 0, - 67 => 1, - 69 => 1, - 71 => 1, - 73 => 0, - 74 => 0, - 75 => 0, - 76 => 0, - 77 => 0, - 78 => 0, - 79 => 0, - 80 => 0, - 81 => 0, - 82 => 0, - 83 => 0, - 84 => 0, - 85 => 0, - 86 => 1, - 88 => 0, - 89 => 0, - 90 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^(\\{\\})|^(\\s*<\\?xml)|^(\\s*<\\?php)|^(\\s*<\\?=)|^(\\s*\\?>)|^(\\s*\\*".$this->rdel.")|^(\\s*".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(\\s*".$this->ldel."literal".$this->rdel.")|^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)/"; + $yy_global_pattern = "/^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -210,7 +138,7 @@ class Smarty_Internal_Templatelexer if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . 'an empty string. Input "' . substr($this->data, - $this->counter, 5) . '... state SMARTY'); + $this->counter, 5) . '... state TEXT'); } next($yymatches); // skip global match $this->token = key($yymatches); // token number @@ -241,80 +169,8 @@ class Smarty_Internal_Templatelexer // skip this token continue; } else { $yy_yymore_patterns = array( - 1 => array(0, "^(\\s*<\\?xml)|^(\\s*<\\?php)|^(\\s*<\\?=)|^(\\s*\\?>)|^(\\s*\\*".$this->rdel.")|^(\\s*".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(\\s*".$this->ldel."literal".$this->rdel.")|^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 2 => array(0, "^(\\s*<\\?php)|^(\\s*<\\?=)|^(\\s*\\?>)|^(\\s*\\*".$this->rdel.")|^(\\s*".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(\\s*".$this->ldel."literal".$this->rdel.")|^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 3 => array(0, "^(\\s*<\\?=)|^(\\s*\\?>)|^(\\s*\\*".$this->rdel.")|^(\\s*".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(\\s*".$this->ldel."literal".$this->rdel.")|^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 4 => array(0, "^(\\s*\\?>)|^(\\s*\\*".$this->rdel.")|^(\\s*".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(\\s*".$this->ldel."literal".$this->rdel.")|^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 5 => array(0, "^(\\s*\\*".$this->rdel.")|^(\\s*".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(\\s*".$this->ldel."literal".$this->rdel.")|^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 6 => array(0, "^(\\s*".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(\\s*".$this->ldel."literal".$this->rdel.")|^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 7 => array(0, "^((\\\\\"|\\\\'))|^(')|^(\\s*".$this->ldel."literal".$this->rdel.")|^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 8 => array(1, "^(')|^(\\s*".$this->ldel."literal".$this->rdel.")|^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 10 => array(1, "^(\\s*".$this->ldel."literal".$this->rdel.")|^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 11 => array(1, "^(\\s*".$this->ldel."\/literal".$this->rdel.")|^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 12 => array(1, "^(\\s*".$this->ldel."ldelim".$this->rdel.")|^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 13 => array(1, "^(\\s*".$this->ldel."rdelim".$this->rdel.")|^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 14 => array(1, "^(\\s*".$this->ldel."\\s{1,}\/)|^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 15 => array(1, "^(\\s*".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 16 => array(1, "^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 17 => array(1, "^(\\s*".$this->ldel."\/)|^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 18 => array(1, "^(\\s*".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 19 => 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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 20 => 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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 21 => 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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 22 => 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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 24 => 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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 25 => array(2, "^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 26 => array(2, "^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 27 => array(2, "^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 28 => array(2, "^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 29 => array(3, "^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 31 => array(4, "^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 33 => array(5, "^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 35 => array(6, "^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 37 => array(7, "^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 39 => array(8, "^(!\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 41 => array(9, "^(\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 43 => array(10, "^(\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 45 => array(11, "^(\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 47 => array(12, "^(\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 49 => array(12, "^(\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 50 => array(12, "^(\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 51 => array(12, "^(\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 52 => array(12, "^(\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 53 => array(12, "^(\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 54 => array(12, "^(\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 55 => array(12, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 56 => array(12, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 57 => array(12, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 58 => array(12, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 59 => array(12, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 60 => array(12, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 61 => array(12, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 62 => array(12, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 63 => array(12, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 64 => array(12, "^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 65 => array(12, "^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 66 => array(12, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 67 => array(13, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 69 => array(14, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 71 => array(15, "^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 73 => array(15, "^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 74 => array(15, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 75 => array(15, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 76 => array(15, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 77 => array(15, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 78 => array(15, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 79 => array(15, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 80 => array(15, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 81 => array(15, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 82 => array(15, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 83 => array(15, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 84 => array(15, "^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 85 => array(15, "^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 86 => array(16, "^(\\w+)|^(\\s+)|^(.)"), - 88 => array(16, "^(\\s+)|^(.)"), - 89 => array(16, "^(.)"), - 90 => array(16, ""), + 1 => array(0, "^([\S\s]+)"), + 4 => array(0, ""), ); // yymore is needed @@ -370,385 +226,790 @@ class Smarty_Internal_Templatelexer } // end function - const SMARTY = 1; + const TEXT = 1; function yy_r1_1($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; - } - function yy_r1_2($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_XML; - } - function yy_r1_3($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_PHP; + if (substr($this->value,-2) == 'value = substr($this->value,0,-2); + $this->yybegin(3); + } else { + $this->value = substr($this->value,0,-strlen($this->smarty->left_delimiter)); + $this->yybegin(2); + } + if (strlen($this->value) == 0) { + return true; // change state directly + } else { + return; // change state after processiing token + } } function yy_r1_4($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_SHORTTAGSTART; + $this->token = Smarty_Internal_Templateparser::TP_OTHER; } - function yy_r1_5($yy_subpatterns) + + + function yylex2() + { + $tokenMap = array ( + 1 => 0, + 2 => 2, + 5 => 1, + 7 => 0, + 8 => 0, + 9 => 0, + 10 => 0, + 11 => 0, + 12 => 0, + 13 => 0, + 14 => 0, + 15 => 0, + 16 => 0, + 17 => 0, + 18 => 0, + 19 => 1, + 21 => 0, + 22 => 0, + 23 => 0, + 24 => 0, + 25 => 0, + 26 => 1, + 28 => 1, + 30 => 1, + 32 => 1, + 34 => 1, + 36 => 1, + 38 => 1, + 40 => 1, + 42 => 1, + 44 => 1, + 46 => 0, + 47 => 0, + 48 => 0, + 49 => 0, + 50 => 0, + 51 => 0, + 52 => 0, + 53 => 0, + 54 => 0, + 55 => 0, + 56 => 0, + 57 => 0, + 58 => 0, + 59 => 0, + 60 => 0, + 61 => 0, + 62 => 0, + 63 => 0, + 64 => 1, + 66 => 1, + 68 => 1, + 70 => 0, + 71 => 0, + 72 => 0, + 73 => 0, + 74 => 0, + 75 => 0, + 76 => 0, + 77 => 0, + 78 => 0, + 79 => 0, + 80 => 0, + 81 => 0, + 82 => 0, + 83 => 1, + 85 => 0, + 86 => 0, + 87 => 0, + ); + if ($this->counter >= strlen($this->data)) { + return false; // end of input + } + $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)/"; + + do { + if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { + $yysubmatches = $yymatches; + $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + if (!count($yymatches)) { + throw new Exception('Error: lexing failed because a rule matched' . + 'an empty string. Input "' . substr($this->data, + $this->counter, 5) . '... state SMARTY'); + } + next($yymatches); // skip global match + $this->token = key($yymatches); // token number + if ($tokenMap[$this->token]) { + // extract sub-patterns for passing to lex function + $yysubmatches = array_slice($yysubmatches, $this->token + 1, + $tokenMap[$this->token]); + } else { + $yysubmatches = array(); + } + $this->value = current($yymatches); // token value + $r = $this->{'yy_r2_' . $this->token}($yysubmatches); + if ($r === null) { + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + // accept this token + return true; + } elseif ($r === true) { + // we have changed state + // process this token in the new state + return $this->yylex(); + } elseif ($r === false) { + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + if ($this->counter >= strlen($this->data)) { + return false; // end of input + } + // skip this token + continue; + } else { $yy_yymore_patterns = array( + 1 => array(0, "^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 2 => array(2, "^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 5 => array(3, "^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 7 => array(3, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 8 => array(3, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 9 => array(3, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 10 => array(3, "^(".$this->ldel."rdelim".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 11 => array(3, "^(".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 12 => array(3, "^(".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 13 => array(3, "^(\\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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 14 => array(3, "^(".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 15 => array(3, "^(".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 16 => array(3, "^(".$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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 17 => array(3, "^(\\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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 18 => array(3, "^(\\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|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 19 => array(4, "^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 21 => array(4, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 22 => array(4, "^(null|NULL|Null)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 23 => array(4, "^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 24 => array(4, "^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 25 => array(4, "^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 26 => array(5, "^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|ne)\\s+)|^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 28 => array(6, "^(\\s*>=\\s*|\\s+(GE|ge)\\s+)|^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 30 => array(7, "^(\\s*<=\\s*|\\s+(LE|le)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 32 => array(8, "^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 34 => array(9, "^(\\s*<\\s*|\\s+(LT|lt)\\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+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 36 => array(10, "^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 38 => array(11, "^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 40 => array(12, "^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 42 => array(13, "^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 44 => array(14, "^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 46 => array(14, "^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 47 => array(14, "^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 48 => array(14, "^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 49 => array(14, "^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 50 => array(14, "^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 51 => array(14, "^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 52 => array(14, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 53 => array(14, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 54 => array(14, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 55 => array(14, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 56 => array(14, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 57 => array(14, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 58 => array(14, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 59 => array(14, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 60 => array(14, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 61 => array(14, "^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 62 => array(14, "^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 63 => array(14, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 64 => array(15, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 66 => array(16, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 68 => array(17, "^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 70 => array(17, "^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 71 => array(17, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 72 => array(17, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 73 => array(17, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 74 => array(17, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 75 => array(17, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 76 => array(17, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 77 => array(17, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 78 => array(17, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 79 => array(17, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 80 => array(17, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 81 => array(17, "^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 82 => array(17, "^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 83 => array(18, "^(\\w+)|^(\\s+)|^(.)"), + 85 => array(18, "^(\\s+)|^(.)"), + 86 => array(18, "^(.)"), + 87 => array(18, ""), + ); + + // yymore is needed + do { + if (!strlen($yy_yymore_patterns[$this->token][1])) { + throw new Exception('cannot do yymore for the last token'); + } + $yysubmatches = array(); + if (preg_match('/' . $yy_yymore_patterns[$this->token][1] . '/', + substr($this->data, $this->counter), $yymatches)) { + $yysubmatches = $yymatches; + $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + next($yymatches); // skip global match + $this->token += key($yymatches) + $yy_yymore_patterns[$this->token][0]; // token number + $this->value = current($yymatches); // token value + $this->line = substr_count($this->value, "\n"); + if ($tokenMap[$this->token]) { + // extract sub-patterns for passing to lex function + $yysubmatches = array_slice($yysubmatches, $this->token + 1, + $tokenMap[$this->token]); + } else { + $yysubmatches = array(); + } + } + $r = $this->{'yy_r2_' . $this->token}($yysubmatches); + } while ($r !== null && !is_bool($r)); + if ($r === true) { + // we have changed state + // process this token in the new state + return $this->yylex(); + } elseif ($r === false) { + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + if ($this->counter >= strlen($this->data)) { + return false; // end of input + } + // skip this token + continue; + } else { + // accept + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + return true; + } + } + } else { + throw new Exception('Unexpected input at line' . $this->line . + ': ' . $this->data[$this->counter]); + } + break; + } while (true); + + } // end function + + + const SMARTY = 2; + function yy_r2_1($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_SHORTTAGEND; + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + if (!$this->ldel_count) $this->yybegin(1); } - function yy_r1_6($yy_subpatterns) + function yy_r2_2($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_COMMENTEND; + $this->token = Smarty_Internal_Templateparser::TP_COMMENT; + if (!$this->ldel_count) $this->yybegin(1); } - function yy_r1_7($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_COMMENTSTART; - } - function yy_r1_8($yy_subpatterns) + function yy_r2_5($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; } - function yy_r1_10($yy_subpatterns) + function yy_r2_7($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SINGLEQUOTE; } - function yy_r1_11($yy_subpatterns) + function yy_r2_8($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LITERALSTART; } - function yy_r1_12($yy_subpatterns) + function yy_r2_9($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LITERALEND; + if (!$this->ldel_count) $this->yybegin(1); } - function yy_r1_13($yy_subpatterns) + function yy_r2_10($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDELIMTAG; + if (!$this->ldel_count) $this->yybegin(1); } - function yy_r1_14($yy_subpatterns) + function yy_r2_11($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_RDELIMTAG; + if (!$this->ldel_count) $this->yybegin(1); } - function yy_r1_15($yy_subpatterns) + function yy_r2_12($yy_subpatterns) { if ($this->smarty->auto_literal) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; + if (!$this->ldel_count) $this->yybegin(1); } else { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; + $this->ldel_count++; } } - function yy_r1_16($yy_subpatterns) + function yy_r2_13($yy_subpatterns) { if ($this->smarty->auto_literal) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; + if (!$this->ldel_count) $this->yybegin(1); } else { $this->token = Smarty_Internal_Templateparser::TP_LDEL; + $this->ldel_count++; } } - function yy_r1_17($yy_subpatterns) + function yy_r2_14($yy_subpatterns) { if ($this->smarty->auto_literal) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; + if (!$this->ldel_count) $this->yybegin(1); } else { $this->token = Smarty_Internal_Templateparser::TP_RDEL; + $this->ldel_count--; + if (!$this->ldel_count) $this->yybegin(1); } } - function yy_r1_18($yy_subpatterns) + function yy_r2_15($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; + $this->ldel_count++; } - function yy_r1_19($yy_subpatterns) + function yy_r2_16($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDEL; + $this->ldel_count++; } - function yy_r1_20($yy_subpatterns) + function yy_r2_17($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_RDEL; + $this->ldel_count--; + if (!$this->ldel_count) $this->yybegin(1); } - function yy_r1_21($yy_subpatterns) + function yy_r2_18($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISIN; } - function yy_r1_22($yy_subpatterns) + function yy_r2_19($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_AS; } - function yy_r1_24($yy_subpatterns) + function yy_r2_21($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_INSTANCEOF; } - function yy_r1_25($yy_subpatterns) + function yy_r2_22($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_BOOLEAN; } - function yy_r1_26($yy_subpatterns) + function yy_r2_23($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NULL; } - function yy_r1_27($yy_subpatterns) + function yy_r2_24($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_IDENTITY; } - function yy_r1_28($yy_subpatterns) + function yy_r2_25($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NONEIDENTITY; } - function yy_r1_29($yy_subpatterns) + function yy_r2_26($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_EQUALS; } - function yy_r1_31($yy_subpatterns) + function yy_r2_28($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NOTEQUALS; } - function yy_r1_33($yy_subpatterns) + function yy_r2_30($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_GREATEREQUAL; } - function yy_r1_35($yy_subpatterns) + function yy_r2_32($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LESSEQUAL; } - function yy_r1_37($yy_subpatterns) + function yy_r2_34($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_GREATERTHAN; } - function yy_r1_39($yy_subpatterns) + function yy_r2_36($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LESSTHAN; } - function yy_r1_41($yy_subpatterns) + function yy_r2_38($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NOT; } - function yy_r1_43($yy_subpatterns) + function yy_r2_40($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LAND; } - function yy_r1_45($yy_subpatterns) + function yy_r2_42($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LOR; } - function yy_r1_47($yy_subpatterns) + function yy_r2_44($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LXOR; } - function yy_r1_49($yy_subpatterns) + function yy_r2_46($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISODDBY; } - function yy_r1_50($yy_subpatterns) + function yy_r2_47($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY; } - function yy_r1_51($yy_subpatterns) + function yy_r2_48($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISODD; } - function yy_r1_52($yy_subpatterns) + function yy_r2_49($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTODD; } - function yy_r1_53($yy_subpatterns) + function yy_r2_50($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISEVENBY; } - function yy_r1_54($yy_subpatterns) + function yy_r2_51($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY; } - function yy_r1_55($yy_subpatterns) + function yy_r2_52($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISEVEN; } - function yy_r1_56($yy_subpatterns) + function yy_r2_53($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN; } - function yy_r1_57($yy_subpatterns) + function yy_r2_54($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISDIVBY; } - function yy_r1_58($yy_subpatterns) + function yy_r2_55($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY; } - function yy_r1_59($yy_subpatterns) + function yy_r2_56($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OPENP; } - function yy_r1_60($yy_subpatterns) + function yy_r2_57($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_CLOSEP; } - function yy_r1_61($yy_subpatterns) + function yy_r2_58($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OPENB; } - function yy_r1_62($yy_subpatterns) + function yy_r2_59($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_CLOSEB; } - function yy_r1_63($yy_subpatterns) + function yy_r2_60($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_PTR; } - function yy_r1_64($yy_subpatterns) + function yy_r2_61($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_APTR; } - function yy_r1_65($yy_subpatterns) + function yy_r2_62($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_EQUAL; } - function yy_r1_66($yy_subpatterns) + function yy_r2_63($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_INTEGER; } - function yy_r1_67($yy_subpatterns) + function yy_r2_64($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_INCDEC; } - function yy_r1_69($yy_subpatterns) + function yy_r2_66($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_UNIMATH; } - function yy_r1_71($yy_subpatterns) + function yy_r2_68($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_MATH; } - function yy_r1_73($yy_subpatterns) + function yy_r2_70($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOLLAR; } - function yy_r1_74($yy_subpatterns) + function yy_r2_71($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON; } - function yy_r1_75($yy_subpatterns) + function yy_r2_72($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON; } - function yy_r1_76($yy_subpatterns) + function yy_r2_73($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_COLON; } - function yy_r1_77($yy_subpatterns) + function yy_r2_74($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_AT; } - function yy_r1_78($yy_subpatterns) + function yy_r2_75($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_HATCH; } - function yy_r1_79($yy_subpatterns) + function yy_r2_76($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_QUOTE; } - function yy_r1_80($yy_subpatterns) + function yy_r2_77($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; } - function yy_r1_81($yy_subpatterns) + function yy_r2_78($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_VERT; } - function yy_r1_82($yy_subpatterns) + function yy_r2_79($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOT; } - function yy_r1_83($yy_subpatterns) + function yy_r2_80($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_COMMA; } - function yy_r1_84($yy_subpatterns) + function yy_r2_81($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ANDSYM; } - function yy_r1_85($yy_subpatterns) + function yy_r2_82($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_QMARK; } - function yy_r1_86($yy_subpatterns) + function yy_r2_83($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; } - function yy_r1_88($yy_subpatterns) + function yy_r2_85($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ID; } - function yy_r1_89($yy_subpatterns) + function yy_r2_86($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SPACE; } - function yy_r1_90($yy_subpatterns) + function yy_r2_87($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } + + + function yylex3() + { + $tokenMap = array ( + 1 => 0, + 2 => 0, + 3 => 0, + 4 => 0, + 5 => 1, + 7 => 0, + ); + if ($this->counter >= strlen($this->data)) { + return false; // end of input + } + $yy_global_pattern = "/^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(\\?>)|^(([\S\s]*?)\\?>)|^([\S\s]+)/"; + + do { + if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { + $yysubmatches = $yymatches; + $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + if (!count($yymatches)) { + throw new Exception('Error: lexing failed because a rule matched' . + 'an empty string. Input "' . substr($this->data, + $this->counter, 5) . '... state PHP'); + } + next($yymatches); // skip global match + $this->token = key($yymatches); // token number + if ($tokenMap[$this->token]) { + // extract sub-patterns for passing to lex function + $yysubmatches = array_slice($yysubmatches, $this->token + 1, + $tokenMap[$this->token]); + } else { + $yysubmatches = array(); + } + $this->value = current($yymatches); // token value + $r = $this->{'yy_r3_' . $this->token}($yysubmatches); + if ($r === null) { + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + // accept this token + return true; + } elseif ($r === true) { + // we have changed state + // process this token in the new state + return $this->yylex(); + } elseif ($r === false) { + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + if ($this->counter >= strlen($this->data)) { + return false; // end of input + } + // skip this token + continue; + } else { $yy_yymore_patterns = array( + 1 => array(0, "^(<\\?php)|^(<\\?=)|^(\\?>)|^(([\S\s]*?)\\?>)|^([\S\s]+)"), + 2 => array(0, "^(<\\?=)|^(\\?>)|^(([\S\s]*?)\\?>)|^([\S\s]+)"), + 3 => array(0, "^(\\?>)|^(([\S\s]*?)\\?>)|^([\S\s]+)"), + 4 => array(0, "^(([\S\s]*?)\\?>)|^([\S\s]+)"), + 5 => array(1, "^([\S\s]+)"), + 7 => array(1, ""), + ); + + // yymore is needed + do { + if (!strlen($yy_yymore_patterns[$this->token][1])) { + throw new Exception('cannot do yymore for the last token'); + } + $yysubmatches = array(); + if (preg_match('/' . $yy_yymore_patterns[$this->token][1] . '/', + substr($this->data, $this->counter), $yymatches)) { + $yysubmatches = $yymatches; + $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + next($yymatches); // skip global match + $this->token += key($yymatches) + $yy_yymore_patterns[$this->token][0]; // token number + $this->value = current($yymatches); // token value + $this->line = substr_count($this->value, "\n"); + if ($tokenMap[$this->token]) { + // extract sub-patterns for passing to lex function + $yysubmatches = array_slice($yysubmatches, $this->token + 1, + $tokenMap[$this->token]); + } else { + $yysubmatches = array(); + } + } + $r = $this->{'yy_r3_' . $this->token}($yysubmatches); + } while ($r !== null && !is_bool($r)); + if ($r === true) { + // we have changed state + // process this token in the new state + return $this->yylex(); + } elseif ($r === false) { + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + if ($this->counter >= strlen($this->data)) { + return false; // end of input + } + // skip this token + continue; + } else { + // accept + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + return true; + } + } + } else { + throw new Exception('Unexpected input at line' . $this->line . + ': ' . $this->data[$this->counter]); + } + break; + } while (true); + + } // end function + + + const PHP = 3; + function yy_r3_1($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_XML; + } + function yy_r3_2($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_PHP; + } + function yy_r3_3($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_SHORTTAGSTART; + } + function yy_r3_4($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_SHORTTAGEND; + $this->yybegin(1); + } + function yy_r3_5($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->value = substr($this->value,0,-2); + } + function yy_r3_7($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; diff --git a/libs/sysplugins/internal.templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php similarity index 59% rename from libs/sysplugins/internal.templateparser.php rename to libs/sysplugins/smarty_internal_templateparser.php index 837ba128..b2fecfca 100644 --- a/libs/sysplugins/internal.templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -103,12 +103,12 @@ class TP_yyStackEntry // code external to the class is included here // declare_class is output here -#line 12 "internal.templateparser.y" -class Smarty_Internal_Templateparser#line 109 "internal.templateparser.php" +#line 12 "smarty_internal_templateparser.y" +class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.php" { /* First off, code is included which follows the "include_class" declaration ** in the input file. */ -#line 14 "internal.templateparser.y" +#line 14 "smarty_internal_templateparser.y" // states whether the parse was successful or not public $successful = true; @@ -141,7 +141,7 @@ class Smarty_Internal_Templateparser#line 109 "internal.templateparser.php" return $instance; } -#line 147 "internal.templateparser.php" +#line 147 "smarty_internal_templateparser.php" /* Next is all token values, as class constants */ @@ -159,72 +159,71 @@ class Smarty_Internal_Templateparser#line 109 "internal.templateparser.php" const TP_SHORTTAGEND = 5; const TP_PHPSTART = 6; const TP_PHPEND = 7; - const TP_COMMENTEND = 8; - const TP_COMMENTSTART = 9; - const TP_SINGLEQUOTE = 10; - const TP_LITERALSTART = 11; - const TP_LITERALEND = 12; - const TP_LDELIMTAG = 13; - const TP_RDELIMTAG = 14; - const TP_LDELSLASH = 15; - const TP_LDEL = 16; - const TP_RDEL = 17; - const TP_ISIN = 18; - const TP_AS = 19; - const TP_BOOLEAN = 20; - const TP_NULL = 21; - const TP_IDENTITY = 22; - const TP_NONEIDENTITY = 23; - const TP_EQUALS = 24; - const TP_NOTEQUALS = 25; - const TP_GREATEREQUAL = 26; - const TP_LESSEQUAL = 27; - const TP_GREATERTHAN = 28; - const TP_LESSTHAN = 29; - const TP_NOT = 30; - const TP_LAND = 31; - const TP_LOR = 32; - const TP_LXOR = 33; - const TP_ISODDBY = 34; - const TP_ISNOTODDBY = 35; - const TP_ISODD = 36; - const TP_ISNOTODD = 37; - const TP_ISEVENBY = 38; - const TP_ISNOTEVENBY = 39; - const TP_ISEVEN = 40; - const TP_ISNOTEVEN = 41; - const TP_ISDIVBY = 42; - const TP_ISNOTDIVBY = 43; - const TP_OPENP = 44; - const TP_CLOSEP = 45; - const TP_OPENB = 46; - const TP_CLOSEB = 47; - const TP_PTR = 48; - const TP_APTR = 49; - const TP_EQUAL = 50; - const TP_INTEGER = 51; - const TP_INCDEC = 52; - const TP_UNIMATH = 53; - const TP_MATH = 54; - const TP_DOLLAR = 55; - const TP_COLON = 56; - const TP_DOUBLECOLON = 57; - const TP_SEMICOLON = 58; - const TP_AT = 59; - const TP_HATCH = 60; - const TP_QUOTE = 61; - const TP_BACKTICK = 62; - const TP_VERT = 63; - const TP_DOT = 64; - const TP_COMMA = 65; - const TP_ANDSYM = 66; - const TP_ID = 67; - const TP_SPACE = 68; - const TP_INSTANCEOF = 69; - const TP_QMARK = 70; - const YY_NO_ACTION = 481; - const YY_ACCEPT_ACTION = 480; - const YY_ERROR_ACTION = 479; + const TP_COMMENT = 8; + const TP_SINGLEQUOTE = 9; + const TP_LITERALSTART = 10; + const TP_LITERALEND = 11; + const TP_LDELIMTAG = 12; + const TP_RDELIMTAG = 13; + const TP_LDELSLASH = 14; + const TP_LDEL = 15; + const TP_RDEL = 16; + const TP_ISIN = 17; + const TP_AS = 18; + const TP_BOOLEAN = 19; + const TP_NULL = 20; + const TP_IDENTITY = 21; + const TP_NONEIDENTITY = 22; + const TP_EQUALS = 23; + const TP_NOTEQUALS = 24; + const TP_GREATEREQUAL = 25; + const TP_LESSEQUAL = 26; + const TP_GREATERTHAN = 27; + const TP_LESSTHAN = 28; + const TP_NOT = 29; + const TP_LAND = 30; + const TP_LOR = 31; + const TP_LXOR = 32; + const TP_ISODDBY = 33; + const TP_ISNOTODDBY = 34; + const TP_ISODD = 35; + const TP_ISNOTODD = 36; + const TP_ISEVENBY = 37; + const TP_ISNOTEVENBY = 38; + const TP_ISEVEN = 39; + const TP_ISNOTEVEN = 40; + const TP_ISDIVBY = 41; + const TP_ISNOTDIVBY = 42; + const TP_OPENP = 43; + const TP_CLOSEP = 44; + const TP_OPENB = 45; + const TP_CLOSEB = 46; + const TP_PTR = 47; + const TP_APTR = 48; + const TP_EQUAL = 49; + const TP_INTEGER = 50; + const TP_INCDEC = 51; + const TP_UNIMATH = 52; + const TP_MATH = 53; + const TP_DOLLAR = 54; + const TP_COLON = 55; + const TP_DOUBLECOLON = 56; + const TP_SEMICOLON = 57; + const TP_AT = 58; + const TP_HATCH = 59; + const TP_QUOTE = 60; + const TP_BACKTICK = 61; + const TP_VERT = 62; + const TP_DOT = 63; + const TP_COMMA = 64; + const TP_ANDSYM = 65; + const TP_ID = 66; + const TP_SPACE = 67; + const TP_INSTANCEOF = 68; + const TP_QMARK = 69; + const YY_NO_ACTION = 478; + const YY_ACCEPT_ACTION = 477; + const YY_ERROR_ACTION = 476; /* 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,483 +275,465 @@ class Smarty_Internal_Templateparser#line 109 "internal.templateparser.php" ** shifting non-terminals after a reduce. ** self::$yy_default Default action for each state. */ - const YY_SZ_ACTTAB = 1085; + const YY_SZ_ACTTAB = 996; static public $yy_action = array( - /* 0 */ 276, 282, 283, 8, 11, 277, 274, 7, 12, 280, - /* 10 */ 281, 4, 3, 28, 276, 282, 283, 8, 11, 277, - /* 20 */ 274, 7, 12, 280, 281, 4, 3, 183, 173, 276, - /* 30 */ 282, 283, 8, 11, 277, 274, 7, 12, 280, 281, - /* 40 */ 4, 3, 62, 289, 124, 62, 28, 24, 73, 291, - /* 50 */ 170, 73, 254, 255, 78, 254, 255, 213, 210, 65, - /* 60 */ 178, 214, 5, 69, 287, 76, 297, 74, 50, 226, - /* 70 */ 227, 127, 2, 271, 182, 176, 13, 250, 14, 23, - /* 80 */ 25, 14, 220, 207, 17, 40, 207, 67, 40, 192, - /* 90 */ 69, 240, 50, 58, 62, 50, 58, 287, 228, 166, - /* 100 */ 73, 128, 158, 153, 254, 255, 241, 78, 276, 282, - /* 110 */ 283, 8, 11, 277, 274, 7, 12, 280, 281, 4, - /* 120 */ 3, 232, 222, 347, 42, 184, 271, 62, 23, 78, - /* 130 */ 62, 262, 161, 73, 18, 207, 73, 254, 255, 69, - /* 140 */ 254, 255, 311, 249, 50, 58, 10, 5, 271, 62, - /* 150 */ 217, 167, 28, 125, 38, 73, 244, 245, 258, 254, - /* 160 */ 255, 13, 150, 14, 23, 270, 14, 263, 207, 246, - /* 170 */ 40, 207, 64, 40, 171, 67, 131, 50, 58, 26, - /* 180 */ 50, 58, 350, 23, 157, 14, 25, 45, 161, 265, - /* 190 */ 207, 62, 40, 69, 67, 244, 245, 73, 50, 50, - /* 200 */ 58, 254, 255, 287, 16, 264, 166, 20, 246, 16, - /* 210 */ 62, 28, 122, 62, 28, 22, 73, 109, 51, 73, - /* 220 */ 254, 255, 109, 254, 255, 9, 16, 14, 240, 190, - /* 230 */ 206, 43, 207, 350, 40, 141, 67, 252, 33, 109, - /* 240 */ 263, 50, 58, 241, 23, 161, 14, 23, 166, 14, - /* 250 */ 1, 207, 161, 40, 207, 69, 40, 192, 69, 22, - /* 260 */ 50, 58, 287, 50, 58, 287, 62, 163, 336, 36, - /* 270 */ 167, 189, 73, 57, 230, 78, 254, 255, 89, 202, - /* 280 */ 162, 189, 240, 165, 180, 78, 105, 44, 256, 15, - /* 290 */ 43, 238, 19, 253, 271, 62, 35, 241, 256, 279, - /* 300 */ 9, 73, 14, 161, 271, 254, 255, 207, 16, 40, - /* 310 */ 189, 67, 16, 34, 78, 216, 50, 58, 480, 96, - /* 320 */ 211, 109, 293, 45, 206, 109, 240, 256, 160, 23, - /* 330 */ 155, 14, 198, 271, 234, 46, 207, 225, 40, 161, - /* 340 */ 67, 241, 32, 172, 1, 50, 58, 36, 151, 43, - /* 350 */ 39, 247, 159, 299, 305, 306, 303, 309, 307, 304, - /* 360 */ 310, 308, 243, 240, 39, 44, 292, 209, 305, 306, - /* 370 */ 303, 309, 307, 304, 310, 308, 161, 292, 241, 62, - /* 380 */ 30, 69, 100, 61, 161, 73, 50, 161, 266, 254, - /* 390 */ 255, 179, 78, 115, 161, 161, 39, 273, 273, 161, - /* 400 */ 305, 306, 303, 309, 307, 304, 310, 308, 223, 161, - /* 410 */ 140, 271, 186, 23, 156, 14, 69, 174, 152, 28, - /* 420 */ 207, 50, 197, 251, 69, 204, 52, 161, 177, 50, - /* 430 */ 58, 203, 171, 191, 188, 63, 167, 54, 82, 66, - /* 440 */ 118, 161, 29, 288, 244, 245, 208, 260, 300, 189, - /* 450 */ 105, 57, 256, 78, 138, 132, 93, 246, 271, 152, - /* 460 */ 240, 195, 300, 103, 105, 161, 256, 251, 251, 189, - /* 470 */ 201, 55, 271, 78, 146, 241, 85, 279, 152, 233, - /* 480 */ 259, 195, 300, 106, 105, 275, 256, 251, 72, 189, - /* 490 */ 68, 57, 271, 78, 142, 147, 95, 279, 237, 154, - /* 500 */ 47, 195, 300, 102, 105, 273, 256, 251, 251, 189, - /* 510 */ 60, 57, 271, 78, 161, 97, 90, 279, 237, 171, - /* 520 */ 259, 195, 300, 37, 105, 273, 256, 189, 171, 57, - /* 530 */ 224, 78, 271, 134, 88, 171, 230, 279, 237, 195, - /* 540 */ 300, 189, 105, 56, 256, 78, 251, 59, 84, 152, - /* 550 */ 271, 15, 101, 195, 300, 279, 105, 139, 256, 298, - /* 560 */ 268, 189, 273, 113, 271, 78, 290, 120, 112, 279, - /* 570 */ 251, 212, 143, 260, 300, 62, 105, 263, 256, 236, - /* 580 */ 288, 73, 273, 273, 271, 254, 255, 237, 130, 137, - /* 590 */ 160, 20, 164, 295, 145, 231, 215, 46, 205, 263, - /* 600 */ 285, 251, 251, 185, 27, 77, 189, 71, 57, 23, - /* 610 */ 78, 175, 75, 94, 181, 80, 207, 278, 195, 300, - /* 620 */ 69, 105, 229, 256, 189, 50, 58, 267, 78, 271, - /* 630 */ 31, 269, 168, 189, 279, 57, 261, 78, 83, 272, - /* 640 */ 87, 256, 19, 258, 42, 195, 300, 271, 105, 257, - /* 650 */ 256, 248, 200, 189, 169, 57, 271, 78, 219, 242, - /* 660 */ 91, 279, 221, 111, 239, 195, 300, 288, 105, 21, - /* 670 */ 256, 270, 41, 189, 110, 57, 271, 78, 6, 286, - /* 680 */ 86, 279, 49, 187, 81, 195, 300, 37, 105, 48, - /* 690 */ 256, 235, 70, 189, 259, 57, 271, 78, 283, 284, - /* 700 */ 92, 279, 283, 283, 283, 195, 300, 283, 105, 283, - /* 710 */ 256, 283, 283, 283, 283, 189, 271, 53, 79, 78, - /* 720 */ 283, 279, 283, 283, 283, 283, 283, 260, 300, 283, - /* 730 */ 105, 283, 256, 189, 283, 129, 218, 78, 271, 283, - /* 740 */ 283, 283, 283, 283, 283, 260, 300, 283, 105, 199, - /* 750 */ 256, 283, 283, 189, 283, 119, 271, 66, 283, 283, - /* 760 */ 189, 283, 108, 283, 78, 260, 300, 283, 105, 283, - /* 770 */ 256, 283, 260, 300, 283, 105, 271, 256, 283, 283, - /* 780 */ 196, 283, 283, 271, 283, 189, 283, 108, 283, 78, - /* 790 */ 283, 283, 283, 283, 283, 283, 283, 260, 300, 189, - /* 800 */ 105, 108, 256, 78, 283, 301, 283, 283, 271, 283, - /* 810 */ 283, 260, 300, 189, 105, 113, 256, 78, 283, 194, - /* 820 */ 283, 283, 271, 283, 283, 260, 300, 283, 105, 189, - /* 830 */ 256, 108, 283, 78, 283, 283, 271, 283, 283, 283, - /* 840 */ 283, 260, 300, 283, 105, 294, 256, 283, 283, 193, - /* 850 */ 283, 283, 271, 189, 283, 133, 283, 78, 283, 283, - /* 860 */ 189, 283, 117, 283, 78, 260, 300, 189, 105, 116, - /* 870 */ 256, 78, 260, 300, 283, 105, 271, 256, 283, 260, - /* 880 */ 300, 283, 105, 271, 256, 189, 283, 121, 283, 78, - /* 890 */ 271, 283, 189, 283, 148, 283, 78, 260, 300, 189, - /* 900 */ 105, 123, 256, 78, 260, 300, 283, 105, 271, 256, - /* 910 */ 283, 260, 300, 283, 105, 271, 256, 283, 283, 283, - /* 920 */ 283, 189, 271, 126, 283, 78, 283, 283, 283, 283, - /* 930 */ 283, 283, 283, 260, 300, 189, 105, 135, 256, 78, - /* 940 */ 283, 283, 283, 283, 271, 283, 283, 260, 300, 189, - /* 950 */ 105, 149, 256, 78, 283, 283, 283, 283, 271, 283, - /* 960 */ 283, 260, 300, 189, 105, 114, 256, 78, 283, 283, - /* 970 */ 283, 283, 271, 283, 283, 260, 300, 189, 105, 136, - /* 980 */ 256, 78, 283, 283, 283, 283, 271, 283, 283, 260, - /* 990 */ 300, 189, 105, 144, 256, 78, 283, 283, 283, 283, - /* 1000 */ 271, 283, 283, 260, 300, 189, 105, 107, 256, 78, - /* 1010 */ 283, 283, 283, 283, 271, 283, 283, 260, 300, 189, - /* 1020 */ 105, 283, 256, 78, 283, 283, 283, 283, 271, 283, - /* 1030 */ 283, 260, 300, 189, 104, 283, 256, 78, 283, 283, - /* 1040 */ 283, 283, 271, 283, 283, 260, 300, 189, 99, 283, - /* 1050 */ 256, 78, 283, 283, 283, 283, 271, 283, 283, 260, - /* 1060 */ 300, 189, 98, 283, 256, 78, 283, 283, 283, 283, - /* 1070 */ 271, 283, 283, 302, 296, 283, 283, 283, 256, 283, - /* 1080 */ 283, 283, 283, 283, 271, + /* 0 */ 222, 220, 247, 9, 3, 208, 215, 7, 4, 254, + /* 10 */ 249, 10, 12, 182, 222, 220, 247, 9, 3, 208, + /* 20 */ 215, 7, 4, 254, 249, 10, 12, 201, 291, 222, + /* 30 */ 220, 247, 9, 3, 208, 215, 7, 4, 254, 249, + /* 40 */ 10, 12, 43, 171, 149, 222, 220, 247, 9, 3, + /* 50 */ 208, 215, 7, 4, 254, 249, 10, 12, 63, 111, + /* 60 */ 144, 63, 277, 217, 64, 223, 134, 64, 207, 213, + /* 70 */ 152, 207, 213, 239, 241, 184, 186, 240, 8, 259, + /* 80 */ 252, 150, 73, 125, 235, 234, 124, 2, 69, 26, + /* 90 */ 163, 24, 11, 49, 14, 33, 259, 14, 285, 196, + /* 100 */ 197, 41, 196, 72, 41, 302, 69, 263, 49, 58, + /* 110 */ 226, 49, 58, 63, 295, 161, 63, 19, 154, 64, + /* 120 */ 279, 280, 64, 207, 213, 23, 207, 213, 195, 150, + /* 130 */ 104, 18, 77, 276, 179, 24, 8, 36, 174, 43, + /* 140 */ 210, 293, 272, 100, 106, 229, 199, 33, 190, 14, + /* 150 */ 11, 219, 14, 31, 196, 45, 41, 196, 72, 41, + /* 160 */ 69, 65, 266, 49, 58, 49, 49, 58, 63, 23, + /* 170 */ 44, 63, 166, 153, 64, 102, 25, 64, 207, 213, + /* 180 */ 21, 207, 213, 170, 18, 39, 272, 77, 204, 251, + /* 190 */ 233, 225, 205, 248, 246, 211, 255, 106, 477, 94, + /* 200 */ 238, 299, 33, 163, 14, 6, 219, 14, 1, 196, + /* 210 */ 283, 41, 196, 72, 41, 69, 72, 163, 49, 58, + /* 220 */ 49, 49, 58, 63, 95, 161, 63, 117, 161, 64, + /* 230 */ 163, 195, 64, 207, 213, 77, 207, 213, 195, 306, + /* 240 */ 104, 244, 77, 210, 293, 24, 98, 163, 229, 35, + /* 250 */ 210, 293, 177, 100, 219, 229, 77, 33, 203, 14, + /* 260 */ 33, 219, 14, 163, 196, 139, 41, 196, 69, 41, + /* 270 */ 223, 72, 143, 49, 58, 219, 49, 58, 63, 60, + /* 280 */ 162, 63, 24, 155, 64, 259, 195, 64, 207, 213, + /* 290 */ 77, 207, 213, 195, 274, 104, 168, 77, 210, 293, + /* 300 */ 36, 96, 163, 229, 17, 210, 293, 127, 100, 219, + /* 310 */ 229, 147, 33, 176, 14, 6, 219, 14, 45, 196, + /* 320 */ 259, 41, 196, 69, 41, 179, 72, 61, 49, 58, + /* 330 */ 290, 49, 58, 272, 77, 157, 304, 169, 44, 195, + /* 340 */ 305, 57, 274, 77, 288, 24, 88, 200, 156, 63, + /* 350 */ 300, 158, 172, 219, 100, 64, 229, 105, 163, 207, + /* 360 */ 213, 122, 219, 182, 39, 279, 280, 297, 251, 233, + /* 370 */ 225, 205, 248, 246, 211, 255, 279, 280, 276, 34, + /* 380 */ 195, 281, 148, 33, 77, 14, 77, 40, 304, 276, + /* 390 */ 196, 236, 210, 293, 69, 97, 272, 229, 242, 49, + /* 400 */ 58, 228, 300, 219, 53, 219, 162, 260, 39, 163, + /* 410 */ 110, 67, 251, 233, 225, 205, 248, 246, 211, 255, + /* 420 */ 18, 277, 183, 50, 181, 32, 62, 24, 54, 76, + /* 430 */ 66, 119, 101, 106, 63, 175, 63, 304, 210, 293, + /* 440 */ 64, 100, 64, 229, 207, 213, 207, 213, 195, 219, + /* 450 */ 57, 300, 77, 163, 180, 87, 347, 5, 304, 51, + /* 460 */ 202, 293, 236, 100, 130, 229, 301, 283, 33, 163, + /* 470 */ 33, 219, 300, 257, 182, 196, 297, 196, 272, 69, + /* 480 */ 163, 69, 204, 18, 49, 58, 49, 58, 195, 22, + /* 490 */ 57, 162, 77, 159, 37, 89, 106, 163, 218, 273, + /* 500 */ 202, 293, 1, 100, 113, 229, 182, 347, 195, 178, + /* 510 */ 57, 219, 77, 344, 19, 84, 297, 278, 191, 274, + /* 520 */ 202, 293, 195, 100, 57, 229, 77, 132, 136, 90, + /* 530 */ 193, 219, 150, 145, 202, 293, 297, 100, 258, 229, + /* 540 */ 195, 259, 57, 206, 77, 219, 259, 86, 214, 128, + /* 550 */ 297, 79, 202, 293, 195, 100, 57, 229, 77, 224, + /* 560 */ 231, 91, 259, 219, 182, 116, 202, 293, 297, 100, + /* 570 */ 230, 229, 195, 99, 56, 224, 77, 219, 18, 82, + /* 580 */ 274, 287, 297, 275, 202, 293, 68, 100, 274, 229, + /* 590 */ 195, 106, 57, 22, 77, 219, 129, 93, 165, 59, + /* 600 */ 297, 274, 202, 293, 195, 100, 57, 229, 77, 259, + /* 610 */ 43, 85, 16, 219, 274, 27, 202, 293, 297, 100, + /* 620 */ 141, 229, 163, 214, 195, 223, 57, 219, 77, 163, + /* 630 */ 133, 92, 297, 194, 150, 135, 202, 293, 29, 100, + /* 640 */ 262, 229, 195, 259, 55, 163, 77, 219, 259, 83, + /* 650 */ 40, 75, 297, 80, 202, 293, 195, 100, 120, 229, + /* 660 */ 77, 142, 151, 195, 333, 219, 223, 77, 210, 293, + /* 670 */ 297, 100, 38, 229, 308, 216, 227, 198, 298, 219, + /* 680 */ 229, 195, 16, 108, 185, 66, 219, 160, 286, 237, + /* 690 */ 28, 173, 74, 210, 293, 292, 100, 195, 229, 126, + /* 700 */ 212, 77, 267, 71, 219, 284, 192, 294, 163, 210, + /* 710 */ 293, 69, 100, 261, 229, 195, 49, 52, 78, 77, + /* 720 */ 219, 30, 250, 256, 187, 245, 253, 210, 293, 221, + /* 730 */ 100, 195, 229, 120, 270, 77, 268, 167, 219, 81, + /* 740 */ 189, 217, 296, 210, 293, 115, 100, 195, 229, 104, + /* 750 */ 42, 77, 13, 277, 219, 243, 271, 20, 265, 210, + /* 760 */ 293, 47, 100, 264, 229, 195, 188, 269, 48, 77, + /* 770 */ 219, 70, 195, 37, 121, 282, 77, 289, 282, 195, + /* 780 */ 282, 118, 229, 77, 210, 293, 224, 100, 219, 229, + /* 790 */ 282, 210, 293, 282, 100, 219, 229, 195, 282, 107, + /* 800 */ 282, 77, 219, 282, 282, 282, 282, 282, 282, 210, + /* 810 */ 293, 195, 100, 138, 229, 77, 282, 282, 282, 282, + /* 820 */ 219, 282, 282, 210, 293, 195, 100, 146, 229, 77, + /* 830 */ 282, 282, 282, 282, 219, 282, 282, 210, 293, 195, + /* 840 */ 100, 112, 229, 77, 282, 282, 282, 282, 219, 282, + /* 850 */ 303, 210, 293, 195, 100, 114, 229, 77, 282, 282, + /* 860 */ 282, 282, 219, 282, 15, 210, 293, 282, 100, 282, + /* 870 */ 229, 195, 282, 123, 282, 77, 219, 282, 195, 282, + /* 880 */ 140, 282, 77, 210, 293, 282, 100, 282, 229, 282, + /* 890 */ 210, 293, 282, 100, 219, 229, 282, 282, 282, 282, + /* 900 */ 282, 219, 195, 164, 131, 282, 77, 282, 282, 307, + /* 910 */ 46, 282, 282, 282, 210, 293, 195, 100, 103, 229, + /* 920 */ 77, 282, 282, 282, 282, 219, 282, 282, 210, 293, + /* 930 */ 195, 100, 109, 229, 77, 303, 282, 282, 282, 219, + /* 940 */ 282, 282, 210, 293, 195, 100, 137, 229, 77, 15, + /* 950 */ 282, 282, 282, 219, 195, 282, 210, 293, 77, 100, + /* 960 */ 282, 229, 282, 282, 282, 282, 209, 219, 282, 195, + /* 970 */ 282, 229, 282, 77, 282, 282, 282, 219, 282, 282, + /* 980 */ 282, 232, 282, 282, 282, 282, 229, 282, 164, 282, + /* 990 */ 282, 282, 219, 282, 282, 46, ); static public $yy_lookahead = array( - /* 0 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - /* 10 */ 41, 42, 43, 16, 31, 32, 33, 34, 35, 36, - /* 20 */ 37, 38, 39, 40, 41, 42, 43, 58, 45, 31, - /* 30 */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - /* 40 */ 42, 43, 10, 45, 101, 10, 16, 50, 16, 52, - /* 50 */ 79, 16, 20, 21, 83, 20, 21, 1, 2, 3, - /* 60 */ 4, 5, 30, 55, 67, 9, 47, 11, 60, 13, - /* 70 */ 14, 15, 16, 102, 19, 67, 44, 1, 46, 44, - /* 80 */ 50, 46, 47, 51, 65, 53, 51, 55, 53, 59, - /* 90 */ 55, 1, 60, 61, 10, 60, 61, 67, 8, 67, - /* 100 */ 16, 67, 67, 79, 20, 21, 16, 83, 31, 32, - /* 110 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - /* 120 */ 43, 1, 98, 17, 69, 79, 102, 10, 44, 83, - /* 130 */ 10, 105, 63, 16, 65, 51, 16, 20, 21, 55, - /* 140 */ 20, 21, 17, 67, 60, 61, 58, 30, 102, 10, - /* 150 */ 47, 67, 16, 65, 16, 16, 53, 54, 52, 20, - /* 160 */ 21, 44, 100, 46, 44, 103, 46, 105, 51, 66, - /* 170 */ 53, 51, 55, 53, 68, 55, 85, 60, 61, 16, - /* 180 */ 60, 61, 17, 44, 67, 46, 50, 67, 63, 51, - /* 190 */ 51, 10, 53, 55, 55, 53, 54, 16, 60, 60, - /* 200 */ 61, 20, 21, 67, 44, 67, 67, 44, 66, 44, - /* 210 */ 10, 16, 101, 10, 16, 50, 16, 57, 85, 16, - /* 220 */ 20, 21, 57, 20, 21, 44, 44, 46, 1, 67, - /* 230 */ 48, 48, 51, 68, 53, 100, 55, 10, 49, 57, - /* 240 */ 105, 60, 61, 16, 44, 63, 46, 44, 67, 46, - /* 250 */ 68, 51, 63, 53, 51, 55, 53, 59, 55, 50, - /* 260 */ 60, 61, 67, 60, 61, 67, 10, 67, 17, 46, - /* 270 */ 67, 79, 16, 81, 1, 83, 20, 21, 86, 87, - /* 280 */ 88, 79, 1, 91, 92, 83, 94, 64, 96, 16, - /* 290 */ 48, 10, 50, 91, 102, 10, 56, 16, 96, 107, - /* 300 */ 44, 16, 46, 63, 102, 20, 21, 51, 44, 53, - /* 310 */ 79, 55, 44, 49, 83, 47, 60, 61, 72, 73, - /* 320 */ 74, 57, 91, 67, 48, 57, 1, 96, 55, 44, - /* 330 */ 17, 46, 64, 102, 61, 62, 51, 12, 53, 63, - /* 340 */ 55, 16, 16, 59, 68, 60, 61, 46, 17, 48, - /* 350 */ 18, 67, 67, 17, 22, 23, 24, 25, 26, 27, - /* 360 */ 28, 29, 1, 1, 18, 64, 45, 5, 22, 23, - /* 370 */ 24, 25, 26, 27, 28, 29, 63, 45, 16, 10, - /* 380 */ 56, 55, 89, 89, 63, 16, 60, 63, 79, 20, - /* 390 */ 21, 45, 83, 67, 63, 63, 18, 104, 104, 63, - /* 400 */ 22, 23, 24, 25, 26, 27, 28, 29, 17, 63, - /* 410 */ 80, 102, 48, 44, 84, 46, 55, 75, 84, 16, - /* 420 */ 51, 60, 55, 93, 55, 83, 85, 63, 67, 60, - /* 430 */ 61, 75, 68, 77, 67, 79, 67, 81, 82, 83, - /* 440 */ 101, 63, 108, 104, 53, 54, 17, 91, 92, 79, - /* 450 */ 94, 81, 96, 83, 80, 80, 86, 66, 102, 84, - /* 460 */ 1, 91, 92, 78, 94, 63, 96, 93, 93, 79, - /* 470 */ 67, 81, 102, 83, 80, 16, 86, 107, 84, 93, - /* 480 */ 106, 91, 92, 78, 94, 17, 96, 93, 55, 79, - /* 490 */ 89, 81, 102, 83, 80, 80, 86, 107, 113, 84, - /* 500 */ 67, 91, 92, 78, 94, 104, 96, 93, 93, 79, - /* 510 */ 89, 81, 102, 83, 63, 97, 86, 107, 113, 68, - /* 520 */ 106, 91, 92, 56, 94, 104, 96, 79, 68, 81, - /* 530 */ 112, 83, 102, 80, 86, 68, 1, 107, 113, 91, - /* 540 */ 92, 79, 94, 81, 96, 83, 93, 89, 86, 84, - /* 550 */ 102, 16, 78, 91, 92, 107, 94, 80, 96, 45, - /* 560 */ 60, 79, 104, 81, 102, 83, 90, 89, 89, 107, - /* 570 */ 93, 5, 100, 91, 92, 10, 94, 105, 96, 62, - /* 580 */ 104, 16, 104, 104, 102, 20, 21, 113, 80, 80, - /* 590 */ 55, 44, 110, 111, 100, 17, 61, 62, 56, 105, - /* 600 */ 17, 93, 93, 55, 70, 55, 79, 55, 81, 44, - /* 610 */ 83, 67, 55, 86, 19, 45, 51, 17, 91, 92, - /* 620 */ 55, 94, 67, 96, 79, 60, 61, 60, 83, 102, - /* 630 */ 70, 67, 67, 79, 107, 81, 91, 83, 67, 67, - /* 640 */ 86, 96, 50, 52, 69, 91, 92, 102, 94, 51, - /* 650 */ 96, 67, 67, 79, 64, 81, 102, 83, 47, 62, - /* 660 */ 86, 107, 45, 101, 113, 91, 92, 104, 94, 44, - /* 670 */ 96, 103, 95, 79, 101, 81, 102, 83, 109, 74, - /* 680 */ 86, 107, 101, 76, 98, 91, 92, 56, 94, 67, - /* 690 */ 96, 112, 55, 79, 106, 81, 102, 83, 114, 87, - /* 700 */ 86, 107, 114, 114, 114, 91, 92, 114, 94, 114, - /* 710 */ 96, 114, 114, 114, 114, 79, 102, 81, 82, 83, - /* 720 */ 114, 107, 114, 114, 114, 114, 114, 91, 92, 114, - /* 730 */ 94, 114, 96, 79, 114, 81, 82, 83, 102, 114, - /* 740 */ 114, 114, 114, 114, 114, 91, 92, 114, 94, 75, - /* 750 */ 96, 114, 114, 79, 114, 81, 102, 83, 114, 114, - /* 760 */ 79, 114, 81, 114, 83, 91, 92, 114, 94, 114, - /* 770 */ 96, 114, 91, 92, 114, 94, 102, 96, 114, 114, - /* 780 */ 99, 114, 114, 102, 114, 79, 114, 81, 114, 83, - /* 790 */ 114, 114, 114, 114, 114, 114, 114, 91, 92, 79, - /* 800 */ 94, 81, 96, 83, 114, 99, 114, 114, 102, 114, - /* 810 */ 114, 91, 92, 79, 94, 81, 96, 83, 114, 99, - /* 820 */ 114, 114, 102, 114, 114, 91, 92, 114, 94, 79, - /* 830 */ 96, 81, 114, 83, 114, 114, 102, 114, 114, 114, - /* 840 */ 114, 91, 92, 114, 94, 111, 96, 114, 114, 99, - /* 850 */ 114, 114, 102, 79, 114, 81, 114, 83, 114, 114, - /* 860 */ 79, 114, 81, 114, 83, 91, 92, 79, 94, 81, - /* 870 */ 96, 83, 91, 92, 114, 94, 102, 96, 114, 91, - /* 880 */ 92, 114, 94, 102, 96, 79, 114, 81, 114, 83, - /* 890 */ 102, 114, 79, 114, 81, 114, 83, 91, 92, 79, - /* 900 */ 94, 81, 96, 83, 91, 92, 114, 94, 102, 96, - /* 910 */ 114, 91, 92, 114, 94, 102, 96, 114, 114, 114, - /* 920 */ 114, 79, 102, 81, 114, 83, 114, 114, 114, 114, - /* 930 */ 114, 114, 114, 91, 92, 79, 94, 81, 96, 83, - /* 940 */ 114, 114, 114, 114, 102, 114, 114, 91, 92, 79, - /* 950 */ 94, 81, 96, 83, 114, 114, 114, 114, 102, 114, - /* 960 */ 114, 91, 92, 79, 94, 81, 96, 83, 114, 114, - /* 970 */ 114, 114, 102, 114, 114, 91, 92, 79, 94, 81, - /* 980 */ 96, 83, 114, 114, 114, 114, 102, 114, 114, 91, - /* 990 */ 92, 79, 94, 81, 96, 83, 114, 114, 114, 114, - /* 1000 */ 102, 114, 114, 91, 92, 79, 94, 81, 96, 83, - /* 1010 */ 114, 114, 114, 114, 102, 114, 114, 91, 92, 79, - /* 1020 */ 94, 114, 96, 83, 114, 114, 114, 114, 102, 114, - /* 1030 */ 114, 91, 92, 79, 94, 114, 96, 83, 114, 114, - /* 1040 */ 114, 114, 102, 114, 114, 91, 92, 79, 94, 114, - /* 1050 */ 96, 83, 114, 114, 114, 114, 102, 114, 114, 91, - /* 1060 */ 92, 79, 94, 114, 96, 83, 114, 114, 114, 114, - /* 1070 */ 102, 114, 114, 91, 92, 114, 114, 114, 96, 114, - /* 1080 */ 114, 114, 114, 114, 102, + /* 0 */ 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + /* 10 */ 40, 41, 42, 67, 30, 31, 32, 33, 34, 35, + /* 20 */ 36, 37, 38, 39, 40, 41, 42, 57, 44, 30, + /* 30 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + /* 40 */ 41, 42, 47, 44, 16, 30, 31, 32, 33, 34, + /* 50 */ 35, 36, 37, 38, 39, 40, 41, 42, 9, 100, + /* 60 */ 99, 9, 103, 102, 15, 104, 79, 15, 19, 20, + /* 70 */ 83, 19, 20, 1, 2, 3, 4, 5, 29, 92, + /* 80 */ 8, 83, 10, 79, 12, 13, 14, 15, 54, 15, + /* 90 */ 62, 15, 43, 59, 45, 43, 92, 45, 46, 50, + /* 100 */ 66, 52, 50, 54, 52, 1, 54, 1, 59, 60, + /* 110 */ 104, 59, 60, 9, 46, 66, 9, 43, 66, 15, + /* 120 */ 52, 53, 15, 19, 20, 49, 19, 20, 78, 83, + /* 130 */ 80, 43, 82, 65, 58, 15, 29, 45, 74, 47, + /* 140 */ 90, 91, 66, 93, 56, 95, 82, 43, 98, 45, + /* 150 */ 43, 101, 45, 107, 50, 63, 52, 50, 54, 52, + /* 160 */ 54, 54, 46, 59, 60, 59, 59, 60, 9, 49, + /* 170 */ 66, 9, 66, 66, 15, 77, 15, 15, 19, 20, + /* 180 */ 64, 19, 20, 78, 43, 17, 66, 82, 47, 21, + /* 190 */ 22, 23, 24, 25, 26, 27, 28, 56, 71, 72, + /* 200 */ 73, 16, 43, 62, 45, 43, 101, 45, 67, 50, + /* 210 */ 112, 52, 50, 54, 52, 54, 54, 62, 59, 60, + /* 220 */ 59, 59, 60, 9, 96, 66, 9, 66, 66, 15, + /* 230 */ 62, 78, 15, 19, 20, 82, 19, 20, 78, 111, + /* 240 */ 80, 92, 82, 90, 91, 15, 93, 62, 95, 48, + /* 250 */ 90, 91, 78, 93, 101, 95, 82, 43, 98, 45, + /* 260 */ 43, 101, 45, 62, 50, 99, 52, 50, 54, 52, + /* 270 */ 104, 54, 79, 59, 60, 101, 59, 60, 9, 88, + /* 280 */ 66, 9, 15, 66, 15, 92, 78, 15, 19, 20, + /* 290 */ 82, 19, 20, 78, 103, 80, 66, 82, 90, 91, + /* 300 */ 45, 93, 62, 95, 64, 90, 91, 79, 93, 101, + /* 310 */ 95, 83, 43, 98, 45, 43, 101, 45, 63, 50, + /* 320 */ 92, 52, 50, 54, 52, 58, 54, 88, 59, 60, + /* 330 */ 78, 59, 60, 66, 82, 66, 1, 18, 66, 78, + /* 340 */ 16, 80, 103, 82, 9, 15, 85, 86, 87, 9, + /* 350 */ 15, 90, 91, 101, 93, 15, 95, 100, 62, 19, + /* 360 */ 20, 84, 101, 67, 17, 52, 53, 106, 21, 22, + /* 370 */ 23, 24, 25, 26, 27, 28, 52, 53, 65, 49, + /* 380 */ 78, 51, 78, 43, 82, 45, 82, 68, 1, 65, + /* 390 */ 50, 44, 90, 91, 54, 93, 66, 95, 11, 59, + /* 400 */ 60, 97, 15, 101, 84, 101, 66, 89, 17, 62, + /* 410 */ 100, 54, 21, 22, 23, 24, 25, 26, 27, 28, + /* 420 */ 43, 103, 74, 66, 76, 48, 78, 15, 80, 81, + /* 430 */ 82, 100, 77, 56, 9, 44, 9, 1, 90, 91, + /* 440 */ 15, 93, 15, 95, 19, 20, 19, 20, 78, 101, + /* 450 */ 80, 15, 82, 62, 47, 85, 16, 57, 1, 84, + /* 460 */ 90, 91, 44, 93, 64, 95, 9, 112, 43, 62, + /* 470 */ 43, 101, 15, 1, 67, 50, 106, 50, 66, 54, + /* 480 */ 62, 54, 47, 43, 59, 60, 59, 60, 78, 49, + /* 490 */ 80, 66, 82, 66, 55, 85, 56, 62, 66, 66, + /* 500 */ 90, 91, 67, 93, 88, 95, 67, 67, 78, 58, + /* 510 */ 80, 101, 82, 16, 43, 85, 106, 66, 54, 103, + /* 520 */ 90, 91, 78, 93, 80, 95, 82, 66, 79, 85, + /* 530 */ 66, 101, 83, 79, 90, 91, 106, 93, 66, 95, + /* 540 */ 78, 92, 80, 50, 82, 101, 92, 85, 51, 79, + /* 550 */ 106, 44, 90, 91, 78, 93, 80, 95, 82, 105, + /* 560 */ 5, 85, 92, 101, 67, 88, 90, 91, 106, 93, + /* 570 */ 16, 95, 78, 88, 80, 105, 82, 101, 43, 85, + /* 580 */ 103, 46, 106, 16, 90, 91, 88, 93, 103, 95, + /* 590 */ 78, 56, 80, 49, 82, 101, 79, 85, 63, 88, + /* 600 */ 106, 103, 90, 91, 78, 93, 80, 95, 82, 92, + /* 610 */ 47, 85, 49, 101, 103, 55, 90, 91, 106, 93, + /* 620 */ 99, 95, 62, 51, 78, 104, 80, 101, 82, 62, + /* 630 */ 79, 85, 106, 63, 83, 79, 90, 91, 55, 93, + /* 640 */ 44, 95, 78, 92, 80, 62, 82, 101, 92, 85, + /* 650 */ 68, 54, 106, 66, 90, 91, 78, 93, 80, 95, + /* 660 */ 82, 99, 16, 78, 16, 101, 104, 82, 90, 91, + /* 670 */ 106, 93, 15, 95, 59, 90, 91, 74, 16, 101, + /* 680 */ 95, 78, 49, 80, 1, 82, 101, 109, 110, 5, + /* 690 */ 69, 18, 54, 90, 91, 59, 93, 78, 95, 80, + /* 700 */ 81, 82, 61, 54, 101, 46, 55, 50, 62, 90, + /* 710 */ 91, 54, 93, 16, 95, 78, 59, 80, 81, 82, + /* 720 */ 101, 69, 16, 66, 1, 16, 66, 90, 91, 44, + /* 730 */ 93, 78, 95, 80, 66, 82, 61, 66, 101, 97, + /* 740 */ 66, 102, 112, 90, 91, 100, 93, 78, 95, 80, + /* 750 */ 94, 82, 108, 103, 101, 73, 86, 43, 111, 90, + /* 760 */ 91, 100, 93, 110, 95, 78, 75, 98, 66, 82, + /* 770 */ 101, 54, 78, 55, 80, 113, 82, 90, 113, 78, + /* 780 */ 113, 80, 95, 82, 90, 91, 105, 93, 101, 95, + /* 790 */ 113, 90, 91, 113, 93, 101, 95, 78, 113, 80, + /* 800 */ 113, 82, 101, 113, 113, 113, 113, 113, 113, 90, + /* 810 */ 91, 78, 93, 80, 95, 82, 113, 113, 113, 113, + /* 820 */ 101, 113, 113, 90, 91, 78, 93, 80, 95, 82, + /* 830 */ 113, 113, 113, 113, 101, 113, 113, 90, 91, 78, + /* 840 */ 93, 80, 95, 82, 113, 113, 113, 113, 101, 113, + /* 850 */ 1, 90, 91, 78, 93, 80, 95, 82, 113, 113, + /* 860 */ 113, 113, 101, 113, 15, 90, 91, 113, 93, 113, + /* 870 */ 95, 78, 113, 80, 113, 82, 101, 113, 78, 113, + /* 880 */ 80, 113, 82, 90, 91, 113, 93, 113, 95, 113, + /* 890 */ 90, 91, 113, 93, 101, 95, 113, 113, 113, 113, + /* 900 */ 113, 101, 78, 54, 80, 113, 82, 113, 113, 60, + /* 910 */ 61, 113, 113, 113, 90, 91, 78, 93, 80, 95, + /* 920 */ 82, 113, 113, 113, 113, 101, 113, 113, 90, 91, + /* 930 */ 78, 93, 80, 95, 82, 1, 113, 113, 113, 101, + /* 940 */ 113, 113, 90, 91, 78, 93, 80, 95, 82, 15, + /* 950 */ 113, 113, 113, 101, 78, 113, 90, 91, 82, 93, + /* 960 */ 113, 95, 113, 113, 113, 113, 90, 101, 113, 78, + /* 970 */ 113, 95, 113, 82, 113, 113, 113, 101, 113, 113, + /* 980 */ 113, 90, 113, 113, 113, 113, 95, 113, 54, 113, + /* 990 */ 113, 113, 101, 113, 60, 61, ); - const YY_SHIFT_USE_DFLT = -32; - const YY_SHIFT_MAX = 207; + const YY_SHIFT_USE_DFLT = -55; + const YY_SHIFT_MAX = 204; static public $yy_shift_ofst = array( - /* 0 */ 56, 117, 256, 32, 32, 32, 32, 32, 32, 32, - /* 10 */ 32, 32, 32, 32, 285, 120, 139, 285, 139, 181, - /* 20 */ 139, 139, 181, 139, 139, 139, 139, 139, 139, 139, - /* 30 */ 139, 139, 139, 139, 139, 139, 35, 200, 203, 369, - /* 40 */ 84, 84, 565, 326, 138, 182, 361, 276, 364, 301, - /* 50 */ 8, 467, 467, 451, 451, 332, 346, 378, 535, 30, - /* 60 */ -3, 198, 281, 106, 403, 459, 242, 403, 195, 195, - /* 70 */ 195, 195, 195, 433, 459, 195, 459, 195, 183, 460, - /* 80 */ 183, 183, 460, 460, -17, -2, -31, 77, 77, 77, - /* 90 */ 77, 77, 77, 77, 77, 77, 56, 273, 103, 391, - /* 100 */ 136, 90, 227, 325, 142, 142, 362, 313, 69, 367, - /* 110 */ 223, 223, 195, 189, 240, 163, 336, 324, 223, 125, - /* 120 */ 195, 331, 223, 321, 223, 637, 402, 622, 625, 402, - /* 130 */ 460, 631, 460, 402, 460, 402, 402, 460, 460, 460, - /* 140 */ 460, 183, 460, 183, 402, 183, 460, 460, 402, 402, - /* 150 */ 183, -32, -32, -32, -32, -32, -32, 165, 268, 264, - /* 160 */ 76, 284, 88, 160, 19, 55, 160, 160, 160, 598, - /* 170 */ 597, 585, 584, 560, 583, 566, 500, 517, 548, 534, - /* 180 */ 595, 557, 550, 552, 567, 544, 555, 578, 547, 591, - /* 190 */ 611, 600, 564, 570, 514, 575, 617, 34, 162, 429, - /* 200 */ 209, 542, 251, 468, 592, 572, 571, 590, + /* 0 */ 72, 107, 272, 49, 49, 49, 49, 49, 49, 49, + /* 10 */ 49, 49, 49, 49, 217, 104, 162, 159, 159, 159, + /* 20 */ 159, 217, 162, 159, 159, 159, 159, 159, 159, 159, + /* 30 */ 159, 159, 159, 159, 159, 159, 52, 269, 214, 340, + /* 40 */ 427, 425, 425, 161, 141, 657, 106, 92, 407, 34, + /* 50 */ 435, 439, 296, 439, 296, 347, 391, 168, 849, 330, + /* 60 */ 76, 267, 497, 457, 357, 230, 563, 412, 412, 412, + /* 70 */ 412, 412, 230, 436, 412, 412, -54, -5, -54, -5, + /* 80 */ -54, -5, -1, -16, -30, 15, 15, 15, 15, 15, + /* 90 */ 15, 15, 15, 15, 72, 934, 324, 68, 313, 120, + /* 100 */ 313, 387, 335, 418, 240, 255, 464, 560, 185, 28, + /* 110 */ 255, 255, 583, 412, 567, 255, 412, 74, 646, 255, + /* 120 */ 201, 155, 718, 155, 702, -54, 155, -54, -54, -54, + /* 130 */ 717, 155, 714, -54, -54, -54, -54, 155, 155, -5, + /* 140 */ 155, -5, -5, -54, -5, -54, 155, -55, -55, -55, + /* 150 */ -55, -55, -55, 440, 535, 377, 400, 88, 319, 88, + /* 160 */ 116, 88, 88, 451, 472, 671, 641, 659, 651, 649, + /* 170 */ 636, 621, 673, 638, 697, 652, 685, 675, 668, 432, + /* 180 */ 660, 709, 674, 706, 723, 684, 683, 555, 554, 544, + /* 190 */ 507, 461, 433, 471, 493, 572, 570, 615, 662, 633, + /* 200 */ 648, 597, 582, 596, 587, ); - const YY_REDUCE_USE_DFLT = -58; - const YY_REDUCE_MAX = 156; + const YY_REDUCE_USE_DFLT = -42; + const YY_REDUCE_MAX = 152; static public $yy_reduce_ofst = array( - /* 0 */ 246, 192, 356, 527, 574, 614, 554, 370, 430, 462, - /* 10 */ 594, 448, 410, 390, 482, 674, 720, 734, 706, 636, - /* 20 */ 681, 750, 654, 820, 842, 813, 806, 781, 788, 870, - /* 30 */ 856, 884, 926, 898, 912, 774, 968, 940, 954, 982, - /* 40 */ 545, 202, 231, 24, 309, 330, -29, 330, 415, 62, - /* 50 */ 46, 414, 374, 394, 375, 334, 334, 334, 418, 339, - /* 60 */ 476, 339, 425, 453, 458, 405, 135, 294, 339, 294, - /* 70 */ 293, 421, 401, 342, 385, 479, 474, 478, 135, 509, - /* 80 */ 494, 472, 508, 477, 569, 569, 569, 569, 569, 569, - /* 90 */ 569, 569, 569, 569, 569, 569, 605, 579, 577, 577, - /* 100 */ 563, 551, 551, 551, 577, 577, 551, 465, 465, 586, - /* 110 */ 568, 568, 563, 465, 465, 573, 465, 465, 568, 465, - /* 120 */ 563, 465, 568, 465, 568, 612, 465, 607, 581, 465, - /* 130 */ 386, 588, 386, 465, 386, 465, 465, 386, 386, 386, - /* 140 */ 386, 26, 386, 26, 465, 26, 386, 386, 465, 465, - /* 150 */ 26, 111, 91, -57, 133, 562, 341, + /* 0 */ 127, 261, 348, 462, 444, 430, 494, 526, 410, 512, + /* 10 */ 546, 564, 370, 476, 578, 603, 637, 669, 160, 215, + /* 20 */ 50, 653, 619, 824, 775, 701, 852, 866, 719, 733, + /* 30 */ 761, 747, 793, 838, 800, 694, 302, 153, 208, 585, + /* 40 */ 891, 876, 687, 304, -13, 252, 174, -39, 228, 105, + /* 50 */ -13, 454, 449, 470, 551, 46, 46, 46, 128, 318, + /* 60 */ -41, -41, 4, 98, 64, 191, 166, 498, -41, 239, + /* 70 */ 485, 416, 239, 355, 477, 511, 517, 166, 556, 562, + /* 80 */ 193, 521, 644, 644, 644, 644, 644, 644, 644, 644, + /* 90 */ 644, 644, 644, 644, 682, 647, 656, 656, 656, 650, + /* 100 */ 656, 630, 630, -2, -2, 639, 642, -2, -2, -2, + /* 110 */ 639, 639, -2, 650, -2, 639, 650, 645, -2, 639, + /* 120 */ -2, -2, 681, -2, 691, 149, -2, 149, 149, 149, + /* 130 */ 670, -2, 661, 149, 149, 149, 149, -2, -2, 6, + /* 140 */ -2, 6, 6, 149, 6, 149, -2, 320, 257, 310, + /* 150 */ 277, 331, 375, ); static public $yyExpectedTokens = array( - /* 0 */ array(1, 2, 3, 4, 5, 9, 11, 13, 14, 15, 16, ), - /* 1 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 2 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 3 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 4 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 5 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 6 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 7 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 8 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 9 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 10 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 11 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 12 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 13 */ array(10, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 14 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 15 */ array(1, 10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 16 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 17 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 18 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 19 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 20 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 21 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 22 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 23 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 24 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 25 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 26 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 27 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 28 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 29 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 30 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 31 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 32 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 33 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 34 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 35 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 36 */ array(10, 16, 20, 21, 44, 46, 47, 51, 53, 55, 60, 61, 67, ), - /* 37 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 38 */ array(10, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ), - /* 39 */ array(10, 16, 20, 21, 44, 46, 51, 55, 60, 61, 67, ), - /* 40 */ array(10, 16, 20, 21, 44, 51, 55, 60, 61, 67, ), - /* 41 */ array(10, 16, 20, 21, 44, 51, 55, 60, 61, 67, ), - /* 42 */ array(10, 16, 20, 21, 44, 51, 55, 60, 61, 67, ), - /* 43 */ array(16, 55, 60, 67, ), - /* 44 */ array(16, 51, 55, 60, 67, ), - /* 45 */ array(44, 48, 57, 63, 68, ), - /* 46 */ array(1, 55, 60, 67, ), - /* 47 */ array(48, 63, 68, ), - /* 48 */ array(48, 63, 68, ), - /* 49 */ array(46, 48, 64, ), - /* 50 */ array(55, 60, 67, ), - /* 51 */ array(56, 68, ), - /* 52 */ array(56, 68, ), - /* 53 */ array(63, 68, ), - /* 54 */ array(63, 68, ), - /* 55 */ array(18, 22, 23, 24, 25, 26, 27, 28, 29, 45, 63, ), - /* 56 */ array(18, 22, 23, 24, 25, 26, 27, 28, 29, 45, 63, ), - /* 57 */ array(18, 22, 23, 24, 25, 26, 27, 28, 29, 63, ), - /* 58 */ array(1, 16, 55, 61, 62, ), - /* 59 */ array(16, 50, 59, 67, ), - /* 60 */ array(16, 50, 52, 67, ), - /* 61 */ array(16, 59, 67, ), - /* 62 */ array(1, 10, 16, ), - /* 63 */ array(17, 52, 68, ), - /* 64 */ array(16, 67, ), - /* 65 */ array(1, 16, ), - /* 66 */ array(48, 50, ), - /* 67 */ array(16, 67, ), - /* 68 */ array(16, 67, ), - /* 69 */ array(16, 67, ), - /* 70 */ array(16, 67, ), - /* 71 */ array(16, 67, ), - /* 72 */ array(16, 67, ), - /* 73 */ array(55, 67, ), - /* 74 */ array(1, 16, ), - /* 75 */ array(16, 67, ), - /* 76 */ array(1, 16, ), - /* 77 */ array(16, 67, ), - /* 78 */ array(48, ), - /* 79 */ array(68, ), - /* 80 */ array(48, ), - /* 81 */ array(48, ), - /* 82 */ array(68, ), - /* 83 */ array(68, ), - /* 84 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ), - /* 85 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ), - /* 86 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 58, ), - /* 87 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 88 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 89 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 90 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 91 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 92 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 93 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 94 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 95 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 96 */ array(1, 2, 3, 4, 5, 9, 11, 13, 14, 15, 16, ), - /* 97 */ array(1, 16, 55, 61, 62, ), - /* 98 */ array(47, 53, 54, 66, ), - /* 99 */ array(17, 53, 54, 66, ), - /* 100 */ array(16, 50, 67, ), - /* 101 */ array(1, 8, 16, ), - /* 102 */ array(1, 10, 16, ), - /* 103 */ array(1, 12, 16, ), - /* 104 */ array(53, 54, 66, ), - /* 105 */ array(53, 54, 66, ), - /* 106 */ array(1, 5, 16, ), - /* 107 */ array(17, 63, ), - /* 108 */ array(63, 65, ), - /* 109 */ array(55, 67, ), - /* 110 */ array(46, 64, ), - /* 111 */ array(46, 64, ), - /* 112 */ array(16, 67, ), - /* 113 */ array(49, 63, ), - /* 114 */ array(56, 63, ), - /* 115 */ array(16, 44, ), - /* 116 */ array(17, 63, ), - /* 117 */ array(56, 63, ), - /* 118 */ array(46, 64, ), - /* 119 */ array(17, 63, ), - /* 120 */ array(16, 67, ), - /* 121 */ array(17, 63, ), - /* 122 */ array(46, 64, ), - /* 123 */ array(45, 63, ), - /* 124 */ array(46, 64, ), - /* 125 */ array(55, ), - /* 126 */ array(63, ), + /* 0 */ array(1, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, ), + /* 1 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 2 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 3 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 4 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 5 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 6 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 7 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 8 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 9 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 10 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 11 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 12 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 13 */ array(9, 15, 19, 20, 29, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 14 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 15 */ array(1, 9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 16 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 17 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 18 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 19 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 20 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 21 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 22 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 23 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 24 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 25 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 26 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 27 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 28 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 29 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 30 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 31 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 32 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 33 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 34 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 35 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 36 */ array(9, 15, 19, 20, 43, 45, 46, 50, 52, 54, 59, 60, 66, ), + /* 37 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 38 */ array(9, 15, 19, 20, 43, 45, 50, 52, 54, 59, 60, 66, ), + /* 39 */ array(9, 15, 19, 20, 43, 45, 50, 54, 59, 60, 66, ), + /* 40 */ array(9, 15, 19, 20, 43, 50, 54, 59, 60, 66, ), + /* 41 */ array(9, 15, 19, 20, 43, 50, 54, 59, 60, 66, ), + /* 42 */ array(9, 15, 19, 20, 43, 50, 54, 59, 60, 66, ), + /* 43 */ array(15, 54, 59, 66, ), + /* 44 */ array(43, 47, 56, 62, 67, ), + /* 45 */ array(15, 50, 54, 59, 66, ), + /* 46 */ array(1, 54, 59, 66, ), + /* 47 */ array(45, 47, 63, ), + /* 48 */ array(47, 62, 67, ), + /* 49 */ array(54, 59, 66, ), + /* 50 */ array(47, 62, 67, ), + /* 51 */ array(55, 67, ), + /* 52 */ array(62, 67, ), + /* 53 */ array(55, 67, ), + /* 54 */ array(62, 67, ), + /* 55 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 44, 62, ), + /* 56 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 44, 62, ), + /* 57 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 62, ), + /* 58 */ array(1, 15, 54, 60, 61, ), + /* 59 */ array(15, 49, 51, 66, ), + /* 60 */ array(15, 49, 58, 66, ), + /* 61 */ array(15, 58, 66, ), + /* 62 */ array(16, 51, 67, ), + /* 63 */ array(1, 9, 15, ), + /* 64 */ array(54, 66, ), + /* 65 */ array(15, 66, ), + /* 66 */ array(47, 49, ), + /* 67 */ array(15, 66, ), + /* 68 */ array(15, 66, ), + /* 69 */ array(15, 66, ), + /* 70 */ array(15, 66, ), + /* 71 */ array(15, 66, ), + /* 72 */ array(15, 66, ), + /* 73 */ array(1, 15, ), + /* 74 */ array(15, 66, ), + /* 75 */ array(15, 66, ), + /* 76 */ array(67, ), + /* 77 */ array(47, ), + /* 78 */ array(67, ), + /* 79 */ array(47, ), + /* 80 */ array(67, ), + /* 81 */ array(47, ), + /* 82 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, ), + /* 83 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, ), + /* 84 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 57, ), + /* 85 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), + /* 86 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), + /* 87 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), + /* 88 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), + /* 89 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), + /* 90 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), + /* 91 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), + /* 92 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), + /* 93 */ array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, ), + /* 94 */ array(1, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, ), + /* 95 */ array(1, 15, 54, 60, 61, ), + /* 96 */ array(16, 52, 53, 65, ), + /* 97 */ array(46, 52, 53, 65, ), + /* 98 */ array(52, 53, 65, ), + /* 99 */ array(15, 49, 66, ), + /* 100 */ array(52, 53, 65, ), + /* 101 */ array(1, 11, 15, ), + /* 102 */ array(1, 9, 15, ), + /* 103 */ array(44, 62, ), + /* 104 */ array(62, 64, ), + /* 105 */ array(45, 63, ), + /* 106 */ array(54, 66, ), + /* 107 */ array(55, 62, ), + /* 108 */ array(16, 62, ), + /* 109 */ array(16, 62, ), + /* 110 */ array(45, 63, ), + /* 111 */ array(45, 63, ), + /* 112 */ array(55, 62, ), + /* 113 */ array(15, 66, ), + /* 114 */ array(16, 62, ), + /* 115 */ array(45, 63, ), + /* 116 */ array(15, 66, ), + /* 117 */ array(15, 43, ), + /* 118 */ array(16, 62, ), + /* 119 */ array(45, 63, ), + /* 120 */ array(48, 62, ), + /* 121 */ array(62, ), + /* 122 */ array(55, ), + /* 123 */ array(62, ), + /* 124 */ array(66, ), + /* 125 */ array(67, ), + /* 126 */ array(62, ), /* 127 */ array(67, ), - /* 128 */ array(44, ), - /* 129 */ array(63, ), - /* 130 */ array(68, ), - /* 131 */ array(56, ), - /* 132 */ array(68, ), - /* 133 */ array(63, ), - /* 134 */ array(68, ), - /* 135 */ array(63, ), - /* 136 */ array(63, ), - /* 137 */ array(68, ), - /* 138 */ array(68, ), - /* 139 */ array(68, ), - /* 140 */ array(68, ), - /* 141 */ array(48, ), - /* 142 */ array(68, ), - /* 143 */ array(48, ), - /* 144 */ array(63, ), - /* 145 */ array(48, ), - /* 146 */ array(68, ), - /* 147 */ array(68, ), - /* 148 */ array(63, ), - /* 149 */ array(63, ), - /* 150 */ array(48, ), + /* 128 */ array(67, ), + /* 129 */ array(67, ), + /* 130 */ array(54, ), + /* 131 */ array(62, ), + /* 132 */ array(43, ), + /* 133 */ array(67, ), + /* 134 */ array(67, ), + /* 135 */ array(67, ), + /* 136 */ array(67, ), + /* 137 */ array(62, ), + /* 138 */ array(62, ), + /* 139 */ array(47, ), + /* 140 */ array(62, ), + /* 141 */ array(47, ), + /* 142 */ array(47, ), + /* 143 */ array(67, ), + /* 144 */ array(47, ), + /* 145 */ array(67, ), + /* 146 */ array(62, ), + /* 147 */ array(), + /* 148 */ array(), + /* 149 */ array(), + /* 150 */ array(), /* 151 */ array(), /* 152 */ array(), - /* 153 */ array(), - /* 154 */ array(), - /* 155 */ array(), - /* 156 */ array(), - /* 157 */ array(17, 44, 50, 57, 68, ), - /* 158 */ array(44, 47, 57, 64, ), - /* 159 */ array(44, 49, 57, ), - /* 160 */ array(1, 67, ), - /* 161 */ array(59, 67, ), - /* 162 */ array(58, 65, ), - /* 163 */ array(44, 57, ), - /* 164 */ array(47, 65, ), - /* 165 */ array(19, 69, ), - /* 166 */ array(44, 57, ), - /* 167 */ array(44, 57, ), - /* 168 */ array(44, 57, ), - /* 169 */ array(51, ), - /* 170 */ array(62, ), - /* 171 */ array(67, ), - /* 172 */ array(67, ), - /* 173 */ array(70, ), - /* 174 */ array(17, ), - /* 175 */ array(5, ), - /* 176 */ array(60, ), - /* 177 */ array(62, ), - /* 178 */ array(55, ), - /* 179 */ array(70, ), - /* 180 */ array(19, ), - /* 181 */ array(55, ), - /* 182 */ array(55, ), - /* 183 */ array(55, ), - /* 184 */ array(60, ), - /* 185 */ array(67, ), - /* 186 */ array(67, ), - /* 187 */ array(17, ), - /* 188 */ array(44, ), - /* 189 */ array(52, ), - /* 190 */ array(47, ), - /* 191 */ array(17, ), - /* 192 */ array(67, ), - /* 193 */ array(45, ), - /* 194 */ array(45, ), - /* 195 */ array(69, ), - /* 196 */ array(45, ), - /* 197 */ array(67, ), - /* 198 */ array(67, ), - /* 199 */ array(17, ), - /* 200 */ array(50, ), - /* 201 */ array(56, ), - /* 202 */ array(17, ), - /* 203 */ array(17, ), - /* 204 */ array(50, ), - /* 205 */ array(67, ), - /* 206 */ array(67, ), - /* 207 */ array(64, ), + /* 153 */ array(16, 43, 49, 56, 67, ), + /* 154 */ array(43, 46, 56, 63, ), + /* 155 */ array(43, 48, 56, ), + /* 156 */ array(57, 64, ), + /* 157 */ array(43, 56, ), + /* 158 */ array(18, 68, ), + /* 159 */ array(43, 56, ), + /* 160 */ array(46, 64, ), + /* 161 */ array(43, 56, ), + /* 162 */ array(43, 56, ), + /* 163 */ array(58, 66, ), + /* 164 */ array(1, 66, ), + /* 165 */ array(66, ), + /* 166 */ array(61, ), + /* 167 */ array(46, ), + /* 168 */ array(55, ), + /* 169 */ array(54, ), + /* 170 */ array(59, ), + /* 171 */ array(69, ), + /* 172 */ array(18, ), + /* 173 */ array(54, ), + /* 174 */ array(16, ), + /* 175 */ array(69, ), + /* 176 */ array(44, ), + /* 177 */ array(61, ), + /* 178 */ array(66, ), + /* 179 */ array(66, ), + /* 180 */ array(66, ), + /* 181 */ array(16, ), + /* 182 */ array(66, ), + /* 183 */ array(16, ), + /* 184 */ array(1, ), + /* 185 */ array(5, ), + /* 186 */ array(1, ), + /* 187 */ array(5, ), + /* 188 */ array(16, ), + /* 189 */ array(49, ), + /* 190 */ array(44, ), + /* 191 */ array(66, ), + /* 192 */ array(66, ), + /* 193 */ array(43, ), + /* 194 */ array(50, ), + /* 195 */ array(51, ), + /* 196 */ array(63, ), + /* 197 */ array(59, ), + /* 198 */ array(16, ), + /* 199 */ array(49, ), + /* 200 */ array(16, ), + /* 201 */ array(54, ), + /* 202 */ array(68, ), + /* 203 */ array(44, ), + /* 204 */ array(66, ), + /* 205 */ array(), + /* 206 */ array(), + /* 207 */ array(), /* 208 */ array(), /* 209 */ array(), /* 210 */ array(), @@ -854,43 +835,39 @@ static public $yy_action = array( /* 306 */ array(), /* 307 */ array(), /* 308 */ array(), - /* 309 */ array(), - /* 310 */ array(), - /* 311 */ array(), ); static public $yy_default = array( - /* 0 */ 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, - /* 10 */ 479, 479, 479, 479, 460, 479, 419, 479, 419, 479, - /* 20 */ 419, 419, 479, 479, 479, 479, 479, 479, 479, 479, - /* 30 */ 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, - /* 40 */ 479, 479, 479, 479, 479, 347, 479, 347, 347, 384, - /* 50 */ 479, 347, 347, 347, 347, 429, 429, 429, 479, 394, - /* 60 */ 479, 394, 479, 367, 479, 479, 387, 479, 394, 479, - /* 70 */ 479, 479, 479, 479, 479, 479, 479, 479, 387, 347, - /* 80 */ 380, 379, 347, 347, 479, 479, 479, 433, 443, 335, - /* 90 */ 442, 434, 427, 438, 435, 439, 312, 479, 479, 479, - /* 100 */ 479, 479, 479, 479, 424, 355, 479, 479, 418, 479, - /* 110 */ 410, 412, 341, 463, 479, 394, 479, 479, 392, 479, - /* 120 */ 340, 479, 413, 479, 411, 479, 338, 479, 394, 348, - /* 130 */ 329, 357, 328, 362, 327, 363, 461, 331, 334, 333, - /* 140 */ 332, 407, 343, 381, 462, 382, 330, 342, 353, 430, - /* 150 */ 385, 394, 423, 394, 423, 394, 423, 354, 479, 354, - /* 160 */ 479, 479, 479, 425, 479, 358, 354, 479, 444, 479, - /* 170 */ 479, 479, 479, 479, 479, 479, 479, 479, 479, 374, - /* 180 */ 361, 479, 479, 479, 479, 479, 479, 479, 383, 367, - /* 190 */ 479, 479, 479, 479, 479, 358, 479, 479, 479, 479, - /* 200 */ 350, 405, 351, 479, 479, 479, 479, 369, 470, 322, - /* 210 */ 324, 313, 323, 326, 325, 378, 399, 401, 349, 400, - /* 220 */ 402, 416, 414, 398, 465, 319, 320, 321, 318, 344, - /* 230 */ 474, 316, 472, 345, 377, 464, 466, 476, 376, 475, - /* 240 */ 477, 478, 467, 473, 364, 365, 366, 421, 420, 468, - /* 250 */ 471, 346, 375, 360, 371, 372, 373, 370, 368, 422, - /* 260 */ 358, 359, 409, 408, 395, 396, 397, 391, 390, 388, - /* 270 */ 393, 389, 356, 403, 441, 315, 454, 440, 317, 426, - /* 280 */ 436, 437, 455, 456, 352, 386, 314, 405, 404, 428, - /* 290 */ 337, 339, 374, 445, 459, 458, 431, 457, 415, 406, - /* 300 */ 361, 417, 432, 446, 451, 452, 453, 450, 449, 447, - /* 310 */ 448, 469, + /* 0 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, + /* 10 */ 476, 476, 476, 476, 457, 476, 476, 416, 416, 416, + /* 20 */ 416, 476, 476, 476, 476, 476, 476, 476, 476, 476, + /* 30 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, + /* 40 */ 476, 476, 476, 476, 344, 476, 476, 381, 344, 476, + /* 50 */ 344, 344, 344, 344, 344, 426, 426, 426, 476, 476, + /* 60 */ 391, 391, 364, 476, 476, 476, 384, 476, 391, 476, + /* 70 */ 476, 476, 476, 476, 476, 476, 344, 384, 344, 377, + /* 80 */ 344, 376, 476, 476, 476, 435, 440, 432, 332, 424, + /* 90 */ 436, 430, 431, 439, 309, 476, 476, 476, 421, 476, + /* 100 */ 352, 476, 476, 476, 415, 408, 476, 476, 476, 476, + /* 110 */ 410, 389, 476, 337, 476, 407, 338, 391, 476, 409, + /* 120 */ 460, 458, 354, 459, 476, 324, 345, 339, 340, 326, + /* 130 */ 476, 350, 391, 325, 329, 328, 327, 359, 360, 404, + /* 140 */ 335, 378, 379, 330, 382, 331, 427, 420, 391, 391, + /* 150 */ 420, 391, 420, 351, 476, 351, 476, 422, 355, 441, + /* 160 */ 476, 351, 476, 476, 476, 476, 476, 476, 402, 476, + /* 170 */ 476, 476, 358, 476, 476, 371, 476, 476, 476, 476, + /* 180 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 347, + /* 190 */ 476, 476, 476, 380, 476, 364, 366, 476, 476, 476, + /* 200 */ 348, 476, 355, 476, 476, 444, 367, 368, 437, 356, + /* 210 */ 355, 445, 346, 369, 365, 438, 429, 390, 385, 386, + /* 220 */ 452, 413, 451, 405, 419, 443, 406, 428, 411, 370, + /* 230 */ 313, 319, 442, 450, 318, 317, 371, 320, 310, 323, + /* 240 */ 322, 321, 316, 311, 342, 314, 448, 453, 447, 434, + /* 250 */ 312, 449, 315, 341, 433, 446, 392, 468, 465, 343, + /* 260 */ 334, 383, 412, 470, 456, 461, 454, 463, 464, 414, + /* 270 */ 417, 349, 402, 353, 400, 403, 363, 401, 418, 361, + /* 280 */ 362, 336, 374, 473, 397, 399, 455, 396, 372, 357, + /* 290 */ 394, 425, 388, 358, 393, 398, 472, 423, 467, 466, + /* 300 */ 475, 373, 469, 471, 474, 395, 462, 375, 387, ); /* The next thing included is series of defines which control ** various aspects of the generated parser. @@ -907,11 +884,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 = 115; + const YYNOCODE = 114; const YYSTACKDEPTH = 100; - const YYNSTATE = 312; + const YYNSTATE = 309; const YYNRULE = 167; - const YYERRORSYMBOL = 71; + const YYERRORSYMBOL = 70; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 1; /** The next table maps tokens into fallback tokens. If a construct @@ -933,8 +910,7 @@ static public $yy_action = array( 1, /* SHORTTAGEND => OTHER */ 1, /* PHPSTART => OTHER */ 1, /* PHPEND => OTHER */ - 1, /* COMMENTEND => OTHER */ - 1, /* COMMENTSTART => OTHER */ + 1, /* COMMENT => OTHER */ 1, /* SINGLEQUOTE => OTHER */ 1, /* LITERALSTART => OTHER */ 1, /* LITERALEND => OTHER */ @@ -1066,33 +1042,33 @@ static public $yy_action = array( public $yyTokenName = array( '$', 'OTHER', 'XML', 'PHP', 'SHORTTAGSTART', 'SHORTTAGEND', 'PHPSTART', 'PHPEND', - 'COMMENTEND', 'COMMENTSTART', 'SINGLEQUOTE', 'LITERALSTART', - 'LITERALEND', 'LDELIMTAG', 'RDELIMTAG', 'LDELSLASH', - 'LDEL', 'RDEL', 'ISIN', 'AS', - 'BOOLEAN', 'NULL', 'IDENTITY', 'NONEIDENTITY', - 'EQUALS', 'NOTEQUALS', 'GREATEREQUAL', 'LESSEQUAL', - 'GREATERTHAN', 'LESSTHAN', 'NOT', 'LAND', - 'LOR', 'LXOR', 'ISODDBY', 'ISNOTODDBY', - 'ISODD', 'ISNOTODD', 'ISEVENBY', 'ISNOTEVENBY', - 'ISEVEN', 'ISNOTEVEN', 'ISDIVBY', 'ISNOTDIVBY', - 'OPENP', 'CLOSEP', 'OPENB', 'CLOSEB', - 'PTR', 'APTR', 'EQUAL', 'INTEGER', - 'INCDEC', 'UNIMATH', 'MATH', 'DOLLAR', - 'COLON', 'DOUBLECOLON', 'SEMICOLON', 'AT', - 'HATCH', 'QUOTE', 'BACKTICK', 'VERT', - 'DOT', 'COMMA', 'ANDSYM', 'ID', - 'SPACE', 'INSTANCEOF', 'QMARK', 'error', - 'start', 'template', 'template_element', 'smartytag', - 'smartyclosetag', 'outputtag', 'text', 'variable', - 'attributes', 'expr', 'ternary', 'varindexed', - 'modifier', 'modparameters', 'ifexprs', 'statement', - 'statements', 'varvar', 'foraction', 'value', - 'array', 'attribute', 'exprs', 'math', - 'function', 'doublequoted', 'method', 'params', - 'objectchain', 'arrayindex', 'object', 'indexdef', - 'varvarele', 'objectelement', 'modparameter', 'ifexpr', - 'ifcond', 'lop', 'arrayelements', 'arrayelement', - 'doublequotedcontent', 'textelement', + 'COMMENT', 'SINGLEQUOTE', 'LITERALSTART', 'LITERALEND', + 'LDELIMTAG', 'RDELIMTAG', 'LDELSLASH', 'LDEL', + 'RDEL', 'ISIN', 'AS', 'BOOLEAN', + 'NULL', 'IDENTITY', 'NONEIDENTITY', 'EQUALS', + 'NOTEQUALS', 'GREATEREQUAL', 'LESSEQUAL', 'GREATERTHAN', + 'LESSTHAN', 'NOT', 'LAND', 'LOR', + 'LXOR', 'ISODDBY', 'ISNOTODDBY', 'ISODD', + 'ISNOTODD', 'ISEVENBY', 'ISNOTEVENBY', 'ISEVEN', + 'ISNOTEVEN', 'ISDIVBY', 'ISNOTDIVBY', 'OPENP', + 'CLOSEP', 'OPENB', 'CLOSEB', 'PTR', + 'APTR', 'EQUAL', 'INTEGER', 'INCDEC', + 'UNIMATH', 'MATH', 'DOLLAR', 'COLON', + 'DOUBLECOLON', 'SEMICOLON', 'AT', 'HATCH', + 'QUOTE', 'BACKTICK', 'VERT', 'DOT', + 'COMMA', 'ANDSYM', 'ID', 'SPACE', + 'INSTANCEOF', 'QMARK', 'error', 'start', + 'template', 'template_element', 'smartytag', 'smartyclosetag', + 'outputtag', 'text', 'variable', 'attributes', + 'expr', 'ternary', 'varindexed', 'modifier', + 'modparameters', 'ifexprs', 'statement', 'statements', + 'varvar', 'foraction', 'value', 'array', + 'attribute', 'exprs', 'math', 'function', + 'doublequoted', 'method', 'params', 'objectchain', + 'arrayindex', 'object', 'indexdef', 'varvarele', + 'objectelement', 'modparameter', 'ifexpr', 'ifcond', + 'lop', 'arrayelements', 'arrayelement', 'doublequotedcontent', + 'textelement', ); /** @@ -1106,12 +1082,12 @@ static public $yy_action = array( /* 3 */ "template_element ::= LDEL smartytag RDEL", /* 4 */ "template_element ::= LDELSLASH smartyclosetag RDEL", /* 5 */ "template_element ::= LDEL outputtag RDEL", - /* 6 */ "template_element ::= COMMENTSTART text COMMENTEND", + /* 6 */ "template_element ::= COMMENT", /* 7 */ "template_element ::= LITERALSTART text LITERALEND", /* 8 */ "template_element ::= LDELIMTAG", /* 9 */ "template_element ::= RDELIMTAG", - /* 10 */ "template_element ::= PHP text SHORTTAGEND", - /* 11 */ "template_element ::= SHORTTAGSTART DOLLAR ID SHORTTAGEND", + /* 10 */ "template_element ::= PHP OTHER SHORTTAGEND", + /* 11 */ "template_element ::= SHORTTAGSTART OTHER SHORTTAGEND", /* 12 */ "template_element ::= XML", /* 13 */ "template_element ::= SHORTTAGEND", /* 14 */ "template_element ::= OTHER", @@ -1631,173 +1607,173 @@ 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' => 3 ), + array( 'lhs' => 73, 'rhs' => 3 ), + array( 'lhs' => 73, 'rhs' => 3 ), array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 2 ), - array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 73, 'rhs' => 3 ), + array( 'lhs' => 73, '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' => 76, 'rhs' => 2 ), + array( 'lhs' => 76, 'rhs' => 2 ), + array( 'lhs' => 76, 'rhs' => 2 ), array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 2 ), - array( 'lhs' => 77, 'rhs' => 2 ), - array( 'lhs' => 77, 'rhs' => 2 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 2 ), + array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 4 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 9 ), + array( 'lhs' => 89, 'rhs' => 2 ), + array( 'lhs' => 89, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 6 ), + array( 'lhs' => 74, 'rhs' => 6 ), array( 'lhs' => 75, 'rhs' => 2 ), array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 4 ), array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 9 ), + array( 'lhs' => 79, 'rhs' => 2 ), + array( 'lhs' => 79, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 0 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 2 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 3 ), + array( 'lhs' => 86, 'rhs' => 4 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 4 ), + array( 'lhs' => 80, 'rhs' => 3 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 93, 'rhs' => 2 ), + array( 'lhs' => 93, 'rhs' => 3 ), + array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 7 ), + array( 'lhs' => 81, 'rhs' => 7 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 1 ), array( 'lhs' => 90, 'rhs' => 2 ), array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 76, 'rhs' => 2 ), - array( 'lhs' => 76, 'rhs' => 4 ), - array( 'lhs' => 76, 'rhs' => 3 ), - array( 'lhs' => 80, 'rhs' => 2 ), - array( 'lhs' => 80, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 0 ), - array( 'lhs' => 93, 'rhs' => 4 ), - array( 'lhs' => 93, 'rhs' => 4 ), - array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 88, 'rhs' => 1 ), - array( 'lhs' => 88, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 4 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 2 ), - array( 'lhs' => 94, 'rhs' => 3 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 7 ), - array( 'lhs' => 82, 'rhs' => 7 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 2 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 2 ), - array( 'lhs' => 91, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 2 ), - array( 'lhs' => 91, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 7 ), - array( 'lhs' => 91, 'rhs' => 4 ), - array( 'lhs' => 91, 'rhs' => 8 ), - array( 'lhs' => 91, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 5 ), - array( 'lhs' => 91, 'rhs' => 6 ), - array( 'lhs' => 91, 'rhs' => 3 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 4 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 3 ), - array( 'lhs' => 79, 'rhs' => 3 ), - array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 0 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 4 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 5 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 2 ), - array( 'lhs' => 104, 'rhs' => 1 ), - array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 1 ), - array( 'lhs' => 100, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 5 ), - array( 'lhs' => 105, 'rhs' => 6 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 99, 'rhs' => 3 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 0 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 85, 'rhs' => 2 ), - array( 'lhs' => 85, 'rhs' => 0 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 2 ), - array( 'lhs' => 86, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 109, 'rhs' => 1 ), - array( 'lhs' => 109, 'rhs' => 1 ), - array( 'lhs' => 109, 'rhs' => 1 ), - array( 'lhs' => 92, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 110, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 0 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 2 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 2 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 2 ), - array( 'lhs' => 112, 'rhs' => 2 ), - array( 'lhs' => 112, 'rhs' => 2 ), - array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 2 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 90, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 90, 'rhs' => 2 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 90, 'rhs' => 2 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 90, 'rhs' => 7 ), + array( 'lhs' => 90, 'rhs' => 4 ), + array( 'lhs' => 90, 'rhs' => 8 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 90, 'rhs' => 5 ), + array( 'lhs' => 90, 'rhs' => 6 ), + array( 'lhs' => 90, 'rhs' => 3 ), array( 'lhs' => 78, 'rhs' => 1 ), - array( 'lhs' => 113, 'rhs' => 1 ), - array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 4 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 82, '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' => 4 ), + array( 'lhs' => 102, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 5 ), + array( 'lhs' => 102, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 1 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 99, 'rhs' => 1 ), + array( 'lhs' => 99, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 5 ), + array( 'lhs' => 104, 'rhs' => 6 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 4 ), + array( 'lhs' => 97, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 3 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 0 ), + array( 'lhs' => 83, 'rhs' => 3 ), + array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 84, 'rhs' => 2 ), + array( 'lhs' => 84, 'rhs' => 0 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 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' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 1 ), + array( 'lhs' => 109, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 0 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 2 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 2 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 2 ), + array( 'lhs' => 111, 'rhs' => 2 ), + array( 'lhs' => 111, 'rhs' => 2 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), ); /** @@ -1835,7 +1811,7 @@ static public $yy_action = array( 163 => 2, 3 => 3, 4 => 4, - 5 => 4, + 5 => 5, 6 => 6, 7 => 7, 8 => 8, @@ -1981,42 +1957,49 @@ static public $yy_action = array( ** function yy_r0($yymsp){ ... } // User supplied code ** #line */ -#line 79 "internal.templateparser.y" +#line 79 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1991 "internal.templateparser.php" -#line 85 "internal.templateparser.y" +#line 1967 "smarty_internal_templateparser.php" +#line 85 "smarty_internal_templateparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1994 "internal.templateparser.php" -#line 87 "internal.templateparser.y" +#line 1970 "smarty_internal_templateparser.php" +#line 87 "smarty_internal_templateparser.y" function yy_r2(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 1997 "internal.templateparser.php" -#line 93 "internal.templateparser.y" - function yy_r3(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); +#line 1973 "smarty_internal_templateparser.php" +#line 93 "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.$s[0].$this->yystack[$this->yyidx + -1]->minor, $this->compiler,true); - } else { $this->_retvalue = $s[0].$this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 2004 "internal.templateparser.php" -#line 99 "internal.templateparser.y" - function yy_r4(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); + $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + -1]->minor, $this->compiler,true); + } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } +#line 1980 "smarty_internal_templateparser.php" +#line 99 "smarty_internal_templateparser.y" + function yy_r4(){ 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.$s[0].$this->yystack[$this->yyidx + -1]->minor, $this->compiler,true); - } else { $this->_retvalue = $s[0].$this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 2011 "internal.templateparser.php" -#line 111 "internal.templateparser.y" - function yy_r6(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0]; } -#line 2014 "internal.templateparser.php" -#line 114 "internal.templateparser.y" - function yy_r7(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s2); $this->_retvalue = $s[0].$this->cacher->processNocacheCode($this->yystack[$this->yyidx + -1]->minor.$s2[0], $this->compiler,false); } -#line 2017 "internal.templateparser.php" -#line 116 "internal.templateparser.y" - function yy_r8(){preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s); $this->_retvalue = $s[0].$this->cacher->processNocacheCode($this->smarty->left_delimiter, $this->compiler,false); } -#line 2020 "internal.templateparser.php" -#line 118 "internal.templateparser.y" - function yy_r9(){preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s); $this->_retvalue = $s[0].$this->cacher->processNocacheCode($this->smarty->right_delimiter, $this->compiler,false); } -#line 2023 "internal.templateparser.php" -#line 120 "internal.templateparser.y" + $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + -1]->minor, $this->compiler,true); + } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } +#line 1987 "smarty_internal_templateparser.php" +#line 105 "smarty_internal_templateparser.y" + function yy_r5(){ + 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 + -1]->minor, $this->compiler,true); + } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } +#line 1994 "smarty_internal_templateparser.php" +#line 111 "smarty_internal_templateparser.y" + function yy_r6(){ $this->_retvalue = ''; } +#line 1997 "smarty_internal_templateparser.php" +#line 113 "smarty_internal_templateparser.y" + function yy_r7(){ $this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + -1]->minor, $this->compiler,false); } +#line 2000 "smarty_internal_templateparser.php" +#line 115 "smarty_internal_templateparser.y" + function yy_r8(){$this->_retvalue = $this->cacher->processNocacheCode($this->smarty->left_delimiter, $this->compiler,false); } +#line 2003 "smarty_internal_templateparser.php" +#line 117 "smarty_internal_templateparser.y" + function yy_r9(){ $this->_retvalue = $this->cacher->processNocacheCode($this->smarty->right_delimiter, $this->compiler,false); } +#line 2006 "smarty_internal_templateparser.php" +#line 119 "smarty_internal_templateparser.y" function yy_r10(){if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { $this->_retvalue = $this->cacher->processNocacheCode("yystack[$this->yyidx + -1]->minor)."?>', ENT_QUOTES);?>\n", $this->compiler, false); } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { @@ -2027,40 +2010,40 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2035 "internal.templateparser.php" -#line 131 "internal.templateparser.y" - function yy_r11(){preg_match('/\s*/',$this->yystack[$this->yyidx + -3]->minor,$s); $this->_retvalue = $s[0]; +#line 2018 "smarty_internal_templateparser.php" +#line 130 "smarty_internal_templateparser.y" + function yy_r11(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU || $this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { - $this->_retvalue .= $this->cacher->processNocacheCode("yystack[$this->yyidx + -1]->minor."?>'?>\n", $this->compiler, false); + $this->_retvalue = $this->cacher->processNocacheCode("yystack[$this->yyidx + -1]->minor."?>'?>\n", $this->compiler, false); } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { - $this->_retvalue .= $this->cacher->processNocacheCode(htmlspecialchars('yystack[$this->yyidx + -1]->minor.'?>', ENT_QUOTES), $this->compiler, false); + $this->_retvalue = $this->cacher->processNocacheCode(htmlspecialchars('yystack[$this->yyidx + -1]->minor.'?>', ENT_QUOTES), $this->compiler, false); }elseif ($this->sec_obj == SMARTY_PHP_REMOVE) { - $this->_retvalue .= ''; + $this->_retvalue = ''; } } -#line 2046 "internal.templateparser.php" -#line 142 "internal.templateparser.y" - function yy_r12(){preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s); $this->compiler->tag_nocache = true; $this->_retvalue = $s[0].$this->cacher->processNocacheCode("", $this->compiler, true); } -#line 2049 "internal.templateparser.php" -#line 143 "internal.templateparser.y" +#line 2029 "smarty_internal_templateparser.php" +#line 141 "smarty_internal_templateparser.y" + function yy_r12(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("", $this->compiler, true); } +#line 2032 "smarty_internal_templateparser.php" +#line 142 "smarty_internal_templateparser.y" function yy_r13(){$this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("';?>\n", $this->compiler, true); } -#line 2052 "internal.templateparser.php" -#line 146 "internal.templateparser.y" +#line 2035 "smarty_internal_templateparser.php" +#line 145 "smarty_internal_templateparser.y" function yy_r14(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false); } -#line 2055 "internal.templateparser.php" -#line 153 "internal.templateparser.y" +#line 2038 "smarty_internal_templateparser.php" +#line 152 "smarty_internal_templateparser.y" function yy_r15(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } -#line 2058 "internal.templateparser.php" -#line 163 "internal.templateparser.y" +#line 2041 "smarty_internal_templateparser.php" +#line 162 "smarty_internal_templateparser.y" function yy_r18(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor)); } -#line 2061 "internal.templateparser.php" -#line 166 "internal.templateparser.y" +#line 2044 "smarty_internal_templateparser.php" +#line 165 "smarty_internal_templateparser.y" function yy_r20(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2064 "internal.templateparser.php" -#line 168 "internal.templateparser.y" +#line 2047 "smarty_internal_templateparser.php" +#line 167 "smarty_internal_templateparser.y" function yy_r21(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } -#line 2067 "internal.templateparser.php" -#line 170 "internal.templateparser.y" +#line 2050 "smarty_internal_templateparser.php" +#line 169 "smarty_internal_templateparser.y" function yy_r22(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -2]->minor[0],'modifier')) { $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -2]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -1]->minor. "),".$this->yystack[$this->yyidx + -2]->minor[1].");?>"; @@ -2074,50 +2057,50 @@ static public $yy_action = array( } } } -#line 2082 "internal.templateparser.php" -#line 184 "internal.templateparser.y" +#line 2065 "smarty_internal_templateparser.php" +#line 183 "smarty_internal_templateparser.y" function yy_r23(){if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -2]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,array('if condition'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2088 "internal.templateparser.php" -#line 188 "internal.templateparser.y" +#line 2071 "smarty_internal_templateparser.php" +#line 187 "smarty_internal_templateparser.y" function yy_r24(){ if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -2]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,array('if condition'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2094 "internal.templateparser.php" -#line 193 "internal.templateparser.y" +#line 2077 "smarty_internal_templateparser.php" +#line 192 "smarty_internal_templateparser.y" function yy_r25(){ if ($this->yystack[$this->yyidx + -8]->minor != 'for') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -8]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -8]->minor,array('start'=>$this->yystack[$this->yyidx + -6]->minor,'ifexp'=>$this->yystack[$this->yyidx + -4]->minor,'varloop'=>$this->yystack[$this->yyidx + -1]->minor,'loop'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2101 "internal.templateparser.php" -#line 198 "internal.templateparser.y" +#line 2084 "smarty_internal_templateparser.php" +#line 197 "smarty_internal_templateparser.y" function yy_r26(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2104 "internal.templateparser.php" -#line 199 "internal.templateparser.y" +#line 2087 "smarty_internal_templateparser.php" +#line 198 "smarty_internal_templateparser.y" function yy_r27(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2107 "internal.templateparser.php" -#line 201 "internal.templateparser.y" +#line 2090 "smarty_internal_templateparser.php" +#line 200 "smarty_internal_templateparser.y" function yy_r28(){ if ($this->yystack[$this->yyidx + -5]->minor != 'foreach') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -5]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array('from'=>$this->yystack[$this->yyidx + -3]->minor,'item'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2114 "internal.templateparser.php" -#line 206 "internal.templateparser.y" +#line 2097 "smarty_internal_templateparser.php" +#line 205 "smarty_internal_templateparser.y" function yy_r29(){ if ($this->yystack[$this->yyidx + -5]->minor != 'foreach') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -5]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array('from'=>$this->yystack[$this->yyidx + -3]->minor,'item'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2121 "internal.templateparser.php" -#line 213 "internal.templateparser.y" +#line 2104 "smarty_internal_templateparser.php" +#line 212 "smarty_internal_templateparser.y" function yy_r30(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',$this->yystack[$this->yyidx + 0]->minor); } -#line 2124 "internal.templateparser.php" -#line 214 "internal.templateparser.y" +#line 2107 "smarty_internal_templateparser.php" +#line 213 "smarty_internal_templateparser.y" function yy_r31(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',$this->yystack[$this->yyidx + 0]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -2]->minor[0],'modifier')) { $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -2]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -1]->minor. "),".$this->yystack[$this->yyidx + -2]->minor[1].");?>"; @@ -2131,38 +2114,38 @@ static public $yy_action = array( } } } -#line 2139 "internal.templateparser.php" -#line 228 "internal.templateparser.y" +#line 2122 "smarty_internal_templateparser.php" +#line 227 "smarty_internal_templateparser.y" function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2142 "internal.templateparser.php" -#line 235 "internal.templateparser.y" +#line 2125 "smarty_internal_templateparser.php" +#line 234 "smarty_internal_templateparser.y" function yy_r33(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2145 "internal.templateparser.php" -#line 239 "internal.templateparser.y" +#line 2128 "smarty_internal_templateparser.php" +#line 238 "smarty_internal_templateparser.y" function yy_r35(){ $this->_retvalue = array(); } -#line 2148 "internal.templateparser.php" -#line 242 "internal.templateparser.y" +#line 2131 "smarty_internal_templateparser.php" +#line 241 "smarty_internal_templateparser.y" function yy_r36(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2151 "internal.templateparser.php" -#line 244 "internal.templateparser.y" +#line 2134 "smarty_internal_templateparser.php" +#line 243 "smarty_internal_templateparser.y" function yy_r38(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2154 "internal.templateparser.php" -#line 249 "internal.templateparser.y" +#line 2137 "smarty_internal_templateparser.php" +#line 248 "smarty_internal_templateparser.y" function yy_r39(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2157 "internal.templateparser.php" -#line 250 "internal.templateparser.y" +#line 2140 "smarty_internal_templateparser.php" +#line 249 "smarty_internal_templateparser.y" function yy_r40(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2160 "internal.templateparser.php" -#line 252 "internal.templateparser.y" +#line 2143 "smarty_internal_templateparser.php" +#line 251 "smarty_internal_templateparser.y" function yy_r41(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2163 "internal.templateparser.php" -#line 258 "internal.templateparser.y" +#line 2146 "smarty_internal_templateparser.php" +#line 257 "smarty_internal_templateparser.y" function yy_r42(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2166 "internal.templateparser.php" -#line 261 "internal.templateparser.y" +#line 2149 "smarty_internal_templateparser.php" +#line 260 "smarty_internal_templateparser.y" function yy_r44(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2169 "internal.templateparser.php" -#line 262 "internal.templateparser.y" +#line 2152 "smarty_internal_templateparser.php" +#line 261 "smarty_internal_templateparser.y" function yy_r45(){ if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) { $this->_retvalue = "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -1]->minor[0] . "',array(". $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + 0]->minor. "),".$this->yystack[$this->yyidx + -1]->minor[1].")"; @@ -2176,133 +2159,133 @@ static public $yy_action = array( } } } -#line 2184 "internal.templateparser.php" -#line 279 "internal.templateparser.y" +#line 2167 "smarty_internal_templateparser.php" +#line 278 "smarty_internal_templateparser.y" function yy_r47(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2187 "internal.templateparser.php" -#line 281 "internal.templateparser.y" +#line 2170 "smarty_internal_templateparser.php" +#line 280 "smarty_internal_templateparser.y" function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } -#line 2190 "internal.templateparser.php" -#line 288 "internal.templateparser.y" +#line 2173 "smarty_internal_templateparser.php" +#line 287 "smarty_internal_templateparser.y" function yy_r50(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2193 "internal.templateparser.php" -#line 302 "internal.templateparser.y" +#line 2176 "smarty_internal_templateparser.php" +#line 301 "smarty_internal_templateparser.y" function yy_r54(){$this->_retvalue = ' & '; } -#line 2196 "internal.templateparser.php" -#line 309 "internal.templateparser.y" +#line 2179 "smarty_internal_templateparser.php" +#line 308 "smarty_internal_templateparser.y" function yy_r58(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2199 "internal.templateparser.php" -#line 317 "internal.templateparser.y" +#line 2182 "smarty_internal_templateparser.php" +#line 316 "smarty_internal_templateparser.y" function yy_r62(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2202 "internal.templateparser.php" -#line 319 "internal.templateparser.y" +#line 2185 "smarty_internal_templateparser.php" +#line 318 "smarty_internal_templateparser.y" function yy_r63(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + -1]->minor."'"; } -#line 2205 "internal.templateparser.php" -#line 320 "internal.templateparser.y" +#line 2188 "smarty_internal_templateparser.php" +#line 319 "smarty_internal_templateparser.y" function yy_r64(){ $this->_retvalue = "''"; } -#line 2208 "internal.templateparser.php" -#line 322 "internal.templateparser.y" +#line 2191 "smarty_internal_templateparser.php" +#line 321 "smarty_internal_templateparser.y" function yy_r65(){ $this->_retvalue = '"'.$this->yystack[$this->yyidx + -1]->minor.'"'; } -#line 2211 "internal.templateparser.php" -#line 325 "internal.templateparser.y" +#line 2194 "smarty_internal_templateparser.php" +#line 324 "smarty_internal_templateparser.y" function yy_r67(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2214 "internal.templateparser.php" -#line 326 "internal.templateparser.y" +#line 2197 "smarty_internal_templateparser.php" +#line 325 "smarty_internal_templateparser.y" function yy_r68(){ $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 2217 "internal.templateparser.php" -#line 328 "internal.templateparser.y" +#line 2200 "smarty_internal_templateparser.php" +#line 327 "smarty_internal_templateparser.y" function yy_r69(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2220 "internal.templateparser.php" -#line 329 "internal.templateparser.y" +#line 2203 "smarty_internal_templateparser.php" +#line 328 "smarty_internal_templateparser.y" function yy_r70(){ $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 2223 "internal.templateparser.php" -#line 331 "internal.templateparser.y" +#line 2206 "smarty_internal_templateparser.php" +#line 330 "smarty_internal_templateparser.y" function yy_r71(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2226 "internal.templateparser.php" -#line 333 "internal.templateparser.y" +#line 2209 "smarty_internal_templateparser.php" +#line 332 "smarty_internal_templateparser.y" function yy_r72(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2229 "internal.templateparser.php" -#line 335 "internal.templateparser.y" +#line 2212 "smarty_internal_templateparser.php" +#line 334 "smarty_internal_templateparser.y" function yy_r73(){ $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 2232 "internal.templateparser.php" -#line 337 "internal.templateparser.y" +#line 2215 "smarty_internal_templateparser.php" +#line 336 "smarty_internal_templateparser.y" function yy_r74(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2235 "internal.templateparser.php" -#line 346 "internal.templateparser.y" - function yy_r75(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('internal_smarty_var',$this->yystack[$this->yyidx + 0]->minor['index']);} else { +#line 2218 "smarty_internal_templateparser.php" +#line 345 "smarty_internal_templateparser.y" + function yy_r75(){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'],"'"))->nocache;} } -#line 2239 "internal.templateparser.php" -#line 349 "internal.templateparser.y" +#line 2222 "smarty_internal_templateparser.php" +#line 348 "smarty_internal_templateparser.y" function yy_r76(){ $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,"'"))->nocache; } -#line 2242 "internal.templateparser.php" -#line 353 "internal.templateparser.y" +#line 2225 "smarty_internal_templateparser.php" +#line 352 "smarty_internal_templateparser.y" function yy_r78(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2245 "internal.templateparser.php" -#line 354 "internal.templateparser.y" +#line 2228 "smarty_internal_templateparser.php" +#line 353 "smarty_internal_templateparser.y" function yy_r79(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2248 "internal.templateparser.php" -#line 357 "internal.templateparser.y" +#line 2231 "smarty_internal_templateparser.php" +#line 356 "smarty_internal_templateparser.y" function yy_r80(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2251 "internal.templateparser.php" -#line 365 "internal.templateparser.y" +#line 2234 "smarty_internal_templateparser.php" +#line 364 "smarty_internal_templateparser.y" function yy_r82(){return; } -#line 2254 "internal.templateparser.php" -#line 369 "internal.templateparser.y" +#line 2237 "smarty_internal_templateparser.php" +#line 368 "smarty_internal_templateparser.y" function yy_r83(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2257 "internal.templateparser.php" -#line 370 "internal.templateparser.y" +#line 2240 "smarty_internal_templateparser.php" +#line 369 "smarty_internal_templateparser.y" function yy_r84(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2260 "internal.templateparser.php" -#line 371 "internal.templateparser.y" +#line 2243 "smarty_internal_templateparser.php" +#line 370 "smarty_internal_templateparser.y" function yy_r85(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } -#line 2263 "internal.templateparser.php" -#line 372 "internal.templateparser.y" +#line 2246 "smarty_internal_templateparser.php" +#line 371 "smarty_internal_templateparser.y" function yy_r86(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2266 "internal.templateparser.php" -#line 374 "internal.templateparser.y" - function yy_r87(){ $this->_retvalue = '['.$this->compiler->compileTag('internal_smarty_var','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2269 "internal.templateparser.php" -#line 375 "internal.templateparser.y" - function yy_r88(){ $this->_retvalue = '['.$this->compiler->compileTag('internal_smarty_var','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2272 "internal.templateparser.php" -#line 379 "internal.templateparser.y" +#line 2249 "smarty_internal_templateparser.php" +#line 373 "smarty_internal_templateparser.y" + function yy_r87(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2252 "smarty_internal_templateparser.php" +#line 374 "smarty_internal_templateparser.y" + function yy_r88(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2255 "smarty_internal_templateparser.php" +#line 378 "smarty_internal_templateparser.y" function yy_r90(){$this->_retvalue = ''; } -#line 2275 "internal.templateparser.php" -#line 387 "internal.templateparser.y" +#line 2258 "smarty_internal_templateparser.php" +#line 386 "smarty_internal_templateparser.y" function yy_r92(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2278 "internal.templateparser.php" -#line 389 "internal.templateparser.y" +#line 2261 "smarty_internal_templateparser.php" +#line 388 "smarty_internal_templateparser.y" function yy_r93(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2281 "internal.templateparser.php" -#line 391 "internal.templateparser.y" +#line 2264 "smarty_internal_templateparser.php" +#line 390 "smarty_internal_templateparser.y" function yy_r94(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2284 "internal.templateparser.php" -#line 396 "internal.templateparser.y" +#line 2267 "smarty_internal_templateparser.php" +#line 395 "smarty_internal_templateparser.y" function yy_r95(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('internal_smarty_var',$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'],"'"))->nocache;} } -#line 2288 "internal.templateparser.php" -#line 399 "internal.templateparser.y" +#line 2271 "smarty_internal_templateparser.php" +#line 398 "smarty_internal_templateparser.y" function yy_r96(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2291 "internal.templateparser.php" -#line 401 "internal.templateparser.y" +#line 2274 "smarty_internal_templateparser.php" +#line 400 "smarty_internal_templateparser.y" function yy_r97(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2294 "internal.templateparser.php" -#line 403 "internal.templateparser.y" +#line 2277 "smarty_internal_templateparser.php" +#line 402 "smarty_internal_templateparser.y" function yy_r98(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2297 "internal.templateparser.php" -#line 404 "internal.templateparser.y" +#line 2280 "smarty_internal_templateparser.php" +#line 403 "smarty_internal_templateparser.y" function yy_r99(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2300 "internal.templateparser.php" -#line 405 "internal.templateparser.y" +#line 2283 "smarty_internal_templateparser.php" +#line 404 "smarty_internal_templateparser.y" function yy_r100(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2303 "internal.templateparser.php" -#line 406 "internal.templateparser.y" +#line 2286 "smarty_internal_templateparser.php" +#line 405 "smarty_internal_templateparser.y" function yy_r101(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2306 "internal.templateparser.php" -#line 408 "internal.templateparser.y" +#line 2289 "smarty_internal_templateparser.php" +#line 407 "smarty_internal_templateparser.y" function yy_r102(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2309 "internal.templateparser.php" -#line 414 "internal.templateparser.y" +#line 2292 "smarty_internal_templateparser.php" +#line 413 "smarty_internal_templateparser.y" function yy_r103(){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 .")"; @@ -2310,136 +2293,136 @@ static public $yy_action = array( $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } -#line 2318 "internal.templateparser.php" -#line 425 "internal.templateparser.y" +#line 2301 "smarty_internal_templateparser.php" +#line 424 "smarty_internal_templateparser.y" function yy_r104(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2321 "internal.templateparser.php" -#line 429 "internal.templateparser.y" +#line 2304 "smarty_internal_templateparser.php" +#line 428 "smarty_internal_templateparser.y" function yy_r105(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2324 "internal.templateparser.php" -#line 433 "internal.templateparser.y" +#line 2307 "smarty_internal_templateparser.php" +#line 432 "smarty_internal_templateparser.y" function yy_r107(){ return; } -#line 2327 "internal.templateparser.php" -#line 438 "internal.templateparser.y" +#line 2310 "smarty_internal_templateparser.php" +#line 437 "smarty_internal_templateparser.y" function yy_r108(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } -#line 2330 "internal.templateparser.php" -#line 439 "internal.templateparser.y" +#line 2313 "smarty_internal_templateparser.php" +#line 438 "smarty_internal_templateparser.y" function yy_r109(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } -#line 2333 "internal.templateparser.php" -#line 451 "internal.templateparser.y" +#line 2316 "smarty_internal_templateparser.php" +#line 450 "smarty_internal_templateparser.y" function yy_r110(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2336 "internal.templateparser.php" -#line 455 "internal.templateparser.y" +#line 2319 "smarty_internal_templateparser.php" +#line 454 "smarty_internal_templateparser.y" function yy_r112(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2339 "internal.templateparser.php" -#line 456 "internal.templateparser.y" +#line 2322 "smarty_internal_templateparser.php" +#line 455 "smarty_internal_templateparser.y" function yy_r113(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2342 "internal.templateparser.php" -#line 463 "internal.templateparser.y" +#line 2325 "smarty_internal_templateparser.php" +#line 462 "smarty_internal_templateparser.y" function yy_r115(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2345 "internal.templateparser.php" -#line 468 "internal.templateparser.y" +#line 2328 "smarty_internal_templateparser.php" +#line 467 "smarty_internal_templateparser.y" function yy_r117(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2348 "internal.templateparser.php" -#line 470 "internal.templateparser.y" +#line 2331 "smarty_internal_templateparser.php" +#line 469 "smarty_internal_templateparser.y" function yy_r118(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2351 "internal.templateparser.php" -#line 471 "internal.templateparser.y" +#line 2334 "smarty_internal_templateparser.php" +#line 470 "smarty_internal_templateparser.y" function yy_r119(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2354 "internal.templateparser.php" -#line 472 "internal.templateparser.y" +#line 2337 "smarty_internal_templateparser.php" +#line 471 "smarty_internal_templateparser.y" function yy_r120(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2357 "internal.templateparser.php" -#line 474 "internal.templateparser.y" +#line 2340 "smarty_internal_templateparser.php" +#line 473 "smarty_internal_templateparser.y" function yy_r122(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2360 "internal.templateparser.php" -#line 475 "internal.templateparser.y" +#line 2343 "smarty_internal_templateparser.php" +#line 474 "smarty_internal_templateparser.y" function yy_r123(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2363 "internal.templateparser.php" -#line 476 "internal.templateparser.y" +#line 2346 "smarty_internal_templateparser.php" +#line 475 "smarty_internal_templateparser.y" function yy_r124(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2366 "internal.templateparser.php" -#line 477 "internal.templateparser.y" +#line 2349 "smarty_internal_templateparser.php" +#line 476 "smarty_internal_templateparser.y" function yy_r125(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2369 "internal.templateparser.php" -#line 478 "internal.templateparser.y" +#line 2352 "smarty_internal_templateparser.php" +#line 477 "smarty_internal_templateparser.y" function yy_r126(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2372 "internal.templateparser.php" -#line 479 "internal.templateparser.y" +#line 2355 "smarty_internal_templateparser.php" +#line 478 "smarty_internal_templateparser.y" function yy_r127(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2375 "internal.templateparser.php" -#line 485 "internal.templateparser.y" +#line 2358 "smarty_internal_templateparser.php" +#line 484 "smarty_internal_templateparser.y" function yy_r133(){$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 2378 "internal.templateparser.php" -#line 487 "internal.templateparser.y" +#line 2361 "smarty_internal_templateparser.php" +#line 486 "smarty_internal_templateparser.y" function yy_r134(){$this->_retvalue = '=='; } -#line 2381 "internal.templateparser.php" -#line 488 "internal.templateparser.y" +#line 2364 "smarty_internal_templateparser.php" +#line 487 "smarty_internal_templateparser.y" function yy_r135(){$this->_retvalue = '!='; } -#line 2384 "internal.templateparser.php" -#line 489 "internal.templateparser.y" +#line 2367 "smarty_internal_templateparser.php" +#line 488 "smarty_internal_templateparser.y" function yy_r136(){$this->_retvalue = '>'; } -#line 2387 "internal.templateparser.php" -#line 490 "internal.templateparser.y" +#line 2370 "smarty_internal_templateparser.php" +#line 489 "smarty_internal_templateparser.y" function yy_r137(){$this->_retvalue = '<'; } -#line 2390 "internal.templateparser.php" -#line 491 "internal.templateparser.y" +#line 2373 "smarty_internal_templateparser.php" +#line 490 "smarty_internal_templateparser.y" function yy_r138(){$this->_retvalue = '>='; } -#line 2393 "internal.templateparser.php" -#line 492 "internal.templateparser.y" +#line 2376 "smarty_internal_templateparser.php" +#line 491 "smarty_internal_templateparser.y" function yy_r139(){$this->_retvalue = '<='; } -#line 2396 "internal.templateparser.php" -#line 493 "internal.templateparser.y" +#line 2379 "smarty_internal_templateparser.php" +#line 492 "smarty_internal_templateparser.y" function yy_r140(){$this->_retvalue = '==='; } -#line 2399 "internal.templateparser.php" -#line 494 "internal.templateparser.y" +#line 2382 "smarty_internal_templateparser.php" +#line 493 "smarty_internal_templateparser.y" function yy_r141(){$this->_retvalue = '!=='; } -#line 2402 "internal.templateparser.php" -#line 496 "internal.templateparser.y" +#line 2385 "smarty_internal_templateparser.php" +#line 495 "smarty_internal_templateparser.y" function yy_r142(){$this->_retvalue = '&&'; } -#line 2405 "internal.templateparser.php" -#line 497 "internal.templateparser.y" +#line 2388 "smarty_internal_templateparser.php" +#line 496 "smarty_internal_templateparser.y" function yy_r143(){$this->_retvalue = '||'; } -#line 2408 "internal.templateparser.php" -#line 498 "internal.templateparser.y" +#line 2391 "smarty_internal_templateparser.php" +#line 497 "smarty_internal_templateparser.y" function yy_r144(){$this->_retvalue = ' XOR '; } -#line 2411 "internal.templateparser.php" -#line 503 "internal.templateparser.y" +#line 2394 "smarty_internal_templateparser.php" +#line 502 "smarty_internal_templateparser.y" function yy_r145(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2414 "internal.templateparser.php" -#line 505 "internal.templateparser.y" +#line 2397 "smarty_internal_templateparser.php" +#line 504 "smarty_internal_templateparser.y" function yy_r147(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2417 "internal.templateparser.php" -#line 506 "internal.templateparser.y" +#line 2400 "smarty_internal_templateparser.php" +#line 505 "smarty_internal_templateparser.y" function yy_r148(){ return; } -#line 2420 "internal.templateparser.php" -#line 507 "internal.templateparser.y" +#line 2403 "smarty_internal_templateparser.php" +#line 506 "smarty_internal_templateparser.y" function yy_r149(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2423 "internal.templateparser.php" -#line 508 "internal.templateparser.y" +#line 2406 "smarty_internal_templateparser.php" +#line 507 "smarty_internal_templateparser.y" function yy_r150(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2426 "internal.templateparser.php" -#line 517 "internal.templateparser.y" +#line 2409 "smarty_internal_templateparser.php" +#line 516 "smarty_internal_templateparser.y" function yy_r154(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; } -#line 2429 "internal.templateparser.php" -#line 518 "internal.templateparser.y" +#line 2412 "smarty_internal_templateparser.php" +#line 517 "smarty_internal_templateparser.y" function yy_r155(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } -#line 2432 "internal.templateparser.php" -#line 519 "internal.templateparser.y" +#line 2415 "smarty_internal_templateparser.php" +#line 518 "smarty_internal_templateparser.y" function yy_r156(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; $this->compiler->has_variable_string = true; } -#line 2435 "internal.templateparser.php" -#line 520 "internal.templateparser.y" - function yy_r157(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0].'".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } -#line 2438 "internal.templateparser.php" -#line 521 "internal.templateparser.y" - function yy_r158(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = $s[0].'".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } -#line 2441 "internal.templateparser.php" -#line 522 "internal.templateparser.y" +#line 2418 "smarty_internal_templateparser.php" +#line 519 "smarty_internal_templateparser.y" + function yy_r157(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } +#line 2421 "smarty_internal_templateparser.php" +#line 520 "smarty_internal_templateparser.y" + function yy_r158(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } +#line 2424 "smarty_internal_templateparser.php" +#line 521 "smarty_internal_templateparser.y" function yy_r159(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2444 "internal.templateparser.php" -#line 524 "internal.templateparser.y" +#line 2427 "smarty_internal_templateparser.php" +#line 523 "smarty_internal_templateparser.y" function yy_r161(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2447 "internal.templateparser.php" +#line 2430 "smarty_internal_templateparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -2551,12 +2534,12 @@ static public $yy_action = array( */ function yy_syntax_error($yymajor, $TOKEN) { -#line 60 "internal.templateparser.y" +#line 60 "smarty_internal_templateparser.y" $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2565 "internal.templateparser.php" +#line 2548 "smarty_internal_templateparser.php" } /** @@ -2574,13 +2557,13 @@ static public $yy_action = array( } /* Here code is inserted which will be executed whenever the ** parser accepts */ -#line 52 "internal.templateparser.y" +#line 52 "smarty_internal_templateparser.y" $this->successful = !$this->internalError; $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2590 "internal.templateparser.php" +#line 2573 "smarty_internal_templateparser.php" } /** diff --git a/libs/sysplugins/internal.write_file.php b/libs/sysplugins/smarty_internal_write_file.php similarity index 100% rename from libs/sysplugins/internal.write_file.php rename to libs/sysplugins/smarty_internal_write_file.php diff --git a/libs/sysplugins/method._get_filter_name.php b/libs/sysplugins/smarty_method__get_filter_name.php similarity index 100% rename from libs/sysplugins/method._get_filter_name.php rename to libs/sysplugins/smarty_method__get_filter_name.php diff --git a/libs/sysplugins/method.addpluginsdir.php b/libs/sysplugins/smarty_method_addpluginsdir.php similarity index 100% rename from libs/sysplugins/method.addpluginsdir.php rename to libs/sysplugins/smarty_method_addpluginsdir.php diff --git a/libs/sysplugins/method.clear_all_assign.php b/libs/sysplugins/smarty_method_clear_all_assign.php similarity index 100% rename from libs/sysplugins/method.clear_all_assign.php rename to libs/sysplugins/smarty_method_clear_all_assign.php diff --git a/libs/sysplugins/method.clear_all_cache.php b/libs/sysplugins/smarty_method_clear_all_cache.php similarity index 100% rename from libs/sysplugins/method.clear_all_cache.php rename to libs/sysplugins/smarty_method_clear_all_cache.php diff --git a/libs/sysplugins/method.clear_assign.php b/libs/sysplugins/smarty_method_clear_assign.php similarity index 100% rename from libs/sysplugins/method.clear_assign.php rename to libs/sysplugins/smarty_method_clear_assign.php diff --git a/libs/sysplugins/method.clear_cache.php b/libs/sysplugins/smarty_method_clear_cache.php similarity index 100% rename from libs/sysplugins/method.clear_cache.php rename to libs/sysplugins/smarty_method_clear_cache.php diff --git a/libs/sysplugins/method.clear_compiled_tpl.php b/libs/sysplugins/smarty_method_clear_compiled_tpl.php similarity index 100% rename from libs/sysplugins/method.clear_compiled_tpl.php rename to libs/sysplugins/smarty_method_clear_compiled_tpl.php diff --git a/libs/sysplugins/method.clear_config.php b/libs/sysplugins/smarty_method_clear_config.php similarity index 100% rename from libs/sysplugins/method.clear_config.php rename to libs/sysplugins/smarty_method_clear_config.php diff --git a/libs/sysplugins/method.compile_directory.php b/libs/sysplugins/smarty_method_compile_directory.php similarity index 100% rename from libs/sysplugins/method.compile_directory.php rename to libs/sysplugins/smarty_method_compile_directory.php diff --git a/libs/sysplugins/method.config_load.php b/libs/sysplugins/smarty_method_config_load.php similarity index 100% rename from libs/sysplugins/method.config_load.php rename to libs/sysplugins/smarty_method_config_load.php diff --git a/libs/sysplugins/method.disablecachemodifycheck.php b/libs/sysplugins/smarty_method_disablecachemodifycheck.php similarity index 100% rename from libs/sysplugins/method.disablecachemodifycheck.php rename to libs/sysplugins/smarty_method_disablecachemodifycheck.php diff --git a/libs/sysplugins/method.disablecaching.php b/libs/sysplugins/smarty_method_disablecaching.php similarity index 100% rename from libs/sysplugins/method.disablecaching.php rename to libs/sysplugins/smarty_method_disablecaching.php diff --git a/libs/sysplugins/method.disablecompilecheck.php b/libs/sysplugins/smarty_method_disablecompilecheck.php similarity index 100% rename from libs/sysplugins/method.disablecompilecheck.php rename to libs/sysplugins/smarty_method_disablecompilecheck.php diff --git a/libs/sysplugins/method.disableconfigbooleanize.php b/libs/sysplugins/smarty_method_disableconfigbooleanize.php similarity index 100% rename from libs/sysplugins/method.disableconfigbooleanize.php rename to libs/sysplugins/smarty_method_disableconfigbooleanize.php diff --git a/libs/sysplugins/method.disableconfigoverwrite.php b/libs/sysplugins/smarty_method_disableconfigoverwrite.php similarity index 100% rename from libs/sysplugins/method.disableconfigoverwrite.php rename to libs/sysplugins/smarty_method_disableconfigoverwrite.php diff --git a/libs/sysplugins/method.disableconfigreadhidden.php b/libs/sysplugins/smarty_method_disableconfigreadhidden.php similarity index 100% rename from libs/sysplugins/method.disableconfigreadhidden.php rename to libs/sysplugins/smarty_method_disableconfigreadhidden.php diff --git a/libs/sysplugins/method.disabledebugging.php b/libs/sysplugins/smarty_method_disabledebugging.php similarity index 100% rename from libs/sysplugins/method.disabledebugging.php rename to libs/sysplugins/smarty_method_disabledebugging.php diff --git a/libs/sysplugins/method.disabledebuggingurlctrl.php b/libs/sysplugins/smarty_method_disabledebuggingurlctrl.php similarity index 100% rename from libs/sysplugins/method.disabledebuggingurlctrl.php rename to libs/sysplugins/smarty_method_disabledebuggingurlctrl.php diff --git a/libs/sysplugins/method.disabledefaulttimezone.php b/libs/sysplugins/smarty_method_disabledefaulttimezone.php similarity index 100% rename from libs/sysplugins/method.disabledefaulttimezone.php rename to libs/sysplugins/smarty_method_disabledefaulttimezone.php diff --git a/libs/sysplugins/method.disableforcecompile.php b/libs/sysplugins/smarty_method_disableforcecompile.php similarity index 100% rename from libs/sysplugins/method.disableforcecompile.php rename to libs/sysplugins/smarty_method_disableforcecompile.php diff --git a/libs/sysplugins/method.disablevariablefilter.php b/libs/sysplugins/smarty_method_disablevariablefilter.php similarity index 100% rename from libs/sysplugins/method.disablevariablefilter.php rename to libs/sysplugins/smarty_method_disablevariablefilter.php diff --git a/libs/sysplugins/method.enablecachemodifycheck.php b/libs/sysplugins/smarty_method_enablecachemodifycheck.php similarity index 100% rename from libs/sysplugins/method.enablecachemodifycheck.php rename to libs/sysplugins/smarty_method_enablecachemodifycheck.php diff --git a/libs/sysplugins/method.enablecompilecheck.php b/libs/sysplugins/smarty_method_enablecompilecheck.php similarity index 100% rename from libs/sysplugins/method.enablecompilecheck.php rename to libs/sysplugins/smarty_method_enablecompilecheck.php diff --git a/libs/sysplugins/method.enableconfigbooleanize.php b/libs/sysplugins/smarty_method_enableconfigbooleanize.php similarity index 100% rename from libs/sysplugins/method.enableconfigbooleanize.php rename to libs/sysplugins/smarty_method_enableconfigbooleanize.php diff --git a/libs/sysplugins/method.enableconfigoverwrite.php b/libs/sysplugins/smarty_method_enableconfigoverwrite.php similarity index 100% rename from libs/sysplugins/method.enableconfigoverwrite.php rename to libs/sysplugins/smarty_method_enableconfigoverwrite.php diff --git a/libs/sysplugins/method.enableconfigreadhidden.php b/libs/sysplugins/smarty_method_enableconfigreadhidden.php similarity index 100% rename from libs/sysplugins/method.enableconfigreadhidden.php rename to libs/sysplugins/smarty_method_enableconfigreadhidden.php diff --git a/libs/sysplugins/method.enabledebugging.php b/libs/sysplugins/smarty_method_enabledebugging.php similarity index 100% rename from libs/sysplugins/method.enabledebugging.php rename to libs/sysplugins/smarty_method_enabledebugging.php diff --git a/libs/sysplugins/method.enabledebuggingurlctrl.php b/libs/sysplugins/smarty_method_enabledebuggingurlctrl.php similarity index 100% rename from libs/sysplugins/method.enabledebuggingurlctrl.php rename to libs/sysplugins/smarty_method_enabledebuggingurlctrl.php diff --git a/libs/sysplugins/method.enabledefaulttimezone.php b/libs/sysplugins/smarty_method_enabledefaulttimezone.php similarity index 100% rename from libs/sysplugins/method.enabledefaulttimezone.php rename to libs/sysplugins/smarty_method_enabledefaulttimezone.php diff --git a/libs/sysplugins/method.enableforcecompile.php b/libs/sysplugins/smarty_method_enableforcecompile.php similarity index 100% rename from libs/sysplugins/method.enableforcecompile.php rename to libs/sysplugins/smarty_method_enableforcecompile.php diff --git a/libs/sysplugins/method.enablevariablefilter.php b/libs/sysplugins/smarty_method_enablevariablefilter.php similarity index 100% rename from libs/sysplugins/method.enablevariablefilter.php rename to libs/sysplugins/smarty_method_enablevariablefilter.php diff --git a/libs/sysplugins/method.get_config_vars.php b/libs/sysplugins/smarty_method_get_config_vars.php similarity index 100% rename from libs/sysplugins/method.get_config_vars.php rename to libs/sysplugins/smarty_method_get_config_vars.php diff --git a/libs/sysplugins/method.get_global.php b/libs/sysplugins/smarty_method_get_global.php similarity index 100% rename from libs/sysplugins/method.get_global.php rename to libs/sysplugins/smarty_method_get_global.php diff --git a/libs/sysplugins/method.get_registered_object.php b/libs/sysplugins/smarty_method_get_registered_object.php similarity index 100% rename from libs/sysplugins/method.get_registered_object.php rename to libs/sysplugins/smarty_method_get_registered_object.php diff --git a/libs/sysplugins/method.get_template_vars.php b/libs/sysplugins/smarty_method_get_template_vars.php similarity index 100% rename from libs/sysplugins/method.get_template_vars.php rename to libs/sysplugins/smarty_method_get_template_vars.php diff --git a/libs/sysplugins/method.getcachedir.php b/libs/sysplugins/smarty_method_getcachedir.php similarity index 100% rename from libs/sysplugins/method.getcachedir.php rename to libs/sysplugins/smarty_method_getcachedir.php diff --git a/libs/sysplugins/method.getcachelifetime.php b/libs/sysplugins/smarty_method_getcachelifetime.php similarity index 100% rename from libs/sysplugins/method.getcachelifetime.php rename to libs/sysplugins/smarty_method_getcachelifetime.php diff --git a/libs/sysplugins/method.getcompiledir.php b/libs/sysplugins/smarty_method_getcompiledir.php similarity index 100% rename from libs/sysplugins/method.getcompiledir.php rename to libs/sysplugins/smarty_method_getcompiledir.php diff --git a/libs/sysplugins/method.getconfigdir.php b/libs/sysplugins/smarty_method_getconfigdir.php similarity index 100% rename from libs/sysplugins/method.getconfigdir.php rename to libs/sysplugins/smarty_method_getconfigdir.php diff --git a/libs/sysplugins/method.getdebugtemplate.php b/libs/sysplugins/smarty_method_getdebugtemplate.php similarity index 100% rename from libs/sysplugins/method.getdebugtemplate.php rename to libs/sysplugins/smarty_method_getdebugtemplate.php diff --git a/libs/sysplugins/method.getpluginsdir.php b/libs/sysplugins/smarty_method_getpluginsdir.php similarity index 100% rename from libs/sysplugins/method.getpluginsdir.php rename to libs/sysplugins/smarty_method_getpluginsdir.php diff --git a/libs/sysplugins/method.gettemplatedir.php b/libs/sysplugins/smarty_method_gettemplatedir.php similarity index 100% rename from libs/sysplugins/method.gettemplatedir.php rename to libs/sysplugins/smarty_method_gettemplatedir.php diff --git a/libs/sysplugins/method.getvariablefilter.php b/libs/sysplugins/smarty_method_getvariablefilter.php similarity index 100% rename from libs/sysplugins/method.getvariablefilter.php rename to libs/sysplugins/smarty_method_getvariablefilter.php diff --git a/libs/sysplugins/method.iscachemodifycheck.php b/libs/sysplugins/smarty_method_iscachemodifycheck.php similarity index 100% rename from libs/sysplugins/method.iscachemodifycheck.php rename to libs/sysplugins/smarty_method_iscachemodifycheck.php diff --git a/libs/sysplugins/method.iscaching.php b/libs/sysplugins/smarty_method_iscaching.php similarity index 100% rename from libs/sysplugins/method.iscaching.php rename to libs/sysplugins/smarty_method_iscaching.php diff --git a/libs/sysplugins/method.iscompilecheck.php b/libs/sysplugins/smarty_method_iscompilecheck.php similarity index 100% rename from libs/sysplugins/method.iscompilecheck.php rename to libs/sysplugins/smarty_method_iscompilecheck.php diff --git a/libs/sysplugins/method.isconfigbooleanize.php b/libs/sysplugins/smarty_method_isconfigbooleanize.php similarity index 100% rename from libs/sysplugins/method.isconfigbooleanize.php rename to libs/sysplugins/smarty_method_isconfigbooleanize.php diff --git a/libs/sysplugins/method.isconfigoverwrite.php b/libs/sysplugins/smarty_method_isconfigoverwrite.php similarity index 100% rename from libs/sysplugins/method.isconfigoverwrite.php rename to libs/sysplugins/smarty_method_isconfigoverwrite.php diff --git a/libs/sysplugins/method.isconfigreadhidden.php b/libs/sysplugins/smarty_method_isconfigreadhidden.php similarity index 100% rename from libs/sysplugins/method.isconfigreadhidden.php rename to libs/sysplugins/smarty_method_isconfigreadhidden.php diff --git a/libs/sysplugins/method.isdebugging.php b/libs/sysplugins/smarty_method_isdebugging.php similarity index 100% rename from libs/sysplugins/method.isdebugging.php rename to libs/sysplugins/smarty_method_isdebugging.php diff --git a/libs/sysplugins/method.isdebuggingurlctrl.php b/libs/sysplugins/smarty_method_isdebuggingurlctrl.php similarity index 100% rename from libs/sysplugins/method.isdebuggingurlctrl.php rename to libs/sysplugins/smarty_method_isdebuggingurlctrl.php diff --git a/libs/sysplugins/method.isdefaulttimezone.php b/libs/sysplugins/smarty_method_isdefaulttimezone.php similarity index 100% rename from libs/sysplugins/method.isdefaulttimezone.php rename to libs/sysplugins/smarty_method_isdefaulttimezone.php diff --git a/libs/sysplugins/method.isforcecompile.php b/libs/sysplugins/smarty_method_isforcecompile.php similarity index 100% rename from libs/sysplugins/method.isforcecompile.php rename to libs/sysplugins/smarty_method_isforcecompile.php diff --git a/libs/sysplugins/method.load_filter.php b/libs/sysplugins/smarty_method_load_filter.php similarity index 100% rename from libs/sysplugins/method.load_filter.php rename to libs/sysplugins/smarty_method_load_filter.php diff --git a/libs/sysplugins/method.register_block.php b/libs/sysplugins/smarty_method_register_block.php similarity index 100% rename from libs/sysplugins/method.register_block.php rename to libs/sysplugins/smarty_method_register_block.php diff --git a/libs/sysplugins/method.register_compiler_function.php b/libs/sysplugins/smarty_method_register_compiler_function.php similarity index 100% rename from libs/sysplugins/method.register_compiler_function.php rename to libs/sysplugins/smarty_method_register_compiler_function.php diff --git a/libs/sysplugins/method.register_function.php b/libs/sysplugins/smarty_method_register_function.php similarity index 100% rename from libs/sysplugins/method.register_function.php rename to libs/sysplugins/smarty_method_register_function.php diff --git a/libs/sysplugins/method.register_modifier.php b/libs/sysplugins/smarty_method_register_modifier.php similarity index 100% rename from libs/sysplugins/method.register_modifier.php rename to libs/sysplugins/smarty_method_register_modifier.php diff --git a/libs/sysplugins/method.register_object.php b/libs/sysplugins/smarty_method_register_object.php similarity index 100% rename from libs/sysplugins/method.register_object.php rename to libs/sysplugins/smarty_method_register_object.php diff --git a/libs/sysplugins/method.register_outputfilter.php b/libs/sysplugins/smarty_method_register_outputfilter.php similarity index 100% rename from libs/sysplugins/method.register_outputfilter.php rename to libs/sysplugins/smarty_method_register_outputfilter.php diff --git a/libs/sysplugins/method.register_postfilter.php b/libs/sysplugins/smarty_method_register_postfilter.php similarity index 100% rename from libs/sysplugins/method.register_postfilter.php rename to libs/sysplugins/smarty_method_register_postfilter.php diff --git a/libs/sysplugins/method.register_prefilter.php b/libs/sysplugins/smarty_method_register_prefilter.php similarity index 100% rename from libs/sysplugins/method.register_prefilter.php rename to libs/sysplugins/smarty_method_register_prefilter.php diff --git a/libs/sysplugins/method.register_resource.php b/libs/sysplugins/smarty_method_register_resource.php similarity index 100% rename from libs/sysplugins/method.register_resource.php rename to libs/sysplugins/smarty_method_register_resource.php diff --git a/libs/sysplugins/method.register_variablefilter.php b/libs/sysplugins/smarty_method_register_variablefilter.php similarity index 100% rename from libs/sysplugins/method.register_variablefilter.php rename to libs/sysplugins/smarty_method_register_variablefilter.php diff --git a/libs/sysplugins/method.registerdefaultpluginhandler.php b/libs/sysplugins/smarty_method_registerdefaultpluginhandler.php similarity index 100% rename from libs/sysplugins/method.registerdefaultpluginhandler.php rename to libs/sysplugins/smarty_method_registerdefaultpluginhandler.php diff --git a/libs/sysplugins/method.registerdefaulttemplatehandler.php b/libs/sysplugins/smarty_method_registerdefaulttemplatehandler.php similarity index 100% rename from libs/sysplugins/method.registerdefaulttemplatehandler.php rename to libs/sysplugins/smarty_method_registerdefaulttemplatehandler.php diff --git a/libs/sysplugins/method.setconfigdir.php b/libs/sysplugins/smarty_method_setconfigdir.php similarity index 100% rename from libs/sysplugins/method.setconfigdir.php rename to libs/sysplugins/smarty_method_setconfigdir.php diff --git a/libs/sysplugins/method.setdebugtemplate.php b/libs/sysplugins/smarty_method_setdebugtemplate.php similarity index 100% rename from libs/sysplugins/method.setdebugtemplate.php rename to libs/sysplugins/smarty_method_setdebugtemplate.php diff --git a/libs/sysplugins/method.setpluginsdir.php b/libs/sysplugins/smarty_method_setpluginsdir.php similarity index 100% rename from libs/sysplugins/method.setpluginsdir.php rename to libs/sysplugins/smarty_method_setpluginsdir.php diff --git a/libs/sysplugins/method.template_exists.php b/libs/sysplugins/smarty_method_template_exists.php similarity index 100% rename from libs/sysplugins/method.template_exists.php rename to libs/sysplugins/smarty_method_template_exists.php diff --git a/libs/sysplugins/method.test.php b/libs/sysplugins/smarty_method_test.php similarity index 100% rename from libs/sysplugins/method.test.php rename to libs/sysplugins/smarty_method_test.php diff --git a/libs/sysplugins/method.unregister_block.php b/libs/sysplugins/smarty_method_unregister_block.php similarity index 100% rename from libs/sysplugins/method.unregister_block.php rename to libs/sysplugins/smarty_method_unregister_block.php diff --git a/libs/sysplugins/method.unregister_compiler_function.php b/libs/sysplugins/smarty_method_unregister_compiler_function.php similarity index 100% rename from libs/sysplugins/method.unregister_compiler_function.php rename to libs/sysplugins/smarty_method_unregister_compiler_function.php diff --git a/libs/sysplugins/method.unregister_function.php b/libs/sysplugins/smarty_method_unregister_function.php similarity index 100% rename from libs/sysplugins/method.unregister_function.php rename to libs/sysplugins/smarty_method_unregister_function.php diff --git a/libs/sysplugins/method.unregister_modifier.php b/libs/sysplugins/smarty_method_unregister_modifier.php similarity index 100% rename from libs/sysplugins/method.unregister_modifier.php rename to libs/sysplugins/smarty_method_unregister_modifier.php diff --git a/libs/sysplugins/method.unregister_object.php b/libs/sysplugins/smarty_method_unregister_object.php similarity index 100% rename from libs/sysplugins/method.unregister_object.php rename to libs/sysplugins/smarty_method_unregister_object.php diff --git a/libs/sysplugins/method.unregister_outputfilter.php b/libs/sysplugins/smarty_method_unregister_outputfilter.php similarity index 100% rename from libs/sysplugins/method.unregister_outputfilter.php rename to libs/sysplugins/smarty_method_unregister_outputfilter.php diff --git a/libs/sysplugins/method.unregister_postfilter.php b/libs/sysplugins/smarty_method_unregister_postfilter.php similarity index 100% rename from libs/sysplugins/method.unregister_postfilter.php rename to libs/sysplugins/smarty_method_unregister_postfilter.php diff --git a/libs/sysplugins/method.unregister_prefilter.php b/libs/sysplugins/smarty_method_unregister_prefilter.php similarity index 100% rename from libs/sysplugins/method.unregister_prefilter.php rename to libs/sysplugins/smarty_method_unregister_prefilter.php diff --git a/libs/sysplugins/method.unregister_resource.php b/libs/sysplugins/smarty_method_unregister_resource.php similarity index 100% rename from libs/sysplugins/method.unregister_resource.php rename to libs/sysplugins/smarty_method_unregister_resource.php diff --git a/libs/sysplugins/method.unregister_variablefilter.php b/libs/sysplugins/smarty_method_unregister_variablefilter.php similarity index 100% rename from libs/sysplugins/method.unregister_variablefilter.php rename to libs/sysplugins/smarty_method_unregister_variablefilter.php