diff --git a/change_log.txt b/change_log.txt
index ac001d7e..0a4e90ad 100644
--- a/change_log.txt
+++ b/change_log.txt
@@ -1,3 +1,16 @@
+09/19/2009
+- replace internal "eval()" calls by "include" during rendering process
+- speed improvment for templates which have included subtemplates
+ the compiled code of included templates is merged into the compiled code of the parent template
+- added logical operator "xor" for {if} tag
+- changed parameter ordering for Smarty2 BC
+ fetch($template, $cache_id = null, $compile_id = null, $parent = null)
+ display($template, $cache_id = null, $compile_id = null, $parent = null)
+ createTemplate($template, $cache_id = null, $compile_id = null, $parent = null)
+- property resource_char_set is now replaced by constant SMARTY_RESOURCE_CHAR_SET
+- fixed handling of classes in registered blocks
+- speed improvement of lexer on text sections
+
09/01/2009
- dropped nl2br as plugin
- added '<>' as comparission operator in {if} tags
diff --git a/demo/templates/index_view.php b/demo/templates/index_view.php
index 56f27386..ad760aa1 100644
--- a/demo/templates/index_view.php
+++ b/demo/templates/index_view.php
@@ -4,7 +4,7 @@ $foo is =$foo?>
=$foo->trim()->escape('html')?>
Test objects
=$person->setName('Paul')->setAge(39)->introduce()->trim()->truncate(10)?>
-
Arrays
+
Test Arrays
=$array['a']['aa']->truncate(5)?>=$array['b']?>
Function
=$_f->trim($array['a']['aa'])->truncate(10)?>
diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php
index fb2d5c5e..54d6deb7 100644
--- a/libs/Smarty.class.php
+++ b/libs/Smarty.class.php
@@ -27,7 +27,7 @@
* @author Monte Ohrt
* @author Uwe Tews
* @package Smarty
-* @version 3.0-alpha1
+* @version 3.0-beta
*/
/**
@@ -52,6 +52,12 @@ if (!defined('SMARTY_DIR')) {
if (!defined('SMARTY_SYSPLUGINS_DIR')) {
define('SMARTY_SYSPLUGINS_DIR', SMARTY_DIR . 'sysplugins' . DS);
}
+if (!defined('SMARTY_PLUGINS_DIR')) {
+ define('SMARTY_PLUGINS_DIR', SMARTY_DIR . 'plugins' . DS);
+}
+if (!defined('SMARTY_RESOURCE_CHAR_SET')) {
+ define('SMARTY_RESOURCE_CHAR_SET', 'UTF-8');
+}
/**
* define variable scopes
@@ -81,8 +87,8 @@ class Smarty extends Smarty_Internal_TemplateBase {
private static $instance = array();
// smarty version
public static $_version = 'Smarty3Beta-dev';
- // ato literal on delimiters with whitspace
- public $auto_literal = false;
+ // auto literal on delimiters with whitspace
+ public $auto_literal = true;
// display error on not assigned variabled
static $error_unassigned = false;
// template directory
@@ -148,8 +154,6 @@ class Smarty extends Smarty_Internal_TemplateBase {
public $template_functions = null;
// resource type used if none given
public $default_resource_type = 'file';
- // charset of template
- public $resource_char_set = 'UTF-8';
// caching type
public $default_caching_type = 'file';
// internal cache resource types
@@ -190,8 +194,6 @@ class Smarty extends Smarty_Internal_TemplateBase {
public $_smarty_vars = array();
// start time for execution time calculation
public $start_time = 0;
- // has multibyte string functions?
- public $has_mb = false;
/**
* Class constructor, initializes basic smarty properties
*/
@@ -199,9 +201,10 @@ class Smarty extends Smarty_Internal_TemplateBase {
{
// set instance object
Smarty::$instance[$name] = $this;
+ $this->smarty = $this;
+
if (is_callable('mb_internal_encoding')) {
- $this->has_mb = true;
- mb_internal_encoding($this->resource_char_set);
+ mb_internal_encoding(SMARTY_RESOURCE_CHAR_SET);
}
if (function_exists("date_default_timezone_set")) {
date_default_timezone_set(date_default_timezone_get());
@@ -213,7 +216,7 @@ class Smarty extends Smarty_Internal_TemplateBase {
// set default dirs
$this->template_dir = array('.' . DS . 'templates' . DS);
$this->compile_dir = '.' . DS . 'templates_c' . DS;
- $this->plugins_dir = array(SMARTY_DIR . 'plugins' . DS);
+ $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';
@@ -288,7 +291,7 @@ class Smarty extends Smarty_Internal_TemplateBase {
* @param mixed $compile_id compile id to be used with this template
* @return string rendered template output
*/
- public function fetch($template, $parent = null, $cache_id = null, $compile_id = null)
+ public function fetch($template, $cache_id = null, $compile_id = null, $parent = null)
{
if ($parent === null) {
// get default Smarty data object
@@ -296,7 +299,7 @@ class Smarty extends Smarty_Internal_TemplateBase {
}
// create template object if necessary
($template instanceof $this->template_class)? $_template = $template :
- $_template = $this->createTemplate ($template, $parent , $cache_id, $compile_id);
+ $_template = $this->createTemplate ($template, $cache_id, $compile_id, $parent);
$_smarty_old_error_level = $this->debugging ? error_reporting() : error_reporting(isset($this->error_reporting)
? $this->error_reporting : error_reporting() &~E_NOTICE);
// return redered template
@@ -314,14 +317,14 @@ class Smarty extends Smarty_Internal_TemplateBase {
* @param mixed $cache_id cache id to be used with this template
* @param mixed $compile_id compile id to be used with this template
*/
- public function display($template, $parent = null, $cache_id = null, $compile_id = null)
+ public function display($template, $cache_id = null, $compile_id = null, $parent = null)
{
// display template
- echo $this->fetch ($template, $parent , $cache_id, $compile_id);
+ echo $this->fetch ($template, $cache_id, $compile_id, $parent);
// debug output?
if ($this->debugging) {
$this->loadPlugin('Smarty_Internal_Debug');
- Smarty_Internal_Debug::display_debug();
+ Smarty_Internal_Debug::display_debug($this);
}
return true;
}
@@ -421,7 +424,7 @@ class Smarty extends Smarty_Internal_TemplateBase {
*
* @param integer $lifetime lifetime of cached file in seconds
*/
- public function setCachingLifetime($lifetime)
+ public function setCacheLifetime($lifetime)
{
$this->cache_lifetime = $lifetime;
return;
diff --git a/libs/plugins/function.html_checkboxes.php b/libs/plugins/function.html_checkboxes.php
index 7c1d165c..0e04f6e1 100644
--- a/libs/plugins/function.html_checkboxes.php
+++ b/libs/plugins/function.html_checkboxes.php
@@ -41,7 +41,8 @@
*/
function smarty_function_html_checkboxes($params, $smarty, $template)
{
- $smarty->loadPlugin('Smarty_shared_escape_special_chars');
+ require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php');
+ //$smarty->loadPlugin('Smarty_shared_escape_special_chars');
$name = 'checkbox';
$values = null;
diff --git a/libs/plugins/function.html_image.php b/libs/plugins/function.html_image.php
index 829da8db..6d612dfa 100644
--- a/libs/plugins/function.html_image.php
+++ b/libs/plugins/function.html_image.php
@@ -36,7 +36,8 @@
*/
function smarty_function_html_image($params, $smarty, $template)
{
- $smarty->loadPlugin('Smarty_shared_escape_special_chars');
+ require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php');
+ //$smarty->loadPlugin('Smarty_shared_escape_special_chars');
$alt = '';
$file = '';
diff --git a/libs/plugins/function.html_options.php b/libs/plugins/function.html_options.php
index fda0dc00..66d8b76f 100644
--- a/libs/plugins/function.html_options.php
+++ b/libs/plugins/function.html_options.php
@@ -32,7 +32,8 @@
function smarty_function_html_options($params, $smarty, $template)
{
- $smarty->loadPlugin('Smarty_shared_escape_special_chars');
+ require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php');
+ //$smarty->loadPlugin('Smarty_shared_escape_special_chars');
$name = null;
$values = null;
diff --git a/libs/plugins/function.html_radios.php b/libs/plugins/function.html_radios.php
index c1354014..edfd8ad6 100644
--- a/libs/plugins/function.html_radios.php
+++ b/libs/plugins/function.html_radios.php
@@ -42,7 +42,8 @@
*/
function smarty_function_html_radios($params, $smarty, $template)
{
- $smarty->loadPlugin('Smarty_shared_escape_special_chars');
+ require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php');
+ //$smarty->loadPlugin('Smarty_shared_escape_special_chars');
$name = 'radio';
$values = null;
diff --git a/libs/plugins/function.html_select_date.php b/libs/plugins/function.html_select_date.php
index 3644b5b6..1416c3bc 100644
--- a/libs/plugins/function.html_select_date.php
+++ b/libs/plugins/function.html_select_date.php
@@ -40,9 +40,12 @@
*/
function smarty_function_html_select_date($params, $smarty, $template)
{
- $smarty->loadPlugin('Smarty_shared_escape_special_chars');
- $smarty->loadPlugin('Smarty_shared_make_timestamp');
- $smarty->loadPlugin('Smarty_function_html_options');
+ require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php');
+ require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php');
+ require_once(SMARTY_PLUGINS_DIR . 'function.html_options.php');
+ //$smarty->loadPlugin('Smarty_shared_escape_special_chars');
+ //$smarty->loadPlugin('Smarty_shared_make_timestamp');
+ //$smarty->loadPlugin('Smarty_function_html_options');
/* Default values. */
$prefix = "Date_";
diff --git a/libs/plugins/function.html_select_time.php b/libs/plugins/function.html_select_time.php
index 3710c598..097df93d 100644
--- a/libs/plugins/function.html_select_time.php
+++ b/libs/plugins/function.html_select_time.php
@@ -25,8 +25,10 @@
*/
function smarty_function_html_select_time($params, $smarty, $template)
{
- $smarty->loadPlugin('Smarty_shared_make_timestamp');
- $smarty->loadPlugin('Smarty_function_html_options');
+ require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php');
+ require_once(SMARTY_PLUGINS_DIR . 'function.html_options.php');
+ //$smarty->loadPlugin('Smarty_shared_make_timestamp');
+ //$smarty->loadPlugin('Smarty_function_html_options');
/* Default values. */
$prefix = "Time_";
diff --git a/libs/plugins/modifier.date_format.php b/libs/plugins/modifier.date_format.php
index 02eb703a..51ed2fc6 100644
--- a/libs/plugins/modifier.date_format.php
+++ b/libs/plugins/modifier.date_format.php
@@ -1,56 +1,57 @@
- * Name: date_format
- * Purpose: format datestamps via strftime
- * Input:
- * - string: input date string
- * - format: strftime format for output
- * - default_date: default date if $string is empty
- * @link http://smarty.php.net/manual/en/language.modifier.date.format.php
- * date_format (Smarty online manual)
- * @author Monte Ohrt
- * @param string
- * @param string
- * @param string
- * @return string|void
- * @uses smarty_make_timestamp()
- */
+* Smarty date_format modifier plugin
+*
+* Type: modifier
+* Name: date_format
+* Purpose: format datestamps via strftime
+* Input:
+* - string: input date string
+* - format: strftime format for output
+* - default_date: default date if $string is empty
+*
+* @link http://smarty.php.net/manual/en/language.modifier.date.format.php date_format (Smarty online manual)
+* @author Monte Ohrt
+* @param string $
+* @param string $
+* @param string $
+* @return string |void
+* @uses smarty_make_timestamp()
+*/
function smarty_modifier_date_format($string, $format = '%b %e, %Y', $default_date = '')
{
-/**
- * Include the {@link shared.make_timestamp.php} plugin
- */
- $smarty = Smarty::instance();
- $smarty->loadPlugin('Smarty_shared_make_timestamp');
+ /**
+ * Include the {@link shared.make_timestamp.php} plugin
+ */
+ require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php');
if ($string != '') {
$timestamp = smarty_make_timestamp($string);
} elseif ($default_date != '') {
$timestamp = smarty_make_timestamp($default_date);
} else {
return;
- }
+ }
if (DS == '\\') {
- $_win_from = array('%D', '%h', '%n', '%r', '%R', '%t', '%T');
- $_win_to = array('%m/%d/%y', '%b', "\n", '%I:%M:%S %p', '%H:%M', "\t", '%H:%M:%S');
+ $_win_from = array('%D', '%h', '%n', '%r', '%R', '%t', '%T');
+ $_win_to = array('%m/%d/%y', '%b', "\n", '%I:%M:%S %p', '%H:%M', "\t", '%H:%M:%S');
if (strpos($format, '%e') !== false) {
$_win_from[] = '%e';
- $_win_to[] = sprintf('%\' 2d', date('j', $timestamp));
- }
+ $_win_to[] = sprintf('%\' 2d', date('j', $timestamp));
+ }
if (strpos($format, '%l') !== false) {
$_win_from[] = '%l';
- $_win_to[] = sprintf('%\' 2d', date('h', $timestamp));
- }
+ $_win_to[] = sprintf('%\' 2d', date('h', $timestamp));
+ }
$format = str_replace($_win_from, $_win_to, $format);
- }
+ }
return strftime($format, $timestamp);
-}
+}
+
?>
diff --git a/libs/plugins/modifier.escape.php b/libs/plugins/modifier.escape.php
index a8ef9987..0e58d8b2 100644
--- a/libs/plugins/modifier.escape.php
+++ b/libs/plugins/modifier.escape.php
@@ -21,12 +21,8 @@
* @param string $char_set character set
* @return string escaped input string
*/
-function smarty_modifier_escape($string, $esc_type = 'html', $char_set = null)
+function smarty_modifier_escape($string, $esc_type = 'html', $char_set = SMARTY_RESOURCE_CHAR_SET)
{
- if ($char_set === null) {
- $smarty = Smarty::instance();
- $char_set = $smarty->resource_char_set;
- }
switch ($esc_type) {
case 'html':
return htmlspecialchars($string, ENT_QUOTES, $char_set);
diff --git a/libs/plugins/modifier.truncate.php b/libs/plugins/modifier.truncate.php
index f8a6c1bb..efb867ef 100644
--- a/libs/plugins/modifier.truncate.php
+++ b/libs/plugins/modifier.truncate.php
@@ -30,8 +30,7 @@ function smarty_modifier_truncate($string, $length = 80, $etc = '...',
if ($length == 0)
return '';
- $smarty = Smarty::instance();
- if ($smarty->has_mb) {
+ if (is_callable('mb_strlen')) {
if (mb_strlen($string) > $length) {
$length -= min($length, mb_strlen($etc));
if (!$break_words && !$middle) {
diff --git a/libs/sysplugins/internal.cacher_inlinecode.php b/libs/sysplugins/internal.cacher_inlinecode.php
index 71f87c00..583d9ffb 100644
--- a/libs/sysplugins/internal.cacher_inlinecode.php
+++ b/libs/sysplugins/internal.cacher_inlinecode.php
@@ -88,31 +88,6 @@ class Smarty_Internal_Cacher_InlineCode {
return $template_code;
}
- /**
- * Retrieve cached output
- *
- * Calls the cache resource according to the caching type
- *
- * @param object $_template intance of template object
- * @return string content from cache
- */
- public function getCachedContents ($_template)
- {
- return $this->smarty->cache_resource_objects[$_template->caching_type]->getCachedContents($_template);
- }
-
- /**
- * Store cached output
- *
- * Calls the cache resource according to the caching type
- *
- * @param object $_template intance of template object
- * @return boolean status
- */
- public function writeCachedContent ($_template)
- {
- return $this->smarty->cache_resource_objects[$_template->caching_type]->writeCachedContent($_template);
- }
}
?>
diff --git a/libs/sysplugins/internal.cacheresource_file.php b/libs/sysplugins/internal.cacheresource_file.php
index b54968a9..ed5f17e5 100644
--- a/libs/sysplugins/internal.cacheresource_file.php
+++ b/libs/sysplugins/internal.cacheresource_file.php
@@ -49,7 +49,10 @@ class Smarty_Internal_CacheResource_File {
*/
public function getCachedContents($template)
{
- return file_get_contents($template->getCachedFilepath());
+ ob_start();
+ $_smarty_tpl = $template;
+ include $template->getCachedFilepath();
+ return ob_get_clean();
}
/**
@@ -58,15 +61,15 @@ class Smarty_Internal_CacheResource_File {
* @param object $template current template
* @return boolean status
*/
- public function writeCachedContent($template)
+ public function writeCachedContent($template, $content)
{
if (!$template->isEvaluated()) {
if (!is_object($this->smarty->write_file_object)) {
- require_once(SMARTY_SYSPLUGINS_DIR . 'internal.write_file.php');
- //$this->smarty->loadPlugin("Smarty_Internal_Write_File");
+ require_once(SMARTY_SYSPLUGINS_DIR . 'internal.write_file.php');
+ // $this->smarty->loadPlugin("Smarty_Internal_Write_File");
$this->smarty->write_file_object = new Smarty_Internal_Write_File;
}
- return $this->smarty->write_file_object->writeFile($template->getCachedFilepath(), $template->rendered_content);
+ return $this->smarty->write_file_object->writeFile($template->getCachedFilepath(), $content);
} else {
return false;
}
@@ -100,7 +103,7 @@ class Smarty_Internal_CacheResource_File {
$_resource_part = null;
}
$_dir = $this->smarty->cache_dir;
- if (strpos('/\\',substr($_dir, -1)) === false) {
+ if (strpos('/\\', substr($_dir, -1)) === false) {
$_dir .= DS;
}
if ($this->smarty->use_sub_dirs && isset($cache_id)) {
@@ -125,8 +128,8 @@ class Smarty_Internal_CacheResource_File {
$_parts_compile_pos = 0;
}
if ((substr_compare((string)$_file, $_dir, 0, strlen($_dir)) == 0 &&
- (!isset($resource_name) || $_parts[$_parts_count-1] == $_resource_part) &&
- (!isset($compile_id) || $_parts[$_parts_compile_pos] == $compile_id)) ||
+ (!isset($resource_name) || $_parts[$_parts_count-1] == $_resource_part) &&
+ (!isset($compile_id) || $_parts[$_parts_compile_pos] == $compile_id)) ||
(isset($resource_name) && (string)$_file == $_dir . $_resource_part)) {
if (isset($exp_time)) {
if (time() - @filemtime($_file) >= $exp_time) {
@@ -150,8 +153,8 @@ class Smarty_Internal_CacheResource_File {
*/
private function buildCachedFilepath ($resource_name, $cache_id, $compile_id)
{
- $_files = explode('|',$resource_name);
- $_filepath = (string)abs(crc32($resource_name));
+ $_files = explode('|', $resource_name);
+ $_filepath = (string)abs(crc32($resource_name));
// if use_sub_dirs, break file into directories
if ($this->smarty->use_sub_dirs) {
$_filepath = substr($_filepath, 0, 2) . DS
@@ -171,7 +174,7 @@ class Smarty_Internal_CacheResource_File {
$_compile_id = '';
}
$_cache_dir = $this->smarty->cache_dir;
- if (strpos('/\\',substr($_cache_dir, -1)) === false) {
+ if (strpos('/\\', substr($_cache_dir, -1)) === false) {
$_cache_dir .= DS;
}
diff --git a/libs/sysplugins/internal.compile_block_plugin.php b/libs/sysplugins/internal.compile_block_plugin.php
index 6aaf2efe..0c17e08e 100644
--- a/libs/sysplugins/internal.compile_block_plugin.php
+++ b/libs/sysplugins/internal.compile_block_plugin.php
@@ -22,33 +22,37 @@ class Smarty_Internal_Compile_Block_Plugin extends Smarty_Internal_CompileBase {
*/
public function compile($args, $tag, $compiler)
{
- $this->compiler = $compiler;
+ $this->compiler = $compiler;
if (strlen($tag) < 6 || substr_compare($tag, 'close', -5, 5) != 0) {
// opening tag of block plugin
$this->required_attributes = array();
$this->optional_attributes = array('_any');
-
// check and get attributes
- $_attr = $this->_get_attributes($args);
-
+ $_attr = $this->_get_attributes($args);
// convert attributes into parameter array string
$_paramsArray = array();
foreach ($_attr as $_key => $_value) {
$_paramsArray[] = "'$_key'=>$_value";
}
- $_params = 'array(' . implode(",", $_paramsArray) . ')';
-
- $this->_open_tag($tag, $_params);
+ $_params = 'array(' . implode(",", $_paramsArray) . ')';
+ $this->_open_tag($tag, array($_params, $this->compiler->nocache));
+ // not cachable?
+ if (isset($this->compiler->smarty->registered_plugins[$tag]) && !$this->compiler->smarty->registered_plugins[$tag][2]) {
+ $this->compiler->nocache = true;
+ }
// compile code
- $output = 'smarty->plugin_handler->loadSmartyPlugin(\''.$tag.'\', \'block\'); $_smarty_tpl->smarty->registered_plugins[\'' . $tag . '\'][1](' . $_params . ', null, $_smarty_tpl->smarty, $_block_repeat, $_smarty_tpl);while ($_block_repeat) { ob_start();?>';
+ $output = 'smarty->plugin_handler->' . $tag . '(array(' . $_params . ', null, $_smarty_tpl->smarty, &$_block_repeat, $_smarty_tpl),\'block\');while ($_block_repeat) { ob_start();?>';
} else {
+ if ($this->compiler->nocache) {
+ $this->compiler->tag_nocache = true;
+ }
// closing tag of block plugin
- $_params = $this->_close_tag(substr($tag,0,-5));
+ list($_params, $this->compiler->nocache) = $this->_close_tag(substr($tag, 0, -5));
// This tag does create output
- $this->compiler->has_output = true;
+ $this->compiler->has_output = true;
// compile code
- $output = 'smarty->registered_plugins[\'' . substr($tag,0,-5) . '\'][1](' . $_params . ', $_block_content, $_smarty_tpl->smarty, $_block_repeat, $_smarty_tpl); }?>';
+ $output = 'smarty->plugin_handler->' . substr($tag, 0, -5) . '(array(' . $_params . ', $_block_content, $_smarty_tpl->smarty, &$_block_repeat, $_smarty_tpl),\'block\'); }?>';
}
return $output;
}
diff --git a/libs/sysplugins/internal.compile_blockclose.php b/libs/sysplugins/internal.compile_blockclose.php
index b4a768df..7e96123b 100644
--- a/libs/sysplugins/internal.compile_blockclose.php
+++ b/libs/sysplugins/internal.compile_blockclose.php
@@ -35,7 +35,9 @@ class Smarty_Internal_Compile_BlockClose extends Smarty_Internal_CompileBase {
}
$_name = trim($saved_data[0]['name'], "\"'");
if (isset($compiler->template->block_data[$_name])) {
- if ($compiler->template->block_data[$_name]['mode'] == 'prepend') {
+ if (strpos($compiler->template->block_data[$_name]['compiled'], '%%%%SMARTY_PARENT%%%%') !== false) {
+ $_output = str_replace('%%%%SMARTY_PARENT%%%%', $_compiled_content, $compiler->template->block_data[$_name]['compiled']);
+ } elseif ($compiler->template->block_data[$_name]['mode'] == 'prepend') {
$_output = $compiler->template->block_data[$_name]['compiled'] . $compiler->template->extracted_compiled_code;
} elseif ($compiler->template->block_data[$_name]['mode'] == 'append') {
$_output = $compiler->template->extracted_compiled_code . $compiler->template->block_data[$_name]['compiled'];
diff --git a/libs/sysplugins/internal.compile_captureclose.php b/libs/sysplugins/internal.compile_captureclose.php
index 573d2063..162f752e 100644
--- a/libs/sysplugins/internal.compile_captureclose.php
+++ b/libs/sysplugins/internal.compile_captureclose.php
@@ -30,8 +30,7 @@ class Smarty_Internal_Compile_CaptureClose extends Smarty_Internal_CompileBase {
if (isset($saved_attr[1])) {
$_output .= " \$_smarty_tpl->assign($saved_attr[1], ob_get_contents());";
}
- $_output .= " \$_smarty_tpl->smarty->_smarty_vars['capture'][$saved_attr[0]]=ob_get_contents();";
- $_output .= " ob_clean(); ?>\n";
+ $_output .= " \$_smarty_tpl->smarty->_smarty_vars['capture'][$saved_attr[0]]=ob_get_clean(); ?>\n";
return $_output;
}
}
diff --git a/libs/sysplugins/internal.compile_debug.php b/libs/sysplugins/internal.compile_debug.php
index c7a1071d..ebf50362 100644
--- a/libs/sysplugins/internal.compile_debug.php
+++ b/libs/sysplugins/internal.compile_debug.php
@@ -26,7 +26,7 @@ class Smarty_Internal_Compile_Debug extends Smarty_Internal_CompileBase {
$_attr = $this->_get_attributes($args);
// display debug template
- $_output = "\$_smarty_tpl->smarty->loadPlugin('Smarty_Internal_Debug'); Smarty_Internal_Debug::display_debug();";
+ $_output = "\$_smarty_tpl->smarty->loadPlugin('Smarty_Internal_Debug'); Smarty_Internal_Debug::display_debug(\$_smarty_tpl->smarty);";
return "";
}
}
diff --git a/libs/sysplugins/internal.compile_extend.php b/libs/sysplugins/internal.compile_extend.php
index a06c8294..cdd572f2 100644
--- a/libs/sysplugins/internal.compile_extend.php
+++ b/libs/sysplugins/internal.compile_extend.php
@@ -32,8 +32,7 @@ class Smarty_Internal_Compile_Extend extends Smarty_Internal_CompileBase {
// create template object
$_template = new Smarty_Template ($include_file, $this->compiler->smarty, $compiler->template);
// save file dependency
- $compiler->template->properties['file_dependency'][] = array($_template->getTemplateFilepath(), $_template->getTemplateTimestamp());
- // $_old_source = preg_replace ('/' . $this->smarty->left_delimiter . 'extend\s+(?:file=)?\s*(\S+?|(["\']).+?\2)' . $this->smarty->right_delimiter . '/i', '' , $compiler->template->template_source, 1);
+ $compiler->template->properties['file_dependency']['F'.abs(crc32($_template->getTemplateFilepath()))] = array($_template->getTemplateFilepath(), $_template->getTemplateTimestamp());
$_old_source = $compiler->template->template_source;
if (preg_match_all('/(' . $this->compiler->smarty->left_delimiter . 'block(.+?)' . $this->compiler->smarty->right_delimiter . ')/', $_old_source, $s, PREG_OFFSET_CAPTURE) !=
preg_match_all('/(' . $this->compiler->smarty->left_delimiter . '\/block(.*?)' . $this->compiler->smarty->right_delimiter . ')/', $_old_source, $c, PREG_OFFSET_CAPTURE)) {
@@ -41,8 +40,8 @@ class Smarty_Internal_Compile_Extend extends Smarty_Internal_CompileBase {
}
$block_count = count($s[0]);
for ($i = 0; $i < $block_count; $i++) {
-// $block_content = substr($_old_source, $s[0][$i][1], $c[0][$i][1] + strlen($c[0][$i][0]) - $s[0][$i][1]);
- $block_content = substr($_old_source, $s[0][$i][1] + strlen($s[0][$i][0]), $c[0][$i][1] - $s[0][$i][1] - strlen($s[0][$i][0]));
+ $block_content = str_replace($this->compiler->smarty->left_delimiter . '$smarty.parent' . $this->compiler->smarty->right_delimiter, '%%%%SMARTY_PARENT%%%%',
+ substr($_old_source, $s[0][$i][1] + strlen($s[0][$i][0]), $c[0][$i][1] - $s[0][$i][1] - strlen($s[0][$i][0])));
$this->saveBlockData($block_content, $s[0][$i][0]);
}
$compiler->template->template_source = $_template->getTemplateSource();
@@ -64,23 +63,21 @@ class Smarty_Internal_Compile_Extend extends Smarty_Internal_CompileBase {
$_name = trim($_match[3], "\"'}");
if (isset($this->compiler->template->block_data[$_name])) {
- if ($this->compiler->template->block_data[$_name]['mode'] == 'prepend') {
+ if (strpos($this->compiler->template->block_data[$_name]['compiled'], '%%%%SMARTY_PARENT%%%%') !== false) {
+ $this->compiler->template->block_data[$_name]['compiled'] =
+ str_replace('%%%%SMARTY_PARENT%%%%', $_compiled_content, $this->compiler->template->block_data[$_name]['compiled']);
+ } elseif ($this->compiler->template->block_data[$_name]['mode'] == 'prepend') {
$this->compiler->template->block_data[$_name]['compiled'] .= $_compiled_content;
- $this->compiler->template->block_data[$_name]['source'] .= $block_content;
} elseif ($this->compiler->template->block_data[$_name]['mode'] == 'append') {
$this->compiler->template->block_data[$_name]['compiled'] = $_compiled_content . $this->compiler->template->block_data[$_name]['compiled'];
- $this->compiler->template->block_data[$_name]['source'] = $block_content . $this->compiler->template->block_data[$_name]['source'];
}
} else {
$this->compiler->template->block_data[$_name]['compiled'] = $_compiled_content;
- $this->compiler->template->block_data[$_name]['source'] = $block_content;
}
if (preg_match('/(.?)(append=true)(.*)/', $block_tag, $_match) != 0) {
$this->compiler->template->block_data[$_name]['mode'] = 'append';
} elseif (preg_match('/(.?)(prepend=true)(.*)/', $block_tag, $_match) != 0) {
- $this->compiler->template->block_data[$_name]['mode'] = 'prepend';
- // }
- // }
+ $this->compiler->template->block_data[$_name]['mode'] = 'prepend';
} else {
$this->compiler->template->block_data[$_name]['mode'] = 'replace';
}
diff --git a/libs/sysplugins/internal.compile_function_plugin.php b/libs/sysplugins/internal.compile_function_plugin.php
index 870a3a95..9b51dd83 100644
--- a/libs/sysplugins/internal.compile_function_plugin.php
+++ b/libs/sysplugins/internal.compile_function_plugin.php
@@ -30,6 +30,10 @@ class Smarty_Internal_Compile_Function_Plugin extends Smarty_Internal_CompileBas
$this->optional_attributes = array('_any');
// check and get attributes
$_attr = $this->_get_attributes($args);
+ // not cachable?
+ if (isset($this->compiler->smarty->registered_plugins[$tag]) && !$this->compiler->smarty->registered_plugins[$tag][2]) {
+ $this->compiler->tag_nocache = true;
+ }
// convert attributes into parameter array string
$_paramsArray = array();
foreach ($_attr as $_key => $_value) {
diff --git a/libs/sysplugins/internal.compile_include.php b/libs/sysplugins/internal.compile_include.php
index 62202ea1..35831ff1 100644
--- a/libs/sysplugins/internal.compile_include.php
+++ b/libs/sysplugins/internal.compile_include.php
@@ -28,7 +28,18 @@ class Smarty_Internal_Compile_Include extends Smarty_Internal_CompileBase {
// check and get attributes
$_attr = $this->_get_attributes($args);
// save posible attributes
- $include_file = $_attr['file'];
+ $include_file = $_attr['file'];
+ // check if compiled code can be merged
+ if (strpos($include_file, '$_smarty_tpl') === false) {
+ $tpl = new Smarty_Template (trim($include_file, "'\""), $compiler->smarty, $compiler->template);
+ $compiled_tpl = $tpl->getCompiledTemplate() . "getTemplateFilepath() . "\" */ ?>";
+ $compiler->template->properties['file_dependency']['F' . abs(crc32($tpl->getTemplateFilepath()))] = array($tpl->getTemplateFilepath(), $tpl->getTemplateTimestamp());
+ $compiler->template->properties['file_dependency'] = array_merge($compiler->template->properties['file_dependency'], $tpl->properties['file_dependency']);
+ $has_compiled_template = true;
+ } else {
+ $has_compiled_template = false;
+ }
+
if (isset($_attr['assign'])) {
// output will be stored in a smarty variable instead of beind displayed
$_assign = $_attr['assign'];
@@ -45,11 +56,11 @@ class Smarty_Internal_Compile_Include extends Smarty_Internal_CompileBase {
}
}
// default for included templates
- if ($compiler->template->caching) {
- $_caching = SMARTY_CACHING_LIFETIME_CURRENT;
- } else {
- $_caching = SMARTY_CACHING_OFF;
- }
+ // if ($compiler->template->caching) {
+ // $_caching = SMARTY_CACHING_LIFETIME_CURRENT;
+ // } else {
+ $_caching = SMARTY_CACHING_OFF;
+ // }
/*
* if the {include} tag provides individual parameter for caching
* it will not be included into the common cache file and treated like
@@ -66,7 +77,9 @@ class Smarty_Internal_Compile_Include extends Smarty_Internal_CompileBase {
}
if (isset($_attr['caching'])) {
if ($_attr['caching'] == 'true') {
- $_caching = SMARTY_cache_lifetime_CURRENT;
+ $_caching = SMARTY_CACHING_LIFETIME_CURRENT;
+ } else {
+ $_caching = SMARTY_CACHING_OFF;
}
}
// create template object
@@ -87,13 +100,20 @@ class Smarty_Internal_Compile_Include extends Smarty_Internal_CompileBase {
// add caching parameter if required
if (isset($_cache_lifetime)) {
$_output .= "\$_template->cache_lifetime = $_cache_lifetime;";
+ $_caching = SMARTY_CACHING_LIFETIME_CURRENT;
}
$_output .= "\$_template->caching = $_caching;";
// was there an assign attribute
if (isset($_assign)) {
$_output .= "\$_smarty_tpl->assign($_assign,\$_smarty_tpl->smarty->fetch(\$_template)); ?>";
} else {
- $_output .= "\$_template->processInclude(); ?>";
+ if ($has_compiled_template) {
+ $_output .= " \$_tmp = \$_smarty_tpl; \$_smarty_tpl = \$_template;?>\n";
+ $_output .= $compiled_tpl;
+ $_output .= "";
+ } else {
+ $_output .= " echo \$_smarty_tpl->smarty->fetch(\$_template); ?>";
+ }
}
if ($_parent_scope != SMARTY_LOCAL_SCOPE) {
$_output .= "updateParentVariables($_parent_scope); ?>";
diff --git a/libs/sysplugins/internal.compile_internal_smarty_var.php b/libs/sysplugins/internal.compile_internal_smarty_var.php
index 924d43ee..af7cdc9e 100644
--- a/libs/sysplugins/internal.compile_internal_smarty_var.php
+++ b/libs/sysplugins/internal.compile_internal_smarty_var.php
@@ -82,12 +82,6 @@ class Smarty_Internal_Compile_Internal_Smarty_Var extends Smarty_Internal_Compil
case 'config':
return "\$_smarty_tpl->getConfigVariable($_index[1])";
- case 'block':
- if ($_index[1] == '\'parent\'') {
- return "'" . addcslashes($compiler->template->block_data[trim($_index[2], "'")]['source'], "'") . "'";
- } else {
- return "''";
- }
case 'ldelim':
$_ldelim = $compiler->smarty->left_delimiter;
return "'$_ldelim'";
diff --git a/libs/sysplugins/internal.compilebase.php b/libs/sysplugins/internal.compilebase.php
index f6cea7bf..d3226d38 100644
--- a/libs/sysplugins/internal.compilebase.php
+++ b/libs/sysplugins/internal.compilebase.php
@@ -20,9 +20,6 @@ interface TagCompilerInterface {
//abstract class Smarty_Internal_CompileBase implements TagCompilerInterface
abstract class Smarty_Internal_CompileBase
{
- /**
- * Get an instance of Smarty and compiler object
- */
function __construct()
{
// initialize valid attributes
diff --git a/libs/sysplugins/internal.debug.php b/libs/sysplugins/internal.debug.php
index 0c649e69..f101a0b5 100644
--- a/libs/sysplugins/internal.debug.php
+++ b/libs/sysplugins/internal.debug.php
@@ -16,9 +16,8 @@ class Smarty_Internal_Debug extends Smarty_Internal_TemplateBase {
/**
* Opens a window for the Smarty Debugging Consol and display the data
*/
- public static function display_debug()
+ public static function display_debug($smarty)
{
- $smarty = Smarty::instance();
// get template names
$i = 0;
$_template_data = array();
diff --git a/libs/sysplugins/internal.phpvariableobjects.php b/libs/sysplugins/internal.phpvariableobjects.php
index a7d9da7c..94482192 100644
--- a/libs/sysplugins/internal.phpvariableobjects.php
+++ b/libs/sysplugins/internal.phpvariableobjects.php
@@ -130,7 +130,6 @@ class PHP_Function_Handler {
public function __construct($tpl)
{
- $this->smarty = Smarty::instance();
$this->template = $tpl;
}
/**
@@ -144,7 +143,7 @@ class PHP_Function_Handler {
{
if (function_exists($name)) {
// test security
- if (!$this->template->security || empty($this->smarty->security_policy->php_functions) || in_array($name, $this->smarty->security_policy->php_functions)) {
+ if (!$this->template->security || empty($this->template->smarty->security_policy->php_functions) || in_array($name, $this->smarty->security_policy->php_functions)) {
// use PHP function if found
return call_user_func_array($name, $args);
} else {
diff --git a/libs/sysplugins/internal.resource_extend.php b/libs/sysplugins/internal.resource_extend.php
index 3ba16415..282837a0 100644
--- a/libs/sysplugins/internal.resource_extend.php
+++ b/libs/sysplugins/internal.resource_extend.php
@@ -64,7 +64,7 @@ class Smarty_Internal_Resource_Extend {
foreach ($_files as $_file) {
$_filepath = $_template->buildTemplateFilepath ($_file);
if ($_file != $_files[0]) {
- $_template->properties['file_dependency'][] = array($_filepath, filemtime($_filepath));
+ $_template->properties['file_dependency']['F'.abs(crc32($_filepath))] = array($_filepath, filemtime($_filepath));
}
// read template file
$_content = file_get_contents($_filepath);
@@ -75,7 +75,8 @@ class Smarty_Internal_Resource_Extend {
}
$block_count = count($s[0]);
for ($i = 0; $i < $block_count; $i++) {
- $block_content = substr($_content, $s[0][$i][1] + strlen($s[0][$i][0]), $c[0][$i][1] - $s[0][$i][1] - strlen($s[0][$i][0]));
+ $block_content = str_replace($this->smarty->left_delimiter . '$smarty.parent' . $this->smarty->right_delimiter, '%%%%SMARTY_PARENT%%%%',
+ substr($_content, $s[0][$i][1] + strlen($s[0][$i][0]), $c[0][$i][1] - $s[0][$i][1] - strlen($s[0][$i][0])));
$this->saveBlockData($block_content, $s[0][$i][0]);
}
} else {
@@ -98,16 +99,16 @@ class Smarty_Internal_Resource_Extend {
$_name = trim($_match[3], "\"'}");
if (isset($this->template->block_data[$_name])) {
- if ($this->template->block_data[$_name]['mode'] == 'prepend') {
+ if (strpos($this->template->block_data[$_name]['compiled'], '%%%%SMARTY_PARENT%%%%') !== false) {
+ $this->template->block_data[$_name]['compiled'] =
+ str_replace('%%%%SMARTY_PARENT%%%%', $_compiled_content, $this->template->block_data[$_name]['compiled']);
+ } elseif ($this->template->block_data[$_name]['mode'] == 'prepend') {
$this->template->block_data[$_name]['compiled'] .= $_compiled_content;
- $this->template->block_data[$_name]['source'] .= $block_content;
} elseif ($this->template->block_data[$_name]['mode'] == 'append') {
$this->template->block_data[$_name]['compiled'] = $_compiled_content . $this->template->block_data[$_name]['compiled'];
- $this->template->block_data[$_name]['source'] = $block_content . $this->template->block_data[$_name]['source'];
}
} else {
$this->template->block_data[$_name]['compiled'] = $_compiled_content;
- $this->template->block_data[$_name]['source'] = $block_content;
}
if (preg_match('/(.?)(append=true)(.*)/', $block_tag, $_match) != 0) {
$this->template->block_data[$_name]['mode'] = 'append';
diff --git a/libs/sysplugins/internal.template.php b/libs/sysplugins/internal.template.php
index f2dc95a9..718c5d4a 100644
--- a/libs/sysplugins/internal.template.php
+++ b/libs/sysplugins/internal.template.php
@@ -204,36 +204,6 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
if ($this->mustCompile) {
return true;
}
- if ($this->smarty->compile_check) {
- // read compiled template to check file dependencies
- if ($this->compiled_template !== true && file_exists($this->getCompiledFilepath())) {
- $this->compiled_template = !$this->isEvaluated() ? file_get_contents($this->getCompiledFilepath()):'';
- if (preg_match('~\<\?php /\*(.*)\*/ \?\>~', $this->compiled_template, $_matches)) {
- $this->properties = unserialize($_matches[1]);
- if (!empty($this->properties['function'])) {
- foreach ($this->properties['function'] as $_name => $_data) {
- $this->smarty->template_functions[$_name]['compiled'] = str_replace(array('_%n'), array("\n"), $_data['compiled']);
- $this->smarty->template_functions[$_name]['parameter'] = $_data['parameter'];
- }
- }
- if (!empty($this->properties['file_dependency'])) {
- foreach ($this->properties['file_dependency'] as $_file_to_check) {
- If (is_file($_file_to_check[0])) {
- $mtime = filemtime($_file_to_check[0]);
- } else {
- $this->parseResourceName($_file_to_check[0], $resource_type, $resource_name, $resource_handler);
- $mtime = $resource_handler->getTemplateTimestampTypeName($resource_type, $resource_name);
- }
- If ($mtime != $_file_to_check[1]) {
- $this->properties['file_dependency'] = array();
- $this->mustCompile = true;
- return $this->mustCompile;
- }
- }
- }
- }
- }
- }
}
return $this->mustCompile;
}
@@ -276,15 +246,8 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
if ($this->mustCompile()) {
$this->compileTemplateSource();
} else {
- $this->compiled_template = !$this->isEvaluated() && $this->usesCompiler() ? file_get_contents($this->getCompiledFilepath()) : false;
- if (preg_match('~\<\?php /\*(.*)\*/ \?\>~', $this->compiled_template, $_matches)) {
- $this->properties = unserialize($_matches[1]);
- if (!empty($this->properties['function'])) {
- foreach ($this->properties['function'] as $_name => $_data) {
- $this->smarty->template_functions[$_name]['compiled'] = str_replace(array('_%n'), array("\n"), $_data['compiled']);
- $this->smarty->template_functions[$_name]['parameter'] = $_data['parameter'];
- }
- }
+ if ($this->compiled_template === null) {
+ $this->compiled_template = !$this->isEvaluated() && $this->usesCompiler() ? file_get_contents($this->getCompiledFilepath()) : false;
}
}
}
@@ -319,9 +282,9 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
// compiling succeded
if (!$this->isEvaluated()) {
// build template property string
- $this->properties_string = 'properties) . "*/ ?>\n";
+ $this->properties_string = "decodeProperties('" . str_replace("'", '"', (serialize($this->properties))) . "'); ?>\n";
// write compiled template
- $this->smarty->write_file_object->writeFile($this->getCompiledFilepath(), $this->properties_string . $this->dir_acc_sec_string . $this->getCompiledTemplate());
+ $this->smarty->write_file_object->writeFile($this->getCompiledFilepath(), $this->dir_acc_sec_string . $this->properties_string . $this->getCompiledTemplate());
// make template and compiled file timestamp match
touch($this->getCompiledFilepath(), $this->getTemplateTimestamp());
}
@@ -369,7 +332,7 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
public function getCachedContent ()
{
return $this->rendered_content === null ?
- $this->rendered_content = ($this->isEvaluated() || !$this->caching) ? false : $this->cacher_object->getCachedContents($this) :
+ $this->rendered_content = ($this->isEvaluated() || !$this->caching) ? false : $this->smarty->cache_resource_objects[$this->caching_type]->getCachedContents($this) :
$this->rendered_content;
}
@@ -380,9 +343,8 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
{
// build file dependency string
$this->properties['cache_lifetime'] = $this->cache_lifetime;
- $this->properties_string = 'properties) . "*/ ?>\n";
- $this->rendered_content = $this->properties_string . $this->dir_acc_sec_string . $this->rendered_content;
- return ($this->isEvaluated() || !$this->caching) ? false : $this->cacher_object->writeCachedContent($this);
+ $this->properties_string = "decodeProperties('" . str_replace("'", '"', (serialize($this->properties))) . "'); ?>\n";
+ return ($this->isEvaluated() || !$this->caching) ? false : $this->smarty->cache_resource_objects[$this->caching_type]->writeCachedContent($this, $this->dir_acc_sec_string . $this->properties_string . $this->rendered_content);
}
/**
@@ -400,30 +362,27 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
if ($this->getCachedTimestamp() === false) {
return $this->isCached;
}
- if (/*$this->getTemplateTimestamp() <= $this->getCachedTimestamp() && */
- ($this->caching == SMARTY_CACHING_LIVETIME_SAVED || ($this->caching == SMARTY_CACHING_LIFETIME_CURRENT && (time() <= ($this->getCachedTimestamp() + $this->cache_lifetime) || $this->cache_lifetime < 0)))) {
- $this->rendered_content = $this->cacher_object->getCachedContents($this);
- $_found = preg_match('~\<\?php /\*(.*)\*/ \?\>~', $this->rendered_content, $_matches);
- if ($_found) {
- $this->properties = unserialize($_matches[1]);
- if ($this->caching == SMARTY_CACHING_LIVETIME_SAVED && (time() > ($this->getCachedTimestamp() + $this->properties['cache_lifetime']) || $this->properties['cache_lifetime'] < 0)) {
- $this->rendered_content = null;
- return $this->isCached;
- }
- if (!empty($this->properties['file_dependency']) && $this->smarty->compile_check) {
- foreach ($this->properties['file_dependency'] as $_file_to_check) {
- If (is_file($_file_to_check[0])) {
- $mtime = filemtime($_file_to_check[0]);
- } else {
- $this->parseResourceName($_file_to_check[0], $resource_type, $resource_name, $resource_handler);
- $mtime = $resource_handler->getTemplateTimestampTypeName($resource_type, $resource_name);
- }
- // If ($mtime > $this->getCachedTimestamp()) {
- If ($mtime > $_file_to_check[1]) {
- $this->rendered_content = null;
- $this->properties['file_dependency'] = array();
- 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)))) {
+ $_start_time = $this->_get_time();
+ $this->rendered_content = $this->smarty->cache_resource_objects[$this->caching_type]->getCachedContents($this);
+ $this->cache_time += $this->_get_time() - $_start_time;
+ if ($this->caching == SMARTY_CACHING_LIVETIME_SAVED && (time() > ($this->getCachedTimestamp() + $this->properties['cache_lifetime']) || $this->properties['cache_lifetime'] < 0)) {
+ $this->rendered_content = null;
+ return $this->isCached;
+ }
+ if (!empty($this->properties['file_dependency']) && $this->smarty->compile_check) {
+ foreach ($this->properties['file_dependency'] as $_file_to_check) {
+ If (is_file($_file_to_check[0])) {
+ $mtime = filemtime($_file_to_check[0]);
+ } else {
+ $this->parseResourceName($_file_to_check[0], $resource_type, $resource_name, $resource_handler);
+ $mtime = $resource_handler->getTemplateTimestampTypeName($resource_type, $resource_name);
+ }
+ // If ($mtime > $this->getCachedTimestamp()) {
+ If ($mtime > $_file_to_check[1]) {
+ $this->rendered_content = null;
+ $this->properties['file_dependency'] = array();
+ return $this->isCached;
}
}
}
@@ -453,7 +412,32 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
if ($this->isEvaluated()) {
eval("?>" . $this->compiled_template);
} else {
- include($this->getCompiledFilepath ());
+ include($this->getCompiledFilepath ());
+ // check file dependencies at compiled code
+ if ($this->smarty->compile_check) {
+ if (!empty($this->properties['file_dependency'])) {
+ $this->mustCompile = false;
+ foreach ($this->properties['file_dependency'] as $_file_to_check) {
+ If (is_file($_file_to_check[0])) {
+ $mtime = filemtime($_file_to_check[0]);
+ } else {
+ $this->parseResourceName($_file_to_check[0], $resource_type, $resource_name, $resource_handler);
+ $mtime = $resource_handler->getTemplateTimestampTypeName($resource_type, $resource_name);
+ }
+ If ($mtime != $_file_to_check[1]) {
+ $this->properties['file_dependency'] = array();
+ $this->mustCompile = true;
+ }
+ }
+ if ($this->mustCompile) {
+ // recompile and render again
+ ob_get_clean();
+ $this->compileTemplateSource();
+ ob_start();
+ include($this->getCompiledFilepath ());
+ }
+ }
+ }
}
} else {
// PHP template
@@ -480,31 +464,26 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
$this->render_time += $this->_get_time() - $_start_time;
$this->rendered_content = ob_get_clean();
if (!$this->isEvaluated) {
- $this->properties['file_dependency'][] = array($this->getTemplateFilepath(), $this->getTemplateTimestamp());
+ $this->properties['file_dependency']['F'.abs(crc32($this->getTemplateFilepath()))] = array($this->getTemplateFilepath(), $this->getTemplateTimestamp());
}
if ($this->parent instanceof Smarty_Template or $this->parent instanceof Smarty_Internal_Template) {
$this->parent->properties['file_dependency'] = array_merge($this->parent->properties['file_dependency'], $this->properties['file_dependency']);
}
// write to cache when nessecary
if (!$this->isEvaluated() && $this->caching) {
- $this->properties['file_dependency'] = array_unique($this->properties['file_dependency']);
+ //$this->properties['file_dependency'] = array_unique($this->properties['file_dependency']);
// write rendered template
$this->writeCachedContent($this);
+ if ($this->usesCompiler()) {
+ // cache file may contain nocache code
+ ob_start();
+ $_smarty_tpl = $this;
+ include $this->getCachedFilepath();
+ $this->rendered_content = ob_get_clean();
+ }
}
}
- /* Include subtemplates ({include} tag
- */
- function processInclude()
- {
- $_smarty_tpl = $this;
- $_start_time = $this->_get_time();
- eval("?>" . $this->getCompiledTemplate());
- if ($this->resource_type == 'file') {
- $this->parent->properties['file_dependency'][] = array($this->getTemplateFilepath(), $this->getTemplateTimestamp());
- }
- $this->render_time += $this->_get_time() - $_start_time;
- }
/**
* Returns the rendered HTML output
*
@@ -526,21 +505,9 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
// render template (not loaded and not in cache)
$this->renderTemplate();
}
- if ($this->caching && $this->usesCompiler()) {
- // cached output could contain nocache code
- $_start_time = $this->_get_time();
- $_smarty_tpl = $this;
- ob_start();
- eval("?>" . $this->rendered_content);
- $this->updateParentVariables();
- $this->cache_time += $this->_get_time() - $_start_time;
- return (isset($this->smarty->autoload_filters['output']) || isset($this->smarty->registered_filters['output']))?
- $this->smarty->filter_handler->execute('output', ob_get_clean()) : ob_get_clean();
- } else {
- $this->updateParentVariables();
- return (isset($this->smarty->autoload_filters['output']) || isset($this->smarty->registered_filters['output']))?
- $this->smarty->filter_handler->execute('output', $this->rendered_content) : $this->rendered_content;
- }
+ $this->updateParentVariables();
+ return (isset($this->smarty->autoload_filters['output']) || isset($this->smarty->registered_filters['output']))?
+ $this->smarty->filter_handler->execute('output', $this->rendered_content) : $this->rendered_content;
}
/**
@@ -647,6 +614,27 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
return false;
}
+ /**
+ * Decode saved properties from compiled template and cache files
+ */
+ public function decodeProperties ($properties)
+ {
+ $prop = unserialize($properties);
+ if (isset($prop['cache_lifetime'])) {
+ $this->properties['cache_lifetime'] = $prop['cache_lifetime'];
+ }
+ if (isset($prop['file_dependency'])) {
+ $this->properties['file_dependency'] = array_merge($this->properties['file_dependency'], $prop['file_dependency']);
+ //$this->properties['file_dependency'] = array_unique($this->properties['file_dependency']);
+ }
+ if (!empty($prop['function'])) {
+ foreach ($prop['function'] as $_name => $_data) {
+ $this->smarty->template_functions[$_name]['compiled'] = str_replace('_%n', "\n", $_data['compiled']);
+ $this->smarty->template_functions[$_name]['parameter'] = $_data['parameter'];
+ }
+ }
+ }
+
/**
* Update Smarty variables in parent variable object
*/
@@ -661,7 +649,7 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
} else {
// create variable in parent
$this->parent->tpl_vars[$_key] = clone $_value;
- $this->smarty->tpl_vars[$_key]->scope = SMARTY_LOCAL_SCOPE;
+ $this->parent->tpl_vars[$_key]->scope = SMARTY_LOCAL_SCOPE;
}
}
if ($scope == SMARTY_ROOT_SCOPE || $this->tpl_vars[$_key]->scope == SMARTY_ROOT_SCOPE) {
diff --git a/libs/sysplugins/internal.templatebase.php b/libs/sysplugins/internal.templatebase.php
index c6238d0a..da89787c 100644
--- a/libs/sysplugins/internal.templatebase.php
+++ b/libs/sysplugins/internal.templatebase.php
@@ -50,10 +50,9 @@ class Smarty_Internal_TemplateBase {
*/
public function assign_global($varname, $value = null, $nocache = false)
{
- $_ptr = Smarty::instance();
if ($varname != '') {
$this->check_tplvar($varname);
- $_ptr->global_tpl_vars[$varname] = new Smarty_variable($value, $nocache);
+ $this->smarty->global_tpl_vars[$varname] = new Smarty_variable($value, $nocache);
}
}
/**
@@ -225,10 +224,9 @@ class Smarty_Internal_TemplateBase {
$_ptr = null;
}
}
- $_ptr = Smarty::instance();
- if (isset($_ptr->global_tpl_vars[$variable])) {
+ if (isset($this->smarty->global_tpl_vars[$variable])) {
// found it, return it
- return $_ptr->global_tpl_vars[$variable];
+ return $this->smarty->global_tpl_vars[$variable];
}
if (Smarty::$error_unassigned && $error_enable) {
throw new Exception('Undefined Smarty variable "' . $variable . '"');
@@ -260,29 +258,10 @@ class Smarty_Internal_TemplateBase {
}
}
/**
- * gets a global variable
- *
- * @param string $variable the name of the global variable
- * @return mixed the value of the global variable
- */
- public function getGlobalVariable($variable)
- {
- $_ptr = Smarty::instance();
- if (isset($_ptr->global_tpl_vars[$variable])) {
- // found it, return it
- return $_ptr->global_tpl_vars[$variable];
- }
- if (Smarty::$error_unassigned) {
- throw new Exception('Undefined global variable "' . $variable . '"');
- } else {
- return '';
- }
- }
- /**
* gets a stream variable
*
* @param string $variable the stream of the variable
- * @return mixed the value of the global variable
+ * @return mixed the value of the stream variable
*/
public function getStreamVariable($variable)
{
@@ -296,7 +275,7 @@ class Smarty_Internal_TemplateBase {
}
if (Smarty::$error_unassigned) {
- throw new Exception('Undefined global variable "' . $variable . '"');
+ throw new Exception('Undefined stream variable "' . $variable . '"');
} else {
return '';
}
@@ -311,7 +290,7 @@ class Smarty_Internal_TemplateBase {
* @param mixed $compile_id compile id to be used with this template
* @returns object template object
*/
- public function createTemplate($template, $parent = null, $cache_id = null, $compile_id = null)
+ public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null)
{
if (!is_object($template)) {
// we got a template resource
diff --git a/libs/sysplugins/internal.templatecompilerbase.php b/libs/sysplugins/internal.templatecompilerbase.php
index bc1fb8dd..2cb2e04c 100644
--- a/libs/sysplugins/internal.templatecompilerbase.php
+++ b/libs/sysplugins/internal.templatecompilerbase.php
@@ -92,8 +92,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
@@ -146,13 +146,11 @@ class Smarty_Internal_TemplateCompilerBase {
// check if tag is registered or is Smarty plugin
$this->smarty->plugin_handler->loadSmartyPlugin($tag, $this->smarty->plugin_search_order);
if (isset($this->smarty->registered_plugins[$tag])) {
- // check no cache
- if (!$this->smarty->registered_plugins[$tag][2]) {
- $this->tag_nocache = true;
- }
// if compiler function plugin call it now
if ($this->smarty->registered_plugins[$tag][0] == 'compiler') {
- $this->tag_nocache = false;
+ 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));
}
// compile function or block plugin
@@ -174,10 +172,6 @@ class Smarty_Internal_TemplateCompilerBase {
}
// plugin ?
if (isset($this->smarty->registered_plugins[$base_tag]) && $this->smarty->registered_plugins[$base_tag][0] == 'block') {
- // check no cache
- if (!$this->smarty->registered_plugins[$base_tag][2]) {
- $this->tag_nocache = true;
- }
return $this->block_plugin($args, $tag, $this);
}
}
diff --git a/libs/sysplugins/internal.templatelexer.php b/libs/sysplugins/internal.templatelexer.php
index 0909436b..8c92f290 100644
--- a/libs/sysplugins/internal.templatelexer.php
+++ b/libs/sysplugins/internal.templatelexer.php
@@ -31,6 +31,7 @@ class Smarty_Internal_Templatelexer
'NOT' => '(!,NOT)',
'LAND' => '(&&,AND)',
'LOR' => '(||,OR)',
+ 'LXOR' => 'XOR',
'OPENP' => '(',
'CLOSEP' => ')',
'OPENB' => '[',
@@ -156,8 +157,7 @@ class Smarty_Internal_Templatelexer
41 => 1,
43 => 1,
45 => 1,
- 47 => 0,
- 48 => 0,
+ 47 => 1,
49 => 0,
50 => 0,
51 => 0,
@@ -174,11 +174,11 @@ class Smarty_Internal_Templatelexer
62 => 0,
63 => 0,
64 => 0,
- 65 => 1,
+ 65 => 0,
+ 66 => 0,
67 => 1,
69 => 1,
- 71 => 0,
- 72 => 0,
+ 71 => 1,
73 => 0,
74 => 0,
75 => 0,
@@ -191,12 +191,15 @@ class Smarty_Internal_Templatelexer
82 => 0,
83 => 0,
84 => 0,
- 85 => 0,
+ 85 => 1,
+ 87 => 0,
+ 88 => 0,
+ 89 => 0,
);
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^(\\s*<\\?xml)|^(\\s*<\\?php.*\\?>)|^(\\s*<\\?=)|^(\\s*\\?>)|^(\\s*".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)/";
+ $yy_global_pattern = "/^(\\s*<\\?xml)|^(\\s*<\\?php.*\\?>)|^(\\s*<\\?=)|^(\\s*\\?>)|^(\\s*".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)/";
do {
if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
@@ -236,77 +239,79 @@ class Smarty_Internal_Templatelexer
// skip this token
continue;
} else { $yy_yymore_patterns = array(
- 1 => array(0, "^(\\s*<\\?php.*\\?>)|^(\\s*<\\?=)|^(\\s*\\?>)|^(\\s*".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 2 => array(0, "^(\\s*<\\?=)|^(\\s*\\?>)|^(\\s*".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 3 => array(0, "^(\\s*\\?>)|^(\\s*".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 4 => array(0, "^(\\s*".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 5 => array(0, "^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 6 => 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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 7 => 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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 8 => 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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 9 => 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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 11 => 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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 12 => 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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 13 => 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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 14 => 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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 15 => 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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 16 => 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+)|^(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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 17 => array(1, "^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 18 => array(1, "^(\\s*".$this->ldel."\/)|^(\\s*".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 19 => array(1, "^(\\s*".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 20 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 21 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 22 => array(1, "^(\\s+(AS|as)\\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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 23 => 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+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*)|^(\\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+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*)|^(\\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+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*)|^(\\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+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*)|^(\\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+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*)|^(\\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+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*)|^(\\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+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*)|^(\\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+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*)|^(\\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+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*)|^(\\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+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*)|^(\\w+)|^([\s]+)|^(.)"),
- 39 => array(8, "^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 41 => array(9, "^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 43 => array(10, "^(\\s*\\|\\|\\s*|\\s*(OR|or)\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 45 => array(11, "^(\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 47 => array(11, "^(\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 48 => array(11, "^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 49 => array(11, "^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 50 => array(11, "^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 51 => array(11, "^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 52 => array(11, "^(\\s+is\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 53 => array(11, "^(\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 54 => array(11, "^(\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 55 => array(11, "^(\\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*)|^(\\w+)|^([\s]+)|^(.)"),
- 56 => array(11, "^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 57 => array(11, "^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 58 => array(11, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 59 => array(11, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 60 => array(11, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 61 => array(11, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 62 => array(11, "^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 63 => array(11, "^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 64 => array(11, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 65 => array(12, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 67 => array(13, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 69 => array(14, "^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 71 => array(14, "^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 72 => array(14, "^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 73 => array(14, "^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 74 => array(14, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 75 => array(14, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 76 => array(14, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 77 => array(14, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 78 => array(14, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 79 => array(14, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 80 => array(14, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 81 => array(14, "^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"),
- 82 => array(14, "^(\\w+)|^([\s]+)|^(.)"),
- 83 => array(14, "^([\s]+)|^(.)"),
- 84 => array(14, "^(.)"),
- 85 => array(14, ""),
+ 1 => array(0, "^(\\s*<\\?php.*\\?>)|^(\\s*<\\?=)|^(\\s*\\?>)|^(\\s*".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 2 => array(0, "^(\\s*<\\?=)|^(\\s*\\?>)|^(\\s*".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 3 => array(0, "^(\\s*\\?>)|^(\\s*".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 4 => array(0, "^(\\s*".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 5 => array(0, "^(".$this->ldel."\/php".$this->rdel.")|^(\\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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 6 => 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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 7 => 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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 8 => 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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 9 => 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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 11 => 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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 12 => 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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 13 => 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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 14 => 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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 15 => 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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 16 => 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+)|^(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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 17 => array(1, "^(\\s{1,}".$this->rdel.")|^(\\s*".$this->ldel."\/)|^(\\s*".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 18 => array(1, "^(\\s*".$this->ldel."\/)|^(\\s*".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 19 => array(1, "^(\\s*".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 20 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 21 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 22 => array(1, "^(\\s+(AS|as)\\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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 23 => 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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 65 => array(12, "^(\\d+)|^((\\+\\+|--)\\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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 67 => array(13, "^(\\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*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 71 => array(15, "^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 73 => array(15, "^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 74 => array(15, "^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 75 => array(15, "^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 76 => array(15, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 77 => array(15, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 78 => array(15, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 79 => array(15, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 80 => array(15, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 81 => array(15, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 82 => array(15, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 83 => array(15, "^(\\s*&\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 84 => array(15, "^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"),
+ 85 => array(16, "^(\\w+)|^(\\s+)|^(.)"),
+ 87 => array(16, "^(\\s+)|^(.)"),
+ 88 => array(16, "^(.)"),
+ 89 => array(16, ""),
);
// yymore is needed
@@ -553,181 +558,191 @@ class Smarty_Internal_Templatelexer
function yy_r1_47($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ISODDBY;
- }
- function yy_r1_48($yy_subpatterns)
- {
-
- $this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY;
+ $this->token = Smarty_Internal_Templateparser::TP_LXOR;
}
function yy_r1_49($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ISODD;
+ $this->token = Smarty_Internal_Templateparser::TP_ISODDBY;
}
function yy_r1_50($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ISNOTODD;
+ $this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY;
}
function yy_r1_51($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ISEVENBY;
+ $this->token = Smarty_Internal_Templateparser::TP_ISODD;
}
function yy_r1_52($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY;
+ $this->token = Smarty_Internal_Templateparser::TP_ISNOTODD;
}
function yy_r1_53($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ISEVEN;
+ $this->token = Smarty_Internal_Templateparser::TP_ISEVENBY;
}
function yy_r1_54($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN;
+ $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY;
}
function yy_r1_55($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ISDIVBY;
+ $this->token = Smarty_Internal_Templateparser::TP_ISEVEN;
}
function yy_r1_56($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY;
+ $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN;
}
function yy_r1_57($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_OPENP;
+ $this->token = Smarty_Internal_Templateparser::TP_ISDIVBY;
}
function yy_r1_58($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_CLOSEP;
+ $this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY;
}
function yy_r1_59($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_OPENB;
+ $this->token = Smarty_Internal_Templateparser::TP_OPENP;
}
function yy_r1_60($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_CLOSEB;
+ $this->token = Smarty_Internal_Templateparser::TP_CLOSEP;
}
function yy_r1_61($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_PTR;
+ $this->token = Smarty_Internal_Templateparser::TP_OPENB;
}
function yy_r1_62($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_APTR;
+ $this->token = Smarty_Internal_Templateparser::TP_CLOSEB;
}
function yy_r1_63($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_EQUAL;
+ $this->token = Smarty_Internal_Templateparser::TP_PTR;
}
function yy_r1_64($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_INTEGER;
+ $this->token = Smarty_Internal_Templateparser::TP_APTR;
}
function yy_r1_65($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_INCDEC;
+ $this->token = Smarty_Internal_Templateparser::TP_EQUAL;
+ }
+ function yy_r1_66($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_INTEGER;
}
function yy_r1_67($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_UNIMATH;
+ $this->token = Smarty_Internal_Templateparser::TP_INCDEC;
}
function yy_r1_69($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_MATH;
+ $this->token = Smarty_Internal_Templateparser::TP_UNIMATH;
}
function yy_r1_71($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_DOLLAR;
- }
- function yy_r1_72($yy_subpatterns)
- {
-
- $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON;
+ $this->token = Smarty_Internal_Templateparser::TP_MATH;
}
function yy_r1_73($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON;
+ $this->token = Smarty_Internal_Templateparser::TP_DOLLAR;
}
function yy_r1_74($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_COLON;
+ $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON;
}
function yy_r1_75($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_AT;
+ $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON;
}
function yy_r1_76($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_HATCH;
+ $this->token = Smarty_Internal_Templateparser::TP_COLON;
}
function yy_r1_77($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_QUOTE;
+ $this->token = Smarty_Internal_Templateparser::TP_AT;
}
function yy_r1_78($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_BACKTICK;
+ $this->token = Smarty_Internal_Templateparser::TP_HATCH;
}
function yy_r1_79($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_VERT;
+ $this->token = Smarty_Internal_Templateparser::TP_QUOTE;
}
function yy_r1_80($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_DOT;
+ $this->token = Smarty_Internal_Templateparser::TP_BACKTICK;
}
function yy_r1_81($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_COMMA;
+ $this->token = Smarty_Internal_Templateparser::TP_VERT;
}
function yy_r1_82($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ANDSYM;
+ $this->token = Smarty_Internal_Templateparser::TP_DOT;
}
function yy_r1_83($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_ID;
+ $this->token = Smarty_Internal_Templateparser::TP_COMMA;
}
function yy_r1_84($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_SPACE;
+ $this->token = Smarty_Internal_Templateparser::TP_ANDSYM;
}
function yy_r1_85($yy_subpatterns)
{
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ }
+ function yy_r1_87($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_ID;
+ }
+ function yy_r1_88($yy_subpatterns)
+ {
+
+ $this->token = Smarty_Internal_Templateparser::TP_SPACE;
+ }
+ function yy_r1_89($yy_subpatterns)
+ {
+
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
}
diff --git a/libs/sysplugins/internal.templateparser.php b/libs/sysplugins/internal.templateparser.php
index 7e3fb637..ef1a1b7e 100644
--- a/libs/sysplugins/internal.templateparser.php
+++ b/libs/sysplugins/internal.templateparser.php
@@ -187,36 +187,37 @@ class Smarty_Internal_Templateparser#line 109 "internal.templateparser.php"
const TP_NOT = 38;
const TP_LAND = 39;
const TP_LOR = 40;
- const TP_QUOTE = 41;
- const TP_SINGLEQUOTE = 42;
- const TP_BOOLEAN = 43;
- const TP_NULL = 44;
- const TP_AS = 45;
- const TP_ANDSYM = 46;
- const TP_BACKTICK = 47;
- const TP_HATCH = 48;
- const TP_AT = 49;
- const TP_ISODD = 50;
- const TP_ISNOTODD = 51;
- const TP_ISEVEN = 52;
- const TP_ISNOTEVEN = 53;
- const TP_ISODDBY = 54;
- const TP_ISNOTODDBY = 55;
- const TP_ISEVENBY = 56;
- const TP_ISNOTEVENBY = 57;
- const TP_ISDIVBY = 58;
- const TP_ISNOTDIVBY = 59;
- const TP_ISIN = 60;
- const TP_LITERALSTART = 61;
- const TP_LITERALEND = 62;
- const TP_LDELIMTAG = 63;
- const TP_RDELIMTAG = 64;
- const TP_PHPSTART = 65;
- const TP_PHPEND = 66;
- const TP_XML = 67;
- const YY_NO_ACTION = 436;
- const YY_ACCEPT_ACTION = 435;
- const YY_ERROR_ACTION = 434;
+ const TP_LXOR = 41;
+ const TP_QUOTE = 42;
+ const TP_SINGLEQUOTE = 43;
+ const TP_BOOLEAN = 44;
+ const TP_NULL = 45;
+ const TP_AS = 46;
+ const TP_ANDSYM = 47;
+ const TP_BACKTICK = 48;
+ const TP_HATCH = 49;
+ const TP_AT = 50;
+ const TP_ISODD = 51;
+ const TP_ISNOTODD = 52;
+ const TP_ISEVEN = 53;
+ const TP_ISNOTEVEN = 54;
+ const TP_ISODDBY = 55;
+ const TP_ISNOTODDBY = 56;
+ const TP_ISEVENBY = 57;
+ const TP_ISNOTEVENBY = 58;
+ const TP_ISDIVBY = 59;
+ const TP_ISNOTDIVBY = 60;
+ const TP_ISIN = 61;
+ const TP_LITERALSTART = 62;
+ const TP_LITERALEND = 63;
+ const TP_LDELIMTAG = 64;
+ const TP_RDELIMTAG = 65;
+ const TP_PHPSTART = 66;
+ const TP_PHPEND = 67;
+ const TP_XML = 68;
+ const YY_NO_ACTION = 438;
+ const YY_ACCEPT_ACTION = 437;
+ const YY_ERROR_ACTION = 436;
/* 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
@@ -268,440 +269,444 @@ 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 = 1071;
+ const YY_SZ_ACTTAB = 1094;
static public $yy_action = array(
- /* 0 */ 162, 28, 435, 50, 185, 194, 275, 276, 151, 246,
- /* 10 */ 35, 247, 6, 205, 12, 183, 60, 274, 279, 272,
- /* 20 */ 270, 5, 2, 4, 7, 11, 8, 141, 243, 137,
- /* 30 */ 181, 160, 237, 160, 278, 70, 3, 196, 197, 39,
- /* 40 */ 56, 268, 267, 162, 28, 198, 44, 205, 167, 183,
- /* 50 */ 269, 151, 205, 35, 183, 20, 195, 12, 213, 65,
- /* 60 */ 187, 162, 28, 144, 107, 128, 109, 130, 102, 151,
- /* 70 */ 133, 35, 36, 20, 254, 12, 254, 60, 31, 275,
- /* 80 */ 276, 41, 39, 56, 268, 267, 265, 22, 40, 44,
- /* 90 */ 274, 279, 272, 270, 5, 2, 4, 7, 11, 8,
- /* 100 */ 39, 56, 268, 267, 162, 28, 22, 44, 191, 21,
- /* 110 */ 275, 276, 151, 258, 35, 22, 6, 176, 12, 9,
- /* 120 */ 64, 274, 279, 272, 270, 5, 2, 4, 7, 11,
- /* 130 */ 8, 135, 258, 149, 156, 70, 237, 21, 278, 70,
- /* 140 */ 3, 258, 22, 39, 56, 268, 267, 162, 28, 250,
- /* 150 */ 44, 205, 252, 183, 269, 151, 195, 35, 180, 20,
- /* 160 */ 195, 12, 228, 60, 19, 132, 22, 203, 258, 65,
- /* 170 */ 125, 137, 171, 70, 141, 196, 197, 221, 219, 220,
- /* 180 */ 225, 226, 231, 232, 230, 137, 39, 56, 268, 267,
- /* 190 */ 162, 28, 258, 44, 195, 216, 162, 18, 151, 44,
- /* 200 */ 35, 13, 20, 235, 12, 117, 60, 34, 10, 110,
- /* 210 */ 36, 137, 139, 1, 166, 129, 70, 134, 236, 188,
- /* 220 */ 162, 28, 137, 173, 47, 210, 27, 58, 212, 39,
- /* 230 */ 56, 268, 267, 202, 65, 215, 44, 195, 275, 276,
- /* 240 */ 160, 42, 196, 197, 128, 148, 25, 53, 204, 274,
- /* 250 */ 279, 272, 270, 5, 2, 4, 7, 11, 8, 162,
- /* 260 */ 28, 65, 214, 33, 44, 31, 13, 151, 41, 35,
- /* 270 */ 280, 20, 111, 12, 110, 65, 38, 36, 65, 67,
- /* 280 */ 24, 189, 174, 66, 13, 193, 140, 206, 137, 184,
- /* 290 */ 160, 44, 110, 237, 242, 278, 70, 97, 39, 56,
- /* 300 */ 268, 267, 162, 28, 22, 44, 266, 238, 44, 95,
- /* 310 */ 151, 269, 35, 205, 20, 183, 12, 195, 65, 16,
- /* 320 */ 13, 22, 259, 208, 13, 142, 234, 137, 110, 138,
- /* 330 */ 258, 23, 110, 221, 219, 220, 225, 226, 231, 232,
- /* 340 */ 230, 39, 56, 268, 267, 162, 28, 258, 44, 240,
- /* 350 */ 149, 145, 70, 151, 227, 35, 205, 20, 183, 12,
- /* 360 */ 103, 60, 101, 34, 114, 128, 260, 70, 217, 137,
- /* 370 */ 254, 26, 40, 195, 254, 22, 237, 261, 278, 70,
- /* 380 */ 97, 248, 16, 255, 39, 56, 268, 267, 195, 266,
- /* 390 */ 238, 44, 95, 120, 269, 211, 199, 229, 271, 160,
- /* 400 */ 195, 146, 237, 160, 278, 70, 52, 90, 164, 244,
- /* 410 */ 75, 153, 136, 162, 28, 159, 157, 32, 95, 168,
- /* 420 */ 269, 151, 160, 207, 14, 20, 195, 12, 137, 65,
- /* 430 */ 245, 249, 237, 17, 278, 70, 99, 131, 209, 194,
- /* 440 */ 140, 182, 228, 128, 124, 266, 238, 223, 95, 271,
- /* 450 */ 269, 137, 39, 56, 268, 267, 195, 137, 237, 44,
- /* 460 */ 278, 70, 52, 216, 162, 18, 77, 30, 46, 160,
- /* 470 */ 264, 266, 238, 177, 95, 237, 269, 278, 70, 51,
- /* 480 */ 139, 94, 195, 74, 160, 161, 147, 249, 266, 238,
- /* 490 */ 65, 95, 160, 269, 162, 28, 257, 88, 91, 195,
- /* 500 */ 218, 154, 151, 192, 249, 113, 20, 57, 218, 42,
- /* 510 */ 65, 93, 257, 237, 106, 278, 61, 49, 104, 137,
- /* 520 */ 44, 140, 257, 29, 254, 38, 266, 238, 212, 95,
- /* 530 */ 45, 269, 182, 39, 56, 268, 267, 195, 15, 237,
- /* 540 */ 44, 278, 70, 52, 121, 182, 55, 80, 87, 271,
- /* 550 */ 38, 54, 266, 238, 201, 95, 237, 269, 278, 70,
- /* 560 */ 52, 257, 179, 195, 83, 255, 257, 32, 249, 266,
- /* 570 */ 238, 96, 95, 233, 269, 237, 71, 278, 70, 52,
- /* 580 */ 195, 254, 182, 84, 175, 249, 172, 126, 266, 238,
- /* 590 */ 92, 95, 271, 269, 237, 68, 278, 70, 52, 195,
- /* 600 */ 186, 251, 81, 239, 249, 257, 178, 266, 238, 256,
- /* 610 */ 95, 69, 269, 237, 158, 278, 70, 52, 195, 62,
- /* 620 */ 123, 79, 73, 249, 273, 253, 266, 238, 23, 95,
- /* 630 */ 237, 269, 278, 70, 52, 59, 165, 195, 76, 155,
- /* 640 */ 163, 200, 249, 266, 238, 152, 95, 237, 269, 278,
- /* 650 */ 70, 52, 143, 218, 195, 78, 190, 37, 262, 249,
- /* 660 */ 266, 238, 199, 95, 237, 269, 278, 70, 52, 160,
- /* 670 */ 63, 195, 82, 112, 72, 263, 249, 266, 238, 263,
- /* 680 */ 95, 237, 269, 278, 70, 105, 263, 263, 195, 263,
- /* 690 */ 263, 263, 263, 249, 266, 238, 263, 95, 263, 269,
- /* 700 */ 263, 263, 169, 263, 237, 195, 278, 70, 105, 263,
- /* 710 */ 263, 263, 263, 263, 263, 263, 263, 266, 238, 263,
- /* 720 */ 95, 263, 269, 263, 263, 170, 263, 237, 195, 278,
- /* 730 */ 70, 105, 263, 263, 263, 263, 263, 263, 263, 263,
- /* 740 */ 266, 238, 263, 95, 263, 269, 263, 263, 241, 263,
- /* 750 */ 237, 195, 278, 70, 105, 263, 263, 263, 263, 263,
- /* 760 */ 263, 263, 263, 266, 238, 263, 95, 263, 269, 263,
- /* 770 */ 263, 150, 263, 263, 195, 237, 263, 278, 70, 115,
- /* 780 */ 263, 263, 263, 263, 263, 263, 263, 263, 266, 238,
- /* 790 */ 263, 95, 263, 269, 263, 263, 263, 263, 237, 195,
- /* 800 */ 278, 70, 118, 263, 263, 263, 263, 263, 263, 263,
- /* 810 */ 263, 266, 238, 263, 95, 263, 269, 263, 263, 263,
- /* 820 */ 263, 237, 195, 278, 70, 108, 263, 263, 263, 263,
- /* 830 */ 263, 263, 263, 263, 266, 238, 263, 95, 263, 269,
- /* 840 */ 263, 263, 263, 263, 237, 195, 278, 61, 43, 263,
- /* 850 */ 263, 237, 263, 278, 70, 116, 263, 266, 238, 263,
- /* 860 */ 95, 263, 269, 263, 266, 238, 263, 95, 195, 269,
- /* 870 */ 263, 263, 263, 263, 237, 195, 278, 70, 127, 263,
- /* 880 */ 263, 263, 263, 263, 263, 263, 263, 266, 238, 263,
- /* 890 */ 95, 263, 269, 263, 263, 263, 263, 237, 195, 278,
- /* 900 */ 70, 98, 263, 263, 263, 263, 263, 263, 263, 263,
- /* 910 */ 266, 238, 263, 95, 263, 269, 263, 263, 263, 263,
- /* 920 */ 237, 195, 278, 70, 100, 263, 263, 237, 263, 278,
- /* 930 */ 70, 122, 263, 266, 238, 263, 95, 263, 269, 263,
- /* 940 */ 266, 238, 263, 95, 195, 269, 263, 263, 263, 263,
- /* 950 */ 237, 195, 278, 70, 119, 263, 263, 263, 263, 263,
- /* 960 */ 263, 263, 263, 266, 238, 263, 95, 263, 269, 263,
- /* 970 */ 263, 263, 263, 237, 195, 278, 70, 48, 263, 263,
- /* 980 */ 263, 263, 263, 263, 263, 263, 266, 238, 263, 95,
- /* 990 */ 263, 269, 263, 237, 263, 278, 70, 195, 263, 263,
- /* 1000 */ 237, 263, 278, 70, 263, 263, 266, 238, 263, 89,
- /* 1010 */ 263, 269, 263, 266, 238, 263, 85, 195, 269, 263,
- /* 1020 */ 263, 263, 263, 237, 195, 278, 70, 237, 263, 278,
- /* 1030 */ 70, 263, 263, 263, 263, 263, 266, 238, 263, 86,
- /* 1040 */ 277, 269, 263, 263, 263, 269, 237, 195, 278, 70,
- /* 1050 */ 263, 195, 263, 263, 263, 263, 263, 263, 263, 222,
- /* 1060 */ 224, 263, 263, 263, 269, 263, 263, 263, 263, 263,
- /* 1070 */ 195,
+ /* 0 */ 163, 27, 115, 176, 182, 239, 231, 230, 143, 183,
+ /* 10 */ 35, 202, 10, 203, 12, 67, 58, 252, 251, 244,
+ /* 20 */ 243, 9, 8, 6, 11, 2, 5, 141, 437, 50,
+ /* 30 */ 208, 205, 148, 202, 13, 203, 4, 250, 142, 37,
+ /* 40 */ 39, 57, 234, 236, 202, 142, 203, 45, 239, 231,
+ /* 50 */ 230, 266, 256, 255, 257, 258, 276, 270, 273, 241,
+ /* 60 */ 252, 251, 244, 243, 9, 8, 6, 11, 2, 5,
+ /* 70 */ 17, 22, 239, 231, 230, 240, 227, 223, 109, 142,
+ /* 80 */ 31, 164, 34, 41, 252, 251, 244, 243, 9, 8,
+ /* 90 */ 6, 11, 2, 5, 264, 163, 27, 269, 113, 129,
+ /* 100 */ 239, 231, 230, 143, 98, 35, 212, 25, 268, 12,
+ /* 110 */ 190, 58, 252, 251, 244, 243, 9, 8, 6, 11,
+ /* 120 */ 2, 5, 40, 96, 207, 163, 27, 142, 222, 47,
+ /* 130 */ 209, 23, 69, 268, 22, 39, 57, 234, 236, 163,
+ /* 140 */ 27, 202, 45, 203, 272, 101, 278, 143, 201, 35,
+ /* 150 */ 22, 25, 22, 12, 198, 66, 30, 163, 27, 178,
+ /* 160 */ 269, 275, 71, 33, 21, 143, 133, 35, 164, 10,
+ /* 170 */ 188, 12, 184, 62, 26, 15, 169, 237, 269, 39,
+ /* 180 */ 57, 234, 236, 180, 134, 63, 45, 213, 221, 64,
+ /* 190 */ 142, 210, 178, 4, 275, 71, 116, 39, 57, 234,
+ /* 200 */ 236, 163, 27, 238, 45, 279, 175, 22, 94, 143,
+ /* 210 */ 237, 35, 142, 25, 242, 12, 180, 58, 266, 256,
+ /* 220 */ 255, 257, 258, 276, 270, 273, 17, 187, 141, 26,
+ /* 230 */ 196, 163, 18, 269, 109, 149, 142, 55, 1, 167,
+ /* 240 */ 150, 39, 57, 234, 236, 163, 27, 139, 45, 34,
+ /* 250 */ 72, 155, 189, 143, 158, 35, 142, 25, 164, 12,
+ /* 260 */ 178, 58, 275, 71, 102, 124, 176, 182, 199, 111,
+ /* 270 */ 233, 226, 40, 279, 175, 130, 94, 42, 237, 268,
+ /* 280 */ 178, 157, 275, 71, 180, 39, 57, 234, 236, 163,
+ /* 290 */ 27, 29, 45, 279, 175, 142, 85, 143, 237, 35,
+ /* 300 */ 32, 25, 37, 12, 180, 66, 66, 174, 46, 92,
+ /* 310 */ 118, 114, 128, 7, 192, 66, 137, 107, 196, 163,
+ /* 320 */ 18, 268, 131, 71, 189, 19, 173, 22, 259, 39,
+ /* 330 */ 57, 234, 236, 163, 27, 139, 45, 45, 164, 154,
+ /* 340 */ 211, 143, 191, 35, 180, 25, 45, 12, 178, 66,
+ /* 350 */ 275, 71, 102, 269, 202, 103, 203, 22, 260, 195,
+ /* 360 */ 136, 279, 175, 215, 94, 42, 237, 89, 178, 179,
+ /* 370 */ 275, 71, 180, 39, 57, 234, 236, 163, 27, 66,
+ /* 380 */ 45, 279, 175, 269, 95, 143, 237, 35, 142, 25,
+ /* 390 */ 156, 12, 180, 58, 160, 71, 249, 17, 110, 129,
+ /* 400 */ 172, 204, 127, 31, 135, 109, 41, 233, 268, 197,
+ /* 410 */ 45, 87, 220, 38, 38, 14, 180, 39, 57, 234,
+ /* 420 */ 236, 73, 224, 178, 45, 275, 71, 52, 53, 176,
+ /* 430 */ 182, 75, 151, 138, 163, 27, 144, 145, 247, 94,
+ /* 440 */ 238, 237, 143, 193, 132, 204, 25, 180, 12, 142,
+ /* 450 */ 66, 17, 228, 206, 205, 163, 27, 197, 43, 109,
+ /* 460 */ 164, 137, 19, 143, 142, 37, 178, 25, 275, 71,
+ /* 470 */ 16, 66, 159, 71, 39, 57, 234, 236, 91, 265,
+ /* 480 */ 262, 45, 137, 123, 237, 166, 71, 202, 233, 203,
+ /* 490 */ 180, 281, 17, 189, 180, 39, 57, 234, 236, 129,
+ /* 500 */ 109, 178, 45, 275, 71, 52, 28, 180, 178, 80,
+ /* 510 */ 275, 71, 52, 22, 279, 175, 77, 94, 245, 237,
+ /* 520 */ 186, 279, 175, 54, 94, 180, 237, 147, 214, 88,
+ /* 530 */ 228, 248, 180, 153, 232, 162, 261, 228, 189, 269,
+ /* 540 */ 164, 178, 164, 275, 71, 52, 267, 271, 178, 81,
+ /* 550 */ 275, 71, 52, 164, 279, 175, 78, 94, 164, 237,
+ /* 560 */ 158, 279, 175, 204, 94, 180, 237, 168, 194, 71,
+ /* 570 */ 228, 178, 180, 275, 71, 52, 263, 228, 178, 83,
+ /* 580 */ 275, 71, 52, 126, 279, 175, 79, 94, 56, 237,
+ /* 590 */ 180, 279, 175, 246, 94, 180, 237, 129, 164, 93,
+ /* 600 */ 228, 66, 180, 189, 146, 254, 178, 228, 275, 71,
+ /* 610 */ 52, 68, 277, 112, 76, 20, 271, 38, 104, 279,
+ /* 620 */ 175, 24, 94, 178, 237, 275, 71, 52, 268, 122,
+ /* 630 */ 180, 82, 45, 204, 233, 228, 279, 175, 185, 94,
+ /* 640 */ 178, 237, 275, 71, 52, 90, 253, 180, 84, 216,
+ /* 650 */ 60, 59, 228, 279, 175, 66, 94, 219, 237, 178,
+ /* 660 */ 189, 275, 71, 51, 180, 170, 165, 74, 181, 228,
+ /* 670 */ 152, 15, 279, 175, 235, 94, 178, 237, 275, 71,
+ /* 680 */ 100, 97, 200, 180, 177, 199, 45, 271, 228, 279,
+ /* 690 */ 175, 36, 94, 218, 237, 3, 164, 274, 61, 178,
+ /* 700 */ 180, 275, 71, 100, 70, 278, 33, 265, 140, 225,
+ /* 710 */ 265, 265, 279, 175, 265, 94, 265, 237, 265, 265,
+ /* 720 */ 265, 265, 178, 180, 275, 71, 102, 265, 265, 265,
+ /* 730 */ 265, 265, 217, 265, 265, 279, 175, 265, 94, 265,
+ /* 740 */ 237, 265, 265, 161, 265, 265, 180, 178, 265, 275,
+ /* 750 */ 71, 102, 265, 265, 178, 265, 275, 71, 265, 265,
+ /* 760 */ 279, 175, 265, 94, 265, 237, 265, 229, 171, 265,
+ /* 770 */ 265, 180, 237, 178, 265, 275, 71, 121, 180, 265,
+ /* 780 */ 265, 265, 265, 265, 265, 265, 279, 175, 265, 94,
+ /* 790 */ 265, 237, 265, 265, 265, 265, 178, 180, 275, 71,
+ /* 800 */ 119, 265, 265, 265, 265, 265, 265, 265, 265, 279,
+ /* 810 */ 175, 265, 94, 265, 237, 265, 265, 265, 265, 265,
+ /* 820 */ 180, 178, 265, 275, 71, 125, 265, 265, 178, 265,
+ /* 830 */ 275, 71, 265, 265, 279, 175, 265, 94, 265, 237,
+ /* 840 */ 265, 280, 265, 265, 265, 180, 237, 178, 265, 275,
+ /* 850 */ 71, 106, 180, 265, 265, 265, 265, 265, 265, 265,
+ /* 860 */ 279, 175, 265, 94, 265, 237, 265, 265, 265, 265,
+ /* 870 */ 178, 180, 275, 71, 48, 265, 265, 265, 265, 265,
+ /* 880 */ 265, 265, 265, 279, 175, 265, 94, 265, 237, 265,
+ /* 890 */ 265, 265, 265, 265, 180, 178, 265, 275, 71, 105,
+ /* 900 */ 265, 265, 265, 265, 265, 265, 265, 265, 279, 175,
+ /* 910 */ 265, 94, 265, 237, 265, 265, 265, 265, 265, 180,
+ /* 920 */ 265, 178, 265, 275, 71, 108, 265, 265, 265, 265,
+ /* 930 */ 265, 265, 265, 265, 279, 175, 265, 94, 265, 237,
+ /* 940 */ 265, 265, 265, 265, 178, 180, 275, 71, 99, 265,
+ /* 950 */ 265, 265, 265, 265, 265, 265, 265, 279, 175, 265,
+ /* 960 */ 94, 265, 237, 265, 265, 265, 265, 265, 180, 178,
+ /* 970 */ 265, 275, 71, 120, 265, 265, 265, 265, 265, 265,
+ /* 980 */ 265, 265, 279, 175, 265, 94, 265, 237, 265, 265,
+ /* 990 */ 265, 265, 265, 180, 265, 178, 265, 275, 65, 49,
+ /* 1000 */ 265, 265, 265, 265, 265, 265, 265, 265, 279, 175,
+ /* 1010 */ 265, 94, 265, 237, 265, 265, 265, 265, 178, 180,
+ /* 1020 */ 275, 65, 44, 265, 265, 265, 265, 265, 265, 265,
+ /* 1030 */ 265, 279, 175, 265, 94, 265, 237, 265, 265, 265,
+ /* 1040 */ 265, 265, 180, 178, 265, 275, 71, 117, 265, 265,
+ /* 1050 */ 265, 265, 265, 265, 265, 265, 279, 175, 265, 94,
+ /* 1060 */ 265, 237, 265, 265, 265, 265, 265, 180, 265, 178,
+ /* 1070 */ 265, 275, 71, 265, 265, 265, 265, 265, 265, 265,
+ /* 1080 */ 265, 265, 279, 175, 265, 86, 265, 237, 265, 265,
+ /* 1090 */ 265, 265, 265, 180,
);
static public $yy_lookahead = array(
- /* 0 */ 2, 3, 69, 70, 71, 72, 39, 40, 10, 4,
- /* 10 */ 12, 4, 14, 1, 16, 3, 18, 50, 51, 52,
- /* 20 */ 53, 54, 55, 56, 57, 58, 59, 29, 29, 24,
- /* 30 */ 4, 26, 72, 26, 74, 75, 38, 11, 12, 41,
- /* 40 */ 42, 43, 44, 2, 3, 85, 48, 1, 49, 3,
- /* 50 */ 90, 10, 1, 12, 3, 14, 96, 16, 17, 18,
- /* 60 */ 1, 2, 3, 23, 77, 78, 77, 78, 95, 10,
- /* 70 */ 29, 12, 46, 14, 87, 16, 87, 18, 16, 39,
- /* 80 */ 40, 19, 41, 42, 43, 44, 15, 3, 29, 48,
- /* 90 */ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59,
- /* 100 */ 41, 42, 43, 44, 2, 3, 3, 48, 62, 25,
- /* 110 */ 39, 40, 10, 29, 12, 3, 14, 66, 16, 103,
- /* 120 */ 18, 50, 51, 52, 53, 54, 55, 56, 57, 58,
- /* 130 */ 59, 29, 29, 49, 74, 75, 72, 25, 74, 75,
- /* 140 */ 38, 29, 3, 41, 42, 43, 44, 2, 3, 85,
- /* 150 */ 48, 1, 13, 3, 90, 10, 96, 12, 8, 14,
- /* 160 */ 96, 16, 15, 18, 25, 4, 3, 4, 29, 18,
- /* 170 */ 79, 24, 74, 75, 29, 11, 12, 30, 31, 32,
- /* 180 */ 33, 34, 35, 36, 37, 24, 41, 42, 43, 44,
- /* 190 */ 2, 3, 29, 48, 96, 1, 2, 3, 10, 48,
- /* 200 */ 12, 14, 14, 4, 16, 20, 18, 60, 23, 22,
- /* 210 */ 46, 24, 18, 26, 27, 74, 75, 29, 4, 1,
- /* 220 */ 2, 3, 24, 5, 6, 7, 28, 9, 72, 41,
- /* 230 */ 42, 43, 44, 92, 18, 41, 48, 96, 39, 40,
- /* 240 */ 26, 47, 11, 12, 78, 29, 3, 91, 17, 50,
- /* 250 */ 51, 52, 53, 54, 55, 56, 57, 58, 59, 2,
- /* 260 */ 3, 18, 106, 3, 48, 16, 14, 10, 19, 12,
- /* 270 */ 10, 14, 29, 16, 22, 18, 27, 46, 18, 61,
- /* 280 */ 28, 63, 64, 65, 14, 67, 29, 17, 24, 29,
- /* 290 */ 26, 48, 22, 72, 15, 74, 75, 76, 41, 42,
- /* 300 */ 43, 44, 2, 3, 3, 48, 85, 86, 48, 88,
- /* 310 */ 10, 90, 12, 1, 14, 3, 16, 96, 18, 14,
- /* 320 */ 14, 3, 4, 7, 14, 104, 105, 24, 22, 29,
- /* 330 */ 29, 25, 22, 30, 31, 32, 33, 34, 35, 36,
- /* 340 */ 37, 41, 42, 43, 44, 2, 3, 29, 48, 4,
- /* 350 */ 49, 74, 75, 10, 42, 12, 1, 14, 3, 16,
- /* 360 */ 77, 18, 95, 60, 77, 78, 74, 75, 15, 24,
- /* 370 */ 87, 3, 29, 96, 87, 3, 72, 4, 74, 75,
- /* 380 */ 76, 4, 14, 100, 41, 42, 43, 44, 96, 85,
- /* 390 */ 86, 48, 88, 94, 90, 1, 97, 42, 99, 26,
- /* 400 */ 96, 29, 72, 26, 74, 75, 76, 73, 18, 105,
- /* 410 */ 80, 81, 82, 2, 3, 85, 86, 21, 88, 29,
- /* 420 */ 90, 10, 26, 29, 20, 14, 96, 16, 24, 18,
- /* 430 */ 17, 101, 72, 20, 74, 75, 76, 4, 71, 72,
- /* 440 */ 29, 107, 15, 78, 94, 85, 86, 4, 88, 99,
- /* 450 */ 90, 24, 41, 42, 43, 44, 96, 24, 72, 48,
- /* 460 */ 74, 75, 76, 1, 2, 3, 80, 102, 79, 26,
- /* 470 */ 4, 85, 86, 1, 88, 72, 90, 74, 75, 76,
- /* 480 */ 18, 83, 96, 80, 26, 27, 84, 101, 85, 86,
- /* 490 */ 18, 88, 26, 90, 2, 3, 98, 83, 73, 96,
- /* 500 */ 98, 29, 10, 41, 101, 95, 14, 83, 98, 47,
- /* 510 */ 18, 73, 98, 72, 77, 74, 75, 76, 95, 24,
- /* 520 */ 48, 29, 98, 25, 87, 27, 85, 86, 72, 88,
- /* 530 */ 95, 90, 107, 41, 42, 43, 44, 96, 14, 72,
- /* 540 */ 48, 74, 75, 76, 94, 107, 83, 80, 73, 99,
- /* 550 */ 27, 83, 85, 86, 99, 88, 72, 90, 74, 75,
- /* 560 */ 76, 98, 106, 96, 80, 100, 98, 21, 101, 85,
- /* 570 */ 86, 77, 88, 29, 90, 72, 29, 74, 75, 76,
- /* 580 */ 96, 87, 107, 80, 47, 101, 48, 94, 85, 86,
- /* 590 */ 83, 88, 99, 90, 72, 18, 74, 75, 76, 96,
- /* 600 */ 48, 4, 80, 29, 101, 98, 47, 85, 86, 4,
- /* 610 */ 88, 18, 90, 72, 45, 74, 75, 76, 96, 18,
- /* 620 */ 29, 80, 15, 101, 10, 4, 85, 86, 25, 88,
- /* 630 */ 72, 90, 74, 75, 76, 29, 19, 96, 80, 45,
- /* 640 */ 29, 29, 101, 85, 86, 29, 88, 72, 90, 74,
- /* 650 */ 75, 76, 21, 98, 96, 80, 107, 89, 87, 101,
- /* 660 */ 85, 86, 97, 88, 72, 90, 74, 75, 76, 26,
- /* 670 */ 18, 96, 80, 95, 92, 108, 101, 85, 86, 81,
- /* 680 */ 88, 72, 90, 74, 75, 76, 108, 108, 96, 108,
- /* 690 */ 108, 108, 108, 101, 85, 86, 108, 88, 108, 90,
- /* 700 */ 108, 108, 93, 108, 72, 96, 74, 75, 76, 108,
- /* 710 */ 108, 108, 108, 108, 108, 108, 108, 85, 86, 108,
- /* 720 */ 88, 108, 90, 108, 108, 93, 108, 72, 96, 74,
- /* 730 */ 75, 76, 108, 108, 108, 108, 108, 108, 108, 108,
- /* 740 */ 85, 86, 108, 88, 108, 90, 108, 108, 93, 108,
- /* 750 */ 72, 96, 74, 75, 76, 108, 108, 108, 108, 108,
- /* 760 */ 108, 108, 108, 85, 86, 108, 88, 108, 90, 108,
- /* 770 */ 108, 93, 108, 108, 96, 72, 108, 74, 75, 76,
- /* 780 */ 108, 108, 108, 108, 108, 108, 108, 108, 85, 86,
- /* 790 */ 108, 88, 108, 90, 108, 108, 108, 108, 72, 96,
- /* 800 */ 74, 75, 76, 108, 108, 108, 108, 108, 108, 108,
- /* 810 */ 108, 85, 86, 108, 88, 108, 90, 108, 108, 108,
- /* 820 */ 108, 72, 96, 74, 75, 76, 108, 108, 108, 108,
- /* 830 */ 108, 108, 108, 108, 85, 86, 108, 88, 108, 90,
- /* 840 */ 108, 108, 108, 108, 72, 96, 74, 75, 76, 108,
- /* 850 */ 108, 72, 108, 74, 75, 76, 108, 85, 86, 108,
- /* 860 */ 88, 108, 90, 108, 85, 86, 108, 88, 96, 90,
- /* 870 */ 108, 108, 108, 108, 72, 96, 74, 75, 76, 108,
- /* 880 */ 108, 108, 108, 108, 108, 108, 108, 85, 86, 108,
- /* 890 */ 88, 108, 90, 108, 108, 108, 108, 72, 96, 74,
- /* 900 */ 75, 76, 108, 108, 108, 108, 108, 108, 108, 108,
- /* 910 */ 85, 86, 108, 88, 108, 90, 108, 108, 108, 108,
- /* 920 */ 72, 96, 74, 75, 76, 108, 108, 72, 108, 74,
- /* 930 */ 75, 76, 108, 85, 86, 108, 88, 108, 90, 108,
- /* 940 */ 85, 86, 108, 88, 96, 90, 108, 108, 108, 108,
- /* 950 */ 72, 96, 74, 75, 76, 108, 108, 108, 108, 108,
- /* 960 */ 108, 108, 108, 85, 86, 108, 88, 108, 90, 108,
- /* 970 */ 108, 108, 108, 72, 96, 74, 75, 76, 108, 108,
- /* 980 */ 108, 108, 108, 108, 108, 108, 85, 86, 108, 88,
- /* 990 */ 108, 90, 108, 72, 108, 74, 75, 96, 108, 108,
- /* 1000 */ 72, 108, 74, 75, 108, 108, 85, 86, 108, 88,
- /* 1010 */ 108, 90, 108, 85, 86, 108, 88, 96, 90, 108,
- /* 1020 */ 108, 108, 108, 72, 96, 74, 75, 72, 108, 74,
- /* 1030 */ 75, 108, 108, 108, 108, 108, 85, 86, 108, 88,
- /* 1040 */ 85, 90, 108, 108, 108, 90, 72, 96, 74, 75,
- /* 1050 */ 108, 96, 108, 108, 108, 108, 108, 108, 108, 85,
- /* 1060 */ 86, 108, 108, 108, 90, 108, 108, 108, 108, 108,
- /* 1070 */ 96,
+ /* 0 */ 2, 3, 80, 11, 12, 39, 40, 41, 10, 17,
+ /* 10 */ 12, 1, 14, 3, 16, 29, 18, 51, 52, 53,
+ /* 20 */ 54, 55, 56, 57, 58, 59, 60, 29, 70, 71,
+ /* 30 */ 72, 73, 23, 1, 20, 3, 38, 4, 24, 47,
+ /* 40 */ 42, 43, 44, 45, 1, 24, 3, 49, 39, 40,
+ /* 50 */ 41, 30, 31, 32, 33, 34, 35, 36, 37, 4,
+ /* 60 */ 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
+ /* 70 */ 14, 3, 39, 40, 41, 43, 15, 67, 22, 24,
+ /* 80 */ 16, 26, 61, 19, 51, 52, 53, 54, 55, 56,
+ /* 90 */ 57, 58, 59, 60, 1, 2, 3, 29, 78, 79,
+ /* 100 */ 39, 40, 41, 10, 96, 12, 63, 14, 88, 16,
+ /* 110 */ 48, 18, 51, 52, 53, 54, 55, 56, 57, 58,
+ /* 120 */ 59, 60, 29, 78, 1, 2, 3, 24, 5, 6,
+ /* 130 */ 7, 28, 9, 88, 3, 42, 43, 44, 45, 2,
+ /* 140 */ 3, 1, 49, 3, 13, 96, 101, 10, 8, 12,
+ /* 150 */ 3, 14, 3, 16, 17, 18, 25, 2, 3, 73,
+ /* 160 */ 29, 75, 76, 21, 3, 10, 29, 12, 26, 14,
+ /* 170 */ 4, 16, 86, 18, 25, 14, 29, 91, 29, 42,
+ /* 180 */ 43, 44, 45, 97, 29, 62, 49, 64, 65, 66,
+ /* 190 */ 24, 68, 73, 38, 75, 76, 77, 42, 43, 44,
+ /* 200 */ 45, 2, 3, 15, 49, 86, 87, 3, 89, 10,
+ /* 210 */ 91, 12, 24, 14, 29, 16, 97, 18, 30, 31,
+ /* 220 */ 32, 33, 34, 35, 36, 37, 14, 48, 29, 25,
+ /* 230 */ 1, 2, 3, 29, 22, 50, 24, 84, 26, 27,
+ /* 240 */ 18, 42, 43, 44, 45, 2, 3, 18, 49, 61,
+ /* 250 */ 15, 29, 99, 10, 50, 12, 24, 14, 26, 16,
+ /* 260 */ 73, 18, 75, 76, 77, 95, 11, 12, 98, 78,
+ /* 270 */ 100, 42, 29, 86, 87, 4, 89, 48, 91, 88,
+ /* 280 */ 73, 94, 75, 76, 97, 42, 43, 44, 45, 2,
+ /* 290 */ 3, 3, 49, 86, 87, 24, 89, 10, 91, 12,
+ /* 300 */ 3, 14, 47, 16, 97, 18, 18, 10, 80, 84,
+ /* 310 */ 20, 78, 79, 23, 1, 18, 29, 29, 1, 2,
+ /* 320 */ 3, 88, 75, 76, 99, 25, 29, 3, 4, 42,
+ /* 330 */ 43, 44, 45, 2, 3, 18, 49, 49, 26, 27,
+ /* 340 */ 93, 10, 29, 12, 97, 14, 49, 16, 73, 18,
+ /* 350 */ 75, 76, 77, 29, 1, 96, 3, 3, 4, 42,
+ /* 360 */ 29, 86, 87, 100, 89, 48, 91, 74, 73, 94,
+ /* 370 */ 75, 76, 97, 42, 43, 44, 45, 2, 3, 18,
+ /* 380 */ 49, 86, 87, 29, 89, 10, 91, 12, 24, 14,
+ /* 390 */ 29, 16, 97, 18, 75, 76, 43, 14, 78, 79,
+ /* 400 */ 17, 108, 95, 16, 29, 22, 19, 100, 88, 73,
+ /* 410 */ 49, 74, 17, 27, 27, 20, 97, 42, 43, 44,
+ /* 420 */ 45, 29, 4, 73, 49, 75, 76, 77, 92, 11,
+ /* 430 */ 12, 81, 82, 83, 2, 3, 86, 87, 4, 89,
+ /* 440 */ 15, 91, 10, 107, 4, 108, 14, 97, 16, 24,
+ /* 450 */ 18, 14, 102, 72, 73, 2, 3, 73, 96, 22,
+ /* 460 */ 26, 29, 25, 10, 24, 47, 73, 14, 75, 76,
+ /* 470 */ 14, 18, 75, 76, 42, 43, 44, 45, 84, 86,
+ /* 480 */ 87, 49, 29, 95, 91, 75, 76, 1, 100, 3,
+ /* 490 */ 97, 107, 14, 99, 97, 42, 43, 44, 45, 79,
+ /* 500 */ 22, 73, 49, 75, 76, 77, 28, 97, 73, 81,
+ /* 510 */ 75, 76, 77, 3, 86, 87, 81, 89, 4, 91,
+ /* 520 */ 4, 86, 87, 84, 89, 97, 91, 19, 29, 74,
+ /* 530 */ 102, 4, 97, 85, 4, 29, 4, 102, 99, 29,
+ /* 540 */ 26, 73, 26, 75, 76, 77, 4, 99, 73, 81,
+ /* 550 */ 75, 76, 77, 26, 86, 87, 81, 89, 26, 91,
+ /* 560 */ 50, 86, 87, 108, 89, 97, 91, 46, 75, 76,
+ /* 570 */ 102, 73, 97, 75, 76, 77, 4, 102, 73, 81,
+ /* 580 */ 75, 76, 77, 29, 86, 87, 81, 89, 84, 91,
+ /* 590 */ 97, 86, 87, 29, 89, 97, 91, 79, 26, 74,
+ /* 600 */ 102, 18, 97, 99, 46, 10, 73, 102, 75, 76,
+ /* 610 */ 77, 18, 15, 96, 81, 25, 99, 27, 78, 86,
+ /* 620 */ 87, 103, 89, 73, 91, 75, 76, 77, 88, 95,
+ /* 630 */ 97, 81, 49, 108, 100, 102, 86, 87, 1, 89,
+ /* 640 */ 73, 91, 75, 76, 77, 84, 4, 97, 81, 15,
+ /* 650 */ 18, 18, 102, 86, 87, 18, 89, 7, 91, 73,
+ /* 660 */ 99, 75, 76, 77, 97, 21, 29, 81, 49, 102,
+ /* 670 */ 29, 14, 86, 87, 29, 89, 73, 91, 75, 76,
+ /* 680 */ 77, 96, 108, 97, 49, 98, 49, 99, 102, 86,
+ /* 690 */ 87, 90, 89, 88, 91, 104, 26, 82, 18, 73,
+ /* 700 */ 97, 75, 76, 77, 93, 101, 21, 109, 105, 106,
+ /* 710 */ 109, 109, 86, 87, 109, 89, 109, 91, 109, 109,
+ /* 720 */ 109, 109, 73, 97, 75, 76, 77, 109, 109, 109,
+ /* 730 */ 109, 109, 106, 109, 109, 86, 87, 109, 89, 109,
+ /* 740 */ 91, 109, 109, 94, 109, 109, 97, 73, 109, 75,
+ /* 750 */ 76, 77, 109, 109, 73, 109, 75, 76, 109, 109,
+ /* 760 */ 86, 87, 109, 89, 109, 91, 109, 86, 94, 109,
+ /* 770 */ 109, 97, 91, 73, 109, 75, 76, 77, 97, 109,
+ /* 780 */ 109, 109, 109, 109, 109, 109, 86, 87, 109, 89,
+ /* 790 */ 109, 91, 109, 109, 109, 109, 73, 97, 75, 76,
+ /* 800 */ 77, 109, 109, 109, 109, 109, 109, 109, 109, 86,
+ /* 810 */ 87, 109, 89, 109, 91, 109, 109, 109, 109, 109,
+ /* 820 */ 97, 73, 109, 75, 76, 77, 109, 109, 73, 109,
+ /* 830 */ 75, 76, 109, 109, 86, 87, 109, 89, 109, 91,
+ /* 840 */ 109, 86, 109, 109, 109, 97, 91, 73, 109, 75,
+ /* 850 */ 76, 77, 97, 109, 109, 109, 109, 109, 109, 109,
+ /* 860 */ 86, 87, 109, 89, 109, 91, 109, 109, 109, 109,
+ /* 870 */ 73, 97, 75, 76, 77, 109, 109, 109, 109, 109,
+ /* 880 */ 109, 109, 109, 86, 87, 109, 89, 109, 91, 109,
+ /* 890 */ 109, 109, 109, 109, 97, 73, 109, 75, 76, 77,
+ /* 900 */ 109, 109, 109, 109, 109, 109, 109, 109, 86, 87,
+ /* 910 */ 109, 89, 109, 91, 109, 109, 109, 109, 109, 97,
+ /* 920 */ 109, 73, 109, 75, 76, 77, 109, 109, 109, 109,
+ /* 930 */ 109, 109, 109, 109, 86, 87, 109, 89, 109, 91,
+ /* 940 */ 109, 109, 109, 109, 73, 97, 75, 76, 77, 109,
+ /* 950 */ 109, 109, 109, 109, 109, 109, 109, 86, 87, 109,
+ /* 960 */ 89, 109, 91, 109, 109, 109, 109, 109, 97, 73,
+ /* 970 */ 109, 75, 76, 77, 109, 109, 109, 109, 109, 109,
+ /* 980 */ 109, 109, 86, 87, 109, 89, 109, 91, 109, 109,
+ /* 990 */ 109, 109, 109, 97, 109, 73, 109, 75, 76, 77,
+ /* 1000 */ 109, 109, 109, 109, 109, 109, 109, 109, 86, 87,
+ /* 1010 */ 109, 89, 109, 91, 109, 109, 109, 109, 73, 97,
+ /* 1020 */ 75, 76, 77, 109, 109, 109, 109, 109, 109, 109,
+ /* 1030 */ 109, 86, 87, 109, 89, 109, 91, 109, 109, 109,
+ /* 1040 */ 109, 109, 97, 73, 109, 75, 76, 77, 109, 109,
+ /* 1050 */ 109, 109, 109, 109, 109, 109, 86, 87, 109, 89,
+ /* 1060 */ 109, 91, 109, 109, 109, 109, 109, 97, 109, 73,
+ /* 1070 */ 109, 75, 76, 109, 109, 109, 109, 109, 109, 109,
+ /* 1080 */ 109, 109, 86, 87, 109, 89, 109, 91, 109, 109,
+ /* 1090 */ 109, 109, 109, 97,
);
- const YY_SHIFT_USE_DFLT = -34;
+ const YY_SHIFT_USE_DFLT = -35;
const YY_SHIFT_MAX = 171;
static public $yy_shift_ofst = array(
- /* 0 */ 218, 102, -2, -2, -2, -2, -2, -2, -2, -2,
- /* 10 */ -2, -2, 188, 145, 145, 145, 145, 188, 59, 145,
- /* 20 */ 145, 145, 145, 145, 145, 145, 145, 145, 343, 145,
- /* 30 */ 145, 41, 300, 257, 411, 492, 492, 492, 243, 194,
- /* 40 */ 187, 260, 472, 5, 216, 249, 396, 151, 264, 264,
- /* 50 */ 218, 147, 303, 462, 139, 84, 355, 301, 12, 458,
- /* 60 */ 372, 498, 103, 103, 372, 103, 12, 12, 103, 103,
- /* 70 */ 523, 643, 523, 523, 71, 199, 40, -33, -33, -33,
- /* 80 */ -33, -33, -33, -33, -33, 231, 26, 46, 112, 164,
- /* 90 */ 51, 150, 318, 312, 163, 164, 7, 198, 433, 345,
- /* 100 */ 161, 62, 62, 214, 62, 404, 466, 443, 427, 377,
- /* 110 */ 390, 368, 62, 62, 373, 495, 495, 652, 495, 495,
- /* 120 */ 523, 523, 495, 524, 523, 546, 523, 495, -34, -34,
- /* 130 */ -34, -34, -34, 270, 252, 306, 185, -1, 310, 394,
- /* 140 */ 310, 310, 413, 574, 593, 559, 631, 621, 538, 612,
- /* 150 */ 607, 617, 597, 605, 537, 577, 552, 569, 601, 594,
- /* 160 */ 611, 616, 606, 603, 591, 614, 547, 544, 305, 353,
- /* 170 */ 279, 316,
+ /* 0 */ 123, 155, -2, -2, -2, -2, -2, -2, -2, -2,
+ /* 10 */ -2, -2, 375, 199, 375, 199, 199, 199, 93, 199,
+ /* 20 */ 199, 199, 199, 199, 199, 199, 199, 243, 199, 199,
+ /* 30 */ 199, 137, 287, 331, 432, 453, 453, 453, 288, 317,
+ /* 40 */ 212, 297, 637, 387, 55, 361, 142, 583, 232, 232,
+ /* 50 */ 123, 188, 21, 229, 131, 204, 510, 353, 147, 68,
+ /* 60 */ 68, 68, 147, 486, 486, 590, 68, 312, 68, 486,
+ /* 70 */ 386, 386, 386, 670, 61, 33, 9, -34, -34, -34,
+ /* 80 */ -34, -34, -34, -34, -34, -8, 418, 10, 32, 43,
+ /* 90 */ 354, 324, 149, 140, 255, 255, 434, 64, 64, 440,
+ /* 100 */ 103, 64, 14, 64, 572, 271, 166, 161, 425, 222,
+ /* 110 */ 516, 532, 64, 527, 514, 685, 364, 364, 680, 364,
+ /* 120 */ 364, 364, 386, 386, 386, 364, 456, 386, -35, -35,
+ /* 130 */ -35, -35, -35, 383, 437, 478, 56, 56, 290, 313,
+ /* 140 */ 395, 56, 185, 508, 521, 558, 593, 595, 632, 564,
+ /* 150 */ 554, 530, 542, 642, 641, 657, 619, 634, 499, 650,
+ /* 160 */ 635, 235, 300, -14, 506, 62, 179, 392, 633, 644,
+ /* 170 */ 645, 597,
);
- const YY_REDUCE_USE_DFLT = -68;
+ const YY_REDUCE_USE_DFLT = -79;
const YY_REDUCE_MAX = 132;
static public $yy_reduce_ofst = array(
- /* 0 */ -67, 330, 484, 386, 522, 467, 403, 503, 592, 575,
- /* 10 */ 558, 541, 221, 632, 655, 678, 609, 304, 772, 779,
- /* 20 */ 749, 703, 360, 802, 726, 825, 848, 855, 441, 901,
- /* 30 */ 878, 928, 921, 951, 974, 955, -40, 64, 141, 156,
- /* 40 */ -11, 292, 277, -13, 60, 299, 283, 98, 287, -13,
- /* 50 */ 367, 365, 365, 456, 402, 410, 438, 410, 425, 437,
- /* 60 */ 424, 350, 398, 414, 463, 424, 334, 475, 507, 468,
- /* 70 */ 350, 494, 493, 450, 16, 16, 16, 16, 16, 16,
- /* 80 */ 16, 16, 16, 16, 16, 568, 568, 549, 555, 568,
- /* 90 */ 549, 549, 555, 549, 555, 568, 571, 166, 166, 166,
- /* 100 */ 166, 565, 565, 571, 565, 166, 571, 571, 166, 571,
- /* 110 */ 582, 578, 565, 565, 571, 166, 166, 598, 166, 166,
- /* 120 */ 455, 455, 166, 435, 455, 465, 455, 166, 91, -27,
- /* 130 */ 389, 423, 267,
+ /* 0 */ -42, 350, 428, 505, 498, 567, 475, 533, 550, 468,
+ /* 10 */ 586, 435, 603, 275, 626, 187, 649, 674, 945, 748,
+ /* 20 */ 797, 822, 774, 723, 119, 848, 896, 922, 970, 871,
+ /* 30 */ 700, 207, 996, 295, 393, 755, 681, 86, 247, 336,
+ /* 40 */ 233, 493, 410, 170, 20, 319, 45, 397, 320, 20,
+ /* 50 */ 381, 518, 518, 384, 448, 517, 517, 455, 504, 394,
+ /* 60 */ 439, 225, 153, 293, 337, 307, 504, 191, 561, 525,
+ /* 70 */ 534, 307, 388, 540, 591, 591, 591, 591, 591, 591,
+ /* 80 */ 591, 591, 591, 591, 591, 601, 601, 574, 574, 574,
+ /* 90 */ 588, 588, 588, 574, 601, 601, 605, 587, 587, 420,
+ /* 100 */ 420, 587, 420, 587, 605, 420, 420, 585, 420, 611,
+ /* 110 */ 605, 605, 587, 605, 605, 604, 420, 420, 615, 420,
+ /* 120 */ 420, 420, 263, 263, 263, 420, 362, 263, 228, -78,
+ /* 130 */ 259, 8, 49,
);
static public $yyExpectedTokens = array(
- /* 0 */ array(1, 2, 3, 5, 6, 7, 9, 61, 63, 64, 65, 67, ),
- /* 1 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 2 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 3 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 4 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 5 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 6 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 7 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 8 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 9 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 10 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 11 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 41, 42, 43, 44, 48, ),
- /* 12 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 13 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 14 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 15 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 16 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 17 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 18 */ array(1, 2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 19 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 20 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 21 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 22 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 23 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 24 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 25 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 26 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 27 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 28 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 29 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 30 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 31 */ array(2, 3, 10, 12, 14, 16, 17, 18, 29, 41, 42, 43, 44, 48, ),
- /* 32 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 33 */ array(2, 3, 10, 12, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 34 */ array(2, 3, 10, 14, 16, 18, 29, 41, 42, 43, 44, 48, ),
- /* 35 */ array(2, 3, 10, 14, 18, 29, 41, 42, 43, 44, 48, ),
- /* 36 */ array(2, 3, 10, 14, 18, 29, 41, 42, 43, 44, 48, ),
- /* 37 */ array(2, 3, 10, 14, 18, 29, 41, 42, 43, 44, 48, ),
- /* 38 */ array(3, 18, 29, 48, ),
- /* 39 */ array(1, 2, 3, 18, 41, 47, ),
+ /* 0 */ array(1, 2, 3, 5, 6, 7, 9, 62, 64, 65, 66, 68, ),
+ /* 1 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 2 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 3 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 4 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 5 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 6 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 7 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 8 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 9 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 10 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 11 */ array(2, 3, 10, 12, 14, 16, 18, 29, 38, 42, 43, 44, 45, 49, ),
+ /* 12 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 13 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 14 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 15 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 16 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 17 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 18 */ array(1, 2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 19 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 20 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 21 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 22 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 23 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 24 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 25 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 26 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 27 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 28 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 29 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 30 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 31 */ array(2, 3, 10, 12, 14, 16, 17, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 32 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 33 */ array(2, 3, 10, 12, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 34 */ array(2, 3, 10, 14, 16, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 35 */ array(2, 3, 10, 14, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 36 */ array(2, 3, 10, 14, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 37 */ array(2, 3, 10, 14, 18, 29, 42, 43, 44, 45, 49, ),
+ /* 38 */ array(3, 18, 29, 49, ),
+ /* 39 */ array(1, 2, 3, 18, 42, 48, ),
/* 40 */ array(14, 22, 24, 26, 27, ),
- /* 41 */ array(3, 10, 18, 29, 48, ),
- /* 42 */ array(1, 18, 29, 48, ),
- /* 43 */ array(4, 24, 26, ),
- /* 44 */ array(18, 29, 48, ),
- /* 45 */ array(16, 19, 27, ),
+ /* 41 */ array(3, 10, 18, 29, 49, ),
+ /* 42 */ array(1, 18, 29, 49, ),
+ /* 43 */ array(16, 19, 27, ),
+ /* 44 */ array(4, 24, 26, ),
+ /* 45 */ array(18, 29, 49, ),
/* 46 */ array(21, 26, ),
- /* 47 */ array(18, 48, ),
+ /* 47 */ array(18, 49, ),
/* 48 */ array(24, 26, ),
/* 49 */ array(24, 26, ),
- /* 50 */ array(1, 2, 3, 5, 6, 7, 9, 61, 63, 64, 65, 67, ),
- /* 51 */ array(15, 24, 30, 31, 32, 33, 34, 35, 36, 37, 60, ),
- /* 52 */ array(24, 30, 31, 32, 33, 34, 35, 36, 37, 60, ),
- /* 53 */ array(1, 2, 3, 18, 41, 47, ),
+ /* 50 */ array(1, 2, 3, 5, 6, 7, 9, 62, 64, 65, 66, 68, ),
+ /* 51 */ array(15, 24, 30, 31, 32, 33, 34, 35, 36, 37, 61, ),
+ /* 52 */ array(24, 30, 31, 32, 33, 34, 35, 36, 37, 61, ),
+ /* 53 */ array(1, 2, 3, 18, 42, 48, ),
/* 54 */ array(3, 13, 25, 29, ),
- /* 55 */ array(3, 25, 29, 49, ),
- /* 56 */ array(1, 3, 42, ),
- /* 57 */ array(3, 29, 49, ),
- /* 58 */ array(1, 3, ),
- /* 59 */ array(26, 27, ),
+ /* 55 */ array(3, 25, 29, 50, ),
+ /* 56 */ array(3, 29, 50, ),
+ /* 57 */ array(1, 3, 43, ),
+ /* 58 */ array(3, 29, ),
+ /* 59 */ array(3, 29, ),
/* 60 */ array(3, 29, ),
- /* 61 */ array(25, 27, ),
+ /* 61 */ array(3, 29, ),
/* 62 */ array(3, 29, ),
- /* 63 */ array(3, 29, ),
- /* 64 */ array(3, 29, ),
- /* 65 */ array(3, 29, ),
- /* 66 */ array(1, 3, ),
- /* 67 */ array(1, 3, ),
+ /* 63 */ array(1, 3, ),
+ /* 64 */ array(1, 3, ),
+ /* 65 */ array(25, 27, ),
+ /* 66 */ array(3, 29, ),
+ /* 67 */ array(26, 27, ),
/* 68 */ array(3, 29, ),
- /* 69 */ array(3, 29, ),
+ /* 69 */ array(1, 3, ),
/* 70 */ array(27, ),
- /* 71 */ array(26, ),
+ /* 71 */ array(27, ),
/* 72 */ array(27, ),
- /* 73 */ array(27, ),
- /* 74 */ array(15, 39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 75 */ array(4, 39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 76 */ array(23, 39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 77 */ array(39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 78 */ array(39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 79 */ array(39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 80 */ array(39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 81 */ array(39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 82 */ array(39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 83 */ array(39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 84 */ array(39, 40, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, ),
- /* 85 */ array(11, 12, 17, 46, ),
- /* 86 */ array(4, 11, 12, 46, ),
- /* 87 */ array(1, 3, 62, ),
- /* 88 */ array(3, 25, 29, ),
- /* 89 */ array(11, 12, 46, ),
- /* 90 */ array(1, 3, 66, ),
- /* 91 */ array(1, 3, 8, ),
- /* 92 */ array(3, 4, 29, ),
- /* 93 */ array(1, 3, 42, ),
- /* 94 */ array(3, 4, 29, ),
- /* 95 */ array(11, 12, 46, ),
+ /* 73 */ array(26, ),
+ /* 74 */ array(15, 39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 75 */ array(4, 39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 76 */ array(23, 39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 77 */ array(39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 78 */ array(39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 79 */ array(39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 80 */ array(39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 81 */ array(39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 82 */ array(39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 83 */ array(39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 84 */ array(39, 40, 41, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, ),
+ /* 85 */ array(11, 12, 17, 47, ),
+ /* 86 */ array(4, 11, 12, 47, ),
+ /* 87 */ array(1, 3, 67, ),
+ /* 88 */ array(1, 3, 43, ),
+ /* 89 */ array(1, 3, 63, ),
+ /* 90 */ array(3, 4, 29, ),
+ /* 91 */ array(3, 4, 29, ),
+ /* 92 */ array(3, 25, 29, ),
+ /* 93 */ array(1, 3, 8, ),
+ /* 94 */ array(11, 12, 47, ),
+ /* 95 */ array(11, 12, 47, ),
/* 96 */ array(4, 26, ),
- /* 97 */ array(24, 28, ),
- /* 98 */ array(4, 24, ),
+ /* 97 */ array(16, 19, ),
+ /* 98 */ array(16, 19, ),
/* 99 */ array(4, 24, ),
- /* 100 */ array(4, 24, ),
+ /* 100 */ array(24, 28, ),
/* 101 */ array(16, 19, ),
- /* 102 */ array(16, 19, ),
- /* 103 */ array(4, 26, ),
- /* 104 */ array(16, 19, ),
- /* 105 */ array(20, 24, ),
- /* 106 */ array(4, 26, ),
- /* 107 */ array(4, 26, ),
+ /* 102 */ array(20, 24, ),
+ /* 103 */ array(16, 19, ),
+ /* 104 */ array(4, 26, ),
+ /* 105 */ array(4, 24, ),
+ /* 106 */ array(4, 24, ),
+ /* 107 */ array(3, 14, ),
/* 108 */ array(15, 24, ),
- /* 109 */ array(4, 26, ),
- /* 110 */ array(18, 29, ),
- /* 111 */ array(3, 14, ),
+ /* 109 */ array(18, 29, ),
+ /* 110 */ array(4, 26, ),
+ /* 111 */ array(4, 26, ),
/* 112 */ array(16, 19, ),
- /* 113 */ array(16, 19, ),
+ /* 113 */ array(4, 26, ),
/* 114 */ array(4, 26, ),
- /* 115 */ array(24, ),
+ /* 115 */ array(21, ),
/* 116 */ array(24, ),
- /* 117 */ array(18, ),
- /* 118 */ array(24, ),
+ /* 117 */ array(24, ),
+ /* 118 */ array(18, ),
/* 119 */ array(24, ),
- /* 120 */ array(27, ),
- /* 121 */ array(27, ),
- /* 122 */ array(24, ),
- /* 123 */ array(14, ),
+ /* 120 */ array(24, ),
+ /* 121 */ array(24, ),
+ /* 122 */ array(27, ),
+ /* 123 */ array(27, ),
/* 124 */ array(27, ),
- /* 125 */ array(21, ),
- /* 126 */ array(27, ),
- /* 127 */ array(24, ),
+ /* 125 */ array(24, ),
+ /* 126 */ array(14, ),
+ /* 127 */ array(27, ),
/* 128 */ array(),
/* 129 */ array(),
/* 130 */ array(),
/* 131 */ array(),
/* 132 */ array(),
/* 133 */ array(14, 17, 22, ),
- /* 134 */ array(14, 22, 28, ),
- /* 135 */ array(14, 22, 25, ),
- /* 136 */ array(20, 23, ),
- /* 137 */ array(29, 49, ),
- /* 138 */ array(14, 22, ),
+ /* 134 */ array(14, 22, 25, ),
+ /* 135 */ array(14, 22, 28, ),
+ /* 136 */ array(14, 22, ),
+ /* 137 */ array(14, 22, ),
+ /* 138 */ array(20, 23, ),
/* 139 */ array(1, 29, ),
- /* 140 */ array(14, 22, ),
+ /* 140 */ array(17, 20, ),
/* 141 */ array(14, 22, ),
- /* 142 */ array(17, 20, ),
- /* 143 */ array(29, ),
- /* 144 */ array(18, ),
- /* 145 */ array(47, ),
- /* 146 */ array(21, ),
- /* 147 */ array(4, ),
- /* 148 */ array(48, ),
+ /* 142 */ array(29, 50, ),
+ /* 143 */ array(19, ),
+ /* 144 */ array(46, ),
+ /* 145 */ array(46, ),
+ /* 146 */ array(18, ),
+ /* 147 */ array(10, ),
+ /* 148 */ array(18, ),
/* 149 */ array(29, ),
- /* 150 */ array(15, ),
- /* 151 */ array(19, ),
+ /* 150 */ array(29, ),
+ /* 151 */ array(4, ),
/* 152 */ array(4, ),
/* 153 */ array(4, ),
- /* 154 */ array(47, ),
- /* 155 */ array(18, ),
- /* 156 */ array(48, ),
- /* 157 */ array(45, ),
- /* 158 */ array(18, ),
- /* 159 */ array(45, ),
- /* 160 */ array(29, ),
- /* 161 */ array(29, ),
- /* 162 */ array(29, ),
- /* 163 */ array(25, ),
+ /* 154 */ array(29, ),
+ /* 155 */ array(14, ),
+ /* 156 */ array(49, ),
+ /* 157 */ array(15, ),
+ /* 158 */ array(29, ),
+ /* 159 */ array(7, ),
+ /* 160 */ array(49, ),
+ /* 161 */ array(15, ),
+ /* 162 */ array(25, ),
+ /* 163 */ array(29, ),
/* 164 */ array(29, ),
- /* 165 */ array(10, ),
- /* 166 */ array(29, ),
+ /* 165 */ array(48, ),
+ /* 166 */ array(48, ),
/* 167 */ array(29, ),
- /* 168 */ array(14, ),
- /* 169 */ array(15, ),
- /* 170 */ array(15, ),
- /* 171 */ array(7, ),
+ /* 168 */ array(18, ),
+ /* 169 */ array(21, ),
+ /* 170 */ array(29, ),
+ /* 171 */ array(15, ),
/* 172 */ array(),
/* 173 */ array(),
/* 174 */ array(),
@@ -811,37 +816,38 @@ static public $yy_action = array(
/* 278 */ array(),
/* 279 */ array(),
/* 280 */ array(),
+ /* 281 */ array(),
);
static public $yy_default = array(
- /* 0 */ 434, 434, 434, 434, 434, 434, 434, 434, 434, 434,
- /* 10 */ 434, 434, 415, 377, 377, 377, 377, 434, 434, 434,
- /* 20 */ 434, 434, 434, 434, 434, 434, 434, 434, 434, 434,
- /* 30 */ 434, 434, 434, 434, 434, 434, 434, 434, 434, 434,
- /* 40 */ 311, 434, 434, 434, 434, 343, 311, 434, 311, 311,
- /* 50 */ 281, 387, 387, 434, 434, 353, 434, 353, 434, 311,
- /* 60 */ 434, 346, 434, 434, 434, 434, 434, 434, 434, 434,
- /* 70 */ 346, 311, 338, 339, 434, 434, 434, 385, 391, 392,
- /* 80 */ 400, 396, 393, 401, 397, 434, 434, 434, 434, 382,
- /* 90 */ 434, 434, 434, 434, 434, 317, 434, 418, 434, 434,
- /* 100 */ 434, 371, 369, 434, 370, 376, 434, 434, 434, 434,
- /* 110 */ 434, 353, 368, 351, 434, 315, 305, 434, 417, 388,
- /* 120 */ 344, 341, 416, 353, 365, 319, 340, 312, 381, 353,
- /* 130 */ 381, 353, 353, 434, 316, 316, 434, 434, 383, 434,
- /* 140 */ 434, 316, 434, 434, 434, 434, 363, 434, 434, 434,
- /* 150 */ 434, 328, 434, 313, 434, 434, 434, 324, 434, 320,
- /* 160 */ 434, 434, 434, 434, 434, 434, 434, 434, 342, 434,
- /* 170 */ 434, 434, 349, 289, 288, 421, 290, 428, 422, 419,
- /* 180 */ 285, 357, 431, 433, 354, 282, 350, 427, 294, 287,
- /* 190 */ 430, 286, 336, 292, 284, 348, 326, 325, 323, 352,
- /* 200 */ 347, 367, 372, 308, 359, 432, 358, 423, 291, 283,
- /* 210 */ 293, 426, 425, 360, 420, 337, 429, 374, 362, 403,
- /* 220 */ 404, 402, 390, 296, 389, 405, 406, 334, 333, 335,
- /* 230 */ 409, 407, 408, 378, 413, 302, 299, 345, 324, 318,
- /* 240 */ 364, 375, 373, 379, 414, 412, 424, 298, 297, 384,
- /* 250 */ 322, 301, 306, 304, 310, 380, 303, 361, 363, 307,
- /* 260 */ 356, 295, 309, 314, 300, 386, 320, 331, 330, 332,
- /* 270 */ 395, 366, 394, 329, 398, 410, 411, 321, 327, 399,
- /* 280 */ 355,
+ /* 0 */ 436, 436, 436, 436, 436, 436, 436, 436, 436, 436,
+ /* 10 */ 436, 436, 417, 378, 436, 378, 378, 378, 436, 436,
+ /* 20 */ 436, 436, 436, 436, 436, 436, 436, 436, 436, 436,
+ /* 30 */ 436, 436, 436, 436, 436, 436, 436, 436, 436, 436,
+ /* 40 */ 312, 436, 436, 344, 436, 436, 312, 436, 312, 312,
+ /* 50 */ 282, 388, 388, 436, 436, 354, 354, 436, 436, 436,
+ /* 60 */ 436, 436, 436, 436, 436, 347, 436, 312, 436, 436,
+ /* 70 */ 339, 347, 340, 312, 436, 436, 436, 398, 397, 392,
+ /* 80 */ 393, 401, 402, 386, 394, 436, 436, 436, 436, 436,
+ /* 90 */ 436, 436, 436, 436, 318, 383, 436, 369, 370, 436,
+ /* 100 */ 420, 371, 377, 372, 436, 436, 436, 354, 436, 436,
+ /* 110 */ 436, 436, 352, 436, 436, 320, 389, 419, 436, 418,
+ /* 120 */ 316, 306, 341, 342, 345, 313, 354, 366, 382, 382,
+ /* 130 */ 354, 354, 354, 436, 317, 317, 384, 436, 436, 436,
+ /* 140 */ 436, 317, 436, 329, 321, 325, 436, 436, 436, 436,
+ /* 150 */ 436, 314, 436, 436, 436, 343, 436, 436, 436, 436,
+ /* 160 */ 436, 436, 436, 436, 436, 436, 436, 436, 436, 364,
+ /* 170 */ 436, 436, 359, 355, 356, 325, 327, 351, 346, 376,
+ /* 180 */ 349, 350, 326, 360, 324, 430, 296, 424, 365, 362,
+ /* 190 */ 423, 425, 428, 422, 357, 338, 431, 427, 361, 353,
+ /* 200 */ 432, 286, 434, 435, 433, 285, 284, 295, 283, 294,
+ /* 210 */ 293, 373, 287, 288, 348, 368, 375, 416, 310, 292,
+ /* 220 */ 414, 289, 290, 291, 358, 415, 337, 387, 385, 323,
+ /* 230 */ 413, 412, 304, 367, 331, 319, 332, 333, 334, 411,
+ /* 240 */ 335, 426, 380, 396, 395, 298, 379, 300, 297, 336,
+ /* 250 */ 303, 400, 399, 305, 330, 405, 404, 406, 407, 308,
+ /* 260 */ 309, 301, 390, 299, 429, 391, 403, 302, 311, 364,
+ /* 270 */ 409, 363, 307, 410, 315, 328, 408, 374, 381, 321,
+ /* 280 */ 322, 421,
);
/* The next thing included is series of defines which control
** various aspects of the generated parser.
@@ -858,11 +864,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 = 109;
+ const YYNOCODE = 110;
const YYSTACKDEPTH = 100;
- const YYNSTATE = 281;
- const YYNRULE = 153;
- const YYERRORSYMBOL = 68;
+ const YYNSTATE = 282;
+ const YYNRULE = 154;
+ const YYERRORSYMBOL = 69;
const YYERRSYMDT = 'yy0';
const YYFALLBACK = 1;
/** The next table maps tokens into fallback tokens. If a construct
@@ -917,6 +923,7 @@ static public $yy_action = array(
1, /* NOT => OTHER */
1, /* LAND => OTHER */
1, /* LOR => OTHER */
+ 1, /* LXOR => OTHER */
1, /* QUOTE => OTHER */
1, /* SINGLEQUOTE => OTHER */
1, /* BOOLEAN => OTHER */
@@ -1022,23 +1029,24 @@ static public $yy_action = array(
'APTR', 'ID', 'EQUALS', 'NOTEQUALS',
'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL',
'IDENTITY', 'NONEIDENTITY', 'NOT', 'LAND',
- 'LOR', 'QUOTE', 'SINGLEQUOTE', 'BOOLEAN',
- 'NULL', 'AS', 'ANDSYM', 'BACKTICK',
- 'HATCH', 'AT', 'ISODD', 'ISNOTODD',
- 'ISEVEN', 'ISNOTEVEN', 'ISODDBY', 'ISNOTODDBY',
- 'ISEVENBY', 'ISNOTEVENBY', 'ISDIVBY', 'ISNOTDIVBY',
- 'ISIN', 'LITERALSTART', 'LITERALEND', 'LDELIMTAG',
- 'RDELIMTAG', 'PHPSTART', 'PHPEND', 'XML',
- 'error', 'start', 'template', 'template_element',
- 'smartytag', 'text', 'variable', 'varindexed',
- 'expr', 'attributes', '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',
+ 'LOR', 'LXOR', 'QUOTE', 'SINGLEQUOTE',
+ 'BOOLEAN', 'NULL', 'AS', 'ANDSYM',
+ 'BACKTICK', 'HATCH', 'AT', 'ISODD',
+ 'ISNOTODD', 'ISEVEN', 'ISNOTEVEN', 'ISODDBY',
+ 'ISNOTODDBY', 'ISEVENBY', 'ISNOTEVENBY', 'ISDIVBY',
+ 'ISNOTDIVBY', 'ISIN', 'LITERALSTART', 'LITERALEND',
+ 'LDELIMTAG', 'RDELIMTAG', 'PHPSTART', 'PHPEND',
+ 'XML', 'error', 'start', 'template',
+ 'template_element', 'smartytag', 'text', 'variable',
+ 'varindexed', 'expr', 'attributes', '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',
);
/**
@@ -1177,28 +1185,29 @@ static public $yy_action = array(
/* 128 */ "ifcond ::= NONEIDENTITY",
/* 129 */ "lop ::= LAND",
/* 130 */ "lop ::= LOR",
- /* 131 */ "array ::= OPENB arrayelements CLOSEB",
- /* 132 */ "arrayelements ::= arrayelement",
- /* 133 */ "arrayelements ::= arrayelements COMMA arrayelement",
- /* 134 */ "arrayelements ::=",
- /* 135 */ "arrayelement ::= expr APTR expr",
- /* 136 */ "arrayelement ::= ID APTR expr",
- /* 137 */ "arrayelement ::= expr",
- /* 138 */ "doublequoted ::= doublequoted doublequotedcontent",
- /* 139 */ "doublequoted ::= doublequotedcontent",
- /* 140 */ "doublequotedcontent ::= BACKTICK ID BACKTICK",
- /* 141 */ "doublequotedcontent ::= BACKTICK variable BACKTICK",
- /* 142 */ "doublequotedcontent ::= DOLLAR ID",
- /* 143 */ "doublequotedcontent ::= LDEL expr RDEL",
- /* 144 */ "doublequotedcontent ::= smartytag",
- /* 145 */ "doublequotedcontent ::= DOLLAR OTHER",
- /* 146 */ "doublequotedcontent ::= LDEL OTHER",
- /* 147 */ "doublequotedcontent ::= BACKTICK OTHER",
- /* 148 */ "doublequotedcontent ::= OTHER",
- /* 149 */ "text ::= text textelement",
- /* 150 */ "text ::= textelement",
- /* 151 */ "textelement ::= OTHER",
- /* 152 */ "textelement ::= LDEL",
+ /* 131 */ "lop ::= LXOR",
+ /* 132 */ "array ::= OPENB arrayelements CLOSEB",
+ /* 133 */ "arrayelements ::= arrayelement",
+ /* 134 */ "arrayelements ::= arrayelements COMMA arrayelement",
+ /* 135 */ "arrayelements ::=",
+ /* 136 */ "arrayelement ::= expr APTR expr",
+ /* 137 */ "arrayelement ::= ID APTR expr",
+ /* 138 */ "arrayelement ::= expr",
+ /* 139 */ "doublequoted ::= doublequoted doublequotedcontent",
+ /* 140 */ "doublequoted ::= doublequotedcontent",
+ /* 141 */ "doublequotedcontent ::= BACKTICK ID BACKTICK",
+ /* 142 */ "doublequotedcontent ::= BACKTICK variable BACKTICK",
+ /* 143 */ "doublequotedcontent ::= DOLLAR ID",
+ /* 144 */ "doublequotedcontent ::= LDEL expr RDEL",
+ /* 145 */ "doublequotedcontent ::= smartytag",
+ /* 146 */ "doublequotedcontent ::= DOLLAR OTHER",
+ /* 147 */ "doublequotedcontent ::= LDEL OTHER",
+ /* 148 */ "doublequotedcontent ::= BACKTICK OTHER",
+ /* 149 */ "doublequotedcontent ::= OTHER",
+ /* 150 */ "text ::= text textelement",
+ /* 151 */ "text ::= textelement",
+ /* 152 */ "textelement ::= OTHER",
+ /* 153 */ "textelement ::= LDEL",
);
/**
@@ -1563,159 +1572,160 @@ static public $yy_action = array(
*
*/
static public $yyRuleInfo = array(
- array( 'lhs' => 69, 'rhs' => 1 ),
array( 'lhs' => 70, 'rhs' => 1 ),
- array( 'lhs' => 70, 'rhs' => 2 ),
array( 'lhs' => 71, 'rhs' => 1 ),
- array( 'lhs' => 71, 'rhs' => 3 ),
- array( 'lhs' => 71, 'rhs' => 3 ),
- array( 'lhs' => 71, 'rhs' => 1 ),
- array( 'lhs' => 71, 'rhs' => 1 ),
- array( 'lhs' => 71, 'rhs' => 1 ),
- array( 'lhs' => 71, 'rhs' => 3 ),
- array( 'lhs' => 71, 'rhs' => 3 ),
- array( 'lhs' => 71, 'rhs' => 1 ),
- array( 'lhs' => 71, 'rhs' => 1 ),
- array( 'lhs' => 71, 'rhs' => 1 ),
- array( 'lhs' => 72, 'rhs' => 6 ),
- array( 'lhs' => 72, 'rhs' => 4 ),
- array( 'lhs' => 72, 'rhs' => 4 ),
- array( 'lhs' => 72, 'rhs' => 6 ),
- array( 'lhs' => 72, 'rhs' => 6 ),
- array( 'lhs' => 72, 'rhs' => 4 ),
- array( 'lhs' => 72, 'rhs' => 5 ),
- array( 'lhs' => 72, 'rhs' => 5 ),
- array( 'lhs' => 72, 'rhs' => 5 ),
- array( 'lhs' => 72, 'rhs' => 11 ),
- array( 'lhs' => 84, 'rhs' => 2 ),
- array( 'lhs' => 84, 'rhs' => 1 ),
- array( 'lhs' => 72, 'rhs' => 8 ),
- array( 'lhs' => 72, 'rhs' => 8 ),
- array( 'lhs' => 77, 'rhs' => 2 ),
- array( 'lhs' => 77, 'rhs' => 1 ),
- array( 'lhs' => 77, 'rhs' => 0 ),
- array( 'lhs' => 87, 'rhs' => 4 ),
- array( 'lhs' => 82, 'rhs' => 1 ),
- array( 'lhs' => 82, 'rhs' => 3 ),
- array( 'lhs' => 81, 'rhs' => 4 ),
- array( 'lhs' => 76, 'rhs' => 1 ),
- array( 'lhs' => 76, 'rhs' => 1 ),
- array( 'lhs' => 76, 'rhs' => 4 ),
- array( 'lhs' => 76, 'rhs' => 3 ),
- array( 'lhs' => 88, 'rhs' => 1 ),
- array( 'lhs' => 88, 'rhs' => 2 ),
- array( 'lhs' => 88, 'rhs' => 3 ),
- array( 'lhs' => 88, 'rhs' => 3 ),
- array( 'lhs' => 88, 'rhs' => 1 ),
- array( 'lhs' => 89, 'rhs' => 1 ),
- array( 'lhs' => 89, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 3 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 3 ),
- array( 'lhs' => 85, 'rhs' => 3 ),
+ array( 'lhs' => 71, 'rhs' => 2 ),
+ array( 'lhs' => 72, 'rhs' => 1 ),
+ array( 'lhs' => 72, 'rhs' => 3 ),
+ array( 'lhs' => 72, 'rhs' => 3 ),
+ array( 'lhs' => 72, 'rhs' => 1 ),
+ array( 'lhs' => 72, 'rhs' => 1 ),
+ array( 'lhs' => 72, 'rhs' => 1 ),
+ array( 'lhs' => 72, 'rhs' => 3 ),
+ array( 'lhs' => 72, 'rhs' => 3 ),
+ array( 'lhs' => 72, 'rhs' => 1 ),
+ array( 'lhs' => 72, 'rhs' => 1 ),
+ array( 'lhs' => 72, 'rhs' => 1 ),
+ array( 'lhs' => 73, 'rhs' => 6 ),
+ array( 'lhs' => 73, 'rhs' => 4 ),
+ array( 'lhs' => 73, 'rhs' => 4 ),
+ array( 'lhs' => 73, 'rhs' => 6 ),
+ array( 'lhs' => 73, 'rhs' => 6 ),
+ array( 'lhs' => 73, 'rhs' => 4 ),
+ array( 'lhs' => 73, 'rhs' => 5 ),
+ array( 'lhs' => 73, 'rhs' => 5 ),
+ array( 'lhs' => 73, 'rhs' => 5 ),
+ array( 'lhs' => 73, 'rhs' => 11 ),
array( 'lhs' => 85, 'rhs' => 2 ),
- array( 'lhs' => 85, 'rhs' => 3 ),
- array( 'lhs' => 85, 'rhs' => 2 ),
- array( 'lhs' => 85, 'rhs' => 3 ),
- array( 'lhs' => 85, 'rhs' => 7 ),
- array( 'lhs' => 85, 'rhs' => 4 ),
- array( 'lhs' => 85, 'rhs' => 8 ),
- array( 'lhs' => 85, 'rhs' => 3 ),
- array( 'lhs' => 85, 'rhs' => 5 ),
- array( 'lhs' => 85, 'rhs' => 6 ),
array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 74, 'rhs' => 1 ),
- array( 'lhs' => 74, 'rhs' => 4 ),
- array( 'lhs' => 74, 'rhs' => 1 ),
- array( 'lhs' => 74, 'rhs' => 3 ),
- array( 'lhs' => 74, 'rhs' => 3 ),
- array( 'lhs' => 75, 'rhs' => 3 ),
- array( 'lhs' => 95, 'rhs' => 2 ),
- array( 'lhs' => 95, 'rhs' => 0 ),
- array( 'lhs' => 97, 'rhs' => 2 ),
- array( 'lhs' => 97, 'rhs' => 2 ),
- array( 'lhs' => 97, 'rhs' => 2 ),
- array( 'lhs' => 97, 'rhs' => 4 ),
- array( 'lhs' => 97, 'rhs' => 3 ),
- array( 'lhs' => 97, 'rhs' => 3 ),
- array( 'lhs' => 97, 'rhs' => 2 ),
- array( 'lhs' => 83, 'rhs' => 1 ),
- array( 'lhs' => 83, 'rhs' => 2 ),
- array( 'lhs' => 98, 'rhs' => 1 ),
- array( 'lhs' => 98, 'rhs' => 3 ),
- array( 'lhs' => 96, 'rhs' => 2 ),
- array( 'lhs' => 94, 'rhs' => 1 ),
- array( 'lhs' => 94, 'rhs' => 2 ),
- array( 'lhs' => 99, 'rhs' => 3 ),
- array( 'lhs' => 99, 'rhs' => 3 ),
- array( 'lhs' => 99, 'rhs' => 5 ),
- array( 'lhs' => 99, 'rhs' => 6 ),
- array( 'lhs' => 99, 'rhs' => 2 ),
- array( 'lhs' => 90, 'rhs' => 4 ),
- array( 'lhs' => 92, 'rhs' => 4 ),
- array( 'lhs' => 93, 'rhs' => 3 ),
- array( 'lhs' => 93, 'rhs' => 1 ),
- array( 'lhs' => 93, 'rhs' => 0 ),
- array( 'lhs' => 78, 'rhs' => 3 ),
+ array( 'lhs' => 73, 'rhs' => 8 ),
+ array( 'lhs' => 73, 'rhs' => 8 ),
array( 'lhs' => 78, 'rhs' => 2 ),
- array( 'lhs' => 79, 'rhs' => 2 ),
- array( 'lhs' => 79, 'rhs' => 0 ),
- array( 'lhs' => 100, 'rhs' => 2 ),
- array( 'lhs' => 100, 'rhs' => 2 ),
- array( 'lhs' => 80, 'rhs' => 1 ),
- array( 'lhs' => 80, 'rhs' => 2 ),
- array( 'lhs' => 80, 'rhs' => 3 ),
- array( 'lhs' => 101, 'rhs' => 1 ),
- array( 'lhs' => 101, 'rhs' => 3 ),
- array( 'lhs' => 101, 'rhs' => 3 ),
- array( 'lhs' => 101, 'rhs' => 3 ),
- array( 'lhs' => 101, 'rhs' => 3 ),
- array( 'lhs' => 101, 'rhs' => 3 ),
- array( 'lhs' => 101, 'rhs' => 3 ),
- array( 'lhs' => 101, 'rhs' => 2 ),
- array( 'lhs' => 101, 'rhs' => 2 ),
- array( 'lhs' => 101, 'rhs' => 3 ),
- array( 'lhs' => 101, 'rhs' => 3 ),
- array( 'lhs' => 101, 'rhs' => 2 ),
- array( 'lhs' => 101, 'rhs' => 2 ),
- array( 'lhs' => 101, 'rhs' => 3 ),
- array( 'lhs' => 101, 'rhs' => 3 ),
- array( 'lhs' => 102, 'rhs' => 1 ),
- array( 'lhs' => 102, 'rhs' => 1 ),
- array( 'lhs' => 102, 'rhs' => 1 ),
- array( 'lhs' => 102, 'rhs' => 1 ),
- array( 'lhs' => 102, 'rhs' => 1 ),
- array( 'lhs' => 102, 'rhs' => 1 ),
- array( 'lhs' => 102, 'rhs' => 1 ),
- array( 'lhs' => 102, 'rhs' => 1 ),
- array( 'lhs' => 103, 'rhs' => 1 ),
- array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 78, 'rhs' => 1 ),
+ array( 'lhs' => 78, 'rhs' => 0 ),
+ array( 'lhs' => 88, 'rhs' => 4 ),
+ array( 'lhs' => 83, 'rhs' => 1 ),
+ array( 'lhs' => 83, 'rhs' => 3 ),
+ array( 'lhs' => 82, 'rhs' => 4 ),
+ array( 'lhs' => 77, 'rhs' => 1 ),
+ array( 'lhs' => 77, 'rhs' => 1 ),
+ array( 'lhs' => 77, 'rhs' => 4 ),
+ array( 'lhs' => 77, 'rhs' => 3 ),
+ array( 'lhs' => 89, 'rhs' => 1 ),
+ array( 'lhs' => 89, 'rhs' => 2 ),
+ array( 'lhs' => 89, 'rhs' => 3 ),
+ array( 'lhs' => 89, 'rhs' => 3 ),
+ array( 'lhs' => 89, 'rhs' => 1 ),
+ array( 'lhs' => 90, 'rhs' => 1 ),
+ array( 'lhs' => 90, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
array( 'lhs' => 86, 'rhs' => 3 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 3 ),
+ array( 'lhs' => 86, 'rhs' => 3 ),
+ array( 'lhs' => 86, 'rhs' => 2 ),
+ array( 'lhs' => 86, 'rhs' => 3 ),
+ array( 'lhs' => 86, 'rhs' => 2 ),
+ array( 'lhs' => 86, 'rhs' => 3 ),
+ array( 'lhs' => 86, 'rhs' => 7 ),
+ array( 'lhs' => 86, 'rhs' => 4 ),
+ array( 'lhs' => 86, 'rhs' => 8 ),
+ array( 'lhs' => 86, 'rhs' => 3 ),
+ array( 'lhs' => 86, 'rhs' => 5 ),
+ array( 'lhs' => 86, 'rhs' => 6 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 75, 'rhs' => 1 ),
+ array( 'lhs' => 75, 'rhs' => 4 ),
+ array( 'lhs' => 75, 'rhs' => 1 ),
+ array( 'lhs' => 75, 'rhs' => 3 ),
+ array( 'lhs' => 75, 'rhs' => 3 ),
+ array( 'lhs' => 76, 'rhs' => 3 ),
+ array( 'lhs' => 96, 'rhs' => 2 ),
+ array( 'lhs' => 96, 'rhs' => 0 ),
+ array( 'lhs' => 98, 'rhs' => 2 ),
+ array( 'lhs' => 98, 'rhs' => 2 ),
+ array( 'lhs' => 98, 'rhs' => 2 ),
+ array( 'lhs' => 98, 'rhs' => 4 ),
+ array( 'lhs' => 98, 'rhs' => 3 ),
+ array( 'lhs' => 98, 'rhs' => 3 ),
+ array( 'lhs' => 98, 'rhs' => 2 ),
+ array( 'lhs' => 84, 'rhs' => 1 ),
+ array( 'lhs' => 84, 'rhs' => 2 ),
+ array( 'lhs' => 99, 'rhs' => 1 ),
+ array( 'lhs' => 99, 'rhs' => 3 ),
+ array( 'lhs' => 97, 'rhs' => 2 ),
+ array( 'lhs' => 95, 'rhs' => 1 ),
+ array( 'lhs' => 95, 'rhs' => 2 ),
+ array( 'lhs' => 100, 'rhs' => 3 ),
+ array( 'lhs' => 100, 'rhs' => 3 ),
+ array( 'lhs' => 100, 'rhs' => 5 ),
+ array( 'lhs' => 100, 'rhs' => 6 ),
+ array( 'lhs' => 100, 'rhs' => 2 ),
+ array( 'lhs' => 91, 'rhs' => 4 ),
+ array( 'lhs' => 93, 'rhs' => 4 ),
+ array( 'lhs' => 94, 'rhs' => 3 ),
+ array( 'lhs' => 94, 'rhs' => 1 ),
+ array( 'lhs' => 94, 'rhs' => 0 ),
+ array( 'lhs' => 79, 'rhs' => 3 ),
+ array( 'lhs' => 79, 'rhs' => 2 ),
+ array( 'lhs' => 80, 'rhs' => 2 ),
+ array( 'lhs' => 80, 'rhs' => 0 ),
+ array( 'lhs' => 101, 'rhs' => 2 ),
+ array( 'lhs' => 101, 'rhs' => 2 ),
+ array( 'lhs' => 81, 'rhs' => 1 ),
+ array( 'lhs' => 81, 'rhs' => 2 ),
+ array( 'lhs' => 81, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 2 ),
+ array( 'lhs' => 102, 'rhs' => 2 ),
+ array( 'lhs' => 102, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 2 ),
+ array( 'lhs' => 102, 'rhs' => 2 ),
+ array( 'lhs' => 102, 'rhs' => 3 ),
+ array( 'lhs' => 102, 'rhs' => 3 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
array( 'lhs' => 104, 'rhs' => 1 ),
- array( 'lhs' => 104, 'rhs' => 3 ),
- array( 'lhs' => 104, 'rhs' => 0 ),
- array( 'lhs' => 105, 'rhs' => 3 ),
- array( 'lhs' => 105, 'rhs' => 3 ),
+ array( 'lhs' => 104, 'rhs' => 1 ),
+ array( 'lhs' => 104, 'rhs' => 1 ),
+ array( 'lhs' => 87, 'rhs' => 3 ),
array( 'lhs' => 105, 'rhs' => 1 ),
- array( 'lhs' => 91, 'rhs' => 2 ),
- array( 'lhs' => 91, 'rhs' => 1 ),
+ array( 'lhs' => 105, 'rhs' => 3 ),
+ array( 'lhs' => 105, 'rhs' => 0 ),
array( 'lhs' => 106, 'rhs' => 3 ),
array( 'lhs' => 106, 'rhs' => 3 ),
- array( 'lhs' => 106, 'rhs' => 2 ),
- array( 'lhs' => 106, 'rhs' => 3 ),
array( 'lhs' => 106, 'rhs' => 1 ),
- array( 'lhs' => 106, 'rhs' => 2 ),
- array( 'lhs' => 106, 'rhs' => 2 ),
- array( 'lhs' => 106, 'rhs' => 2 ),
- array( 'lhs' => 106, 'rhs' => 1 ),
- array( 'lhs' => 73, 'rhs' => 2 ),
- array( 'lhs' => 73, 'rhs' => 1 ),
+ array( 'lhs' => 92, 'rhs' => 2 ),
+ array( 'lhs' => 92, 'rhs' => 1 ),
+ array( 'lhs' => 107, 'rhs' => 3 ),
+ array( 'lhs' => 107, 'rhs' => 3 ),
+ array( 'lhs' => 107, 'rhs' => 2 ),
+ array( 'lhs' => 107, 'rhs' => 3 ),
array( 'lhs' => 107, 'rhs' => 1 ),
+ array( 'lhs' => 107, 'rhs' => 2 ),
+ array( 'lhs' => 107, 'rhs' => 2 ),
+ array( 'lhs' => 107, 'rhs' => 2 ),
array( 'lhs' => 107, 'rhs' => 1 ),
+ array( 'lhs' => 74, 'rhs' => 2 ),
+ array( 'lhs' => 74, 'rhs' => 1 ),
+ array( 'lhs' => 108, 'rhs' => 1 ),
+ array( 'lhs' => 108, 'rhs' => 1 ),
);
/**
@@ -1733,7 +1743,7 @@ static public $yy_action = array(
50 => 0,
51 => 0,
67 => 0,
- 132 => 0,
+ 133 => 0,
1 => 1,
36 => 1,
43 => 1,
@@ -1741,16 +1751,16 @@ static public $yy_action = array(
45 => 1,
80 => 1,
103 => 1,
- 139 => 1,
- 148 => 1,
- 150 => 1,
+ 140 => 1,
+ 149 => 1,
151 => 1,
152 => 1,
+ 153 => 1,
2 => 2,
71 => 2,
- 138 => 2,
- 146 => 2,
- 149 => 2,
+ 139 => 2,
+ 147 => 2,
+ 150 => 2,
3 => 3,
4 => 4,
5 => 5,
@@ -1776,7 +1786,7 @@ static public $yy_action = array(
25 => 25,
29 => 25,
95 => 25,
- 137 => 25,
+ 138 => 25,
26 => 26,
27 => 27,
28 => 28,
@@ -1867,17 +1877,18 @@ static public $yy_action = array(
129 => 129,
130 => 130,
131 => 131,
- 133 => 133,
+ 132 => 132,
134 => 134,
135 => 135,
136 => 136,
- 140 => 140,
+ 137 => 137,
141 => 141,
142 => 142,
143 => 143,
144 => 144,
145 => 145,
- 147 => 147,
+ 146 => 146,
+ 148 => 148,
);
/* Beginning here are the reduction cases. A typical example
** follows:
@@ -1887,31 +1898,31 @@ static public $yy_action = array(
*/
#line 73 "internal.templateparser.y"
function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 1895 "internal.templateparser.php"
+#line 1906 "internal.templateparser.php"
#line 79 "internal.templateparser.y"
function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 1898 "internal.templateparser.php"
+#line 1909 "internal.templateparser.php"
#line 81 "internal.templateparser.y"
function yy_r2(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 1901 "internal.templateparser.php"
+#line 1912 "internal.templateparser.php"
#line 87 "internal.templateparser.y"
function yy_r3(){if ($this->compiler->has_code) {
$tmp =''; foreach ($this->prefix_code as $code) {$tmp.=$code;} $this->prefix_code=array();
$this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor, $this->compiler,$this->nocache,true);
} else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;} $this->nocache=false; }
-#line 1907 "internal.templateparser.php"
+#line 1918 "internal.templateparser.php"
#line 92 "internal.templateparser.y"
function yy_r4(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0]; }
-#line 1910 "internal.templateparser.php"
+#line 1921 "internal.templateparser.php"
#line 95 "internal.templateparser.y"
function yy_r5(){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,false); }
-#line 1913 "internal.templateparser.php"
+#line 1924 "internal.templateparser.php"
#line 97 "internal.templateparser.y"
function yy_r6(){preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s); $this->_retvalue = $s[0].$this->cacher->processNocacheCode($this->smarty->left_delimiter, $this->compiler,false,false); }
-#line 1916 "internal.templateparser.php"
+#line 1927 "internal.templateparser.php"
#line 99 "internal.templateparser.y"
function yy_r7(){preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s); $this->_retvalue = $s[0].$this->cacher->processNocacheCode($this->smarty->right_delimiter, $this->compiler,false,false); }
-#line 1919 "internal.templateparser.php"
+#line 1930 "internal.templateparser.php"
#line 101 "internal.templateparser.y"
function yy_r8(){if (!$this->template->security) {
$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler, false,true);
@@ -1922,7 +1933,7 @@ static public $yy_action = array(
}elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_REMOVE) {
$this->_retvalue = '';
} }
-#line 1930 "internal.templateparser.php"
+#line 1941 "internal.templateparser.php"
#line 111 "internal.templateparser.y"
function yy_r9(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0];
if (!$this->template->security) {
@@ -1934,7 +1945,7 @@ static public $yy_action = array(
}elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_REMOVE) {
$this->_retvalue .= '';
} }
-#line 1942 "internal.templateparser.php"
+#line 1953 "internal.templateparser.php"
#line 122 "internal.templateparser.y"
function yy_r10(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0];
if (!$this->template->security) {
@@ -1946,28 +1957,28 @@ static public $yy_action = array(
}elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_REMOVE) {
$this->_retvalue .= '';
} }
-#line 1954 "internal.templateparser.php"
+#line 1965 "internal.templateparser.php"
#line 133 "internal.templateparser.y"
function yy_r11(){preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s); $this->_retvalue = $s[0].$this->cacher->processNocacheCode("", $this->compiler, true, true); }
-#line 1957 "internal.templateparser.php"
+#line 1968 "internal.templateparser.php"
#line 134 "internal.templateparser.y"
function yy_r12(){$this->_retvalue = $this->cacher->processNocacheCode("';?>\n", $this->compiler, true, true); }
-#line 1960 "internal.templateparser.php"
+#line 1971 "internal.templateparser.php"
#line 136 "internal.templateparser.y"
function yy_r13(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false,false); }
-#line 1963 "internal.templateparser.php"
+#line 1974 "internal.templateparser.php"
#line 143 "internal.templateparser.y"
function yy_r14(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -5]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); }
-#line 1966 "internal.templateparser.php"
+#line 1977 "internal.templateparser.php"
#line 145 "internal.templateparser.y"
function yy_r15(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -3]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
-#line 1969 "internal.templateparser.php"
+#line 1980 "internal.templateparser.php"
#line 147 "internal.templateparser.y"
function yy_r16(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -3]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); }
-#line 1972 "internal.templateparser.php"
+#line 1983 "internal.templateparser.php"
#line 149 "internal.templateparser.y"
function yy_r17(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -5]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
-#line 1975 "internal.templateparser.php"
+#line 1986 "internal.templateparser.php"
#line 151 "internal.templateparser.y"
function yy_r18(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -5]->minor,$s); $this->_retvalue = $s[0].''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) {
@@ -1982,76 +1993,76 @@ static public $yy_action = array(
}
}
}
-#line 1990 "internal.templateparser.php"
+#line 2001 "internal.templateparser.php"
#line 165 "internal.templateparser.y"
function yy_r19(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -3]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); }
-#line 1993 "internal.templateparser.php"
+#line 2004 "internal.templateparser.php"
#line 167 "internal.templateparser.y"
function yy_r20(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -4]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 1996 "internal.templateparser.php"
+#line 2007 "internal.templateparser.php"
#line 169 "internal.templateparser.y"
function yy_r21(){if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
}
preg_match('/\s*/',$this->yystack[$this->yyidx + -4]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2002 "internal.templateparser.php"
+#line 2013 "internal.templateparser.php"
#line 173 "internal.templateparser.y"
function yy_r22(){ if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
}
preg_match('/\s*/',$this->yystack[$this->yyidx + -4]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2008 "internal.templateparser.php"
+#line 2019 "internal.templateparser.php"
#line 178 "internal.templateparser.y"
function yy_r23(){
if ($this->yystack[$this->yyidx + -9]->minor != 'for') {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -9]->minor . "\"");
}
preg_match('/\s*/',$this->yystack[$this->yyidx + -10]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('start'=>$this->yystack[$this->yyidx + -7]->minor,'ifexp'=>$this->yystack[$this->yyidx + -5]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2015 "internal.templateparser.php"
+#line 2026 "internal.templateparser.php"
#line 183 "internal.templateparser.y"
function yy_r24(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2018 "internal.templateparser.php"
+#line 2029 "internal.templateparser.php"
#line 184 "internal.templateparser.y"
function yy_r25(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2021 "internal.templateparser.php"
+#line 2032 "internal.templateparser.php"
#line 186 "internal.templateparser.y"
function yy_r26(){
if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -6]->minor . "\"");
}
preg_match('/\s*/',$this->yystack[$this->yyidx + -7]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2028 "internal.templateparser.php"
+#line 2039 "internal.templateparser.php"
#line 191 "internal.templateparser.y"
function yy_r27(){
if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -6]->minor . "\"");
}
preg_match('/\s*/',$this->yystack[$this->yyidx + -7]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2035 "internal.templateparser.php"
+#line 2046 "internal.templateparser.php"
#line 201 "internal.templateparser.y"
function yy_r28(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); }
-#line 2038 "internal.templateparser.php"
+#line 2049 "internal.templateparser.php"
#line 205 "internal.templateparser.y"
function yy_r30(){ $this->_retvalue = array(); }
-#line 2041 "internal.templateparser.php"
+#line 2052 "internal.templateparser.php"
#line 208 "internal.templateparser.y"
function yy_r31(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }
-#line 2044 "internal.templateparser.php"
+#line 2055 "internal.templateparser.php"
#line 213 "internal.templateparser.y"
function yy_r32(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
-#line 2047 "internal.templateparser.php"
+#line 2058 "internal.templateparser.php"
#line 214 "internal.templateparser.y"
function yy_r33(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; }
-#line 2050 "internal.templateparser.php"
+#line 2061 "internal.templateparser.php"
#line 216 "internal.templateparser.y"
function yy_r34(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); }
-#line 2053 "internal.templateparser.php"
+#line 2064 "internal.templateparser.php"
#line 222 "internal.templateparser.y"
function yy_r35(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
-#line 2056 "internal.templateparser.php"
+#line 2067 "internal.templateparser.php"
#line 226 "internal.templateparser.y"
function yy_r37(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; }
-#line 2059 "internal.templateparser.php"
+#line 2070 "internal.templateparser.php"
#line 227 "internal.templateparser.y"
function yy_r38(){
if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) {
@@ -2066,126 +2077,126 @@ static public $yy_action = array(
}
}
}
-#line 2074 "internal.templateparser.php"
+#line 2085 "internal.templateparser.php"
#line 244 "internal.templateparser.y"
function yy_r40(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2077 "internal.templateparser.php"
+#line 2088 "internal.templateparser.php"
#line 246 "internal.templateparser.y"
function yy_r41(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; }
-#line 2080 "internal.templateparser.php"
+#line 2091 "internal.templateparser.php"
#line 248 "internal.templateparser.y"
function yy_r42(){ $this->_retvalue = '('. $this->yystack[$this->yyidx + -2]->minor . ').(' . $this->yystack[$this->yyidx + 0]->minor. ')'; }
-#line 2083 "internal.templateparser.php"
+#line 2094 "internal.templateparser.php"
#line 268 "internal.templateparser.y"
function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2086 "internal.templateparser.php"
+#line 2097 "internal.templateparser.php"
#line 276 "internal.templateparser.y"
function yy_r52(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
-#line 2089 "internal.templateparser.php"
+#line 2100 "internal.templateparser.php"
#line 278 "internal.templateparser.y"
function yy_r53(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + -1]->minor."'"; }
-#line 2092 "internal.templateparser.php"
+#line 2103 "internal.templateparser.php"
#line 279 "internal.templateparser.y"
function yy_r54(){ $this->_retvalue = "''"; }
-#line 2095 "internal.templateparser.php"
+#line 2106 "internal.templateparser.php"
#line 281 "internal.templateparser.y"
function yy_r55(){ $this->_retvalue = '"'.$this->yystack[$this->yyidx + -1]->minor.'"'; }
-#line 2098 "internal.templateparser.php"
+#line 2109 "internal.templateparser.php"
#line 284 "internal.templateparser.y"
function yy_r57(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2101 "internal.templateparser.php"
+#line 2112 "internal.templateparser.php"
#line 285 "internal.templateparser.y"
function yy_r58(){ $this->prefix_number++; $this->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 2104 "internal.templateparser.php"
+#line 2115 "internal.templateparser.php"
#line 287 "internal.templateparser.y"
function yy_r59(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2107 "internal.templateparser.php"
+#line 2118 "internal.templateparser.php"
#line 288 "internal.templateparser.y"
function yy_r60(){ $this->prefix_number++; $this->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 2110 "internal.templateparser.php"
+#line 2121 "internal.templateparser.php"
#line 290 "internal.templateparser.y"
function yy_r61(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2113 "internal.templateparser.php"
+#line 2124 "internal.templateparser.php"
#line 292 "internal.templateparser.y"
function yy_r62(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2116 "internal.templateparser.php"
+#line 2127 "internal.templateparser.php"
#line 294 "internal.templateparser.y"
function yy_r63(){ $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 2119 "internal.templateparser.php"
+#line 2130 "internal.templateparser.php"
#line 296 "internal.templateparser.y"
function yy_r64(){ $this->prefix_number++; $this->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; }
-#line 2122 "internal.templateparser.php"
+#line 2133 "internal.templateparser.php"
#line 302 "internal.templateparser.y"
function yy_r65(){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 {
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['index']; $this->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"))->nocache;} }
-#line 2126 "internal.templateparser.php"
+#line 2137 "internal.templateparser.php"
#line 305 "internal.templateparser.y"
function yy_r66(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"))->nocache; }
-#line 2129 "internal.templateparser.php"
+#line 2140 "internal.templateparser.php"
#line 309 "internal.templateparser.y"
function yy_r68(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; }
-#line 2132 "internal.templateparser.php"
+#line 2143 "internal.templateparser.php"
#line 310 "internal.templateparser.y"
function yy_r69(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; }
-#line 2135 "internal.templateparser.php"
+#line 2146 "internal.templateparser.php"
#line 313 "internal.templateparser.y"
function yy_r70(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); }
-#line 2138 "internal.templateparser.php"
+#line 2149 "internal.templateparser.php"
#line 321 "internal.templateparser.y"
function yy_r72(){return; }
-#line 2141 "internal.templateparser.php"
+#line 2152 "internal.templateparser.php"
#line 325 "internal.templateparser.y"
function yy_r73(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; }
-#line 2144 "internal.templateparser.php"
+#line 2155 "internal.templateparser.php"
#line 326 "internal.templateparser.y"
function yy_r74(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; }
-#line 2147 "internal.templateparser.php"
+#line 2158 "internal.templateparser.php"
#line 327 "internal.templateparser.y"
function yy_r75(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; }
-#line 2150 "internal.templateparser.php"
+#line 2161 "internal.templateparser.php"
#line 328 "internal.templateparser.y"
function yy_r76(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; }
-#line 2153 "internal.templateparser.php"
+#line 2164 "internal.templateparser.php"
#line 330 "internal.templateparser.y"
function yy_r77(){ $this->_retvalue = '['.$this->compiler->compileTag('internal_smarty_var','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; }
-#line 2156 "internal.templateparser.php"
+#line 2167 "internal.templateparser.php"
#line 334 "internal.templateparser.y"
function yy_r79(){$this->_retvalue = ''; }
-#line 2159 "internal.templateparser.php"
+#line 2170 "internal.templateparser.php"
#line 342 "internal.templateparser.y"
function yy_r81(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2162 "internal.templateparser.php"
+#line 2173 "internal.templateparser.php"
#line 344 "internal.templateparser.y"
function yy_r82(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
-#line 2165 "internal.templateparser.php"
+#line 2176 "internal.templateparser.php"
#line 346 "internal.templateparser.y"
function yy_r83(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2168 "internal.templateparser.php"
+#line 2179 "internal.templateparser.php"
#line 351 "internal.templateparser.y"
function yy_r84(){ 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->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"))->nocache;} }
-#line 2172 "internal.templateparser.php"
+#line 2183 "internal.templateparser.php"
#line 354 "internal.templateparser.y"
function yy_r85(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2175 "internal.templateparser.php"
+#line 2186 "internal.templateparser.php"
#line 356 "internal.templateparser.y"
function yy_r86(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2178 "internal.templateparser.php"
+#line 2189 "internal.templateparser.php"
#line 358 "internal.templateparser.y"
function yy_r87(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2181 "internal.templateparser.php"
+#line 2192 "internal.templateparser.php"
#line 359 "internal.templateparser.y"
function yy_r88(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
-#line 2184 "internal.templateparser.php"
+#line 2195 "internal.templateparser.php"
#line 360 "internal.templateparser.y"
function yy_r89(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
-#line 2187 "internal.templateparser.php"
+#line 2198 "internal.templateparser.php"
#line 361 "internal.templateparser.y"
function yy_r90(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
-#line 2190 "internal.templateparser.php"
+#line 2201 "internal.templateparser.php"
#line 363 "internal.templateparser.y"
function yy_r91(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2193 "internal.templateparser.php"
+#line 2204 "internal.templateparser.php"
#line 369 "internal.templateparser.y"
function yy_r92(){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)) {
@@ -2194,130 +2205,133 @@ static public $yy_action = array(
$this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
}
} }
-#line 2202 "internal.templateparser.php"
+#line 2213 "internal.templateparser.php"
#line 380 "internal.templateparser.y"
function yy_r93(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
-#line 2205 "internal.templateparser.php"
+#line 2216 "internal.templateparser.php"
#line 384 "internal.templateparser.y"
function yy_r94(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; }
-#line 2208 "internal.templateparser.php"
+#line 2219 "internal.templateparser.php"
#line 388 "internal.templateparser.y"
function yy_r96(){ return; }
-#line 2211 "internal.templateparser.php"
+#line 2222 "internal.templateparser.php"
#line 393 "internal.templateparser.y"
function yy_r97(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); }
-#line 2214 "internal.templateparser.php"
+#line 2225 "internal.templateparser.php"
#line 394 "internal.templateparser.y"
function yy_r98(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); }
-#line 2217 "internal.templateparser.php"
+#line 2228 "internal.templateparser.php"
#line 401 "internal.templateparser.y"
function yy_r99(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2220 "internal.templateparser.php"
+#line 2231 "internal.templateparser.php"
#line 405 "internal.templateparser.y"
function yy_r101(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2223 "internal.templateparser.php"
+#line 2234 "internal.templateparser.php"
#line 406 "internal.templateparser.y"
function yy_r102(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
-#line 2226 "internal.templateparser.php"
+#line 2237 "internal.templateparser.php"
#line 413 "internal.templateparser.y"
function yy_r104(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2229 "internal.templateparser.php"
+#line 2240 "internal.templateparser.php"
#line 418 "internal.templateparser.y"
function yy_r106(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; }
-#line 2232 "internal.templateparser.php"
+#line 2243 "internal.templateparser.php"
#line 419 "internal.templateparser.y"
function yy_r107(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2235 "internal.templateparser.php"
+#line 2246 "internal.templateparser.php"
#line 420 "internal.templateparser.y"
function yy_r108(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2238 "internal.templateparser.php"
+#line 2249 "internal.templateparser.php"
#line 421 "internal.templateparser.y"
function yy_r109(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2241 "internal.templateparser.php"
+#line 2252 "internal.templateparser.php"
#line 423 "internal.templateparser.y"
function yy_r111(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2244 "internal.templateparser.php"
+#line 2255 "internal.templateparser.php"
#line 424 "internal.templateparser.y"
function yy_r112(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2247 "internal.templateparser.php"
+#line 2258 "internal.templateparser.php"
#line 425 "internal.templateparser.y"
function yy_r113(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2250 "internal.templateparser.php"
+#line 2261 "internal.templateparser.php"
#line 426 "internal.templateparser.y"
function yy_r114(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2253 "internal.templateparser.php"
+#line 2264 "internal.templateparser.php"
#line 427 "internal.templateparser.y"
function yy_r115(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2256 "internal.templateparser.php"
+#line 2267 "internal.templateparser.php"
#line 428 "internal.templateparser.y"
function yy_r116(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2259 "internal.templateparser.php"
+#line 2270 "internal.templateparser.php"
#line 434 "internal.templateparser.y"
function yy_r121(){$this->_retvalue = '=='; }
-#line 2262 "internal.templateparser.php"
+#line 2273 "internal.templateparser.php"
#line 435 "internal.templateparser.y"
function yy_r122(){$this->_retvalue = '!='; }
-#line 2265 "internal.templateparser.php"
+#line 2276 "internal.templateparser.php"
#line 436 "internal.templateparser.y"
function yy_r123(){$this->_retvalue = '>'; }
-#line 2268 "internal.templateparser.php"
+#line 2279 "internal.templateparser.php"
#line 437 "internal.templateparser.y"
function yy_r124(){$this->_retvalue = '<'; }
-#line 2271 "internal.templateparser.php"
+#line 2282 "internal.templateparser.php"
#line 438 "internal.templateparser.y"
function yy_r125(){$this->_retvalue = '>='; }
-#line 2274 "internal.templateparser.php"
+#line 2285 "internal.templateparser.php"
#line 439 "internal.templateparser.y"
function yy_r126(){$this->_retvalue = '<='; }
-#line 2277 "internal.templateparser.php"
+#line 2288 "internal.templateparser.php"
#line 440 "internal.templateparser.y"
function yy_r127(){$this->_retvalue = '==='; }
-#line 2280 "internal.templateparser.php"
+#line 2291 "internal.templateparser.php"
#line 441 "internal.templateparser.y"
function yy_r128(){$this->_retvalue = '!=='; }
-#line 2283 "internal.templateparser.php"
+#line 2294 "internal.templateparser.php"
#line 443 "internal.templateparser.y"
function yy_r129(){$this->_retvalue = '&&'; }
-#line 2286 "internal.templateparser.php"
+#line 2297 "internal.templateparser.php"
#line 444 "internal.templateparser.y"
function yy_r130(){$this->_retvalue = '||'; }
-#line 2289 "internal.templateparser.php"
-#line 449 "internal.templateparser.y"
- function yy_r131(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2292 "internal.templateparser.php"
-#line 451 "internal.templateparser.y"
- function yy_r133(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2295 "internal.templateparser.php"
+#line 2300 "internal.templateparser.php"
+#line 445 "internal.templateparser.y"
+ function yy_r131(){$this->_retvalue = ' XOR '; }
+#line 2303 "internal.templateparser.php"
+#line 450 "internal.templateparser.y"
+ function yy_r132(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; }
+#line 2306 "internal.templateparser.php"
#line 452 "internal.templateparser.y"
- function yy_r134(){ return; }
-#line 2298 "internal.templateparser.php"
+ function yy_r134(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2309 "internal.templateparser.php"
#line 453 "internal.templateparser.y"
- function yy_r135(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2301 "internal.templateparser.php"
+ function yy_r135(){ return; }
+#line 2312 "internal.templateparser.php"
#line 454 "internal.templateparser.y"
- function yy_r136(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2304 "internal.templateparser.php"
-#line 462 "internal.templateparser.y"
- function yy_r140(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; }
-#line 2307 "internal.templateparser.php"
+ function yy_r136(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2315 "internal.templateparser.php"
+#line 455 "internal.templateparser.y"
+ function yy_r137(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2318 "internal.templateparser.php"
#line 463 "internal.templateparser.y"
- function yy_r141(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; }
-#line 2310 "internal.templateparser.php"
+ function yy_r141(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; }
+#line 2321 "internal.templateparser.php"
#line 464 "internal.templateparser.y"
- function yy_r142(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; }
-#line 2313 "internal.templateparser.php"
+ function yy_r142(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; }
+#line 2324 "internal.templateparser.php"
#line 465 "internal.templateparser.y"
- function yy_r143(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0].'".('.$this->yystack[$this->yyidx + -1]->minor.')."'; }
-#line 2316 "internal.templateparser.php"
+ function yy_r143(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; }
+#line 2327 "internal.templateparser.php"
#line 466 "internal.templateparser.y"
- function yy_r144(){ $this->prefix_number++; $this->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; }
-#line 2319 "internal.templateparser.php"
+ function yy_r144(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0].'".('.$this->yystack[$this->yyidx + -1]->minor.')."'; }
+#line 2330 "internal.templateparser.php"
#line 467 "internal.templateparser.y"
- function yy_r145(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2322 "internal.templateparser.php"
-#line 469 "internal.templateparser.y"
- function yy_r147(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2325 "internal.templateparser.php"
+ function yy_r145(){ $this->prefix_number++; $this->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; }
+#line 2333 "internal.templateparser.php"
+#line 468 "internal.templateparser.y"
+ function yy_r146(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2336 "internal.templateparser.php"
+#line 470 "internal.templateparser.y"
+ function yy_r148(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; }
+#line 2339 "internal.templateparser.php"
/**
* placeholder for the left hand side in a reduce operation.
@@ -2434,7 +2448,7 @@ static public $yy_action = array(
$this->internalError = true;
$this->yymajor = $yymajor;
$this->compiler->trigger_template_error();
-#line 2443 "internal.templateparser.php"
+#line 2457 "internal.templateparser.php"
}
/**
@@ -2458,7 +2472,7 @@ static public $yy_action = array(
$this->internalError = false;
$this->retvalue = $this->_retvalue;
//echo $this->retvalue."\n\n";
-#line 2468 "internal.templateparser.php"
+#line 2482 "internal.templateparser.php"
}
/**
diff --git a/libs/sysplugins/method.register_block.php b/libs/sysplugins/method.register_block.php
index 0f74e2a5..16bcbfae 100644
--- a/libs/sysplugins/method.register_block.php
+++ b/libs/sysplugins/method.register_block.php
@@ -21,7 +21,7 @@
* @param string $block_impl PHP function to register
* @param boolean $cacheable if true (default) this fuction is cachable
*/
-function register_block($smarty, $block_tag, $block_impl, $cacheable = true)
+function register_block($smarty, $block_tag, $block_impl, $cacheable = true, $cache_attr = array())
{
if (isset($smarty->registered_plugins[$block_tag])) {
throw new Exception("Plugin tag \"{$block_tag}\" already registered");
@@ -29,7 +29,7 @@ function register_block($smarty, $block_tag, $block_impl, $cacheable = true)
throw new Exception("Plugin \"{$block_tag}\" not callable");
} else {
$smarty->registered_plugins[$block_tag] =
- array('block', $block_impl, $cacheable);
+ array('block', $block_impl, $cacheable, $cache_attr);
}
}
diff --git a/libs/sysplugins/method.register_function.php b/libs/sysplugins/method.register_function.php
index a5bd9bde..27eae98c 100644
--- a/libs/sysplugins/method.register_function.php
+++ b/libs/sysplugins/method.register_function.php
@@ -18,7 +18,7 @@
* @param string $function_impl the name of the PHP function to register
* @param boolean $cacheable if true (default) this fuction is cachable
*/
-function register_function($smarty, $function_tag, $function_impl, $cacheable = true)
+function register_function($smarty, $function_tag, $function_impl, $cacheable = true, $cache_attr = array())
{
if (isset($smarty->registered_plugins[$function_tag])) {
throw new Exception("Plugin tag \"{$function_tag}\" already registered");
@@ -26,7 +26,7 @@ function register_function($smarty, $function_tag, $function_impl, $cacheable =
throw new Exception("Plugin \"{$function_tag}\" not callable");
} else {
$smarty->registered_plugins[$function_tag] =
- array('function', $function_impl, $cacheable);
+ array('function', $function_impl, $cacheable, $cache_attr);
}
}