diff --git a/change_log.txt b/change_log.txt index 827c12c7..186f4680 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,7 @@ +15/08/2010 +- make the date_format modifier work also on objects of the DateTime class +- implementation of parsetrees in the parser to close security holes and remove unwanted empty line in HTML output + 08/07/2010 - bugfix on assigning multidimensional arrays within templates - corrected bugfix for truncate modifier diff --git a/libs/plugins/shared.make_timestamp.php b/libs/plugins/shared.make_timestamp.php index 6bef6f25..dc2514b1 100644 --- a/libs/plugins/shared.make_timestamp.php +++ b/libs/plugins/shared.make_timestamp.php @@ -19,7 +19,7 @@ function smarty_make_timestamp($string) if(empty($string)) { // use "now": return time(); - } elseif (is_a($string,'DateTime')) { + } elseif ($string instanceof DateTime) { return $string->getTimestamp(); } elseif (preg_match('/^\d{14}$/', $string)) { // it is mysql timestamp format of YYYYMMDDHHMMSS? @@ -38,4 +38,4 @@ function smarty_make_timestamp($string) return $time; } } -?> +?> \ No newline at end of file diff --git a/libs/sysplugins/smarty_internal_compile_block.php b/libs/sysplugins/smarty_internal_compile_block.php index 0ccce92e..79ceeb7f 100644 --- a/libs/sysplugins/smarty_internal_compile_block.php +++ b/libs/sysplugins/smarty_internal_compile_block.php @@ -26,7 +26,7 @@ class Smarty_Internal_Compile_Block extends Smarty_Internal_CompileBase { $this->optional_attributes = array('assign', 'nocache'); // check and get attributes $_attr = $this->_get_attributes($args); - $save = array($_attr, $compiler->template->extracted_compiled_code, $compiler->template->extract_code, $this->compiler->nocache); + $save = array($_attr, $compiler->parser->current_buffer, $this->compiler->nocache); $this->_open_tag('block', $save); if (isset($_attr['nocache'])) { if ($_attr['nocache'] == 'true') { @@ -34,8 +34,7 @@ class Smarty_Internal_Compile_Block extends Smarty_Internal_CompileBase { } } - $compiler->template->extract_code = true; - $compiler->template->extracted_compiled_code = ''; + $compiler->parser->current_buffer = new _smarty_template_buffer($compiler->parser); $compiler->has_code = false; return true; } @@ -57,8 +56,6 @@ class Smarty_Internal_Compile_Blockclose extends Smarty_Internal_CompileBase { $this->compiler = $compiler; $this->smarty = $compiler->smarty; $this->compiler->has_code = true; - // turn off block code extraction - $compiler->template->extract_code = false; // check and get attributes $this->optional_attributes = array('name'); $_attr = $this->_get_attributes($args); @@ -80,11 +77,11 @@ class Smarty_Internal_Compile_Blockclose extends Smarty_Internal_CompileBase { $_tpl->suppressHeader = true; $_tpl->suppressFileDependency = true; if (strpos($this->smarty->block_data[$_name]['source'], '%%%%SMARTY_PARENT%%%%') !== false) { - $_output = str_replace('%%%%SMARTY_PARENT%%%%', $compiler->template->extracted_compiled_code, $_tpl->getCompiledTemplate()); + $_output = str_replace('%%%%SMARTY_PARENT%%%%', $compiler->parser->current_buffer->to_smarty_php(), $_tpl->getCompiledTemplate()); } elseif ($this->smarty->block_data[$_name]['mode'] == 'prepend') { - $_output = $_tpl->getCompiledTemplate() . $compiler->template->extracted_compiled_code; + $_output = $_tpl->getCompiledTemplate() . $compiler->parser->current_buffer->to_smarty_php(); } elseif ($this->smarty->block_data[$_name]['mode'] == 'append') { - $_output = $compiler->template->extracted_compiled_code . $_tpl->getCompiledTemplate(); + $_output = $compiler->parser->current_buffer->to_smarty_php() . $_tpl->getCompiledTemplate(); } elseif (!empty($this->smarty->block_data[$_name])) { $_output = $_tpl->getCompiledTemplate(); } @@ -102,11 +99,10 @@ class Smarty_Internal_Compile_Blockclose extends Smarty_Internal_CompileBase { } unset($_tpl); } else { - $_output = $compiler->template->extracted_compiled_code; + $_output = $compiler->parser->current_buffer->to_smarty_php(); } - $compiler->template->extracted_compiled_code = $saved_data[1]; - $compiler->template->extract_code = $saved_data[2]; - $compiler->nocache = $saved_data[3]; + $compiler->parser->current_buffer = $saved_data[1]; + $compiler->nocache = $saved_data[2]; // $_output content has already nocache code processed $compiler->suppressNocacheProcessing = true; return $_output; diff --git a/libs/sysplugins/smarty_internal_compile_function.php b/libs/sysplugins/smarty_internal_compile_function.php index 88eec3db..2226308d 100644 --- a/libs/sysplugins/smarty_internal_compile_function.php +++ b/libs/sysplugins/smarty_internal_compile_function.php @@ -26,7 +26,7 @@ class Smarty_Internal_Compile_Function extends Smarty_Internal_CompileBase { $this->optional_attributes = array('_any'); // check and get attributes $_attr = $this->_get_attributes($args); - $save = array($_attr, $compiler->template->extracted_compiled_code, $compiler->template->extract_code, + $save = array($_attr, $compiler->parser->current_buffer, $compiler->template->has_nocache_code, $compiler->template->required_plugins); $this->_open_tag('function', $save); $_name = trim($_attr['name'], "'\""); @@ -46,8 +46,8 @@ class Smarty_Internal_Compile_Function extends Smarty_Internal_CompileBase { } // Init temporay context $compiler->template->required_plugins = array('compiled' => array(), 'nocache' => array()); - $compiler->template->extract_code = true; - $compiler->template->extracted_compiled_code = $output; + $compiler->parser->current_buffer = new _smarty_template_buffer($compiler->parser); + $compiler->parser->current_buffer->append_subtree(new _smarty_tag($compiler->parser, $output)); $compiler->template->has_nocache_code = false; $compiler->has_code = false; $compiler->template->properties['function'][$_name]['compiled'] = ''; @@ -95,20 +95,19 @@ class Smarty_Internal_Compile_Functionclose extends Smarty_Internal_CompileBase // if caching save template function for possible nocache call if ($compiler->template->caching) { $compiler->template->properties['function'][$_name]['compiled'] .= $plugins_string - . $compiler->template->extracted_compiled_code; + . $compiler->parser->current_buffer->to_smarty_php(); $compiler->template->properties['function'][$_name]['nocache_hash'] = $compiler->template->properties['nocache_hash']; $compiler->template->properties['function'][$_name]['has_nocache_code'] = $compiler->template->has_nocache_code; $compiler->smarty->template_functions[$_name] = $compiler->template->properties['function'][$_name]; $compiler->has_code = false; $output = true; } else { - $output = $plugins_string . $compiler->template->extracted_compiled_code . "tpl_vars = \$saved_tpl_vars;}}?>\n"; + $output = $plugins_string . $compiler->parser->current_buffer->to_smarty_php() . "tpl_vars = \$saved_tpl_vars;}}?>\n"; } // restore old compiler status - $compiler->template->extracted_compiled_code = $saved_data[1]; - $compiler->template->extract_code = $saved_data[2]; - $compiler->template->has_nocache_code = $compiler->template->has_nocache_code | $saved_data[3]; - $compiler->template->required_plugins = $saved_data[4]; + $compiler->parser->current_buffer = $saved_data[1]; + $compiler->template->has_nocache_code = $compiler->template->has_nocache_code | $saved_data[2]; + $compiler->template->required_plugins = $saved_data[3]; return $output; } } diff --git a/libs/sysplugins/smarty_internal_parsetree.php b/libs/sysplugins/smarty_internal_parsetree.php index e0f99f34..19e4a94b 100644 --- a/libs/sysplugins/smarty_internal_parsetree.php +++ b/libs/sysplugins/smarty_internal_parsetree.php @@ -1,19 +1,19 @@ parser->compiler->has_variable_string = true; } } - // $code = sprintf("(%s)", $code); return $code; } } @@ -128,5 +127,94 @@ class _smarty_dq_content extends _smarty_parsetree { return '"' . $this->data . '"'; } } +/* Template element */ +class _smarty_template_buffer extends _smarty_parsetree { + public $subtrees = Array(); + function __construct($parser) + { + $this->parser = $parser; + } + + function append_subtree(_smarty_parsetree $subtree) + { + $this->subtrees[] = $subtree; + } + + public function to_smarty_php() + { + $code = ''; + for ($key = 0, $cnt = count($this->subtrees); $key < $cnt; $key++) { + if ($key + 2 < $cnt) { + if ($this->subtrees[$key] instanceof _smarty_linebreak && $this->subtrees[$key + 1] instanceof _smarty_tag && $this->subtrees[$key + 1]->data == '' && $this->subtrees[$key + 2] instanceof _smarty_linebreak) { + $key = $key + 1; + continue; + } + if (substr($this->subtrees[$key]->data, -1) == '<' && $this->subtrees[$key + 1]->data == '' && substr($this->subtrees[$key + 2]->data, -1) == '?') { + $key = $key + 2; + continue; + } + } + if (substr($code, -1) == '<') { + $subtree = $this->subtrees[$key]->to_smarty_php(); + if (substr($subtree, 0, 1) == '?') { + $code = substr($code, 0, strlen($code)-1) . '<?' . substr($subtree, 1); + } elseif ($this->parser->asp_tags && substr($subtree, 0, 1) == '%') { + $code = substr($code, 0, strlen($code)-1) . '<%' . substr($subtree, 1); + } else { + $code .= $subtree; + } + continue; + } + if ($this->parser->asp_tags && substr($code, -1) == '%') { + $subtree = $this->subtrees[$key]->to_smarty_php(); + if (substr($subtree, 0, 1) == '>') { + $code = substr($code, 0, strlen($code)-1) . '%>' . substr($subtree, 1); + } else { + $code .= $subtree; + } + continue; + } + if (substr($code, -1) == '?') { + $subtree = $this->subtrees[$key]->to_smarty_php(); + if (substr($subtree, 0, 1) == '>') { + $code = substr($code, 0, strlen($code)-1) . '?>' . substr($subtree, 1); + } else { + $code .= $subtree; + } + continue; + } + $code .= $this->subtrees[$key]->to_smarty_php(); + } + return $code; + } +} +/* template text */ +class _smarty_text extends _smarty_parsetree { + public $data; + function __construct($parser, $data) + { + $this->parser = $parser; + $this->data = $data; + } + + public function to_smarty_php() + { + return $this->data; + } +} +/* template linebreaks */ +class _smarty_linebreak extends _smarty_parsetree { + public $data; + function __construct($parser, $data) + { + $this->parser = $parser; + $this->data = $data; + } + + public function to_smarty_php() + { + return $this->data; + } +} ?> \ No newline at end of file diff --git a/libs/sysplugins/smarty_internal_template.php b/libs/sysplugins/smarty_internal_template.php index 24059dba..bef14c57 100644 --- a/libs/sysplugins/smarty_internal_template.php +++ b/libs/sysplugins/smarty_internal_template.php @@ -44,8 +44,6 @@ class Smarty_Internal_Template extends Smarty_Internal_Data { public $mustCompile = null; public $suppressHeader = false; public $suppressFileDependency = false; - public $extract_code = false; - public $extracted_compiled_code = ''; public $has_nocache_code = false; // Rendered content public $rendered_content = null; diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index ed694756..cf377000 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -63,6 +63,7 @@ class Smarty_Internal_Templatelexer 'QMARK' => '"?"', 'ID' => 'identifier', 'OTHER' => 'text', + 'LINEBREAK' => 'newline', 'FAKEPHPSTARTTAG' => 'Fake PHP start tag', 'PHPSTARTTAG' => 'PHP start tag', 'PHPENDTAG' => 'PHP end tag', @@ -247,7 +248,7 @@ class Smarty_Internal_Templatelexer if ($this->strip) { return false; } else { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_LINEBREAK; } } function yy_r1_9($yy_subpatterns) diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index 444d596e..ebded964 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -112,6 +112,7 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php $this->block_nesting_level = 0; $this->is_xml = false; $this->asp_tags = (ini_get('asp_tags') != '0'); + $this->current_buffer = $this->root_buffer = new _smarty_template_buffer($this); } public static function &instance($new_instance = null) { @@ -133,7 +134,7 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php } -#line 129 "smarty_internal_templateparser.php" +#line 130 "smarty_internal_templateparser.php" const TP_VERT = 1; const TP_COLON = 2; @@ -145,826 +146,815 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php const TP_FAKEPHPSTARTTAG = 8; const TP_XMLTAG = 9; const TP_OTHER = 10; - const TP_LITERALSTART = 11; - const TP_LITERALEND = 12; - const TP_LITERAL = 13; - const TP_LDEL = 14; - const TP_RDEL = 15; - const TP_DOLLAR = 16; - const TP_ID = 17; - const TP_EQUAL = 18; - const TP_PTR = 19; - const TP_LDELIF = 20; - const TP_SPACE = 21; - const TP_LDELFOR = 22; - const TP_SEMICOLON = 23; - const TP_INCDEC = 24; - const TP_TO = 25; - const TP_STEP = 26; - const TP_LDELFOREACH = 27; - const TP_AS = 28; - const TP_APTR = 29; - const TP_LDELSLASH = 30; - const TP_INTEGER = 31; - const TP_COMMA = 32; - const TP_MATH = 33; - const TP_UNIMATH = 34; - const TP_ANDSYM = 35; - const TP_ISIN = 36; - const TP_ISDIVBY = 37; - const TP_ISNOTDIVBY = 38; - const TP_ISEVEN = 39; - const TP_ISNOTEVEN = 40; - const TP_ISEVENBY = 41; - const TP_ISNOTEVENBY = 42; - const TP_ISODD = 43; - const TP_ISNOTODD = 44; - const TP_ISODDBY = 45; - const TP_ISNOTODDBY = 46; - const TP_INSTANCEOF = 47; - const TP_OPENP = 48; - const TP_CLOSEP = 49; - const TP_QMARK = 50; - const TP_NOT = 51; - const TP_TYPECAST = 52; - const TP_HEX = 53; - const TP_DOT = 54; - const TP_SINGLEQUOTESTRING = 55; - const TP_DOUBLECOLON = 56; - const TP_AT = 57; - const TP_HATCH = 58; - const TP_OPENB = 59; - const TP_CLOSEB = 60; - const TP_EQUALS = 61; - const TP_NOTEQUALS = 62; - const TP_GREATERTHAN = 63; - const TP_LESSTHAN = 64; - const TP_GREATEREQUAL = 65; - const TP_LESSEQUAL = 66; - const TP_IDENTITY = 67; - const TP_NONEIDENTITY = 68; - const TP_MOD = 69; - const TP_LAND = 70; - const TP_LOR = 71; - const TP_LXOR = 72; - const TP_QUOTE = 73; - const TP_BACKTICK = 74; - const TP_DOLLARID = 75; - const YY_NO_ACTION = 550; - const YY_ACCEPT_ACTION = 549; - const YY_ERROR_ACTION = 548; + const TP_LINEBREAK = 11; + const TP_LITERALSTART = 12; + const TP_LITERALEND = 13; + const TP_LITERAL = 14; + const TP_LDEL = 15; + const TP_RDEL = 16; + const TP_DOLLAR = 17; + const TP_ID = 18; + const TP_EQUAL = 19; + const TP_PTR = 20; + const TP_LDELIF = 21; + const TP_SPACE = 22; + const TP_LDELFOR = 23; + const TP_SEMICOLON = 24; + const TP_INCDEC = 25; + const TP_TO = 26; + const TP_STEP = 27; + const TP_LDELFOREACH = 28; + const TP_AS = 29; + const TP_APTR = 30; + const TP_LDELSLASH = 31; + const TP_INTEGER = 32; + const TP_COMMA = 33; + const TP_MATH = 34; + const TP_UNIMATH = 35; + const TP_ANDSYM = 36; + const TP_ISIN = 37; + const TP_ISDIVBY = 38; + const TP_ISNOTDIVBY = 39; + const TP_ISEVEN = 40; + const TP_ISNOTEVEN = 41; + const TP_ISEVENBY = 42; + const TP_ISNOTEVENBY = 43; + const TP_ISODD = 44; + const TP_ISNOTODD = 45; + const TP_ISODDBY = 46; + const TP_ISNOTODDBY = 47; + const TP_INSTANCEOF = 48; + const TP_OPENP = 49; + const TP_CLOSEP = 50; + const TP_QMARK = 51; + const TP_NOT = 52; + const TP_TYPECAST = 53; + const TP_HEX = 54; + const TP_DOT = 55; + const TP_SINGLEQUOTESTRING = 56; + const TP_DOUBLECOLON = 57; + const TP_AT = 58; + const TP_HATCH = 59; + const TP_OPENB = 60; + const TP_CLOSEB = 61; + const TP_EQUALS = 62; + const TP_NOTEQUALS = 63; + const TP_GREATERTHAN = 64; + const TP_LESSTHAN = 65; + const TP_GREATEREQUAL = 66; + const TP_LESSEQUAL = 67; + const TP_IDENTITY = 68; + const TP_NONEIDENTITY = 69; + const TP_MOD = 70; + const TP_LAND = 71; + const TP_LOR = 72; + const TP_LXOR = 73; + const TP_QUOTE = 74; + const TP_BACKTICK = 75; + const TP_DOLLARID = 76; + const YY_NO_ACTION = 552; + const YY_ACCEPT_ACTION = 551; + const YY_ERROR_ACTION = 550; - const YY_SZ_ACTTAB = 2360; + const YY_SZ_ACTTAB = 2295; static public $yy_action = array( - /* 0 */ 181, 240, 272, 271, 269, 264, 259, 257, 260, 284, - /* 10 */ 285, 232, 159, 210, 314, 2, 109, 205, 3, 3, - /* 20 */ 183, 199, 33, 206, 203, 309, 112, 112, 124, 10, - /* 30 */ 253, 216, 48, 42, 46, 41, 26, 16, 329, 328, - /* 40 */ 36, 37, 359, 347, 28, 29, 343, 352, 23, 92, - /* 50 */ 356, 340, 34, 159, 342, 332, 8, 45, 88, 117, - /* 60 */ 302, 300, 303, 304, 299, 290, 293, 297, 296, 307, - /* 70 */ 320, 319, 181, 321, 231, 23, 334, 100, 340, 97, - /* 80 */ 52, 118, 99, 153, 23, 286, 310, 340, 167, 207, - /* 90 */ 318, 208, 183, 89, 238, 243, 249, 324, 549, 83, - /* 100 */ 244, 272, 271, 193, 48, 42, 46, 41, 26, 16, - /* 110 */ 329, 328, 36, 37, 359, 347, 28, 29, 331, 23, - /* 120 */ 341, 23, 340, 20, 340, 34, 160, 292, 27, 283, - /* 130 */ 105, 278, 302, 300, 303, 304, 299, 290, 293, 297, - /* 140 */ 296, 307, 320, 319, 181, 288, 321, 234, 204, 4, - /* 150 */ 212, 123, 218, 66, 323, 110, 23, 274, 194, 340, - /* 160 */ 183, 139, 12, 318, 183, 237, 324, 238, 243, 25, - /* 170 */ 324, 192, 462, 150, 249, 335, 48, 42, 46, 41, - /* 180 */ 26, 16, 329, 328, 36, 37, 359, 347, 28, 29, - /* 190 */ 161, 280, 3, 157, 292, 421, 419, 360, 191, 156, - /* 200 */ 112, 421, 419, 103, 302, 300, 303, 304, 299, 290, - /* 210 */ 293, 297, 296, 307, 320, 319, 181, 321, 6, 188, - /* 220 */ 144, 100, 24, 101, 51, 118, 99, 45, 23, 3, - /* 230 */ 152, 340, 129, 249, 318, 163, 183, 112, 238, 243, - /* 240 */ 45, 324, 32, 249, 31, 14, 333, 250, 48, 42, - /* 250 */ 46, 41, 26, 16, 329, 328, 36, 37, 359, 347, - /* 260 */ 28, 29, 181, 171, 313, 158, 23, 171, 13, 340, - /* 270 */ 183, 220, 13, 234, 5, 129, 302, 300, 303, 304, - /* 280 */ 299, 290, 293, 297, 296, 307, 320, 319, 145, 23, - /* 290 */ 335, 30, 340, 11, 48, 42, 46, 41, 26, 16, - /* 300 */ 329, 328, 36, 37, 359, 347, 28, 29, 181, 208, - /* 310 */ 3, 418, 111, 15, 104, 107, 147, 183, 112, 325, - /* 320 */ 234, 140, 302, 300, 303, 304, 299, 290, 293, 297, - /* 330 */ 296, 307, 320, 319, 249, 23, 195, 175, 186, 39, - /* 340 */ 48, 42, 46, 41, 26, 16, 329, 328, 36, 37, - /* 350 */ 359, 347, 28, 29, 181, 163, 315, 349, 183, 209, - /* 360 */ 181, 86, 183, 183, 31, 14, 357, 246, 302, 300, - /* 370 */ 303, 304, 299, 290, 293, 297, 296, 307, 320, 319, - /* 380 */ 183, 23, 23, 214, 211, 179, 48, 42, 46, 41, - /* 390 */ 26, 16, 329, 328, 36, 37, 359, 347, 28, 29, - /* 400 */ 181, 93, 355, 305, 210, 154, 292, 45, 234, 183, - /* 410 */ 32, 357, 106, 132, 302, 300, 303, 304, 299, 290, - /* 420 */ 293, 297, 296, 307, 320, 319, 249, 353, 215, 219, - /* 430 */ 8, 316, 48, 42, 46, 41, 26, 16, 329, 328, - /* 440 */ 36, 37, 359, 347, 28, 29, 223, 346, 200, 361, - /* 450 */ 311, 298, 252, 312, 149, 183, 183, 183, 183, 183, - /* 460 */ 302, 300, 303, 304, 299, 290, 293, 297, 296, 307, - /* 470 */ 320, 319, 181, 321, 229, 151, 141, 178, 102, 218, - /* 480 */ 50, 121, 110, 45, 23, 344, 164, 340, 249, 249, - /* 490 */ 318, 263, 350, 276, 238, 243, 287, 324, 183, 217, - /* 500 */ 326, 7, 250, 250, 48, 42, 46, 41, 26, 16, - /* 510 */ 329, 328, 36, 37, 359, 347, 28, 29, 135, 301, - /* 520 */ 223, 270, 294, 165, 291, 183, 19, 183, 183, 251, - /* 530 */ 183, 249, 302, 300, 303, 304, 299, 290, 293, 297, - /* 540 */ 296, 307, 320, 319, 181, 321, 17, 226, 127, 174, - /* 550 */ 351, 218, 72, 256, 110, 295, 183, 336, 255, 146, - /* 560 */ 277, 183, 318, 183, 163, 91, 238, 243, 289, 324, - /* 570 */ 12, 281, 249, 31, 14, 242, 48, 42, 46, 41, - /* 580 */ 26, 16, 329, 328, 36, 37, 359, 347, 28, 29, - /* 590 */ 143, 224, 245, 265, 120, 168, 129, 197, 279, 119, - /* 600 */ 119, 308, 335, 249, 302, 300, 303, 304, 299, 290, - /* 610 */ 293, 297, 296, 307, 320, 319, 181, 321, 241, 280, - /* 620 */ 126, 212, 183, 218, 53, 122, 110, 138, 95, 148, - /* 630 */ 322, 134, 277, 111, 318, 113, 163, 129, 238, 243, - /* 640 */ 277, 324, 249, 317, 249, 31, 14, 40, 48, 42, - /* 650 */ 46, 41, 26, 16, 329, 328, 36, 37, 359, 347, - /* 660 */ 28, 29, 181, 18, 39, 335, 275, 250, 273, 94, - /* 670 */ 337, 87, 22, 90, 142, 137, 302, 300, 303, 304, - /* 680 */ 299, 290, 293, 297, 296, 307, 320, 319, 249, 155, - /* 690 */ 222, 262, 305, 305, 48, 42, 46, 41, 26, 16, - /* 700 */ 329, 328, 36, 37, 359, 347, 28, 29, 131, 125, - /* 710 */ 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, - /* 720 */ 277, 277, 302, 300, 303, 304, 299, 290, 293, 297, - /* 730 */ 296, 307, 320, 319, 181, 128, 305, 321, 96, 305, - /* 740 */ 108, 212, 305, 218, 75, 354, 110, 277, 166, 9, - /* 750 */ 277, 98, 277, 305, 318, 199, 305, 206, 238, 243, - /* 760 */ 305, 324, 124, 277, 305, 216, 48, 42, 46, 41, - /* 770 */ 26, 16, 329, 328, 36, 37, 359, 347, 28, 29, - /* 780 */ 133, 305, 305, 305, 305, 305, 305, 305, 305, 305, - /* 790 */ 305, 305, 305, 249, 302, 300, 303, 304, 299, 290, - /* 800 */ 293, 297, 296, 307, 320, 319, 181, 321, 345, 38, - /* 810 */ 358, 212, 181, 218, 79, 305, 110, 305, 305, 305, - /* 820 */ 227, 130, 305, 305, 318, 305, 338, 305, 238, 243, - /* 830 */ 189, 324, 183, 277, 305, 305, 305, 305, 48, 42, - /* 840 */ 46, 41, 26, 16, 329, 328, 36, 37, 359, 347, - /* 850 */ 28, 29, 181, 305, 305, 305, 305, 305, 305, 305, - /* 860 */ 305, 305, 305, 305, 305, 305, 302, 300, 303, 304, - /* 870 */ 299, 290, 293, 297, 296, 307, 320, 319, 305, 305, - /* 880 */ 305, 305, 305, 305, 48, 42, 46, 41, 26, 16, - /* 890 */ 329, 328, 36, 37, 359, 347, 28, 29, 305, 305, - /* 900 */ 235, 305, 305, 305, 305, 305, 305, 305, 305, 305, - /* 910 */ 305, 305, 302, 300, 303, 304, 299, 290, 293, 297, - /* 920 */ 296, 307, 320, 319, 181, 321, 305, 305, 305, 212, - /* 930 */ 305, 218, 49, 305, 110, 305, 305, 305, 268, 305, - /* 940 */ 305, 305, 318, 305, 305, 305, 238, 243, 305, 324, - /* 950 */ 305, 305, 305, 305, 305, 305, 48, 42, 46, 41, - /* 960 */ 26, 16, 329, 328, 36, 37, 359, 347, 28, 29, - /* 970 */ 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, - /* 980 */ 305, 305, 305, 305, 302, 300, 303, 304, 299, 290, - /* 990 */ 293, 297, 296, 307, 320, 319, 181, 305, 321, 305, - /* 1000 */ 305, 305, 212, 305, 218, 60, 305, 110, 305, 305, - /* 1010 */ 305, 136, 305, 305, 305, 318, 163, 305, 162, 238, - /* 1020 */ 243, 305, 324, 305, 249, 31, 14, 305, 48, 42, - /* 1030 */ 46, 41, 26, 16, 329, 328, 36, 37, 359, 347, - /* 1040 */ 28, 29, 181, 305, 305, 305, 305, 305, 305, 305, - /* 1050 */ 305, 305, 305, 305, 305, 305, 302, 300, 303, 304, - /* 1060 */ 299, 290, 293, 297, 296, 307, 320, 319, 305, 305, - /* 1070 */ 305, 305, 305, 305, 48, 42, 46, 41, 26, 16, - /* 1080 */ 329, 328, 36, 37, 359, 347, 28, 29, 305, 305, - /* 1090 */ 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, - /* 1100 */ 305, 305, 302, 300, 303, 304, 299, 290, 293, 297, - /* 1110 */ 296, 307, 320, 319, 305, 305, 305, 2, 305, 115, - /* 1120 */ 172, 305, 321, 199, 305, 206, 212, 305, 218, 61, - /* 1130 */ 124, 110, 305, 216, 198, 305, 305, 44, 305, 318, - /* 1140 */ 305, 305, 305, 238, 243, 305, 324, 305, 305, 305, - /* 1150 */ 305, 35, 305, 339, 47, 43, 267, 221, 239, 305, - /* 1160 */ 305, 88, 1, 248, 305, 305, 2, 305, 115, 182, - /* 1170 */ 305, 305, 199, 305, 206, 305, 84, 305, 305, 124, - /* 1180 */ 305, 305, 216, 198, 305, 305, 44, 305, 305, 305, - /* 1190 */ 305, 305, 321, 305, 305, 305, 212, 305, 218, 57, - /* 1200 */ 35, 110, 305, 47, 43, 267, 221, 239, 305, 318, - /* 1210 */ 88, 1, 305, 238, 243, 2, 324, 109, 182, 305, - /* 1220 */ 321, 199, 305, 206, 212, 84, 218, 61, 124, 110, - /* 1230 */ 305, 216, 198, 305, 305, 44, 305, 318, 305, 305, - /* 1240 */ 305, 238, 243, 305, 324, 305, 305, 305, 305, 35, - /* 1250 */ 305, 190, 47, 43, 267, 221, 239, 305, 305, 88, - /* 1260 */ 1, 305, 305, 305, 2, 305, 109, 169, 305, 305, - /* 1270 */ 199, 305, 206, 305, 84, 305, 305, 124, 305, 305, - /* 1280 */ 216, 185, 305, 305, 44, 305, 305, 305, 305, 305, - /* 1290 */ 321, 305, 305, 305, 212, 305, 218, 74, 35, 110, - /* 1300 */ 305, 47, 43, 267, 221, 239, 305, 318, 88, 1, - /* 1310 */ 305, 238, 243, 2, 324, 115, 182, 305, 321, 199, - /* 1320 */ 305, 206, 212, 84, 218, 61, 124, 110, 305, 216, - /* 1330 */ 198, 305, 305, 44, 305, 318, 305, 305, 305, 238, - /* 1340 */ 243, 305, 324, 305, 305, 305, 305, 21, 305, 202, - /* 1350 */ 47, 43, 267, 221, 239, 305, 305, 88, 1, 305, - /* 1360 */ 305, 305, 2, 305, 116, 85, 305, 305, 199, 305, - /* 1370 */ 206, 305, 84, 305, 305, 124, 305, 305, 216, 198, - /* 1380 */ 305, 305, 44, 305, 305, 305, 305, 305, 321, 305, - /* 1390 */ 305, 305, 212, 305, 218, 64, 21, 110, 305, 47, - /* 1400 */ 43, 267, 221, 239, 305, 318, 88, 1, 305, 238, - /* 1410 */ 243, 2, 324, 115, 173, 305, 321, 199, 305, 206, - /* 1420 */ 212, 84, 218, 61, 124, 110, 305, 216, 198, 305, - /* 1430 */ 305, 44, 305, 318, 305, 305, 305, 238, 243, 305, - /* 1440 */ 324, 305, 305, 305, 305, 35, 305, 196, 47, 43, - /* 1450 */ 267, 221, 239, 305, 305, 88, 1, 305, 305, 305, - /* 1460 */ 2, 305, 114, 182, 305, 305, 199, 305, 206, 305, - /* 1470 */ 84, 305, 305, 124, 305, 305, 216, 198, 305, 305, - /* 1480 */ 44, 305, 305, 305, 305, 305, 321, 305, 305, 305, - /* 1490 */ 212, 305, 218, 80, 35, 110, 305, 47, 43, 267, - /* 1500 */ 221, 239, 305, 318, 88, 1, 305, 238, 243, 2, - /* 1510 */ 324, 115, 170, 305, 321, 199, 305, 206, 212, 84, - /* 1520 */ 218, 59, 124, 110, 305, 216, 198, 305, 305, 44, - /* 1530 */ 305, 318, 305, 305, 305, 238, 243, 305, 324, 305, - /* 1540 */ 305, 305, 305, 21, 305, 305, 47, 43, 267, 221, - /* 1550 */ 239, 305, 305, 88, 1, 305, 305, 305, 2, 305, - /* 1560 */ 109, 182, 305, 305, 199, 305, 206, 305, 84, 354, - /* 1570 */ 305, 124, 305, 9, 216, 198, 305, 305, 44, 199, - /* 1580 */ 305, 206, 305, 305, 321, 305, 124, 305, 212, 216, - /* 1590 */ 218, 55, 35, 110, 305, 47, 43, 267, 221, 239, - /* 1600 */ 305, 318, 88, 305, 305, 238, 243, 2, 324, 109, - /* 1610 */ 177, 305, 305, 199, 305, 206, 305, 84, 305, 305, - /* 1620 */ 124, 305, 305, 216, 198, 305, 305, 44, 305, 305, - /* 1630 */ 305, 305, 348, 38, 358, 305, 305, 305, 305, 305, - /* 1640 */ 305, 35, 305, 305, 47, 43, 267, 221, 239, 305, - /* 1650 */ 305, 88, 321, 305, 305, 305, 184, 305, 218, 81, - /* 1660 */ 305, 110, 305, 305, 305, 305, 84, 305, 305, 318, - /* 1670 */ 305, 305, 305, 238, 243, 305, 324, 305, 305, 305, - /* 1680 */ 305, 305, 305, 321, 305, 176, 327, 184, 305, 218, - /* 1690 */ 81, 305, 110, 305, 305, 305, 305, 305, 305, 305, - /* 1700 */ 318, 305, 305, 305, 238, 243, 305, 324, 305, 305, - /* 1710 */ 305, 305, 305, 305, 321, 305, 305, 330, 212, 305, - /* 1720 */ 218, 78, 305, 110, 305, 305, 305, 305, 305, 305, - /* 1730 */ 305, 318, 305, 321, 305, 238, 243, 212, 324, 218, - /* 1740 */ 62, 305, 110, 305, 305, 305, 305, 305, 305, 305, - /* 1750 */ 318, 305, 305, 305, 238, 243, 305, 324, 305, 305, - /* 1760 */ 305, 305, 305, 305, 321, 305, 305, 305, 212, 305, - /* 1770 */ 218, 82, 305, 110, 305, 305, 305, 305, 305, 305, - /* 1780 */ 305, 318, 305, 305, 305, 238, 243, 305, 324, 305, - /* 1790 */ 305, 305, 305, 305, 305, 321, 305, 305, 305, 212, - /* 1800 */ 305, 218, 63, 305, 110, 305, 305, 305, 305, 305, - /* 1810 */ 305, 305, 318, 305, 321, 305, 238, 243, 212, 324, - /* 1820 */ 218, 77, 305, 110, 305, 305, 305, 305, 305, 305, - /* 1830 */ 305, 318, 305, 305, 305, 238, 243, 305, 324, 305, - /* 1840 */ 305, 305, 305, 305, 305, 321, 305, 305, 305, 212, - /* 1850 */ 305, 218, 54, 305, 110, 305, 305, 305, 305, 305, - /* 1860 */ 305, 305, 318, 305, 305, 305, 238, 243, 305, 324, - /* 1870 */ 305, 305, 305, 305, 305, 305, 321, 305, 305, 305, - /* 1880 */ 212, 305, 218, 68, 305, 110, 305, 305, 305, 305, - /* 1890 */ 305, 305, 305, 318, 305, 321, 305, 238, 243, 212, - /* 1900 */ 324, 218, 73, 305, 110, 305, 305, 305, 305, 305, - /* 1910 */ 305, 305, 318, 305, 305, 305, 238, 243, 305, 324, - /* 1920 */ 305, 305, 305, 305, 305, 305, 321, 305, 305, 305, - /* 1930 */ 212, 305, 180, 58, 305, 110, 305, 305, 305, 305, - /* 1940 */ 305, 305, 305, 318, 305, 305, 305, 238, 243, 305, - /* 1950 */ 324, 305, 305, 305, 305, 305, 305, 321, 305, 305, - /* 1960 */ 305, 212, 305, 218, 71, 305, 110, 305, 305, 305, - /* 1970 */ 305, 305, 305, 305, 318, 305, 321, 305, 238, 243, - /* 1980 */ 212, 324, 218, 65, 305, 110, 305, 305, 305, 305, - /* 1990 */ 305, 305, 305, 318, 305, 305, 305, 238, 243, 305, - /* 2000 */ 324, 305, 305, 305, 305, 305, 305, 321, 305, 305, - /* 2010 */ 305, 212, 305, 218, 56, 305, 110, 305, 305, 305, - /* 2020 */ 305, 305, 305, 305, 318, 305, 305, 305, 238, 243, - /* 2030 */ 305, 324, 305, 305, 305, 305, 305, 305, 321, 305, - /* 2040 */ 305, 305, 212, 305, 218, 76, 305, 110, 305, 305, - /* 2050 */ 305, 305, 305, 305, 305, 318, 305, 321, 305, 238, - /* 2060 */ 243, 212, 324, 218, 67, 305, 110, 305, 305, 305, - /* 2070 */ 305, 305, 305, 305, 318, 305, 305, 305, 238, 243, - /* 2080 */ 305, 324, 305, 305, 305, 305, 305, 305, 321, 305, - /* 2090 */ 305, 305, 212, 305, 218, 69, 305, 110, 305, 305, - /* 2100 */ 305, 305, 305, 305, 305, 318, 305, 305, 305, 238, - /* 2110 */ 243, 305, 324, 305, 305, 305, 305, 305, 305, 321, - /* 2120 */ 305, 305, 305, 212, 305, 218, 70, 305, 110, 305, - /* 2130 */ 305, 305, 305, 305, 305, 305, 318, 305, 321, 305, - /* 2140 */ 238, 243, 213, 324, 218, 305, 305, 110, 305, 305, - /* 2150 */ 305, 305, 305, 305, 305, 187, 305, 305, 305, 238, - /* 2160 */ 243, 305, 324, 305, 305, 305, 305, 305, 305, 321, - /* 2170 */ 305, 305, 305, 230, 305, 218, 305, 305, 110, 305, - /* 2180 */ 305, 305, 305, 305, 305, 305, 236, 305, 305, 305, - /* 2190 */ 238, 243, 305, 324, 305, 305, 305, 305, 305, 305, - /* 2200 */ 321, 305, 305, 305, 247, 305, 218, 321, 305, 110, - /* 2210 */ 305, 282, 305, 218, 305, 305, 110, 254, 305, 305, - /* 2220 */ 305, 238, 243, 305, 324, 305, 305, 305, 238, 243, - /* 2230 */ 305, 324, 305, 305, 305, 305, 321, 305, 305, 305, - /* 2240 */ 225, 305, 218, 321, 305, 110, 305, 261, 305, 218, - /* 2250 */ 321, 305, 110, 305, 266, 305, 218, 238, 243, 110, - /* 2260 */ 324, 305, 305, 305, 238, 243, 305, 324, 305, 305, - /* 2270 */ 305, 238, 243, 305, 324, 305, 305, 305, 305, 305, - /* 2280 */ 305, 321, 305, 305, 305, 233, 305, 218, 321, 305, - /* 2290 */ 110, 305, 228, 305, 218, 305, 305, 110, 305, 305, - /* 2300 */ 305, 305, 238, 243, 181, 324, 305, 305, 305, 238, - /* 2310 */ 243, 305, 324, 305, 305, 305, 305, 321, 306, 305, - /* 2320 */ 305, 258, 201, 218, 183, 305, 110, 305, 305, 305, - /* 2330 */ 305, 305, 305, 305, 305, 305, 305, 305, 238, 243, - /* 2340 */ 305, 324, 305, 305, 305, 305, 305, 305, 305, 305, - /* 2350 */ 305, 3, 305, 305, 305, 305, 305, 305, 305, 112, + /* 0 */ 183, 149, 160, 333, 298, 295, 294, 290, 289, 291, + /* 10 */ 292, 293, 300, 156, 265, 319, 3, 20, 272, 11, + /* 20 */ 269, 185, 186, 235, 199, 215, 17, 114, 266, 118, + /* 30 */ 6, 258, 211, 47, 44, 43, 41, 28, 27, 340, + /* 40 */ 339, 18, 29, 341, 342, 15, 14, 307, 302, 20, + /* 50 */ 36, 306, 269, 25, 183, 156, 308, 311, 225, 240, + /* 60 */ 9, 351, 358, 359, 360, 361, 357, 356, 352, 353, + /* 70 */ 354, 355, 338, 183, 321, 185, 150, 37, 201, 189, + /* 80 */ 205, 52, 122, 106, 551, 83, 231, 297, 299, 265, + /* 90 */ 8, 337, 171, 210, 185, 346, 345, 13, 262, 32, + /* 100 */ 464, 261, 276, 266, 161, 333, 47, 44, 43, 41, + /* 110 */ 28, 27, 340, 339, 18, 29, 341, 342, 15, 14, + /* 120 */ 11, 324, 4, 20, 259, 421, 269, 185, 114, 20, + /* 130 */ 267, 421, 269, 38, 351, 358, 359, 360, 361, 357, + /* 140 */ 356, 352, 353, 354, 355, 338, 183, 321, 159, 333, + /* 150 */ 143, 201, 239, 205, 61, 165, 106, 250, 11, 26, + /* 160 */ 140, 316, 127, 265, 337, 163, 114, 185, 346, 345, + /* 170 */ 336, 262, 194, 265, 23, 24, 185, 42, 191, 47, + /* 180 */ 44, 43, 41, 28, 27, 340, 339, 18, 29, 341, + /* 190 */ 342, 15, 14, 113, 217, 420, 146, 171, 273, 423, + /* 200 */ 267, 185, 13, 218, 267, 423, 121, 351, 358, 359, + /* 210 */ 360, 361, 357, 356, 352, 353, 354, 355, 338, 183, + /* 220 */ 321, 262, 20, 107, 173, 269, 205, 81, 228, 106, + /* 230 */ 183, 42, 350, 148, 242, 87, 20, 337, 163, 269, + /* 240 */ 38, 346, 345, 305, 262, 268, 265, 23, 24, 200, + /* 250 */ 362, 185, 47, 44, 43, 41, 28, 27, 340, 339, + /* 260 */ 18, 29, 341, 342, 15, 14, 183, 30, 8, 117, + /* 270 */ 136, 20, 213, 20, 269, 21, 269, 110, 280, 195, + /* 280 */ 351, 358, 359, 360, 361, 357, 356, 352, 353, 354, + /* 290 */ 355, 338, 312, 296, 297, 299, 5, 157, 34, 47, + /* 300 */ 44, 43, 41, 28, 27, 340, 339, 18, 29, 341, + /* 310 */ 342, 15, 14, 135, 197, 247, 194, 11, 166, 232, + /* 320 */ 103, 2, 127, 224, 202, 114, 265, 351, 358, 359, + /* 330 */ 360, 361, 357, 356, 352, 353, 354, 355, 338, 183, + /* 340 */ 321, 163, 270, 151, 201, 127, 205, 66, 185, 106, + /* 350 */ 23, 24, 188, 153, 93, 229, 265, 337, 163, 104, + /* 360 */ 185, 346, 345, 303, 262, 320, 265, 23, 24, 185, + /* 370 */ 266, 185, 47, 44, 43, 41, 28, 27, 340, 339, + /* 380 */ 18, 29, 341, 342, 15, 14, 183, 334, 304, 39, + /* 390 */ 323, 326, 273, 185, 185, 42, 185, 185, 22, 152, + /* 400 */ 351, 358, 359, 360, 361, 357, 356, 352, 353, 354, + /* 410 */ 355, 338, 265, 20, 185, 310, 178, 309, 287, 47, + /* 420 */ 44, 43, 41, 28, 27, 340, 339, 18, 29, 341, + /* 430 */ 342, 15, 14, 183, 206, 11, 251, 7, 318, 332, + /* 440 */ 254, 40, 185, 114, 185, 185, 233, 351, 358, 359, + /* 450 */ 360, 361, 357, 356, 352, 353, 354, 355, 338, 314, + /* 460 */ 147, 185, 273, 187, 181, 220, 47, 44, 43, 41, + /* 470 */ 28, 27, 340, 339, 18, 29, 341, 342, 15, 14, + /* 480 */ 142, 344, 285, 325, 264, 267, 263, 212, 124, 185, + /* 490 */ 185, 42, 185, 265, 351, 358, 359, 360, 361, 357, + /* 500 */ 356, 352, 353, 354, 355, 338, 183, 330, 321, 155, + /* 510 */ 20, 109, 179, 196, 205, 50, 120, 106, 158, 20, + /* 520 */ 271, 238, 269, 20, 243, 337, 269, 127, 282, 346, + /* 530 */ 345, 331, 262, 20, 222, 124, 192, 185, 204, 47, + /* 540 */ 44, 43, 41, 28, 27, 340, 339, 18, 29, 341, + /* 550 */ 342, 15, 14, 183, 317, 315, 286, 112, 209, 256, + /* 560 */ 185, 185, 195, 86, 104, 232, 145, 351, 358, 359, + /* 570 */ 360, 361, 357, 356, 352, 353, 354, 355, 338, 265, + /* 580 */ 22, 111, 206, 343, 92, 278, 47, 44, 43, 41, + /* 590 */ 28, 27, 340, 339, 18, 29, 341, 342, 15, 14, + /* 600 */ 193, 329, 190, 281, 105, 244, 260, 42, 255, 198, + /* 610 */ 119, 273, 9, 277, 351, 358, 359, 360, 361, 357, + /* 620 */ 356, 352, 353, 354, 355, 338, 183, 321, 234, 132, + /* 630 */ 133, 201, 214, 205, 61, 164, 106, 301, 125, 141, + /* 640 */ 144, 288, 265, 265, 337, 163, 16, 134, 346, 345, + /* 650 */ 279, 262, 265, 265, 23, 24, 94, 276, 223, 47, + /* 660 */ 44, 43, 41, 28, 27, 340, 339, 18, 29, 341, + /* 670 */ 342, 15, 14, 131, 128, 248, 88, 40, 322, 307, + /* 680 */ 139, 138, 162, 307, 266, 279, 279, 351, 358, 359, + /* 690 */ 360, 361, 357, 356, 352, 353, 354, 355, 338, 183, + /* 700 */ 321, 91, 137, 90, 201, 89, 205, 61, 126, 106, + /* 710 */ 307, 95, 307, 100, 168, 265, 130, 337, 102, 307, + /* 720 */ 279, 346, 345, 279, 262, 279, 307, 307, 279, 307, + /* 730 */ 279, 221, 47, 44, 43, 41, 28, 27, 340, 339, + /* 740 */ 18, 29, 341, 342, 15, 14, 129, 96, 307, 307, + /* 750 */ 307, 307, 307, 307, 307, 307, 307, 307, 279, 279, + /* 760 */ 351, 358, 359, 360, 361, 357, 356, 352, 353, 354, + /* 770 */ 355, 338, 183, 307, 307, 321, 307, 307, 307, 99, + /* 780 */ 307, 97, 49, 123, 101, 307, 307, 307, 307, 307, + /* 790 */ 307, 307, 337, 307, 307, 154, 346, 345, 307, 262, + /* 800 */ 307, 307, 307, 307, 307, 47, 44, 43, 41, 28, + /* 810 */ 27, 340, 339, 18, 29, 341, 342, 15, 14, 183, + /* 820 */ 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, + /* 830 */ 307, 307, 307, 351, 358, 359, 360, 361, 357, 356, + /* 840 */ 352, 353, 354, 355, 338, 307, 307, 307, 307, 307, + /* 850 */ 307, 10, 47, 44, 43, 41, 28, 27, 340, 339, + /* 860 */ 18, 29, 341, 342, 15, 14, 307, 307, 307, 307, + /* 870 */ 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, + /* 880 */ 351, 358, 359, 360, 361, 357, 356, 352, 353, 354, + /* 890 */ 355, 338, 183, 321, 307, 307, 307, 201, 307, 205, + /* 900 */ 61, 307, 106, 307, 307, 307, 307, 167, 307, 307, + /* 910 */ 337, 307, 307, 307, 346, 345, 307, 262, 307, 307, + /* 920 */ 307, 307, 307, 307, 249, 47, 44, 43, 41, 28, + /* 930 */ 27, 340, 339, 18, 29, 341, 342, 15, 14, 183, + /* 940 */ 33, 307, 307, 307, 307, 307, 307, 307, 307, 307, + /* 950 */ 307, 307, 307, 351, 358, 359, 360, 361, 357, 356, + /* 960 */ 352, 353, 354, 355, 338, 307, 307, 307, 307, 307, + /* 970 */ 307, 307, 47, 44, 43, 41, 28, 27, 340, 339, + /* 980 */ 18, 29, 341, 342, 15, 14, 307, 307, 307, 307, + /* 990 */ 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, + /* 1000 */ 351, 358, 359, 360, 361, 357, 356, 352, 353, 354, + /* 1010 */ 355, 338, 183, 321, 307, 307, 307, 99, 307, 98, + /* 1020 */ 53, 123, 101, 307, 307, 307, 307, 252, 307, 307, + /* 1030 */ 337, 307, 307, 307, 346, 345, 307, 262, 307, 307, + /* 1040 */ 307, 307, 307, 307, 307, 47, 44, 43, 41, 28, + /* 1050 */ 27, 340, 339, 18, 29, 341, 342, 15, 14, 183, + /* 1060 */ 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, + /* 1070 */ 307, 307, 307, 351, 358, 359, 360, 361, 357, 356, + /* 1080 */ 352, 353, 354, 355, 338, 307, 307, 307, 307, 307, + /* 1090 */ 307, 307, 47, 44, 43, 41, 28, 27, 340, 339, + /* 1100 */ 18, 29, 341, 342, 15, 14, 307, 307, 307, 307, + /* 1110 */ 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, + /* 1120 */ 351, 358, 359, 360, 361, 357, 356, 352, 353, 354, + /* 1130 */ 355, 338, 307, 307, 307, 307, 3, 307, 115, 172, + /* 1140 */ 307, 321, 186, 307, 199, 201, 307, 205, 68, 118, + /* 1150 */ 106, 307, 211, 203, 307, 307, 48, 307, 337, 307, + /* 1160 */ 307, 307, 346, 345, 307, 262, 307, 307, 307, 307, + /* 1170 */ 19, 307, 307, 46, 45, 284, 207, 349, 307, 307, + /* 1180 */ 87, 1, 257, 307, 307, 307, 3, 307, 115, 174, + /* 1190 */ 307, 307, 186, 307, 199, 84, 307, 307, 307, 118, + /* 1200 */ 226, 307, 211, 203, 307, 12, 48, 307, 307, 307, + /* 1210 */ 307, 186, 307, 199, 307, 307, 307, 307, 118, 307, + /* 1220 */ 19, 211, 307, 46, 45, 284, 207, 349, 307, 307, + /* 1230 */ 87, 1, 307, 307, 307, 307, 3, 307, 115, 175, + /* 1240 */ 307, 307, 186, 307, 199, 84, 307, 307, 307, 118, + /* 1250 */ 226, 307, 211, 203, 307, 12, 48, 307, 307, 307, + /* 1260 */ 307, 186, 307, 199, 328, 35, 236, 307, 118, 307, + /* 1270 */ 19, 211, 307, 46, 45, 284, 207, 349, 307, 307, + /* 1280 */ 87, 1, 307, 307, 307, 307, 3, 321, 115, 175, + /* 1290 */ 307, 219, 186, 205, 199, 84, 106, 307, 307, 118, + /* 1300 */ 307, 307, 211, 203, 208, 307, 48, 307, 346, 345, + /* 1310 */ 307, 262, 307, 307, 327, 35, 236, 307, 307, 307, + /* 1320 */ 31, 307, 307, 46, 45, 284, 207, 349, 307, 307, + /* 1330 */ 87, 1, 307, 307, 307, 307, 3, 321, 108, 85, + /* 1340 */ 307, 246, 186, 205, 199, 84, 106, 307, 307, 118, + /* 1350 */ 307, 307, 211, 203, 245, 307, 48, 307, 346, 345, + /* 1360 */ 307, 262, 307, 321, 307, 307, 307, 283, 307, 205, + /* 1370 */ 31, 307, 106, 46, 45, 284, 207, 349, 307, 307, + /* 1380 */ 87, 1, 307, 307, 346, 345, 3, 262, 115, 169, + /* 1390 */ 307, 307, 186, 307, 199, 84, 307, 307, 307, 118, + /* 1400 */ 307, 307, 211, 203, 307, 307, 48, 307, 307, 307, + /* 1410 */ 307, 307, 307, 321, 307, 307, 307, 313, 307, 205, + /* 1420 */ 31, 307, 106, 46, 45, 284, 207, 349, 307, 307, + /* 1430 */ 87, 1, 307, 307, 346, 345, 3, 262, 113, 170, + /* 1440 */ 307, 307, 186, 307, 199, 84, 307, 307, 307, 118, + /* 1450 */ 307, 307, 211, 184, 307, 307, 48, 307, 307, 307, + /* 1460 */ 307, 307, 307, 321, 307, 307, 307, 237, 307, 205, + /* 1470 */ 19, 307, 106, 46, 45, 284, 207, 349, 307, 307, + /* 1480 */ 87, 1, 307, 307, 346, 345, 3, 262, 113, 175, + /* 1490 */ 307, 307, 186, 307, 199, 84, 307, 307, 307, 118, + /* 1500 */ 307, 307, 211, 203, 307, 307, 48, 307, 307, 307, + /* 1510 */ 307, 307, 307, 321, 307, 307, 307, 274, 307, 205, + /* 1520 */ 19, 307, 106, 46, 45, 284, 207, 349, 307, 307, + /* 1530 */ 87, 1, 307, 307, 346, 345, 3, 262, 116, 175, + /* 1540 */ 307, 307, 186, 307, 199, 84, 307, 307, 307, 118, + /* 1550 */ 307, 307, 211, 203, 307, 307, 48, 307, 307, 307, + /* 1560 */ 307, 307, 307, 321, 307, 307, 307, 253, 307, 205, + /* 1570 */ 19, 307, 106, 46, 45, 284, 207, 349, 307, 307, + /* 1580 */ 87, 1, 307, 307, 346, 345, 3, 262, 113, 180, + /* 1590 */ 307, 307, 186, 307, 199, 84, 307, 307, 307, 118, + /* 1600 */ 307, 307, 211, 203, 307, 307, 48, 321, 307, 307, + /* 1610 */ 307, 241, 307, 205, 307, 307, 106, 307, 307, 307, + /* 1620 */ 19, 307, 307, 46, 45, 284, 207, 349, 346, 345, + /* 1630 */ 87, 262, 307, 307, 307, 307, 3, 307, 113, 175, + /* 1640 */ 307, 307, 186, 307, 199, 84, 307, 307, 307, 118, + /* 1650 */ 307, 307, 211, 203, 307, 307, 48, 307, 307, 307, + /* 1660 */ 307, 307, 321, 307, 307, 307, 176, 307, 205, 74, + /* 1670 */ 19, 106, 307, 46, 45, 284, 207, 349, 307, 337, + /* 1680 */ 87, 321, 307, 346, 345, 176, 262, 205, 74, 307, + /* 1690 */ 106, 307, 307, 307, 307, 84, 227, 307, 337, 307, + /* 1700 */ 307, 307, 346, 345, 307, 262, 307, 307, 307, 307, + /* 1710 */ 307, 307, 321, 307, 182, 230, 201, 307, 205, 78, + /* 1720 */ 307, 106, 307, 307, 307, 307, 307, 307, 307, 337, + /* 1730 */ 307, 321, 307, 346, 345, 201, 262, 205, 82, 307, + /* 1740 */ 106, 307, 307, 307, 307, 307, 307, 307, 337, 307, + /* 1750 */ 321, 307, 346, 345, 201, 262, 205, 76, 307, 106, + /* 1760 */ 307, 307, 307, 307, 307, 307, 307, 337, 307, 321, + /* 1770 */ 307, 346, 345, 201, 262, 205, 72, 307, 106, 307, + /* 1780 */ 307, 307, 307, 307, 307, 307, 337, 307, 307, 307, + /* 1790 */ 346, 345, 307, 262, 321, 307, 307, 307, 201, 307, + /* 1800 */ 205, 67, 307, 106, 307, 307, 307, 307, 307, 307, + /* 1810 */ 307, 337, 307, 321, 307, 346, 345, 201, 262, 205, + /* 1820 */ 55, 307, 106, 307, 307, 307, 307, 307, 307, 307, + /* 1830 */ 337, 307, 321, 307, 346, 345, 201, 262, 205, 69, + /* 1840 */ 307, 106, 307, 307, 307, 307, 307, 307, 307, 337, + /* 1850 */ 307, 321, 307, 346, 345, 201, 262, 205, 57, 307, + /* 1860 */ 106, 307, 307, 307, 307, 307, 307, 307, 337, 307, + /* 1870 */ 307, 307, 346, 345, 307, 262, 321, 307, 307, 307, + /* 1880 */ 201, 307, 205, 71, 307, 106, 307, 307, 307, 307, + /* 1890 */ 307, 307, 307, 337, 307, 321, 307, 346, 345, 201, + /* 1900 */ 262, 205, 63, 307, 106, 307, 307, 307, 307, 307, + /* 1910 */ 307, 307, 337, 307, 321, 307, 346, 345, 201, 262, + /* 1920 */ 205, 58, 307, 106, 307, 307, 307, 307, 307, 307, + /* 1930 */ 307, 337, 307, 321, 307, 346, 345, 201, 262, 205, + /* 1940 */ 56, 307, 106, 307, 307, 307, 307, 307, 307, 307, + /* 1950 */ 337, 307, 307, 307, 346, 345, 307, 262, 321, 307, + /* 1960 */ 307, 307, 201, 307, 205, 75, 307, 106, 307, 307, + /* 1970 */ 307, 307, 307, 307, 307, 337, 307, 321, 307, 346, + /* 1980 */ 345, 201, 262, 205, 62, 307, 106, 307, 307, 307, + /* 1990 */ 307, 307, 307, 307, 337, 307, 321, 307, 346, 345, + /* 2000 */ 201, 262, 205, 79, 307, 106, 307, 307, 307, 307, + /* 2010 */ 307, 307, 307, 337, 307, 321, 307, 346, 345, 201, + /* 2020 */ 262, 205, 77, 307, 106, 307, 307, 307, 307, 307, + /* 2030 */ 307, 307, 337, 307, 307, 307, 346, 345, 307, 262, + /* 2040 */ 321, 307, 307, 307, 201, 307, 205, 80, 307, 106, + /* 2050 */ 307, 307, 307, 307, 307, 307, 307, 337, 307, 321, + /* 2060 */ 307, 346, 345, 201, 262, 177, 54, 307, 106, 307, + /* 2070 */ 307, 307, 307, 307, 307, 307, 337, 307, 321, 307, + /* 2080 */ 346, 345, 201, 262, 205, 73, 307, 106, 307, 307, + /* 2090 */ 307, 307, 307, 307, 307, 337, 307, 321, 307, 346, + /* 2100 */ 345, 201, 262, 205, 51, 307, 106, 307, 307, 307, + /* 2110 */ 307, 307, 307, 307, 337, 307, 307, 307, 346, 345, + /* 2120 */ 307, 262, 321, 307, 307, 307, 201, 307, 205, 60, + /* 2130 */ 307, 106, 307, 307, 307, 307, 307, 307, 307, 337, + /* 2140 */ 307, 321, 307, 346, 345, 201, 262, 205, 59, 307, + /* 2150 */ 106, 307, 307, 307, 307, 307, 307, 307, 337, 307, + /* 2160 */ 321, 307, 346, 345, 201, 262, 205, 70, 307, 106, + /* 2170 */ 307, 307, 307, 307, 307, 307, 307, 337, 307, 321, + /* 2180 */ 307, 346, 345, 201, 262, 205, 64, 307, 106, 307, + /* 2190 */ 307, 307, 307, 307, 307, 307, 337, 307, 307, 307, + /* 2200 */ 346, 345, 307, 262, 321, 307, 307, 307, 201, 307, + /* 2210 */ 205, 65, 307, 106, 307, 307, 307, 307, 307, 307, + /* 2220 */ 307, 337, 307, 321, 307, 346, 345, 348, 262, 205, + /* 2230 */ 321, 307, 106, 307, 275, 307, 205, 307, 183, 106, + /* 2240 */ 347, 307, 307, 307, 346, 345, 307, 262, 307, 307, + /* 2250 */ 307, 346, 345, 335, 262, 307, 307, 216, 307, 185, + /* 2260 */ 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, + /* 2270 */ 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, + /* 2280 */ 307, 307, 307, 307, 307, 307, 11, 307, 307, 307, + /* 2290 */ 307, 307, 307, 307, 114, ); static public $yy_lookahead = array( - /* 0 */ 1, 79, 80, 81, 3, 4, 5, 6, 7, 8, - /* 10 */ 9, 10, 11, 2, 15, 14, 16, 17, 48, 48, - /* 20 */ 21, 20, 14, 22, 54, 15, 56, 56, 27, 18, - /* 30 */ 60, 30, 33, 34, 35, 36, 37, 38, 39, 40, - /* 40 */ 41, 42, 43, 44, 45, 46, 4, 5, 14, 91, - /* 50 */ 8, 17, 18, 11, 12, 13, 48, 47, 58, 16, - /* 60 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - /* 70 */ 71, 72, 1, 80, 15, 14, 15, 84, 17, 86, - /* 80 */ 87, 88, 89, 85, 14, 15, 15, 17, 90, 17, - /* 90 */ 97, 57, 21, 91, 101, 102, 98, 104, 77, 78, - /* 100 */ 79, 80, 81, 31, 33, 34, 35, 36, 37, 38, - /* 110 */ 39, 40, 41, 42, 43, 44, 45, 46, 81, 14, - /* 120 */ 83, 14, 17, 18, 17, 18, 108, 109, 14, 24, - /* 130 */ 16, 17, 61, 62, 63, 64, 65, 66, 67, 68, - /* 140 */ 69, 70, 71, 72, 1, 31, 80, 24, 86, 48, - /* 150 */ 84, 89, 86, 87, 15, 89, 14, 15, 92, 17, - /* 160 */ 21, 85, 18, 97, 21, 49, 104, 101, 102, 26, - /* 170 */ 104, 29, 28, 105, 98, 107, 33, 34, 35, 36, - /* 180 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - /* 190 */ 23, 106, 48, 108, 109, 15, 15, 74, 28, 32, - /* 200 */ 56, 21, 21, 16, 61, 62, 63, 64, 65, 66, - /* 210 */ 67, 68, 69, 70, 71, 72, 1, 80, 32, 17, - /* 220 */ 85, 84, 29, 86, 87, 88, 89, 47, 14, 48, - /* 230 */ 85, 17, 19, 98, 97, 90, 21, 56, 101, 102, - /* 240 */ 47, 104, 18, 98, 99, 100, 60, 112, 33, 34, - /* 250 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 260 */ 45, 46, 1, 54, 15, 17, 14, 54, 59, 17, - /* 270 */ 21, 57, 59, 24, 18, 19, 61, 62, 63, 64, - /* 280 */ 65, 66, 67, 68, 69, 70, 71, 72, 105, 14, - /* 290 */ 107, 29, 17, 32, 33, 34, 35, 36, 37, 38, - /* 300 */ 39, 40, 41, 42, 43, 44, 45, 46, 1, 57, - /* 310 */ 48, 15, 56, 14, 16, 16, 17, 21, 56, 17, - /* 320 */ 24, 85, 61, 62, 63, 64, 65, 66, 67, 68, - /* 330 */ 69, 70, 71, 72, 98, 14, 92, 93, 17, 2, - /* 340 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - /* 350 */ 43, 44, 45, 46, 1, 90, 15, 15, 21, 57, - /* 360 */ 1, 17, 21, 21, 99, 100, 80, 60, 61, 62, - /* 370 */ 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, - /* 380 */ 21, 14, 14, 28, 17, 17, 33, 34, 35, 36, - /* 390 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - /* 400 */ 1, 115, 116, 15, 2, 108, 109, 47, 24, 21, - /* 410 */ 18, 80, 16, 85, 61, 62, 63, 64, 65, 66, - /* 420 */ 67, 68, 69, 70, 71, 72, 98, 74, 16, 17, - /* 430 */ 48, 15, 33, 34, 35, 36, 37, 38, 39, 40, - /* 440 */ 41, 42, 43, 44, 45, 46, 54, 116, 49, 15, - /* 450 */ 15, 15, 15, 15, 105, 21, 21, 21, 21, 21, - /* 460 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - /* 470 */ 71, 72, 1, 80, 31, 85, 85, 84, 16, 86, - /* 480 */ 87, 88, 89, 47, 14, 15, 15, 17, 98, 98, - /* 490 */ 97, 31, 15, 17, 101, 102, 17, 104, 21, 29, - /* 500 */ 17, 21, 112, 112, 33, 34, 35, 36, 37, 38, - /* 510 */ 39, 40, 41, 42, 43, 44, 45, 46, 85, 15, - /* 520 */ 54, 15, 15, 90, 15, 21, 25, 21, 21, 60, - /* 530 */ 21, 98, 61, 62, 63, 64, 65, 66, 67, 68, - /* 540 */ 69, 70, 71, 72, 1, 80, 50, 49, 95, 84, - /* 550 */ 15, 86, 87, 88, 89, 15, 21, 15, 15, 85, - /* 560 */ 107, 21, 97, 21, 90, 17, 101, 102, 49, 104, - /* 570 */ 18, 17, 98, 99, 100, 58, 33, 34, 35, 36, - /* 580 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - /* 590 */ 85, 96, 103, 103, 21, 90, 19, 17, 15, 110, - /* 600 */ 110, 98, 107, 98, 61, 62, 63, 64, 65, 66, - /* 610 */ 67, 68, 69, 70, 71, 72, 1, 80, 58, 106, - /* 620 */ 95, 84, 21, 86, 87, 88, 89, 105, 95, 85, - /* 630 */ 15, 85, 107, 56, 97, 16, 90, 19, 101, 102, - /* 640 */ 107, 104, 98, 109, 98, 99, 100, 21, 33, 34, - /* 650 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 660 */ 45, 46, 1, 2, 2, 107, 110, 112, 21, 82, - /* 670 */ 12, 105, 94, 91, 105, 85, 61, 62, 63, 64, - /* 680 */ 65, 66, 67, 68, 69, 70, 71, 72, 98, 91, - /* 690 */ 94, 92, 117, 117, 33, 34, 35, 36, 37, 38, - /* 700 */ 39, 40, 41, 42, 43, 44, 45, 46, 95, 95, - /* 710 */ 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, - /* 720 */ 107, 107, 61, 62, 63, 64, 65, 66, 67, 68, - /* 730 */ 69, 70, 71, 72, 1, 95, 117, 80, 95, 117, - /* 740 */ 95, 84, 117, 86, 87, 10, 89, 107, 15, 14, - /* 750 */ 107, 95, 107, 117, 97, 20, 117, 22, 101, 102, - /* 760 */ 117, 104, 27, 107, 117, 30, 33, 34, 35, 36, - /* 770 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - /* 780 */ 85, 117, 117, 117, 117, 117, 117, 117, 117, 117, - /* 790 */ 117, 117, 117, 98, 61, 62, 63, 64, 65, 66, - /* 800 */ 67, 68, 69, 70, 71, 72, 1, 80, 73, 74, - /* 810 */ 75, 84, 1, 86, 87, 117, 89, 117, 117, 117, - /* 820 */ 15, 95, 117, 117, 97, 117, 15, 117, 101, 102, - /* 830 */ 19, 104, 21, 107, 117, 117, 117, 117, 33, 34, - /* 840 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 850 */ 45, 46, 1, 117, 117, 117, 117, 117, 117, 117, - /* 860 */ 117, 117, 117, 117, 117, 117, 61, 62, 63, 64, - /* 870 */ 65, 66, 67, 68, 69, 70, 71, 72, 117, 117, - /* 880 */ 117, 117, 117, 117, 33, 34, 35, 36, 37, 38, - /* 890 */ 39, 40, 41, 42, 43, 44, 45, 46, 117, 117, - /* 900 */ 49, 117, 117, 117, 117, 117, 117, 117, 117, 117, - /* 910 */ 117, 117, 61, 62, 63, 64, 65, 66, 67, 68, - /* 920 */ 69, 70, 71, 72, 1, 80, 117, 117, 117, 84, - /* 930 */ 117, 86, 87, 117, 89, 117, 117, 117, 15, 117, - /* 940 */ 117, 117, 97, 117, 117, 117, 101, 102, 117, 104, - /* 950 */ 117, 117, 117, 117, 117, 117, 33, 34, 35, 36, - /* 960 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - /* 970 */ 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, - /* 980 */ 117, 117, 117, 117, 61, 62, 63, 64, 65, 66, - /* 990 */ 67, 68, 69, 70, 71, 72, 1, 117, 80, 117, - /* 1000 */ 117, 117, 84, 117, 86, 87, 117, 89, 117, 117, - /* 1010 */ 117, 85, 117, 117, 117, 97, 90, 117, 23, 101, - /* 1020 */ 102, 117, 104, 117, 98, 99, 100, 117, 33, 34, - /* 1030 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 1040 */ 45, 46, 1, 117, 117, 117, 117, 117, 117, 117, - /* 1050 */ 117, 117, 117, 117, 117, 117, 61, 62, 63, 64, - /* 1060 */ 65, 66, 67, 68, 69, 70, 71, 72, 117, 117, - /* 1070 */ 117, 117, 117, 117, 33, 34, 35, 36, 37, 38, - /* 1080 */ 39, 40, 41, 42, 43, 44, 45, 46, 117, 117, - /* 1090 */ 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, - /* 1100 */ 117, 117, 61, 62, 63, 64, 65, 66, 67, 68, - /* 1110 */ 69, 70, 71, 72, 117, 117, 117, 14, 117, 16, - /* 1120 */ 17, 117, 80, 20, 117, 22, 84, 117, 86, 87, - /* 1130 */ 27, 89, 117, 30, 31, 117, 117, 34, 117, 97, - /* 1140 */ 117, 117, 117, 101, 102, 117, 104, 117, 117, 117, - /* 1150 */ 117, 48, 117, 111, 51, 52, 53, 54, 55, 117, - /* 1160 */ 117, 58, 59, 60, 117, 117, 14, 117, 16, 17, - /* 1170 */ 117, 117, 20, 117, 22, 117, 73, 117, 117, 27, - /* 1180 */ 117, 117, 30, 31, 117, 117, 34, 117, 117, 117, - /* 1190 */ 117, 117, 80, 117, 117, 117, 84, 117, 86, 87, - /* 1200 */ 48, 89, 117, 51, 52, 53, 54, 55, 117, 97, - /* 1210 */ 58, 59, 117, 101, 102, 14, 104, 16, 17, 117, - /* 1220 */ 80, 20, 117, 22, 84, 73, 86, 87, 27, 89, - /* 1230 */ 117, 30, 31, 117, 117, 34, 117, 97, 117, 117, - /* 1240 */ 117, 101, 102, 117, 104, 117, 117, 117, 117, 48, - /* 1250 */ 117, 111, 51, 52, 53, 54, 55, 117, 117, 58, - /* 1260 */ 59, 117, 117, 117, 14, 117, 16, 17, 117, 117, - /* 1270 */ 20, 117, 22, 117, 73, 117, 117, 27, 117, 117, - /* 1280 */ 30, 31, 117, 117, 34, 117, 117, 117, 117, 117, - /* 1290 */ 80, 117, 117, 117, 84, 117, 86, 87, 48, 89, - /* 1300 */ 117, 51, 52, 53, 54, 55, 117, 97, 58, 59, - /* 1310 */ 117, 101, 102, 14, 104, 16, 17, 117, 80, 20, - /* 1320 */ 117, 22, 84, 73, 86, 87, 27, 89, 117, 30, - /* 1330 */ 31, 117, 117, 34, 117, 97, 117, 117, 117, 101, - /* 1340 */ 102, 117, 104, 117, 117, 117, 117, 48, 117, 111, - /* 1350 */ 51, 52, 53, 54, 55, 117, 117, 58, 59, 117, - /* 1360 */ 117, 117, 14, 117, 16, 17, 117, 117, 20, 117, - /* 1370 */ 22, 117, 73, 117, 117, 27, 117, 117, 30, 31, - /* 1380 */ 117, 117, 34, 117, 117, 117, 117, 117, 80, 117, - /* 1390 */ 117, 117, 84, 117, 86, 87, 48, 89, 117, 51, - /* 1400 */ 52, 53, 54, 55, 117, 97, 58, 59, 117, 101, - /* 1410 */ 102, 14, 104, 16, 17, 117, 80, 20, 117, 22, - /* 1420 */ 84, 73, 86, 87, 27, 89, 117, 30, 31, 117, - /* 1430 */ 117, 34, 117, 97, 117, 117, 117, 101, 102, 117, - /* 1440 */ 104, 117, 117, 117, 117, 48, 117, 111, 51, 52, - /* 1450 */ 53, 54, 55, 117, 117, 58, 59, 117, 117, 117, - /* 1460 */ 14, 117, 16, 17, 117, 117, 20, 117, 22, 117, - /* 1470 */ 73, 117, 117, 27, 117, 117, 30, 31, 117, 117, - /* 1480 */ 34, 117, 117, 117, 117, 117, 80, 117, 117, 117, - /* 1490 */ 84, 117, 86, 87, 48, 89, 117, 51, 52, 53, - /* 1500 */ 54, 55, 117, 97, 58, 59, 117, 101, 102, 14, - /* 1510 */ 104, 16, 17, 117, 80, 20, 117, 22, 84, 73, - /* 1520 */ 86, 87, 27, 89, 117, 30, 31, 117, 117, 34, - /* 1530 */ 117, 97, 117, 117, 117, 101, 102, 117, 104, 117, - /* 1540 */ 117, 117, 117, 48, 117, 117, 51, 52, 53, 54, - /* 1550 */ 55, 117, 117, 58, 59, 117, 117, 117, 14, 117, - /* 1560 */ 16, 17, 117, 117, 20, 117, 22, 117, 73, 10, - /* 1570 */ 117, 27, 117, 14, 30, 31, 117, 117, 34, 20, - /* 1580 */ 117, 22, 117, 117, 80, 117, 27, 117, 84, 30, - /* 1590 */ 86, 87, 48, 89, 117, 51, 52, 53, 54, 55, - /* 1600 */ 117, 97, 58, 117, 117, 101, 102, 14, 104, 16, - /* 1610 */ 17, 117, 117, 20, 117, 22, 117, 73, 117, 117, - /* 1620 */ 27, 117, 117, 30, 31, 117, 117, 34, 117, 117, - /* 1630 */ 117, 117, 73, 74, 75, 117, 117, 117, 117, 117, - /* 1640 */ 117, 48, 117, 117, 51, 52, 53, 54, 55, 117, - /* 1650 */ 117, 58, 80, 117, 117, 117, 84, 117, 86, 87, - /* 1660 */ 117, 89, 117, 117, 117, 117, 73, 117, 117, 97, - /* 1670 */ 117, 117, 117, 101, 102, 117, 104, 117, 117, 117, - /* 1680 */ 117, 117, 117, 80, 117, 113, 114, 84, 117, 86, - /* 1690 */ 87, 117, 89, 117, 117, 117, 117, 117, 117, 117, - /* 1700 */ 97, 117, 117, 117, 101, 102, 117, 104, 117, 117, - /* 1710 */ 117, 117, 117, 117, 80, 117, 117, 114, 84, 117, - /* 1720 */ 86, 87, 117, 89, 117, 117, 117, 117, 117, 117, - /* 1730 */ 117, 97, 117, 80, 117, 101, 102, 84, 104, 86, - /* 1740 */ 87, 117, 89, 117, 117, 117, 117, 117, 117, 117, - /* 1750 */ 97, 117, 117, 117, 101, 102, 117, 104, 117, 117, - /* 1760 */ 117, 117, 117, 117, 80, 117, 117, 117, 84, 117, - /* 1770 */ 86, 87, 117, 89, 117, 117, 117, 117, 117, 117, - /* 1780 */ 117, 97, 117, 117, 117, 101, 102, 117, 104, 117, - /* 1790 */ 117, 117, 117, 117, 117, 80, 117, 117, 117, 84, - /* 1800 */ 117, 86, 87, 117, 89, 117, 117, 117, 117, 117, - /* 1810 */ 117, 117, 97, 117, 80, 117, 101, 102, 84, 104, - /* 1820 */ 86, 87, 117, 89, 117, 117, 117, 117, 117, 117, - /* 1830 */ 117, 97, 117, 117, 117, 101, 102, 117, 104, 117, - /* 1840 */ 117, 117, 117, 117, 117, 80, 117, 117, 117, 84, - /* 1850 */ 117, 86, 87, 117, 89, 117, 117, 117, 117, 117, - /* 1860 */ 117, 117, 97, 117, 117, 117, 101, 102, 117, 104, - /* 1870 */ 117, 117, 117, 117, 117, 117, 80, 117, 117, 117, - /* 1880 */ 84, 117, 86, 87, 117, 89, 117, 117, 117, 117, - /* 1890 */ 117, 117, 117, 97, 117, 80, 117, 101, 102, 84, - /* 1900 */ 104, 86, 87, 117, 89, 117, 117, 117, 117, 117, - /* 1910 */ 117, 117, 97, 117, 117, 117, 101, 102, 117, 104, - /* 1920 */ 117, 117, 117, 117, 117, 117, 80, 117, 117, 117, - /* 1930 */ 84, 117, 86, 87, 117, 89, 117, 117, 117, 117, - /* 1940 */ 117, 117, 117, 97, 117, 117, 117, 101, 102, 117, - /* 1950 */ 104, 117, 117, 117, 117, 117, 117, 80, 117, 117, - /* 1960 */ 117, 84, 117, 86, 87, 117, 89, 117, 117, 117, - /* 1970 */ 117, 117, 117, 117, 97, 117, 80, 117, 101, 102, - /* 1980 */ 84, 104, 86, 87, 117, 89, 117, 117, 117, 117, - /* 1990 */ 117, 117, 117, 97, 117, 117, 117, 101, 102, 117, - /* 2000 */ 104, 117, 117, 117, 117, 117, 117, 80, 117, 117, - /* 2010 */ 117, 84, 117, 86, 87, 117, 89, 117, 117, 117, - /* 2020 */ 117, 117, 117, 117, 97, 117, 117, 117, 101, 102, - /* 2030 */ 117, 104, 117, 117, 117, 117, 117, 117, 80, 117, - /* 2040 */ 117, 117, 84, 117, 86, 87, 117, 89, 117, 117, - /* 2050 */ 117, 117, 117, 117, 117, 97, 117, 80, 117, 101, - /* 2060 */ 102, 84, 104, 86, 87, 117, 89, 117, 117, 117, - /* 2070 */ 117, 117, 117, 117, 97, 117, 117, 117, 101, 102, - /* 2080 */ 117, 104, 117, 117, 117, 117, 117, 117, 80, 117, - /* 2090 */ 117, 117, 84, 117, 86, 87, 117, 89, 117, 117, - /* 2100 */ 117, 117, 117, 117, 117, 97, 117, 117, 117, 101, - /* 2110 */ 102, 117, 104, 117, 117, 117, 117, 117, 117, 80, - /* 2120 */ 117, 117, 117, 84, 117, 86, 87, 117, 89, 117, - /* 2130 */ 117, 117, 117, 117, 117, 117, 97, 117, 80, 117, - /* 2140 */ 101, 102, 84, 104, 86, 117, 117, 89, 117, 117, - /* 2150 */ 117, 117, 117, 117, 117, 97, 117, 117, 117, 101, - /* 2160 */ 102, 117, 104, 117, 117, 117, 117, 117, 117, 80, - /* 2170 */ 117, 117, 117, 84, 117, 86, 117, 117, 89, 117, - /* 2180 */ 117, 117, 117, 117, 117, 117, 97, 117, 117, 117, - /* 2190 */ 101, 102, 117, 104, 117, 117, 117, 117, 117, 117, - /* 2200 */ 80, 117, 117, 117, 84, 117, 86, 80, 117, 89, - /* 2210 */ 117, 84, 117, 86, 117, 117, 89, 97, 117, 117, - /* 2220 */ 117, 101, 102, 117, 104, 117, 117, 117, 101, 102, - /* 2230 */ 117, 104, 117, 117, 117, 117, 80, 117, 117, 117, - /* 2240 */ 84, 117, 86, 80, 117, 89, 117, 84, 117, 86, - /* 2250 */ 80, 117, 89, 117, 84, 117, 86, 101, 102, 89, - /* 2260 */ 104, 117, 117, 117, 101, 102, 117, 104, 117, 117, - /* 2270 */ 117, 101, 102, 117, 104, 117, 117, 117, 117, 117, - /* 2280 */ 117, 80, 117, 117, 117, 84, 117, 86, 80, 117, - /* 2290 */ 89, 117, 84, 117, 86, 117, 117, 89, 117, 117, - /* 2300 */ 117, 117, 101, 102, 1, 104, 117, 117, 117, 101, - /* 2310 */ 102, 117, 104, 117, 117, 117, 117, 80, 15, 117, - /* 2320 */ 117, 84, 19, 86, 21, 117, 89, 117, 117, 117, - /* 2330 */ 117, 117, 117, 117, 117, 117, 117, 117, 101, 102, - /* 2340 */ 117, 104, 117, 117, 117, 117, 117, 117, 117, 117, - /* 2350 */ 117, 48, 117, 117, 117, 117, 117, 117, 117, 56, + /* 0 */ 1, 86, 109, 110, 3, 4, 5, 6, 7, 8, + /* 10 */ 9, 10, 11, 12, 99, 16, 15, 15, 16, 49, + /* 20 */ 18, 22, 21, 50, 23, 55, 15, 57, 113, 28, + /* 30 */ 33, 61, 31, 34, 35, 36, 37, 38, 39, 40, + /* 40 */ 41, 42, 43, 44, 45, 46, 47, 4, 5, 15, + /* 50 */ 26, 8, 18, 19, 1, 12, 13, 14, 61, 25, + /* 60 */ 49, 62, 63, 64, 65, 66, 67, 68, 69, 70, + /* 70 */ 71, 72, 73, 1, 81, 22, 86, 51, 85, 18, + /* 80 */ 87, 88, 89, 90, 78, 79, 80, 81, 82, 99, + /* 90 */ 19, 98, 55, 32, 22, 102, 103, 60, 105, 27, + /* 100 */ 29, 16, 107, 113, 109, 110, 34, 35, 36, 37, + /* 110 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + /* 120 */ 49, 16, 49, 15, 16, 16, 18, 22, 57, 15, + /* 130 */ 25, 22, 18, 19, 62, 63, 64, 65, 66, 67, + /* 140 */ 68, 69, 70, 71, 72, 73, 1, 81, 109, 110, + /* 150 */ 86, 85, 50, 87, 88, 91, 90, 50, 49, 30, + /* 160 */ 86, 16, 20, 99, 98, 91, 57, 22, 102, 103, + /* 170 */ 16, 105, 58, 99, 100, 101, 22, 48, 112, 34, + /* 180 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + /* 190 */ 45, 46, 47, 17, 18, 16, 106, 55, 108, 16, + /* 200 */ 25, 22, 60, 87, 25, 22, 90, 62, 63, 64, + /* 210 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 1, + /* 220 */ 81, 105, 15, 17, 85, 18, 87, 88, 89, 90, + /* 230 */ 1, 48, 18, 86, 16, 59, 15, 98, 91, 18, + /* 240 */ 19, 102, 103, 99, 105, 16, 99, 100, 101, 20, + /* 250 */ 75, 22, 34, 35, 36, 37, 38, 39, 40, 41, + /* 260 */ 42, 43, 44, 45, 46, 47, 1, 15, 19, 17, + /* 270 */ 18, 15, 58, 15, 18, 15, 18, 17, 18, 2, + /* 280 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + /* 290 */ 72, 73, 32, 80, 81, 82, 19, 18, 30, 34, + /* 300 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + /* 310 */ 45, 46, 47, 86, 58, 50, 58, 49, 91, 81, + /* 320 */ 17, 19, 20, 17, 18, 57, 99, 62, 63, 64, + /* 330 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 1, + /* 340 */ 81, 91, 16, 86, 85, 20, 87, 88, 22, 90, + /* 350 */ 100, 101, 93, 86, 116, 117, 99, 98, 91, 57, + /* 360 */ 22, 102, 103, 16, 105, 16, 99, 100, 101, 22, + /* 370 */ 113, 22, 34, 35, 36, 37, 38, 39, 40, 41, + /* 380 */ 42, 43, 44, 45, 46, 47, 1, 16, 16, 22, + /* 390 */ 16, 16, 108, 22, 22, 48, 22, 22, 19, 86, + /* 400 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + /* 410 */ 72, 73, 99, 15, 22, 82, 18, 84, 16, 34, + /* 420 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + /* 430 */ 45, 46, 47, 1, 55, 49, 16, 22, 16, 16, + /* 440 */ 111, 2, 22, 57, 22, 22, 61, 62, 63, 64, + /* 450 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 16, + /* 460 */ 106, 22, 108, 93, 94, 29, 34, 35, 36, 37, + /* 470 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + /* 480 */ 86, 104, 32, 16, 16, 25, 16, 18, 111, 22, + /* 490 */ 22, 48, 22, 99, 62, 63, 64, 65, 66, 67, + /* 500 */ 68, 69, 70, 71, 72, 73, 1, 75, 81, 24, + /* 510 */ 15, 17, 85, 18, 87, 88, 89, 90, 33, 15, + /* 520 */ 16, 16, 18, 15, 16, 98, 18, 20, 104, 102, + /* 530 */ 103, 16, 105, 15, 30, 111, 18, 22, 30, 34, + /* 540 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + /* 550 */ 45, 46, 47, 1, 16, 16, 32, 17, 29, 61, + /* 560 */ 22, 22, 2, 18, 57, 81, 86, 62, 63, 64, + /* 570 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 99, + /* 580 */ 19, 17, 55, 18, 18, 18, 34, 35, 36, 37, + /* 590 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + /* 600 */ 97, 117, 50, 18, 17, 16, 59, 48, 59, 18, + /* 610 */ 22, 108, 49, 18, 62, 63, 64, 65, 66, 67, + /* 620 */ 68, 69, 70, 71, 72, 73, 1, 81, 22, 86, + /* 630 */ 86, 85, 95, 87, 88, 91, 90, 13, 96, 86, + /* 640 */ 86, 16, 99, 99, 98, 91, 95, 106, 102, 103, + /* 650 */ 108, 105, 99, 99, 100, 101, 83, 107, 112, 34, + /* 660 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + /* 670 */ 45, 46, 47, 96, 96, 93, 106, 2, 110, 118, + /* 680 */ 106, 106, 92, 118, 113, 108, 108, 62, 63, 64, + /* 690 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 1, + /* 700 */ 81, 92, 86, 92, 85, 92, 87, 88, 96, 90, + /* 710 */ 118, 96, 118, 96, 16, 99, 96, 98, 96, 118, + /* 720 */ 108, 102, 103, 108, 105, 108, 118, 118, 108, 118, + /* 730 */ 108, 112, 34, 35, 36, 37, 38, 39, 40, 41, + /* 740 */ 42, 43, 44, 45, 46, 47, 96, 96, 118, 118, + /* 750 */ 118, 118, 118, 118, 118, 118, 118, 118, 108, 108, + /* 760 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + /* 770 */ 72, 73, 1, 118, 118, 81, 118, 118, 118, 85, + /* 780 */ 118, 87, 88, 89, 90, 118, 118, 118, 118, 118, + /* 790 */ 118, 118, 98, 118, 118, 24, 102, 103, 118, 105, + /* 800 */ 118, 118, 118, 118, 118, 34, 35, 36, 37, 38, + /* 810 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 1, + /* 820 */ 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, + /* 830 */ 118, 118, 118, 62, 63, 64, 65, 66, 67, 68, + /* 840 */ 69, 70, 71, 72, 73, 118, 118, 118, 118, 118, + /* 850 */ 118, 33, 34, 35, 36, 37, 38, 39, 40, 41, + /* 860 */ 42, 43, 44, 45, 46, 47, 118, 118, 118, 118, + /* 870 */ 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, + /* 880 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + /* 890 */ 72, 73, 1, 81, 118, 118, 118, 85, 118, 87, + /* 900 */ 88, 118, 90, 118, 118, 118, 118, 16, 118, 118, + /* 910 */ 98, 118, 118, 118, 102, 103, 118, 105, 118, 118, + /* 920 */ 118, 118, 118, 118, 112, 34, 35, 36, 37, 38, + /* 930 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 1, + /* 940 */ 2, 118, 118, 118, 118, 118, 118, 118, 118, 118, + /* 950 */ 118, 118, 118, 62, 63, 64, 65, 66, 67, 68, + /* 960 */ 69, 70, 71, 72, 73, 118, 118, 118, 118, 118, + /* 970 */ 118, 118, 34, 35, 36, 37, 38, 39, 40, 41, + /* 980 */ 42, 43, 44, 45, 46, 47, 118, 118, 118, 118, + /* 990 */ 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, + /* 1000 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + /* 1010 */ 72, 73, 1, 81, 118, 118, 118, 85, 118, 87, + /* 1020 */ 88, 89, 90, 118, 118, 118, 118, 16, 118, 118, + /* 1030 */ 98, 118, 118, 118, 102, 103, 118, 105, 118, 118, + /* 1040 */ 118, 118, 118, 118, 118, 34, 35, 36, 37, 38, + /* 1050 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 1, + /* 1060 */ 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, + /* 1070 */ 118, 118, 118, 62, 63, 64, 65, 66, 67, 68, + /* 1080 */ 69, 70, 71, 72, 73, 118, 118, 118, 118, 118, + /* 1090 */ 118, 118, 34, 35, 36, 37, 38, 39, 40, 41, + /* 1100 */ 42, 43, 44, 45, 46, 47, 118, 118, 118, 118, + /* 1110 */ 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, + /* 1120 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + /* 1130 */ 72, 73, 118, 118, 118, 118, 15, 118, 17, 18, + /* 1140 */ 118, 81, 21, 118, 23, 85, 118, 87, 88, 28, + /* 1150 */ 90, 118, 31, 32, 118, 118, 35, 118, 98, 118, + /* 1160 */ 118, 118, 102, 103, 118, 105, 118, 118, 118, 118, + /* 1170 */ 49, 118, 118, 52, 53, 54, 55, 56, 118, 118, + /* 1180 */ 59, 60, 61, 118, 118, 118, 15, 118, 17, 18, + /* 1190 */ 118, 118, 21, 118, 23, 74, 118, 118, 118, 28, + /* 1200 */ 10, 118, 31, 32, 118, 15, 35, 118, 118, 118, + /* 1210 */ 118, 21, 118, 23, 118, 118, 118, 118, 28, 118, + /* 1220 */ 49, 31, 118, 52, 53, 54, 55, 56, 118, 118, + /* 1230 */ 59, 60, 118, 118, 118, 118, 15, 118, 17, 18, + /* 1240 */ 118, 118, 21, 118, 23, 74, 118, 118, 118, 28, + /* 1250 */ 10, 118, 31, 32, 118, 15, 35, 118, 118, 118, + /* 1260 */ 118, 21, 118, 23, 74, 75, 76, 118, 28, 118, + /* 1270 */ 49, 31, 118, 52, 53, 54, 55, 56, 118, 118, + /* 1280 */ 59, 60, 118, 118, 118, 118, 15, 81, 17, 18, + /* 1290 */ 118, 85, 21, 87, 23, 74, 90, 118, 118, 28, + /* 1300 */ 118, 118, 31, 32, 98, 118, 35, 118, 102, 103, + /* 1310 */ 118, 105, 118, 118, 74, 75, 76, 118, 118, 118, + /* 1320 */ 49, 118, 118, 52, 53, 54, 55, 56, 118, 118, + /* 1330 */ 59, 60, 118, 118, 118, 118, 15, 81, 17, 18, + /* 1340 */ 118, 85, 21, 87, 23, 74, 90, 118, 118, 28, + /* 1350 */ 118, 118, 31, 32, 98, 118, 35, 118, 102, 103, + /* 1360 */ 118, 105, 118, 81, 118, 118, 118, 85, 118, 87, + /* 1370 */ 49, 118, 90, 52, 53, 54, 55, 56, 118, 118, + /* 1380 */ 59, 60, 118, 118, 102, 103, 15, 105, 17, 18, + /* 1390 */ 118, 118, 21, 118, 23, 74, 118, 118, 118, 28, + /* 1400 */ 118, 118, 31, 32, 118, 118, 35, 118, 118, 118, + /* 1410 */ 118, 118, 118, 81, 118, 118, 118, 85, 118, 87, + /* 1420 */ 49, 118, 90, 52, 53, 54, 55, 56, 118, 118, + /* 1430 */ 59, 60, 118, 118, 102, 103, 15, 105, 17, 18, + /* 1440 */ 118, 118, 21, 118, 23, 74, 118, 118, 118, 28, + /* 1450 */ 118, 118, 31, 32, 118, 118, 35, 118, 118, 118, + /* 1460 */ 118, 118, 118, 81, 118, 118, 118, 85, 118, 87, + /* 1470 */ 49, 118, 90, 52, 53, 54, 55, 56, 118, 118, + /* 1480 */ 59, 60, 118, 118, 102, 103, 15, 105, 17, 18, + /* 1490 */ 118, 118, 21, 118, 23, 74, 118, 118, 118, 28, + /* 1500 */ 118, 118, 31, 32, 118, 118, 35, 118, 118, 118, + /* 1510 */ 118, 118, 118, 81, 118, 118, 118, 85, 118, 87, + /* 1520 */ 49, 118, 90, 52, 53, 54, 55, 56, 118, 118, + /* 1530 */ 59, 60, 118, 118, 102, 103, 15, 105, 17, 18, + /* 1540 */ 118, 118, 21, 118, 23, 74, 118, 118, 118, 28, + /* 1550 */ 118, 118, 31, 32, 118, 118, 35, 118, 118, 118, + /* 1560 */ 118, 118, 118, 81, 118, 118, 118, 85, 118, 87, + /* 1570 */ 49, 118, 90, 52, 53, 54, 55, 56, 118, 118, + /* 1580 */ 59, 60, 118, 118, 102, 103, 15, 105, 17, 18, + /* 1590 */ 118, 118, 21, 118, 23, 74, 118, 118, 118, 28, + /* 1600 */ 118, 118, 31, 32, 118, 118, 35, 81, 118, 118, + /* 1610 */ 118, 85, 118, 87, 118, 118, 90, 118, 118, 118, + /* 1620 */ 49, 118, 118, 52, 53, 54, 55, 56, 102, 103, + /* 1630 */ 59, 105, 118, 118, 118, 118, 15, 118, 17, 18, + /* 1640 */ 118, 118, 21, 118, 23, 74, 118, 118, 118, 28, + /* 1650 */ 118, 118, 31, 32, 118, 118, 35, 118, 118, 118, + /* 1660 */ 118, 118, 81, 118, 118, 118, 85, 118, 87, 88, + /* 1670 */ 49, 90, 118, 52, 53, 54, 55, 56, 118, 98, + /* 1680 */ 59, 81, 118, 102, 103, 85, 105, 87, 88, 118, + /* 1690 */ 90, 118, 118, 118, 118, 74, 115, 118, 98, 118, + /* 1700 */ 118, 118, 102, 103, 118, 105, 118, 118, 118, 118, + /* 1710 */ 118, 118, 81, 118, 114, 115, 85, 118, 87, 88, + /* 1720 */ 118, 90, 118, 118, 118, 118, 118, 118, 118, 98, + /* 1730 */ 118, 81, 118, 102, 103, 85, 105, 87, 88, 118, + /* 1740 */ 90, 118, 118, 118, 118, 118, 118, 118, 98, 118, + /* 1750 */ 81, 118, 102, 103, 85, 105, 87, 88, 118, 90, + /* 1760 */ 118, 118, 118, 118, 118, 118, 118, 98, 118, 81, + /* 1770 */ 118, 102, 103, 85, 105, 87, 88, 118, 90, 118, + /* 1780 */ 118, 118, 118, 118, 118, 118, 98, 118, 118, 118, + /* 1790 */ 102, 103, 118, 105, 81, 118, 118, 118, 85, 118, + /* 1800 */ 87, 88, 118, 90, 118, 118, 118, 118, 118, 118, + /* 1810 */ 118, 98, 118, 81, 118, 102, 103, 85, 105, 87, + /* 1820 */ 88, 118, 90, 118, 118, 118, 118, 118, 118, 118, + /* 1830 */ 98, 118, 81, 118, 102, 103, 85, 105, 87, 88, + /* 1840 */ 118, 90, 118, 118, 118, 118, 118, 118, 118, 98, + /* 1850 */ 118, 81, 118, 102, 103, 85, 105, 87, 88, 118, + /* 1860 */ 90, 118, 118, 118, 118, 118, 118, 118, 98, 118, + /* 1870 */ 118, 118, 102, 103, 118, 105, 81, 118, 118, 118, + /* 1880 */ 85, 118, 87, 88, 118, 90, 118, 118, 118, 118, + /* 1890 */ 118, 118, 118, 98, 118, 81, 118, 102, 103, 85, + /* 1900 */ 105, 87, 88, 118, 90, 118, 118, 118, 118, 118, + /* 1910 */ 118, 118, 98, 118, 81, 118, 102, 103, 85, 105, + /* 1920 */ 87, 88, 118, 90, 118, 118, 118, 118, 118, 118, + /* 1930 */ 118, 98, 118, 81, 118, 102, 103, 85, 105, 87, + /* 1940 */ 88, 118, 90, 118, 118, 118, 118, 118, 118, 118, + /* 1950 */ 98, 118, 118, 118, 102, 103, 118, 105, 81, 118, + /* 1960 */ 118, 118, 85, 118, 87, 88, 118, 90, 118, 118, + /* 1970 */ 118, 118, 118, 118, 118, 98, 118, 81, 118, 102, + /* 1980 */ 103, 85, 105, 87, 88, 118, 90, 118, 118, 118, + /* 1990 */ 118, 118, 118, 118, 98, 118, 81, 118, 102, 103, + /* 2000 */ 85, 105, 87, 88, 118, 90, 118, 118, 118, 118, + /* 2010 */ 118, 118, 118, 98, 118, 81, 118, 102, 103, 85, + /* 2020 */ 105, 87, 88, 118, 90, 118, 118, 118, 118, 118, + /* 2030 */ 118, 118, 98, 118, 118, 118, 102, 103, 118, 105, + /* 2040 */ 81, 118, 118, 118, 85, 118, 87, 88, 118, 90, + /* 2050 */ 118, 118, 118, 118, 118, 118, 118, 98, 118, 81, + /* 2060 */ 118, 102, 103, 85, 105, 87, 88, 118, 90, 118, + /* 2070 */ 118, 118, 118, 118, 118, 118, 98, 118, 81, 118, + /* 2080 */ 102, 103, 85, 105, 87, 88, 118, 90, 118, 118, + /* 2090 */ 118, 118, 118, 118, 118, 98, 118, 81, 118, 102, + /* 2100 */ 103, 85, 105, 87, 88, 118, 90, 118, 118, 118, + /* 2110 */ 118, 118, 118, 118, 98, 118, 118, 118, 102, 103, + /* 2120 */ 118, 105, 81, 118, 118, 118, 85, 118, 87, 88, + /* 2130 */ 118, 90, 118, 118, 118, 118, 118, 118, 118, 98, + /* 2140 */ 118, 81, 118, 102, 103, 85, 105, 87, 88, 118, + /* 2150 */ 90, 118, 118, 118, 118, 118, 118, 118, 98, 118, + /* 2160 */ 81, 118, 102, 103, 85, 105, 87, 88, 118, 90, + /* 2170 */ 118, 118, 118, 118, 118, 118, 118, 98, 118, 81, + /* 2180 */ 118, 102, 103, 85, 105, 87, 88, 118, 90, 118, + /* 2190 */ 118, 118, 118, 118, 118, 118, 98, 118, 118, 118, + /* 2200 */ 102, 103, 118, 105, 81, 118, 118, 118, 85, 118, + /* 2210 */ 87, 88, 118, 90, 118, 118, 118, 118, 118, 118, + /* 2220 */ 118, 98, 118, 81, 118, 102, 103, 85, 105, 87, + /* 2230 */ 81, 118, 90, 118, 85, 118, 87, 118, 1, 90, + /* 2240 */ 98, 118, 118, 118, 102, 103, 118, 105, 118, 118, + /* 2250 */ 118, 102, 103, 16, 105, 118, 118, 20, 118, 22, + /* 2260 */ 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, + /* 2270 */ 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, + /* 2280 */ 118, 118, 118, 118, 118, 118, 49, 118, 118, 118, + /* 2290 */ 118, 118, 118, 118, 57, ); const YY_SHIFT_USE_DFLT = -31; const YY_SHIFT_MAX = 224; static public $yy_shift_ofst = array( - /* 0 */ 1, 1397, 1348, 1152, 1152, 1299, 1397, 1446, 1152, 1348, - /* 10 */ 1299, 1152, 1495, 1103, 1152, 1152, 1152, 1152, 1152, 1152, - /* 20 */ 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, - /* 30 */ 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1201, - /* 40 */ 1250, 1201, 1544, 1544, 1544, 1593, 1544, 1544, 1544, 143, - /* 50 */ 71, -1, 215, 215, 851, 307, 805, 995, 353, 661, - /* 60 */ 399, 261, 733, 923, 543, 471, 615, 1041, 1041, 1041, - /* 70 */ 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, - /* 80 */ 1041, 1041, 1041, 1, 1559, 2303, 811, 213, 0, 337, - /* 90 */ 337, 359, 337, 735, 42, 105, 34, 296, 252, 256, - /* 100 */ 436, 249, 275, 275, 275, 275, 275, 321, 275, 275, - /* 110 */ 577, 412, 412, 275, 367, 367, 368, 275, 601, 618, - /* 120 */ 619, 601, 601, 618, 626, 470, 142, 70, 214, 299, - /* 130 */ 107, 61, 139, 542, 506, 504, 507, 540, 209, 535, - /* 140 */ 509, 477, 209, 388, 342, 209, 435, 8, 438, 209, - /* 150 */ 209, 437, 341, 434, 618, 662, 619, 618, 101, 658, - /* 160 */ 618, 647, 647, -31, -31, -31, -31, -31, -31, 144, - /* 170 */ 181, 114, -30, 262, 180, 167, 186, -29, 10, 11, - /* 180 */ 123, 302, -29, 72, 193, 392, 101, 170, 59, 202, - /* 190 */ 116, 187, 43, 224, 583, 501, 498, 469, 466, 480, - /* 200 */ 496, 548, 519, 580, 560, 517, 573, 552, 554, 483, - /* 210 */ 479, 402, 360, 355, 396, 248, 344, 298, 384, 382, - /* 220 */ 476, 460, 462, 443, 416, + /* 0 */ 1, 1171, 1271, 1321, 1221, 1271, 1171, 1521, 1371, 1221, + /* 10 */ 1221, 1221, 1321, 1121, 1221, 1221, 1221, 1221, 1221, 1221, + /* 20 */ 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, + /* 30 */ 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1421, + /* 40 */ 1471, 1471, 1571, 1621, 1621, 1621, 1621, 1621, 1621, -1, + /* 50 */ 145, 72, 338, 338, 432, 265, 218, 385, 505, 938, + /* 60 */ 1011, 818, 891, 771, 698, 552, 625, 1058, 1058, 1058, + /* 70 */ 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, + /* 80 */ 1058, 1058, 1058, 1, 1240, 2237, 229, 176, 142, 439, + /* 90 */ 439, 439, 53, 1190, 43, 34, 114, 105, 179, 347, + /* 100 */ 258, 302, 207, 207, 306, 207, 507, 207, 398, 207, + /* 110 */ 207, 207, 207, 207, 306, 495, 495, 518, 367, 303, + /* 120 */ 392, 325, 392, 392, 325, 504, 508, 252, 256, 108, + /* 130 */ 221, 2, 374, 371, 37, 154, 11, 326, 37, 37, + /* 140 */ 349, 372, 539, 468, 467, 375, 37, 37, 538, 515, + /* 150 */ 470, 423, 422, 420, 606, 606, 624, 73, 303, 325, + /* 160 */ 325, 325, 675, -31, -31, -31, -31, -31, -31, 109, + /* 170 */ 71, 260, -30, 183, 268, 386, 129, 175, 277, 443, + /* 180 */ 386, 485, -3, 214, 379, 61, 415, 24, 85, 249, + /* 190 */ 26, 107, 73, 402, 595, 585, 560, 567, 589, 588, + /* 200 */ 591, 559, 563, 527, 540, 460, 450, 524, 529, 564, + /* 210 */ 561, 545, 498, 565, 494, 469, 566, 549, 547, 436, + /* 220 */ 587, 102, 206, -27, 279, ); - const YY_REDUCE_USE_DFLT = -79; + const YY_REDUCE_USE_DFLT = -108; const YY_REDUCE_MAX = 168; static public $yy_reduce_ofst = array( - /* 0 */ 21, 1572, -7, 1336, 1238, 537, 1603, 66, 1140, 137, - /* 10 */ 393, 1042, 465, 1504, 1634, 1653, 1684, 1434, 1406, 845, - /* 20 */ 727, 918, 1112, 1308, 1210, 1715, 1734, 1927, 1958, 1977, - /* 30 */ 2008, 657, 2039, 1896, 1877, 1765, 1796, 1815, 1846, 2089, - /* 40 */ 2058, 2120, 2127, 2237, 2201, 2156, 2208, 2163, 2170, 546, - /* 50 */ 474, 145, 145, 926, 265, 265, 265, 265, 265, 265, - /* 60 */ 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, - /* 70 */ 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, - /* 80 */ 265, 265, 265, -78, 286, 505, -2, 85, 62, 135, - /* 90 */ 391, 433, 390, 331, 37, 495, 68, 544, 68, 18, - /* 100 */ 590, 544, 533, 525, 613, 640, 614, 645, 183, 656, - /* 110 */ 18, 489, 490, 726, 643, 656, 656, 453, 695, 297, - /* 120 */ 244, 328, 236, 18, 76, 558, 558, 558, 558, 556, - /* 130 */ 558, 558, 503, 503, 503, 503, 503, 503, 513, 503, - /* 140 */ 503, 503, 513, 503, 503, 513, 503, 522, 503, 513, - /* 150 */ 513, 503, 503, 503, 534, 555, 599, 534, 566, 587, - /* 160 */ 534, 578, 596, 598, 569, 582, 349, -42, 2, + /* 0 */ 6, 1600, -7, 932, 66, 427, 1581, 259, 139, 546, + /* 10 */ 812, 619, 694, 1770, 1751, 1795, 1814, 1896, 1877, 1732, + /* 20 */ 1852, 1833, 1915, 1631, 1060, 1650, 1688, 1934, 1713, 1669, + /* 30 */ 2098, 2123, 2041, 2079, 1997, 1978, 2016, 2060, 1959, 1206, + /* 40 */ 1256, 2142, 1382, 1332, 1526, 1282, 2149, 1482, 1432, 74, + /* 50 */ 147, 267, 554, 74, 250, 250, 250, 250, 250, 250, + /* 60 */ 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, + /* 70 */ 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, + /* 80 */ 250, 250, 250, 213, 238, 544, 64, 116, -5, -10, + /* 90 */ -85, 257, 227, 484, 333, 503, 354, 543, 543, 553, + /* 100 */ 354, 39, 90, 620, 377, 542, 39, 577, 617, 615, + /* 110 */ 578, 612, 650, 617, 424, 617, 651, 622, 616, 370, + /* 120 */ 313, 39, 480, 394, -107, 284, 284, 329, 284, 284, + /* 130 */ 284, 284, 144, 144, 550, 144, 541, 144, 550, 550, + /* 140 */ 144, 144, 144, 144, 144, 144, 550, 550, 144, 144, + /* 150 */ 144, 144, 144, 144, 537, 551, 573, 570, 582, 568, + /* 160 */ 568, 568, 571, 590, 611, 613, 609, 574, 575, ); static public $yyExpectedTokens = array( - /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 20, 22, 27, 30, ), - /* 1 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 2 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 3 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 4 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 5 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 6 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 7 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 8 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 9 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 10 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 11 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 12 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 13 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 60, 73, ), - /* 14 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 15 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 16 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 17 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 18 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 19 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 20 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 21 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 22 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 23 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 24 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 25 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 26 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 27 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 28 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 29 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 30 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 31 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 32 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 33 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 34 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 35 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 36 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 37 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 38 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 39 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 40 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 41 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 59, 73, ), - /* 42 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 73, ), - /* 43 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 73, ), - /* 44 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 73, ), - /* 45 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 73, ), - /* 46 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 73, ), - /* 47 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 73, ), - /* 48 */ array(14, 16, 17, 20, 22, 27, 30, 31, 34, 48, 51, 52, 53, 54, 55, 58, 73, ), - /* 49 */ array(1, 21, 26, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 50 */ array(1, 15, 21, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 51 */ array(1, 15, 21, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 52 */ array(1, 21, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 53 */ array(1, 21, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 54 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 49, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 55 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 56 */ array(1, 15, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 57 */ array(1, 23, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 58 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 74, ), - /* 59 */ array(1, 2, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 60 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 49, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 61 */ array(1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 62 */ array(1, 15, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 63 */ array(1, 15, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 64 */ array(1, 15, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 65 */ array(1, 15, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 66 */ array(1, 15, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 67 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 68 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 69 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 70 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 71 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 72 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 73 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 74 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 75 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 76 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 77 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 78 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 79 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 80 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 81 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 82 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, ), - /* 83 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 20, 22, 27, 30, ), - /* 84 */ array(10, 14, 20, 22, 27, 30, 73, 74, 75, ), - /* 85 */ array(1, 15, 19, 21, 48, 56, ), - /* 86 */ array(1, 15, 19, 21, ), - /* 87 */ array(19, 54, 59, ), - /* 88 */ array(16, 17, 58, ), - /* 89 */ array(2, 21, ), - /* 90 */ array(2, 21, ), - /* 91 */ array(1, 21, ), - /* 92 */ array(2, 21, ), - /* 93 */ array(10, 14, 20, 22, 27, 30, 73, 74, 75, ), - /* 94 */ array(4, 5, 8, 11, 12, 13, ), - /* 95 */ array(14, 17, 18, 24, ), - /* 96 */ array(14, 17, 18, 57, ), - /* 97 */ array(15, 21, 24, ), - /* 98 */ array(14, 17, 57, ), - /* 99 */ array(18, 19, 56, ), - /* 100 */ array(15, 21, 47, ), - /* 101 */ array(15, 21, 24, ), - /* 102 */ array(14, 17, ), - /* 103 */ array(14, 17, ), - /* 104 */ array(14, 17, ), - /* 105 */ array(14, 17, ), - /* 106 */ array(14, 17, ), - /* 107 */ array(14, 17, ), - /* 108 */ array(14, 17, ), - /* 109 */ array(14, 17, ), - /* 110 */ array(19, 56, ), - /* 111 */ array(16, 17, ), - /* 112 */ array(16, 17, ), - /* 113 */ array(14, 17, ), - /* 114 */ array(14, 17, ), - /* 115 */ array(14, 17, ), - /* 116 */ array(14, 17, ), - /* 117 */ array(14, 17, ), - /* 118 */ array(21, ), - /* 119 */ array(19, ), - /* 120 */ array(16, ), - /* 121 */ array(21, ), - /* 122 */ array(21, ), - /* 123 */ array(19, ), - /* 124 */ array(21, ), - /* 125 */ array(14, 15, 17, 29, ), - /* 126 */ array(14, 15, 17, 29, ), - /* 127 */ array(14, 15, 17, ), - /* 128 */ array(14, 17, 57, ), - /* 129 */ array(14, 16, 17, ), - /* 130 */ array(14, 17, 18, ), - /* 131 */ array(14, 15, 17, ), - /* 132 */ array(15, 21, ), - /* 133 */ array(15, 21, ), - /* 134 */ array(15, 21, ), - /* 135 */ array(15, 21, ), - /* 136 */ array(15, 21, ), - /* 137 */ array(15, 21, ), - /* 138 */ array(54, 59, ), - /* 139 */ array(15, 21, ), - /* 140 */ array(15, 21, ), - /* 141 */ array(15, 21, ), - /* 142 */ array(54, 59, ), - /* 143 */ array(15, 21, ), - /* 144 */ array(15, 21, ), - /* 145 */ array(54, 59, ), - /* 146 */ array(15, 21, ), - /* 147 */ array(14, 48, ), - /* 148 */ array(15, 21, ), - /* 149 */ array(54, 59, ), - /* 150 */ array(54, 59, ), - /* 151 */ array(15, 21, ), - /* 152 */ array(15, 21, ), - /* 153 */ array(15, 21, ), - /* 154 */ array(19, ), - /* 155 */ array(2, ), - /* 156 */ array(16, ), - /* 157 */ array(19, ), - /* 158 */ array(48, ), - /* 159 */ array(12, ), - /* 160 */ array(19, ), - /* 161 */ array(21, ), - /* 162 */ array(21, ), + /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 23, 28, 31, ), + /* 1 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 2 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 3 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 4 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 5 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 6 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 7 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 8 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 9 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 10 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 11 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 12 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 13 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 61, 74, ), + /* 14 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 15 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 16 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 17 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 18 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 19 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 20 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 21 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 22 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 23 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 24 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 25 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 26 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 27 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 28 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 29 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 30 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 31 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 32 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 33 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 34 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 35 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 36 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 37 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 38 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 39 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 40 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 41 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ), + /* 42 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), + /* 43 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), + /* 44 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), + /* 45 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), + /* 46 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), + /* 47 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), + /* 48 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ), + /* 49 */ array(1, 16, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 50 */ array(1, 16, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 51 */ array(1, 22, 27, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 52 */ array(1, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 53 */ array(1, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 54 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, ), + /* 55 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 56 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 57 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 58 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 59 */ array(1, 2, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 60 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 61 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 62 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 63 */ array(1, 24, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 64 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 65 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 66 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 67 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 68 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 69 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 70 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 71 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 72 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 73 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 74 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 75 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 76 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 77 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 78 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 79 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 80 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 81 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 82 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ), + /* 83 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 23, 28, 31, ), + /* 84 */ array(10, 15, 21, 23, 28, 31, 74, 75, 76, ), + /* 85 */ array(1, 16, 20, 22, 49, 57, ), + /* 86 */ array(1, 16, 20, 22, ), + /* 87 */ array(17, 18, 59, ), + /* 88 */ array(20, 55, 60, ), + /* 89 */ array(2, 22, ), + /* 90 */ array(2, 22, ), + /* 91 */ array(2, 22, ), + /* 92 */ array(1, 22, ), + /* 93 */ array(10, 15, 21, 23, 28, 31, 74, 75, 76, ), + /* 94 */ array(4, 5, 8, 12, 13, 14, ), + /* 95 */ array(15, 18, 19, 25, ), + /* 96 */ array(15, 18, 19, 58, ), + /* 97 */ array(16, 22, 25, ), + /* 98 */ array(16, 22, 25, ), + /* 99 */ array(16, 22, 48, ), + /* 100 */ array(15, 18, 58, ), + /* 101 */ array(19, 20, 57, ), + /* 102 */ array(15, 18, ), + /* 103 */ array(15, 18, ), + /* 104 */ array(17, 18, ), + /* 105 */ array(15, 18, ), + /* 106 */ array(20, 57, ), + /* 107 */ array(15, 18, ), + /* 108 */ array(15, 18, ), + /* 109 */ array(15, 18, ), + /* 110 */ array(15, 18, ), + /* 111 */ array(15, 18, ), + /* 112 */ array(15, 18, ), + /* 113 */ array(15, 18, ), + /* 114 */ array(17, 18, ), + /* 115 */ array(15, 18, ), + /* 116 */ array(15, 18, ), + /* 117 */ array(15, 18, ), + /* 118 */ array(22, ), + /* 119 */ array(17, ), + /* 120 */ array(22, ), + /* 121 */ array(20, ), + /* 122 */ array(22, ), + /* 123 */ array(22, ), + /* 124 */ array(20, ), + /* 125 */ array(15, 16, 18, 30, ), + /* 126 */ array(15, 16, 18, 30, ), + /* 127 */ array(15, 17, 18, ), + /* 128 */ array(15, 18, 58, ), + /* 129 */ array(15, 16, 18, ), + /* 130 */ array(15, 18, 19, ), + /* 131 */ array(15, 16, 18, ), + /* 132 */ array(16, 22, ), + /* 133 */ array(16, 22, ), + /* 134 */ array(55, 60, ), + /* 135 */ array(16, 22, ), + /* 136 */ array(15, 49, ), + /* 137 */ array(16, 22, ), + /* 138 */ array(55, 60, ), + /* 139 */ array(55, 60, ), + /* 140 */ array(16, 22, ), + /* 141 */ array(16, 22, ), + /* 142 */ array(16, 22, ), + /* 143 */ array(16, 22, ), + /* 144 */ array(16, 22, ), + /* 145 */ array(16, 22, ), + /* 146 */ array(55, 60, ), + /* 147 */ array(55, 60, ), + /* 148 */ array(16, 22, ), + /* 149 */ array(16, 22, ), + /* 150 */ array(16, 22, ), + /* 151 */ array(16, 22, ), + /* 152 */ array(16, 22, ), + /* 153 */ array(16, 22, ), + /* 154 */ array(22, ), + /* 155 */ array(22, ), + /* 156 */ array(13, ), + /* 157 */ array(49, ), + /* 158 */ array(17, ), + /* 159 */ array(20, ), + /* 160 */ array(20, ), + /* 161 */ array(20, ), + /* 162 */ array(2, ), /* 163 */ array(), /* 164 */ array(), /* 165 */ array(), /* 166 */ array(), /* 167 */ array(), /* 168 */ array(), - /* 169 */ array(18, 28, 48, 56, ), - /* 170 */ array(15, 21, 48, 56, ), - /* 171 */ array(14, 16, 17, 31, ), - /* 172 */ array(48, 54, 56, 60, ), - /* 173 */ array(29, 48, 56, ), - /* 174 */ array(15, 21, 47, ), - /* 175 */ array(23, 32, ), - /* 176 */ array(32, 60, ), - /* 177 */ array(48, 56, ), - /* 178 */ array(15, 47, ), - /* 179 */ array(2, 18, ), - /* 180 */ array(24, 74, ), - /* 181 */ array(17, 57, ), - /* 182 */ array(48, 56, ), - /* 183 */ array(17, 31, ), - /* 184 */ array(29, 47, ), - /* 185 */ array(18, 54, ), - /* 186 */ array(48, ), - /* 187 */ array(28, ), - /* 188 */ array(15, ), - /* 189 */ array(17, ), - /* 190 */ array(49, ), - /* 191 */ array(16, ), - /* 192 */ array(16, ), - /* 193 */ array(18, ), - /* 194 */ array(15, ), - /* 195 */ array(25, ), - /* 196 */ array(49, ), - /* 197 */ array(60, ), - /* 198 */ array(54, ), - /* 199 */ array(21, ), - /* 200 */ array(50, ), - /* 201 */ array(17, ), + /* 169 */ array(16, 22, 49, 57, ), + /* 170 */ array(19, 29, 49, 57, ), + /* 171 */ array(15, 17, 18, 32, ), + /* 172 */ array(49, 55, 57, 61, ), + /* 173 */ array(16, 22, 48, ), + /* 174 */ array(30, 49, 57, ), + /* 175 */ array(49, 57, ), + /* 176 */ array(30, 48, ), + /* 177 */ array(25, 75, ), + /* 178 */ array(2, 19, ), + /* 179 */ array(16, 48, ), + /* 180 */ array(49, 57, ), + /* 181 */ array(24, 33, ), + /* 182 */ array(33, 61, ), + /* 183 */ array(18, 58, ), + /* 184 */ array(19, 55, ), + /* 185 */ array(18, 32, ), + /* 186 */ array(22, ), + /* 187 */ array(26, ), + /* 188 */ array(16, ), + /* 189 */ array(19, ), + /* 190 */ array(51, ), + /* 191 */ array(50, ), + /* 192 */ array(49, ), + /* 193 */ array(16, ), + /* 194 */ array(18, ), + /* 195 */ array(18, ), + /* 196 */ array(2, ), + /* 197 */ array(18, ), + /* 198 */ array(16, ), + /* 199 */ array(22, ), + /* 200 */ array(18, ), + /* 201 */ array(48, ), /* 202 */ array(49, ), - /* 203 */ array(17, ), - /* 204 */ array(58, ), - /* 205 */ array(58, ), - /* 206 */ array(21, ), - /* 207 */ array(18, ), - /* 208 */ array(17, ), + /* 203 */ array(55, ), + /* 204 */ array(17, ), + /* 205 */ array(25, ), + /* 206 */ array(32, ), + /* 207 */ array(32, ), + /* 208 */ array(29, ), /* 209 */ array(17, ), - /* 210 */ array(17, ), - /* 211 */ array(2, ), - /* 212 */ array(47, ), - /* 213 */ array(28, ), - /* 214 */ array(16, ), - /* 215 */ array(17, ), - /* 216 */ array(17, ), - /* 217 */ array(16, ), - /* 218 */ array(24, ), - /* 219 */ array(48, ), + /* 210 */ array(19, ), + /* 211 */ array(18, ), + /* 212 */ array(61, ), + /* 213 */ array(18, ), + /* 214 */ array(17, ), + /* 215 */ array(18, ), + /* 216 */ array(18, ), + /* 217 */ array(59, ), + /* 218 */ array(59, ), + /* 219 */ array(29, ), /* 220 */ array(17, ), - /* 221 */ array(31, ), - /* 222 */ array(16, ), - /* 223 */ array(31, ), - /* 224 */ array(15, ), + /* 221 */ array(50, ), + /* 222 */ array(17, ), + /* 223 */ array(50, ), + /* 224 */ array(18, ), /* 225 */ array(), /* 226 */ array(), /* 227 */ array(), @@ -1102,51 +1092,52 @@ static public $yy_action = array( /* 359 */ array(), /* 360 */ array(), /* 361 */ array(), + /* 362 */ array(), ); static public $yy_default = array( - /* 0 */ 548, 531, 548, 504, 504, 548, 548, 548, 504, 548, - /* 10 */ 548, 504, 548, 548, 548, 548, 548, 548, 548, 548, - /* 20 */ 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, - /* 30 */ 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, - /* 40 */ 548, 548, 548, 548, 548, 548, 548, 548, 548, 418, - /* 50 */ 548, 548, 418, 418, 548, 548, 548, 548, 548, 548, - /* 60 */ 548, 503, 548, 548, 548, 548, 548, 448, 443, 533, - /* 70 */ 424, 427, 420, 444, 532, 435, 447, 439, 438, 403, - /* 80 */ 451, 534, 440, 362, 548, 462, 548, 510, 548, 418, - /* 90 */ 418, 418, 418, 548, 548, 548, 477, 452, 477, 470, - /* 100 */ 428, 452, 548, 548, 548, 548, 548, 548, 477, 548, - /* 110 */ 470, 548, 548, 548, 548, 548, 548, 548, 418, 507, - /* 120 */ 548, 418, 418, 470, 418, 548, 548, 548, 478, 548, - /* 130 */ 548, 548, 548, 548, 548, 548, 548, 548, 494, 548, - /* 140 */ 548, 548, 497, 548, 548, 495, 548, 477, 548, 496, - /* 150 */ 475, 548, 548, 548, 508, 434, 548, 511, 477, 378, - /* 160 */ 491, 547, 547, 513, 477, 513, 477, 513, 513, 423, - /* 170 */ 462, 548, 462, 462, 428, 548, 548, 449, 428, 489, - /* 180 */ 452, 548, 462, 548, 428, 458, 489, 548, 548, 548, - /* 190 */ 548, 548, 548, 548, 548, 425, 548, 548, 458, 548, - /* 200 */ 464, 548, 548, 548, 548, 548, 548, 423, 548, 548, - /* 210 */ 548, 489, 428, 548, 548, 548, 548, 548, 452, 509, - /* 220 */ 548, 548, 548, 460, 548, 450, 499, 482, 432, 459, - /* 230 */ 514, 415, 374, 453, 456, 464, 515, 500, 463, 465, - /* 240 */ 364, 474, 473, 466, 363, 468, 485, 437, 486, 417, - /* 250 */ 512, 484, 414, 483, 436, 490, 422, 370, 455, 369, - /* 260 */ 371, 454, 426, 461, 368, 467, 430, 457, 406, 366, - /* 270 */ 405, 367, 365, 546, 410, 498, 479, 487, 480, 401, - /* 280 */ 476, 471, 431, 404, 372, 373, 411, 429, 481, 501, - /* 290 */ 521, 394, 492, 522, 393, 385, 524, 523, 384, 520, - /* 300 */ 517, 397, 516, 518, 519, 395, 396, 525, 416, 389, - /* 310 */ 390, 391, 386, 542, 543, 387, 402, 493, 433, 527, - /* 320 */ 526, 469, 400, 392, 472, 506, 505, 529, 442, 441, - /* 330 */ 530, 379, 380, 528, 409, 488, 388, 375, 412, 502, - /* 340 */ 489, 377, 376, 381, 408, 536, 537, 446, 535, 398, - /* 350 */ 399, 407, 383, 540, 545, 538, 382, 544, 541, 445, - /* 360 */ 539, 413, + /* 0 */ 550, 533, 550, 550, 506, 550, 550, 550, 550, 506, + /* 10 */ 506, 506, 550, 550, 550, 550, 550, 550, 550, 550, + /* 20 */ 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, + /* 30 */ 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, + /* 40 */ 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, + /* 50 */ 550, 420, 420, 420, 550, 550, 550, 550, 550, 550, + /* 60 */ 550, 505, 550, 550, 550, 550, 550, 441, 440, 450, + /* 70 */ 453, 449, 534, 535, 536, 445, 446, 442, 437, 426, + /* 80 */ 429, 422, 405, 363, 550, 464, 550, 550, 512, 420, + /* 90 */ 420, 420, 420, 550, 550, 550, 479, 454, 454, 430, + /* 100 */ 479, 472, 479, 550, 550, 550, 472, 550, 550, 550, + /* 110 */ 550, 550, 550, 550, 550, 550, 550, 550, 420, 550, + /* 120 */ 420, 472, 420, 420, 509, 550, 550, 550, 480, 550, + /* 130 */ 550, 550, 550, 550, 496, 550, 479, 550, 498, 499, + /* 140 */ 550, 550, 550, 550, 550, 550, 497, 477, 550, 550, + /* 150 */ 550, 550, 550, 550, 549, 549, 380, 479, 550, 493, + /* 160 */ 510, 513, 436, 515, 515, 515, 515, 479, 479, 464, + /* 170 */ 425, 550, 464, 430, 464, 464, 430, 454, 491, 430, + /* 180 */ 451, 550, 550, 550, 460, 550, 550, 427, 550, 425, + /* 190 */ 466, 550, 491, 550, 550, 550, 491, 550, 550, 550, + /* 200 */ 550, 430, 511, 460, 550, 454, 462, 550, 550, 550, + /* 210 */ 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, + /* 220 */ 550, 550, 550, 550, 550, 530, 547, 532, 424, 540, + /* 230 */ 531, 364, 546, 487, 548, 502, 543, 452, 484, 501, + /* 240 */ 406, 433, 492, 412, 417, 517, 516, 466, 428, 504, + /* 250 */ 503, 407, 408, 432, 500, 475, 486, 488, 485, 413, + /* 260 */ 476, 403, 474, 416, 415, 419, 514, 458, 414, 491, + /* 270 */ 409, 410, 411, 490, 455, 456, 478, 473, 481, 489, + /* 280 */ 482, 431, 469, 457, 459, 461, 463, 404, 402, 372, + /* 290 */ 371, 373, 374, 375, 370, 369, 365, 366, 367, 368, + /* 300 */ 376, 377, 385, 386, 387, 418, 384, 383, 378, 379, + /* 310 */ 381, 382, 483, 434, 391, 390, 392, 393, 394, 545, + /* 320 */ 389, 471, 495, 388, 544, 395, 396, 537, 538, 539, + /* 330 */ 542, 400, 401, 494, 397, 398, 399, 435, 529, 444, + /* 340 */ 443, 447, 448, 507, 470, 468, 465, 438, 439, 467, + /* 350 */ 508, 518, 525, 526, 527, 528, 524, 523, 519, 520, + /* 360 */ 521, 522, 541, ); - const YYNOCODE = 118; + const YYNOCODE = 119; const YYSTACKDEPTH = 100; - const YYNSTATE = 362; - const YYNRULE = 186; - const YYERRORSYMBOL = 76; + const YYNSTATE = 363; + const YYNRULE = 187; + const YYERRORSYMBOL = 77; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; static public $yyFallback = array( @@ -1177,34 +1168,34 @@ static public $yy_action = array( public $yyTokenName = array( '$', 'VERT', 'COLON', 'COMMENT', 'PHPSTARTTAG', 'PHPENDTAG', 'ASPSTARTTAG', 'ASPENDTAG', - 'FAKEPHPSTARTTAG', 'XMLTAG', 'OTHER', 'LITERALSTART', - 'LITERALEND', 'LITERAL', 'LDEL', 'RDEL', - 'DOLLAR', 'ID', 'EQUAL', 'PTR', - 'LDELIF', 'SPACE', 'LDELFOR', 'SEMICOLON', - 'INCDEC', 'TO', 'STEP', 'LDELFOREACH', - 'AS', 'APTR', 'LDELSLASH', 'INTEGER', - 'COMMA', 'MATH', 'UNIMATH', 'ANDSYM', - 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', 'ISEVEN', - 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', 'ISODD', - 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', 'INSTANCEOF', - 'OPENP', 'CLOSEP', 'QMARK', 'NOT', - 'TYPECAST', 'HEX', 'DOT', 'SINGLEQUOTESTRING', - 'DOUBLECOLON', 'AT', 'HATCH', 'OPENB', - 'CLOSEB', 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', - 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', - 'NONEIDENTITY', 'MOD', 'LAND', 'LOR', - 'LXOR', 'QUOTE', 'BACKTICK', 'DOLLARID', - 'error', 'start', 'template', 'template_element', - 'smartytag', 'literal', 'literal_elements', 'literal_element', - 'value', 'attributes', 'variable', 'expr', - 'ternary', 'varindexed', 'modifier', 'modparameters', - 'statement', 'statements', 'optspace', 'varvar', - 'foraction', 'array', 'attribute', 'ifcond', - 'lop', 'function', 'doublequoted_with_quotes', 'static_class_access', - 'object', 'arrayindex', 'indexdef', 'varvarele', - 'objectchain', 'objectelement', 'method', 'params', - 'modparameter', 'arrayelements', 'arrayelement', 'doublequoted', - 'doublequotedcontent', + 'FAKEPHPSTARTTAG', 'XMLTAG', 'OTHER', 'LINEBREAK', + 'LITERALSTART', 'LITERALEND', 'LITERAL', 'LDEL', + 'RDEL', 'DOLLAR', 'ID', 'EQUAL', + 'PTR', 'LDELIF', 'SPACE', 'LDELFOR', + 'SEMICOLON', 'INCDEC', 'TO', 'STEP', + 'LDELFOREACH', 'AS', 'APTR', 'LDELSLASH', + 'INTEGER', 'COMMA', 'MATH', 'UNIMATH', + 'ANDSYM', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', + 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', + 'ISODD', 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', + 'INSTANCEOF', 'OPENP', 'CLOSEP', 'QMARK', + 'NOT', 'TYPECAST', 'HEX', 'DOT', + 'SINGLEQUOTESTRING', 'DOUBLECOLON', 'AT', 'HATCH', + 'OPENB', 'CLOSEB', 'EQUALS', 'NOTEQUALS', + 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', + 'IDENTITY', 'NONEIDENTITY', 'MOD', 'LAND', + 'LOR', 'LXOR', 'QUOTE', 'BACKTICK', + 'DOLLARID', 'error', 'start', 'template', + 'template_element', 'smartytag', 'literal', 'literal_elements', + 'literal_element', 'value', 'attributes', 'variable', + 'expr', 'ternary', 'varindexed', 'modifier', + 'modparameters', 'statement', 'statements', 'optspace', + 'varvar', 'foraction', 'array', 'attribute', + 'ifcond', 'lop', 'function', 'doublequoted_with_quotes', + 'static_class_access', 'object', 'arrayindex', 'indexdef', + 'varvarele', 'objectchain', 'objectelement', 'method', + 'params', 'modparameter', 'arrayelements', 'arrayelement', + 'doublequoted', 'doublequotedcontent', ); static public $yyRuleName = array( @@ -1221,179 +1212,180 @@ static public $yy_action = array( /* 10 */ "template_element ::= FAKEPHPSTARTTAG", /* 11 */ "template_element ::= XMLTAG", /* 12 */ "template_element ::= OTHER", - /* 13 */ "literal ::= LITERALSTART LITERALEND", - /* 14 */ "literal ::= LITERALSTART literal_elements LITERALEND", - /* 15 */ "literal_elements ::= literal_elements literal_element", - /* 16 */ "literal_elements ::=", - /* 17 */ "literal_element ::= literal", - /* 18 */ "literal_element ::= LITERAL", - /* 19 */ "literal_element ::= PHPSTARTTAG", - /* 20 */ "literal_element ::= FAKEPHPSTARTTAG", - /* 21 */ "literal_element ::= PHPENDTAG", - /* 22 */ "smartytag ::= LDEL value RDEL", - /* 23 */ "smartytag ::= LDEL value attributes RDEL", - /* 24 */ "smartytag ::= LDEL variable attributes RDEL", - /* 25 */ "smartytag ::= LDEL expr attributes RDEL", - /* 26 */ "smartytag ::= LDEL ternary attributes RDEL", - /* 27 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL", - /* 28 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL", - /* 29 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL", - /* 30 */ "smartytag ::= LDEL DOLLAR ID EQUAL ternary attributes RDEL", - /* 31 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", - /* 32 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL", - /* 33 */ "smartytag ::= LDEL ID attributes RDEL", - /* 34 */ "smartytag ::= LDEL ID RDEL", - /* 35 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", - /* 36 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", - /* 37 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL", - /* 38 */ "smartytag ::= LDELIF SPACE expr RDEL", - /* 39 */ "smartytag ::= LDELIF SPACE statement RDEL", - /* 40 */ "smartytag ::= LDELFOR SPACE statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction RDEL", - /* 41 */ "foraction ::= EQUAL expr", - /* 42 */ "foraction ::= INCDEC", - /* 43 */ "smartytag ::= LDELFOR SPACE statement TO expr attributes RDEL", - /* 44 */ "smartytag ::= LDELFOR SPACE statement TO expr STEP expr RDEL", - /* 45 */ "smartytag ::= LDELFOREACH attributes RDEL", - /* 46 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar RDEL", - /* 47 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 48 */ "smartytag ::= LDELFOREACH SPACE array AS DOLLAR varvar RDEL", - /* 49 */ "smartytag ::= LDELFOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 50 */ "smartytag ::= LDELSLASH ID RDEL", - /* 51 */ "smartytag ::= LDELSLASH ID attributes RDEL", - /* 52 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", - /* 53 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", - /* 54 */ "attributes ::= attributes attribute", - /* 55 */ "attributes ::= attribute", - /* 56 */ "attributes ::=", - /* 57 */ "attribute ::= SPACE ID EQUAL ID", - /* 58 */ "attribute ::= SPACE ID EQUAL expr", - /* 59 */ "attribute ::= SPACE ID EQUAL value", - /* 60 */ "attribute ::= SPACE ID EQUAL ternary", - /* 61 */ "attribute ::= SPACE ID", - /* 62 */ "attribute ::= SPACE INTEGER EQUAL expr", - /* 63 */ "statements ::= statement", - /* 64 */ "statements ::= statements COMMA statement", - /* 65 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 66 */ "expr ::= value", - /* 67 */ "expr ::= DOLLAR ID COLON ID", - /* 68 */ "expr ::= expr MATH value", - /* 69 */ "expr ::= expr UNIMATH value", - /* 70 */ "expr ::= expr ANDSYM value", - /* 71 */ "expr ::= array", - /* 72 */ "expr ::= expr modifier modparameters", - /* 73 */ "expr ::= expr ifcond expr", - /* 74 */ "expr ::= expr ISIN array", - /* 75 */ "expr ::= expr ISIN value", - /* 76 */ "expr ::= expr lop expr", - /* 77 */ "expr ::= expr ISDIVBY expr", - /* 78 */ "expr ::= expr ISNOTDIVBY expr", - /* 79 */ "expr ::= expr ISEVEN", - /* 80 */ "expr ::= expr ISNOTEVEN", - /* 81 */ "expr ::= expr ISEVENBY expr", - /* 82 */ "expr ::= expr ISNOTEVENBY expr", - /* 83 */ "expr ::= expr ISODD", - /* 84 */ "expr ::= expr ISNOTODD", - /* 85 */ "expr ::= expr ISODDBY expr", - /* 86 */ "expr ::= expr ISNOTODDBY expr", - /* 87 */ "expr ::= value INSTANCEOF ID", - /* 88 */ "expr ::= value INSTANCEOF value", - /* 89 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 90 */ "value ::= variable", - /* 91 */ "value ::= UNIMATH value", - /* 92 */ "value ::= NOT value", - /* 93 */ "value ::= TYPECAST value", - /* 94 */ "value ::= variable INCDEC", - /* 95 */ "value ::= HEX", - /* 96 */ "value ::= INTEGER", - /* 97 */ "value ::= INTEGER DOT INTEGER", - /* 98 */ "value ::= INTEGER DOT", - /* 99 */ "value ::= DOT INTEGER", - /* 100 */ "value ::= ID", - /* 101 */ "value ::= function", - /* 102 */ "value ::= OPENP expr CLOSEP", - /* 103 */ "value ::= SINGLEQUOTESTRING", - /* 104 */ "value ::= doublequoted_with_quotes", - /* 105 */ "value ::= ID DOUBLECOLON static_class_access", - /* 106 */ "value ::= varindexed DOUBLECOLON static_class_access", - /* 107 */ "value ::= smartytag", - /* 108 */ "variable ::= varindexed", - /* 109 */ "variable ::= DOLLAR varvar AT ID", - /* 110 */ "variable ::= object", - /* 111 */ "variable ::= HATCH ID HATCH", - /* 112 */ "variable ::= HATCH variable HATCH", - /* 113 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 114 */ "arrayindex ::= arrayindex indexdef", - /* 115 */ "arrayindex ::=", - /* 116 */ "indexdef ::= DOT DOLLAR varvar", - /* 117 */ "indexdef ::= DOT DOLLAR varvar AT ID", - /* 118 */ "indexdef ::= DOT ID", - /* 119 */ "indexdef ::= DOT INTEGER", - /* 120 */ "indexdef ::= DOT LDEL expr RDEL", - /* 121 */ "indexdef ::= OPENB ID CLOSEB", - /* 122 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 123 */ "indexdef ::= OPENB expr CLOSEB", - /* 124 */ "indexdef ::= OPENB CLOSEB", - /* 125 */ "varvar ::= varvarele", - /* 126 */ "varvar ::= varvar varvarele", - /* 127 */ "varvarele ::= ID", - /* 128 */ "varvarele ::= LDEL expr RDEL", - /* 129 */ "object ::= varindexed objectchain", - /* 130 */ "objectchain ::= objectelement", - /* 131 */ "objectchain ::= objectchain objectelement", - /* 132 */ "objectelement ::= PTR ID arrayindex", - /* 133 */ "objectelement ::= PTR DOLLAR varvar arrayindex", - /* 134 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 135 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 136 */ "objectelement ::= PTR method", - /* 137 */ "function ::= ID OPENP params CLOSEP", - /* 138 */ "method ::= ID OPENP params CLOSEP", - /* 139 */ "method ::= DOLLAR ID OPENP params CLOSEP", - /* 140 */ "params ::= expr COMMA params", - /* 141 */ "params ::= expr", - /* 142 */ "params ::=", - /* 143 */ "modifier ::= VERT AT ID", - /* 144 */ "modifier ::= VERT ID", - /* 145 */ "static_class_access ::= method", - /* 146 */ "static_class_access ::= method objectchain", - /* 147 */ "static_class_access ::= ID", - /* 148 */ "static_class_access ::= DOLLAR ID arrayindex", - /* 149 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", - /* 150 */ "modparameters ::= modparameters modparameter", - /* 151 */ "modparameters ::=", - /* 152 */ "modparameter ::= COLON value", - /* 153 */ "modparameter ::= COLON array", - /* 154 */ "ifcond ::= EQUALS", - /* 155 */ "ifcond ::= NOTEQUALS", - /* 156 */ "ifcond ::= GREATERTHAN", - /* 157 */ "ifcond ::= LESSTHAN", - /* 158 */ "ifcond ::= GREATEREQUAL", - /* 159 */ "ifcond ::= LESSEQUAL", - /* 160 */ "ifcond ::= IDENTITY", - /* 161 */ "ifcond ::= NONEIDENTITY", - /* 162 */ "ifcond ::= MOD", - /* 163 */ "lop ::= LAND", - /* 164 */ "lop ::= LOR", - /* 165 */ "lop ::= LXOR", - /* 166 */ "array ::= OPENB arrayelements CLOSEB", - /* 167 */ "arrayelements ::= arrayelement", - /* 168 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 169 */ "arrayelements ::=", - /* 170 */ "arrayelement ::= value APTR expr", - /* 171 */ "arrayelement ::= ID APTR expr", - /* 172 */ "arrayelement ::= expr", - /* 173 */ "doublequoted_with_quotes ::= QUOTE QUOTE", - /* 174 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", - /* 175 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 176 */ "doublequoted ::= doublequotedcontent", - /* 177 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 178 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", - /* 179 */ "doublequotedcontent ::= DOLLARID", - /* 180 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 181 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 182 */ "doublequotedcontent ::= smartytag", - /* 183 */ "doublequotedcontent ::= OTHER", - /* 184 */ "optspace ::= SPACE", - /* 185 */ "optspace ::=", + /* 13 */ "template_element ::= LINEBREAK", + /* 14 */ "literal ::= LITERALSTART LITERALEND", + /* 15 */ "literal ::= LITERALSTART literal_elements LITERALEND", + /* 16 */ "literal_elements ::= literal_elements literal_element", + /* 17 */ "literal_elements ::=", + /* 18 */ "literal_element ::= literal", + /* 19 */ "literal_element ::= LITERAL", + /* 20 */ "literal_element ::= PHPSTARTTAG", + /* 21 */ "literal_element ::= FAKEPHPSTARTTAG", + /* 22 */ "literal_element ::= PHPENDTAG", + /* 23 */ "smartytag ::= LDEL value RDEL", + /* 24 */ "smartytag ::= LDEL value attributes RDEL", + /* 25 */ "smartytag ::= LDEL variable attributes RDEL", + /* 26 */ "smartytag ::= LDEL expr attributes RDEL", + /* 27 */ "smartytag ::= LDEL ternary attributes RDEL", + /* 28 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL", + /* 29 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL", + /* 30 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL", + /* 31 */ "smartytag ::= LDEL DOLLAR ID EQUAL ternary attributes RDEL", + /* 32 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", + /* 33 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL", + /* 34 */ "smartytag ::= LDEL ID attributes RDEL", + /* 35 */ "smartytag ::= LDEL ID RDEL", + /* 36 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", + /* 37 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", + /* 38 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL", + /* 39 */ "smartytag ::= LDELIF SPACE expr RDEL", + /* 40 */ "smartytag ::= LDELIF SPACE statement RDEL", + /* 41 */ "smartytag ::= LDELFOR SPACE statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction RDEL", + /* 42 */ "foraction ::= EQUAL expr", + /* 43 */ "foraction ::= INCDEC", + /* 44 */ "smartytag ::= LDELFOR SPACE statement TO expr attributes RDEL", + /* 45 */ "smartytag ::= LDELFOR SPACE statement TO expr STEP expr RDEL", + /* 46 */ "smartytag ::= LDELFOREACH attributes RDEL", + /* 47 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar RDEL", + /* 48 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 49 */ "smartytag ::= LDELFOREACH SPACE array AS DOLLAR varvar RDEL", + /* 50 */ "smartytag ::= LDELFOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 51 */ "smartytag ::= LDELSLASH ID RDEL", + /* 52 */ "smartytag ::= LDELSLASH ID attributes RDEL", + /* 53 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", + /* 54 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", + /* 55 */ "attributes ::= attributes attribute", + /* 56 */ "attributes ::= attribute", + /* 57 */ "attributes ::=", + /* 58 */ "attribute ::= SPACE ID EQUAL ID", + /* 59 */ "attribute ::= SPACE ID EQUAL expr", + /* 60 */ "attribute ::= SPACE ID EQUAL value", + /* 61 */ "attribute ::= SPACE ID EQUAL ternary", + /* 62 */ "attribute ::= SPACE ID", + /* 63 */ "attribute ::= SPACE INTEGER EQUAL expr", + /* 64 */ "statements ::= statement", + /* 65 */ "statements ::= statements COMMA statement", + /* 66 */ "statement ::= DOLLAR varvar EQUAL expr", + /* 67 */ "expr ::= value", + /* 68 */ "expr ::= DOLLAR ID COLON ID", + /* 69 */ "expr ::= expr MATH value", + /* 70 */ "expr ::= expr UNIMATH value", + /* 71 */ "expr ::= expr ANDSYM value", + /* 72 */ "expr ::= array", + /* 73 */ "expr ::= expr modifier modparameters", + /* 74 */ "expr ::= expr ifcond expr", + /* 75 */ "expr ::= expr ISIN array", + /* 76 */ "expr ::= expr ISIN value", + /* 77 */ "expr ::= expr lop expr", + /* 78 */ "expr ::= expr ISDIVBY expr", + /* 79 */ "expr ::= expr ISNOTDIVBY expr", + /* 80 */ "expr ::= expr ISEVEN", + /* 81 */ "expr ::= expr ISNOTEVEN", + /* 82 */ "expr ::= expr ISEVENBY expr", + /* 83 */ "expr ::= expr ISNOTEVENBY expr", + /* 84 */ "expr ::= expr ISODD", + /* 85 */ "expr ::= expr ISNOTODD", + /* 86 */ "expr ::= expr ISODDBY expr", + /* 87 */ "expr ::= expr ISNOTODDBY expr", + /* 88 */ "expr ::= value INSTANCEOF ID", + /* 89 */ "expr ::= value INSTANCEOF value", + /* 90 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 91 */ "value ::= variable", + /* 92 */ "value ::= UNIMATH value", + /* 93 */ "value ::= NOT value", + /* 94 */ "value ::= TYPECAST value", + /* 95 */ "value ::= variable INCDEC", + /* 96 */ "value ::= HEX", + /* 97 */ "value ::= INTEGER", + /* 98 */ "value ::= INTEGER DOT INTEGER", + /* 99 */ "value ::= INTEGER DOT", + /* 100 */ "value ::= DOT INTEGER", + /* 101 */ "value ::= ID", + /* 102 */ "value ::= function", + /* 103 */ "value ::= OPENP expr CLOSEP", + /* 104 */ "value ::= SINGLEQUOTESTRING", + /* 105 */ "value ::= doublequoted_with_quotes", + /* 106 */ "value ::= ID DOUBLECOLON static_class_access", + /* 107 */ "value ::= varindexed DOUBLECOLON static_class_access", + /* 108 */ "value ::= smartytag", + /* 109 */ "variable ::= varindexed", + /* 110 */ "variable ::= DOLLAR varvar AT ID", + /* 111 */ "variable ::= object", + /* 112 */ "variable ::= HATCH ID HATCH", + /* 113 */ "variable ::= HATCH variable HATCH", + /* 114 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 115 */ "arrayindex ::= arrayindex indexdef", + /* 116 */ "arrayindex ::=", + /* 117 */ "indexdef ::= DOT DOLLAR varvar", + /* 118 */ "indexdef ::= DOT DOLLAR varvar AT ID", + /* 119 */ "indexdef ::= DOT ID", + /* 120 */ "indexdef ::= DOT INTEGER", + /* 121 */ "indexdef ::= DOT LDEL expr RDEL", + /* 122 */ "indexdef ::= OPENB ID CLOSEB", + /* 123 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 124 */ "indexdef ::= OPENB expr CLOSEB", + /* 125 */ "indexdef ::= OPENB CLOSEB", + /* 126 */ "varvar ::= varvarele", + /* 127 */ "varvar ::= varvar varvarele", + /* 128 */ "varvarele ::= ID", + /* 129 */ "varvarele ::= LDEL expr RDEL", + /* 130 */ "object ::= varindexed objectchain", + /* 131 */ "objectchain ::= objectelement", + /* 132 */ "objectchain ::= objectchain objectelement", + /* 133 */ "objectelement ::= PTR ID arrayindex", + /* 134 */ "objectelement ::= PTR DOLLAR varvar arrayindex", + /* 135 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 136 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 137 */ "objectelement ::= PTR method", + /* 138 */ "function ::= ID OPENP params CLOSEP", + /* 139 */ "method ::= ID OPENP params CLOSEP", + /* 140 */ "method ::= DOLLAR ID OPENP params CLOSEP", + /* 141 */ "params ::= expr COMMA params", + /* 142 */ "params ::= expr", + /* 143 */ "params ::=", + /* 144 */ "modifier ::= VERT AT ID", + /* 145 */ "modifier ::= VERT ID", + /* 146 */ "static_class_access ::= method", + /* 147 */ "static_class_access ::= method objectchain", + /* 148 */ "static_class_access ::= ID", + /* 149 */ "static_class_access ::= DOLLAR ID arrayindex", + /* 150 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", + /* 151 */ "modparameters ::= modparameters modparameter", + /* 152 */ "modparameters ::=", + /* 153 */ "modparameter ::= COLON value", + /* 154 */ "modparameter ::= COLON array", + /* 155 */ "ifcond ::= EQUALS", + /* 156 */ "ifcond ::= NOTEQUALS", + /* 157 */ "ifcond ::= GREATERTHAN", + /* 158 */ "ifcond ::= LESSTHAN", + /* 159 */ "ifcond ::= GREATEREQUAL", + /* 160 */ "ifcond ::= LESSEQUAL", + /* 161 */ "ifcond ::= IDENTITY", + /* 162 */ "ifcond ::= NONEIDENTITY", + /* 163 */ "ifcond ::= MOD", + /* 164 */ "lop ::= LAND", + /* 165 */ "lop ::= LOR", + /* 166 */ "lop ::= LXOR", + /* 167 */ "array ::= OPENB arrayelements CLOSEB", + /* 168 */ "arrayelements ::= arrayelement", + /* 169 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 170 */ "arrayelements ::=", + /* 171 */ "arrayelement ::= value APTR expr", + /* 172 */ "arrayelement ::= ID APTR expr", + /* 173 */ "arrayelement ::= expr", + /* 174 */ "doublequoted_with_quotes ::= QUOTE QUOTE", + /* 175 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", + /* 176 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 177 */ "doublequoted ::= doublequotedcontent", + /* 178 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 179 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", + /* 180 */ "doublequotedcontent ::= DOLLARID", + /* 181 */ "doublequotedcontent ::= LDEL variable RDEL", + /* 182 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 183 */ "doublequotedcontent ::= smartytag", + /* 184 */ "doublequotedcontent ::= OTHER", + /* 185 */ "optspace ::= SPACE", + /* 186 */ "optspace ::=", ); function tokenName($tokenType) @@ -1649,11 +1641,11 @@ static public $yy_action = array( while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); } -#line 81 "smarty_internal_templateparser.y" +#line 82 "smarty_internal_templateparser.y" $this->internalError = true; $this->compiler->trigger_template_error("Stack overflow in template parser"); -#line 1652 "smarty_internal_templateparser.php" +#line 1644 "smarty_internal_templateparser.php" return; } $yytos = new TP_yyStackEntry; @@ -1674,213 +1666,202 @@ static public $yy_action = array( } static public $yyRuleInfo = array( - array( 'lhs' => 77, 'rhs' => 1 ), array( 'lhs' => 78, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 2 ), array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 2 ), - array( 'lhs' => 81, 'rhs' => 3 ), + array( 'lhs' => 79, 'rhs' => 2 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), array( 'lhs' => 82, 'rhs' => 2 ), - array( 'lhs' => 82, 'rhs' => 0 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 3 ), - array( 'lhs' => 80, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 6 ), - array( 'lhs' => 80, 'rhs' => 6 ), - array( 'lhs' => 80, 'rhs' => 7 ), - array( 'lhs' => 80, 'rhs' => 7 ), - array( 'lhs' => 80, 'rhs' => 6 ), - array( 'lhs' => 80, 'rhs' => 6 ), - array( 'lhs' => 80, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 3 ), - array( 'lhs' => 80, 'rhs' => 6 ), - array( 'lhs' => 80, 'rhs' => 6 ), - array( 'lhs' => 80, 'rhs' => 8 ), - array( 'lhs' => 80, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 12 ), - array( 'lhs' => 96, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 7 ), - array( 'lhs' => 80, 'rhs' => 8 ), - array( 'lhs' => 80, 'rhs' => 3 ), - array( 'lhs' => 80, 'rhs' => 7 ), - array( 'lhs' => 80, 'rhs' => 10 ), - array( 'lhs' => 80, 'rhs' => 7 ), - array( 'lhs' => 80, 'rhs' => 10 ), - array( 'lhs' => 80, 'rhs' => 3 ), - array( 'lhs' => 80, 'rhs' => 4 ), - array( 'lhs' => 80, 'rhs' => 6 ), - array( 'lhs' => 80, 'rhs' => 5 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 83, 'rhs' => 0 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 3 ), + array( 'lhs' => 81, 'rhs' => 4 ), + array( 'lhs' => 81, 'rhs' => 4 ), + array( 'lhs' => 81, 'rhs' => 4 ), + array( 'lhs' => 81, 'rhs' => 4 ), + array( 'lhs' => 81, 'rhs' => 6 ), + array( 'lhs' => 81, 'rhs' => 6 ), + array( 'lhs' => 81, 'rhs' => 7 ), + array( 'lhs' => 81, 'rhs' => 7 ), + array( 'lhs' => 81, 'rhs' => 6 ), + array( 'lhs' => 81, 'rhs' => 6 ), + array( 'lhs' => 81, 'rhs' => 4 ), + array( 'lhs' => 81, 'rhs' => 3 ), + array( 'lhs' => 81, 'rhs' => 6 ), + array( 'lhs' => 81, 'rhs' => 6 ), + array( 'lhs' => 81, 'rhs' => 8 ), + array( 'lhs' => 81, 'rhs' => 4 ), + array( 'lhs' => 81, 'rhs' => 4 ), + array( 'lhs' => 81, 'rhs' => 12 ), + array( 'lhs' => 97, 'rhs' => 2 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 7 ), + array( 'lhs' => 81, 'rhs' => 8 ), + array( 'lhs' => 81, 'rhs' => 3 ), + array( 'lhs' => 81, 'rhs' => 7 ), + array( 'lhs' => 81, 'rhs' => 10 ), + array( 'lhs' => 81, 'rhs' => 7 ), + array( 'lhs' => 81, 'rhs' => 10 ), + array( 'lhs' => 81, 'rhs' => 3 ), + array( 'lhs' => 81, 'rhs' => 4 ), + array( 'lhs' => 81, 'rhs' => 6 ), + array( 'lhs' => 81, 'rhs' => 5 ), + array( 'lhs' => 86, 'rhs' => 2 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 0 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 2 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 3 ), + array( 'lhs' => 93, 'rhs' => 4 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 4 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 89, 'rhs' => 7 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 2 ), array( 'lhs' => 85, 'rhs' => 2 ), array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 0 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 2 ), + 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' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 1 ), array( 'lhs' => 87, 'rhs' => 1 ), array( 'lhs' => 87, 'rhs' => 4 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), array( 'lhs' => 87, 'rhs' => 1 ), array( 'lhs' => 87, 'rhs' => 3 ), array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 88, 'rhs' => 7 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 4 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 3 ), - array( 'lhs' => 86, 'rhs' => 3 ), - array( 'lhs' => 89, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 0 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 5 ), + array( 'lhs' => 90, 'rhs' => 3 ), array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 4 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 5 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 106, 'rhs' => 0 ), array( 'lhs' => 107, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 5 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 4 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 5 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 2 ), array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 2 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 4 ), - array( 'lhs' => 109, 'rhs' => 5 ), - array( 'lhs' => 109, 'rhs' => 6 ), + array( 'lhs' => 108, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 109, 'rhs' => 1 ), array( 'lhs' => 109, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 4 ), + array( 'lhs' => 110, 'rhs' => 3 ), array( 'lhs' => 110, 'rhs' => 4 ), array( 'lhs' => 110, 'rhs' => 5 ), - array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 111, 'rhs' => 0 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 4 ), + array( 'lhs' => 110, 'rhs' => 6 ), + array( 'lhs' => 110, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 4 ), + array( 'lhs' => 111, 'rhs' => 4 ), + array( 'lhs' => 111, 'rhs' => 5 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 0 ), + array( 'lhs' => 91, 'rhs' => 3 ), array( 'lhs' => 91, 'rhs' => 2 ), - array( 'lhs' => 91, 'rhs' => 0 ), - array( 'lhs' => 112, 'rhs' => 2 ), - array( 'lhs' => 112, 'rhs' => 2 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 1 ), + array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 2 ), + array( 'lhs' => 92, 'rhs' => 0 ), + array( 'lhs' => 113, 'rhs' => 2 ), + array( 'lhs' => 113, 'rhs' => 2 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 100, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 3 ), - array( 'lhs' => 113, 'rhs' => 1 ), - array( 'lhs' => 113, 'rhs' => 3 ), - array( 'lhs' => 113, 'rhs' => 0 ), - array( 'lhs' => 114, 'rhs' => 3 ), - array( 'lhs' => 114, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 101, 'rhs' => 1 ), + array( 'lhs' => 101, 'rhs' => 1 ), + array( 'lhs' => 101, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 3 ), array( 'lhs' => 114, 'rhs' => 1 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 3 ), - array( 'lhs' => 115, 'rhs' => 2 ), + array( 'lhs' => 114, 'rhs' => 3 ), + array( 'lhs' => 114, 'rhs' => 0 ), + array( 'lhs' => 115, 'rhs' => 3 ), + array( 'lhs' => 115, 'rhs' => 3 ), array( 'lhs' => 115, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 3 ), - array( 'lhs' => 116, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 116, 'rhs' => 2 ), array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 3 ), - array( 'lhs' => 116, 'rhs' => 3 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 0 ), + array( 'lhs' => 117, 'rhs' => 3 ), + array( 'lhs' => 117, 'rhs' => 3 ), + array( 'lhs' => 117, 'rhs' => 1 ), + array( 'lhs' => 117, 'rhs' => 3 ), + array( 'lhs' => 117, 'rhs' => 3 ), + array( 'lhs' => 117, 'rhs' => 1 ), + array( 'lhs' => 117, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 0 ), ); static public $yyReduceMap = array( 0 => 0, - 5 => 0, - 17 => 0, - 18 => 0, - 66 => 0, - 90 => 0, - 95 => 0, - 96 => 0, - 101 => 0, - 103 => 0, - 104 => 0, - 110 => 0, - 145 => 0, - 167 => 0, 1 => 1, - 2 => 2, + 2 => 1, 3 => 3, 4 => 4, + 5 => 5, 6 => 6, 7 => 7, 8 => 8, @@ -1889,42 +1870,54 @@ static public $yy_action = array( 11 => 11, 12 => 12, 13 => 13, - 16 => 13, 14 => 14, + 17 => 14, 15 => 15, - 91 => 15, - 93 => 15, - 94 => 15, - 146 => 15, - 19 => 19, - 20 => 19, - 21 => 21, + 16 => 16, + 92 => 16, + 94 => 16, + 95 => 16, + 147 => 16, + 18 => 18, + 19 => 18, + 67 => 18, + 91 => 18, + 96 => 18, + 97 => 18, + 102 => 18, + 104 => 18, + 105 => 18, + 111 => 18, + 146 => 18, + 168 => 18, + 20 => 20, + 21 => 20, 22 => 22, 23 => 23, - 24 => 23, - 25 => 23, - 26 => 23, - 27 => 27, - 28 => 27, - 29 => 29, - 30 => 29, - 31 => 31, - 32 => 31, - 33 => 33, + 24 => 24, + 25 => 24, + 26 => 24, + 27 => 24, + 28 => 28, + 29 => 28, + 30 => 30, + 31 => 30, + 32 => 32, + 33 => 32, 34 => 34, 35 => 35, 36 => 36, 37 => 37, 38 => 38, - 39 => 38, - 40 => 40, + 39 => 39, + 40 => 39, 41 => 41, 42 => 42, - 55 => 42, - 141 => 42, - 147 => 42, - 172 => 42, 43 => 43, + 56 => 43, + 142 => 43, + 148 => 43, + 173 => 43, 44 => 44, 45 => 45, 46 => 46, @@ -1936,68 +1929,68 @@ static public $yy_action = array( 52 => 52, 53 => 53, 54 => 54, - 56 => 56, + 55 => 55, 57 => 57, 58 => 58, - 59 => 58, - 60 => 58, - 61 => 61, + 59 => 59, + 60 => 59, + 61 => 59, 62 => 62, 63 => 63, 64 => 64, 65 => 65, - 67 => 67, + 66 => 66, 68 => 68, - 69 => 68, - 70 => 68, - 71 => 71, - 125 => 71, - 184 => 71, + 69 => 69, + 70 => 69, + 71 => 69, 72 => 72, + 126 => 72, + 185 => 72, 73 => 73, - 76 => 73, - 87 => 73, 74 => 74, + 77 => 74, + 88 => 74, 75 => 75, - 77 => 77, + 76 => 76, 78 => 78, 79 => 79, - 84 => 79, 80 => 80, - 83 => 80, + 85 => 80, 81 => 81, - 86 => 81, + 84 => 81, 82 => 82, - 85 => 82, - 88 => 88, + 87 => 82, + 83 => 83, + 86 => 83, 89 => 89, - 92 => 92, - 97 => 97, + 90 => 90, + 93 => 93, 98 => 98, 99 => 99, 100 => 100, - 102 => 102, - 105 => 105, + 101 => 101, + 103 => 103, 106 => 106, 107 => 107, 108 => 108, 109 => 109, - 111 => 111, + 110 => 110, 112 => 112, 113 => 113, 114 => 114, 115 => 115, - 151 => 115, 116 => 116, + 152 => 116, 117 => 117, 118 => 118, 119 => 119, 120 => 120, - 123 => 120, 121 => 121, + 124 => 121, 122 => 122, - 124 => 124, - 126 => 126, + 123 => 123, + 125 => 125, 127 => 127, 128 => 128, 129 => 129, @@ -2012,15 +2005,15 @@ static public $yy_action = array( 138 => 138, 139 => 139, 140 => 140, - 142 => 142, + 141 => 141, 143 => 143, - 144 => 143, - 148 => 148, + 144 => 144, + 145 => 144, 149 => 149, 150 => 150, - 152 => 152, - 153 => 152, - 154 => 154, + 151 => 151, + 153 => 153, + 154 => 153, 155 => 155, 156 => 156, 157 => 157, @@ -2033,259 +2026,255 @@ static public $yy_action = array( 164 => 164, 165 => 165, 166 => 166, - 168 => 168, + 167 => 167, 169 => 169, 170 => 170, 171 => 171, - 173 => 173, + 172 => 172, 174 => 174, 175 => 175, 176 => 176, 177 => 177, - 178 => 177, - 180 => 177, - 179 => 179, - 181 => 181, + 178 => 178, + 179 => 178, + 181 => 178, + 180 => 180, 182 => 182, 183 => 183, - 185 => 185, + 184 => 184, + 186 => 186, ); -#line 92 "smarty_internal_templateparser.y" - function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2051 "smarty_internal_templateparser.php" -#line 98 "smarty_internal_templateparser.y" - function yy_r1(){if ($this->template->extract_code == false) { - $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; - } else { - // store code in extract buffer - $this->template->extracted_compiled_code .= $this->yystack[$this->yyidx + 0]->minor; - } - } -#line 2060 "smarty_internal_templateparser.php" -#line 106 "smarty_internal_templateparser.y" - function yy_r2(){if ($this->template->extract_code == false) { - $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; - } else { - // store code in extract buffer - $this->template->extracted_compiled_code .= $this->yystack[$this->yyidx + 0]->minor; - $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; - } - } -#line 2070 "smarty_internal_templateparser.php" -#line 119 "smarty_internal_templateparser.y" +#line 93 "smarty_internal_templateparser.y" + function yy_r0(){ $this->_retvalue = $this->root_buffer->to_smarty_php(); } +#line 2045 "smarty_internal_templateparser.php" +#line 99 "smarty_internal_templateparser.y" + function yy_r1(){ $this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor); } +#line 2048 "smarty_internal_templateparser.php" +#line 108 "smarty_internal_templateparser.y" function yy_r3(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); - $this->_retvalue = $this->compiler->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor,true); + $this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor,true)); } else { - $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; + $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor); } $this->compiler->has_variable_string = false; $this->block_nesting_level = count($this->compiler->_tag_stack); } -#line 2082 "smarty_internal_templateparser.php" -#line 131 "smarty_internal_templateparser.y" - function yy_r4(){ $this->_retvalue = ''; } -#line 2085 "smarty_internal_templateparser.php" -#line 137 "smarty_internal_templateparser.y" +#line 2060 "smarty_internal_templateparser.php" +#line 120 "smarty_internal_templateparser.y" + function yy_r4(){ $this->_retvalue = new _smarty_tag($this, ''); } +#line 2063 "smarty_internal_templateparser.php" +#line 123 "smarty_internal_templateparser.y" + function yy_r5(){ $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); } +#line 2066 "smarty_internal_templateparser.php" +#line 126 "smarty_internal_templateparser.y" function yy_r6(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { - $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); + $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { - $this->_retvalue = htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES); + $this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES)); }elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { - $this->_retvalue = $this->compiler->processNocacheCode('_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('sec_obj->php_handling == SMARTY_PHP_REMOVE) { - $this->_retvalue = ''; + $this->_retvalue = new _smarty_text($this, ''); } } -#line 2098 "smarty_internal_templateparser.php" -#line 149 "smarty_internal_templateparser.y" +#line 2079 "smarty_internal_templateparser.php" +#line 138 "smarty_internal_templateparser.y" function yy_r7(){if ($this->is_xml) { $this->compiler->tag_nocache = true; $this->is_xml = true; - $this->_retvalue = $this->compiler->processNocacheCode("';?>", $this->compiler, true); + $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("';?>", $this->compiler, true)); }elseif ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { - $this->_retvalue = '?>'; + $this->_retvalue = new _smarty_text($this, '?>'); } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { - $this->_retvalue = htmlspecialchars('?>', ENT_QUOTES); + $this->_retvalue = new _smarty_text($this, htmlspecialchars('?>', ENT_QUOTES)); }elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { - $this->_retvalue = $this->compiler->processNocacheCode('?>', true); + $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('?>', true)); }elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) { - $this->_retvalue = ''; + $this->_retvalue = new _smarty_text($this, ''); } } -#line 2114 "smarty_internal_templateparser.php" -#line 165 "smarty_internal_templateparser.y" +#line 2095 "smarty_internal_templateparser.php" +#line 154 "smarty_internal_templateparser.y" function yy_r8(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { - $this->_retvalue = '<%'; + $this->_retvalue = new _smarty_text($this, '<%'); } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { - $this->_retvalue = htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES); + $this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES)); }elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { if ($this->asp_tags) { - $this->_retvalue = $this->compiler->processNocacheCode('<%', true); + $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('<%', true)); } else { - $this->_retvalue = '<%'; + $this->_retvalue = new _smarty_text($this, '<%'); } }elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) { if ($this->asp_tags) { - $this->_retvalue = ''; + $this->_retvalue = new _smarty_text($this, ''); } else { - $this->_retvalue = '<%'; + $this->_retvalue = new _smarty_text($this, '<%'); } } } -#line 2135 "smarty_internal_templateparser.php" -#line 186 "smarty_internal_templateparser.y" +#line 2116 "smarty_internal_templateparser.php" +#line 175 "smarty_internal_templateparser.y" function yy_r9(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { - $this->_retvalue = '%>'; + $this->_retvalue = new _smarty_text($this, '%>'); } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { - $this->_retvalue = htmlspecialchars('%>', ENT_QUOTES); + $this->_retvalue = new _smarty_text($this, htmlspecialchars('%>', ENT_QUOTES)); }elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { if ($this->asp_tags) { - $this->_retvalue = $this->compiler->processNocacheCode('%>', true); + $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('%>', true)); } else { - $this->_retvalue = '%>'; + $this->_retvalue = new _smarty_text($this, '%>'); } }elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) { if ($this->asp_tags) { - $this->_retvalue = ''; + $this->_retvalue = new _smarty_text($this, ''); } else { - $this->_retvalue = '%>'; + $this->_retvalue = new _smarty_text($this, '%>'); } } } -#line 2156 "smarty_internal_templateparser.php" -#line 206 "smarty_internal_templateparser.y" +#line 2137 "smarty_internal_templateparser.php" +#line 195 "smarty_internal_templateparser.y" function yy_r10(){if ($this->lex->strip) { - $this->_retvalue = preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); + $this->_retvalue = new _smarty_text($this, preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor))); } else { - $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); + $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); } } -#line 2164 "smarty_internal_templateparser.php" -#line 214 "smarty_internal_templateparser.y" - function yy_r11(){ $this->compiler->tag_nocache = true; $this->is_xml = true; $this->_retvalue = $this->compiler->processNocacheCode("", $this->compiler, true); } -#line 2167 "smarty_internal_templateparser.php" -#line 217 "smarty_internal_templateparser.y" +#line 2145 "smarty_internal_templateparser.php" +#line 203 "smarty_internal_templateparser.y" + function yy_r11(){ $this->compiler->tag_nocache = true; $this->is_xml = true; $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("", $this->compiler, true)); } +#line 2148 "smarty_internal_templateparser.php" +#line 206 "smarty_internal_templateparser.y" function yy_r12(){if ($this->lex->strip) { - $this->_retvalue = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor); + $this->_retvalue = new _smarty_text($this, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor)); } else { - $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; + $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); } } -#line 2175 "smarty_internal_templateparser.php" +#line 2156 "smarty_internal_templateparser.php" +#line 212 "smarty_internal_templateparser.y" + function yy_r13(){ + $this->_retvalue = new _smarty_linebreak($this, $this->yystack[$this->yyidx + 0]->minor); + } +#line 2161 "smarty_internal_templateparser.php" +#line 217 "smarty_internal_templateparser.y" + function yy_r14(){ $this->_retvalue = ''; } +#line 2164 "smarty_internal_templateparser.php" +#line 218 "smarty_internal_templateparser.y" + function yy_r15(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } +#line 2167 "smarty_internal_templateparser.php" +#line 220 "smarty_internal_templateparser.y" + function yy_r16(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2170 "smarty_internal_templateparser.php" +#line 223 "smarty_internal_templateparser.y" + function yy_r18(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2173 "smarty_internal_templateparser.php" #line 225 "smarty_internal_templateparser.y" - function yy_r13(){ $this->_retvalue = ''; } -#line 2178 "smarty_internal_templateparser.php" -#line 226 "smarty_internal_templateparser.y" - function yy_r14(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2181 "smarty_internal_templateparser.php" -#line 228 "smarty_internal_templateparser.y" - function yy_r15(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2184 "smarty_internal_templateparser.php" -#line 233 "smarty_internal_templateparser.y" - function yy_r19(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2187 "smarty_internal_templateparser.php" + function yy_r20(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } +#line 2176 "smarty_internal_templateparser.php" +#line 227 "smarty_internal_templateparser.y" + function yy_r22(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } +#line 2179 "smarty_internal_templateparser.php" #line 235 "smarty_internal_templateparser.y" - function yy_r21(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2190 "smarty_internal_templateparser.php" -#line 243 "smarty_internal_templateparser.y" - function yy_r22(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2193 "smarty_internal_templateparser.php" -#line 244 "smarty_internal_templateparser.y" - function yy_r23(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2196 "smarty_internal_templateparser.php" + function yy_r23(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2182 "smarty_internal_templateparser.php" +#line 236 "smarty_internal_templateparser.y" + function yy_r24(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2185 "smarty_internal_templateparser.php" +#line 247 "smarty_internal_templateparser.y" + function yy_r28(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } +#line 2188 "smarty_internal_templateparser.php" +#line 249 "smarty_internal_templateparser.y" + function yy_r30(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2191 "smarty_internal_templateparser.php" +#line 251 "smarty_internal_templateparser.y" + function yy_r32(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } +#line 2194 "smarty_internal_templateparser.php" +#line 254 "smarty_internal_templateparser.y" + function yy_r34(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } +#line 2197 "smarty_internal_templateparser.php" #line 255 "smarty_internal_templateparser.y" - function yy_r27(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } -#line 2199 "smarty_internal_templateparser.php" + function yy_r35(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } +#line 2200 "smarty_internal_templateparser.php" #line 257 "smarty_internal_templateparser.y" - function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2202 "smarty_internal_templateparser.php" + function yy_r36(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2203 "smarty_internal_templateparser.php" #line 259 "smarty_internal_templateparser.y" - function yy_r31(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } -#line 2205 "smarty_internal_templateparser.php" -#line 262 "smarty_internal_templateparser.y" - function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2208 "smarty_internal_templateparser.php" -#line 263 "smarty_internal_templateparser.y" - function yy_r34(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2211 "smarty_internal_templateparser.php" -#line 265 "smarty_internal_templateparser.y" - function yy_r35(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2214 "smarty_internal_templateparser.php" -#line 267 "smarty_internal_templateparser.y" - function yy_r36(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2219 "smarty_internal_templateparser.php" -#line 271 "smarty_internal_templateparser.y" - function yy_r37(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2224 "smarty_internal_templateparser.php" -#line 275 "smarty_internal_templateparser.y" - function yy_r38(){ $tag = trim(substr($this->yystack[$this->yyidx + -3]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2227 "smarty_internal_templateparser.php" -#line 278 "smarty_internal_templateparser.y" - function yy_r40(){ +#line 2213 "smarty_internal_templateparser.php" +#line 267 "smarty_internal_templateparser.y" + function yy_r39(){ $tag = trim(substr($this->yystack[$this->yyidx + -3]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2216 "smarty_internal_templateparser.php" +#line 270 "smarty_internal_templateparser.y" + function yy_r41(){ $this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2231 "smarty_internal_templateparser.php" -#line 281 "smarty_internal_templateparser.y" - function yy_r41(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2234 "smarty_internal_templateparser.php" -#line 282 "smarty_internal_templateparser.y" - function yy_r42(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2237 "smarty_internal_templateparser.php" -#line 283 "smarty_internal_templateparser.y" - function yy_r43(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2240 "smarty_internal_templateparser.php" -#line 284 "smarty_internal_templateparser.y" - function yy_r44(){ $this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2243 "smarty_internal_templateparser.php" -#line 286 "smarty_internal_templateparser.y" - function yy_r45(){ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor); } -#line 2246 "smarty_internal_templateparser.php" -#line 288 "smarty_internal_templateparser.y" - function yy_r46(){ - $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2250 "smarty_internal_templateparser.php" -#line 290 "smarty_internal_templateparser.y" +#line 2220 "smarty_internal_templateparser.php" +#line 273 "smarty_internal_templateparser.y" + function yy_r42(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } +#line 2223 "smarty_internal_templateparser.php" +#line 274 "smarty_internal_templateparser.y" + function yy_r43(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2226 "smarty_internal_templateparser.php" +#line 275 "smarty_internal_templateparser.y" + function yy_r44(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2229 "smarty_internal_templateparser.php" +#line 276 "smarty_internal_templateparser.y" + function yy_r45(){ $this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2232 "smarty_internal_templateparser.php" +#line 278 "smarty_internal_templateparser.y" + function yy_r46(){ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor); } +#line 2235 "smarty_internal_templateparser.php" +#line 280 "smarty_internal_templateparser.y" function yy_r47(){ - $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2254 "smarty_internal_templateparser.php" -#line 292 "smarty_internal_templateparser.y" - function yy_r48(){ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2258 "smarty_internal_templateparser.php" -#line 294 "smarty_internal_templateparser.y" - function yy_r49(){ +#line 2239 "smarty_internal_templateparser.php" +#line 282 "smarty_internal_templateparser.y" + function yy_r48(){ $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2262 "smarty_internal_templateparser.php" -#line 298 "smarty_internal_templateparser.y" - function yy_r50(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } -#line 2265 "smarty_internal_templateparser.php" -#line 299 "smarty_internal_templateparser.y" - function yy_r51(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 2268 "smarty_internal_templateparser.php" -#line 300 "smarty_internal_templateparser.y" - function yy_r52(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2247 "smarty_internal_templateparser.php" +#line 286 "smarty_internal_templateparser.y" + function yy_r50(){ + $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } +#line 2251 "smarty_internal_templateparser.php" +#line 290 "smarty_internal_templateparser.y" + function yy_r51(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } +#line 2254 "smarty_internal_templateparser.php" +#line 291 "smarty_internal_templateparser.y" + function yy_r52(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } +#line 2257 "smarty_internal_templateparser.php" +#line 292 "smarty_internal_templateparser.y" + function yy_r53(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2273 "smarty_internal_templateparser.php" -#line 304 "smarty_internal_templateparser.y" - function yy_r53(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2276 "smarty_internal_templateparser.php" -#line 310 "smarty_internal_templateparser.y" - function yy_r54(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; $this->_retvalue[key($this->yystack[$this->yyidx + 0]->minor)] = $this->yystack[$this->yyidx + 0]->minor[key($this->yystack[$this->yyidx + 0]->minor)]; } -#line 2279 "smarty_internal_templateparser.php" -#line 314 "smarty_internal_templateparser.y" - function yy_r56(){ $this->_retvalue = array(); } -#line 2282 "smarty_internal_templateparser.php" -#line 317 "smarty_internal_templateparser.y" - function yy_r57(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { +#line 2262 "smarty_internal_templateparser.php" +#line 296 "smarty_internal_templateparser.y" + function yy_r54(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2265 "smarty_internal_templateparser.php" +#line 302 "smarty_internal_templateparser.y" + function yy_r55(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; $this->_retvalue[key($this->yystack[$this->yyidx + 0]->minor)] = $this->yystack[$this->yyidx + 0]->minor[key($this->yystack[$this->yyidx + 0]->minor)]; } +#line 2268 "smarty_internal_templateparser.php" +#line 306 "smarty_internal_templateparser.y" + function yy_r57(){ $this->_retvalue = array(); } +#line 2271 "smarty_internal_templateparser.php" +#line 309 "smarty_internal_templateparser.y" + function yy_r58(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'true'); } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'false'); @@ -2293,84 +2282,84 @@ static public $yy_action = array( $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'null'); } else $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } -#line 2292 "smarty_internal_templateparser.php" -#line 325 "smarty_internal_templateparser.y" - function yy_r58(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2295 "smarty_internal_templateparser.php" +#line 2281 "smarty_internal_templateparser.php" +#line 317 "smarty_internal_templateparser.y" + function yy_r59(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2284 "smarty_internal_templateparser.php" +#line 320 "smarty_internal_templateparser.y" + function yy_r62(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } +#line 2287 "smarty_internal_templateparser.php" +#line 321 "smarty_internal_templateparser.y" + function yy_r63(){$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2290 "smarty_internal_templateparser.php" +#line 327 "smarty_internal_templateparser.y" + function yy_r64(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } +#line 2293 "smarty_internal_templateparser.php" #line 328 "smarty_internal_templateparser.y" - function yy_r61(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2298 "smarty_internal_templateparser.php" -#line 329 "smarty_internal_templateparser.y" - function yy_r62(){$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2301 "smarty_internal_templateparser.php" -#line 335 "smarty_internal_templateparser.y" - function yy_r63(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2304 "smarty_internal_templateparser.php" -#line 336 "smarty_internal_templateparser.y" - function yy_r64(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2307 "smarty_internal_templateparser.php" -#line 338 "smarty_internal_templateparser.y" - function yy_r65(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2310 "smarty_internal_templateparser.php" + function yy_r65(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } +#line 2296 "smarty_internal_templateparser.php" +#line 330 "smarty_internal_templateparser.y" + function yy_r66(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2299 "smarty_internal_templateparser.php" +#line 339 "smarty_internal_templateparser.y" + function yy_r68(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } +#line 2302 "smarty_internal_templateparser.php" +#line 341 "smarty_internal_templateparser.y" + function yy_r69(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } +#line 2305 "smarty_internal_templateparser.php" #line 347 "smarty_internal_templateparser.y" - function yy_r67(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2313 "smarty_internal_templateparser.php" -#line 349 "smarty_internal_templateparser.y" - function yy_r68(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } -#line 2316 "smarty_internal_templateparser.php" + function yy_r72(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2308 "smarty_internal_templateparser.php" +#line 350 "smarty_internal_templateparser.y" + function yy_r73(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } +#line 2311 "smarty_internal_templateparser.php" +#line 354 "smarty_internal_templateparser.y" + function yy_r74(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2314 "smarty_internal_templateparser.php" #line 355 "smarty_internal_templateparser.y" - function yy_r71(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2319 "smarty_internal_templateparser.php" + function yy_r75(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2317 "smarty_internal_templateparser.php" +#line 356 "smarty_internal_templateparser.y" + function yy_r76(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2320 "smarty_internal_templateparser.php" #line 358 "smarty_internal_templateparser.y" - function yy_r72(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } -#line 2322 "smarty_internal_templateparser.php" + function yy_r78(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2323 "smarty_internal_templateparser.php" +#line 359 "smarty_internal_templateparser.y" + function yy_r79(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2326 "smarty_internal_templateparser.php" +#line 360 "smarty_internal_templateparser.y" + function yy_r80(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2329 "smarty_internal_templateparser.php" +#line 361 "smarty_internal_templateparser.y" + function yy_r81(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2332 "smarty_internal_templateparser.php" #line 362 "smarty_internal_templateparser.y" - function yy_r73(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2325 "smarty_internal_templateparser.php" + function yy_r82(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2335 "smarty_internal_templateparser.php" #line 363 "smarty_internal_templateparser.y" - function yy_r74(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2328 "smarty_internal_templateparser.php" -#line 364 "smarty_internal_templateparser.y" - function yy_r75(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2331 "smarty_internal_templateparser.php" -#line 366 "smarty_internal_templateparser.y" - function yy_r77(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2334 "smarty_internal_templateparser.php" -#line 367 "smarty_internal_templateparser.y" - function yy_r78(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2337 "smarty_internal_templateparser.php" -#line 368 "smarty_internal_templateparser.y" - function yy_r79(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2340 "smarty_internal_templateparser.php" + function yy_r83(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2338 "smarty_internal_templateparser.php" #line 369 "smarty_internal_templateparser.y" - function yy_r80(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2343 "smarty_internal_templateparser.php" -#line 370 "smarty_internal_templateparser.y" - function yy_r81(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2346 "smarty_internal_templateparser.php" -#line 371 "smarty_internal_templateparser.y" - function yy_r82(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2349 "smarty_internal_templateparser.php" -#line 377 "smarty_internal_templateparser.y" - function yy_r88(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } -#line 2352 "smarty_internal_templateparser.php" -#line 383 "smarty_internal_templateparser.y" - function yy_r89(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2355 "smarty_internal_templateparser.php" + function yy_r89(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } +#line 2341 "smarty_internal_templateparser.php" +#line 375 "smarty_internal_templateparser.y" + function yy_r90(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } +#line 2344 "smarty_internal_templateparser.php" +#line 382 "smarty_internal_templateparser.y" + function yy_r93(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2347 "smarty_internal_templateparser.php" +#line 388 "smarty_internal_templateparser.y" + function yy_r98(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2350 "smarty_internal_templateparser.php" +#line 389 "smarty_internal_templateparser.y" + function yy_r99(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'; } +#line 2353 "smarty_internal_templateparser.php" #line 390 "smarty_internal_templateparser.y" - function yy_r92(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2358 "smarty_internal_templateparser.php" -#line 396 "smarty_internal_templateparser.y" - function yy_r97(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2361 "smarty_internal_templateparser.php" -#line 397 "smarty_internal_templateparser.y" - function yy_r98(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'; } -#line 2364 "smarty_internal_templateparser.php" -#line 398 "smarty_internal_templateparser.y" - function yy_r99(){ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2367 "smarty_internal_templateparser.php" -#line 400 "smarty_internal_templateparser.y" - function yy_r100(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { + function yy_r100(){ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2356 "smarty_internal_templateparser.php" +#line 392 "smarty_internal_templateparser.y" + function yy_r101(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = 'true'; } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = 'false'; @@ -2378,12 +2367,12 @@ static public $yy_action = array( $this->_retvalue = 'null'; } else $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; } -#line 2377 "smarty_internal_templateparser.php" -#line 411 "smarty_internal_templateparser.y" - function yy_r102(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2380 "smarty_internal_templateparser.php" -#line 417 "smarty_internal_templateparser.y" - function yy_r105(){if ((!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) { +#line 2366 "smarty_internal_templateparser.php" +#line 403 "smarty_internal_templateparser.y" + function yy_r103(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2369 "smarty_internal_templateparser.php" +#line 409 "smarty_internal_templateparser.y" + function yy_r106(){if ((!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) { if (isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) { $this->_retvalue = $this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor].'::'.$this->yystack[$this->yyidx + 0]->minor; } else { @@ -2393,16 +2382,16 @@ static public $yy_action = array( $this->compiler->trigger_template_error ("static class '".$this->yystack[$this->yyidx + -2]->minor."' is undefined or not allowed by security setting"); } } -#line 2392 "smarty_internal_templateparser.php" -#line 427 "smarty_internal_templateparser.y" - function yy_r106(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else { +#line 2381 "smarty_internal_templateparser.php" +#line 419 "smarty_internal_templateparser.y" + function yy_r107(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2396 "smarty_internal_templateparser.php" -#line 430 "smarty_internal_templateparser.y" - function yy_r107(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2399 "smarty_internal_templateparser.php" -#line 439 "smarty_internal_templateparser.y" - function yy_r108(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']); +#line 2385 "smarty_internal_templateparser.php" +#line 422 "smarty_internal_templateparser.y" + function yy_r108(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } +#line 2388 "smarty_internal_templateparser.php" +#line 431 "smarty_internal_templateparser.y" + function yy_r109(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']); } else { if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + 0]->minor['var']])) { $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + 0]->minor['var'] .']->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; @@ -2410,213 +2399,213 @@ static public $yy_action = array( $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; } $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2409 "smarty_internal_templateparser.php" -#line 448 "smarty_internal_templateparser.y" - function yy_r109(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) { +#line 2398 "smarty_internal_templateparser.php" +#line 440 "smarty_internal_templateparser.y" + function yy_r110(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) { $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + -2]->minor .']->'.$this->yystack[$this->yyidx + 0]->minor; } else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; } $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2417 "smarty_internal_templateparser.php" -#line 457 "smarty_internal_templateparser.y" - function yy_r111(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2420 "smarty_internal_templateparser.php" -#line 458 "smarty_internal_templateparser.y" - function yy_r112(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2423 "smarty_internal_templateparser.php" +#line 2406 "smarty_internal_templateparser.php" +#line 449 "smarty_internal_templateparser.y" + function yy_r112(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } +#line 2409 "smarty_internal_templateparser.php" +#line 450 "smarty_internal_templateparser.y" + function yy_r113(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2412 "smarty_internal_templateparser.php" +#line 453 "smarty_internal_templateparser.y" + function yy_r114(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2415 "smarty_internal_templateparser.php" +#line 459 "smarty_internal_templateparser.y" + function yy_r115(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2418 "smarty_internal_templateparser.php" #line 461 "smarty_internal_templateparser.y" - function yy_r113(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2426 "smarty_internal_templateparser.php" + function yy_r116(){return; } +#line 2421 "smarty_internal_templateparser.php" +#line 465 "smarty_internal_templateparser.y" + function yy_r117(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } +#line 2424 "smarty_internal_templateparser.php" +#line 466 "smarty_internal_templateparser.y" + function yy_r118(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } +#line 2427 "smarty_internal_templateparser.php" #line 467 "smarty_internal_templateparser.y" - function yy_r114(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2429 "smarty_internal_templateparser.php" + function yy_r119(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2430 "smarty_internal_templateparser.php" +#line 468 "smarty_internal_templateparser.y" + function yy_r120(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2433 "smarty_internal_templateparser.php" #line 469 "smarty_internal_templateparser.y" - function yy_r115(){return; } -#line 2432 "smarty_internal_templateparser.php" -#line 473 "smarty_internal_templateparser.y" - function yy_r116(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } -#line 2435 "smarty_internal_templateparser.php" -#line 474 "smarty_internal_templateparser.y" - function yy_r117(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2438 "smarty_internal_templateparser.php" -#line 475 "smarty_internal_templateparser.y" - function yy_r118(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2441 "smarty_internal_templateparser.php" + function yy_r121(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2436 "smarty_internal_templateparser.php" +#line 471 "smarty_internal_templateparser.y" + function yy_r122(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2439 "smarty_internal_templateparser.php" +#line 472 "smarty_internal_templateparser.y" + function yy_r123(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2442 "smarty_internal_templateparser.php" #line 476 "smarty_internal_templateparser.y" - function yy_r119(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2444 "smarty_internal_templateparser.php" -#line 477 "smarty_internal_templateparser.y" - function yy_r120(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2447 "smarty_internal_templateparser.php" -#line 479 "smarty_internal_templateparser.y" - function yy_r121(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2450 "smarty_internal_templateparser.php" -#line 480 "smarty_internal_templateparser.y" - function yy_r122(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2453 "smarty_internal_templateparser.php" + function yy_r125(){$this->_retvalue = '[]'; } +#line 2445 "smarty_internal_templateparser.php" #line 484 "smarty_internal_templateparser.y" - function yy_r124(){$this->_retvalue = '[]'; } -#line 2456 "smarty_internal_templateparser.php" -#line 492 "smarty_internal_templateparser.y" - function yy_r126(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2459 "smarty_internal_templateparser.php" -#line 494 "smarty_internal_templateparser.y" - function yy_r127(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2462 "smarty_internal_templateparser.php" -#line 496 "smarty_internal_templateparser.y" - function yy_r128(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2465 "smarty_internal_templateparser.php" -#line 501 "smarty_internal_templateparser.y" - function yy_r129(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else { + function yy_r127(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2448 "smarty_internal_templateparser.php" +#line 486 "smarty_internal_templateparser.y" + function yy_r128(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2451 "smarty_internal_templateparser.php" +#line 488 "smarty_internal_templateparser.y" + function yy_r129(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2454 "smarty_internal_templateparser.php" +#line 493 "smarty_internal_templateparser.y" + function yy_r130(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_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['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2469 "smarty_internal_templateparser.php" -#line 504 "smarty_internal_templateparser.y" - function yy_r130(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2472 "smarty_internal_templateparser.php" -#line 506 "smarty_internal_templateparser.y" - function yy_r131(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2475 "smarty_internal_templateparser.php" -#line 508 "smarty_internal_templateparser.y" - function yy_r132(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2478 "smarty_internal_templateparser.php" -#line 509 "smarty_internal_templateparser.y" - function yy_r133(){ $this->_retvalue = '->{$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor .')->value'.$this->yystack[$this->yyidx + 0]->minor.'}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor,"'"), null, true, false)->nocache; } -#line 2481 "smarty_internal_templateparser.php" -#line 510 "smarty_internal_templateparser.y" - function yy_r134(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2484 "smarty_internal_templateparser.php" +#line 2458 "smarty_internal_templateparser.php" +#line 496 "smarty_internal_templateparser.y" + function yy_r131(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2461 "smarty_internal_templateparser.php" +#line 498 "smarty_internal_templateparser.y" + function yy_r132(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2464 "smarty_internal_templateparser.php" +#line 500 "smarty_internal_templateparser.y" + function yy_r133(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2467 "smarty_internal_templateparser.php" +#line 501 "smarty_internal_templateparser.y" + function yy_r134(){ $this->_retvalue = '->{$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor .')->value'.$this->yystack[$this->yyidx + 0]->minor.'}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor,"'"), null, true, false)->nocache; } +#line 2470 "smarty_internal_templateparser.php" +#line 502 "smarty_internal_templateparser.y" + function yy_r135(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2473 "smarty_internal_templateparser.php" +#line 503 "smarty_internal_templateparser.y" + function yy_r136(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2476 "smarty_internal_templateparser.php" +#line 505 "smarty_internal_templateparser.y" + function yy_r137(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2479 "smarty_internal_templateparser.php" #line 511 "smarty_internal_templateparser.y" - function yy_r135(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2487 "smarty_internal_templateparser.php" -#line 513 "smarty_internal_templateparser.y" - function yy_r136(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2490 "smarty_internal_templateparser.php" -#line 519 "smarty_internal_templateparser.y" - function yy_r137(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r138(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) { $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } else { $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } -#line 2499 "smarty_internal_templateparser.php" -#line 530 "smarty_internal_templateparser.y" - function yy_r138(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2502 "smarty_internal_templateparser.php" +#line 2488 "smarty_internal_templateparser.php" +#line 522 "smarty_internal_templateparser.y" + function yy_r139(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2491 "smarty_internal_templateparser.php" +#line 523 "smarty_internal_templateparser.y" + function yy_r140(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2494 "smarty_internal_templateparser.php" +#line 527 "smarty_internal_templateparser.y" + function yy_r141(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } +#line 2497 "smarty_internal_templateparser.php" #line 531 "smarty_internal_templateparser.y" - function yy_r139(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2505 "smarty_internal_templateparser.php" -#line 535 "smarty_internal_templateparser.y" - function yy_r140(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2508 "smarty_internal_templateparser.php" -#line 539 "smarty_internal_templateparser.y" - function yy_r142(){ return; } -#line 2511 "smarty_internal_templateparser.php" -#line 544 "smarty_internal_templateparser.y" - function yy_r143(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2514 "smarty_internal_templateparser.php" -#line 554 "smarty_internal_templateparser.y" - function yy_r148(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2517 "smarty_internal_templateparser.php" -#line 556 "smarty_internal_templateparser.y" - function yy_r149(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2520 "smarty_internal_templateparser.php" + function yy_r143(){ return; } +#line 2500 "smarty_internal_templateparser.php" +#line 536 "smarty_internal_templateparser.y" + function yy_r144(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2503 "smarty_internal_templateparser.php" +#line 546 "smarty_internal_templateparser.y" + function yy_r149(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2506 "smarty_internal_templateparser.php" +#line 548 "smarty_internal_templateparser.y" + function yy_r150(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2509 "smarty_internal_templateparser.php" +#line 559 "smarty_internal_templateparser.y" + function yy_r151(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2512 "smarty_internal_templateparser.php" +#line 563 "smarty_internal_templateparser.y" + function yy_r153(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2515 "smarty_internal_templateparser.php" #line 567 "smarty_internal_templateparser.y" - function yy_r150(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2523 "smarty_internal_templateparser.php" + function yy_r155(){$this->_retvalue = '=='; } +#line 2518 "smarty_internal_templateparser.php" +#line 568 "smarty_internal_templateparser.y" + function yy_r156(){$this->_retvalue = '!='; } +#line 2521 "smarty_internal_templateparser.php" +#line 569 "smarty_internal_templateparser.y" + function yy_r157(){$this->_retvalue = '>'; } +#line 2524 "smarty_internal_templateparser.php" +#line 570 "smarty_internal_templateparser.y" + function yy_r158(){$this->_retvalue = '<'; } +#line 2527 "smarty_internal_templateparser.php" #line 571 "smarty_internal_templateparser.y" - function yy_r152(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2526 "smarty_internal_templateparser.php" + function yy_r159(){$this->_retvalue = '>='; } +#line 2530 "smarty_internal_templateparser.php" +#line 572 "smarty_internal_templateparser.y" + function yy_r160(){$this->_retvalue = '<='; } +#line 2533 "smarty_internal_templateparser.php" +#line 573 "smarty_internal_templateparser.y" + function yy_r161(){$this->_retvalue = '==='; } +#line 2536 "smarty_internal_templateparser.php" +#line 574 "smarty_internal_templateparser.y" + function yy_r162(){$this->_retvalue = '!=='; } +#line 2539 "smarty_internal_templateparser.php" #line 575 "smarty_internal_templateparser.y" - function yy_r154(){$this->_retvalue = '=='; } -#line 2529 "smarty_internal_templateparser.php" -#line 576 "smarty_internal_templateparser.y" - function yy_r155(){$this->_retvalue = '!='; } -#line 2532 "smarty_internal_templateparser.php" + function yy_r163(){$this->_retvalue = '%'; } +#line 2542 "smarty_internal_templateparser.php" #line 577 "smarty_internal_templateparser.y" - function yy_r156(){$this->_retvalue = '>'; } -#line 2535 "smarty_internal_templateparser.php" + function yy_r164(){$this->_retvalue = '&&'; } +#line 2545 "smarty_internal_templateparser.php" #line 578 "smarty_internal_templateparser.y" - function yy_r157(){$this->_retvalue = '<'; } -#line 2538 "smarty_internal_templateparser.php" + function yy_r165(){$this->_retvalue = '||'; } +#line 2548 "smarty_internal_templateparser.php" #line 579 "smarty_internal_templateparser.y" - function yy_r158(){$this->_retvalue = '>='; } -#line 2541 "smarty_internal_templateparser.php" -#line 580 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = '<='; } -#line 2544 "smarty_internal_templateparser.php" -#line 581 "smarty_internal_templateparser.y" - function yy_r160(){$this->_retvalue = '==='; } -#line 2547 "smarty_internal_templateparser.php" -#line 582 "smarty_internal_templateparser.y" - function yy_r161(){$this->_retvalue = '!=='; } -#line 2550 "smarty_internal_templateparser.php" -#line 583 "smarty_internal_templateparser.y" - function yy_r162(){$this->_retvalue = '%'; } -#line 2553 "smarty_internal_templateparser.php" -#line 585 "smarty_internal_templateparser.y" - function yy_r163(){$this->_retvalue = '&&'; } -#line 2556 "smarty_internal_templateparser.php" + function yy_r166(){$this->_retvalue = ' XOR '; } +#line 2551 "smarty_internal_templateparser.php" +#line 584 "smarty_internal_templateparser.y" + function yy_r167(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2554 "smarty_internal_templateparser.php" #line 586 "smarty_internal_templateparser.y" - function yy_r164(){$this->_retvalue = '||'; } -#line 2559 "smarty_internal_templateparser.php" + function yy_r169(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2557 "smarty_internal_templateparser.php" #line 587 "smarty_internal_templateparser.y" - function yy_r165(){$this->_retvalue = ' XOR '; } -#line 2562 "smarty_internal_templateparser.php" -#line 592 "smarty_internal_templateparser.y" - function yy_r166(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2565 "smarty_internal_templateparser.php" -#line 594 "smarty_internal_templateparser.y" - function yy_r168(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2568 "smarty_internal_templateparser.php" -#line 595 "smarty_internal_templateparser.y" - function yy_r169(){ return; } -#line 2571 "smarty_internal_templateparser.php" + function yy_r170(){ return; } +#line 2560 "smarty_internal_templateparser.php" +#line 588 "smarty_internal_templateparser.y" + function yy_r171(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2563 "smarty_internal_templateparser.php" +#line 589 "smarty_internal_templateparser.y" + function yy_r172(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2566 "smarty_internal_templateparser.php" #line 596 "smarty_internal_templateparser.y" - function yy_r170(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2574 "smarty_internal_templateparser.php" + function yy_r174(){ $this->_retvalue = "''"; } +#line 2569 "smarty_internal_templateparser.php" #line 597 "smarty_internal_templateparser.y" - function yy_r171(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2577 "smarty_internal_templateparser.php" + function yy_r175(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); } +#line 2572 "smarty_internal_templateparser.php" +#line 599 "smarty_internal_templateparser.y" + function yy_r176(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } +#line 2575 "smarty_internal_templateparser.php" +#line 600 "smarty_internal_templateparser.y" + function yy_r177(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } +#line 2578 "smarty_internal_templateparser.php" +#line 602 "smarty_internal_templateparser.y" + function yy_r178(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); } +#line 2581 "smarty_internal_templateparser.php" #line 604 "smarty_internal_templateparser.y" - function yy_r173(){ $this->_retvalue = "''"; } -#line 2580 "smarty_internal_templateparser.php" -#line 605 "smarty_internal_templateparser.y" - function yy_r174(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); } -#line 2583 "smarty_internal_templateparser.php" -#line 607 "smarty_internal_templateparser.y" - function yy_r175(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2586 "smarty_internal_templateparser.php" -#line 608 "smarty_internal_templateparser.y" - function yy_r176(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2589 "smarty_internal_templateparser.php" -#line 610 "smarty_internal_templateparser.y" - function yy_r177(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); } -#line 2592 "smarty_internal_templateparser.php" -#line 612 "smarty_internal_templateparser.y" - function yy_r179(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) { + function yy_r180(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) { $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->tpl_vars[\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\']->value'); } else { $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value'); } $this->compiler->tag_nocache = $this->compiler->tag_nocache | $this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; } -#line 2601 "smarty_internal_templateparser.php" -#line 620 "smarty_internal_templateparser.y" - function yy_r181(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); } -#line 2604 "smarty_internal_templateparser.php" -#line 621 "smarty_internal_templateparser.y" - function yy_r182(){ +#line 2590 "smarty_internal_templateparser.php" +#line 612 "smarty_internal_templateparser.y" + function yy_r182(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); } +#line 2593 "smarty_internal_templateparser.php" +#line 613 "smarty_internal_templateparser.y" + function yy_r183(){ $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2609 "smarty_internal_templateparser.php" -#line 624 "smarty_internal_templateparser.y" - function yy_r183(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2612 "smarty_internal_templateparser.php" -#line 631 "smarty_internal_templateparser.y" - function yy_r185(){$this->_retvalue = ''; } -#line 2615 "smarty_internal_templateparser.php" +#line 2598 "smarty_internal_templateparser.php" +#line 616 "smarty_internal_templateparser.y" + function yy_r184(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } +#line 2601 "smarty_internal_templateparser.php" +#line 623 "smarty_internal_templateparser.y" + function yy_r186(){$this->_retvalue = ''; } +#line 2604 "smarty_internal_templateparser.php" private $_retvalue; @@ -2673,12 +2662,12 @@ static public $yy_action = array( function yy_syntax_error($yymajor, $TOKEN) { -#line 74 "smarty_internal_templateparser.y" +#line 75 "smarty_internal_templateparser.y" $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2678 "smarty_internal_templateparser.php" +#line 2667 "smarty_internal_templateparser.php" } function yy_accept() @@ -2689,13 +2678,13 @@ static public $yy_action = array( while ($this->yyidx >= 0) { $stack = $this->yy_pop_parser_stack(); } -#line 66 "smarty_internal_templateparser.y" +#line 67 "smarty_internal_templateparser.y" $this->successful = !$this->internalError; $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2696 "smarty_internal_templateparser.php" +#line 2685 "smarty_internal_templateparser.php" } function doParse($yymajor, $yytokenvalue)