diff --git a/change_log.txt b/change_log.txt index 4c53baaf..e0e08259 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,4 +1,7 @@ ===== trunk ===== +17.12.2011 +- improvement of compiling speed by new handling of plain text blocks in the lexer/parser (issue 68) + 16.12.2011 - bugfix the source exits flag and timestamp was not setup when temple is in php include path (issue 69) diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index d8e77e81..fde9b7d1 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -20,7 +20,6 @@ class Smarty_Internal_Templatelexer public $line; public $taglineno; public $state = 1; - public $strip = false; private $heredoc_id_stack = Array(); public $smarty_token_names = array ( // Text for parser error messages 'IDENTITY' => '===', @@ -62,8 +61,7 @@ class Smarty_Internal_Templatelexer 'ANDSYM' => '"&"', 'QMARK' => '"?"', 'ID' => 'identifier', - 'OTHER' => 'text', - 'LINEBREAK' => 'newline', + 'TEXT' => 'text', 'FAKEPHPSTARTTAG' => 'Fake PHP start tag', 'PHPSTARTTAG' => 'PHP start tag', 'PHPENDTAG' => 'PHP end tag', @@ -131,8 +129,8 @@ class Smarty_Internal_Templatelexer 8 => 0, 9 => 0, 10 => 0, - 11 => 0, - 12 => 1, + 11 => 1, + 13 => 0, 14 => 0, 15 => 0, 16 => 0, @@ -143,14 +141,11 @@ class Smarty_Internal_Templatelexer 21 => 0, 22 => 0, 23 => 0, - 24 => 2, - 27 => 0, - 28 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/\G(".$this->ldel."[$]smarty\\.block\\.child".$this->rdel.")|\G(\\{\\})|\G(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|\G([\t ]*[\r\n]+[\t ]*)|\G(".$this->ldel."strip".$this->rdel.")|\G(".$this->ldel."\\s{1,}strip\\s{1,}".$this->rdel.")|\G(".$this->ldel."\/strip".$this->rdel.")|\G(".$this->ldel."\\s{1,}\/strip\\s{1,}".$this->rdel.")|\G(".$this->ldel."\\s*literal\\s*".$this->rdel.")|\G(".$this->ldel."\\s{1,}\/)|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s*setfilter\\s+)|\G(".$this->ldel."\\s{1,})|\G(".$this->ldel."\/)|\G(".$this->ldel.")|\G(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|\G(\\?>)|\G(<%)|\G(%>)|\G(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?|\\?>|<%|%>)))|\G([\S\s]+)|\G(.)/iS"; + $yy_global_pattern = "/\G(".$this->ldel."[$]smarty\\.block\\.child".$this->rdel.")|\G(\\{\\})|\G(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|\G(".$this->ldel."strip".$this->rdel.")|\G(".$this->ldel."\\s{1,}strip\\s{1,}".$this->rdel.")|\G(".$this->ldel."\/strip".$this->rdel.")|\G(".$this->ldel."\\s{1,}\/strip\\s{1,}".$this->rdel.")|\G(".$this->ldel."\\s*literal\\s*".$this->rdel.")|\G(".$this->ldel."\\s{1,}\/)|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s*setfilter\\s+)|\G(".$this->ldel."\\s{1,})|\G(".$this->ldel."\/)|\G(".$this->ldel.")|\G(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|\G(\\?>)|\G(<%)|\G(%>)|\G([\S\s])/iS"; do { if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) { @@ -208,7 +203,7 @@ class Smarty_Internal_Templatelexer function yy_r1_2($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } function yy_r1_3($yy_subpatterns) { @@ -218,79 +213,77 @@ class Smarty_Internal_Templatelexer function yy_r1_5($yy_subpatterns) { - if ($this->strip) { - return false; - } else { - $this->token = Smarty_Internal_Templateparser::TP_LINEBREAK; - } + $this->token = Smarty_Internal_Templateparser::TP_STRIPON; } function yy_r1_6($yy_subpatterns) { - $this->strip = true; - return false; + if ($this->smarty->auto_literal) { + $this->token = Smarty_Internal_Templateparser::TP_TEXT; + } else { + $this->token = Smarty_Internal_Templateparser::TP_STRIPON; + } } function yy_r1_7($yy_subpatterns) { - if ($this->smarty->auto_literal) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; - } else { - $this->strip = true; - return false; - } + $this->token = Smarty_Internal_Templateparser::TP_STRIPOFF; } function yy_r1_8($yy_subpatterns) { - $this->strip = false; - return false; - } - function yy_r1_9($yy_subpatterns) - { - if ($this->smarty->auto_literal) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { - $this->strip = false; - return false; + $this->token = Smarty_Internal_Templateparser::TP_STRIPOFF; } } - function yy_r1_10($yy_subpatterns) + function yy_r1_9($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LITERALSTART; $this->yypushstate(self::LITERAL); } - function yy_r1_11($yy_subpatterns) + function yy_r1_10($yy_subpatterns) { if ($this->smarty->auto_literal) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } } - function yy_r1_12($yy_subpatterns) + function yy_r1_11($yy_subpatterns) { if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDELIF; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; + } + } + function yy_r1_13($yy_subpatterns) + { + + if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { + $this->token = Smarty_Internal_Templateparser::TP_TEXT; + } else { + $this->token = Smarty_Internal_Templateparser::TP_LDELFOR; + $this->yypushstate(self::SMARTY); + $this->taglineno = $this->line; } } function yy_r1_14($yy_subpatterns) { if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { - $this->token = Smarty_Internal_Templateparser::TP_LDELFOR; + $this->token = Smarty_Internal_Templateparser::TP_LDELFOREACH; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } @@ -299,9 +292,9 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { - $this->token = Smarty_Internal_Templateparser::TP_LDELFOREACH; + $this->token = Smarty_Internal_Templateparser::TP_LDELSETFILTER; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } @@ -309,10 +302,10 @@ class Smarty_Internal_Templatelexer function yy_r1_16($yy_subpatterns) { - if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + if ($this->smarty->auto_literal) { + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { - $this->token = Smarty_Internal_Templateparser::TP_LDELSETFILTER; + $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } @@ -320,29 +313,18 @@ class Smarty_Internal_Templatelexer function yy_r1_17($yy_subpatterns) { - if ($this->smarty->auto_literal) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; - } else { - $this->token = Smarty_Internal_Templateparser::TP_LDEL; - $this->yypushstate(self::SMARTY); - $this->taglineno = $this->line; - } - } - function yy_r1_18($yy_subpatterns) - { - $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r1_19($yy_subpatterns) + function yy_r1_18($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r1_20($yy_subpatterns) + function yy_r1_19($yy_subpatterns) { if (in_array($this->value, Array('value = substr($this->value, 0, 2); } } - function yy_r1_21($yy_subpatterns) + function yy_r1_20($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_PHPENDTAG; } - function yy_r1_22($yy_subpatterns) + function yy_r1_21($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ASPSTARTTAG; } - function yy_r1_23($yy_subpatterns) + function yy_r1_22($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ASPENDTAG; } - function yy_r1_24($yy_subpatterns) + function yy_r1_23($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; - } - function yy_r1_27($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_OTHER; - } - function yy_r1_28($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $to = strlen($this->data); + preg_match("/{$this->ldel}|<\?|\?>|<%|%>/",$this->data,$match,PREG_OFFSET_CAPTURE,$this->counter); + if (isset($match[0][1])) { + $to = $match[0][1]; + } + $this->value = substr($this->data,$this->counter,$to-$this->counter); + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } @@ -460,7 +438,7 @@ class Smarty_Internal_Templatelexer if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/\G('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|\G(".$this->ldel."\\s{1,}\/)|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s{1,})|\G(\\s{1,}".$this->rdel.")|\G(".$this->ldel."\/)|\G(".$this->ldel.")|\G(".$this->rdel.")|\G(\\s+is\\s+in\\s+)|\G(\\s+as\\s+)|\G(\\s+to\\s+)|\G(\\s+step\\s+)|\G(\\s+instanceof\\s+)|\G(\\s*===\\s*)|\G(\\s*!==\\s*)|\G(\\s*==\\s*|\\s+eq\\s+)|\G(\\s*!=\\s*|\\s*<>\\s*|\\s+(ne|neq)\\s+)|\G(\\s*>=\\s*|\\s+(ge|gte)\\s+)|\G(\\s*<=\\s*|\\s+(le|lte)\\s+)|\G(\\s*>\\s*|\\s+gt\\s+)|\G(\\s*<\\s*|\\s+lt\\s+)|\G(\\s+mod\\s+)|\G(!\\s*|not\\s+)|\G(\\s*&&\\s*|\\s*and\\s+)|\G(\\s*\\|\\|\\s*|\\s*or\\s+)|\G(\\s*xor\\s+)|\G(\\s+is\\s+odd\\s+by\\s+)|\G(\\s+is\\s+not\\s+odd\\s+by\\s+)|\G(\\s+is\\s+odd)|\G(\\s+is\\s+not\\s+odd)|\G(\\s+is\\s+even\\s+by\\s+)|\G(\\s+is\\s+not\\s+even\\s+by\\s+)|\G(\\s+is\\s+even)|\G(\\s+is\\s+not\\s+even)|\G(\\s+is\\s+div\\s+by\\s+)|\G(\\s+is\\s+not\\s+div\\s+by\\s+)|\G(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\)\\s*)|\G(\\s*\\(\\s*)|\G(\\s*\\))|\G(\\[\\s*)|\G(\\s*\\])|\G(\\s*->\\s*)|\G(\\s*=>\\s*)|\G(\\s*=\\s*)|\G(\\+\\+|--)|\G(\\s*(\\+|-)\\s*)|\G(\\s*(\\*|\/|%)\\s*)|\G(\\$)|\G(\\s*;)|\G(::)|\G(\\s*:\\s*)|\G(@)|\G(#)|\G(\")|\G(`)|\G(\\|)|\G(\\.)|\G(\\s*,\\s*)|\G(\\s*&\\s*)|\G(\\s*\\?\\s*)|\G(0[xX][0-9a-fA-F]+)|\G([0-9]*[a-zA-Z_]\\w*)|\G(\\d+)|\G(\\s+)|\G(.)/iS"; + $yy_global_pattern = "/\G('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|\G(".$this->ldel."\\s{1,}\/)|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s{1,})|\G(\\s{1,}".$this->rdel.")|\G(".$this->ldel."\/)|\G(".$this->ldel.")|\G(".$this->rdel.")|\G(\\s+is\\s+in\\s+)|\G(\\s+as\\s+)|\G(\\s+to\\s+)|\G(\\s+step\\s+)|\G(\\s+instanceof\\s+)|\G(\\s*===\\s*)|\G(\\s*!==\\s*)|\G(\\s*==\\s*|\\s+eq\\s+)|\G(\\s*!=\\s*|\\s*<>\\s*|\\s+(ne|neq)\\s+)|\G(\\s*>=\\s*|\\s+(ge|gte)\\s+)|\G(\\s*<=\\s*|\\s+(le|lte)\\s+)|\G(\\s*>\\s*|\\s+gt\\s+)|\G(\\s*<\\s*|\\s+lt\\s+)|\G(\\s+mod\\s+)|\G(!\\s*|not\\s+)|\G(\\s*&&\\s*|\\s*and\\s+)|\G(\\s*\\|\\|\\s*|\\s*or\\s+)|\G(\\s*xor\\s+)|\G(\\s+is\\s+odd\\s+by\\s+)|\G(\\s+is\\s+not\\s+odd\\s+by\\s+)|\G(\\s+is\\s+odd)|\G(\\s+is\\s+not\\s+odd)|\G(\\s+is\\s+even\\s+by\\s+)|\G(\\s+is\\s+not\\s+even\\s+by\\s+)|\G(\\s+is\\s+even)|\G(\\s+is\\s+not\\s+even)|\G(\\s+is\\s+div\\s+by\\s+)|\G(\\s+is\\s+not\\s+div\\s+by\\s+)|\G(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\)\\s*)|\G(\\s*\\(\\s*)|\G(\\s*\\))|\G(\\[\\s*)|\G(\\s*\\])|\G(\\s*->\\s*)|\G(\\s*=>\\s*)|\G(\\s*=\\s*)|\G(\\+\\+|--)|\G(\\s*(\\+|-)\\s*)|\G(\\s*(\\*|\/|%)\\s*)|\G(\\$)|\G(\\s*;)|\G(::)|\G(\\s*:\\s*)|\G(@)|\G(#)|\G(\")|\G(`)|\G(\\|)|\G(\\.)|\G(\\s*,\\s*)|\G(\\s*&\\s*)|\G(\\s*\\?\\s*)|\G(0[xX][0-9a-fA-F]+)|\G([0-9]*[a-zA-Z_]\\w*)|\G(\\d+)|\G(\\s+)|\G([\S\s])/iS"; do { if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) { @@ -519,7 +497,7 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); @@ -530,7 +508,7 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDELIF; $this->yypushstate(self::SMARTY); @@ -541,7 +519,7 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDELFOR; $this->yypushstate(self::SMARTY); @@ -552,7 +530,7 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDELFOREACH; $this->yypushstate(self::SMARTY); @@ -563,7 +541,7 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); @@ -881,7 +859,7 @@ class Smarty_Internal_Templatelexer function yy_r2_76($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } @@ -896,13 +874,11 @@ class Smarty_Internal_Templatelexer 5 => 0, 6 => 0, 7 => 0, - 8 => 2, - 11 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/\G(".$this->ldel."\\s*literal\\s*".$this->rdel.")|\G(".$this->ldel."\\s*\/literal\\s*".$this->rdel.")|\G([\t ]*[\r\n]+[\t ]*)|\G(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|\G(\\?>)|\G(<%)|\G(%>)|\G(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."\/?literal".$this->rdel."|<\\?|<%)))|\G(.)/iS"; + $yy_global_pattern = "/\G(".$this->ldel."\\s*literal\\s*".$this->rdel.")|\G(".$this->ldel."\\s*\/literal\\s*".$this->rdel.")|\G(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|\G(\\?>)|\G(<%)|\G(%>)|\G([\S\s])/iS"; do { if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) { @@ -967,11 +943,6 @@ class Smarty_Internal_Templatelexer function yy_r3_3($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LITERAL; - } - function yy_r3_4($yy_subpatterns) - { - if (in_array($this->value, Array('token = Smarty_Internal_Templateparser::TP_PHPSTARTTAG; } else { @@ -979,31 +950,35 @@ class Smarty_Internal_Templatelexer $this->value = substr($this->value, 0, 2); } } - function yy_r3_5($yy_subpatterns) + function yy_r3_4($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_PHPENDTAG; } - function yy_r3_6($yy_subpatterns) + function yy_r3_5($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ASPSTARTTAG; } - function yy_r3_7($yy_subpatterns) + function yy_r3_6($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ASPENDTAG; } - function yy_r3_8($yy_subpatterns) + function yy_r3_7($yy_subpatterns) { + $to = strlen($this->data); + preg_match("/{$this->ldel}\/?literal{$this->rdel}|<\?|<%|\?>|%>/",$this->data,$match,PREG_OFFSET_CAPTURE,$this->counter); + if (isset($match[0][1])) { + $to = $match[0][1]; + } else { + $this->compiler->trigger_template_error ("missing or misspelled literal closing tag"); + } + + $this->value = substr($this->data,$this->counter,$to-$this->counter); $this->token = Smarty_Internal_Templateparser::TP_LITERAL; } - function yy_r3_11($yy_subpatterns) - { - - $this->compiler->trigger_template_error ("missing or misspelled literal closing tag"); - } function yylex4() @@ -1022,12 +997,11 @@ class Smarty_Internal_Templatelexer 12 => 0, 13 => 3, 17 => 0, - 18 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/\G(".$this->ldel."\\s{1,}\/)|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s{1,})|\G(".$this->ldel."\/)|\G(".$this->ldel.")|\G(\")|\G(`\\$)|\G(\\$[0-9]*[a-zA-Z_]\\w*)|\G(\\$)|\G(([^\"\\\\]*?)((?:\\\\.[^\"\\\\]*?)*?)(?=(".$this->ldel."|\\$|`\\$|\")))|\G([\S\s]+)|\G(.)/iS"; + $yy_global_pattern = "/\G(".$this->ldel."\\s{1,}\/)|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s{1,})|\G(".$this->ldel."\/)|\G(".$this->ldel.")|\G(\")|\G(`\\$)|\G(\\$[0-9]*[a-zA-Z_]\\w*)|\G(\\$)|\G(([^\"\\\\]*?)((?:\\\\.[^\"\\\\]*?)*?)(?=(".$this->ldel."|\\$|`\\$|\")))|\G([\S\s])/iS"; do { if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) { @@ -1081,7 +1055,7 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); @@ -1092,7 +1066,7 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDELIF; $this->yypushstate(self::SMARTY); @@ -1103,7 +1077,7 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDELFOR; $this->yypushstate(self::SMARTY); @@ -1114,7 +1088,7 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDELFOREACH; $this->yypushstate(self::SMARTY); @@ -1125,7 +1099,7 @@ class Smarty_Internal_Templatelexer { if ($this->smarty->auto_literal) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } else { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); @@ -1168,22 +1142,19 @@ class Smarty_Internal_Templatelexer function yy_r4_12($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } function yy_r4_13($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } function yy_r4_17($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OTHER; - } - function yy_r4_18($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $to = strlen($this->data); + $this->value = substr($this->data,$this->counter,$to-$this->counter); + $this->token = Smarty_Internal_Templateparser::TP_TEXT; } } diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index 6dfdeeff..e32461b8 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -96,6 +96,7 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php public $retvalue = 0; private $lex; private $internalError = false; + private $strip = false; function __construct($lex, $compiler) { $this->lex = $lex; @@ -135,7 +136,7 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php // return '(isset($_smarty_tpl->tpl_vars['. $variable .'])?$_smarty_tpl->tpl_vars['. $variable .']->value:$_smarty_tpl->getVariable('. $variable .')->value)'; return '$_smarty_tpl->tpl_vars['. $variable .']->value'; } -#line 131 "smarty_internal_templateparser.php" +#line 132 "smarty_internal_templateparser.php" const TP_VERT = 1; const TP_COLON = 2; @@ -146,873 +147,908 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php const TP_ASPENDTAG = 7; const TP_FAKEPHPSTARTTAG = 8; const TP_XMLTAG = 9; - const TP_OTHER = 10; - 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_LDELFOR = 22; - const TP_SEMICOLON = 23; - const TP_INCDEC = 24; - const TP_TO = 25; - const TP_STEP = 26; - const TP_LDELFOREACH = 27; - const TP_SPACE = 28; - const TP_AS = 29; - const TP_APTR = 30; - const TP_LDELSETFILTER = 31; - const TP_SMARTYBLOCKCHILD = 32; - const TP_LDELSLASH = 33; - const TP_INTEGER = 34; - const TP_COMMA = 35; - const TP_OPENP = 36; - const TP_CLOSEP = 37; - const TP_MATH = 38; - const TP_UNIMATH = 39; - const TP_ANDSYM = 40; - const TP_ISIN = 41; - const TP_ISDIVBY = 42; - const TP_ISNOTDIVBY = 43; - const TP_ISEVEN = 44; - const TP_ISNOTEVEN = 45; - const TP_ISEVENBY = 46; - const TP_ISNOTEVENBY = 47; - const TP_ISODD = 48; - const TP_ISNOTODD = 49; - const TP_ISODDBY = 50; - const TP_ISNOTODDBY = 51; - const TP_INSTANCEOF = 52; - const TP_QMARK = 53; - const TP_NOT = 54; - const TP_TYPECAST = 55; - const TP_HEX = 56; - const TP_DOT = 57; - const TP_SINGLEQUOTESTRING = 58; - const TP_DOUBLECOLON = 59; - const TP_AT = 60; - const TP_HATCH = 61; - const TP_OPENB = 62; - const TP_CLOSEB = 63; - const TP_EQUALS = 64; - const TP_NOTEQUALS = 65; - const TP_GREATERTHAN = 66; - const TP_LESSTHAN = 67; - const TP_GREATEREQUAL = 68; - const TP_LESSEQUAL = 69; - const TP_IDENTITY = 70; - const TP_NONEIDENTITY = 71; - const TP_MOD = 72; - const TP_LAND = 73; - const TP_LOR = 74; - const TP_LXOR = 75; - const TP_QUOTE = 76; - const TP_BACKTICK = 77; - const TP_DOLLARID = 78; - const YY_NO_ACTION = 590; - const YY_ACCEPT_ACTION = 589; - const YY_ERROR_ACTION = 588; + const TP_TEXT = 10; + const TP_STRIPON = 11; + const TP_STRIPOFF = 12; + const TP_LITERALSTART = 13; + const TP_LITERALEND = 14; + const TP_LITERAL = 15; + const TP_LDEL = 16; + const TP_RDEL = 17; + const TP_DOLLAR = 18; + const TP_ID = 19; + const TP_EQUAL = 20; + const TP_PTR = 21; + const TP_LDELIF = 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_SPACE = 29; + const TP_AS = 30; + const TP_APTR = 31; + const TP_LDELSETFILTER = 32; + const TP_SMARTYBLOCKCHILD = 33; + const TP_LDELSLASH = 34; + const TP_INTEGER = 35; + const TP_COMMA = 36; + const TP_OPENP = 37; + const TP_CLOSEP = 38; + const TP_MATH = 39; + const TP_UNIMATH = 40; + const TP_ANDSYM = 41; + const TP_ISIN = 42; + const TP_ISDIVBY = 43; + const TP_ISNOTDIVBY = 44; + const TP_ISEVEN = 45; + const TP_ISNOTEVEN = 46; + const TP_ISEVENBY = 47; + const TP_ISNOTEVENBY = 48; + const TP_ISODD = 49; + const TP_ISNOTODD = 50; + const TP_ISODDBY = 51; + const TP_ISNOTODDBY = 52; + const TP_INSTANCEOF = 53; + const TP_QMARK = 54; + const TP_NOT = 55; + const TP_TYPECAST = 56; + const TP_HEX = 57; + const TP_DOT = 58; + const TP_SINGLEQUOTESTRING = 59; + const TP_DOUBLECOLON = 60; + const TP_AT = 61; + const TP_HATCH = 62; + const TP_OPENB = 63; + const TP_CLOSEB = 64; + const TP_EQUALS = 65; + const TP_NOTEQUALS = 66; + const TP_GREATERTHAN = 67; + const TP_LESSTHAN = 68; + const TP_GREATEREQUAL = 69; + const TP_LESSEQUAL = 70; + const TP_IDENTITY = 71; + const TP_NONEIDENTITY = 72; + const TP_MOD = 73; + const TP_LAND = 74; + const TP_LOR = 75; + const TP_LXOR = 76; + const TP_QUOTE = 77; + const TP_BACKTICK = 78; + const TP_DOLLARID = 79; + const YY_NO_ACTION = 592; + const YY_ACCEPT_ACTION = 591; + const YY_ERROR_ACTION = 590; - const YY_SZ_ACTTAB = 2393; + const YY_SZ_ACTTAB = 2562; static public $yy_action = array( - /* 0 */ 211, 316, 317, 319, 318, 315, 314, 310, 309, 311, - /* 10 */ 312, 313, 320, 189, 304, 161, 38, 589, 95, 265, - /* 20 */ 317, 319, 7, 106, 289, 37, 26, 30, 146, 283, - /* 30 */ 10, 285, 250, 286, 238, 280, 287, 49, 48, 46, - /* 40 */ 45, 20, 29, 365, 366, 28, 32, 373, 374, 15, - /* 50 */ 11, 328, 323, 322, 324, 327, 231, 211, 4, 189, - /* 60 */ 329, 332, 211, 382, 383, 384, 385, 381, 380, 376, - /* 70 */ 375, 377, 281, 378, 379, 211, 360, 450, 180, 251, - /* 80 */ 117, 144, 196, 74, 135, 260, 17, 451, 26, 30, - /* 90 */ 307, 283, 299, 361, 35, 158, 225, 368, 362, 451, - /* 100 */ 343, 30, 30, 226, 44, 203, 285, 4, 47, 203, - /* 110 */ 218, 259, 49, 48, 46, 45, 20, 29, 365, 366, - /* 120 */ 28, 32, 373, 374, 15, 11, 351, 108, 176, 334, - /* 130 */ 144, 193, 337, 23, 129, 134, 371, 289, 382, 383, - /* 140 */ 384, 385, 381, 380, 376, 375, 377, 281, 378, 379, - /* 150 */ 211, 360, 372, 26, 203, 142, 283, 31, 68, 122, - /* 160 */ 242, 26, 109, 353, 283, 346, 454, 299, 361, 25, - /* 170 */ 185, 225, 368, 362, 30, 343, 239, 30, 454, 289, - /* 180 */ 4, 41, 26, 143, 165, 283, 4, 49, 48, 46, - /* 190 */ 45, 20, 29, 365, 366, 28, 32, 373, 374, 15, - /* 200 */ 11, 101, 160, 144, 26, 208, 34, 283, 31, 144, - /* 210 */ 8, 289, 4, 382, 383, 384, 385, 381, 380, 376, - /* 220 */ 375, 377, 281, 378, 379, 211, 360, 227, 203, 357, - /* 230 */ 142, 197, 19, 73, 135, 144, 211, 302, 9, 158, - /* 240 */ 340, 26, 299, 361, 283, 158, 225, 368, 362, 228, - /* 250 */ 343, 294, 30, 6, 331, 235, 330, 221, 195, 337, - /* 260 */ 126, 240, 49, 48, 46, 45, 20, 29, 365, 366, - /* 270 */ 28, 32, 373, 374, 15, 11, 211, 16, 129, 244, - /* 280 */ 249, 219, 208, 192, 337, 302, 228, 8, 382, 383, - /* 290 */ 384, 385, 381, 380, 376, 375, 377, 281, 378, 379, - /* 300 */ 163, 211, 107, 188, 105, 40, 40, 266, 277, 289, - /* 310 */ 241, 232, 289, 49, 48, 46, 45, 20, 29, 365, - /* 320 */ 366, 28, 32, 373, 374, 15, 11, 211, 168, 203, - /* 330 */ 40, 2, 278, 167, 175, 244, 242, 289, 350, 382, - /* 340 */ 383, 384, 385, 381, 380, 376, 375, 377, 281, 378, - /* 350 */ 379, 191, 47, 184, 204, 234, 169, 198, 287, 386, - /* 360 */ 203, 203, 289, 124, 49, 48, 46, 45, 20, 29, - /* 370 */ 365, 366, 28, 32, 373, 374, 15, 11, 211, 204, - /* 380 */ 182, 26, 26, 26, 283, 212, 224, 118, 131, 289, - /* 390 */ 382, 383, 384, 385, 381, 380, 376, 375, 377, 281, - /* 400 */ 378, 379, 370, 172, 244, 270, 204, 130, 211, 164, - /* 410 */ 26, 287, 289, 229, 178, 49, 48, 46, 45, 20, - /* 420 */ 29, 365, 366, 28, 32, 373, 374, 15, 11, 204, - /* 430 */ 364, 298, 5, 26, 100, 30, 247, 148, 148, 99, - /* 440 */ 159, 382, 383, 384, 385, 381, 380, 376, 375, 377, - /* 450 */ 281, 378, 379, 211, 354, 370, 360, 174, 26, 369, - /* 460 */ 142, 283, 360, 73, 135, 158, 157, 123, 24, 155, - /* 470 */ 135, 30, 299, 361, 211, 190, 225, 368, 362, 272, - /* 480 */ 343, 252, 225, 368, 362, 343, 343, 222, 223, 306, - /* 490 */ 49, 48, 46, 45, 20, 29, 365, 366, 28, 32, - /* 500 */ 373, 374, 15, 11, 129, 43, 236, 9, 269, 258, - /* 510 */ 199, 133, 33, 14, 202, 103, 382, 383, 384, 385, - /* 520 */ 381, 380, 376, 375, 377, 281, 378, 379, 211, 360, - /* 530 */ 370, 170, 262, 142, 360, 36, 73, 135, 151, 141, - /* 540 */ 289, 245, 135, 276, 211, 299, 361, 211, 44, 225, - /* 550 */ 368, 362, 287, 343, 225, 368, 362, 119, 343, 295, - /* 560 */ 216, 267, 282, 296, 211, 49, 48, 46, 45, 20, - /* 570 */ 29, 365, 366, 28, 32, 373, 374, 15, 11, 284, - /* 580 */ 181, 223, 333, 138, 302, 236, 297, 6, 127, 289, - /* 590 */ 116, 382, 383, 384, 385, 381, 380, 376, 375, 377, - /* 600 */ 281, 378, 379, 211, 360, 370, 177, 94, 142, 303, - /* 610 */ 292, 54, 122, 139, 162, 289, 150, 261, 264, 293, - /* 620 */ 299, 361, 30, 289, 225, 368, 362, 287, 343, 30, - /* 630 */ 287, 30, 132, 300, 308, 287, 158, 211, 30, 334, - /* 640 */ 49, 48, 46, 45, 20, 29, 365, 366, 28, 32, - /* 650 */ 373, 374, 15, 11, 211, 204, 166, 12, 275, 287, - /* 660 */ 273, 248, 342, 98, 97, 113, 382, 383, 384, 385, - /* 670 */ 381, 380, 376, 375, 377, 281, 378, 379, 370, 370, - /* 680 */ 370, 110, 18, 321, 324, 324, 324, 324, 324, 324, - /* 690 */ 246, 49, 48, 46, 45, 20, 29, 365, 366, 28, - /* 700 */ 32, 373, 374, 15, 11, 211, 324, 324, 324, 324, - /* 710 */ 324, 324, 324, 324, 112, 136, 104, 382, 383, 384, - /* 720 */ 385, 381, 380, 376, 375, 377, 281, 378, 379, 370, - /* 730 */ 370, 370, 324, 324, 324, 324, 324, 324, 324, 324, - /* 740 */ 324, 256, 49, 48, 46, 45, 20, 29, 365, 366, - /* 750 */ 28, 32, 373, 374, 15, 11, 211, 324, 324, 324, - /* 760 */ 324, 324, 324, 324, 324, 324, 324, 324, 382, 383, - /* 770 */ 384, 385, 381, 380, 376, 375, 377, 281, 378, 379, - /* 780 */ 351, 324, 324, 30, 324, 324, 324, 324, 324, 324, - /* 790 */ 324, 324, 324, 49, 48, 46, 45, 20, 29, 365, - /* 800 */ 366, 28, 32, 373, 374, 15, 11, 211, 324, 324, - /* 810 */ 324, 324, 324, 324, 324, 324, 324, 355, 324, 382, - /* 820 */ 383, 384, 385, 381, 380, 376, 375, 377, 281, 378, - /* 830 */ 379, 324, 324, 324, 324, 324, 324, 324, 324, 324, - /* 840 */ 324, 324, 324, 324, 49, 48, 46, 45, 20, 29, - /* 850 */ 365, 366, 28, 32, 373, 374, 15, 11, 324, 324, - /* 860 */ 324, 324, 324, 324, 324, 324, 324, 324, 324, 257, - /* 870 */ 382, 383, 384, 385, 381, 380, 376, 375, 377, 281, - /* 880 */ 378, 379, 211, 324, 324, 324, 194, 360, 211, 288, - /* 890 */ 255, 145, 324, 352, 336, 135, 324, 200, 42, 22, - /* 900 */ 27, 30, 30, 341, 7, 106, 30, 225, 368, 362, - /* 910 */ 146, 343, 324, 203, 250, 286, 238, 324, 211, 49, - /* 920 */ 48, 46, 45, 20, 29, 365, 366, 28, 32, 373, - /* 930 */ 374, 15, 11, 305, 324, 324, 324, 324, 324, 47, - /* 940 */ 324, 324, 324, 324, 324, 382, 383, 384, 385, 381, - /* 950 */ 380, 376, 375, 377, 281, 378, 379, 211, 324, 359, - /* 960 */ 39, 349, 360, 326, 348, 291, 156, 324, 352, 344, - /* 970 */ 135, 324, 201, 42, 324, 30, 30, 30, 324, 7, - /* 980 */ 106, 30, 225, 368, 362, 146, 343, 324, 324, 250, - /* 990 */ 286, 238, 324, 324, 49, 48, 46, 45, 20, 29, - /* 1000 */ 365, 366, 28, 32, 373, 374, 15, 11, 211, 324, - /* 1010 */ 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, - /* 1020 */ 382, 383, 384, 385, 381, 380, 376, 375, 377, 281, - /* 1030 */ 378, 379, 324, 324, 358, 39, 349, 324, 324, 324, - /* 1040 */ 324, 324, 324, 324, 324, 49, 48, 46, 45, 20, - /* 1050 */ 29, 365, 366, 28, 32, 373, 374, 15, 11, 324, - /* 1060 */ 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, - /* 1070 */ 324, 382, 383, 384, 385, 381, 380, 376, 375, 377, - /* 1080 */ 281, 378, 379, 324, 49, 48, 46, 45, 20, 29, - /* 1090 */ 365, 366, 28, 32, 373, 374, 15, 11, 324, 324, - /* 1100 */ 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, - /* 1110 */ 382, 383, 384, 385, 381, 380, 376, 375, 377, 281, - /* 1120 */ 378, 379, 324, 324, 324, 324, 38, 324, 140, 207, - /* 1130 */ 324, 360, 7, 106, 290, 147, 324, 356, 146, 135, - /* 1140 */ 324, 324, 250, 286, 238, 230, 30, 13, 367, 30, - /* 1150 */ 51, 225, 368, 362, 324, 343, 360, 324, 324, 324, - /* 1160 */ 152, 324, 324, 324, 135, 50, 52, 301, 237, 363, - /* 1170 */ 324, 360, 105, 1, 254, 154, 225, 368, 362, 135, - /* 1180 */ 343, 324, 38, 324, 140, 214, 324, 96, 7, 106, - /* 1190 */ 279, 225, 368, 362, 146, 343, 347, 345, 250, 286, - /* 1200 */ 238, 230, 30, 13, 274, 324, 51, 338, 30, 30, - /* 1210 */ 360, 324, 324, 324, 121, 324, 30, 53, 135, 30, - /* 1220 */ 211, 50, 52, 301, 237, 363, 299, 361, 105, 1, - /* 1230 */ 225, 368, 362, 211, 343, 453, 324, 268, 38, 324, - /* 1240 */ 128, 214, 324, 96, 7, 106, 253, 453, 339, 30, - /* 1250 */ 146, 335, 233, 324, 250, 286, 238, 230, 30, 3, - /* 1260 */ 30, 324, 51, 30, 271, 324, 360, 324, 4, 324, - /* 1270 */ 142, 47, 324, 84, 135, 324, 30, 50, 52, 301, - /* 1280 */ 237, 363, 299, 361, 105, 1, 225, 368, 362, 324, - /* 1290 */ 343, 144, 324, 324, 38, 324, 125, 92, 324, 96, - /* 1300 */ 7, 106, 324, 324, 324, 324, 146, 324, 324, 324, - /* 1310 */ 250, 286, 238, 230, 324, 13, 324, 324, 51, 324, - /* 1320 */ 324, 324, 360, 324, 324, 324, 142, 324, 324, 89, - /* 1330 */ 135, 324, 211, 50, 52, 301, 237, 363, 299, 361, - /* 1340 */ 105, 1, 225, 368, 362, 324, 343, 456, 324, 324, - /* 1350 */ 38, 324, 126, 214, 324, 96, 7, 106, 324, 456, - /* 1360 */ 243, 324, 146, 324, 324, 324, 250, 286, 238, 230, - /* 1370 */ 324, 21, 324, 324, 51, 324, 324, 324, 360, 324, - /* 1380 */ 324, 324, 142, 47, 324, 87, 135, 324, 211, 50, - /* 1390 */ 52, 301, 237, 363, 299, 361, 105, 1, 225, 368, - /* 1400 */ 362, 324, 343, 456, 324, 324, 38, 324, 140, 210, - /* 1410 */ 324, 96, 7, 106, 324, 456, 324, 324, 146, 324, - /* 1420 */ 324, 324, 250, 286, 238, 230, 324, 13, 324, 324, - /* 1430 */ 51, 324, 324, 324, 360, 324, 324, 324, 142, 47, - /* 1440 */ 324, 63, 135, 324, 211, 50, 52, 301, 237, 363, - /* 1450 */ 299, 361, 105, 1, 225, 368, 362, 324, 343, 325, - /* 1460 */ 324, 324, 38, 324, 137, 214, 324, 96, 7, 106, - /* 1470 */ 324, 30, 324, 324, 146, 324, 324, 324, 250, 286, - /* 1480 */ 238, 230, 324, 13, 324, 324, 51, 324, 324, 324, - /* 1490 */ 360, 324, 324, 324, 142, 47, 324, 80, 135, 324, - /* 1500 */ 324, 50, 52, 301, 237, 363, 299, 361, 105, 1, - /* 1510 */ 225, 368, 362, 324, 343, 324, 324, 324, 38, 324, - /* 1520 */ 140, 206, 324, 96, 7, 106, 324, 324, 324, 324, - /* 1530 */ 146, 324, 324, 324, 250, 286, 238, 220, 324, 13, - /* 1540 */ 324, 324, 51, 324, 324, 324, 360, 324, 324, 324, - /* 1550 */ 114, 324, 324, 75, 135, 324, 324, 50, 52, 301, - /* 1560 */ 237, 363, 299, 361, 105, 1, 225, 368, 362, 324, - /* 1570 */ 343, 324, 324, 324, 38, 324, 140, 205, 324, 96, - /* 1580 */ 7, 106, 324, 324, 324, 324, 146, 324, 324, 324, - /* 1590 */ 250, 286, 238, 230, 324, 13, 324, 324, 51, 324, - /* 1600 */ 324, 324, 360, 324, 324, 324, 142, 324, 324, 77, - /* 1610 */ 135, 324, 324, 50, 52, 301, 237, 363, 299, 361, - /* 1620 */ 105, 1, 225, 368, 362, 324, 343, 324, 324, 324, - /* 1630 */ 38, 324, 140, 209, 324, 96, 7, 106, 324, 324, - /* 1640 */ 324, 324, 146, 324, 324, 324, 250, 286, 238, 230, - /* 1650 */ 324, 13, 324, 324, 51, 324, 324, 324, 360, 324, - /* 1660 */ 324, 324, 142, 324, 324, 85, 135, 324, 324, 50, - /* 1670 */ 52, 301, 237, 363, 299, 361, 105, 1, 225, 368, - /* 1680 */ 362, 324, 343, 324, 324, 324, 38, 324, 126, 213, - /* 1690 */ 324, 96, 7, 106, 324, 324, 324, 324, 146, 324, - /* 1700 */ 324, 324, 250, 286, 238, 230, 324, 21, 324, 324, - /* 1710 */ 51, 324, 324, 324, 360, 324, 324, 324, 142, 324, - /* 1720 */ 324, 71, 135, 324, 324, 50, 52, 301, 237, 363, - /* 1730 */ 299, 361, 105, 324, 225, 368, 362, 324, 343, 324, - /* 1740 */ 324, 324, 38, 324, 126, 214, 324, 96, 7, 106, - /* 1750 */ 324, 324, 324, 324, 146, 324, 324, 324, 250, 286, - /* 1760 */ 238, 230, 324, 21, 102, 186, 51, 324, 324, 324, - /* 1770 */ 324, 324, 324, 324, 289, 324, 324, 22, 27, 324, - /* 1780 */ 499, 50, 52, 301, 237, 363, 324, 499, 105, 499, - /* 1790 */ 499, 203, 499, 499, 324, 324, 324, 324, 324, 499, - /* 1800 */ 4, 499, 324, 96, 324, 324, 324, 324, 324, 324, - /* 1810 */ 324, 324, 324, 360, 324, 324, 499, 117, 324, 324, - /* 1820 */ 74, 135, 324, 144, 324, 324, 324, 499, 324, 299, - /* 1830 */ 361, 324, 324, 225, 368, 362, 324, 343, 360, 324, - /* 1840 */ 324, 499, 142, 324, 324, 66, 135, 324, 263, 324, - /* 1850 */ 324, 324, 324, 324, 299, 361, 324, 324, 225, 368, - /* 1860 */ 362, 324, 343, 324, 360, 324, 324, 324, 142, 324, - /* 1870 */ 324, 79, 135, 324, 360, 324, 324, 324, 149, 324, - /* 1880 */ 299, 361, 135, 360, 225, 368, 362, 142, 343, 324, - /* 1890 */ 81, 135, 324, 324, 225, 368, 362, 324, 343, 299, - /* 1900 */ 361, 324, 324, 225, 368, 362, 324, 343, 324, 324, - /* 1910 */ 324, 360, 324, 324, 324, 115, 324, 324, 83, 135, - /* 1920 */ 324, 324, 360, 324, 324, 324, 142, 299, 361, 72, - /* 1930 */ 135, 225, 368, 362, 324, 343, 324, 324, 299, 361, - /* 1940 */ 324, 324, 225, 368, 362, 324, 343, 324, 360, 324, - /* 1950 */ 324, 324, 142, 324, 324, 70, 135, 324, 360, 324, - /* 1960 */ 324, 324, 153, 324, 299, 361, 135, 360, 225, 368, - /* 1970 */ 362, 142, 343, 324, 68, 135, 324, 324, 225, 368, - /* 1980 */ 362, 324, 343, 299, 361, 324, 324, 225, 368, 362, - /* 1990 */ 324, 343, 324, 324, 324, 360, 324, 324, 324, 142, - /* 2000 */ 324, 324, 90, 135, 324, 324, 360, 324, 324, 324, - /* 2010 */ 142, 299, 361, 86, 135, 225, 368, 362, 324, 343, - /* 2020 */ 324, 324, 299, 361, 324, 324, 225, 368, 362, 324, - /* 2030 */ 343, 324, 360, 194, 183, 324, 142, 324, 324, 91, - /* 2040 */ 135, 324, 324, 289, 324, 324, 22, 27, 299, 361, - /* 2050 */ 324, 360, 225, 368, 362, 142, 343, 324, 61, 135, - /* 2060 */ 203, 324, 324, 324, 194, 171, 324, 299, 361, 324, - /* 2070 */ 324, 225, 368, 362, 289, 343, 324, 22, 27, 360, - /* 2080 */ 324, 324, 324, 142, 324, 324, 88, 135, 324, 324, - /* 2090 */ 360, 203, 324, 324, 142, 299, 361, 69, 135, 225, - /* 2100 */ 368, 362, 324, 343, 324, 324, 299, 361, 324, 324, - /* 2110 */ 225, 368, 362, 324, 343, 324, 360, 194, 179, 324, - /* 2120 */ 142, 324, 324, 76, 135, 324, 324, 289, 324, 324, - /* 2130 */ 22, 27, 299, 361, 324, 360, 225, 368, 362, 142, - /* 2140 */ 343, 324, 65, 135, 203, 324, 324, 324, 194, 187, - /* 2150 */ 324, 299, 361, 324, 324, 225, 368, 362, 289, 343, - /* 2160 */ 324, 22, 27, 360, 324, 324, 324, 111, 324, 324, - /* 2170 */ 64, 135, 324, 324, 360, 203, 324, 324, 142, 299, - /* 2180 */ 361, 62, 135, 225, 368, 362, 324, 343, 324, 324, - /* 2190 */ 299, 361, 324, 324, 225, 368, 362, 324, 343, 324, - /* 2200 */ 360, 194, 173, 324, 142, 324, 324, 82, 135, 324, - /* 2210 */ 324, 289, 324, 324, 22, 27, 299, 361, 324, 360, - /* 2220 */ 225, 368, 362, 142, 343, 324, 60, 135, 203, 324, - /* 2230 */ 324, 324, 324, 324, 324, 299, 361, 324, 324, 225, - /* 2240 */ 368, 362, 324, 343, 324, 324, 324, 360, 324, 324, - /* 2250 */ 324, 93, 324, 324, 57, 120, 324, 324, 360, 324, - /* 2260 */ 324, 324, 142, 299, 361, 58, 135, 225, 368, 362, - /* 2270 */ 324, 343, 324, 324, 299, 361, 324, 324, 225, 368, - /* 2280 */ 362, 324, 343, 324, 360, 324, 324, 324, 142, 324, - /* 2290 */ 324, 59, 135, 324, 324, 324, 324, 324, 324, 324, - /* 2300 */ 299, 361, 324, 360, 225, 368, 362, 93, 343, 324, - /* 2310 */ 55, 120, 324, 324, 324, 324, 324, 324, 324, 299, - /* 2320 */ 361, 324, 324, 215, 368, 362, 324, 343, 324, 324, - /* 2330 */ 324, 360, 324, 324, 324, 142, 324, 324, 56, 135, - /* 2340 */ 324, 324, 360, 324, 324, 324, 142, 299, 361, 78, - /* 2350 */ 135, 225, 368, 362, 324, 343, 324, 324, 299, 361, - /* 2360 */ 324, 324, 225, 368, 362, 324, 343, 324, 360, 324, - /* 2370 */ 324, 324, 142, 324, 324, 67, 135, 324, 324, 324, - /* 2380 */ 324, 324, 324, 324, 299, 361, 324, 324, 217, 368, - /* 2390 */ 362, 324, 343, + /* 0 */ 218, 317, 318, 320, 319, 316, 315, 311, 310, 312, + /* 10 */ 313, 314, 321, 322, 197, 193, 187, 43, 591, 95, + /* 20 */ 255, 318, 320, 6, 107, 292, 38, 11, 42, 154, + /* 30 */ 283, 13, 181, 245, 295, 241, 262, 284, 51, 50, + /* 40 */ 52, 44, 23, 28, 367, 374, 33, 32, 375, 383, + /* 50 */ 21, 31, 328, 323, 325, 326, 324, 9, 36, 353, + /* 60 */ 265, 197, 331, 329, 384, 385, 386, 382, 381, 377, + /* 70 */ 376, 378, 379, 282, 380, 362, 218, 344, 4, 106, + /* 80 */ 175, 120, 7, 11, 82, 129, 283, 12, 456, 292, + /* 90 */ 453, 27, 291, 301, 361, 109, 387, 236, 368, 365, + /* 100 */ 456, 343, 453, 243, 42, 136, 200, 37, 7, 267, + /* 110 */ 7, 219, 256, 7, 51, 50, 52, 44, 23, 28, + /* 120 */ 367, 374, 33, 32, 375, 383, 21, 31, 239, 99, + /* 130 */ 171, 136, 36, 136, 261, 26, 136, 123, 373, 292, + /* 140 */ 384, 385, 386, 382, 381, 377, 376, 378, 379, 282, + /* 150 */ 380, 362, 218, 344, 369, 218, 200, 132, 158, 184, + /* 160 */ 68, 119, 235, 11, 11, 153, 283, 283, 337, 301, + /* 170 */ 361, 458, 306, 236, 368, 365, 42, 343, 252, 284, + /* 180 */ 42, 191, 218, 458, 250, 11, 200, 287, 283, 12, + /* 190 */ 51, 50, 52, 44, 23, 28, 367, 374, 33, 32, + /* 200 */ 375, 383, 21, 31, 302, 108, 168, 49, 200, 232, + /* 210 */ 11, 218, 35, 283, 240, 292, 384, 385, 386, 382, + /* 220 */ 381, 377, 376, 378, 379, 282, 380, 362, 218, 344, + /* 230 */ 207, 218, 200, 132, 49, 8, 54, 119, 142, 11, + /* 240 */ 14, 158, 283, 110, 342, 301, 361, 455, 152, 236, + /* 250 */ 368, 365, 42, 343, 231, 239, 42, 350, 103, 455, + /* 260 */ 248, 199, 339, 49, 343, 345, 51, 50, 52, 44, + /* 270 */ 23, 28, 367, 374, 33, 32, 375, 383, 21, 31, + /* 280 */ 128, 183, 174, 49, 370, 163, 198, 339, 15, 158, + /* 290 */ 292, 292, 384, 385, 386, 382, 381, 377, 376, 378, + /* 300 */ 379, 282, 380, 362, 218, 344, 192, 218, 201, 120, + /* 310 */ 344, 272, 82, 129, 156, 164, 270, 218, 129, 158, + /* 320 */ 273, 301, 361, 458, 292, 236, 368, 365, 128, 343, + /* 330 */ 236, 368, 365, 296, 343, 458, 284, 244, 130, 227, + /* 340 */ 260, 330, 51, 50, 52, 44, 23, 28, 367, 374, + /* 350 */ 33, 32, 375, 383, 21, 31, 207, 196, 339, 49, + /* 360 */ 41, 8, 127, 162, 251, 229, 212, 242, 384, 385, + /* 370 */ 386, 382, 381, 377, 376, 378, 379, 282, 380, 362, + /* 380 */ 218, 344, 101, 218, 176, 132, 344, 140, 78, 129, + /* 390 */ 148, 166, 249, 292, 129, 186, 278, 301, 361, 327, + /* 400 */ 292, 236, 368, 365, 292, 343, 236, 368, 365, 5, + /* 410 */ 343, 42, 211, 36, 121, 281, 284, 201, 51, 50, + /* 420 */ 52, 44, 23, 28, 367, 374, 33, 32, 375, 383, + /* 430 */ 21, 31, 218, 178, 7, 49, 179, 275, 225, 185, + /* 440 */ 11, 284, 292, 283, 384, 385, 386, 382, 381, 377, + /* 450 */ 376, 378, 379, 282, 380, 362, 17, 136, 11, 201, + /* 460 */ 170, 226, 173, 200, 284, 141, 247, 223, 335, 292, + /* 470 */ 51, 50, 52, 44, 23, 28, 367, 374, 33, 32, + /* 480 */ 375, 383, 21, 31, 135, 218, 201, 359, 11, 11, + /* 490 */ 11, 238, 213, 234, 188, 302, 384, 385, 386, 382, + /* 500 */ 381, 377, 376, 378, 379, 282, 380, 362, 195, 351, + /* 510 */ 189, 366, 251, 235, 218, 251, 264, 333, 146, 332, + /* 520 */ 305, 200, 143, 51, 50, 52, 44, 23, 28, 367, + /* 530 */ 374, 33, 32, 375, 383, 21, 31, 218, 203, 137, + /* 540 */ 15, 297, 42, 271, 194, 19, 98, 116, 102, 384, + /* 550 */ 385, 386, 382, 381, 377, 376, 378, 379, 282, 380, + /* 560 */ 362, 372, 372, 372, 300, 34, 224, 138, 39, 139, + /* 570 */ 225, 146, 131, 133, 159, 51, 50, 52, 44, 23, + /* 580 */ 28, 367, 374, 33, 32, 375, 383, 21, 31, 372, + /* 590 */ 172, 334, 94, 299, 276, 302, 2, 371, 4, 292, + /* 600 */ 125, 384, 385, 386, 382, 381, 377, 376, 378, 379, + /* 610 */ 282, 380, 362, 218, 344, 372, 218, 308, 132, 344, + /* 620 */ 287, 78, 129, 150, 370, 201, 161, 129, 160, 204, + /* 630 */ 301, 361, 341, 29, 236, 368, 365, 292, 343, 236, + /* 640 */ 368, 365, 218, 343, 284, 216, 42, 20, 277, 284, + /* 650 */ 263, 51, 50, 52, 44, 23, 28, 367, 374, 33, + /* 660 */ 32, 375, 383, 21, 31, 218, 228, 45, 49, 16, + /* 670 */ 326, 249, 104, 326, 326, 118, 105, 384, 385, 386, + /* 680 */ 382, 381, 377, 376, 378, 379, 282, 380, 362, 340, + /* 690 */ 372, 372, 326, 326, 326, 326, 326, 326, 326, 326, + /* 700 */ 326, 42, 237, 51, 50, 52, 44, 23, 28, 367, + /* 710 */ 374, 33, 32, 375, 383, 21, 31, 218, 326, 326, + /* 720 */ 326, 326, 326, 326, 326, 326, 114, 326, 218, 384, + /* 730 */ 385, 386, 382, 381, 377, 376, 378, 379, 282, 380, + /* 740 */ 362, 372, 353, 326, 307, 326, 326, 326, 326, 326, + /* 750 */ 326, 326, 326, 326, 268, 51, 50, 52, 44, 23, + /* 760 */ 28, 367, 374, 33, 32, 375, 383, 21, 31, 218, + /* 770 */ 326, 326, 326, 326, 326, 326, 326, 326, 97, 355, + /* 780 */ 112, 384, 385, 386, 382, 381, 377, 376, 378, 379, + /* 790 */ 282, 380, 362, 372, 326, 372, 326, 42, 326, 326, + /* 800 */ 326, 326, 326, 326, 326, 326, 158, 51, 50, 52, + /* 810 */ 44, 23, 28, 367, 374, 33, 32, 375, 383, 21, + /* 820 */ 31, 218, 326, 326, 326, 326, 326, 326, 326, 326, + /* 830 */ 326, 326, 326, 384, 385, 386, 382, 381, 377, 376, + /* 840 */ 378, 379, 282, 380, 362, 128, 326, 326, 326, 326, + /* 850 */ 326, 326, 326, 326, 326, 326, 326, 326, 326, 51, + /* 860 */ 50, 52, 44, 23, 28, 367, 374, 33, 32, 375, + /* 870 */ 383, 21, 31, 326, 326, 326, 326, 326, 326, 326, + /* 880 */ 326, 326, 326, 326, 266, 384, 385, 386, 382, 381, + /* 890 */ 377, 376, 378, 379, 282, 380, 362, 218, 326, 326, + /* 900 */ 326, 326, 190, 344, 326, 326, 11, 145, 354, 283, + /* 910 */ 288, 129, 218, 202, 18, 24, 22, 218, 45, 42, + /* 920 */ 6, 107, 42, 236, 368, 365, 154, 343, 286, 200, + /* 930 */ 245, 295, 241, 285, 326, 51, 50, 52, 44, 23, + /* 940 */ 28, 367, 374, 33, 32, 375, 383, 21, 31, 218, + /* 950 */ 10, 326, 326, 326, 326, 326, 326, 326, 326, 326, + /* 960 */ 326, 384, 385, 386, 382, 381, 377, 376, 378, 379, + /* 970 */ 282, 380, 362, 326, 326, 356, 40, 352, 326, 326, + /* 980 */ 326, 326, 326, 326, 326, 326, 326, 51, 50, 52, + /* 990 */ 44, 23, 28, 367, 374, 33, 32, 375, 383, 21, + /* 1000 */ 31, 218, 326, 326, 326, 326, 326, 326, 326, 326, + /* 1010 */ 326, 326, 326, 384, 385, 386, 382, 381, 377, 376, + /* 1020 */ 378, 379, 282, 380, 362, 326, 326, 326, 326, 326, + /* 1030 */ 326, 326, 326, 326, 326, 326, 326, 326, 326, 51, + /* 1040 */ 50, 52, 44, 23, 28, 367, 374, 33, 32, 375, + /* 1050 */ 383, 21, 31, 326, 326, 326, 326, 326, 326, 326, + /* 1060 */ 326, 326, 326, 326, 326, 384, 385, 386, 382, 381, + /* 1070 */ 377, 376, 378, 379, 282, 380, 362, 218, 218, 51, + /* 1080 */ 50, 52, 44, 23, 28, 367, 374, 33, 32, 375, + /* 1090 */ 383, 21, 31, 303, 304, 326, 326, 326, 326, 326, + /* 1100 */ 326, 326, 326, 326, 326, 384, 385, 386, 382, 381, + /* 1110 */ 377, 376, 378, 379, 282, 380, 362, 218, 326, 218, + /* 1120 */ 326, 326, 43, 326, 134, 208, 326, 326, 6, 107, + /* 1130 */ 326, 326, 253, 348, 154, 452, 354, 230, 245, 295, + /* 1140 */ 241, 246, 18, 30, 42, 42, 48, 42, 6, 107, + /* 1150 */ 326, 326, 326, 7, 154, 326, 326, 326, 245, 295, + /* 1160 */ 241, 47, 46, 298, 233, 363, 326, 344, 101, 1, + /* 1170 */ 269, 155, 326, 326, 326, 129, 136, 326, 43, 326, + /* 1180 */ 134, 220, 326, 96, 6, 107, 358, 236, 368, 365, + /* 1190 */ 154, 343, 326, 326, 245, 295, 241, 246, 42, 30, + /* 1200 */ 326, 254, 48, 360, 40, 352, 326, 344, 326, 326, + /* 1210 */ 326, 151, 326, 42, 349, 129, 326, 47, 46, 298, + /* 1220 */ 233, 363, 326, 274, 101, 1, 42, 236, 368, 365, + /* 1230 */ 326, 343, 336, 357, 43, 42, 144, 220, 326, 96, + /* 1240 */ 6, 107, 289, 326, 42, 42, 154, 258, 326, 294, + /* 1250 */ 245, 295, 241, 246, 42, 3, 326, 338, 48, 42, + /* 1260 */ 259, 42, 326, 344, 326, 326, 326, 149, 326, 42, + /* 1270 */ 279, 129, 42, 47, 46, 298, 233, 363, 326, 293, + /* 1280 */ 101, 1, 42, 236, 368, 365, 326, 343, 309, 347, + /* 1290 */ 43, 42, 126, 220, 326, 96, 6, 107, 290, 326, + /* 1300 */ 42, 42, 154, 346, 326, 257, 245, 295, 241, 246, + /* 1310 */ 42, 30, 326, 326, 48, 42, 326, 42, 326, 326, + /* 1320 */ 326, 326, 326, 326, 326, 326, 326, 326, 326, 47, + /* 1330 */ 46, 298, 233, 363, 326, 326, 101, 1, 326, 326, + /* 1340 */ 326, 326, 326, 326, 326, 326, 43, 326, 130, 220, + /* 1350 */ 326, 96, 6, 107, 326, 326, 326, 326, 154, 326, + /* 1360 */ 326, 326, 245, 295, 241, 246, 326, 25, 326, 326, + /* 1370 */ 48, 326, 326, 326, 326, 326, 326, 326, 326, 326, + /* 1380 */ 326, 326, 326, 326, 326, 47, 46, 298, 233, 363, + /* 1390 */ 326, 326, 101, 1, 326, 326, 326, 326, 326, 326, + /* 1400 */ 326, 326, 43, 326, 134, 210, 326, 96, 6, 107, + /* 1410 */ 326, 326, 326, 326, 154, 326, 326, 326, 245, 295, + /* 1420 */ 241, 246, 326, 30, 326, 326, 48, 326, 326, 326, + /* 1430 */ 326, 326, 326, 326, 326, 326, 326, 326, 326, 326, + /* 1440 */ 326, 47, 46, 298, 233, 363, 326, 326, 101, 1, + /* 1450 */ 326, 326, 326, 326, 326, 326, 326, 326, 43, 326, + /* 1460 */ 124, 92, 326, 96, 6, 107, 326, 326, 326, 326, + /* 1470 */ 154, 326, 326, 326, 245, 295, 241, 246, 326, 30, + /* 1480 */ 326, 326, 48, 326, 326, 326, 326, 326, 326, 326, + /* 1490 */ 326, 326, 326, 326, 326, 326, 326, 47, 46, 298, + /* 1500 */ 233, 363, 326, 326, 101, 1, 326, 326, 326, 326, + /* 1510 */ 326, 326, 326, 326, 43, 326, 134, 206, 326, 96, + /* 1520 */ 6, 107, 326, 326, 326, 326, 154, 326, 326, 326, + /* 1530 */ 245, 295, 241, 222, 326, 30, 326, 326, 48, 326, + /* 1540 */ 326, 326, 326, 326, 326, 326, 326, 326, 326, 326, + /* 1550 */ 326, 326, 326, 47, 46, 298, 233, 363, 326, 326, + /* 1560 */ 101, 1, 326, 326, 326, 326, 326, 326, 326, 326, + /* 1570 */ 43, 326, 134, 205, 326, 96, 6, 107, 326, 326, + /* 1580 */ 326, 326, 154, 326, 326, 326, 245, 295, 241, 246, + /* 1590 */ 326, 30, 326, 326, 48, 326, 326, 326, 326, 326, + /* 1600 */ 326, 326, 326, 326, 326, 326, 326, 326, 326, 47, + /* 1610 */ 46, 298, 233, 363, 326, 326, 101, 1, 326, 326, + /* 1620 */ 326, 326, 326, 326, 326, 326, 43, 326, 134, 209, + /* 1630 */ 326, 96, 6, 107, 326, 326, 326, 326, 154, 326, + /* 1640 */ 326, 326, 245, 295, 241, 246, 326, 30, 326, 326, + /* 1650 */ 48, 326, 326, 326, 326, 326, 326, 326, 326, 326, + /* 1660 */ 326, 326, 326, 326, 326, 47, 46, 298, 233, 363, + /* 1670 */ 326, 326, 101, 1, 326, 326, 326, 326, 326, 326, + /* 1680 */ 326, 326, 43, 326, 130, 220, 326, 96, 6, 107, + /* 1690 */ 326, 326, 326, 326, 154, 326, 326, 326, 245, 295, + /* 1700 */ 241, 246, 326, 25, 326, 326, 48, 326, 326, 326, + /* 1710 */ 326, 326, 326, 326, 326, 326, 326, 326, 326, 190, + /* 1720 */ 165, 47, 46, 298, 233, 363, 326, 326, 101, 292, + /* 1730 */ 326, 326, 24, 22, 326, 326, 326, 326, 43, 326, + /* 1740 */ 130, 221, 326, 96, 6, 107, 200, 326, 326, 326, + /* 1750 */ 154, 326, 326, 326, 245, 295, 241, 246, 326, 25, + /* 1760 */ 326, 326, 48, 326, 326, 326, 326, 326, 326, 326, + /* 1770 */ 326, 326, 326, 326, 326, 326, 326, 47, 46, 298, + /* 1780 */ 233, 363, 326, 326, 101, 326, 326, 326, 326, 326, + /* 1790 */ 326, 326, 326, 326, 326, 501, 190, 180, 326, 96, + /* 1800 */ 326, 326, 501, 326, 501, 501, 292, 501, 501, 24, + /* 1810 */ 22, 326, 326, 344, 501, 7, 501, 132, 326, 326, + /* 1820 */ 78, 129, 326, 200, 326, 326, 326, 326, 326, 301, + /* 1830 */ 361, 501, 326, 236, 368, 365, 326, 343, 136, 326, + /* 1840 */ 326, 344, 501, 326, 217, 93, 326, 326, 59, 117, + /* 1850 */ 326, 326, 326, 326, 326, 326, 501, 301, 361, 326, + /* 1860 */ 326, 236, 368, 365, 344, 343, 326, 326, 132, 326, + /* 1870 */ 326, 77, 129, 326, 326, 326, 326, 326, 326, 326, + /* 1880 */ 301, 361, 326, 326, 236, 368, 365, 344, 343, 326, + /* 1890 */ 326, 132, 326, 326, 84, 129, 326, 326, 344, 326, + /* 1900 */ 326, 326, 115, 301, 361, 72, 129, 236, 368, 365, + /* 1910 */ 326, 343, 326, 326, 301, 361, 326, 326, 236, 368, + /* 1920 */ 365, 326, 343, 344, 326, 326, 326, 132, 326, 326, + /* 1930 */ 64, 129, 326, 326, 344, 326, 326, 326, 132, 301, + /* 1940 */ 361, 66, 129, 236, 368, 365, 326, 343, 326, 326, + /* 1950 */ 301, 361, 326, 344, 236, 368, 365, 132, 343, 326, + /* 1960 */ 68, 129, 326, 326, 326, 326, 326, 326, 326, 301, + /* 1970 */ 361, 326, 344, 236, 368, 365, 132, 343, 326, 76, + /* 1980 */ 129, 326, 326, 344, 326, 326, 326, 132, 301, 361, + /* 1990 */ 80, 129, 236, 368, 365, 326, 343, 326, 326, 301, + /* 2000 */ 361, 326, 326, 236, 368, 365, 326, 343, 344, 326, + /* 2010 */ 326, 326, 132, 326, 326, 60, 129, 326, 326, 344, + /* 2020 */ 326, 326, 326, 132, 301, 361, 73, 129, 236, 368, + /* 2030 */ 365, 326, 343, 326, 326, 301, 361, 326, 344, 236, + /* 2040 */ 368, 365, 132, 343, 326, 74, 129, 326, 326, 326, + /* 2050 */ 326, 326, 326, 326, 301, 361, 326, 344, 236, 368, + /* 2060 */ 365, 132, 343, 326, 90, 129, 326, 326, 344, 326, + /* 2070 */ 326, 326, 132, 301, 361, 65, 129, 236, 368, 365, + /* 2080 */ 326, 343, 326, 326, 301, 361, 326, 326, 236, 368, + /* 2090 */ 365, 326, 343, 344, 326, 326, 326, 132, 326, 326, + /* 2100 */ 83, 129, 326, 326, 344, 326, 326, 326, 93, 301, + /* 2110 */ 361, 53, 117, 236, 368, 365, 326, 343, 326, 326, + /* 2120 */ 301, 361, 326, 344, 215, 368, 365, 132, 343, 326, + /* 2130 */ 87, 129, 326, 326, 326, 326, 326, 326, 326, 301, + /* 2140 */ 361, 326, 344, 236, 368, 365, 132, 343, 326, 58, + /* 2150 */ 129, 326, 326, 344, 326, 326, 326, 122, 301, 361, + /* 2160 */ 55, 129, 236, 368, 365, 326, 343, 326, 326, 301, + /* 2170 */ 361, 326, 326, 236, 368, 365, 326, 343, 344, 326, + /* 2180 */ 326, 326, 132, 326, 326, 70, 129, 326, 326, 344, + /* 2190 */ 326, 326, 326, 132, 301, 361, 91, 129, 236, 368, + /* 2200 */ 365, 326, 343, 326, 326, 301, 361, 326, 344, 236, + /* 2210 */ 368, 365, 111, 343, 326, 63, 129, 326, 326, 326, + /* 2220 */ 326, 326, 326, 326, 301, 361, 326, 344, 236, 368, + /* 2230 */ 365, 132, 343, 326, 86, 129, 326, 326, 344, 326, + /* 2240 */ 326, 326, 132, 301, 361, 79, 129, 236, 368, 365, + /* 2250 */ 326, 343, 326, 326, 301, 361, 326, 326, 236, 368, + /* 2260 */ 365, 326, 343, 344, 326, 326, 326, 132, 326, 326, + /* 2270 */ 75, 129, 326, 326, 344, 326, 326, 326, 132, 301, + /* 2280 */ 361, 88, 129, 236, 368, 365, 326, 343, 326, 326, + /* 2290 */ 301, 361, 326, 344, 236, 368, 365, 132, 343, 326, + /* 2300 */ 62, 129, 326, 326, 326, 326, 326, 326, 326, 301, + /* 2310 */ 361, 326, 344, 236, 368, 365, 132, 343, 326, 61, + /* 2320 */ 129, 326, 326, 344, 326, 326, 326, 132, 301, 361, + /* 2330 */ 69, 129, 236, 368, 365, 326, 343, 326, 326, 301, + /* 2340 */ 361, 326, 326, 236, 368, 365, 326, 343, 344, 326, + /* 2350 */ 326, 326, 132, 326, 326, 57, 129, 326, 326, 344, + /* 2360 */ 326, 326, 326, 132, 301, 361, 89, 129, 236, 368, + /* 2370 */ 365, 326, 343, 326, 326, 301, 361, 326, 344, 236, + /* 2380 */ 368, 365, 132, 343, 326, 81, 129, 326, 326, 326, + /* 2390 */ 326, 326, 326, 326, 301, 361, 326, 344, 236, 368, + /* 2400 */ 365, 113, 343, 326, 85, 129, 326, 326, 344, 326, + /* 2410 */ 326, 326, 132, 301, 361, 71, 129, 236, 368, 365, + /* 2420 */ 326, 343, 326, 326, 301, 361, 326, 326, 236, 368, + /* 2430 */ 365, 326, 343, 344, 326, 326, 326, 132, 326, 326, + /* 2440 */ 67, 129, 326, 326, 344, 326, 326, 326, 132, 301, + /* 2450 */ 361, 56, 129, 214, 368, 365, 326, 343, 326, 326, + /* 2460 */ 301, 361, 326, 344, 236, 368, 365, 147, 343, 326, + /* 2470 */ 326, 129, 326, 326, 326, 326, 326, 326, 326, 326, + /* 2480 */ 364, 326, 344, 236, 368, 365, 157, 343, 326, 326, + /* 2490 */ 129, 326, 326, 326, 326, 100, 177, 326, 326, 280, + /* 2500 */ 326, 326, 236, 368, 365, 292, 343, 326, 24, 22, + /* 2510 */ 326, 190, 167, 326, 326, 326, 326, 326, 190, 182, + /* 2520 */ 326, 292, 200, 326, 24, 22, 326, 326, 292, 326, + /* 2530 */ 326, 24, 22, 326, 190, 169, 326, 326, 200, 326, + /* 2540 */ 326, 326, 326, 326, 292, 200, 326, 24, 22, 326, + /* 2550 */ 326, 326, 326, 326, 326, 326, 326, 326, 326, 326, + /* 2560 */ 326, 200, ); static public $yy_lookahead = array( - /* 0 */ 1, 82, 83, 84, 3, 4, 5, 6, 7, 8, - /* 10 */ 9, 10, 11, 12, 18, 89, 15, 80, 81, 82, - /* 20 */ 83, 84, 21, 22, 98, 26, 15, 28, 27, 18, - /* 30 */ 19, 116, 31, 32, 33, 24, 110, 38, 39, 40, + /* 0 */ 1, 83, 84, 85, 3, 4, 5, 6, 7, 8, + /* 10 */ 9, 10, 11, 12, 13, 98, 90, 16, 81, 82, + /* 20 */ 83, 84, 85, 22, 23, 99, 27, 16, 29, 28, + /* 30 */ 19, 20, 109, 32, 33, 34, 25, 111, 39, 40, /* 40 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, - /* 50 */ 51, 4, 5, 6, 7, 8, 60, 1, 36, 12, - /* 60 */ 13, 14, 1, 64, 65, 66, 67, 68, 69, 70, - /* 70 */ 71, 72, 73, 74, 75, 1, 83, 16, 88, 57, - /* 80 */ 87, 59, 88, 90, 91, 63, 30, 16, 15, 28, - /* 90 */ 16, 18, 99, 100, 19, 20, 103, 104, 105, 28, - /* 100 */ 107, 28, 28, 30, 2, 115, 116, 36, 52, 115, - /* 110 */ 117, 118, 38, 39, 40, 41, 42, 43, 44, 45, - /* 120 */ 46, 47, 48, 49, 50, 51, 83, 88, 89, 109, - /* 130 */ 59, 111, 112, 15, 59, 17, 18, 98, 64, 65, - /* 140 */ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, - /* 150 */ 1, 83, 34, 15, 115, 87, 18, 19, 90, 91, - /* 160 */ 92, 15, 119, 120, 18, 16, 16, 99, 100, 19, - /* 170 */ 89, 103, 104, 105, 28, 107, 30, 28, 28, 98, - /* 180 */ 36, 15, 15, 17, 18, 18, 36, 38, 39, 40, - /* 190 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, - /* 200 */ 51, 88, 89, 59, 15, 57, 30, 18, 19, 59, - /* 210 */ 62, 98, 36, 64, 65, 66, 67, 68, 69, 70, - /* 220 */ 71, 72, 73, 74, 75, 1, 83, 60, 115, 16, - /* 230 */ 87, 97, 15, 90, 91, 59, 1, 24, 19, 20, - /* 240 */ 16, 15, 99, 100, 18, 20, 103, 104, 105, 60, - /* 250 */ 107, 16, 28, 36, 84, 20, 86, 114, 111, 112, - /* 260 */ 17, 18, 38, 39, 40, 41, 42, 43, 44, 45, - /* 270 */ 46, 47, 48, 49, 50, 51, 1, 2, 59, 91, - /* 280 */ 92, 93, 57, 111, 112, 24, 60, 62, 64, 65, - /* 290 */ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, - /* 300 */ 89, 1, 88, 89, 61, 35, 35, 37, 37, 98, - /* 310 */ 17, 18, 98, 38, 39, 40, 41, 42, 43, 44, - /* 320 */ 45, 46, 47, 48, 49, 50, 51, 1, 89, 115, - /* 330 */ 35, 35, 37, 88, 88, 91, 92, 98, 77, 64, - /* 340 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, - /* 350 */ 75, 23, 52, 89, 115, 29, 108, 97, 110, 63, - /* 360 */ 115, 115, 98, 35, 38, 39, 40, 41, 42, 43, - /* 370 */ 44, 45, 46, 47, 48, 49, 50, 51, 1, 115, - /* 380 */ 89, 15, 15, 15, 18, 18, 18, 95, 17, 98, - /* 390 */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, - /* 400 */ 74, 75, 110, 89, 91, 92, 115, 36, 1, 108, - /* 410 */ 15, 110, 98, 18, 108, 38, 39, 40, 41, 42, - /* 420 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 115, - /* 430 */ 106, 106, 36, 15, 97, 28, 18, 113, 113, 108, - /* 440 */ 95, 64, 65, 66, 67, 68, 69, 70, 71, 72, - /* 450 */ 73, 74, 75, 1, 77, 110, 83, 108, 15, 18, - /* 460 */ 87, 18, 83, 90, 91, 20, 87, 17, 19, 91, - /* 470 */ 91, 28, 99, 100, 1, 23, 103, 104, 105, 100, - /* 480 */ 107, 103, 103, 104, 105, 107, 107, 114, 2, 16, - /* 490 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - /* 500 */ 48, 49, 50, 51, 59, 19, 57, 19, 37, 61, - /* 510 */ 18, 17, 53, 2, 18, 95, 64, 65, 66, 67, - /* 520 */ 68, 69, 70, 71, 72, 73, 74, 75, 1, 83, - /* 530 */ 110, 89, 63, 87, 83, 25, 90, 91, 87, 17, - /* 540 */ 98, 18, 91, 16, 1, 99, 100, 1, 2, 103, - /* 550 */ 104, 105, 110, 107, 103, 104, 105, 18, 107, 16, - /* 560 */ 114, 61, 16, 34, 1, 38, 39, 40, 41, 42, - /* 570 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 16, - /* 580 */ 89, 2, 18, 17, 24, 57, 34, 36, 17, 98, - /* 590 */ 95, 64, 65, 66, 67, 68, 69, 70, 71, 72, - /* 600 */ 73, 74, 75, 1, 83, 110, 89, 18, 87, 18, - /* 610 */ 16, 90, 91, 92, 89, 98, 96, 16, 16, 16, - /* 620 */ 99, 100, 28, 98, 103, 104, 105, 110, 107, 28, - /* 630 */ 110, 28, 18, 18, 98, 110, 20, 1, 28, 109, - /* 640 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - /* 650 */ 48, 49, 50, 51, 1, 115, 108, 28, 113, 110, - /* 660 */ 28, 94, 112, 95, 95, 95, 64, 65, 66, 67, - /* 670 */ 68, 69, 70, 71, 72, 73, 74, 75, 110, 110, - /* 680 */ 110, 85, 94, 13, 121, 121, 121, 121, 121, 121, - /* 690 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - /* 700 */ 47, 48, 49, 50, 51, 1, 121, 121, 121, 121, - /* 710 */ 121, 121, 121, 121, 95, 95, 95, 64, 65, 66, - /* 720 */ 67, 68, 69, 70, 71, 72, 73, 74, 75, 110, - /* 730 */ 110, 110, 121, 121, 121, 121, 121, 121, 121, 121, - /* 740 */ 121, 37, 38, 39, 40, 41, 42, 43, 44, 45, - /* 750 */ 46, 47, 48, 49, 50, 51, 1, 121, 121, 121, - /* 760 */ 121, 121, 121, 121, 121, 121, 121, 121, 64, 65, - /* 770 */ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, - /* 780 */ 83, 121, 121, 28, 121, 121, 121, 121, 121, 121, - /* 790 */ 121, 121, 121, 38, 39, 40, 41, 42, 43, 44, - /* 800 */ 45, 46, 47, 48, 49, 50, 51, 1, 121, 121, - /* 810 */ 121, 121, 121, 121, 121, 121, 121, 120, 121, 64, - /* 820 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, - /* 830 */ 75, 121, 121, 121, 121, 121, 121, 121, 121, 121, - /* 840 */ 121, 121, 121, 121, 38, 39, 40, 41, 42, 43, - /* 850 */ 44, 45, 46, 47, 48, 49, 50, 51, 121, 121, - /* 860 */ 121, 121, 121, 121, 121, 121, 121, 121, 121, 63, - /* 870 */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, - /* 880 */ 74, 75, 1, 121, 121, 121, 88, 83, 1, 16, - /* 890 */ 16, 87, 121, 10, 16, 91, 121, 16, 15, 101, - /* 900 */ 102, 28, 28, 16, 21, 22, 28, 103, 104, 105, - /* 910 */ 27, 107, 121, 115, 31, 32, 33, 121, 1, 38, - /* 920 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, - /* 930 */ 49, 50, 51, 16, 121, 121, 121, 121, 121, 52, - /* 940 */ 121, 121, 121, 121, 121, 64, 65, 66, 67, 68, - /* 950 */ 69, 70, 71, 72, 73, 74, 75, 1, 121, 76, - /* 960 */ 77, 78, 83, 16, 16, 16, 87, 121, 10, 16, - /* 970 */ 91, 121, 16, 15, 121, 28, 28, 28, 121, 21, - /* 980 */ 22, 28, 103, 104, 105, 27, 107, 121, 121, 31, - /* 990 */ 32, 33, 121, 121, 38, 39, 40, 41, 42, 43, - /* 1000 */ 44, 45, 46, 47, 48, 49, 50, 51, 1, 121, - /* 1010 */ 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - /* 1020 */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, - /* 1030 */ 74, 75, 121, 121, 76, 77, 78, 121, 121, 121, - /* 1040 */ 121, 121, 121, 121, 121, 38, 39, 40, 41, 42, - /* 1050 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 121, - /* 1060 */ 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - /* 1070 */ 121, 64, 65, 66, 67, 68, 69, 70, 71, 72, - /* 1080 */ 73, 74, 75, 121, 38, 39, 40, 41, 42, 43, - /* 1090 */ 44, 45, 46, 47, 48, 49, 50, 51, 121, 121, - /* 1100 */ 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - /* 1110 */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, - /* 1120 */ 74, 75, 121, 121, 121, 121, 15, 121, 17, 18, - /* 1130 */ 121, 83, 21, 22, 16, 87, 121, 16, 27, 91, - /* 1140 */ 121, 121, 31, 32, 33, 34, 28, 36, 100, 28, - /* 1150 */ 39, 103, 104, 105, 121, 107, 83, 121, 121, 121, - /* 1160 */ 87, 121, 121, 121, 91, 54, 55, 56, 57, 58, - /* 1170 */ 121, 83, 61, 62, 63, 87, 103, 104, 105, 91, - /* 1180 */ 107, 121, 15, 121, 17, 18, 121, 76, 21, 22, - /* 1190 */ 16, 103, 104, 105, 27, 107, 16, 16, 31, 32, - /* 1200 */ 33, 34, 28, 36, 16, 121, 39, 16, 28, 28, - /* 1210 */ 83, 121, 121, 121, 87, 121, 28, 90, 91, 28, - /* 1220 */ 1, 54, 55, 56, 57, 58, 99, 100, 61, 62, - /* 1230 */ 103, 104, 105, 1, 107, 16, 121, 16, 15, 121, - /* 1240 */ 17, 18, 121, 76, 21, 22, 16, 28, 16, 28, - /* 1250 */ 27, 16, 20, 121, 31, 32, 33, 34, 28, 36, - /* 1260 */ 28, 121, 39, 28, 16, 121, 83, 121, 36, 121, - /* 1270 */ 87, 52, 121, 90, 91, 121, 28, 54, 55, 56, - /* 1280 */ 57, 58, 99, 100, 61, 62, 103, 104, 105, 121, - /* 1290 */ 107, 59, 121, 121, 15, 121, 17, 18, 121, 76, - /* 1300 */ 21, 22, 121, 121, 121, 121, 27, 121, 121, 121, - /* 1310 */ 31, 32, 33, 34, 121, 36, 121, 121, 39, 121, - /* 1320 */ 121, 121, 83, 121, 121, 121, 87, 121, 121, 90, - /* 1330 */ 91, 121, 1, 54, 55, 56, 57, 58, 99, 100, - /* 1340 */ 61, 62, 103, 104, 105, 121, 107, 16, 121, 121, - /* 1350 */ 15, 121, 17, 18, 121, 76, 21, 22, 121, 28, - /* 1360 */ 29, 121, 27, 121, 121, 121, 31, 32, 33, 34, - /* 1370 */ 121, 36, 121, 121, 39, 121, 121, 121, 83, 121, - /* 1380 */ 121, 121, 87, 52, 121, 90, 91, 121, 1, 54, - /* 1390 */ 55, 56, 57, 58, 99, 100, 61, 62, 103, 104, - /* 1400 */ 105, 121, 107, 16, 121, 121, 15, 121, 17, 18, - /* 1410 */ 121, 76, 21, 22, 121, 28, 121, 121, 27, 121, - /* 1420 */ 121, 121, 31, 32, 33, 34, 121, 36, 121, 121, - /* 1430 */ 39, 121, 121, 121, 83, 121, 121, 121, 87, 52, - /* 1440 */ 121, 90, 91, 121, 1, 54, 55, 56, 57, 58, - /* 1450 */ 99, 100, 61, 62, 103, 104, 105, 121, 107, 16, - /* 1460 */ 121, 121, 15, 121, 17, 18, 121, 76, 21, 22, - /* 1470 */ 121, 28, 121, 121, 27, 121, 121, 121, 31, 32, - /* 1480 */ 33, 34, 121, 36, 121, 121, 39, 121, 121, 121, - /* 1490 */ 83, 121, 121, 121, 87, 52, 121, 90, 91, 121, - /* 1500 */ 121, 54, 55, 56, 57, 58, 99, 100, 61, 62, - /* 1510 */ 103, 104, 105, 121, 107, 121, 121, 121, 15, 121, - /* 1520 */ 17, 18, 121, 76, 21, 22, 121, 121, 121, 121, - /* 1530 */ 27, 121, 121, 121, 31, 32, 33, 34, 121, 36, - /* 1540 */ 121, 121, 39, 121, 121, 121, 83, 121, 121, 121, - /* 1550 */ 87, 121, 121, 90, 91, 121, 121, 54, 55, 56, - /* 1560 */ 57, 58, 99, 100, 61, 62, 103, 104, 105, 121, - /* 1570 */ 107, 121, 121, 121, 15, 121, 17, 18, 121, 76, - /* 1580 */ 21, 22, 121, 121, 121, 121, 27, 121, 121, 121, - /* 1590 */ 31, 32, 33, 34, 121, 36, 121, 121, 39, 121, - /* 1600 */ 121, 121, 83, 121, 121, 121, 87, 121, 121, 90, - /* 1610 */ 91, 121, 121, 54, 55, 56, 57, 58, 99, 100, - /* 1620 */ 61, 62, 103, 104, 105, 121, 107, 121, 121, 121, - /* 1630 */ 15, 121, 17, 18, 121, 76, 21, 22, 121, 121, - /* 1640 */ 121, 121, 27, 121, 121, 121, 31, 32, 33, 34, - /* 1650 */ 121, 36, 121, 121, 39, 121, 121, 121, 83, 121, - /* 1660 */ 121, 121, 87, 121, 121, 90, 91, 121, 121, 54, - /* 1670 */ 55, 56, 57, 58, 99, 100, 61, 62, 103, 104, - /* 1680 */ 105, 121, 107, 121, 121, 121, 15, 121, 17, 18, - /* 1690 */ 121, 76, 21, 22, 121, 121, 121, 121, 27, 121, - /* 1700 */ 121, 121, 31, 32, 33, 34, 121, 36, 121, 121, - /* 1710 */ 39, 121, 121, 121, 83, 121, 121, 121, 87, 121, - /* 1720 */ 121, 90, 91, 121, 121, 54, 55, 56, 57, 58, - /* 1730 */ 99, 100, 61, 121, 103, 104, 105, 121, 107, 121, - /* 1740 */ 121, 121, 15, 121, 17, 18, 121, 76, 21, 22, - /* 1750 */ 121, 121, 121, 121, 27, 121, 121, 121, 31, 32, - /* 1760 */ 33, 34, 121, 36, 88, 89, 39, 121, 121, 121, - /* 1770 */ 121, 121, 121, 121, 98, 121, 121, 101, 102, 121, - /* 1780 */ 16, 54, 55, 56, 57, 58, 121, 23, 61, 25, - /* 1790 */ 26, 115, 28, 29, 121, 121, 121, 121, 121, 35, - /* 1800 */ 36, 37, 121, 76, 121, 121, 121, 121, 121, 121, - /* 1810 */ 121, 121, 121, 83, 121, 121, 52, 87, 121, 121, - /* 1820 */ 90, 91, 121, 59, 121, 121, 121, 63, 121, 99, - /* 1830 */ 100, 121, 121, 103, 104, 105, 121, 107, 83, 121, - /* 1840 */ 121, 77, 87, 121, 121, 90, 91, 121, 118, 121, - /* 1850 */ 121, 121, 121, 121, 99, 100, 121, 121, 103, 104, - /* 1860 */ 105, 121, 107, 121, 83, 121, 121, 121, 87, 121, - /* 1870 */ 121, 90, 91, 121, 83, 121, 121, 121, 87, 121, - /* 1880 */ 99, 100, 91, 83, 103, 104, 105, 87, 107, 121, - /* 1890 */ 90, 91, 121, 121, 103, 104, 105, 121, 107, 99, - /* 1900 */ 100, 121, 121, 103, 104, 105, 121, 107, 121, 121, - /* 1910 */ 121, 83, 121, 121, 121, 87, 121, 121, 90, 91, - /* 1920 */ 121, 121, 83, 121, 121, 121, 87, 99, 100, 90, - /* 1930 */ 91, 103, 104, 105, 121, 107, 121, 121, 99, 100, - /* 1940 */ 121, 121, 103, 104, 105, 121, 107, 121, 83, 121, - /* 1950 */ 121, 121, 87, 121, 121, 90, 91, 121, 83, 121, - /* 1960 */ 121, 121, 87, 121, 99, 100, 91, 83, 103, 104, - /* 1970 */ 105, 87, 107, 121, 90, 91, 121, 121, 103, 104, - /* 1980 */ 105, 121, 107, 99, 100, 121, 121, 103, 104, 105, - /* 1990 */ 121, 107, 121, 121, 121, 83, 121, 121, 121, 87, - /* 2000 */ 121, 121, 90, 91, 121, 121, 83, 121, 121, 121, - /* 2010 */ 87, 99, 100, 90, 91, 103, 104, 105, 121, 107, - /* 2020 */ 121, 121, 99, 100, 121, 121, 103, 104, 105, 121, - /* 2030 */ 107, 121, 83, 88, 89, 121, 87, 121, 121, 90, - /* 2040 */ 91, 121, 121, 98, 121, 121, 101, 102, 99, 100, - /* 2050 */ 121, 83, 103, 104, 105, 87, 107, 121, 90, 91, - /* 2060 */ 115, 121, 121, 121, 88, 89, 121, 99, 100, 121, - /* 2070 */ 121, 103, 104, 105, 98, 107, 121, 101, 102, 83, - /* 2080 */ 121, 121, 121, 87, 121, 121, 90, 91, 121, 121, - /* 2090 */ 83, 115, 121, 121, 87, 99, 100, 90, 91, 103, - /* 2100 */ 104, 105, 121, 107, 121, 121, 99, 100, 121, 121, - /* 2110 */ 103, 104, 105, 121, 107, 121, 83, 88, 89, 121, - /* 2120 */ 87, 121, 121, 90, 91, 121, 121, 98, 121, 121, - /* 2130 */ 101, 102, 99, 100, 121, 83, 103, 104, 105, 87, - /* 2140 */ 107, 121, 90, 91, 115, 121, 121, 121, 88, 89, - /* 2150 */ 121, 99, 100, 121, 121, 103, 104, 105, 98, 107, - /* 2160 */ 121, 101, 102, 83, 121, 121, 121, 87, 121, 121, - /* 2170 */ 90, 91, 121, 121, 83, 115, 121, 121, 87, 99, - /* 2180 */ 100, 90, 91, 103, 104, 105, 121, 107, 121, 121, - /* 2190 */ 99, 100, 121, 121, 103, 104, 105, 121, 107, 121, - /* 2200 */ 83, 88, 89, 121, 87, 121, 121, 90, 91, 121, - /* 2210 */ 121, 98, 121, 121, 101, 102, 99, 100, 121, 83, - /* 2220 */ 103, 104, 105, 87, 107, 121, 90, 91, 115, 121, - /* 2230 */ 121, 121, 121, 121, 121, 99, 100, 121, 121, 103, - /* 2240 */ 104, 105, 121, 107, 121, 121, 121, 83, 121, 121, - /* 2250 */ 121, 87, 121, 121, 90, 91, 121, 121, 83, 121, - /* 2260 */ 121, 121, 87, 99, 100, 90, 91, 103, 104, 105, - /* 2270 */ 121, 107, 121, 121, 99, 100, 121, 121, 103, 104, - /* 2280 */ 105, 121, 107, 121, 83, 121, 121, 121, 87, 121, - /* 2290 */ 121, 90, 91, 121, 121, 121, 121, 121, 121, 121, - /* 2300 */ 99, 100, 121, 83, 103, 104, 105, 87, 107, 121, - /* 2310 */ 90, 91, 121, 121, 121, 121, 121, 121, 121, 99, - /* 2320 */ 100, 121, 121, 103, 104, 105, 121, 107, 121, 121, - /* 2330 */ 121, 83, 121, 121, 121, 87, 121, 121, 90, 91, - /* 2340 */ 121, 121, 83, 121, 121, 121, 87, 99, 100, 90, - /* 2350 */ 91, 103, 104, 105, 121, 107, 121, 121, 99, 100, - /* 2360 */ 121, 121, 103, 104, 105, 121, 107, 121, 83, 121, - /* 2370 */ 121, 121, 87, 121, 121, 90, 91, 121, 121, 121, - /* 2380 */ 121, 121, 121, 121, 99, 100, 121, 121, 103, 104, - /* 2390 */ 105, 121, 107, + /* 50 */ 51, 52, 4, 5, 6, 7, 8, 16, 36, 84, + /* 60 */ 38, 13, 14, 15, 65, 66, 67, 68, 69, 70, + /* 70 */ 71, 72, 73, 74, 75, 76, 1, 84, 37, 89, + /* 80 */ 90, 88, 37, 16, 91, 92, 19, 20, 17, 99, + /* 90 */ 17, 20, 17, 100, 101, 120, 121, 104, 105, 106, + /* 100 */ 29, 108, 29, 58, 29, 60, 116, 31, 37, 64, + /* 110 */ 37, 118, 119, 37, 39, 40, 41, 42, 43, 44, + /* 120 */ 45, 46, 47, 48, 49, 50, 51, 52, 61, 89, + /* 130 */ 90, 60, 36, 60, 38, 16, 60, 18, 19, 99, + /* 140 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, + /* 150 */ 75, 76, 1, 84, 35, 1, 116, 88, 21, 89, + /* 160 */ 91, 92, 93, 16, 16, 97, 19, 19, 17, 100, + /* 170 */ 101, 17, 19, 104, 105, 106, 29, 108, 31, 111, + /* 180 */ 29, 89, 1, 29, 30, 16, 116, 117, 19, 20, + /* 190 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, + /* 200 */ 49, 50, 51, 52, 25, 89, 90, 53, 116, 61, + /* 210 */ 16, 1, 31, 19, 61, 99, 65, 66, 67, 68, + /* 220 */ 69, 70, 71, 72, 73, 74, 75, 76, 1, 84, + /* 230 */ 58, 1, 116, 88, 53, 63, 91, 92, 93, 16, + /* 240 */ 20, 21, 19, 86, 17, 100, 101, 17, 92, 104, + /* 250 */ 105, 106, 29, 108, 31, 61, 29, 78, 98, 29, + /* 260 */ 104, 112, 113, 53, 108, 113, 39, 40, 41, 42, + /* 270 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, + /* 280 */ 60, 90, 90, 53, 110, 109, 112, 113, 20, 21, + /* 290 */ 99, 99, 65, 66, 67, 68, 69, 70, 71, 72, + /* 300 */ 73, 74, 75, 76, 1, 84, 98, 1, 116, 88, + /* 310 */ 84, 62, 91, 92, 88, 90, 64, 1, 92, 21, + /* 320 */ 17, 100, 101, 17, 99, 104, 105, 106, 60, 108, + /* 330 */ 104, 105, 106, 17, 108, 29, 111, 21, 18, 19, + /* 340 */ 119, 14, 39, 40, 41, 42, 43, 44, 45, 46, + /* 350 */ 47, 48, 49, 50, 51, 52, 58, 112, 113, 53, + /* 360 */ 16, 63, 18, 19, 92, 93, 94, 19, 65, 66, + /* 370 */ 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, + /* 380 */ 1, 84, 62, 1, 90, 88, 84, 19, 91, 92, + /* 390 */ 88, 90, 58, 99, 92, 90, 17, 100, 101, 17, + /* 400 */ 99, 104, 105, 106, 99, 108, 104, 105, 106, 36, + /* 410 */ 108, 29, 115, 36, 19, 38, 111, 116, 39, 40, + /* 420 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, + /* 430 */ 51, 52, 1, 90, 37, 53, 89, 64, 2, 109, + /* 440 */ 16, 111, 99, 19, 65, 66, 67, 68, 69, 70, + /* 450 */ 71, 72, 73, 74, 75, 76, 20, 60, 16, 116, + /* 460 */ 90, 19, 109, 116, 111, 18, 18, 19, 19, 99, + /* 470 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, + /* 480 */ 49, 50, 51, 52, 37, 1, 116, 17, 16, 16, + /* 490 */ 16, 19, 19, 19, 89, 25, 65, 66, 67, 68, + /* 500 */ 69, 70, 71, 72, 73, 74, 75, 76, 24, 78, + /* 510 */ 24, 107, 92, 93, 1, 92, 93, 85, 114, 87, + /* 520 */ 19, 116, 36, 39, 40, 41, 42, 43, 44, 45, + /* 530 */ 46, 47, 48, 49, 50, 51, 52, 1, 19, 18, + /* 540 */ 20, 35, 29, 62, 19, 2, 96, 96, 96, 65, + /* 550 */ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, + /* 560 */ 76, 111, 111, 111, 107, 54, 30, 18, 26, 18, + /* 570 */ 2, 114, 18, 18, 96, 39, 40, 41, 42, 43, + /* 580 */ 44, 45, 46, 47, 48, 49, 50, 51, 52, 111, + /* 590 */ 90, 19, 19, 35, 38, 25, 37, 19, 37, 99, + /* 600 */ 96, 65, 66, 67, 68, 69, 70, 71, 72, 73, + /* 610 */ 74, 75, 76, 1, 84, 111, 1, 99, 88, 84, + /* 620 */ 117, 91, 92, 88, 110, 116, 109, 92, 90, 17, + /* 630 */ 100, 101, 17, 20, 104, 105, 106, 99, 108, 104, + /* 640 */ 105, 106, 1, 108, 111, 115, 29, 29, 114, 111, + /* 650 */ 29, 39, 40, 41, 42, 43, 44, 45, 46, 47, + /* 660 */ 48, 49, 50, 51, 52, 1, 95, 2, 53, 95, + /* 670 */ 122, 58, 109, 122, 122, 96, 96, 65, 66, 67, + /* 680 */ 68, 69, 70, 71, 72, 73, 74, 75, 76, 17, + /* 690 */ 111, 111, 122, 122, 122, 122, 122, 122, 122, 122, + /* 700 */ 122, 29, 38, 39, 40, 41, 42, 43, 44, 45, + /* 710 */ 46, 47, 48, 49, 50, 51, 52, 1, 122, 122, + /* 720 */ 122, 122, 122, 122, 122, 122, 96, 122, 1, 65, + /* 730 */ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, + /* 740 */ 76, 111, 84, 122, 17, 122, 122, 122, 122, 122, + /* 750 */ 122, 122, 122, 122, 38, 39, 40, 41, 42, 43, + /* 760 */ 44, 45, 46, 47, 48, 49, 50, 51, 52, 1, + /* 770 */ 122, 122, 122, 122, 122, 122, 122, 122, 96, 121, + /* 780 */ 96, 65, 66, 67, 68, 69, 70, 71, 72, 73, + /* 790 */ 74, 75, 76, 111, 122, 111, 122, 29, 122, 122, + /* 800 */ 122, 122, 122, 122, 122, 122, 21, 39, 40, 41, + /* 810 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, + /* 820 */ 52, 1, 122, 122, 122, 122, 122, 122, 122, 122, + /* 830 */ 122, 122, 122, 65, 66, 67, 68, 69, 70, 71, + /* 840 */ 72, 73, 74, 75, 76, 60, 122, 122, 122, 122, + /* 850 */ 122, 122, 122, 122, 122, 122, 122, 122, 122, 39, + /* 860 */ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, + /* 870 */ 50, 51, 52, 122, 122, 122, 122, 122, 122, 122, + /* 880 */ 122, 122, 122, 122, 64, 65, 66, 67, 68, 69, + /* 890 */ 70, 71, 72, 73, 74, 75, 76, 1, 122, 122, + /* 900 */ 122, 122, 89, 84, 122, 122, 16, 88, 10, 19, + /* 910 */ 17, 92, 1, 17, 16, 102, 103, 1, 2, 29, + /* 920 */ 22, 23, 29, 104, 105, 106, 28, 108, 17, 116, + /* 930 */ 32, 33, 34, 17, 122, 39, 40, 41, 42, 43, + /* 940 */ 44, 45, 46, 47, 48, 49, 50, 51, 52, 1, + /* 950 */ 2, 122, 122, 122, 122, 122, 122, 122, 122, 122, + /* 960 */ 122, 65, 66, 67, 68, 69, 70, 71, 72, 73, + /* 970 */ 74, 75, 76, 122, 122, 77, 78, 79, 122, 122, + /* 980 */ 122, 122, 122, 122, 122, 122, 122, 39, 40, 41, + /* 990 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, + /* 1000 */ 52, 1, 122, 122, 122, 122, 122, 122, 122, 122, + /* 1010 */ 122, 122, 122, 65, 66, 67, 68, 69, 70, 71, + /* 1020 */ 72, 73, 74, 75, 76, 122, 122, 122, 122, 122, + /* 1030 */ 122, 122, 122, 122, 122, 122, 122, 122, 122, 39, + /* 1040 */ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, + /* 1050 */ 50, 51, 52, 122, 122, 122, 122, 122, 122, 122, + /* 1060 */ 122, 122, 122, 122, 122, 65, 66, 67, 68, 69, + /* 1070 */ 70, 71, 72, 73, 74, 75, 76, 1, 1, 39, + /* 1080 */ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, + /* 1090 */ 50, 51, 52, 17, 17, 122, 122, 122, 122, 122, + /* 1100 */ 122, 122, 122, 122, 122, 65, 66, 67, 68, 69, + /* 1110 */ 70, 71, 72, 73, 74, 75, 76, 1, 122, 1, + /* 1120 */ 122, 122, 16, 122, 18, 19, 122, 122, 22, 23, + /* 1130 */ 122, 122, 17, 17, 28, 17, 10, 21, 32, 33, + /* 1140 */ 34, 35, 16, 37, 29, 29, 40, 29, 22, 23, + /* 1150 */ 122, 122, 122, 37, 28, 122, 122, 122, 32, 33, + /* 1160 */ 34, 55, 56, 57, 58, 59, 122, 84, 62, 63, + /* 1170 */ 64, 88, 122, 122, 122, 92, 60, 122, 16, 122, + /* 1180 */ 18, 19, 122, 77, 22, 23, 17, 104, 105, 106, + /* 1190 */ 28, 108, 122, 122, 32, 33, 34, 35, 29, 37, + /* 1200 */ 122, 17, 40, 77, 78, 79, 122, 84, 122, 122, + /* 1210 */ 122, 88, 122, 29, 17, 92, 122, 55, 56, 57, + /* 1220 */ 58, 59, 122, 17, 62, 63, 29, 104, 105, 106, + /* 1230 */ 122, 108, 17, 17, 16, 29, 18, 19, 122, 77, + /* 1240 */ 22, 23, 17, 122, 29, 29, 28, 17, 122, 17, + /* 1250 */ 32, 33, 34, 35, 29, 37, 122, 17, 40, 29, + /* 1260 */ 17, 29, 122, 84, 122, 122, 122, 88, 122, 29, + /* 1270 */ 17, 92, 29, 55, 56, 57, 58, 59, 122, 17, + /* 1280 */ 62, 63, 29, 104, 105, 106, 122, 108, 17, 17, + /* 1290 */ 16, 29, 18, 19, 122, 77, 22, 23, 17, 122, + /* 1300 */ 29, 29, 28, 17, 122, 17, 32, 33, 34, 35, + /* 1310 */ 29, 37, 122, 122, 40, 29, 122, 29, 122, 122, + /* 1320 */ 122, 122, 122, 122, 122, 122, 122, 122, 122, 55, + /* 1330 */ 56, 57, 58, 59, 122, 122, 62, 63, 122, 122, + /* 1340 */ 122, 122, 122, 122, 122, 122, 16, 122, 18, 19, + /* 1350 */ 122, 77, 22, 23, 122, 122, 122, 122, 28, 122, + /* 1360 */ 122, 122, 32, 33, 34, 35, 122, 37, 122, 122, + /* 1370 */ 40, 122, 122, 122, 122, 122, 122, 122, 122, 122, + /* 1380 */ 122, 122, 122, 122, 122, 55, 56, 57, 58, 59, + /* 1390 */ 122, 122, 62, 63, 122, 122, 122, 122, 122, 122, + /* 1400 */ 122, 122, 16, 122, 18, 19, 122, 77, 22, 23, + /* 1410 */ 122, 122, 122, 122, 28, 122, 122, 122, 32, 33, + /* 1420 */ 34, 35, 122, 37, 122, 122, 40, 122, 122, 122, + /* 1430 */ 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, + /* 1440 */ 122, 55, 56, 57, 58, 59, 122, 122, 62, 63, + /* 1450 */ 122, 122, 122, 122, 122, 122, 122, 122, 16, 122, + /* 1460 */ 18, 19, 122, 77, 22, 23, 122, 122, 122, 122, + /* 1470 */ 28, 122, 122, 122, 32, 33, 34, 35, 122, 37, + /* 1480 */ 122, 122, 40, 122, 122, 122, 122, 122, 122, 122, + /* 1490 */ 122, 122, 122, 122, 122, 122, 122, 55, 56, 57, + /* 1500 */ 58, 59, 122, 122, 62, 63, 122, 122, 122, 122, + /* 1510 */ 122, 122, 122, 122, 16, 122, 18, 19, 122, 77, + /* 1520 */ 22, 23, 122, 122, 122, 122, 28, 122, 122, 122, + /* 1530 */ 32, 33, 34, 35, 122, 37, 122, 122, 40, 122, + /* 1540 */ 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, + /* 1550 */ 122, 122, 122, 55, 56, 57, 58, 59, 122, 122, + /* 1560 */ 62, 63, 122, 122, 122, 122, 122, 122, 122, 122, + /* 1570 */ 16, 122, 18, 19, 122, 77, 22, 23, 122, 122, + /* 1580 */ 122, 122, 28, 122, 122, 122, 32, 33, 34, 35, + /* 1590 */ 122, 37, 122, 122, 40, 122, 122, 122, 122, 122, + /* 1600 */ 122, 122, 122, 122, 122, 122, 122, 122, 122, 55, + /* 1610 */ 56, 57, 58, 59, 122, 122, 62, 63, 122, 122, + /* 1620 */ 122, 122, 122, 122, 122, 122, 16, 122, 18, 19, + /* 1630 */ 122, 77, 22, 23, 122, 122, 122, 122, 28, 122, + /* 1640 */ 122, 122, 32, 33, 34, 35, 122, 37, 122, 122, + /* 1650 */ 40, 122, 122, 122, 122, 122, 122, 122, 122, 122, + /* 1660 */ 122, 122, 122, 122, 122, 55, 56, 57, 58, 59, + /* 1670 */ 122, 122, 62, 63, 122, 122, 122, 122, 122, 122, + /* 1680 */ 122, 122, 16, 122, 18, 19, 122, 77, 22, 23, + /* 1690 */ 122, 122, 122, 122, 28, 122, 122, 122, 32, 33, + /* 1700 */ 34, 35, 122, 37, 122, 122, 40, 122, 122, 122, + /* 1710 */ 122, 122, 122, 122, 122, 122, 122, 122, 122, 89, + /* 1720 */ 90, 55, 56, 57, 58, 59, 122, 122, 62, 99, + /* 1730 */ 122, 122, 102, 103, 122, 122, 122, 122, 16, 122, + /* 1740 */ 18, 19, 122, 77, 22, 23, 116, 122, 122, 122, + /* 1750 */ 28, 122, 122, 122, 32, 33, 34, 35, 122, 37, + /* 1760 */ 122, 122, 40, 122, 122, 122, 122, 122, 122, 122, + /* 1770 */ 122, 122, 122, 122, 122, 122, 122, 55, 56, 57, + /* 1780 */ 58, 59, 122, 122, 62, 122, 122, 122, 122, 122, + /* 1790 */ 122, 122, 122, 122, 122, 17, 89, 90, 122, 77, + /* 1800 */ 122, 122, 24, 122, 26, 27, 99, 29, 30, 102, + /* 1810 */ 103, 122, 122, 84, 36, 37, 38, 88, 122, 122, + /* 1820 */ 91, 92, 122, 116, 122, 122, 122, 122, 122, 100, + /* 1830 */ 101, 53, 122, 104, 105, 106, 122, 108, 60, 122, + /* 1840 */ 122, 84, 64, 122, 115, 88, 122, 122, 91, 92, + /* 1850 */ 122, 122, 122, 122, 122, 122, 78, 100, 101, 122, + /* 1860 */ 122, 104, 105, 106, 84, 108, 122, 122, 88, 122, + /* 1870 */ 122, 91, 92, 122, 122, 122, 122, 122, 122, 122, + /* 1880 */ 100, 101, 122, 122, 104, 105, 106, 84, 108, 122, + /* 1890 */ 122, 88, 122, 122, 91, 92, 122, 122, 84, 122, + /* 1900 */ 122, 122, 88, 100, 101, 91, 92, 104, 105, 106, + /* 1910 */ 122, 108, 122, 122, 100, 101, 122, 122, 104, 105, + /* 1920 */ 106, 122, 108, 84, 122, 122, 122, 88, 122, 122, + /* 1930 */ 91, 92, 122, 122, 84, 122, 122, 122, 88, 100, + /* 1940 */ 101, 91, 92, 104, 105, 106, 122, 108, 122, 122, + /* 1950 */ 100, 101, 122, 84, 104, 105, 106, 88, 108, 122, + /* 1960 */ 91, 92, 122, 122, 122, 122, 122, 122, 122, 100, + /* 1970 */ 101, 122, 84, 104, 105, 106, 88, 108, 122, 91, + /* 1980 */ 92, 122, 122, 84, 122, 122, 122, 88, 100, 101, + /* 1990 */ 91, 92, 104, 105, 106, 122, 108, 122, 122, 100, + /* 2000 */ 101, 122, 122, 104, 105, 106, 122, 108, 84, 122, + /* 2010 */ 122, 122, 88, 122, 122, 91, 92, 122, 122, 84, + /* 2020 */ 122, 122, 122, 88, 100, 101, 91, 92, 104, 105, + /* 2030 */ 106, 122, 108, 122, 122, 100, 101, 122, 84, 104, + /* 2040 */ 105, 106, 88, 108, 122, 91, 92, 122, 122, 122, + /* 2050 */ 122, 122, 122, 122, 100, 101, 122, 84, 104, 105, + /* 2060 */ 106, 88, 108, 122, 91, 92, 122, 122, 84, 122, + /* 2070 */ 122, 122, 88, 100, 101, 91, 92, 104, 105, 106, + /* 2080 */ 122, 108, 122, 122, 100, 101, 122, 122, 104, 105, + /* 2090 */ 106, 122, 108, 84, 122, 122, 122, 88, 122, 122, + /* 2100 */ 91, 92, 122, 122, 84, 122, 122, 122, 88, 100, + /* 2110 */ 101, 91, 92, 104, 105, 106, 122, 108, 122, 122, + /* 2120 */ 100, 101, 122, 84, 104, 105, 106, 88, 108, 122, + /* 2130 */ 91, 92, 122, 122, 122, 122, 122, 122, 122, 100, + /* 2140 */ 101, 122, 84, 104, 105, 106, 88, 108, 122, 91, + /* 2150 */ 92, 122, 122, 84, 122, 122, 122, 88, 100, 101, + /* 2160 */ 91, 92, 104, 105, 106, 122, 108, 122, 122, 100, + /* 2170 */ 101, 122, 122, 104, 105, 106, 122, 108, 84, 122, + /* 2180 */ 122, 122, 88, 122, 122, 91, 92, 122, 122, 84, + /* 2190 */ 122, 122, 122, 88, 100, 101, 91, 92, 104, 105, + /* 2200 */ 106, 122, 108, 122, 122, 100, 101, 122, 84, 104, + /* 2210 */ 105, 106, 88, 108, 122, 91, 92, 122, 122, 122, + /* 2220 */ 122, 122, 122, 122, 100, 101, 122, 84, 104, 105, + /* 2230 */ 106, 88, 108, 122, 91, 92, 122, 122, 84, 122, + /* 2240 */ 122, 122, 88, 100, 101, 91, 92, 104, 105, 106, + /* 2250 */ 122, 108, 122, 122, 100, 101, 122, 122, 104, 105, + /* 2260 */ 106, 122, 108, 84, 122, 122, 122, 88, 122, 122, + /* 2270 */ 91, 92, 122, 122, 84, 122, 122, 122, 88, 100, + /* 2280 */ 101, 91, 92, 104, 105, 106, 122, 108, 122, 122, + /* 2290 */ 100, 101, 122, 84, 104, 105, 106, 88, 108, 122, + /* 2300 */ 91, 92, 122, 122, 122, 122, 122, 122, 122, 100, + /* 2310 */ 101, 122, 84, 104, 105, 106, 88, 108, 122, 91, + /* 2320 */ 92, 122, 122, 84, 122, 122, 122, 88, 100, 101, + /* 2330 */ 91, 92, 104, 105, 106, 122, 108, 122, 122, 100, + /* 2340 */ 101, 122, 122, 104, 105, 106, 122, 108, 84, 122, + /* 2350 */ 122, 122, 88, 122, 122, 91, 92, 122, 122, 84, + /* 2360 */ 122, 122, 122, 88, 100, 101, 91, 92, 104, 105, + /* 2370 */ 106, 122, 108, 122, 122, 100, 101, 122, 84, 104, + /* 2380 */ 105, 106, 88, 108, 122, 91, 92, 122, 122, 122, + /* 2390 */ 122, 122, 122, 122, 100, 101, 122, 84, 104, 105, + /* 2400 */ 106, 88, 108, 122, 91, 92, 122, 122, 84, 122, + /* 2410 */ 122, 122, 88, 100, 101, 91, 92, 104, 105, 106, + /* 2420 */ 122, 108, 122, 122, 100, 101, 122, 122, 104, 105, + /* 2430 */ 106, 122, 108, 84, 122, 122, 122, 88, 122, 122, + /* 2440 */ 91, 92, 122, 122, 84, 122, 122, 122, 88, 100, + /* 2450 */ 101, 91, 92, 104, 105, 106, 122, 108, 122, 122, + /* 2460 */ 100, 101, 122, 84, 104, 105, 106, 88, 108, 122, + /* 2470 */ 122, 92, 122, 122, 122, 122, 122, 122, 122, 122, + /* 2480 */ 101, 122, 84, 104, 105, 106, 88, 108, 122, 122, + /* 2490 */ 92, 122, 122, 122, 122, 89, 90, 122, 122, 101, + /* 2500 */ 122, 122, 104, 105, 106, 99, 108, 122, 102, 103, + /* 2510 */ 122, 89, 90, 122, 122, 122, 122, 122, 89, 90, + /* 2520 */ 122, 99, 116, 122, 102, 103, 122, 122, 99, 122, + /* 2530 */ 122, 102, 103, 122, 89, 90, 122, 122, 116, 122, + /* 2540 */ 122, 122, 122, 122, 99, 116, 122, 102, 103, 122, + /* 2550 */ 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, + /* 2560 */ 122, 116, ); - const YY_SHIFT_USE_DFLT = -5; + const YY_SHIFT_USE_DFLT = -2; const YY_SHIFT_MAX = 252; static public $yy_shift_ofst = array( - /* 0 */ 1, 1391, 1391, 1223, 1167, 1167, 1167, 1223, 1111, 1167, - /* 10 */ 1167, 1167, 1503, 1167, 1559, 1167, 1167, 1167, 1167, 1167, - /* 20 */ 1167, 1167, 1167, 1167, 1167, 1615, 1167, 1167, 1167, 1167, - /* 30 */ 1503, 1167, 1167, 1447, 1167, 1167, 1167, 1167, 1279, 1167, - /* 40 */ 1167, 1167, 1279, 1167, 1335, 1335, 1727, 1671, 1727, 1727, - /* 50 */ 1727, 1727, 1727, 224, 74, 149, -1, 755, 755, 755, - /* 60 */ 956, 881, 806, 527, 326, 704, 275, 377, 653, 602, - /* 70 */ 452, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, - /* 80 */ 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, - /* 90 */ 1046, 1046, 1232, 1443, 407, 1, 958, 73, 146, 225, - /* 100 */ 546, 61, 61, 443, 443, 243, 371, 407, 407, 883, - /* 110 */ 47, 1331, 11, 189, 1387, 1219, 226, 56, 138, 235, - /* 120 */ 75, 887, 219, 366, 371, 367, 366, 366, 368, 293, - /* 130 */ 371, 366, 917, 366, 366, 445, 366, 418, 366, 1248, - /* 140 */ 368, 366, 300, 395, 293, 636, 629, 636, 616, 636, - /* 150 */ 610, 636, 636, 636, 636, 616, 636, -5, 166, 167, - /* 160 */ 601, 603, 873, 594, 148, 217, 148, 473, 947, 148, - /* 170 */ 874, 878, 948, 1235, 148, 543, 1191, 1221, 148, 1230, - /* 180 */ 563, 1188, 1121, 1118, 953, 949, 1181, 1174, 1180, 670, - /* 190 */ 632, 632, 616, 616, 636, 616, 636, 102, 102, 396, - /* 200 */ -5, -5, -5, -5, -5, 1764, 150, 22, 118, 71, - /* 210 */ 176, -4, 486, 144, 144, 213, 270, 261, 296, 328, - /* 220 */ 449, 271, 295, 615, 579, 560, 566, 441, 564, 396, - /* 230 */ 528, 591, 551, 589, 571, 614, 552, 529, 539, 494, - /* 240 */ 448, 492, 471, 450, 488, 469, 459, 511, 522, 510, - /* 250 */ 496, 523, 500, + /* 0 */ 1, 1386, 1162, 1218, 1162, 1386, 1218, 1162, 1106, 1162, + /* 10 */ 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1442, 1554, + /* 20 */ 1498, 1162, 1162, 1162, 1162, 1162, 1162, 1610, 1162, 1162, + /* 30 */ 1162, 1162, 1162, 1162, 1274, 1162, 1162, 1162, 1162, 1162, + /* 40 */ 1162, 1162, 1498, 1442, 1330, 1330, 1666, 1666, 1666, 1722, + /* 50 */ 1666, 1666, 1666, 227, 75, 151, -1, 768, 768, 768, + /* 60 */ 948, 896, 820, 536, 379, 716, 303, 431, 664, 612, + /* 70 */ 484, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, + /* 80 */ 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, + /* 90 */ 1040, 1040, 1116, 382, 513, 1, 1126, 147, 223, 1118, + /* 100 */ 1118, 320, 890, 916, 298, 890, 513, 447, 513, 898, + /* 110 */ 48, 154, 11, 306, 67, 230, 194, 220, 169, 268, + /* 120 */ 181, 316, 615, 424, 473, 424, 472, 474, 448, 785, + /* 130 */ 424, 424, 210, 424, 442, 447, 448, 424, 424, 424, + /* 140 */ 727, 424, 1288, 447, 442, 641, 137, 641, 641, 641, + /* 150 */ 641, 641, 137, 617, 618, 641, 641, -2, 344, 148, + /* 160 */ 893, 172, 41, 172, 1225, 1215, 1216, 1206, 1197, 1115, + /* 170 */ 1169, 1184, 1230, 172, 1271, 672, 1262, 1272, 1286, 1077, + /* 180 */ 1281, 172, 1240, 1232, 911, 172, 1253, 1243, 1076, 621, + /* 190 */ 641, 641, 665, 665, 559, 621, 137, 327, 137, 137, + /* 200 */ -2, -2, -2, -2, -2, 1778, 71, 119, 45, 73, + /* 210 */ 76, 96, 486, 436, 179, 470, 22, 377, 153, 373, + /* 220 */ 397, 397, 613, 561, 554, 572, 568, 249, 549, 542, + /* 230 */ 573, 555, 578, 558, 559, 556, 570, 511, 543, 449, + /* 240 */ 501, 395, 252, 348, 368, 519, 334, 525, 481, 506, + /* 250 */ 521, 520, 551, ); - const YY_REDUCE_USE_DFLT = -86; + const YY_REDUCE_USE_DFLT = -84; const YY_REDUCE_MAX = 204; static public $yy_reduce_ofst = array( - /* 0 */ -63, -7, 1730, 68, 446, 373, 143, 521, 2091, 2117, - /* 10 */ 1800, 1407, 2080, 1884, 1912, 1575, 1949, 1923, 1865, 1968, - /* 20 */ 1996, 2052, 2033, 2007, 1839, 1828, 1351, 1295, 1183, 1239, - /* 30 */ 1463, 1519, 1781, 1755, 1631, 2175, 2248, 2201, 2164, 2285, - /* 40 */ 2259, 2136, 2220, 1127, 379, 1048, 451, 1073, 804, 879, - /* 50 */ 1875, 1791, 1088, 1976, 1945, 1676, 2060, 1676, 2113, 2029, - /* 60 */ 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, - /* 70 */ 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, - /* 80 */ 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, - /* 90 */ 798, 798, 39, 113, 214, -81, 43, 442, -74, 20, - /* 100 */ -10, 239, 264, 525, 517, 378, 188, 314, 291, 697, - /* 110 */ 170, -6, 520, 248, -6, -6, 248, -6, 248, 246, - /* 120 */ 172, -6, 172, 568, 313, 495, 495, 569, 570, 324, - /* 130 */ 244, 292, 245, 420, 345, 172, 301, 495, 621, 491, - /* 140 */ 495, 619, -6, 620, 325, -6, 211, -6, 147, -6, - /* 150 */ 81, -6, -6, -6, -6, 172, -6, -6, 545, 549, - /* 160 */ 536, 536, 536, 536, 530, 548, 530, 540, 536, 530, - /* 170 */ 536, 536, 536, 536, 530, 540, 536, 536, 530, 536, - /* 180 */ 540, 536, 536, 536, 536, 536, 536, 536, 536, 596, - /* 190 */ 567, 588, 550, 550, 540, 550, 540, -85, -85, 331, - /* 200 */ 306, 349, 337, 260, 134, + /* 0 */ -63, -7, 1729, 69, 297, 221, 145, 530, 2209, 2228, + /* 10 */ 1973, 1850, 2190, 2039, 2058, 1899, 2094, 2069, 2020, 2105, + /* 20 */ 2124, 2179, 2154, 2143, 2009, 1984, 1839, 1814, 1780, 1803, + /* 30 */ 1869, 1888, 1954, 1935, 1924, 2275, 2324, 2294, 2264, 2360, + /* 40 */ 2349, 2239, 2313, 1757, 2379, 2398, 226, 819, 302, 535, + /* 50 */ 1179, 1123, 1083, 2406, 1707, 1630, 2422, 2445, 2429, 2406, + /* 60 */ 813, 813, 813, 813, 813, 813, 813, 813, 813, 813, + /* 70 */ 813, 813, 813, 813, 813, 813, 813, 813, 813, 813, + /* 80 */ 813, 813, 813, 813, 813, 813, 813, 813, 813, 813, + /* 90 */ 813, 813, -10, 40, 116, -82, -25, 225, -74, 192, + /* 100 */ 343, 156, 305, 70, 174, 538, 370, 272, 301, 658, + /* 110 */ 432, 92, 68, 92, 330, 92, 330, 245, 330, 245, + /* 120 */ 92, 347, 92, 478, 451, 353, 451, 504, 404, 245, + /* 130 */ 451, 450, 92, 452, 451, 420, 457, 682, 684, 580, + /* 140 */ 405, 579, 500, 423, 630, 92, 149, 92, 92, 92, + /* 150 */ 92, 92, 245, 294, 191, 92, 92, 92, 534, 533, + /* 160 */ 518, 514, 517, 514, 518, 518, 518, 518, 518, 518, + /* 170 */ 518, 518, 518, 514, 518, 518, 518, 518, 518, 509, + /* 180 */ 518, 514, 518, 518, 509, 514, 518, 518, 509, 574, + /* 190 */ 509, 509, 503, 503, 563, 571, 152, 157, 152, 152, + /* 200 */ -83, 208, 176, 160, -77, ); static public $yyExpectedTokens = array( - /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 22, 27, 31, 32, 33, ), - /* 1 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 2 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 3 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 4 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 5 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 6 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 7 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 8 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 63, 76, ), - /* 9 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 10 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 11 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 12 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 13 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 14 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 15 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 16 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 17 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 18 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 19 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 20 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 21 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 22 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 23 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 24 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 25 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 26 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 27 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 28 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 29 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 30 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 31 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 32 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 33 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 34 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 35 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 36 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 37 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 38 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 39 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 40 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 41 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 42 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 43 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 44 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 45 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ), - /* 46 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ), - /* 47 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ), - /* 48 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ), - /* 49 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ), - /* 50 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ), - /* 51 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ), - /* 52 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ), - /* 53 */ array(1, 16, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 54 */ array(1, 16, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 55 */ array(1, 16, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 56 */ array(1, 26, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 57 */ array(1, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 58 */ array(1, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 59 */ array(1, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 60 */ array(1, 16, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 61 */ array(1, 16, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 62 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 63 */ array(1, 16, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 64 */ array(1, 29, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 65 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 66 */ array(1, 2, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 67 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, ), - /* 68 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 69 */ array(1, 16, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 70 */ array(1, 23, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 71 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 72 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 73 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 74 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 75 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 76 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 77 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 78 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 79 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 80 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 81 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 82 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 83 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 84 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 85 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 86 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 87 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 88 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 89 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 90 */ array(38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 91 */ array(38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ), - /* 92 */ array(1, 16, 20, 28, 36, 59, ), - /* 93 */ array(1, 16, 28, 52, ), - /* 94 */ array(1, 28, ), - /* 95 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 22, 27, 31, 32, 33, ), - /* 96 */ array(10, 15, 21, 22, 27, 31, 32, 33, 76, 77, 78, ), - /* 97 */ array(15, 18, 28, 30, ), - /* 98 */ array(15, 18, 28, 30, ), - /* 99 */ array(20, 57, 62, ), - /* 100 */ array(1, 2, 16, ), - /* 101 */ array(1, 16, 28, ), - /* 102 */ array(1, 16, 28, ), - /* 103 */ array(15, 18, 28, ), - /* 104 */ array(15, 18, 28, ), - /* 105 */ array(17, 18, 61, ), - /* 106 */ array(17, 36, ), - /* 107 */ array(1, 28, ), - /* 108 */ array(1, 28, ), - /* 109 */ array(10, 15, 21, 22, 27, 31, 32, 33, 76, 77, 78, ), - /* 110 */ array(4, 5, 6, 7, 8, 12, 13, 14, ), - /* 111 */ array(1, 16, 28, 29, 52, ), - /* 112 */ array(15, 18, 19, 24, ), - /* 113 */ array(15, 18, 19, 60, ), - /* 114 */ array(1, 16, 28, 52, ), - /* 115 */ array(1, 16, 28, 52, ), - /* 116 */ array(15, 18, 60, ), - /* 117 */ array(1, 30, 52, ), - /* 118 */ array(15, 18, 19, ), - /* 119 */ array(1, 16, 20, ), - /* 120 */ array(19, 20, 59, ), - /* 121 */ array(1, 16, 52, ), - /* 122 */ array(19, 20, 59, ), - /* 123 */ array(15, 18, ), - /* 124 */ array(17, 36, ), - /* 125 */ array(15, 18, ), - /* 126 */ array(15, 18, ), - /* 127 */ array(15, 18, ), - /* 128 */ array(15, 18, ), - /* 129 */ array(17, 18, ), - /* 130 */ array(17, 36, ), - /* 131 */ array(15, 18, ), - /* 132 */ array(1, 16, ), - /* 133 */ array(15, 18, ), - /* 134 */ array(15, 18, ), - /* 135 */ array(20, 59, ), - /* 136 */ array(15, 18, ), - /* 137 */ array(15, 18, ), - /* 138 */ array(15, 18, ), - /* 139 */ array(16, 28, ), - /* 140 */ array(15, 18, ), - /* 141 */ array(15, 18, ), - /* 142 */ array(1, 52, ), - /* 143 */ array(15, 18, ), - /* 144 */ array(17, 18, ), + /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 22, 23, 28, 32, 33, 34, ), + /* 1 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 2 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 3 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 4 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 5 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 6 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 7 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 8 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 64, 77, ), + /* 9 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 10 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 11 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 12 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 13 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 14 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 15 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 16 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 17 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 18 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 19 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 20 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 21 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 22 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 23 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 24 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 25 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 26 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 27 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 28 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 29 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 30 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 31 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 32 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 33 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 34 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 35 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 36 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 37 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 38 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 39 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 40 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 41 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 42 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 43 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 44 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 45 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 63, 77, ), + /* 46 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 77, ), + /* 47 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 77, ), + /* 48 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 77, ), + /* 49 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 77, ), + /* 50 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 77, ), + /* 51 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 77, ), + /* 52 */ array(16, 18, 19, 22, 23, 28, 32, 33, 34, 35, 37, 40, 55, 56, 57, 58, 59, 62, 77, ), + /* 53 */ array(1, 17, 29, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 54 */ array(1, 17, 29, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 55 */ array(1, 17, 29, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 56 */ array(1, 27, 29, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 57 */ array(1, 29, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 58 */ array(1, 29, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 59 */ array(1, 29, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 60 */ array(1, 2, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 61 */ array(1, 17, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 62 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 63 */ array(1, 30, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 64 */ array(1, 17, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 65 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 66 */ array(1, 17, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 67 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, ), + /* 68 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 69 */ array(1, 17, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 70 */ array(1, 24, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 71 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 72 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 73 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 74 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 75 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 76 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 77 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 78 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 79 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 80 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 81 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 82 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 83 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 84 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 85 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 86 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 87 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 88 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 89 */ array(1, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 90 */ array(39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 91 */ array(39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, ), + /* 92 */ array(1, 17, 21, 29, 37, 60, ), + /* 93 */ array(1, 17, 29, 53, ), + /* 94 */ array(1, 29, ), + /* 95 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 22, 23, 28, 32, 33, 34, ), + /* 96 */ array(10, 16, 22, 23, 28, 32, 33, 34, 77, 78, 79, ), + /* 97 */ array(16, 19, 29, 31, ), + /* 98 */ array(16, 19, 29, 31, ), + /* 99 */ array(1, 17, 29, ), + /* 100 */ array(1, 17, 29, ), + /* 101 */ array(18, 19, 62, ), + /* 102 */ array(16, 19, 29, ), + /* 103 */ array(1, 2, 17, ), + /* 104 */ array(21, 58, 63, ), + /* 105 */ array(16, 19, 29, ), + /* 106 */ array(1, 29, ), + /* 107 */ array(18, 37, ), + /* 108 */ array(1, 29, ), + /* 109 */ array(10, 16, 22, 23, 28, 32, 33, 34, 77, 78, 79, ), + /* 110 */ array(4, 5, 6, 7, 8, 13, 14, 15, ), + /* 111 */ array(1, 17, 29, 30, 53, ), + /* 112 */ array(16, 19, 20, 25, ), + /* 113 */ array(1, 17, 29, 53, ), + /* 114 */ array(16, 19, 20, 61, ), + /* 115 */ array(1, 17, 29, 53, ), + /* 116 */ array(16, 19, 61, ), + /* 117 */ array(20, 21, 60, ), + /* 118 */ array(16, 19, 20, ), + /* 119 */ array(20, 21, 60, ), + /* 120 */ array(1, 31, 53, ), + /* 121 */ array(1, 17, 21, ), + /* 122 */ array(1, 17, 53, ), + /* 123 */ array(16, 19, ), + /* 124 */ array(16, 19, ), + /* 125 */ array(16, 19, ), + /* 126 */ array(16, 19, ), + /* 127 */ array(16, 19, ), + /* 128 */ array(18, 19, ), + /* 129 */ array(21, 60, ), + /* 130 */ array(16, 19, ), + /* 131 */ array(16, 19, ), + /* 132 */ array(1, 53, ), + /* 133 */ array(16, 19, ), + /* 134 */ array(16, 19, ), + /* 135 */ array(18, 37, ), + /* 136 */ array(18, 19, ), + /* 137 */ array(16, 19, ), + /* 138 */ array(16, 19, ), + /* 139 */ array(16, 19, ), + /* 140 */ array(1, 17, ), + /* 141 */ array(16, 19, ), + /* 142 */ array(17, 29, ), + /* 143 */ array(18, 37, ), + /* 144 */ array(16, 19, ), /* 145 */ array(1, ), - /* 146 */ array(28, ), + /* 146 */ array(21, ), /* 147 */ array(1, ), - /* 148 */ array(20, ), + /* 148 */ array(1, ), /* 149 */ array(1, ), - /* 150 */ array(28, ), + /* 150 */ array(1, ), /* 151 */ array(1, ), - /* 152 */ array(1, ), - /* 153 */ array(1, ), - /* 154 */ array(1, ), - /* 155 */ array(20, ), + /* 152 */ array(21, ), + /* 153 */ array(29, ), + /* 154 */ array(29, ), + /* 155 */ array(1, ), /* 156 */ array(1, ), /* 157 */ array(), - /* 158 */ array(15, 17, 18, ), - /* 159 */ array(15, 18, 60, ), - /* 160 */ array(16, 28, ), - /* 161 */ array(16, 28, ), - /* 162 */ array(16, 28, ), - /* 163 */ array(16, 28, ), - /* 164 */ array(57, 62, ), - /* 165 */ array(15, 36, ), - /* 166 */ array(57, 62, ), - /* 167 */ array(1, 16, ), - /* 168 */ array(16, 28, ), - /* 169 */ array(57, 62, ), - /* 170 */ array(16, 28, ), - /* 171 */ array(16, 28, ), - /* 172 */ array(16, 28, ), - /* 173 */ array(16, 28, ), - /* 174 */ array(57, 62, ), - /* 175 */ array(1, 16, ), - /* 176 */ array(16, 28, ), - /* 177 */ array(16, 28, ), - /* 178 */ array(57, 62, ), - /* 179 */ array(16, 28, ), - /* 180 */ array(1, 16, ), - /* 181 */ array(16, 28, ), - /* 182 */ array(16, 28, ), - /* 183 */ array(16, 28, ), - /* 184 */ array(16, 28, ), - /* 185 */ array(16, 28, ), - /* 186 */ array(16, 28, ), - /* 187 */ array(16, 28, ), - /* 188 */ array(16, 28, ), - /* 189 */ array(13, ), - /* 190 */ array(28, ), - /* 191 */ array(28, ), - /* 192 */ array(20, ), - /* 193 */ array(20, ), - /* 194 */ array(1, ), - /* 195 */ array(20, ), - /* 196 */ array(1, ), - /* 197 */ array(2, ), - /* 198 */ array(2, ), - /* 199 */ array(36, ), + /* 158 */ array(16, 18, 19, ), + /* 159 */ array(16, 19, 61, ), + /* 160 */ array(17, 29, ), + /* 161 */ array(58, 63, ), + /* 162 */ array(16, 37, ), + /* 163 */ array(58, 63, ), + /* 164 */ array(17, 29, ), + /* 165 */ array(17, 29, ), + /* 166 */ array(17, 29, ), + /* 167 */ array(17, 29, ), + /* 168 */ array(17, 29, ), + /* 169 */ array(17, 29, ), + /* 170 */ array(17, 29, ), + /* 171 */ array(17, 29, ), + /* 172 */ array(17, 29, ), + /* 173 */ array(58, 63, ), + /* 174 */ array(17, 29, ), + /* 175 */ array(17, 29, ), + /* 176 */ array(17, 29, ), + /* 177 */ array(17, 29, ), + /* 178 */ array(17, 29, ), + /* 179 */ array(1, 17, ), + /* 180 */ array(17, 29, ), + /* 181 */ array(58, 63, ), + /* 182 */ array(17, 29, ), + /* 183 */ array(17, 29, ), + /* 184 */ array(1, 17, ), + /* 185 */ array(58, 63, ), + /* 186 */ array(17, 29, ), + /* 187 */ array(17, 29, ), + /* 188 */ array(1, 17, ), + /* 189 */ array(29, ), + /* 190 */ array(1, ), + /* 191 */ array(1, ), + /* 192 */ array(2, ), + /* 193 */ array(2, ), + /* 194 */ array(37, ), + /* 195 */ array(29, ), + /* 196 */ array(21, ), + /* 197 */ array(14, ), + /* 198 */ array(21, ), + /* 199 */ array(21, ), /* 200 */ array(), /* 201 */ array(), /* 202 */ array(), /* 203 */ array(), /* 204 */ array(), - /* 205 */ array(16, 23, 25, 26, 28, 29, 35, 36, 37, 52, 59, 63, 77, ), - /* 206 */ array(16, 19, 28, 36, 59, ), - /* 207 */ array(36, 57, 59, 63, ), - /* 208 */ array(15, 17, 18, 34, ), - /* 209 */ array(16, 28, 36, 59, ), - /* 210 */ array(30, 36, 59, ), - /* 211 */ array(18, 60, ), - /* 212 */ array(2, 19, ), - /* 213 */ array(36, 59, ), - /* 214 */ array(36, 59, ), - /* 215 */ array(16, 24, ), - /* 216 */ array(35, 37, ), - /* 217 */ array(24, 77, ), - /* 218 */ array(35, 63, ), - /* 219 */ array(23, 35, ), - /* 220 */ array(19, 57, ), - /* 221 */ array(35, 37, ), - /* 222 */ array(35, 37, ), - /* 223 */ array(18, ), - /* 224 */ array(2, ), - /* 225 */ array(24, ), - /* 226 */ array(17, ), - /* 227 */ array(18, ), + /* 205 */ array(17, 24, 26, 27, 29, 30, 36, 37, 38, 53, 60, 64, 78, ), + /* 206 */ array(17, 20, 29, 37, 60, ), + /* 207 */ array(16, 18, 19, 35, ), + /* 208 */ array(37, 58, 60, 64, ), + /* 209 */ array(17, 29, 37, 60, ), + /* 210 */ array(31, 37, 60, ), + /* 211 */ array(36, 38, ), + /* 212 */ array(24, 36, ), + /* 213 */ array(2, 20, ), + /* 214 */ array(25, 78, ), + /* 215 */ array(17, 25, ), + /* 216 */ array(36, 38, ), + /* 217 */ array(36, 38, ), + /* 218 */ array(19, 61, ), + /* 219 */ array(36, 64, ), + /* 220 */ array(37, 60, ), + /* 221 */ array(37, 60, ), + /* 222 */ array(20, 58, ), + /* 223 */ array(37, ), + /* 224 */ array(18, ), + /* 225 */ array(19, ), + /* 226 */ array(2, ), + /* 227 */ array(62, ), /* 228 */ array(18, ), - /* 229 */ array(36, ), - /* 230 */ array(57, ), + /* 229 */ array(26, ), + /* 230 */ array(19, ), /* 231 */ array(18, ), - /* 232 */ array(36, ), - /* 233 */ array(18, ), - /* 234 */ array(17, ), - /* 235 */ array(18, ), - /* 236 */ array(34, ), - /* 237 */ array(34, ), - /* 238 */ array(18, ), - /* 239 */ array(17, ), - /* 240 */ array(61, ), - /* 241 */ array(18, ), - /* 242 */ array(37, ), - /* 243 */ array(17, ), + /* 232 */ array(19, ), + /* 233 */ array(35, ), + /* 234 */ array(37, ), + /* 235 */ array(38, ), + /* 236 */ array(25, ), + /* 237 */ array(54, ), + /* 238 */ array(2, ), + /* 239 */ array(19, ), + /* 240 */ array(19, ), + /* 241 */ array(19, ), + /* 242 */ array(64, ), + /* 243 */ array(19, ), /* 244 */ array(19, ), - /* 245 */ array(63, ), - /* 246 */ array(53, ), - /* 247 */ array(2, ), - /* 248 */ array(17, ), - /* 249 */ array(25, ), + /* 245 */ array(19, ), + /* 246 */ array(58, ), + /* 247 */ array(19, ), + /* 248 */ array(62, ), + /* 249 */ array(35, ), /* 250 */ array(18, ), - /* 251 */ array(18, ), - /* 252 */ array(61, ), + /* 251 */ array(20, ), + /* 252 */ array(18, ), /* 253 */ array(), /* 254 */ array(), /* 255 */ array(), @@ -1147,53 +1183,54 @@ static public $yy_action = array( /* 384 */ array(), /* 385 */ array(), /* 386 */ array(), + /* 387 */ array(), ); static public $yy_default = array( - /* 0 */ 390, 571, 588, 588, 542, 542, 542, 588, 588, 588, - /* 10 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - /* 20 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - /* 30 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - /* 40 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, - /* 50 */ 588, 588, 588, 588, 588, 588, 450, 450, 450, 450, - /* 60 */ 588, 588, 588, 588, 455, 588, 588, 588, 588, 588, - /* 70 */ 588, 573, 457, 541, 574, 455, 471, 460, 540, 480, - /* 80 */ 484, 432, 461, 452, 479, 483, 572, 474, 475, 476, - /* 90 */ 487, 488, 499, 463, 450, 387, 588, 450, 450, 554, - /* 100 */ 588, 507, 470, 450, 450, 588, 588, 450, 450, 588, - /* 110 */ 588, 463, 588, 515, 463, 463, 515, 463, 515, 588, - /* 120 */ 508, 463, 508, 588, 588, 588, 588, 588, 588, 588, - /* 130 */ 588, 588, 588, 588, 588, 508, 515, 588, 588, 588, - /* 140 */ 588, 588, 463, 588, 588, 467, 450, 473, 551, 490, - /* 150 */ 450, 468, 486, 491, 492, 508, 466, 549, 588, 516, - /* 160 */ 588, 588, 588, 588, 533, 515, 532, 588, 588, 513, - /* 170 */ 588, 588, 588, 588, 534, 588, 588, 588, 535, 588, - /* 180 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 405, - /* 190 */ 587, 587, 529, 555, 470, 552, 507, 543, 544, 515, - /* 200 */ 515, 515, 548, 548, 548, 465, 499, 499, 588, 499, - /* 210 */ 499, 588, 527, 485, 499, 489, 588, 489, 588, 588, - /* 220 */ 495, 588, 588, 588, 527, 489, 588, 588, 588, 527, - /* 230 */ 495, 588, 553, 588, 588, 588, 497, 588, 588, 588, - /* 240 */ 588, 588, 588, 588, 588, 588, 501, 527, 588, 458, - /* 250 */ 588, 588, 588, 435, 524, 439, 501, 523, 511, 569, - /* 260 */ 521, 415, 522, 570, 520, 388, 537, 512, 440, 462, - /* 270 */ 459, 429, 550, 586, 430, 536, 528, 538, 539, 434, - /* 280 */ 433, 565, 441, 527, 442, 547, 443, 526, 438, 449, - /* 290 */ 428, 431, 436, 437, 444, 445, 498, 496, 504, 464, - /* 300 */ 465, 494, 493, 545, 546, 446, 447, 427, 448, 397, - /* 310 */ 396, 398, 399, 400, 395, 394, 389, 391, 392, 393, - /* 320 */ 401, 402, 411, 410, 412, 413, 414, 409, 408, 403, - /* 330 */ 404, 406, 407, 509, 514, 421, 420, 530, 422, 423, - /* 340 */ 419, 418, 531, 510, 416, 417, 583, 424, 426, 581, - /* 350 */ 579, 584, 585, 578, 580, 577, 425, 582, 575, 576, - /* 360 */ 506, 469, 503, 502, 505, 477, 478, 472, 500, 517, - /* 370 */ 525, 518, 519, 481, 482, 563, 562, 564, 566, 567, - /* 380 */ 561, 560, 556, 557, 558, 559, 568, + /* 0 */ 391, 573, 544, 590, 544, 590, 590, 544, 590, 590, + /* 10 */ 590, 590, 590, 590, 590, 590, 590, 590, 590, 590, + /* 20 */ 590, 590, 590, 590, 590, 590, 590, 590, 590, 590, + /* 30 */ 590, 590, 590, 590, 590, 590, 590, 590, 590, 590, + /* 40 */ 590, 590, 590, 590, 590, 590, 590, 590, 590, 590, + /* 50 */ 590, 590, 590, 590, 590, 590, 452, 452, 452, 452, + /* 60 */ 590, 590, 590, 457, 590, 590, 590, 590, 590, 590, + /* 70 */ 590, 542, 454, 481, 482, 485, 486, 478, 543, 476, + /* 80 */ 463, 575, 576, 473, 459, 457, 477, 434, 462, 574, + /* 90 */ 490, 489, 501, 465, 452, 388, 590, 452, 452, 509, + /* 100 */ 472, 590, 452, 590, 556, 452, 452, 590, 452, 590, + /* 110 */ 590, 465, 590, 465, 517, 465, 517, 510, 517, 510, + /* 120 */ 465, 590, 465, 590, 590, 517, 590, 590, 590, 510, + /* 130 */ 590, 590, 465, 590, 590, 590, 590, 590, 590, 590, + /* 140 */ 590, 590, 590, 590, 590, 493, 553, 475, 492, 469, + /* 150 */ 488, 468, 510, 452, 452, 470, 494, 551, 590, 518, + /* 160 */ 590, 534, 517, 537, 590, 590, 590, 590, 590, 590, + /* 170 */ 590, 590, 590, 535, 590, 590, 590, 590, 590, 590, + /* 180 */ 590, 536, 590, 590, 590, 515, 590, 590, 590, 589, + /* 190 */ 472, 509, 545, 546, 517, 589, 531, 407, 557, 554, + /* 200 */ 550, 550, 517, 550, 517, 467, 501, 590, 501, 501, + /* 210 */ 501, 590, 590, 529, 491, 491, 590, 590, 590, 590, + /* 220 */ 501, 487, 497, 555, 590, 590, 529, 590, 590, 460, + /* 230 */ 590, 590, 590, 590, 529, 590, 491, 503, 529, 590, + /* 240 */ 590, 590, 590, 590, 590, 590, 497, 590, 590, 499, + /* 250 */ 590, 590, 590, 437, 417, 389, 571, 431, 432, 441, + /* 260 */ 572, 540, 435, 588, 461, 539, 525, 523, 503, 526, + /* 270 */ 524, 514, 513, 530, 436, 570, 464, 538, 522, 442, + /* 280 */ 552, 541, 567, 529, 528, 443, 444, 549, 440, 439, + /* 290 */ 430, 429, 451, 433, 438, 445, 446, 498, 496, 500, + /* 300 */ 506, 466, 495, 449, 447, 547, 548, 448, 450, 416, + /* 310 */ 398, 397, 399, 400, 401, 396, 395, 390, 392, 393, + /* 320 */ 394, 402, 403, 412, 411, 413, 414, 415, 410, 409, + /* 330 */ 404, 405, 406, 408, 467, 511, 422, 421, 423, 532, + /* 340 */ 424, 420, 585, 512, 508, 533, 418, 419, 425, 426, + /* 350 */ 581, 582, 583, 586, 587, 579, 578, 428, 427, 584, + /* 360 */ 577, 471, 569, 504, 474, 505, 507, 479, 502, 521, + /* 370 */ 516, 519, 527, 520, 480, 483, 564, 563, 565, 566, + /* 380 */ 568, 562, 561, 484, 558, 559, 560, 580, ); - const YYNOCODE = 122; + const YYNOCODE = 123; const YYSTACKDEPTH = 100; - const YYNSTATE = 387; - const YYNRULE = 201; - const YYERRORSYMBOL = 79; + const YYNSTATE = 388; + const YYNRULE = 202; + const YYERRORSYMBOL = 80; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; static public $yyFallback = array( @@ -1224,35 +1261,35 @@ static public $yy_action = array( public $yyTokenName = array( '$', 'VERT', 'COLON', 'COMMENT', 'PHPSTARTTAG', 'PHPENDTAG', 'ASPSTARTTAG', 'ASPENDTAG', - 'FAKEPHPSTARTTAG', 'XMLTAG', 'OTHER', 'LINEBREAK', - 'LITERALSTART', 'LITERALEND', 'LITERAL', 'LDEL', - 'RDEL', 'DOLLAR', 'ID', 'EQUAL', - 'PTR', 'LDELIF', 'LDELFOR', 'SEMICOLON', - 'INCDEC', 'TO', 'STEP', 'LDELFOREACH', - 'SPACE', 'AS', 'APTR', 'LDELSETFILTER', - 'SMARTYBLOCKCHILD', 'LDELSLASH', 'INTEGER', 'COMMA', - 'OPENP', 'CLOSEP', 'MATH', 'UNIMATH', - 'ANDSYM', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', - 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', - 'ISODD', 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', - 'INSTANCEOF', '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', - 'modifierlist', 'attributes', 'expr', 'varindexed', - 'statement', 'statements', 'optspace', 'varvar', - 'foraction', 'modparameters', 'attribute', 'ternary', - 'array', 'ifcond', 'lop', 'variable', - 'function', 'doublequoted_with_quotes', 'static_class_access', 'object', - 'arrayindex', 'indexdef', 'varvarele', 'objectchain', - 'objectelement', 'method', 'params', 'modifier', - 'modparameter', 'arrayelements', 'arrayelement', 'doublequoted', - 'doublequotedcontent', + 'FAKEPHPSTARTTAG', 'XMLTAG', 'TEXT', 'STRIPON', + 'STRIPOFF', 'LITERALSTART', 'LITERALEND', 'LITERAL', + 'LDEL', 'RDEL', 'DOLLAR', 'ID', + 'EQUAL', 'PTR', 'LDELIF', 'LDELFOR', + 'SEMICOLON', 'INCDEC', 'TO', 'STEP', + 'LDELFOREACH', 'SPACE', 'AS', 'APTR', + 'LDELSETFILTER', 'SMARTYBLOCKCHILD', 'LDELSLASH', 'INTEGER', + 'COMMA', 'OPENP', 'CLOSEP', 'MATH', + 'UNIMATH', 'ANDSYM', 'ISIN', 'ISDIVBY', + 'ISNOTDIVBY', 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', + 'ISNOTEVENBY', 'ISODD', 'ISNOTODD', 'ISODDBY', + 'ISNOTODDBY', 'INSTANCEOF', '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', 'modifierlist', 'attributes', 'expr', + 'varindexed', 'statement', 'statements', 'optspace', + 'varvar', 'foraction', 'modparameters', 'attribute', + 'ternary', 'array', 'ifcond', 'lop', + 'variable', 'function', 'doublequoted_with_quotes', 'static_class_access', + 'object', 'arrayindex', 'indexdef', 'varvarele', + 'objectchain', 'objectelement', 'method', 'params', + 'modifier', 'modparameter', 'arrayelements', 'arrayelement', + 'doublequoted', 'doublequotedcontent', ); static public $yyRuleName = array( @@ -1269,194 +1306,195 @@ static public $yy_action = array( /* 10 */ "template_element ::= ASPENDTAG", /* 11 */ "template_element ::= FAKEPHPSTARTTAG", /* 12 */ "template_element ::= XMLTAG", - /* 13 */ "template_element ::= OTHER", - /* 14 */ "template_element ::= LINEBREAK", - /* 15 */ "literal ::= LITERALSTART LITERALEND", - /* 16 */ "literal ::= LITERALSTART literal_elements LITERALEND", - /* 17 */ "literal_elements ::= literal_elements literal_element", - /* 18 */ "literal_elements ::=", - /* 19 */ "literal_element ::= literal", - /* 20 */ "literal_element ::= LITERAL", - /* 21 */ "literal_element ::= PHPSTARTTAG", - /* 22 */ "literal_element ::= FAKEPHPSTARTTAG", - /* 23 */ "literal_element ::= PHPENDTAG", - /* 24 */ "literal_element ::= ASPSTARTTAG", - /* 25 */ "literal_element ::= ASPENDTAG", - /* 26 */ "smartytag ::= LDEL value RDEL", - /* 27 */ "smartytag ::= LDEL value modifierlist attributes RDEL", - /* 28 */ "smartytag ::= LDEL value attributes RDEL", - /* 29 */ "smartytag ::= LDEL expr modifierlist attributes RDEL", - /* 30 */ "smartytag ::= LDEL expr attributes RDEL", - /* 31 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL", - /* 32 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL", - /* 33 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL", - /* 34 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", - /* 35 */ "smartytag ::= LDEL ID attributes RDEL", - /* 36 */ "smartytag ::= LDEL ID RDEL", - /* 37 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", - /* 38 */ "smartytag ::= LDEL ID modifierlist attributes RDEL", - /* 39 */ "smartytag ::= LDEL ID PTR ID modifierlist attributes RDEL", - /* 40 */ "smartytag ::= LDELIF expr RDEL", - /* 41 */ "smartytag ::= LDELIF expr attributes RDEL", - /* 42 */ "smartytag ::= LDELIF statement RDEL", - /* 43 */ "smartytag ::= LDELIF statement attributes RDEL", - /* 44 */ "smartytag ::= LDELFOR statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction attributes RDEL", - /* 45 */ "foraction ::= EQUAL expr", - /* 46 */ "foraction ::= INCDEC", - /* 47 */ "smartytag ::= LDELFOR statement TO expr attributes RDEL", - /* 48 */ "smartytag ::= LDELFOR statement TO expr STEP expr attributes RDEL", - /* 49 */ "smartytag ::= LDELFOREACH attributes RDEL", - /* 50 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar attributes RDEL", - /* 51 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar attributes RDEL", - /* 52 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar attributes RDEL", - /* 53 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar APTR DOLLAR varvar attributes RDEL", - /* 54 */ "smartytag ::= LDELSETFILTER ID modparameters RDEL", - /* 55 */ "smartytag ::= LDELSETFILTER ID modparameters modifierlist RDEL", - /* 56 */ "smartytag ::= SMARTYBLOCKCHILD", - /* 57 */ "smartytag ::= LDELSLASH ID RDEL", - /* 58 */ "smartytag ::= LDELSLASH ID modifierlist RDEL", - /* 59 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", - /* 60 */ "smartytag ::= LDELSLASH ID PTR ID modifierlist RDEL", - /* 61 */ "attributes ::= attributes attribute", - /* 62 */ "attributes ::= attribute", - /* 63 */ "attributes ::=", - /* 64 */ "attribute ::= SPACE ID EQUAL ID", - /* 65 */ "attribute ::= SPACE ID EQUAL expr", - /* 66 */ "attribute ::= SPACE ID EQUAL value", - /* 67 */ "attribute ::= SPACE ID", - /* 68 */ "attribute ::= SPACE expr", - /* 69 */ "attribute ::= SPACE value", - /* 70 */ "attribute ::= SPACE INTEGER EQUAL expr", - /* 71 */ "statements ::= statement", - /* 72 */ "statements ::= statements COMMA statement", - /* 73 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 74 */ "statement ::= varindexed EQUAL expr", - /* 75 */ "statement ::= OPENP statement CLOSEP", - /* 76 */ "expr ::= value", - /* 77 */ "expr ::= ternary", - /* 78 */ "expr ::= DOLLAR ID COLON ID", - /* 79 */ "expr ::= expr MATH value", - /* 80 */ "expr ::= expr UNIMATH value", - /* 81 */ "expr ::= expr ANDSYM value", - /* 82 */ "expr ::= array", - /* 83 */ "expr ::= expr modifierlist", - /* 84 */ "expr ::= expr ifcond expr", - /* 85 */ "expr ::= expr ISIN array", - /* 86 */ "expr ::= expr ISIN value", - /* 87 */ "expr ::= expr lop expr", - /* 88 */ "expr ::= expr ISDIVBY expr", - /* 89 */ "expr ::= expr ISNOTDIVBY expr", - /* 90 */ "expr ::= expr ISEVEN", - /* 91 */ "expr ::= expr ISNOTEVEN", - /* 92 */ "expr ::= expr ISEVENBY expr", - /* 93 */ "expr ::= expr ISNOTEVENBY expr", - /* 94 */ "expr ::= expr ISODD", - /* 95 */ "expr ::= expr ISNOTODD", - /* 96 */ "expr ::= expr ISODDBY expr", - /* 97 */ "expr ::= expr ISNOTODDBY expr", - /* 98 */ "expr ::= value INSTANCEOF ID", - /* 99 */ "expr ::= value INSTANCEOF value", - /* 100 */ "ternary ::= OPENP expr CLOSEP QMARK DOLLAR ID COLON expr", - /* 101 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 102 */ "value ::= variable", - /* 103 */ "value ::= UNIMATH value", - /* 104 */ "value ::= NOT value", - /* 105 */ "value ::= TYPECAST value", - /* 106 */ "value ::= variable INCDEC", - /* 107 */ "value ::= HEX", - /* 108 */ "value ::= INTEGER", - /* 109 */ "value ::= INTEGER DOT INTEGER", - /* 110 */ "value ::= INTEGER DOT", - /* 111 */ "value ::= DOT INTEGER", - /* 112 */ "value ::= ID", - /* 113 */ "value ::= function", - /* 114 */ "value ::= OPENP expr CLOSEP", - /* 115 */ "value ::= SINGLEQUOTESTRING", - /* 116 */ "value ::= doublequoted_with_quotes", - /* 117 */ "value ::= ID DOUBLECOLON static_class_access", - /* 118 */ "value ::= varindexed DOUBLECOLON static_class_access", - /* 119 */ "value ::= smartytag", - /* 120 */ "value ::= value modifierlist", - /* 121 */ "variable ::= varindexed", - /* 122 */ "variable ::= DOLLAR varvar AT ID", - /* 123 */ "variable ::= object", - /* 124 */ "variable ::= HATCH ID HATCH", - /* 125 */ "variable ::= HATCH variable HATCH", - /* 126 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 127 */ "arrayindex ::= arrayindex indexdef", - /* 128 */ "arrayindex ::=", - /* 129 */ "indexdef ::= DOT DOLLAR varvar", - /* 130 */ "indexdef ::= DOT DOLLAR varvar AT ID", - /* 131 */ "indexdef ::= DOT ID", - /* 132 */ "indexdef ::= DOT INTEGER", - /* 133 */ "indexdef ::= DOT LDEL expr RDEL", - /* 134 */ "indexdef ::= OPENB ID CLOSEB", - /* 135 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 136 */ "indexdef ::= OPENB expr CLOSEB", - /* 137 */ "indexdef ::= OPENB CLOSEB", - /* 138 */ "varvar ::= varvarele", - /* 139 */ "varvar ::= varvar varvarele", - /* 140 */ "varvarele ::= ID", - /* 141 */ "varvarele ::= LDEL expr RDEL", - /* 142 */ "object ::= varindexed objectchain", - /* 143 */ "objectchain ::= objectelement", - /* 144 */ "objectchain ::= objectchain objectelement", - /* 145 */ "objectelement ::= PTR ID arrayindex", - /* 146 */ "objectelement ::= PTR DOLLAR varvar arrayindex", - /* 147 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 148 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 149 */ "objectelement ::= PTR method", - /* 150 */ "function ::= ID OPENP params CLOSEP", - /* 151 */ "method ::= ID OPENP params CLOSEP", - /* 152 */ "method ::= DOLLAR ID OPENP params CLOSEP", - /* 153 */ "params ::= params COMMA expr", - /* 154 */ "params ::= expr", - /* 155 */ "params ::=", - /* 156 */ "modifierlist ::= modifierlist modifier modparameters", - /* 157 */ "modifierlist ::= modifier modparameters", - /* 158 */ "modifier ::= VERT AT ID", - /* 159 */ "modifier ::= VERT ID", - /* 160 */ "modparameters ::= modparameters modparameter", - /* 161 */ "modparameters ::=", - /* 162 */ "modparameter ::= COLON value", - /* 163 */ "modparameter ::= COLON array", - /* 164 */ "static_class_access ::= method", - /* 165 */ "static_class_access ::= method objectchain", - /* 166 */ "static_class_access ::= ID", - /* 167 */ "static_class_access ::= DOLLAR ID arrayindex", - /* 168 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", - /* 169 */ "ifcond ::= EQUALS", - /* 170 */ "ifcond ::= NOTEQUALS", - /* 171 */ "ifcond ::= GREATERTHAN", - /* 172 */ "ifcond ::= LESSTHAN", - /* 173 */ "ifcond ::= GREATEREQUAL", - /* 174 */ "ifcond ::= LESSEQUAL", - /* 175 */ "ifcond ::= IDENTITY", - /* 176 */ "ifcond ::= NONEIDENTITY", - /* 177 */ "ifcond ::= MOD", - /* 178 */ "lop ::= LAND", - /* 179 */ "lop ::= LOR", - /* 180 */ "lop ::= LXOR", - /* 181 */ "array ::= OPENB arrayelements CLOSEB", - /* 182 */ "arrayelements ::= arrayelement", - /* 183 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 184 */ "arrayelements ::=", - /* 185 */ "arrayelement ::= value APTR expr", - /* 186 */ "arrayelement ::= ID APTR expr", - /* 187 */ "arrayelement ::= expr", - /* 188 */ "doublequoted_with_quotes ::= QUOTE QUOTE", - /* 189 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", - /* 190 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 191 */ "doublequoted ::= doublequotedcontent", - /* 192 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 193 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", - /* 194 */ "doublequotedcontent ::= DOLLARID", - /* 195 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 196 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 197 */ "doublequotedcontent ::= smartytag", - /* 198 */ "doublequotedcontent ::= OTHER", - /* 199 */ "optspace ::= SPACE", - /* 200 */ "optspace ::=", + /* 13 */ "template_element ::= TEXT", + /* 14 */ "template_element ::= STRIPON", + /* 15 */ "template_element ::= STRIPOFF", + /* 16 */ "literal ::= LITERALSTART LITERALEND", + /* 17 */ "literal ::= LITERALSTART literal_elements LITERALEND", + /* 18 */ "literal_elements ::= literal_elements literal_element", + /* 19 */ "literal_elements ::=", + /* 20 */ "literal_element ::= literal", + /* 21 */ "literal_element ::= LITERAL", + /* 22 */ "literal_element ::= PHPSTARTTAG", + /* 23 */ "literal_element ::= FAKEPHPSTARTTAG", + /* 24 */ "literal_element ::= PHPENDTAG", + /* 25 */ "literal_element ::= ASPSTARTTAG", + /* 26 */ "literal_element ::= ASPENDTAG", + /* 27 */ "smartytag ::= LDEL value RDEL", + /* 28 */ "smartytag ::= LDEL value modifierlist attributes RDEL", + /* 29 */ "smartytag ::= LDEL value attributes RDEL", + /* 30 */ "smartytag ::= LDEL expr modifierlist attributes RDEL", + /* 31 */ "smartytag ::= LDEL expr attributes RDEL", + /* 32 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL", + /* 33 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL", + /* 34 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL", + /* 35 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", + /* 36 */ "smartytag ::= LDEL ID attributes RDEL", + /* 37 */ "smartytag ::= LDEL ID RDEL", + /* 38 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", + /* 39 */ "smartytag ::= LDEL ID modifierlist attributes RDEL", + /* 40 */ "smartytag ::= LDEL ID PTR ID modifierlist attributes RDEL", + /* 41 */ "smartytag ::= LDELIF expr RDEL", + /* 42 */ "smartytag ::= LDELIF expr attributes RDEL", + /* 43 */ "smartytag ::= LDELIF statement RDEL", + /* 44 */ "smartytag ::= LDELIF statement attributes RDEL", + /* 45 */ "smartytag ::= LDELFOR statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction attributes RDEL", + /* 46 */ "foraction ::= EQUAL expr", + /* 47 */ "foraction ::= INCDEC", + /* 48 */ "smartytag ::= LDELFOR statement TO expr attributes RDEL", + /* 49 */ "smartytag ::= LDELFOR statement TO expr STEP expr attributes RDEL", + /* 50 */ "smartytag ::= LDELFOREACH attributes RDEL", + /* 51 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar attributes RDEL", + /* 52 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar attributes RDEL", + /* 53 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar attributes RDEL", + /* 54 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar APTR DOLLAR varvar attributes RDEL", + /* 55 */ "smartytag ::= LDELSETFILTER ID modparameters RDEL", + /* 56 */ "smartytag ::= LDELSETFILTER ID modparameters modifierlist RDEL", + /* 57 */ "smartytag ::= SMARTYBLOCKCHILD", + /* 58 */ "smartytag ::= LDELSLASH ID RDEL", + /* 59 */ "smartytag ::= LDELSLASH ID modifierlist RDEL", + /* 60 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", + /* 61 */ "smartytag ::= LDELSLASH ID PTR ID modifierlist RDEL", + /* 62 */ "attributes ::= attributes attribute", + /* 63 */ "attributes ::= attribute", + /* 64 */ "attributes ::=", + /* 65 */ "attribute ::= SPACE ID EQUAL ID", + /* 66 */ "attribute ::= SPACE ID EQUAL expr", + /* 67 */ "attribute ::= SPACE ID EQUAL value", + /* 68 */ "attribute ::= SPACE ID", + /* 69 */ "attribute ::= SPACE expr", + /* 70 */ "attribute ::= SPACE value", + /* 71 */ "attribute ::= SPACE INTEGER EQUAL expr", + /* 72 */ "statements ::= statement", + /* 73 */ "statements ::= statements COMMA statement", + /* 74 */ "statement ::= DOLLAR varvar EQUAL expr", + /* 75 */ "statement ::= varindexed EQUAL expr", + /* 76 */ "statement ::= OPENP statement CLOSEP", + /* 77 */ "expr ::= value", + /* 78 */ "expr ::= ternary", + /* 79 */ "expr ::= DOLLAR ID COLON ID", + /* 80 */ "expr ::= expr MATH value", + /* 81 */ "expr ::= expr UNIMATH value", + /* 82 */ "expr ::= expr ANDSYM value", + /* 83 */ "expr ::= array", + /* 84 */ "expr ::= expr modifierlist", + /* 85 */ "expr ::= expr ifcond expr", + /* 86 */ "expr ::= expr ISIN array", + /* 87 */ "expr ::= expr ISIN value", + /* 88 */ "expr ::= expr lop expr", + /* 89 */ "expr ::= expr ISDIVBY expr", + /* 90 */ "expr ::= expr ISNOTDIVBY expr", + /* 91 */ "expr ::= expr ISEVEN", + /* 92 */ "expr ::= expr ISNOTEVEN", + /* 93 */ "expr ::= expr ISEVENBY expr", + /* 94 */ "expr ::= expr ISNOTEVENBY expr", + /* 95 */ "expr ::= expr ISODD", + /* 96 */ "expr ::= expr ISNOTODD", + /* 97 */ "expr ::= expr ISODDBY expr", + /* 98 */ "expr ::= expr ISNOTODDBY expr", + /* 99 */ "expr ::= value INSTANCEOF ID", + /* 100 */ "expr ::= value INSTANCEOF value", + /* 101 */ "ternary ::= OPENP expr CLOSEP QMARK DOLLAR ID COLON expr", + /* 102 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 103 */ "value ::= variable", + /* 104 */ "value ::= UNIMATH value", + /* 105 */ "value ::= NOT value", + /* 106 */ "value ::= TYPECAST value", + /* 107 */ "value ::= variable INCDEC", + /* 108 */ "value ::= HEX", + /* 109 */ "value ::= INTEGER", + /* 110 */ "value ::= INTEGER DOT INTEGER", + /* 111 */ "value ::= INTEGER DOT", + /* 112 */ "value ::= DOT INTEGER", + /* 113 */ "value ::= ID", + /* 114 */ "value ::= function", + /* 115 */ "value ::= OPENP expr CLOSEP", + /* 116 */ "value ::= SINGLEQUOTESTRING", + /* 117 */ "value ::= doublequoted_with_quotes", + /* 118 */ "value ::= ID DOUBLECOLON static_class_access", + /* 119 */ "value ::= varindexed DOUBLECOLON static_class_access", + /* 120 */ "value ::= smartytag", + /* 121 */ "value ::= value modifierlist", + /* 122 */ "variable ::= varindexed", + /* 123 */ "variable ::= DOLLAR varvar AT ID", + /* 124 */ "variable ::= object", + /* 125 */ "variable ::= HATCH ID HATCH", + /* 126 */ "variable ::= HATCH variable HATCH", + /* 127 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 128 */ "arrayindex ::= arrayindex indexdef", + /* 129 */ "arrayindex ::=", + /* 130 */ "indexdef ::= DOT DOLLAR varvar", + /* 131 */ "indexdef ::= DOT DOLLAR varvar AT ID", + /* 132 */ "indexdef ::= DOT ID", + /* 133 */ "indexdef ::= DOT INTEGER", + /* 134 */ "indexdef ::= DOT LDEL expr RDEL", + /* 135 */ "indexdef ::= OPENB ID CLOSEB", + /* 136 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 137 */ "indexdef ::= OPENB expr CLOSEB", + /* 138 */ "indexdef ::= OPENB CLOSEB", + /* 139 */ "varvar ::= varvarele", + /* 140 */ "varvar ::= varvar varvarele", + /* 141 */ "varvarele ::= ID", + /* 142 */ "varvarele ::= LDEL expr RDEL", + /* 143 */ "object ::= varindexed objectchain", + /* 144 */ "objectchain ::= objectelement", + /* 145 */ "objectchain ::= objectchain objectelement", + /* 146 */ "objectelement ::= PTR ID arrayindex", + /* 147 */ "objectelement ::= PTR DOLLAR varvar arrayindex", + /* 148 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 149 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 150 */ "objectelement ::= PTR method", + /* 151 */ "function ::= ID OPENP params CLOSEP", + /* 152 */ "method ::= ID OPENP params CLOSEP", + /* 153 */ "method ::= DOLLAR ID OPENP params CLOSEP", + /* 154 */ "params ::= params COMMA expr", + /* 155 */ "params ::= expr", + /* 156 */ "params ::=", + /* 157 */ "modifierlist ::= modifierlist modifier modparameters", + /* 158 */ "modifierlist ::= modifier modparameters", + /* 159 */ "modifier ::= VERT AT ID", + /* 160 */ "modifier ::= VERT ID", + /* 161 */ "modparameters ::= modparameters modparameter", + /* 162 */ "modparameters ::=", + /* 163 */ "modparameter ::= COLON value", + /* 164 */ "modparameter ::= COLON array", + /* 165 */ "static_class_access ::= method", + /* 166 */ "static_class_access ::= method objectchain", + /* 167 */ "static_class_access ::= ID", + /* 168 */ "static_class_access ::= DOLLAR ID arrayindex", + /* 169 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", + /* 170 */ "ifcond ::= EQUALS", + /* 171 */ "ifcond ::= NOTEQUALS", + /* 172 */ "ifcond ::= GREATERTHAN", + /* 173 */ "ifcond ::= LESSTHAN", + /* 174 */ "ifcond ::= GREATEREQUAL", + /* 175 */ "ifcond ::= LESSEQUAL", + /* 176 */ "ifcond ::= IDENTITY", + /* 177 */ "ifcond ::= NONEIDENTITY", + /* 178 */ "ifcond ::= MOD", + /* 179 */ "lop ::= LAND", + /* 180 */ "lop ::= LOR", + /* 181 */ "lop ::= LXOR", + /* 182 */ "array ::= OPENB arrayelements CLOSEB", + /* 183 */ "arrayelements ::= arrayelement", + /* 184 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 185 */ "arrayelements ::=", + /* 186 */ "arrayelement ::= value APTR expr", + /* 187 */ "arrayelement ::= ID APTR expr", + /* 188 */ "arrayelement ::= expr", + /* 189 */ "doublequoted_with_quotes ::= QUOTE QUOTE", + /* 190 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", + /* 191 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 192 */ "doublequoted ::= doublequotedcontent", + /* 193 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 194 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", + /* 195 */ "doublequotedcontent ::= DOLLARID", + /* 196 */ "doublequotedcontent ::= LDEL variable RDEL", + /* 197 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 198 */ "doublequotedcontent ::= smartytag", + /* 199 */ "doublequotedcontent ::= TEXT", + /* 200 */ "optspace ::= SPACE", + /* 201 */ "optspace ::=", ); function tokenName($tokenType) @@ -1712,11 +1750,11 @@ static public $yy_action = array( while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); } -#line 83 "smarty_internal_templateparser.y" +#line 84 "smarty_internal_templateparser.y" $this->internalError = true; $this->compiler->trigger_template_error("Stack overflow in template parser"); -#line 1715 "smarty_internal_templateparser.php" +#line 1753 "smarty_internal_templateparser.php" return; } $yytos = new TP_yyStackEntry; @@ -1737,207 +1775,208 @@ static public $yy_action = array( } static public $yyRuleInfo = array( - array( 'lhs' => 80, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 2 ), - array( 'lhs' => 81, 'rhs' => 0 ), array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 2 ), - array( 'lhs' => 84, 'rhs' => 3 ), - array( 'lhs' => 85, 'rhs' => 2 ), - array( 'lhs' => 85, 'rhs' => 0 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 83, 'rhs' => 5 ), - array( 'lhs' => 83, 'rhs' => 4 ), - array( 'lhs' => 83, 'rhs' => 5 ), - array( 'lhs' => 83, 'rhs' => 4 ), - array( 'lhs' => 83, 'rhs' => 6 ), - array( 'lhs' => 83, 'rhs' => 6 ), - array( 'lhs' => 83, 'rhs' => 7 ), - array( 'lhs' => 83, 'rhs' => 6 ), - array( 'lhs' => 83, 'rhs' => 4 ), - array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 83, 'rhs' => 6 ), - array( 'lhs' => 83, 'rhs' => 5 ), - array( 'lhs' => 83, 'rhs' => 7 ), - array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 83, 'rhs' => 4 ), - array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 83, 'rhs' => 4 ), - array( 'lhs' => 83, 'rhs' => 12 ), - array( 'lhs' => 96, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 6 ), - array( 'lhs' => 83, 'rhs' => 8 ), - array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 83, 'rhs' => 8 ), - array( 'lhs' => 83, 'rhs' => 11 ), - array( 'lhs' => 83, 'rhs' => 8 ), - array( 'lhs' => 83, 'rhs' => 11 ), - array( 'lhs' => 83, 'rhs' => 4 ), - array( 'lhs' => 83, 'rhs' => 5 ), + array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 82, 'rhs' => 0 ), array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 83, 'rhs' => 4 ), - array( 'lhs' => 83, 'rhs' => 5 ), - array( 'lhs' => 83, 'rhs' => 6 ), - array( 'lhs' => 89, 'rhs' => 2 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 0 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 93, 'rhs' => 1 ), + 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' => 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' => 83, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 86, 'rhs' => 2 ), + array( 'lhs' => 86, 'rhs' => 0 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 84, 'rhs' => 5 ), + array( 'lhs' => 84, 'rhs' => 4 ), + array( 'lhs' => 84, 'rhs' => 5 ), + array( 'lhs' => 84, 'rhs' => 4 ), + array( 'lhs' => 84, 'rhs' => 6 ), + array( 'lhs' => 84, 'rhs' => 6 ), + array( 'lhs' => 84, 'rhs' => 7 ), + array( 'lhs' => 84, 'rhs' => 6 ), + array( 'lhs' => 84, 'rhs' => 4 ), + array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 84, 'rhs' => 6 ), + array( 'lhs' => 84, 'rhs' => 5 ), + array( 'lhs' => 84, 'rhs' => 7 ), + array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 84, 'rhs' => 4 ), + array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 84, 'rhs' => 4 ), + array( 'lhs' => 84, 'rhs' => 12 ), + array( 'lhs' => 97, 'rhs' => 2 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 6 ), + array( 'lhs' => 84, 'rhs' => 8 ), + array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 84, 'rhs' => 8 ), + array( 'lhs' => 84, 'rhs' => 11 ), + array( 'lhs' => 84, 'rhs' => 8 ), + array( 'lhs' => 84, 'rhs' => 11 ), + array( 'lhs' => 84, 'rhs' => 4 ), + array( 'lhs' => 84, 'rhs' => 5 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 3 ), + array( 'lhs' => 84, 'rhs' => 4 ), + array( 'lhs' => 84, 'rhs' => 5 ), + array( 'lhs' => 84, 'rhs' => 6 ), + array( 'lhs' => 90, 'rhs' => 2 ), + array( 'lhs' => 90, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 0 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 2 ), + array( 'lhs' => 99, 'rhs' => 2 ), + 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' => 93, 'rhs' => 3 ), - array( 'lhs' => 92, 'rhs' => 4 ), - array( 'lhs' => 92, 'rhs' => 3 ), - array( 'lhs' => 92, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 4 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 99, 'rhs' => 8 ), - array( 'lhs' => 99, 'rhs' => 7 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 3 ), - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 103, 'rhs' => 4 ), - array( 'lhs' => 103, 'rhs' => 1 ), - array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 93, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 4 ), array( 'lhs' => 91, 'rhs' => 3 ), - array( 'lhs' => 108, 'rhs' => 2 ), - array( 'lhs' => 108, 'rhs' => 0 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 5 ), - array( 'lhs' => 109, 'rhs' => 2 ), - array( 'lhs' => 109, 'rhs' => 2 ), - array( 'lhs' => 109, 'rhs' => 4 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 5 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 110, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 111, 'rhs' => 2 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 4 ), - array( 'lhs' => 112, 'rhs' => 5 ), - array( 'lhs' => 112, 'rhs' => 6 ), - array( 'lhs' => 112, 'rhs' => 2 ), - array( 'lhs' => 104, 'rhs' => 4 ), - array( 'lhs' => 113, 'rhs' => 4 ), - array( 'lhs' => 113, 'rhs' => 5 ), - array( 'lhs' => 114, 'rhs' => 3 ), - array( 'lhs' => 114, 'rhs' => 1 ), - array( 'lhs' => 114, 'rhs' => 0 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 8 ), + array( 'lhs' => 100, 'rhs' => 7 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 1 ), array( 'lhs' => 88, 'rhs' => 3 ), array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 104, 'rhs' => 4 ), + array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 92, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 2 ), + array( 'lhs' => 109, 'rhs' => 0 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 5 ), + array( 'lhs' => 110, 'rhs' => 2 ), + array( 'lhs' => 110, 'rhs' => 2 ), + array( 'lhs' => 110, 'rhs' => 4 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 5 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 2 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 2 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 108, 'rhs' => 2 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 2 ), + array( 'lhs' => 113, 'rhs' => 3 ), + array( 'lhs' => 113, 'rhs' => 4 ), + array( 'lhs' => 113, 'rhs' => 5 ), + array( 'lhs' => 113, 'rhs' => 6 ), + array( 'lhs' => 113, 'rhs' => 2 ), + array( 'lhs' => 105, 'rhs' => 4 ), + array( 'lhs' => 114, 'rhs' => 4 ), + array( 'lhs' => 114, 'rhs' => 5 ), array( 'lhs' => 115, 'rhs' => 3 ), - array( 'lhs' => 115, 'rhs' => 2 ), - array( 'lhs' => 97, 'rhs' => 2 ), - array( 'lhs' => 97, 'rhs' => 0 ), + array( 'lhs' => 115, 'rhs' => 1 ), + array( 'lhs' => 115, 'rhs' => 0 ), + array( 'lhs' => 89, 'rhs' => 3 ), + array( 'lhs' => 89, 'rhs' => 2 ), + array( 'lhs' => 116, 'rhs' => 3 ), array( 'lhs' => 116, 'rhs' => 2 ), - array( 'lhs' => 116, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 4 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 2 ), + array( 'lhs' => 98, 'rhs' => 0 ), + array( 'lhs' => 117, 'rhs' => 2 ), + array( 'lhs' => 117, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 4 ), array( 'lhs' => 102, 'rhs' => 1 ), array( 'lhs' => 102, 'rhs' => 1 ), array( 'lhs' => 102, 'rhs' => 1 ), - array( 'lhs' => 100, 'rhs' => 3 ), - array( 'lhs' => 117, 'rhs' => 1 ), - array( 'lhs' => 117, 'rhs' => 3 ), - array( 'lhs' => 117, 'rhs' => 0 ), - array( 'lhs' => 118, 'rhs' => 3 ), - array( 'lhs' => 118, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 1 ), + array( 'lhs' => 102, 'rhs' => 1 ), + array( 'lhs' => 102, 'rhs' => 1 ), + array( 'lhs' => 102, 'rhs' => 1 ), + array( 'lhs' => 102, 'rhs' => 1 ), + array( 'lhs' => 102, 'rhs' => 1 ), + array( 'lhs' => 103, 'rhs' => 1 ), + array( 'lhs' => 103, 'rhs' => 1 ), + array( 'lhs' => 103, 'rhs' => 1 ), + array( 'lhs' => 101, 'rhs' => 3 ), array( 'lhs' => 118, 'rhs' => 1 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 119, 'rhs' => 2 ), + array( 'lhs' => 118, 'rhs' => 3 ), + array( 'lhs' => 118, 'rhs' => 0 ), + array( 'lhs' => 119, 'rhs' => 3 ), + array( 'lhs' => 119, 'rhs' => 3 ), array( 'lhs' => 119, 'rhs' => 1 ), - array( 'lhs' => 120, 'rhs' => 3 ), - array( 'lhs' => 120, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 120, 'rhs' => 2 ), array( 'lhs' => 120, 'rhs' => 1 ), - array( 'lhs' => 120, 'rhs' => 3 ), - array( 'lhs' => 120, 'rhs' => 3 ), - array( 'lhs' => 120, 'rhs' => 1 ), - array( 'lhs' => 120, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 0 ), + array( 'lhs' => 121, 'rhs' => 3 ), + array( 'lhs' => 121, 'rhs' => 3 ), + array( 'lhs' => 121, 'rhs' => 1 ), + array( 'lhs' => 121, 'rhs' => 3 ), + array( 'lhs' => 121, 'rhs' => 3 ), + array( 'lhs' => 121, 'rhs' => 1 ), + array( 'lhs' => 121, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 0 ), ); static public $yyReduceMap = array( @@ -1956,50 +1995,50 @@ static public $yy_action = array( 13 => 13, 14 => 14, 15 => 15, - 18 => 15, - 200 => 15, 16 => 16, - 75 => 16, + 19 => 16, + 201 => 16, 17 => 17, - 103 => 17, - 105 => 17, - 106 => 17, - 127 => 17, - 165 => 17, - 19 => 19, - 20 => 19, - 46 => 19, - 68 => 19, - 69 => 19, - 76 => 19, - 77 => 19, - 82 => 19, - 102 => 19, - 107 => 19, - 108 => 19, - 113 => 19, - 115 => 19, - 116 => 19, - 123 => 19, - 138 => 19, - 164 => 19, - 166 => 19, - 182 => 19, - 187 => 19, - 199 => 19, - 21 => 21, - 22 => 21, - 23 => 23, + 76 => 17, + 18 => 18, + 104 => 18, + 106 => 18, + 107 => 18, + 128 => 18, + 166 => 18, + 20 => 20, + 21 => 20, + 47 => 20, + 69 => 20, + 70 => 20, + 77 => 20, + 78 => 20, + 83 => 20, + 103 => 20, + 108 => 20, + 109 => 20, + 114 => 20, + 116 => 20, + 117 => 20, + 124 => 20, + 139 => 20, + 165 => 20, + 167 => 20, + 183 => 20, + 188 => 20, + 200 => 20, + 22 => 22, + 23 => 22, 24 => 24, 25 => 25, 26 => 26, 27 => 27, 28 => 28, - 30 => 28, 29 => 29, - 31 => 31, - 32 => 31, - 33 => 33, + 31 => 29, + 30 => 30, + 32 => 32, + 33 => 32, 34 => 34, 35 => 35, 36 => 36, @@ -2008,11 +2047,11 @@ static public $yy_action = array( 39 => 39, 40 => 40, 41 => 41, - 43 => 41, 42 => 42, - 44 => 44, + 44 => 42, + 43 => 43, 45 => 45, - 47 => 47, + 46 => 46, 48 => 48, 49 => 49, 50 => 50, @@ -2028,72 +2067,72 @@ static public $yy_action = array( 60 => 60, 61 => 61, 62 => 62, - 71 => 62, - 154 => 62, - 158 => 62, - 162 => 62, - 163 => 62, 63 => 63, + 72 => 63, 155 => 63, - 161 => 63, + 159 => 63, + 163 => 63, + 164 => 63, 64 => 64, + 156 => 64, + 162 => 64, 65 => 65, - 66 => 65, - 70 => 65, - 67 => 67, - 72 => 72, + 66 => 66, + 67 => 66, + 71 => 66, + 68 => 68, 73 => 73, - 74 => 73, - 78 => 78, + 74 => 74, + 75 => 74, 79 => 79, - 80 => 79, - 81 => 79, - 83 => 83, - 120 => 83, + 80 => 80, + 81 => 80, + 82 => 80, 84 => 84, - 87 => 84, - 98 => 84, + 121 => 84, 85 => 85, + 88 => 85, + 99 => 85, 86 => 86, - 88 => 88, + 87 => 87, 89 => 89, 90 => 90, - 95 => 90, 91 => 91, - 94 => 91, + 96 => 91, 92 => 92, - 97 => 92, + 95 => 92, 93 => 93, - 96 => 93, - 99 => 99, + 98 => 93, + 94 => 94, + 97 => 94, 100 => 100, 101 => 101, - 104 => 104, - 109 => 109, + 102 => 102, + 105 => 105, 110 => 110, 111 => 111, 112 => 112, - 114 => 114, - 117 => 117, + 113 => 113, + 115 => 115, 118 => 118, 119 => 119, - 121 => 121, + 120 => 120, 122 => 122, - 124 => 124, + 123 => 123, 125 => 125, 126 => 126, - 128 => 128, - 184 => 128, + 127 => 127, 129 => 129, + 185 => 129, 130 => 130, 131 => 131, 132 => 132, 133 => 133, - 136 => 133, 134 => 134, + 137 => 134, 135 => 135, - 137 => 137, - 139 => 139, + 136 => 136, + 138 => 138, 140 => 140, 141 => 141, 142 => 142, @@ -2108,11 +2147,11 @@ static public $yy_action = array( 151 => 151, 152 => 152, 153 => 153, - 156 => 156, + 154 => 154, 157 => 157, - 159 => 159, + 158 => 158, 160 => 160, - 167 => 167, + 161 => 161, 168 => 168, 169 => 169, 170 => 170, @@ -2127,32 +2166,33 @@ static public $yy_action = array( 179 => 179, 180 => 180, 181 => 181, - 183 => 183, - 185 => 185, + 182 => 182, + 184 => 184, 186 => 186, - 188 => 188, + 187 => 187, 189 => 189, 190 => 190, 191 => 191, 192 => 192, - 193 => 192, - 195 => 192, - 194 => 194, - 196 => 196, + 193 => 193, + 194 => 193, + 196 => 193, + 195 => 195, 197 => 197, 198 => 198, + 199 => 199, ); -#line 94 "smarty_internal_templateparser.y" +#line 95 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->root_buffer->to_smarty_php(); } -#line 2145 "smarty_internal_templateparser.php" -#line 102 "smarty_internal_templateparser.y" +#line 2185 "smarty_internal_templateparser.php" +#line 103 "smarty_internal_templateparser.y" function yy_r1(){ $this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor); } -#line 2150 "smarty_internal_templateparser.php" -#line 118 "smarty_internal_templateparser.y" +#line 2190 "smarty_internal_templateparser.php" +#line 119 "smarty_internal_templateparser.y" function yy_r4(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); @@ -2163,18 +2203,18 @@ static public $yy_action = array( $this->compiler->has_variable_string = false; $this->block_nesting_level = count($this->compiler->_tag_stack); } -#line 2162 "smarty_internal_templateparser.php" -#line 130 "smarty_internal_templateparser.y" +#line 2202 "smarty_internal_templateparser.php" +#line 131 "smarty_internal_templateparser.y" function yy_r5(){ $this->_retvalue = new _smarty_tag($this, ''); } -#line 2167 "smarty_internal_templateparser.php" -#line 135 "smarty_internal_templateparser.y" +#line 2207 "smarty_internal_templateparser.php" +#line 136 "smarty_internal_templateparser.y" function yy_r6(){ $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2172 "smarty_internal_templateparser.php" -#line 140 "smarty_internal_templateparser.y" +#line 2212 "smarty_internal_templateparser.php" +#line 141 "smarty_internal_templateparser.y" function yy_r7(){ if ($this->php_handling == Smarty::PHP_PASSTHRU) { $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); @@ -2189,8 +2229,8 @@ static public $yy_action = array( $this->_retvalue = new _smarty_text($this, ''); } } -#line 2188 "smarty_internal_templateparser.php" -#line 156 "smarty_internal_templateparser.y" +#line 2228 "smarty_internal_templateparser.php" +#line 157 "smarty_internal_templateparser.y" function yy_r8(){ if ($this->is_xml) { $this->compiler->tag_nocache = true; @@ -2208,8 +2248,8 @@ static public $yy_action = array( $this->_retvalue = new _smarty_text($this, ''); } } -#line 2207 "smarty_internal_templateparser.php" -#line 175 "smarty_internal_templateparser.y" +#line 2247 "smarty_internal_templateparser.php" +#line 176 "smarty_internal_templateparser.y" function yy_r9(){ if ($this->php_handling == Smarty::PHP_PASSTHRU) { $this->_retvalue = new _smarty_text($this, '<%'); @@ -2232,8 +2272,8 @@ static public $yy_action = array( } } } -#line 2231 "smarty_internal_templateparser.php" -#line 199 "smarty_internal_templateparser.y" +#line 2271 "smarty_internal_templateparser.php" +#line 200 "smarty_internal_templateparser.y" function yy_r10(){ if ($this->php_handling == Smarty::PHP_PASSTHRU) { $this->_retvalue = new _smarty_text($this, '%>'); @@ -2253,17 +2293,17 @@ static public $yy_action = array( } } } -#line 2252 "smarty_internal_templateparser.php" -#line 219 "smarty_internal_templateparser.y" +#line 2292 "smarty_internal_templateparser.php" +#line 220 "smarty_internal_templateparser.y" function yy_r11(){ - if ($this->lex->strip) { - $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))); + if ($this->strip) { + $this->_retvalue = new _smarty_text($this, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor))); } else { - $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); + $this->_retvalue = new _smarty_text($this, self::escape_start_tag(ö)); } } -#line 2261 "smarty_internal_templateparser.php" -#line 228 "smarty_internal_templateparser.y" +#line 2301 "smarty_internal_templateparser.php" +#line 229 "smarty_internal_templateparser.y" function yy_r12(){ $this->compiler->tag_nocache = true; $this->is_xml = true; @@ -2271,239 +2311,246 @@ static public $yy_action = array( $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("", $this->compiler, true)); $this->template->has_nocache_code = $save; } -#line 2270 "smarty_internal_templateparser.php" -#line 237 "smarty_internal_templateparser.y" +#line 2310 "smarty_internal_templateparser.php" +#line 238 "smarty_internal_templateparser.y" function yy_r13(){ - if ($this->lex->strip) { + if ($this->strip) { $this->_retvalue = new _smarty_text($this, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor)); } else { $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); } } -#line 2279 "smarty_internal_templateparser.php" -#line 245 "smarty_internal_templateparser.y" +#line 2319 "smarty_internal_templateparser.php" +#line 247 "smarty_internal_templateparser.y" function yy_r14(){ - $this->_retvalue = new _smarty_linebreak($this, $this->yystack[$this->yyidx + 0]->minor); + $this->strip = true; + $this->_retvalue = new _smarty_text($this, ''); } -#line 2284 "smarty_internal_templateparser.php" -#line 250 "smarty_internal_templateparser.y" +#line 2325 "smarty_internal_templateparser.php" +#line 252 "smarty_internal_templateparser.y" function yy_r15(){ + $this->strip = false; + $this->_retvalue = new _smarty_text($this, ''); + } +#line 2331 "smarty_internal_templateparser.php" +#line 258 "smarty_internal_templateparser.y" + function yy_r16(){ $this->_retvalue = ''; } -#line 2289 "smarty_internal_templateparser.php" -#line 254 "smarty_internal_templateparser.y" - function yy_r16(){ +#line 2336 "smarty_internal_templateparser.php" +#line 262 "smarty_internal_templateparser.y" + function yy_r17(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2294 "smarty_internal_templateparser.php" -#line 258 "smarty_internal_templateparser.y" - function yy_r17(){ +#line 2341 "smarty_internal_templateparser.php" +#line 266 "smarty_internal_templateparser.y" + function yy_r18(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2299 "smarty_internal_templateparser.php" -#line 266 "smarty_internal_templateparser.y" - function yy_r19(){ +#line 2346 "smarty_internal_templateparser.php" +#line 274 "smarty_internal_templateparser.y" + function yy_r20(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2304 "smarty_internal_templateparser.php" -#line 274 "smarty_internal_templateparser.y" - function yy_r21(){ +#line 2351 "smarty_internal_templateparser.php" +#line 282 "smarty_internal_templateparser.y" + function yy_r22(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2309 "smarty_internal_templateparser.php" -#line 282 "smarty_internal_templateparser.y" - function yy_r23(){ +#line 2356 "smarty_internal_templateparser.php" +#line 290 "smarty_internal_templateparser.y" + function yy_r24(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2314 "smarty_internal_templateparser.php" -#line 286 "smarty_internal_templateparser.y" - function yy_r24(){ +#line 2361 "smarty_internal_templateparser.php" +#line 294 "smarty_internal_templateparser.y" + function yy_r25(){ $this->_retvalue = '<%'; } -#line 2319 "smarty_internal_templateparser.php" -#line 290 "smarty_internal_templateparser.y" - function yy_r25(){ +#line 2366 "smarty_internal_templateparser.php" +#line 298 "smarty_internal_templateparser.y" + function yy_r26(){ $this->_retvalue = '%>'; } -#line 2324 "smarty_internal_templateparser.php" -#line 300 "smarty_internal_templateparser.y" - function yy_r26(){ +#line 2371 "smarty_internal_templateparser.php" +#line 307 "smarty_internal_templateparser.y" + function yy_r27(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array(),array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2329 "smarty_internal_templateparser.php" -#line 304 "smarty_internal_templateparser.y" - function yy_r27(){ +#line 2376 "smarty_internal_templateparser.php" +#line 311 "smarty_internal_templateparser.y" + function yy_r28(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -3]->minor, 'modifierlist'=>$this->yystack[$this->yyidx + -2]->minor)); } -#line 2334 "smarty_internal_templateparser.php" -#line 308 "smarty_internal_templateparser.y" - function yy_r28(){ +#line 2381 "smarty_internal_templateparser.php" +#line 315 "smarty_internal_templateparser.y" + function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -2]->minor)); } -#line 2339 "smarty_internal_templateparser.php" -#line 312 "smarty_internal_templateparser.y" - function yy_r29(){ +#line 2386 "smarty_internal_templateparser.php" +#line 319 "smarty_internal_templateparser.y" + function yy_r30(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -3]->minor,'modifierlist'=>$this->yystack[$this->yyidx + -2]->minor)); } -#line 2344 "smarty_internal_templateparser.php" -#line 325 "smarty_internal_templateparser.y" - function yy_r31(){ +#line 2391 "smarty_internal_templateparser.php" +#line 332 "smarty_internal_templateparser.y" + function yy_r32(){ $this->_retvalue = $this->compiler->compileTag('assign',array(array('value'=>$this->yystack[$this->yyidx + -1]->minor),array('var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'"))); } -#line 2349 "smarty_internal_templateparser.php" -#line 333 "smarty_internal_templateparser.y" - function yy_r33(){ +#line 2396 "smarty_internal_templateparser.php" +#line 340 "smarty_internal_templateparser.y" + function yy_r34(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array(array('value'=>$this->yystack[$this->yyidx + -2]->minor),array('var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'")),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2354 "smarty_internal_templateparser.php" -#line 337 "smarty_internal_templateparser.y" - function yy_r34(){ +#line 2401 "smarty_internal_templateparser.php" +#line 344 "smarty_internal_templateparser.y" + function yy_r35(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array(array('value'=>$this->yystack[$this->yyidx + -2]->minor),array('var'=>$this->yystack[$this->yyidx + -4]->minor['var'])),$this->yystack[$this->yyidx + -1]->minor),array('smarty_internal_index'=>$this->yystack[$this->yyidx + -4]->minor['smarty_internal_index'])); } -#line 2359 "smarty_internal_templateparser.php" -#line 342 "smarty_internal_templateparser.y" - function yy_r35(){ +#line 2406 "smarty_internal_templateparser.php" +#line 349 "smarty_internal_templateparser.y" + function yy_r36(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2364 "smarty_internal_templateparser.php" -#line 346 "smarty_internal_templateparser.y" - function yy_r36(){ +#line 2411 "smarty_internal_templateparser.php" +#line 353 "smarty_internal_templateparser.y" + function yy_r37(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2369 "smarty_internal_templateparser.php" -#line 351 "smarty_internal_templateparser.y" - function yy_r37(){ +#line 2416 "smarty_internal_templateparser.php" +#line 358 "smarty_internal_templateparser.y" + function yy_r38(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor,array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor)); } -#line 2374 "smarty_internal_templateparser.php" -#line 356 "smarty_internal_templateparser.y" - function yy_r38(){ +#line 2421 "smarty_internal_templateparser.php" +#line 363 "smarty_internal_templateparser.y" + function yy_r39(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>'; } -#line 2380 "smarty_internal_templateparser.php" -#line 362 "smarty_internal_templateparser.y" - function yy_r39(){ +#line 2427 "smarty_internal_templateparser.php" +#line 369 "smarty_internal_templateparser.y" + function yy_r40(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,$this->yystack[$this->yyidx + -1]->minor,array('object_methode'=>$this->yystack[$this->yyidx + -3]->minor)).'_retvalue .= $this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>'; } -#line 2386 "smarty_internal_templateparser.php" -#line 368 "smarty_internal_templateparser.y" - function yy_r40(){ +#line 2433 "smarty_internal_templateparser.php" +#line 375 "smarty_internal_templateparser.y" + function yy_r41(){ $tag = trim(substr($this->yystack[$this->yyidx + -2]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array(),array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2392 "smarty_internal_templateparser.php" -#line 373 "smarty_internal_templateparser.y" - function yy_r41(){ +#line 2439 "smarty_internal_templateparser.php" +#line 380 "smarty_internal_templateparser.y" + function yy_r42(){ $tag = trim(substr($this->yystack[$this->yyidx + -3]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,$this->yystack[$this->yyidx + -1]->minor,array('if condition'=>$this->yystack[$this->yyidx + -2]->minor)); } -#line 2398 "smarty_internal_templateparser.php" -#line 378 "smarty_internal_templateparser.y" - function yy_r42(){ +#line 2445 "smarty_internal_templateparser.php" +#line 385 "smarty_internal_templateparser.y" + function yy_r43(){ $tag = trim(substr($this->yystack[$this->yyidx + -2]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array(),array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2404 "smarty_internal_templateparser.php" -#line 389 "smarty_internal_templateparser.y" - function yy_r44(){ +#line 2451 "smarty_internal_templateparser.php" +#line 396 "smarty_internal_templateparser.y" + function yy_r45(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -10]->minor),array('ifexp'=>$this->yystack[$this->yyidx + -7]->minor),array('var'=>$this->yystack[$this->yyidx + -3]->minor),array('step'=>$this->yystack[$this->yyidx + -2]->minor))),1); } -#line 2409 "smarty_internal_templateparser.php" -#line 393 "smarty_internal_templateparser.y" - function yy_r45(){ +#line 2456 "smarty_internal_templateparser.php" +#line 400 "smarty_internal_templateparser.y" + function yy_r46(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2414 "smarty_internal_templateparser.php" -#line 401 "smarty_internal_templateparser.y" - function yy_r47(){ +#line 2461 "smarty_internal_templateparser.php" +#line 408 "smarty_internal_templateparser.y" + function yy_r48(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -4]->minor),array('to'=>$this->yystack[$this->yyidx + -2]->minor))),0); } -#line 2419 "smarty_internal_templateparser.php" -#line 405 "smarty_internal_templateparser.y" - function yy_r48(){ +#line 2466 "smarty_internal_templateparser.php" +#line 412 "smarty_internal_templateparser.y" + function yy_r49(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -6]->minor),array('to'=>$this->yystack[$this->yyidx + -4]->minor),array('step'=>$this->yystack[$this->yyidx + -2]->minor))),0); } -#line 2424 "smarty_internal_templateparser.php" -#line 410 "smarty_internal_templateparser.y" - function yy_r49(){ +#line 2471 "smarty_internal_templateparser.php" +#line 417 "smarty_internal_templateparser.y" + function yy_r50(){ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor); } -#line 2429 "smarty_internal_templateparser.php" -#line 415 "smarty_internal_templateparser.y" - function yy_r50(){ - $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -5]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor)))); - } -#line 2434 "smarty_internal_templateparser.php" -#line 419 "smarty_internal_templateparser.y" +#line 2476 "smarty_internal_templateparser.php" +#line 422 "smarty_internal_templateparser.y" function yy_r51(){ - $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -8]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor),array('key'=>$this->yystack[$this->yyidx + -5]->minor)))); - } -#line 2439 "smarty_internal_templateparser.php" -#line 423 "smarty_internal_templateparser.y" - function yy_r52(){ $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -5]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor)))); } -#line 2444 "smarty_internal_templateparser.php" -#line 427 "smarty_internal_templateparser.y" - function yy_r53(){ +#line 2481 "smarty_internal_templateparser.php" +#line 426 "smarty_internal_templateparser.y" + function yy_r52(){ $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -8]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor),array('key'=>$this->yystack[$this->yyidx + -5]->minor)))); } -#line 2449 "smarty_internal_templateparser.php" -#line 432 "smarty_internal_templateparser.y" +#line 2486 "smarty_internal_templateparser.php" +#line 430 "smarty_internal_templateparser.y" + function yy_r53(){ + $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -5]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor)))); + } +#line 2491 "smarty_internal_templateparser.php" +#line 434 "smarty_internal_templateparser.y" function yy_r54(){ + $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -8]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor),array('key'=>$this->yystack[$this->yyidx + -5]->minor)))); + } +#line 2496 "smarty_internal_templateparser.php" +#line 439 "smarty_internal_templateparser.y" + function yy_r55(){ $this->_retvalue = $this->compiler->compileTag('setfilter',array(),array('modifier_list'=>array(array_merge(array($this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)))); } -#line 2454 "smarty_internal_templateparser.php" -#line 436 "smarty_internal_templateparser.y" - function yy_r55(){ +#line 2501 "smarty_internal_templateparser.php" +#line 443 "smarty_internal_templateparser.y" + function yy_r56(){ $this->_retvalue = $this->compiler->compileTag('setfilter',array(),array('modifier_list'=>array_merge(array(array_merge(array($this->yystack[$this->yyidx + -3]->minor),$this->yystack[$this->yyidx + -2]->minor)),$this->yystack[$this->yyidx + -1]->minor))); } -#line 2459 "smarty_internal_templateparser.php" -#line 441 "smarty_internal_templateparser.y" - function yy_r56(){ +#line 2506 "smarty_internal_templateparser.php" +#line 448 "smarty_internal_templateparser.y" + function yy_r57(){ $this->_retvalue = SMARTY_INTERNAL_COMPILE_BLOCK::compileChildBlock($this->compiler); } -#line 2464 "smarty_internal_templateparser.php" -#line 447 "smarty_internal_templateparser.y" - function yy_r57(){ +#line 2511 "smarty_internal_templateparser.php" +#line 454 "smarty_internal_templateparser.y" + function yy_r58(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } -#line 2469 "smarty_internal_templateparser.php" -#line 451 "smarty_internal_templateparser.y" - function yy_r58(){ +#line 2516 "smarty_internal_templateparser.php" +#line 458 "smarty_internal_templateparser.y" + function yy_r59(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',array(),array('modifier_list'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2474 "smarty_internal_templateparser.php" -#line 456 "smarty_internal_templateparser.y" - function yy_r59(){ +#line 2521 "smarty_internal_templateparser.php" +#line 463 "smarty_internal_templateparser.y" + function yy_r60(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array(),array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2479 "smarty_internal_templateparser.php" -#line 460 "smarty_internal_templateparser.y" - function yy_r60(){ +#line 2526 "smarty_internal_templateparser.php" +#line 467 "smarty_internal_templateparser.y" + function yy_r61(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',array(),array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor, 'modifier_list'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2484 "smarty_internal_templateparser.php" -#line 468 "smarty_internal_templateparser.y" - function yy_r61(){ +#line 2531 "smarty_internal_templateparser.php" +#line 475 "smarty_internal_templateparser.y" + function yy_r62(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; $this->_retvalue[] = $this->yystack[$this->yyidx + 0]->minor; } -#line 2490 "smarty_internal_templateparser.php" -#line 474 "smarty_internal_templateparser.y" - function yy_r62(){ +#line 2537 "smarty_internal_templateparser.php" +#line 481 "smarty_internal_templateparser.y" + function yy_r63(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2495 "smarty_internal_templateparser.php" -#line 479 "smarty_internal_templateparser.y" - function yy_r63(){ +#line 2542 "smarty_internal_templateparser.php" +#line 486 "smarty_internal_templateparser.y" + function yy_r64(){ $this->_retvalue = array(); } -#line 2500 "smarty_internal_templateparser.php" -#line 484 "smarty_internal_templateparser.y" - function yy_r64(){ +#line 2547 "smarty_internal_templateparser.php" +#line 491 "smarty_internal_templateparser.y" + function yy_r65(){ 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)) { @@ -2514,127 +2561,127 @@ static public $yy_action = array( $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } } -#line 2513 "smarty_internal_templateparser.php" -#line 496 "smarty_internal_templateparser.y" - function yy_r65(){ +#line 2560 "smarty_internal_templateparser.php" +#line 503 "smarty_internal_templateparser.y" + function yy_r66(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2518 "smarty_internal_templateparser.php" -#line 504 "smarty_internal_templateparser.y" - function yy_r67(){ +#line 2565 "smarty_internal_templateparser.php" +#line 511 "smarty_internal_templateparser.y" + function yy_r68(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; } -#line 2523 "smarty_internal_templateparser.php" -#line 529 "smarty_internal_templateparser.y" - function yy_r72(){ +#line 2570 "smarty_internal_templateparser.php" +#line 536 "smarty_internal_templateparser.y" + function yy_r73(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2529 "smarty_internal_templateparser.php" -#line 534 "smarty_internal_templateparser.y" - function yy_r73(){ +#line 2576 "smarty_internal_templateparser.php" +#line 541 "smarty_internal_templateparser.y" + function yy_r74(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2534 "smarty_internal_templateparser.php" -#line 562 "smarty_internal_templateparser.y" - function yy_r78(){ +#line 2581 "smarty_internal_templateparser.php" +#line 569 "smarty_internal_templateparser.y" + function yy_r79(){ $this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2539 "smarty_internal_templateparser.php" -#line 567 "smarty_internal_templateparser.y" - function yy_r79(){ +#line 2586 "smarty_internal_templateparser.php" +#line 574 "smarty_internal_templateparser.y" + function yy_r80(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } -#line 2544 "smarty_internal_templateparser.php" -#line 586 "smarty_internal_templateparser.y" - function yy_r83(){ +#line 2591 "smarty_internal_templateparser.php" +#line 593 "smarty_internal_templateparser.y" + function yy_r84(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array(),array('value'=>$this->yystack[$this->yyidx + -1]->minor,'modifierlist'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2549 "smarty_internal_templateparser.php" -#line 592 "smarty_internal_templateparser.y" - function yy_r84(){ +#line 2596 "smarty_internal_templateparser.php" +#line 599 "smarty_internal_templateparser.y" + function yy_r85(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2554 "smarty_internal_templateparser.php" -#line 596 "smarty_internal_templateparser.y" - function yy_r85(){ +#line 2601 "smarty_internal_templateparser.php" +#line 603 "smarty_internal_templateparser.y" + function yy_r86(){ $this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2559 "smarty_internal_templateparser.php" -#line 600 "smarty_internal_templateparser.y" - function yy_r86(){ +#line 2606 "smarty_internal_templateparser.php" +#line 607 "smarty_internal_templateparser.y" + function yy_r87(){ $this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2564 "smarty_internal_templateparser.php" -#line 608 "smarty_internal_templateparser.y" - function yy_r88(){ +#line 2611 "smarty_internal_templateparser.php" +#line 615 "smarty_internal_templateparser.y" + function yy_r89(){ $this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2569 "smarty_internal_templateparser.php" -#line 612 "smarty_internal_templateparser.y" - function yy_r89(){ +#line 2616 "smarty_internal_templateparser.php" +#line 619 "smarty_internal_templateparser.y" + function yy_r90(){ $this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2574 "smarty_internal_templateparser.php" -#line 616 "smarty_internal_templateparser.y" - function yy_r90(){ +#line 2621 "smarty_internal_templateparser.php" +#line 623 "smarty_internal_templateparser.y" + function yy_r91(){ $this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2579 "smarty_internal_templateparser.php" -#line 620 "smarty_internal_templateparser.y" - function yy_r91(){ +#line 2626 "smarty_internal_templateparser.php" +#line 627 "smarty_internal_templateparser.y" + function yy_r92(){ $this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2584 "smarty_internal_templateparser.php" -#line 624 "smarty_internal_templateparser.y" - function yy_r92(){ +#line 2631 "smarty_internal_templateparser.php" +#line 631 "smarty_internal_templateparser.y" + function yy_r93(){ $this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2589 "smarty_internal_templateparser.php" -#line 628 "smarty_internal_templateparser.y" - function yy_r93(){ +#line 2636 "smarty_internal_templateparser.php" +#line 635 "smarty_internal_templateparser.y" + function yy_r94(){ $this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2594 "smarty_internal_templateparser.php" -#line 652 "smarty_internal_templateparser.y" - function yy_r99(){ +#line 2641 "smarty_internal_templateparser.php" +#line 659 "smarty_internal_templateparser.y" + function yy_r100(){ $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 2601 "smarty_internal_templateparser.php" -#line 661 "smarty_internal_templateparser.y" - function yy_r100(){ +#line 2648 "smarty_internal_templateparser.php" +#line 668 "smarty_internal_templateparser.y" + function yy_r101(){ $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.' ? '. $this->compileVariable("'".$this->yystack[$this->yyidx + -2]->minor."'") . ' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2606 "smarty_internal_templateparser.php" -#line 665 "smarty_internal_templateparser.y" - function yy_r101(){ +#line 2653 "smarty_internal_templateparser.php" +#line 672 "smarty_internal_templateparser.y" + function yy_r102(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2611 "smarty_internal_templateparser.php" -#line 680 "smarty_internal_templateparser.y" - function yy_r104(){ +#line 2658 "smarty_internal_templateparser.php" +#line 687 "smarty_internal_templateparser.y" + function yy_r105(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2616 "smarty_internal_templateparser.php" -#line 701 "smarty_internal_templateparser.y" - function yy_r109(){ +#line 2663 "smarty_internal_templateparser.php" +#line 708 "smarty_internal_templateparser.y" + function yy_r110(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2621 "smarty_internal_templateparser.php" -#line 705 "smarty_internal_templateparser.y" - function yy_r110(){ +#line 2668 "smarty_internal_templateparser.php" +#line 712 "smarty_internal_templateparser.y" + function yy_r111(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'; } -#line 2626 "smarty_internal_templateparser.php" -#line 709 "smarty_internal_templateparser.y" - function yy_r111(){ +#line 2673 "smarty_internal_templateparser.php" +#line 716 "smarty_internal_templateparser.y" + function yy_r112(){ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2631 "smarty_internal_templateparser.php" -#line 714 "smarty_internal_templateparser.y" - function yy_r112(){ +#line 2678 "smarty_internal_templateparser.php" +#line 721 "smarty_internal_templateparser.y" + function yy_r113(){ 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)) { @@ -2645,14 +2692,14 @@ static public $yy_action = array( $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; } } -#line 2644 "smarty_internal_templateparser.php" -#line 732 "smarty_internal_templateparser.y" - function yy_r114(){ +#line 2691 "smarty_internal_templateparser.php" +#line 739 "smarty_internal_templateparser.y" + function yy_r115(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2649 "smarty_internal_templateparser.php" -#line 747 "smarty_internal_templateparser.y" - function yy_r117(){ +#line 2696 "smarty_internal_templateparser.php" +#line 754 "smarty_internal_templateparser.y" + function yy_r118(){ if (!$this->security || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor]) || $this->smarty->security_policy->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) { 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; @@ -2663,25 +2710,25 @@ 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 2662 "smarty_internal_templateparser.php" -#line 759 "smarty_internal_templateparser.y" - function yy_r118(){ +#line 2709 "smarty_internal_templateparser.php" +#line 766 "smarty_internal_templateparser.y" + function yy_r119(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor; } else { $this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + -2]->minor['var']).$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor; } } -#line 2671 "smarty_internal_templateparser.php" -#line 768 "smarty_internal_templateparser.y" - function yy_r119(){ +#line 2718 "smarty_internal_templateparser.php" +#line 775 "smarty_internal_templateparser.y" + function yy_r120(){ $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 2678 "smarty_internal_templateparser.php" -#line 783 "smarty_internal_templateparser.y" - function yy_r121(){ +#line 2725 "smarty_internal_templateparser.php" +#line 790 "smarty_internal_templateparser.y" + function yy_r122(){ if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $smarty_var = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']); $this->_retvalue = $smarty_var; @@ -2692,145 +2739,145 @@ static public $yy_action = array( $this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + 0]->minor['var']).$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; } } -#line 2691 "smarty_internal_templateparser.php" -#line 796 "smarty_internal_templateparser.y" - function yy_r122(){ +#line 2738 "smarty_internal_templateparser.php" +#line 803 "smarty_internal_templateparser.y" + function yy_r123(){ $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + -2]->minor .']->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2696 "smarty_internal_templateparser.php" -#line 806 "smarty_internal_templateparser.y" - function yy_r124(){ +#line 2743 "smarty_internal_templateparser.php" +#line 813 "smarty_internal_templateparser.y" + function yy_r125(){ $this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2701 "smarty_internal_templateparser.php" -#line 810 "smarty_internal_templateparser.y" - function yy_r125(){ +#line 2748 "smarty_internal_templateparser.php" +#line 817 "smarty_internal_templateparser.y" + function yy_r126(){ $this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2706 "smarty_internal_templateparser.php" -#line 814 "smarty_internal_templateparser.y" - function yy_r126(){ +#line 2753 "smarty_internal_templateparser.php" +#line 821 "smarty_internal_templateparser.y" + function yy_r127(){ $this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2711 "smarty_internal_templateparser.php" -#line 827 "smarty_internal_templateparser.y" - function yy_r128(){ +#line 2758 "smarty_internal_templateparser.php" +#line 834 "smarty_internal_templateparser.y" + function yy_r129(){ return; } -#line 2716 "smarty_internal_templateparser.php" -#line 833 "smarty_internal_templateparser.y" - function yy_r129(){ +#line 2763 "smarty_internal_templateparser.php" +#line 840 "smarty_internal_templateparser.y" + function yy_r130(){ $this->_retvalue = '['.$this->compileVariable($this->yystack[$this->yyidx + 0]->minor).']'; } -#line 2721 "smarty_internal_templateparser.php" -#line 837 "smarty_internal_templateparser.y" - function yy_r130(){ +#line 2768 "smarty_internal_templateparser.php" +#line 844 "smarty_internal_templateparser.y" + function yy_r131(){ $this->_retvalue = '['.$this->compileVariable($this->yystack[$this->yyidx + -2]->minor).'->'.$this->yystack[$this->yyidx + 0]->minor.']'; } -#line 2726 "smarty_internal_templateparser.php" -#line 841 "smarty_internal_templateparser.y" - function yy_r131(){ +#line 2773 "smarty_internal_templateparser.php" +#line 848 "smarty_internal_templateparser.y" + function yy_r132(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2731 "smarty_internal_templateparser.php" -#line 845 "smarty_internal_templateparser.y" - function yy_r132(){ +#line 2778 "smarty_internal_templateparser.php" +#line 852 "smarty_internal_templateparser.y" + function yy_r133(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2736 "smarty_internal_templateparser.php" -#line 849 "smarty_internal_templateparser.y" - function yy_r133(){ +#line 2783 "smarty_internal_templateparser.php" +#line 856 "smarty_internal_templateparser.y" + function yy_r134(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2741 "smarty_internal_templateparser.php" -#line 854 "smarty_internal_templateparser.y" - function yy_r134(){ +#line 2788 "smarty_internal_templateparser.php" +#line 861 "smarty_internal_templateparser.y" + function yy_r135(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable',array(),'[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2746 "smarty_internal_templateparser.php" -#line 858 "smarty_internal_templateparser.y" - function yy_r135(){ +#line 2793 "smarty_internal_templateparser.php" +#line 865 "smarty_internal_templateparser.y" + function yy_r136(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable',array(),'[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2751 "smarty_internal_templateparser.php" -#line 868 "smarty_internal_templateparser.y" - function yy_r137(){ +#line 2798 "smarty_internal_templateparser.php" +#line 875 "smarty_internal_templateparser.y" + function yy_r138(){ $this->_retvalue = '[]'; } -#line 2756 "smarty_internal_templateparser.php" -#line 881 "smarty_internal_templateparser.y" - function yy_r139(){ +#line 2803 "smarty_internal_templateparser.php" +#line 888 "smarty_internal_templateparser.y" + function yy_r140(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2761 "smarty_internal_templateparser.php" -#line 886 "smarty_internal_templateparser.y" - function yy_r140(){ +#line 2808 "smarty_internal_templateparser.php" +#line 893 "smarty_internal_templateparser.y" + function yy_r141(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2766 "smarty_internal_templateparser.php" -#line 891 "smarty_internal_templateparser.y" - function yy_r141(){ - $this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; - } -#line 2771 "smarty_internal_templateparser.php" +#line 2813 "smarty_internal_templateparser.php" #line 898 "smarty_internal_templateparser.y" function yy_r142(){ + $this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; + } +#line 2818 "smarty_internal_templateparser.php" +#line 905 "smarty_internal_templateparser.y" + function yy_r143(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor; } else { $this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + -1]->minor['var']).$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; } } -#line 2780 "smarty_internal_templateparser.php" -#line 907 "smarty_internal_templateparser.y" - function yy_r143(){ +#line 2827 "smarty_internal_templateparser.php" +#line 914 "smarty_internal_templateparser.y" + function yy_r144(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2785 "smarty_internal_templateparser.php" -#line 912 "smarty_internal_templateparser.y" - function yy_r144(){ +#line 2832 "smarty_internal_templateparser.php" +#line 919 "smarty_internal_templateparser.y" + function yy_r145(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2790 "smarty_internal_templateparser.php" -#line 917 "smarty_internal_templateparser.y" - function yy_r145(){ +#line 2837 "smarty_internal_templateparser.php" +#line 924 "smarty_internal_templateparser.y" + function yy_r146(){ if ($this->security && substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '_') { $this->compiler->trigger_template_error (self::Err1); } $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2798 "smarty_internal_templateparser.php" -#line 924 "smarty_internal_templateparser.y" - function yy_r146(){ - if ($this->security) { - $this->compiler->trigger_template_error (self::Err2); - } - $this->_retvalue = '->{'.$this->compileVariable($this->yystack[$this->yyidx + -1]->minor).$this->yystack[$this->yyidx + 0]->minor.'}'; - } -#line 2806 "smarty_internal_templateparser.php" +#line 2845 "smarty_internal_templateparser.php" #line 931 "smarty_internal_templateparser.y" function yy_r147(){ if ($this->security) { $this->compiler->trigger_template_error (self::Err2); } - $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; + $this->_retvalue = '->{'.$this->compileVariable($this->yystack[$this->yyidx + -1]->minor).$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2814 "smarty_internal_templateparser.php" +#line 2853 "smarty_internal_templateparser.php" #line 938 "smarty_internal_templateparser.y" function yy_r148(){ if ($this->security) { $this->compiler->trigger_template_error (self::Err2); } + $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; + } +#line 2861 "smarty_internal_templateparser.php" +#line 945 "smarty_internal_templateparser.y" + function yy_r149(){ + if ($this->security) { + $this->compiler->trigger_template_error (self::Err2); + } $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2822 "smarty_internal_templateparser.php" -#line 946 "smarty_internal_templateparser.y" - function yy_r149(){ +#line 2869 "smarty_internal_templateparser.php" +#line 953 "smarty_internal_templateparser.y" + function yy_r150(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2827 "smarty_internal_templateparser.php" -#line 954 "smarty_internal_templateparser.y" - function yy_r150(){ +#line 2874 "smarty_internal_templateparser.php" +#line 961 "smarty_internal_templateparser.y" + function yy_r151(){ if (!$this->security || $this->smarty->security_policy->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { if (strcasecmp($this->yystack[$this->yyidx + -3]->minor,'isset') === 0 || strcasecmp($this->yystack[$this->yyidx + -3]->minor,'empty') === 0 || strcasecmp($this->yystack[$this->yyidx + -3]->minor,'array') === 0 || is_callable($this->yystack[$this->yyidx + -3]->minor)) { $func_name = strtolower($this->yystack[$this->yyidx + -3]->minor); @@ -2864,17 +2911,17 @@ static public $yy_action = array( } } } -#line 2863 "smarty_internal_templateparser.php" -#line 992 "smarty_internal_templateparser.y" - function yy_r151(){ +#line 2910 "smarty_internal_templateparser.php" +#line 999 "smarty_internal_templateparser.y" + function yy_r152(){ if ($this->security && substr($this->yystack[$this->yyidx + -3]->minor,0,1) == '_') { $this->compiler->trigger_template_error (self::Err1); } $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". implode(',',$this->yystack[$this->yyidx + -1]->minor) .")"; } -#line 2871 "smarty_internal_templateparser.php" -#line 999 "smarty_internal_templateparser.y" - function yy_r152(){ +#line 2918 "smarty_internal_templateparser.php" +#line 1006 "smarty_internal_templateparser.y" + function yy_r153(){ if ($this->security) { $this->compiler->trigger_template_error (self::Err2); } @@ -2882,168 +2929,168 @@ static public $yy_action = array( $this->compiler->prefix_code[] = 'prefix_number.'='.$this->compileVariable("'".$this->yystack[$this->yyidx + -3]->minor."'").';?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. implode(',',$this->yystack[$this->yyidx + -1]->minor) .')'; } -#line 2881 "smarty_internal_templateparser.php" -#line 1010 "smarty_internal_templateparser.y" - function yy_r153(){ +#line 2928 "smarty_internal_templateparser.php" +#line 1017 "smarty_internal_templateparser.y" + function yy_r154(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array($this->yystack[$this->yyidx + 0]->minor)); } -#line 2886 "smarty_internal_templateparser.php" -#line 1027 "smarty_internal_templateparser.y" - function yy_r156(){ +#line 2933 "smarty_internal_templateparser.php" +#line 1034 "smarty_internal_templateparser.y" + function yy_r157(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array(array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor))); } -#line 2891 "smarty_internal_templateparser.php" -#line 1031 "smarty_internal_templateparser.y" - function yy_r157(){ +#line 2938 "smarty_internal_templateparser.php" +#line 1038 "smarty_internal_templateparser.y" + function yy_r158(){ $this->_retvalue = array(array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor)); } -#line 2896 "smarty_internal_templateparser.php" -#line 1039 "smarty_internal_templateparser.y" - function yy_r159(){ +#line 2943 "smarty_internal_templateparser.php" +#line 1046 "smarty_internal_templateparser.y" + function yy_r160(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2901 "smarty_internal_templateparser.php" -#line 1047 "smarty_internal_templateparser.y" - function yy_r160(){ +#line 2948 "smarty_internal_templateparser.php" +#line 1054 "smarty_internal_templateparser.y" + function yy_r161(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2906 "smarty_internal_templateparser.php" -#line 1081 "smarty_internal_templateparser.y" - function yy_r167(){ +#line 2953 "smarty_internal_templateparser.php" +#line 1088 "smarty_internal_templateparser.y" + function yy_r168(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2911 "smarty_internal_templateparser.php" -#line 1086 "smarty_internal_templateparser.y" - function yy_r168(){ +#line 2958 "smarty_internal_templateparser.php" +#line 1093 "smarty_internal_templateparser.y" + function yy_r169(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2916 "smarty_internal_templateparser.php" -#line 1092 "smarty_internal_templateparser.y" - function yy_r169(){ +#line 2963 "smarty_internal_templateparser.php" +#line 1099 "smarty_internal_templateparser.y" + function yy_r170(){ $this->_retvalue = '=='; } -#line 2921 "smarty_internal_templateparser.php" -#line 1096 "smarty_internal_templateparser.y" - function yy_r170(){ +#line 2968 "smarty_internal_templateparser.php" +#line 1103 "smarty_internal_templateparser.y" + function yy_r171(){ $this->_retvalue = '!='; } -#line 2926 "smarty_internal_templateparser.php" -#line 1100 "smarty_internal_templateparser.y" - function yy_r171(){ +#line 2973 "smarty_internal_templateparser.php" +#line 1107 "smarty_internal_templateparser.y" + function yy_r172(){ $this->_retvalue = '>'; } -#line 2931 "smarty_internal_templateparser.php" -#line 1104 "smarty_internal_templateparser.y" - function yy_r172(){ +#line 2978 "smarty_internal_templateparser.php" +#line 1111 "smarty_internal_templateparser.y" + function yy_r173(){ $this->_retvalue = '<'; } -#line 2936 "smarty_internal_templateparser.php" -#line 1108 "smarty_internal_templateparser.y" - function yy_r173(){ +#line 2983 "smarty_internal_templateparser.php" +#line 1115 "smarty_internal_templateparser.y" + function yy_r174(){ $this->_retvalue = '>='; } -#line 2941 "smarty_internal_templateparser.php" -#line 1112 "smarty_internal_templateparser.y" - function yy_r174(){ +#line 2988 "smarty_internal_templateparser.php" +#line 1119 "smarty_internal_templateparser.y" + function yy_r175(){ $this->_retvalue = '<='; } -#line 2946 "smarty_internal_templateparser.php" -#line 1116 "smarty_internal_templateparser.y" - function yy_r175(){ +#line 2993 "smarty_internal_templateparser.php" +#line 1123 "smarty_internal_templateparser.y" + function yy_r176(){ $this->_retvalue = '==='; } -#line 2951 "smarty_internal_templateparser.php" -#line 1120 "smarty_internal_templateparser.y" - function yy_r176(){ +#line 2998 "smarty_internal_templateparser.php" +#line 1127 "smarty_internal_templateparser.y" + function yy_r177(){ $this->_retvalue = '!=='; } -#line 2956 "smarty_internal_templateparser.php" -#line 1124 "smarty_internal_templateparser.y" - function yy_r177(){ +#line 3003 "smarty_internal_templateparser.php" +#line 1131 "smarty_internal_templateparser.y" + function yy_r178(){ $this->_retvalue = '%'; } -#line 2961 "smarty_internal_templateparser.php" -#line 1128 "smarty_internal_templateparser.y" - function yy_r178(){ +#line 3008 "smarty_internal_templateparser.php" +#line 1135 "smarty_internal_templateparser.y" + function yy_r179(){ $this->_retvalue = '&&'; } -#line 2966 "smarty_internal_templateparser.php" -#line 1132 "smarty_internal_templateparser.y" - function yy_r179(){ +#line 3013 "smarty_internal_templateparser.php" +#line 1139 "smarty_internal_templateparser.y" + function yy_r180(){ $this->_retvalue = '||'; } -#line 2971 "smarty_internal_templateparser.php" -#line 1136 "smarty_internal_templateparser.y" - function yy_r180(){ - $this->_retvalue = ' XOR '; - } -#line 2976 "smarty_internal_templateparser.php" +#line 3018 "smarty_internal_templateparser.php" #line 1143 "smarty_internal_templateparser.y" function yy_r181(){ + $this->_retvalue = ' XOR '; + } +#line 3023 "smarty_internal_templateparser.php" +#line 1150 "smarty_internal_templateparser.y" + function yy_r182(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2981 "smarty_internal_templateparser.php" -#line 1151 "smarty_internal_templateparser.y" - function yy_r183(){ +#line 3028 "smarty_internal_templateparser.php" +#line 1158 "smarty_internal_templateparser.y" + function yy_r184(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2986 "smarty_internal_templateparser.php" -#line 1159 "smarty_internal_templateparser.y" - function yy_r185(){ +#line 3033 "smarty_internal_templateparser.php" +#line 1166 "smarty_internal_templateparser.y" + function yy_r186(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2991 "smarty_internal_templateparser.php" -#line 1163 "smarty_internal_templateparser.y" - function yy_r186(){ +#line 3038 "smarty_internal_templateparser.php" +#line 1170 "smarty_internal_templateparser.y" + function yy_r187(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2996 "smarty_internal_templateparser.php" -#line 1175 "smarty_internal_templateparser.y" - function yy_r188(){ +#line 3043 "smarty_internal_templateparser.php" +#line 1182 "smarty_internal_templateparser.y" + function yy_r189(){ $this->_retvalue = "''"; } -#line 3001 "smarty_internal_templateparser.php" -#line 1179 "smarty_internal_templateparser.y" - function yy_r189(){ +#line 3048 "smarty_internal_templateparser.php" +#line 1186 "smarty_internal_templateparser.y" + function yy_r190(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); } -#line 3006 "smarty_internal_templateparser.php" -#line 1184 "smarty_internal_templateparser.y" - function yy_r190(){ +#line 3053 "smarty_internal_templateparser.php" +#line 1191 "smarty_internal_templateparser.y" + function yy_r191(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 3012 "smarty_internal_templateparser.php" -#line 1189 "smarty_internal_templateparser.y" - function yy_r191(){ +#line 3059 "smarty_internal_templateparser.php" +#line 1196 "smarty_internal_templateparser.y" + function yy_r192(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 3017 "smarty_internal_templateparser.php" -#line 1193 "smarty_internal_templateparser.y" - function yy_r192(){ +#line 3064 "smarty_internal_templateparser.php" +#line 1200 "smarty_internal_templateparser.y" + function yy_r193(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); } -#line 3022 "smarty_internal_templateparser.php" -#line 1201 "smarty_internal_templateparser.y" - function yy_r194(){ +#line 3069 "smarty_internal_templateparser.php" +#line 1208 "smarty_internal_templateparser.y" + function yy_r195(){ $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->tpl_vars[\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\']->value'); } -#line 3027 "smarty_internal_templateparser.php" -#line 1209 "smarty_internal_templateparser.y" - function yy_r196(){ +#line 3074 "smarty_internal_templateparser.php" +#line 1216 "smarty_internal_templateparser.y" + function yy_r197(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); } -#line 3032 "smarty_internal_templateparser.php" -#line 1213 "smarty_internal_templateparser.y" - function yy_r197(){ +#line 3079 "smarty_internal_templateparser.php" +#line 1220 "smarty_internal_templateparser.y" + function yy_r198(){ $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 3037 "smarty_internal_templateparser.php" -#line 1217 "smarty_internal_templateparser.y" - function yy_r198(){ +#line 3084 "smarty_internal_templateparser.php" +#line 1224 "smarty_internal_templateparser.y" + function yy_r199(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 3042 "smarty_internal_templateparser.php" +#line 3089 "smarty_internal_templateparser.php" private $_retvalue; @@ -3100,12 +3147,12 @@ static public $yy_action = array( function yy_syntax_error($yymajor, $TOKEN) { -#line 76 "smarty_internal_templateparser.y" +#line 77 "smarty_internal_templateparser.y" $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 3105 "smarty_internal_templateparser.php" +#line 3152 "smarty_internal_templateparser.php" } function yy_accept() @@ -3116,13 +3163,13 @@ static public $yy_action = array( while ($this->yyidx >= 0) { $stack = $this->yy_pop_parser_stack(); } -#line 68 "smarty_internal_templateparser.y" +#line 69 "smarty_internal_templateparser.y" $this->successful = !$this->internalError; $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 3123 "smarty_internal_templateparser.php" +#line 3170 "smarty_internal_templateparser.php" } function doParse($yymajor, $yytokenvalue)