summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruwetews <uwe.tews@googlemail.com>2016-09-28 23:39:05 +0200
committeruwetews <uwe.tews@googlemail.com>2016-09-28 23:39:05 +0200
commit5b508b7bf3fc08603b6e7096c468258d083d43a9 (patch)
tree6b7e4b58371fd0c0ca7abafaa9baa16fccebb473
parent998c7789485e89f401d2cae4af3fda91a8a03956 (diff)
downloadsmarty-5b508b7bf3fc08603b6e7096c468258d083d43a9.tar.gz
smarty-5b508b7bf3fc08603b6e7096c468258d083d43a9.tar.bz2
smarty-5b508b7bf3fc08603b6e7096c468258d083d43a9.zip
- bugfix nocache hash was not removed for <?xml ?> tags in subtemplates https://github.com/smarty-php/smarty/issues/300
-rw-r--r--change_log.txt1
-rw-r--r--lexer/smarty_internal_templatelexer.plex6
-rw-r--r--lexer/smarty_internal_templateparser.y7
-rw-r--r--libs/Smarty.class.php2
-rw-r--r--libs/sysplugins/smarty_internal_compile_private_php.php6
-rw-r--r--libs/sysplugins/smarty_internal_templatelexer.php6
-rw-r--r--libs/sysplugins/smarty_internal_templateparser.php1771
7 files changed, 892 insertions, 907 deletions
diff --git a/change_log.txt b/change_log.txt
index b7e063d3..0b72ddf8 100644
--- a/change_log.txt
+++ b/change_log.txt
@@ -1,6 +1,7 @@
===== 3.1.31-dev ===== (xx.xx.xx)
28.09.2016
- bugfix the generated code for calling a subtemplate must pass the template resource name in single quotes https://github.com/smarty-php/smarty/issues/299
+ - bugfix nocache hash was not removed for <?xml ?> tags in subtemplates https://github.com/smarty-php/smarty/issues/300
27.09.2016
- bugfix when Smarty does use an internally cached template object on Smarty::fetch() calls
diff --git a/lexer/smarty_internal_templatelexer.plex b/lexer/smarty_internal_templatelexer.plex
index 312c6fd0..a455baf8 100644
--- a/lexer/smarty_internal_templatelexer.plex
+++ b/lexer/smarty_internal_templatelexer.plex
@@ -341,8 +341,7 @@ class Smarty_Internal_Templatelexer
return false;
}
phptag {
- $obj = new Smarty_Internal_Compile_Private_Php();
- $obj->parsePhp($this);
+ $this->compiler->getTagCompiler('private_php')->parsePhp($this);
}
ldel literal rdel {
if ($this->smarty->auto_literal && isset($this->value[$this->ldel_length]) ? strpos(" \n\t\r", $this->value[$this->ldel_length]) !== false : false) {
@@ -364,8 +363,7 @@ class Smarty_Internal_Templatelexer
$this->token = Smarty_Internal_Templateparser::TP_TEXT;
}
phpstart {
- $obj = new Smarty_Internal_Compile_Private_Php();
- $obj->parsePhp($this);
+ $this->compiler->getTagCompiler('private_php')->parsePhp($this);
}
text {
$to = strlen($this->data);
diff --git a/lexer/smarty_internal_templateparser.y b/lexer/smarty_internal_templateparser.y
index eacc421f..91ae93d0 100644
--- a/lexer/smarty_internal_templateparser.y
+++ b/lexer/smarty_internal_templateparser.y
@@ -271,13 +271,6 @@ template_element(res)::= PHP(o). {
}
}
- // nocache code
-template_element(res)::= NOCACHE(c). {
- $this->compiler->tag_nocache = true;
- $save = $this->template->compiled->has_nocache_code;
- res = new Smarty_Internal_ParseTree_Tag($this, $this->compiler->processNocacheCode("<?php echo '{c}';?>\n", true));
- $this->template->compiled->has_nocache_code = $save;
-}
// template text
template_element(res)::= text_content(t). {
res = $this->compiler->processText(t);
diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php
index a93d52c6..a994d7f3 100644
--- a/libs/Smarty.class.php
+++ b/libs/Smarty.class.php
@@ -114,7 +114,7 @@ class Smarty extends Smarty_Internal_TemplateBase
/**
* smarty version
*/
- const SMARTY_VERSION = '3.1.31-dev/31';
+ const SMARTY_VERSION = '3.1.31-dev/32';
/**
* define variable scopes
diff --git a/libs/sysplugins/smarty_internal_compile_private_php.php b/libs/sysplugins/smarty_internal_compile_private_php.php
index 65d16a9d..49ded00f 100644
--- a/libs/sysplugins/smarty_internal_compile_private_php.php
+++ b/libs/sysplugins/smarty_internal_compile_private_php.php
@@ -42,7 +42,6 @@ class Smarty_Internal_Compile_Private_Php extends Smarty_Internal_CompileBase
$compiler->has_code = false;
if ($_attr[ 'type' ] == 'xml') {
$compiler->tag_nocache = true;
- $save = $compiler->template->compiled->has_nocache_code;
$output = addcslashes($_attr[ 'code' ], "'\\");
$compiler->parser->current_buffer->append_subtree($compiler->parser,
new Smarty_Internal_ParseTree_Tag($compiler->parser,
@@ -50,7 +49,6 @@ class Smarty_Internal_Compile_Private_Php extends Smarty_Internal_CompileBase
$output .
"';?>",
true)));
- $compiler->template->compiled->has_nocache_code = $save;
return '';
}
if ($_attr[ 'type' ] != 'tag') {
@@ -121,7 +119,7 @@ class Smarty_Internal_Compile_Private_Php extends Smarty_Internal_CompileBase
$closeTag = '?>';
if (strpos($lex->value, '<?xml') === 0) {
$lex->is_xml = true;
- $lex->token = Smarty_Internal_Templateparser::TP_NOCACHE;
+ $lex->phpType = 'xml';
return;
} elseif (strpos($lex->value, '<?') === 0) {
$lex->phpType = 'php';
@@ -133,7 +131,7 @@ class Smarty_Internal_Compile_Private_Php extends Smarty_Internal_CompileBase
} elseif (strpos($lex->value, '?>') === 0) {
if ($lex->is_xml) {
$lex->is_xml = false;
- $lex->token = Smarty_Internal_Templateparser::TP_NOCACHE;
+ $lex->phpType = 'xml';
return;
}
$lex->phpType = 'unmatched';
diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php
index fd9002b7..05d95810 100644
--- a/libs/sysplugins/smarty_internal_templatelexer.php
+++ b/libs/sysplugins/smarty_internal_templatelexer.php
@@ -361,8 +361,7 @@ class Smarty_Internal_Templatelexer
function yy_r1_3()
{
- $obj = new Smarty_Internal_Compile_Private_Php();
- $obj->parsePhp($this);
+ $this->compiler->getTagCompiler('private_php')->parsePhp($this);
}
function yy_r1_7()
@@ -400,8 +399,7 @@ class Smarty_Internal_Templatelexer
function yy_r1_10()
{
- $obj = new Smarty_Internal_Compile_Private_Php();
- $obj->parsePhp($this);
+ $this->compiler->getTagCompiler('private_php')->parsePhp($this);
}
function yy_r1_19()
diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php
index 2431c9b9..bc74fe44 100644
--- a/libs/sysplugins/smarty_internal_templateparser.php
+++ b/libs/sysplugins/smarty_internal_templateparser.php
@@ -263,566 +263,575 @@ class Smarty_Internal_Templateparser
const TP_PHP = 3;
- const TP_NOCACHE = 4;
+ const TP_TEXT = 4;
- const TP_TEXT = 5;
+ const TP_STRIPON = 5;
- const TP_STRIPON = 6;
+ const TP_STRIPOFF = 6;
- const TP_STRIPOFF = 7;
+ const TP_LITERALSTART = 7;
- const TP_LITERALSTART = 8;
+ const TP_LITERALEND = 8;
- const TP_LITERALEND = 9;
+ const TP_LITERAL = 9;
- const TP_LITERAL = 10;
+ const TP_RDEL = 10;
- const TP_RDEL = 11;
+ const TP_SIMPELOUTPUT = 11;
- const TP_SIMPELOUTPUT = 12;
+ const TP_LDEL = 12;
- const TP_LDEL = 13;
+ const TP_DOLLARID = 13;
- const TP_DOLLARID = 14;
+ const TP_EQUAL = 14;
- const TP_EQUAL = 15;
+ const TP_SIMPLETAG = 15;
- const TP_SIMPLETAG = 16;
+ const TP_ID = 16;
- const TP_ID = 17;
+ const TP_PTR = 17;
- const TP_PTR = 18;
+ const TP_LDELMAKENOCACHE = 18;
- const TP_LDELMAKENOCACHE = 19;
+ const TP_LDELIF = 19;
- const TP_LDELIF = 20;
+ const TP_LDELFOR = 20;
- const TP_LDELFOR = 21;
+ const TP_SEMICOLON = 21;
- const TP_SEMICOLON = 22;
+ const TP_INCDEC = 22;
- const TP_INCDEC = 23;
+ const TP_TO = 23;
- const TP_TO = 24;
+ const TP_STEP = 24;
- const TP_STEP = 25;
+ const TP_LDELFOREACH = 25;
- const TP_LDELFOREACH = 26;
+ const TP_SPACE = 26;
- const TP_SPACE = 27;
+ const TP_AS = 27;
- const TP_AS = 28;
+ const TP_APTR = 28;
- const TP_APTR = 29;
+ const TP_LDELSETFILTER = 29;
- const TP_LDELSETFILTER = 30;
+ const TP_SMARTYBLOCKCHILDPARENT = 30;
- const TP_SMARTYBLOCKCHILDPARENT = 31;
+ const TP_CLOSETAG = 31;
- const TP_CLOSETAG = 32;
+ const TP_LDELSLASH = 32;
- const TP_LDELSLASH = 33;
+ const TP_ATTR = 33;
- const TP_ATTR = 34;
+ const TP_INTEGER = 34;
- const TP_INTEGER = 35;
+ const TP_COMMA = 35;
- const TP_COMMA = 36;
+ const TP_OPENP = 36;
- const TP_OPENP = 37;
+ const TP_CLOSEP = 37;
- const TP_CLOSEP = 38;
+ const TP_MATH = 38;
- const TP_MATH = 39;
+ const TP_UNIMATH = 39;
- const TP_UNIMATH = 40;
+ const TP_ISIN = 40;
- const TP_ISIN = 41;
+ const TP_QMARK = 41;
- const TP_QMARK = 42;
+ const TP_NOT = 42;
- const TP_NOT = 43;
+ const TP_TYPECAST = 43;
- const TP_TYPECAST = 44;
+ const TP_HEX = 44;
- const TP_HEX = 45;
+ const TP_DOT = 45;
- const TP_DOT = 46;
+ const TP_INSTANCEOF = 46;
- const TP_INSTANCEOF = 47;
+ const TP_SINGLEQUOTESTRING = 47;
- const TP_SINGLEQUOTESTRING = 48;
+ const TP_DOUBLECOLON = 48;
- const TP_DOUBLECOLON = 49;
+ const TP_NAMESPACE = 49;
- const TP_NAMESPACE = 50;
+ const TP_AT = 50;
- const TP_AT = 51;
+ const TP_HATCH = 51;
- const TP_HATCH = 52;
+ const TP_OPENB = 52;
- const TP_OPENB = 53;
+ const TP_CLOSEB = 53;
- const TP_CLOSEB = 54;
+ const TP_DOLLAR = 54;
- const TP_DOLLAR = 55;
+ const TP_LOGOP = 55;
- const TP_LOGOP = 56;
+ const TP_SLOGOP = 56;
- const TP_SLOGOP = 57;
+ const TP_TLOGOP = 57;
- const TP_TLOGOP = 58;
+ const TP_SINGLECOND = 58;
- const TP_SINGLECOND = 59;
+ const TP_QUOTE = 59;
- const TP_QUOTE = 60;
+ const TP_BACKTICK = 60;
- const TP_BACKTICK = 61;
+ const YY_NO_ACTION = 532;
- const YY_NO_ACTION = 534;
+ const YY_ACCEPT_ACTION = 531;
- const YY_ACCEPT_ACTION = 533;
+ const YY_ERROR_ACTION = 530;
- const YY_ERROR_ACTION = 532;
+ const YY_SZ_ACTTAB = 2114;
- const YY_SZ_ACTTAB = 2017;
+ static public $yy_action = array(268, 8, 132, 210, 245, 197, 183, 228, 7, 84, 176, 264, 275, 302, 112, 44, 36, 278,
+ 233, 136, 305, 221, 281, 203, 237, 26, 234, 202, 41, 104, 189, 39, 42, 256, 213,
+ 216, 224, 78, 207, 129, 82, 1, 316, 297, 102, 268, 8, 133, 79, 245, 80, 302, 228,
+ 7, 84, 330, 299, 82, 272, 112, 297, 273, 325, 233, 285, 305, 221, 214, 231, 34, 26,
+ 3, 101, 41, 230, 78, 39, 42, 256, 213, 35, 239, 314, 207, 300, 82, 1, 13, 297, 333,
+ 268, 8, 135, 79, 245, 201, 302, 228, 7, 84, 35, 85, 322, 109, 112, 29, 196, 13,
+ 233, 269, 305, 221, 237, 231, 249, 26, 136, 104, 41, 219, 78, 39, 42, 256, 213,
+ 459, 239, 267, 207, 355, 82, 1, 459, 297, 446, 268, 8, 135, 79, 245, 193, 302, 228,
+ 7, 84, 35, 446, 297, 28, 112, 247, 263, 13, 233, 82, 305, 221, 297, 231, 309, 26,
+ 185, 292, 41, 298, 78, 39, 42, 256, 213, 27, 239, 237, 207, 232, 82, 1, 104, 297,
+ 459, 268, 8, 135, 79, 245, 195, 459, 228, 7, 84, 446, 297, 283, 11, 112, 25, 188,
+ 282, 233, 236, 305, 221, 446, 204, 294, 26, 32, 318, 41, 90, 210, 39, 42, 256, 213,
+ 174, 239, 137, 207, 402, 82, 1, 210, 297, 9, 268, 8, 136, 79, 245, 201, 223, 228,
+ 7, 84, 402, 142, 235, 225, 112, 22, 227, 402, 233, 166, 305, 221, 35, 231, 27, 33,
+ 210, 101, 41, 13, 210, 39, 42, 256, 213, 361, 239, 302, 207, 399, 82, 1, 210, 297,
+ 101, 268, 8, 135, 79, 245, 201, 402, 228, 7, 84, 399, 235, 297, 109, 112, 447, 78,
+ 399, 233, 319, 305, 221, 402, 194, 172, 26, 279, 447, 41, 402, 307, 39, 42, 256,
+ 213, 182, 239, 16, 207, 296, 82, 1, 210, 297, 101, 268, 8, 131, 79, 245, 201, 357,
+ 228, 7, 84, 283, 11, 475, 475, 112, 282, 303, 475, 233, 24, 305, 221, 35, 231, 175,
+ 4, 279, 271, 41, 13, 109, 39, 42, 256, 213, 181, 239, 178, 207, 12, 82, 1, 16, 297,
+ 274, 268, 8, 135, 79, 245, 200, 475, 228, 7, 84, 475, 475, 283, 11, 112, 475, 189,
+ 282, 233, 210, 305, 221, 20, 231, 38, 26, 179, 292, 41, 148, 446, 39, 42, 256, 213,
+ 229, 239, 180, 207, 332, 82, 1, 446, 297, 190, 268, 8, 134, 79, 245, 201, 215, 228,
+ 7, 84, 168, 16, 188, 243, 112, 104, 189, 303, 233, 140, 305, 221, 325, 231, 255,
+ 26, 177, 214, 41, 218, 312, 39, 42, 256, 213, 277, 239, 128, 207, 101, 82, 1, 92,
+ 297, 2, 268, 8, 136, 79, 245, 201, 23, 228, 7, 84, 210, 108, 251, 184, 112, 297,
+ 304, 289, 233, 367, 305, 221, 137, 231, 315, 33, 220, 5, 41, 9, 5, 39, 42, 256,
+ 213, 35, 239, 189, 207, 113, 82, 311, 13, 297, 106, 446, 214, 212, 79, 116, 72,
+ 114, 258, 260, 261, 222, 102, 446, 214, 257, 280, 187, 308, 334, 270, 206, 242,
+ 152, 299, 210, 128, 83, 262, 250, 252, 253, 176, 332, 211, 329, 268, 8, 151, 143,
+ 245, 189, 178, 228, 7, 84, 210, 265, 332, 332, 112, 188, 21, 311, 233, 153, 305,
+ 221, 214, 212, 17, 122, 67, 114, 164, 141, 189, 13, 102, 149, 266, 257, 280, 183,
+ 332, 332, 270, 206, 242, 332, 299, 295, 44, 36, 278, 235, 311, 208, 279, 145, 169,
+ 214, 212, 91, 122, 67, 114, 189, 320, 332, 167, 102, 146, 139, 257, 280, 94, 171,
+ 159, 270, 206, 242, 332, 299, 210, 38, 311, 189, 332, 155, 209, 214, 212, 317, 122,
+ 53, 107, 123, 232, 332, 189, 102, 291, 400, 257, 280, 6, 217, 276, 270, 206, 242,
+ 311, 299, 297, 158, 313, 214, 212, 400, 122, 49, 107, 154, 117, 332, 400, 102, 30,
+ 446, 257, 280, 248, 332, 173, 270, 206, 242, 279, 299, 324, 446, 186, 292, 332, 95,
+ 279, 268, 10, 326, 170, 245, 88, 87, 228, 7, 84, 279, 138, 89, 279, 112, 86, 309,
+ 311, 233, 115, 305, 221, 214, 212, 254, 122, 67, 114, 105, 303, 163, 165, 102, 303,
+ 93, 257, 280, 303, 303, 303, 270, 206, 242, 303, 299, 303, 303, 303, 286, 19, 311,
+ 205, 303, 303, 303, 214, 212, 303, 116, 72, 114, 303, 43, 40, 37, 102, 303, 303,
+ 257, 280, 303, 303, 303, 270, 206, 242, 303, 299, 324, 327, 323, 288, 287, 303,
+ 303, 268, 10, 326, 331, 245, 303, 303, 228, 7, 84, 303, 303, 303, 303, 112, 303,
+ 303, 311, 233, 303, 305, 221, 214, 212, 303, 122, 70, 114, 303, 303, 303, 303, 102,
+ 303, 303, 257, 280, 303, 283, 11, 270, 206, 242, 282, 299, 303, 311, 303, 290, 19,
+ 303, 214, 212, 35, 122, 54, 114, 303, 303, 303, 13, 102, 162, 303, 257, 280, 183,
+ 303, 303, 270, 206, 242, 332, 299, 311, 44, 36, 278, 303, 214, 212, 303, 122, 68,
+ 114, 303, 303, 303, 303, 102, 189, 303, 257, 280, 303, 303, 303, 270, 206, 242,
+ 303, 299, 311, 303, 303, 303, 303, 214, 212, 303, 100, 73, 114, 303, 303, 303, 303,
+ 102, 303, 303, 257, 280, 303, 303, 303, 270, 206, 242, 303, 299, 311, 303, 303,
+ 303, 303, 214, 212, 303, 122, 77, 114, 303, 303, 303, 303, 102, 147, 303, 257, 280,
+ 183, 303, 303, 270, 206, 242, 332, 299, 311, 44, 36, 278, 303, 214, 212, 303, 122,
+ 76, 114, 303, 303, 303, 303, 102, 189, 303, 257, 280, 303, 303, 303, 270, 206, 242,
+ 303, 299, 311, 303, 303, 303, 303, 214, 212, 303, 99, 71, 114, 303, 303, 303, 303,
+ 102, 161, 303, 257, 280, 183, 303, 303, 270, 206, 242, 332, 299, 311, 44, 36, 278,
+ 303, 214, 212, 303, 122, 47, 114, 303, 303, 303, 303, 102, 189, 303, 257, 280, 303,
+ 303, 303, 270, 206, 242, 303, 299, 311, 303, 303, 303, 303, 214, 212, 303, 122, 59,
+ 114, 303, 303, 303, 303, 102, 150, 303, 257, 280, 183, 303, 303, 270, 206, 242,
+ 332, 299, 311, 44, 36, 278, 303, 214, 198, 303, 118, 55, 114, 303, 303, 303, 303,
+ 102, 189, 303, 257, 280, 303, 303, 303, 270, 206, 242, 303, 299, 311, 303, 303,
+ 303, 303, 214, 212, 303, 122, 69, 114, 303, 303, 303, 303, 102, 160, 303, 257, 280,
+ 183, 303, 303, 270, 206, 242, 332, 299, 311, 44, 36, 278, 303, 214, 97, 303, 81,
+ 48, 103, 303, 303, 303, 303, 102, 189, 303, 257, 280, 303, 303, 303, 270, 206, 242,
+ 303, 299, 311, 303, 303, 303, 303, 214, 212, 303, 122, 57, 114, 303, 303, 303, 303,
+ 102, 303, 303, 257, 280, 303, 303, 303, 270, 206, 242, 303, 299, 311, 303, 303,
+ 303, 303, 214, 212, 303, 122, 65, 114, 303, 303, 303, 303, 102, 303, 303, 257, 280,
+ 303, 303, 303, 270, 206, 242, 303, 299, 311, 303, 303, 303, 303, 214, 96, 303, 81,
+ 46, 103, 303, 303, 303, 303, 102, 303, 303, 257, 280, 303, 303, 303, 270, 206, 242,
+ 303, 299, 311, 303, 303, 303, 303, 214, 212, 303, 111, 50, 114, 303, 303, 303, 303,
+ 102, 303, 303, 257, 280, 303, 303, 303, 270, 206, 242, 303, 299, 311, 303, 303,
+ 303, 303, 214, 212, 303, 98, 61, 114, 303, 303, 303, 303, 102, 303, 303, 257, 280,
+ 303, 303, 303, 270, 206, 242, 303, 299, 311, 303, 303, 303, 303, 214, 199, 303,
+ 122, 56, 114, 303, 303, 303, 303, 102, 303, 303, 257, 280, 303, 303, 303, 270, 206,
+ 242, 303, 299, 311, 303, 303, 303, 303, 214, 212, 303, 122, 51, 114, 303, 303, 303,
+ 303, 102, 303, 303, 257, 280, 303, 303, 303, 270, 206, 242, 303, 299, 311, 303,
+ 303, 303, 303, 214, 212, 303, 122, 58, 114, 303, 303, 303, 303, 102, 303, 303, 257,
+ 280, 303, 303, 303, 270, 206, 242, 303, 299, 311, 303, 303, 303, 303, 214, 212,
+ 303, 122, 74, 114, 303, 303, 303, 303, 102, 303, 303, 257, 280, 303, 303, 303, 270,
+ 206, 242, 303, 299, 311, 303, 303, 303, 303, 214, 212, 303, 122, 62, 114, 303, 303,
+ 303, 303, 102, 303, 303, 257, 280, 303, 303, 303, 270, 206, 242, 303, 299, 311,
+ 303, 303, 303, 303, 214, 212, 303, 122, 60, 114, 303, 303, 303, 303, 102, 303, 303,
+ 257, 280, 303, 303, 303, 270, 206, 242, 303, 299, 311, 303, 303, 303, 303, 214,
+ 212, 303, 122, 45, 114, 303, 303, 303, 303, 102, 303, 303, 257, 280, 303, 303, 303,
+ 270, 206, 242, 303, 299, 311, 303, 303, 303, 303, 214, 212, 303, 122, 64, 114, 303,
+ 303, 303, 303, 102, 303, 303, 257, 280, 303, 303, 303, 270, 206, 242, 303, 299,
+ 311, 303, 303, 303, 303, 214, 212, 303, 122, 75, 114, 303, 303, 303, 303, 102, 303,
+ 303, 257, 280, 303, 303, 303, 270, 206, 242, 303, 299, 311, 303, 303, 303, 303,
+ 214, 212, 303, 122, 63, 114, 303, 303, 303, 303, 102, 303, 303, 257, 280, 303, 303,
+ 303, 270, 206, 242, 303, 299, 311, 303, 303, 303, 303, 214, 212, 303, 122, 66, 114,
+ 303, 303, 303, 303, 102, 303, 303, 257, 280, 303, 412, 412, 270, 206, 242, 303,
+ 299, 311, 303, 303, 303, 303, 214, 212, 303, 122, 53, 114, 303, 303, 303, 303, 102,
+ 303, 303, 257, 280, 210, 303, 303, 270, 206, 242, 303, 299, 446, 301, 412, 412,
+ 412, 303, 531, 52, 259, 260, 261, 222, 446, 303, 214, 303, 303, 35, 303, 412, 412,
+ 412, 412, 303, 13, 303, 303, 303, 303, 43, 40, 37, 210, 303, 303, 311, 303, 303,
+ 303, 303, 214, 212, 210, 130, 303, 114, 327, 323, 288, 287, 102, 303, 303, 303,
+ 241, 31, 303, 35, 270, 206, 242, 303, 299, 303, 13, 303, 303, 35, 303, 43, 40, 37,
+ 303, 303, 13, 303, 303, 303, 303, 43, 40, 37, 303, 303, 303, 311, 327, 323, 288,
+ 287, 214, 212, 210, 124, 303, 114, 327, 323, 288, 287, 102, 192, 303, 303, 310,
+ 303, 303, 303, 270, 206, 242, 311, 299, 226, 303, 303, 214, 212, 303, 120, 303,
+ 114, 475, 475, 303, 28, 102, 475, 459, 43, 40, 37, 303, 303, 270, 206, 242, 303,
+ 299, 303, 303, 303, 303, 303, 303, 311, 327, 323, 288, 287, 214, 212, 303, 126,
+ 303, 114, 459, 303, 303, 459, 102, 475, 303, 459, 226, 303, 303, 303, 270, 206,
+ 242, 303, 299, 475, 475, 226, 18, 303, 475, 459, 303, 303, 303, 303, 475, 475, 303,
+ 303, 226, 475, 459, 283, 11, 303, 303, 303, 282, 475, 475, 303, 303, 303, 475, 459,
+ 303, 303, 35, 459, 144, 303, 459, 303, 475, 13, 459, 303, 303, 303, 459, 303, 303,
+ 459, 311, 475, 303, 459, 321, 214, 212, 303, 119, 459, 114, 303, 459, 303, 475,
+ 102, 459, 303, 303, 303, 303, 303, 303, 270, 206, 242, 303, 299, 311, 210, 14, 303,
+ 303, 214, 212, 303, 127, 303, 114, 303, 284, 303, 303, 102, 129, 303, 303, 303,
+ 303, 102, 303, 270, 206, 242, 311, 299, 210, 303, 293, 214, 212, 299, 121, 303,
+ 114, 311, 43, 40, 37, 102, 214, 212, 303, 125, 303, 114, 303, 270, 206, 242, 102,
+ 299, 156, 327, 323, 288, 287, 210, 270, 206, 242, 210, 299, 43, 40, 37, 210, 303,
+ 303, 303, 244, 303, 303, 303, 303, 303, 303, 110, 303, 303, 327, 323, 288, 287,
+ 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 43, 40, 37, 210, 43, 40, 37, 210,
+ 303, 43, 40, 37, 240, 210, 303, 303, 191, 327, 323, 288, 287, 327, 323, 288, 287,
+ 303, 327, 323, 288, 287, 303, 306, 303, 303, 303, 303, 303, 303, 303, 303, 43, 40,
+ 37, 303, 43, 40, 37, 210, 303, 238, 43, 40, 37, 303, 303, 303, 303, 327, 323, 288,
+ 287, 327, 323, 288, 287, 15, 303, 327, 323, 288, 287, 303, 303, 303, 475, 475, 303,
+ 303, 303, 475, 459, 210, 303, 246, 43, 40, 37, 210, 303, 303, 303, 303, 303, 475,
+ 475, 283, 11, 303, 475, 459, 282, 327, 323, 288, 287, 303, 303, 303, 459, 303, 35,
+ 459, 157, 475, 303, 459, 303, 13, 43, 40, 37, 303, 303, 303, 43, 40, 37, 459, 303,
+ 303, 459, 303, 475, 328, 459, 327, 323, 288, 287, 303, 303, 327, 323, 288, 287,
+ 303, 406, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 406, 303, 406, 303,
+ 303, 406, 303, 303, 303, 303, 303, 303, 406, 303, 406, 303, 406, 303, 303, 303,
+ 303, 303, 303, 303, 235,);
- static public $yy_action = array(269, 8, 133, 295, 335, 80, 282, 219, 7, 84, 128, 178, 255, 276, 113, 102, 13, 83,
- 227, 286, 305, 220, 36, 223, 283, 21, 32, 297, 41, 14, 90, 40, 44, 260, 213, 231,
- 250, 235, 210, 128, 81, 1, 298, 296, 102, 269, 8, 132, 79, 335, 196, 184, 219, 7,
- 84, 26, 297, 461, 101, 113, 39, 24, 278, 227, 461, 305, 220, 171, 206, 222, 21,
- 230, 201, 41, 104, 192, 40, 44, 260, 213, 18, 236, 241, 210, 251, 81, 1, 316, 296,
- 114, 269, 8, 135, 79, 335, 205, 302, 219, 7, 84, 116, 107, 477, 477, 113, 33, 197,
- 477, 227, 266, 305, 220, 326, 223, 31, 21, 29, 215, 41, 311, 78, 40, 44, 260, 213,
- 296, 250, 256, 210, 190, 81, 1, 3, 296, 307, 269, 8, 134, 79, 335, 205, 302, 219,
- 7, 84, 232, 18, 296, 294, 113, 334, 85, 323, 227, 136, 305, 220, 328, 223, 29, 21,
- 183, 101, 41, 234, 78, 40, 44, 260, 213, 137, 250, 314, 210, 139, 81, 1, 10, 296,
- 101, 269, 8, 135, 79, 335, 195, 154, 219, 7, 84, 322, 232, 81, 114, 113, 296, 329,
- 94, 227, 315, 305, 220, 326, 212, 120, 21, 168, 215, 41, 281, 114, 40, 44, 260,
- 213, 296, 250, 222, 210, 265, 81, 1, 104, 296, 211, 269, 8, 135, 79, 335, 193, 302,
- 219, 7, 84, 242, 239, 249, 217, 113, 11, 215, 289, 227, 136, 305, 220, 228, 223,
- 222, 21, 238, 149, 41, 104, 78, 40, 44, 260, 213, 461, 250, 329, 210, 6, 81, 1,
- 461, 296, 2, 269, 8, 136, 79, 335, 205, 158, 219, 7, 84, 190, 211, 81, 101, 113,
- 296, 329, 93, 227, 12, 305, 220, 18, 223, 244, 34, 268, 448, 41, 281, 449, 40, 44,
- 260, 213, 191, 250, 36, 210, 448, 81, 1, 449, 296, 14, 269, 8, 135, 79, 335, 205,
- 15, 219, 7, 84, 186, 293, 152, 14, 113, 16, 214, 5, 227, 165, 305, 220, 329, 194,
- 20, 21, 140, 101, 41, 115, 448, 40, 44, 260, 213, 281, 250, 303, 210, 264, 81, 1,
- 448, 296, 169, 269, 8, 131, 79, 335, 205, 176, 219, 7, 84, 137, 28, 296, 310, 113,
- 185, 293, 10, 227, 275, 305, 220, 296, 223, 175, 4, 281, 143, 41, 144, 192, 40, 44,
- 260, 213, 35, 250, 329, 210, 329, 81, 1, 270, 296, 308, 269, 8, 135, 79, 335, 198,
- 121, 219, 7, 84, 190, 292, 17, 232, 113, 166, 284, 281, 227, 141, 305, 220, 211,
- 223, 319, 21, 299, 211, 41, 329, 211, 40, 44, 260, 213, 258, 250, 363, 210, 221,
- 81, 1, 281, 296, 6, 269, 8, 136, 79, 335, 205, 177, 219, 7, 84, 167, 211, 159, 22,
- 113, 104, 211, 156, 227, 300, 305, 220, 329, 223, 274, 34, 359, 329, 41, 172, 192,
- 40, 44, 260, 213, 95, 250, 318, 210, 329, 81, 273, 36, 296, 257, 292, 17, 181, 79,
- 14, 284, 309, 277, 254, 262, 263, 259, 178, 211, 25, 36, 269, 8, 187, 331, 335,
- 261, 14, 219, 7, 84, 192, 303, 211, 38, 113, 237, 321, 180, 227, 267, 305, 220,
- 153, 121, 312, 179, 192, 272, 108, 215, 209, 211, 118, 69, 112, 43, 42, 37, 248,
- 102, 86, 189, 252, 279, 182, 293, 150, 271, 204, 317, 176, 297, 288, 287, 285, 280,
- 329, 281, 312, 174, 87, 202, 330, 215, 209, 170, 118, 69, 112, 43, 42, 37, 138,
- 102, 192, 402, 252, 279, 38, 216, 88, 271, 204, 317, 211, 297, 288, 287, 285, 280,
- 310, 402, 105, 253, 404, 164, 332, 312, 402, 211, 89, 448, 215, 209, 305, 129, 61,
- 106, 163, 238, 404, 142, 102, 448, 305, 252, 279, 404, 305, 305, 271, 204, 317,
- 305, 297, 312, 155, 305, 305, 305, 215, 209, 211, 129, 73, 112, 211, 43, 42, 37,
- 102, 305, 404, 252, 279, 305, 292, 17, 271, 204, 317, 284, 297, 305, 288, 287, 285,
- 280, 404, 203, 305, 477, 477, 312, 305, 404, 477, 305, 215, 209, 305, 129, 73, 112,
- 43, 42, 37, 305, 102, 305, 305, 252, 279, 305, 305, 224, 271, 204, 317, 324, 297,
- 288, 287, 285, 280, 305, 305, 208, 312, 305, 477, 305, 305, 215, 209, 211, 129, 50,
- 106, 305, 117, 305, 305, 102, 148, 401, 252, 279, 92, 325, 448, 271, 204, 317, 329,
- 297, 269, 9, 327, 218, 335, 401, 448, 219, 7, 84, 305, 320, 401, 305, 113, 325,
- 192, 305, 227, 305, 305, 220, 269, 9, 327, 305, 335, 305, 305, 219, 7, 84, 305, 43,
- 42, 37, 113, 305, 305, 305, 227, 305, 305, 220, 305, 305, 305, 305, 291, 27, 288,
- 287, 285, 280, 305, 305, 305, 312, 305, 305, 305, 305, 215, 209, 305, 129, 73, 112,
- 211, 305, 290, 27, 102, 305, 305, 252, 279, 305, 369, 305, 271, 204, 317, 305, 297,
- 225, 305, 312, 305, 211, 305, 207, 215, 209, 36, 129, 54, 112, 305, 188, 305, 14,
- 102, 145, 448, 252, 279, 91, 305, 305, 271, 204, 317, 329, 297, 312, 448, 292, 17,
- 305, 215, 209, 284, 129, 65, 112, 305, 43, 42, 37, 102, 192, 305, 252, 279, 305,
- 305, 305, 271, 204, 317, 305, 297, 312, 288, 287, 285, 280, 215, 209, 305, 99, 67,
- 112, 305, 305, 229, 305, 102, 305, 305, 252, 279, 305, 305, 305, 271, 204, 317,
- 312, 297, 211, 305, 305, 215, 209, 305, 129, 45, 112, 305, 246, 305, 305, 102, 162,
- 305, 252, 279, 184, 305, 305, 271, 204, 317, 329, 297, 312, 39, 24, 278, 305, 215,
- 209, 305, 129, 56, 112, 305, 43, 42, 37, 102, 192, 305, 252, 279, 305, 305, 305,
- 271, 204, 317, 305, 297, 312, 288, 287, 285, 280, 215, 209, 305, 96, 55, 112, 305,
- 305, 305, 305, 102, 305, 305, 252, 279, 305, 305, 305, 271, 204, 317, 312, 297,
- 211, 305, 305, 215, 97, 305, 82, 47, 103, 305, 247, 305, 305, 102, 151, 305, 252,
- 279, 184, 305, 305, 271, 204, 317, 329, 297, 312, 39, 24, 278, 305, 215, 209, 305,
- 129, 71, 112, 305, 43, 42, 37, 102, 192, 305, 252, 279, 305, 305, 305, 271, 204,
- 317, 305, 297, 312, 288, 287, 285, 280, 215, 209, 305, 129, 59, 112, 305, 305, 305,
- 305, 102, 305, 305, 252, 279, 305, 305, 305, 271, 204, 317, 312, 297, 211, 305,
- 305, 215, 209, 305, 129, 58, 112, 305, 305, 305, 305, 102, 160, 305, 252, 279, 184,
- 305, 305, 271, 204, 317, 329, 297, 312, 39, 24, 278, 305, 215, 209, 305, 129, 53,
- 112, 226, 43, 42, 37, 102, 192, 305, 252, 279, 305, 305, 305, 271, 204, 317, 305,
- 297, 312, 288, 287, 285, 280, 215, 209, 305, 129, 60, 112, 305, 305, 305, 305, 102,
- 305, 305, 252, 279, 305, 305, 305, 271, 204, 317, 312, 297, 211, 305, 305, 215,
- 209, 305, 100, 64, 112, 305, 305, 305, 305, 102, 146, 305, 252, 279, 184, 305, 305,
- 271, 204, 317, 329, 297, 312, 39, 24, 278, 305, 215, 209, 305, 129, 61, 112, 245,
- 43, 42, 37, 102, 192, 305, 252, 279, 305, 305, 305, 271, 204, 317, 305, 297, 312,
- 288, 287, 285, 280, 215, 200, 305, 129, 63, 112, 305, 305, 305, 305, 102, 305, 305,
- 252, 279, 305, 305, 305, 271, 204, 317, 312, 297, 211, 305, 305, 215, 209, 305,
- 111, 51, 112, 305, 305, 305, 305, 102, 147, 305, 252, 279, 184, 305, 305, 271, 204,
- 317, 329, 297, 312, 39, 24, 278, 305, 215, 209, 305, 129, 49, 112, 305, 43, 42, 37,
- 102, 192, 305, 252, 279, 305, 305, 305, 271, 204, 317, 305, 297, 312, 288, 287,
- 285, 280, 215, 209, 305, 129, 75, 112, 305, 305, 305, 305, 102, 305, 305, 252, 279,
- 305, 305, 305, 271, 204, 317, 312, 297, 305, 305, 305, 215, 209, 305, 129, 76, 112,
- 305, 305, 305, 305, 102, 161, 305, 252, 279, 184, 305, 305, 271, 204, 317, 329,
- 297, 312, 39, 24, 278, 305, 215, 98, 305, 82, 46, 103, 305, 305, 305, 305, 102,
- 192, 305, 252, 279, 305, 305, 305, 271, 204, 317, 305, 297, 312, 305, 305, 305,
- 305, 215, 209, 305, 129, 70, 112, 305, 305, 305, 305, 102, 305, 305, 252, 279, 305,
- 305, 305, 271, 204, 317, 312, 297, 305, 305, 305, 215, 209, 305, 129, 57, 112, 305,
- 305, 305, 305, 102, 305, 305, 252, 279, 305, 305, 305, 271, 204, 317, 305, 297,
- 312, 305, 305, 305, 305, 215, 199, 305, 109, 62, 112, 305, 305, 305, 305, 102, 305,
- 305, 252, 279, 305, 305, 305, 271, 204, 317, 305, 297, 312, 305, 305, 305, 305,
- 215, 209, 305, 129, 72, 112, 305, 305, 305, 305, 102, 305, 305, 252, 279, 305, 305,
- 305, 271, 204, 317, 312, 297, 305, 305, 305, 215, 209, 305, 129, 77, 112, 305, 305,
- 305, 305, 102, 305, 305, 252, 279, 305, 305, 305, 271, 204, 317, 305, 297, 312,
- 305, 305, 305, 305, 215, 209, 305, 129, 68, 112, 305, 305, 305, 305, 102, 305, 305,
- 252, 279, 305, 305, 305, 271, 204, 317, 305, 297, 312, 305, 305, 305, 305, 215,
- 209, 305, 129, 74, 112, 305, 305, 305, 305, 102, 305, 305, 252, 279, 305, 305, 305,
- 271, 204, 317, 312, 297, 305, 305, 305, 215, 209, 305, 129, 48, 112, 305, 305, 305,
- 305, 102, 305, 305, 252, 279, 414, 414, 305, 271, 204, 317, 305, 297, 312, 305,
- 305, 305, 305, 215, 209, 305, 129, 66, 112, 305, 305, 305, 305, 102, 305, 305, 252,
- 279, 211, 305, 305, 271, 204, 317, 305, 297, 448, 305, 414, 414, 414, 533, 52, 243,
- 239, 249, 217, 305, 448, 215, 305, 305, 30, 305, 36, 414, 414, 414, 414, 305, 233,
- 14, 305, 305, 305, 305, 43, 42, 37, 305, 477, 477, 312, 23, 305, 477, 461, 215,
- 209, 211, 127, 305, 112, 288, 287, 285, 280, 102, 305, 301, 357, 313, 305, 292, 17,
- 271, 204, 317, 284, 297, 305, 305, 302, 305, 461, 36, 36, 461, 36, 477, 157, 461,
- 14, 14, 305, 14, 305, 43, 42, 37, 305, 305, 305, 312, 305, 211, 78, 305, 215, 209,
- 305, 130, 305, 112, 288, 287, 285, 280, 102, 305, 305, 305, 240, 305, 292, 17, 271,
- 204, 317, 284, 297, 36, 305, 305, 305, 305, 305, 305, 14, 36, 305, 173, 312, 43,
- 42, 37, 14, 215, 209, 305, 122, 305, 112, 305, 305, 305, 305, 102, 304, 305, 288,
- 287, 285, 280, 305, 271, 204, 317, 305, 297, 302, 305, 312, 305, 36, 305, 305, 215,
- 209, 305, 123, 14, 112, 312, 305, 305, 305, 102, 215, 209, 305, 124, 305, 112, 78,
- 271, 204, 317, 102, 297, 305, 305, 305, 305, 305, 305, 271, 204, 317, 312, 297,
- 305, 305, 305, 215, 209, 305, 119, 305, 112, 305, 305, 305, 305, 102, 305, 305,
- 233, 305, 305, 305, 305, 271, 204, 317, 305, 297, 477, 477, 312, 32, 305, 477, 461,
- 215, 209, 305, 126, 305, 112, 305, 305, 305, 305, 102, 305, 305, 233, 305, 305,
- 305, 305, 271, 204, 317, 305, 297, 477, 477, 305, 305, 461, 477, 461, 461, 312,
- 477, 19, 461, 211, 215, 209, 305, 125, 305, 112, 305, 477, 477, 305, 102, 305, 477,
- 461, 305, 305, 305, 305, 271, 204, 317, 461, 297, 305, 461, 305, 477, 305, 461,
- 333, 305, 211, 305, 305, 305, 305, 305, 43, 42, 37, 305, 461, 305, 305, 461, 305,
- 477, 305, 461, 305, 305, 233, 110, 305, 288, 287, 285, 280, 305, 306, 305, 477,
- 477, 305, 305, 305, 477, 461, 305, 43, 42, 37, 477, 477, 305, 305, 305, 477, 461,
- 305, 305, 305, 305, 305, 305, 305, 288, 287, 285, 280, 305, 305, 305, 305, 305,
- 461, 305, 305, 461, 408, 477, 305, 461, 305, 305, 305, 461, 305, 305, 461, 408,
- 477, 408, 461, 305, 408, 305, 305, 305, 305, 305, 305, 408, 305, 408, 305, 408,
- 305, 305, 305, 305, 305, 305, 305, 232,);
+ static public $yy_lookahead = array(11, 12, 13, 1, 15, 16, 76, 18, 19, 20, 7, 8, 9, 22, 25, 85, 86, 87, 29, 13, 31,
+ 32, 16, 34, 75, 36, 77, 78, 39, 80, 100, 42, 43, 44, 45, 71, 47, 46, 49, 75, 51,
+ 52, 53, 54, 80, 11, 12, 13, 59, 15, 16, 22, 18, 19, 20, 49, 92, 51, 66, 25, 54,
+ 69, 65, 29, 30, 31, 32, 70, 34, 14, 36, 35, 17, 39, 16, 46, 42, 43, 44, 45, 26,
+ 47, 53, 49, 10, 51, 52, 33, 54, 53, 11, 12, 13, 59, 15, 16, 22, 18, 19, 20, 26,
+ 104, 105, 48, 25, 12, 13, 33, 29, 16, 31, 32, 75, 34, 77, 36, 13, 80, 39, 16,
+ 46, 42, 43, 44, 45, 45, 47, 34, 49, 10, 51, 52, 52, 54, 36, 11, 12, 13, 59, 15,
+ 16, 22, 18, 19, 20, 26, 48, 54, 14, 25, 13, 34, 33, 29, 51, 31, 32, 54, 34, 94,
+ 36, 96, 97, 39, 97, 46, 42, 43, 44, 45, 14, 47, 75, 49, 77, 51, 52, 80, 54, 45,
+ 11, 12, 13, 59, 15, 16, 52, 18, 19, 20, 36, 54, 11, 12, 25, 21, 100, 16, 29, 45,
+ 31, 32, 48, 34, 16, 36, 14, 53, 39, 35, 1, 42, 43, 44, 45, 93, 47, 45, 49, 10,
+ 51, 52, 1, 54, 52, 11, 12, 13, 59, 15, 16, 50, 18, 19, 20, 26, 27, 45, 50, 25,
+ 12, 13, 33, 29, 16, 31, 32, 26, 34, 14, 36, 1, 17, 39, 33, 1, 42, 43, 44, 45,
+ 10, 47, 22, 49, 10, 51, 52, 1, 54, 17, 11, 12, 13, 59, 15, 16, 10, 18, 19, 20,
+ 26, 45, 54, 48, 25, 36, 46, 33, 29, 53, 31, 32, 26, 34, 93, 36, 95, 48, 39, 33,
+ 60, 42, 43, 44, 45, 81, 47, 35, 49, 37, 51, 52, 1, 54, 17, 11, 12, 13, 59, 15,
+ 16, 10, 18, 19, 20, 11, 12, 11, 12, 25, 16, 101, 16, 29, 14, 31, 32, 26, 34, 93,
+ 36, 95, 22, 39, 33, 48, 42, 43, 44, 45, 81, 47, 76, 49, 41, 51, 52, 35, 54, 37,
+ 11, 12, 13, 59, 15, 16, 50, 18, 19, 20, 11, 12, 11, 12, 25, 16, 100, 16, 29, 1,
+ 31, 32, 28, 34, 2, 36, 96, 97, 39, 72, 36, 42, 43, 44, 45, 17, 47, 76, 49, 82,
+ 51, 52, 48, 54, 16, 11, 12, 13, 59, 15, 16, 50, 18, 19, 20, 75, 35, 100, 37, 25,
+ 80, 100, 101, 29, 13, 31, 32, 65, 34, 37, 36, 13, 70, 39, 16, 91, 42, 43, 44,
+ 45, 16, 47, 98, 49, 17, 51, 52, 36, 54, 36, 11, 12, 13, 59, 15, 16, 12, 18, 19,
+ 20, 1, 48, 4, 76, 25, 54, 16, 105, 29, 10, 31, 32, 45, 34, 53, 36, 17, 36, 39,
+ 52, 36, 42, 43, 44, 45, 26, 47, 100, 49, 16, 51, 65, 33, 54, 80, 36, 70, 71, 59,
+ 73, 74, 75, 64, 65, 66, 67, 80, 48, 70, 83, 84, 76, 98, 91, 88, 89, 90, 72, 92,
+ 1, 98, 16, 3, 4, 5, 6, 7, 82, 102, 103, 11, 12, 72, 72, 15, 100, 76, 18, 19, 20,
+ 1, 16, 82, 82, 25, 100, 28, 65, 29, 51, 31, 32, 70, 71, 26, 73, 74, 75, 72, 72,
+ 100, 33, 80, 72, 10, 83, 84, 76, 82, 82, 88, 89, 90, 82, 92, 16, 85, 86, 87, 45,
+ 65, 99, 95, 72, 51, 70, 71, 76, 73, 74, 75, 100, 53, 82, 93, 80, 72, 13, 83, 84,
+ 76, 93, 72, 88, 89, 90, 82, 92, 1, 2, 65, 100, 82, 72, 99, 70, 71, 53, 73, 74,
+ 75, 16, 77, 82, 100, 80, 16, 10, 83, 84, 36, 14, 34, 88, 89, 90, 65, 92, 54, 72,
+ 13, 70, 71, 26, 73, 74, 75, 72, 77, 82, 33, 80, 23, 36, 83, 84, 82, 82, 72, 88,
+ 89, 90, 95, 92, 4, 48, 96, 97, 82, 81, 95, 11, 12, 13, 93, 15, 80, 80, 18, 19,
+ 20, 95, 80, 80, 95, 25, 80, 94, 65, 29, 79, 31, 32, 70, 71, 8, 73, 74, 75, 68,
+ 106, 93, 93, 80, 106, 93, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 106, 106,
+ 106, 59, 60, 65, 99, 106, 106, 106, 70, 71, 106, 73, 74, 75, 106, 38, 39, 40,
+ 80, 106, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 4, 55, 56, 57, 58,
+ 106, 106, 11, 12, 13, 103, 15, 106, 106, 18, 19, 20, 106, 106, 106, 106, 25,
+ 106, 106, 65, 29, 106, 31, 32, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80,
+ 106, 106, 83, 84, 106, 11, 12, 88, 89, 90, 16, 92, 106, 65, 106, 59, 60, 106,
+ 70, 71, 26, 73, 74, 75, 106, 106, 106, 33, 80, 72, 106, 83, 84, 76, 106, 106,
+ 88, 89, 90, 82, 92, 65, 85, 86, 87, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106,
+ 106, 80, 100, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106,
+ 106, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 106, 106, 83, 84,
+ 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106, 70, 71, 106, 73, 74,
+ 75, 106, 106, 106, 106, 80, 72, 106, 83, 84, 76, 106, 106, 88, 89, 90, 82, 92,
+ 65, 85, 86, 87, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 100, 106,
+ 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106, 70, 71, 106,
+ 73, 74, 75, 106, 106, 106, 106, 80, 72, 106, 83, 84, 76, 106, 106, 88, 89, 90,
+ 82, 92, 65, 85, 86, 87, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80,
+ 100, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106,
+ 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 72, 106, 83, 84, 76, 106, 106,
+ 88, 89, 90, 82, 92, 65, 85, 86, 87, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106,
+ 106, 80, 100, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106,
+ 106, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 72, 106, 83, 84, 76,
+ 106, 106, 88, 89, 90, 82, 92, 65, 85, 86, 87, 106, 70, 71, 106, 73, 74, 75, 106,
+ 106, 106, 106, 80, 100, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65,
+ 106, 106, 106, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 106, 106,
+ 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106, 70, 71, 106,
+ 73, 74, 75, 106, 106, 106, 106, 80, 106, 106, 83, 84, 106, 106, 106, 88, 89, 90,
+ 106, 92, 65, 106, 106, 106, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106,
+ 80, 106, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106, 106,
+ 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 106, 106, 83, 84, 106,
+ 106, 106, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106, 70, 71, 106, 73, 74, 75,
+ 106, 106, 106, 106, 80, 106, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92,
+ 65, 106, 106, 106, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 106,
+ 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106, 70, 71,
+ 106, 73, 74, 75, 106, 106, 106, 106, 80, 106, 106, 83, 84, 106, 106, 106, 88,
+ 89, 90, 106, 92, 65, 106, 106, 106, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106,
+ 106, 80, 106, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106,
+ 106, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 106, 106, 83, 84,
+ 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106, 70, 71, 106, 73, 74,
+ 75, 106, 106, 106, 106, 80, 106, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106,
+ 92, 65, 106, 106, 106, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80,
+ 106, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106,
+ 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 106, 106, 83, 84, 106, 106,
+ 106, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106, 70, 71, 106, 73, 74, 75, 106,
+ 106, 106, 106, 80, 106, 106, 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65,
+ 106, 106, 106, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 106, 106,
+ 83, 84, 106, 106, 106, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106, 70, 71, 106,
+ 73, 74, 75, 106, 106, 106, 106, 80, 106, 106, 83, 84, 106, 106, 106, 88, 89, 90,
+ 106, 92, 65, 106, 106, 106, 106, 70, 71, 106, 73, 74, 75, 106, 106, 106, 106,
+ 80, 106, 106, 83, 84, 106, 1, 2, 88, 89, 90, 106, 92, 65, 106, 106, 106, 106,
+ 70, 71, 106, 73, 74, 75, 106, 106, 106, 106, 80, 106, 106, 83, 84, 1, 106, 106,
+ 88, 89, 90, 106, 92, 36, 10, 38, 39, 40, 106, 62, 63, 64, 65, 66, 67, 48, 106,
+ 70, 106, 106, 26, 106, 55, 56, 57, 58, 106, 33, 106, 106, 106, 106, 38, 39, 40,
+ 1, 106, 106, 65, 106, 106, 106, 106, 70, 71, 1, 73, 106, 75, 55, 56, 57, 58, 80,
+ 106, 106, 106, 84, 24, 106, 26, 88, 89, 90, 106, 92, 106, 33, 106, 106, 26, 106,
+ 38, 39, 40, 106, 106, 33, 106, 106, 106, 106, 38, 39, 40, 106, 106, 106, 65, 55,
+ 56, 57, 58, 70, 71, 1, 73, 106, 75, 55, 56, 57, 58, 80, 10, 106, 106, 84, 106,
+ 106, 106, 88, 89, 90, 65, 92, 2, 106, 106, 70, 71, 106, 73, 106, 75, 11, 12,
+ 106, 14, 80, 16, 17, 38, 39, 40, 106, 106, 88, 89, 90, 106, 92, 106, 106, 106,
+ 106, 106, 106, 65, 55, 56, 57, 58, 70, 71, 106, 73, 106, 75, 45, 106, 106, 48,
+ 80, 50, 106, 52, 2, 106, 106, 106, 88, 89, 90, 106, 92, 11, 12, 2, 14, 106, 16,
+ 17, 106, 106, 106, 106, 11, 12, 106, 106, 2, 16, 17, 11, 12, 106, 106, 106, 16,
+ 11, 12, 106, 106, 106, 16, 17, 106, 106, 26, 45, 28, 106, 48, 106, 50, 33, 52,
+ 106, 106, 106, 45, 106, 106, 48, 65, 50, 106, 52, 53, 70, 71, 106, 73, 45, 75,
+ 106, 48, 106, 50, 80, 52, 106, 106, 106, 106, 106, 106, 88, 89, 90, 106, 92, 65,
+ 1, 2, 106, 106, 70, 71, 106, 73, 106, 75, 106, 71, 106, 106, 80, 75, 106, 106,
+ 106, 106, 80, 106, 88, 89, 90, 65, 92, 1, 106, 89, 70, 71, 92, 73, 106, 75, 65,
+ 38, 39, 40, 80, 70, 71, 106, 73, 106, 75, 106, 88, 89, 90, 80, 92, 27, 55, 56,
+ 57, 58, 1, 88, 89, 90, 1, 92, 38, 39, 40, 1, 106, 106, 106, 10, 106, 106, 106,
+ 106, 106, 106, 21, 106, 106, 55, 56, 57, 58, 106, 106, 106, 106, 106, 106, 106,
+ 106, 106, 106, 38, 39, 40, 1, 38, 39, 40, 1, 106, 38, 39, 40, 10, 1, 106, 106,
+ 10, 55, 56, 57, 58, 55, 56, 57, 58, 106, 55, 56, 57, 58, 106, 60, 106, 106, 106,
+ 106, 106, 106, 106, 106, 38, 39, 40, 106, 38, 39, 40, 1, 106, 37, 38, 39, 40,
+ 106, 106, 106, 106, 55, 56, 57, 58, 55, 56, 57, 58, 2, 106, 55, 56, 57, 58, 106,
+ 106, 106, 11, 12, 106, 106, 106, 16, 17, 1, 106, 37, 38, 39, 40, 1, 106, 106,
+ 106, 106, 106, 11, 12, 11, 12, 106, 16, 17, 16, 55, 56, 57, 58, 106, 106, 106,
+ 45, 106, 26, 48, 28, 50, 106, 52, 106, 33, 38, 39, 40, 106, 106, 106, 38, 39,
+ 40, 45, 106, 106, 48, 106, 50, 53, 52, 55, 56, 57, 58, 106, 106, 55, 56, 57, 58,
+ 106, 10, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 21, 106, 23, 106,
+ 106, 26, 106, 106, 106, 106, 106, 106, 33, 106, 35, 106, 37, 106, 106, 106, 106,
+ 106, 106, 106, 45,);
- static public $yy_lookahead = array(12, 13, 14, 17, 16, 17, 72, 19, 20, 21, 76, 8, 9, 10, 26, 81, 22, 17, 30, 31,
- 32, 33, 27, 35, 90, 37, 15, 93, 40, 34, 36, 43, 44, 45, 46, 72, 48, 51, 50, 76,
- 52, 53, 98, 55, 81, 12, 13, 14, 60, 16, 17, 77, 19, 20, 21, 15, 93, 46, 18, 26,
- 86, 87, 88, 30, 53, 32, 33, 94, 35, 76, 37, 78, 79, 40, 81, 101, 43, 44, 45, 46,
- 36, 48, 38, 50, 14, 52, 53, 54, 55, 49, 12, 13, 14, 60, 16, 17, 23, 19, 20, 21,
- 17, 81, 12, 13, 26, 13, 14, 17, 30, 17, 32, 33, 66, 35, 15, 37, 15, 71, 40, 99,
- 47, 43, 44, 45, 46, 55, 48, 35, 50, 101, 52, 53, 36, 55, 61, 12, 13, 14, 60, 16,
- 17, 23, 19, 20, 21, 46, 36, 55, 38, 26, 54, 105, 106, 30, 14, 32, 33, 17, 35,
- 15, 37, 14, 18, 40, 17, 47, 43, 44, 45, 46, 46, 48, 54, 50, 14, 52, 53, 53, 55,
- 18, 12, 13, 14, 60, 16, 17, 73, 19, 20, 21, 50, 46, 52, 49, 26, 55, 83, 37, 30,
- 54, 32, 33, 66, 35, 17, 37, 94, 71, 40, 96, 49, 43, 44, 45, 46, 55, 48, 76, 50,
- 78, 52, 53, 81, 55, 1, 12, 13, 14, 60, 16, 17, 23, 19, 20, 21, 65, 66, 67, 68,
- 26, 13, 71, 106, 30, 14, 32, 33, 17, 35, 76, 37, 78, 73, 40, 81, 47, 43, 44, 45,
- 46, 46, 48, 83, 50, 37, 52, 53, 53, 55, 37, 12, 13, 14, 60, 16, 17, 73, 19, 20,
- 21, 101, 1, 52, 18, 26, 55, 83, 94, 30, 29, 32, 33, 36, 35, 38, 37, 17, 37, 40,
- 96, 37, 43, 44, 45, 46, 17, 48, 27, 50, 49, 52, 53, 49, 55, 34, 12, 13, 14, 60,
- 16, 17, 27, 19, 20, 21, 97, 98, 73, 34, 26, 13, 14, 37, 30, 17, 32, 33, 83, 35,
- 42, 37, 14, 18, 40, 49, 37, 43, 44, 45, 46, 96, 48, 102, 50, 35, 52, 53, 49, 55,
- 52, 12, 13, 14, 60, 16, 17, 77, 19, 20, 21, 46, 15, 55, 95, 26, 97, 98, 53, 30,
- 23, 32, 33, 55, 35, 94, 37, 96, 73, 40, 73, 101, 43, 44, 45, 46, 24, 48, 83, 50,
- 83, 52, 53, 17, 55, 92, 12, 13, 14, 60, 16, 17, 99, 19, 20, 21, 101, 12, 13, 46,
- 26, 94, 17, 96, 30, 73, 32, 33, 1, 35, 54, 37, 17, 1, 40, 83, 1, 43, 44, 45, 46,
- 38, 48, 11, 50, 18, 52, 53, 96, 55, 37, 12, 13, 14, 60, 16, 17, 77, 19, 20, 21,
- 76, 1, 73, 29, 26, 81, 1, 73, 30, 17, 32, 33, 83, 35, 35, 37, 11, 83, 40, 73,
- 101, 43, 44, 45, 46, 82, 48, 54, 50, 83, 52, 67, 27, 55, 70, 12, 13, 77, 60, 34,
- 17, 14, 3, 4, 5, 6, 7, 8, 1, 2, 27, 12, 13, 77, 54, 16, 5, 34, 19, 20, 21, 101,
- 102, 1, 2, 26, 17, 92, 82, 30, 11, 32, 33, 52, 99, 66, 82, 101, 17, 80, 71, 72,
- 1, 74, 75, 76, 39, 40, 41, 83, 81, 81, 11, 84, 85, 97, 98, 73, 89, 90, 91, 77,
- 93, 56, 57, 58, 59, 83, 96, 66, 94, 81, 103, 104, 71, 72, 94, 74, 75, 76, 39,
- 40, 41, 81, 81, 101, 11, 84, 85, 2, 15, 81, 89, 90, 91, 1, 93, 56, 57, 58, 59,
- 95, 27, 69, 9, 11, 94, 104, 66, 34, 1, 81, 37, 71, 72, 107, 74, 75, 76, 94, 78,
- 27, 28, 81, 49, 107, 84, 85, 34, 107, 107, 89, 90, 91, 107, 93, 66, 28, 107,
- 107, 107, 71, 72, 1, 74, 75, 76, 1, 39, 40, 41, 81, 107, 11, 84, 85, 107, 12,
- 13, 89, 90, 91, 17, 93, 107, 56, 57, 58, 59, 27, 100, 107, 12, 13, 66, 107, 34,
- 17, 107, 71, 72, 107, 74, 75, 76, 39, 40, 41, 107, 81, 107, 107, 84, 85, 107,
- 107, 51, 89, 90, 91, 54, 93, 56, 57, 58, 59, 107, 107, 100, 66, 107, 51, 107,
- 107, 71, 72, 1, 74, 75, 76, 107, 78, 107, 107, 81, 73, 11, 84, 85, 77, 5, 37,
- 89, 90, 91, 83, 93, 12, 13, 14, 46, 16, 27, 49, 19, 20, 21, 107, 54, 34, 107,
- 26, 5, 101, 107, 30, 107, 32, 33, 12, 13, 14, 107, 16, 107, 107, 19, 20, 21,
- 107, 39, 40, 41, 26, 107, 107, 107, 30, 107, 32, 33, 107, 107, 107, 107, 60, 61,
- 56, 57, 58, 59, 107, 107, 107, 66, 107, 107, 107, 107, 71, 72, 107, 74, 75, 76,
- 1, 107, 60, 61, 81, 107, 107, 84, 85, 107, 11, 107, 89, 90, 91, 107, 93, 18,
- 107, 66, 107, 1, 107, 100, 71, 72, 27, 74, 75, 76, 107, 11, 107, 34, 81, 73, 37,
- 84, 85, 77, 107, 107, 89, 90, 91, 83, 93, 66, 49, 12, 13, 107, 71, 72, 17, 74,
- 75, 76, 107, 39, 40, 41, 81, 101, 107, 84, 85, 107, 107, 107, 89, 90, 91, 107,
- 93, 66, 56, 57, 58, 59, 71, 72, 107, 74, 75, 76, 107, 107, 51, 107, 81, 107,
- 107, 84, 85, 107, 107, 107, 89, 90, 91, 66, 93, 1, 107, 107, 71, 72, 107, 74,
- 75, 76, 107, 11, 107, 107, 81, 73, 107, 84, 85, 77, 107, 107, 89, 90, 91, 83,
- 93, 66, 86, 87, 88, 107, 71, 72, 107, 74, 75, 76, 107, 39, 40, 41, 81, 101, 107,
- 84, 85, 107, 107, 107, 89, 90, 91, 107, 93, 66, 56, 57, 58, 59, 71, 72, 107, 74,
- 75, 76, 107, 107, 107, 107, 81, 107, 107, 84, 85, 107, 107, 107, 89, 90, 91, 66,
- 93, 1, 107, 107, 71, 72, 107, 74, 75, 76, 107, 11, 107, 107, 81, 73, 107, 84,
- 85, 77, 107, 107, 89, 90, 91, 83, 93, 66, 86, 87, 88, 107, 71, 72, 107, 74, 75,
- 76, 107, 39, 40, 41, 81, 101, 107, 84, 85, 107, 107, 107, 89, 90, 91, 107, 93,
- 66, 56, 57, 58, 59, 71, 72, 107, 74, 75, 76, 107, 107, 107, 107, 81, 107, 107,
- 84, 85, 107, 107, 107, 89, 90, 91, 66, 93, 1, 107, 107, 71, 72, 107, 74, 75, 76,
- 107, 107, 107, 107, 81, 73, 107, 84, 85, 77, 107, 107, 89, 90, 91, 83, 93, 66,
- 86, 87, 88, 107, 71, 72, 107, 74, 75, 76, 38, 39, 40, 41, 81, 101, 107, 84, 85,
- 107, 107, 107, 89, 90, 91, 107, 93, 66, 56, 57, 58, 59, 71, 72, 107, 74, 75, 76,
- 107, 107, 107, 107, 81, 107, 107, 84, 85, 107, 107, 107, 89, 90, 91, 66, 93, 1,
- 107, 107, 71, 72, 107, 74, 75, 76, 107, 107, 107, 107, 81, 73, 107, 84, 85, 77,
- 107, 107, 89, 90, 91, 83, 93, 66, 86, 87, 88, 107, 71, 72, 107, 74, 75, 76, 38,
- 39, 40, 41, 81, 101, 107, 84, 85, 107, 107, 107, 89, 90, 91, 107, 93, 66, 56,
- 57, 58, 59, 71, 72, 107, 74, 75, 76, 107, 107, 107, 107, 81, 107, 107, 84, 85,
- 107, 107, 107, 89, 90, 91, 66, 93, 1, 107, 107, 71, 72, 107, 74, 75, 76, 107,
- 107, 107, 107, 81, 73, 107, 84, 85, 77, 107, 107, 89, 90, 91, 83, 93, 66, 86,
- 87, 88, 107, 71, 72, 107, 74, 75, 76, 107, 39, 40, 41, 81, 101, 107, 84, 85,
- 107, 107, 107, 89, 90, 91, 107, 93, 66, 56, 57, 58, 59, 71, 72, 107, 74, 75, 76,
- 107, 107, 107, 107, 81, 107, 107, 84, 85, 107, 107, 107, 89, 90, 91, 66, 93,
- 107, 107, 107, 71, 72, 107, 74, 75, 76, 107, 107, 107, 107, 81, 73, 107, 84, 85,
- 77, 107, 107, 89, 90, 91, 83, 93, 66, 86, 87, 88, 107, 71, 72, 107, 74, 75, 76,
- 107, 107, 107, 107, 81, 101, 107, 84, 85, 107, 107, 107, 89, 90, 91, 107, 93,
- 66, 107, 107, 107, 107, 71, 72, 107, 74, 75, 76, 107, 107, 107, 107, 81, 107,
- 107, 84, 85, 107, 107, 107, 89, 90, 91, 66, 93, 107, 107, 107, 71, 72, 107, 74,
- 75, 76, 107, 107, 107, 107, 81, 107, 107, 84, 85, 107, 107, 107, 89, 90, 91,
- 107, 93, 66, 107, 107, 107, 107, 71, 72, 107, 74, 75, 76, 107, 107, 107, 107,
- 81, 107, 107, 84, 85, 107, 107, 107, 89, 90, 91, 107, 93, 66, 107, 107, 107,
- 107, 71, 72, 107, 74, 75, 76, 107, 107, 107, 107, 81, 107, 107, 84, 85, 107,
- 107, 107, 89, 90, 91, 66, 93, 107, 107, 107, 71, 72, 107, 74, 75, 76, 107, 107,
- 107, 107, 81, 107, 107, 84, 85, 107, 107, 107, 89, 90, 91, 107, 93, 66, 107,
- 107, 107, 107, 71, 72, 107, 74, 75, 76, 107, 107, 107, 107, 81, 107, 107, 84,
- 85, 107, 107, 107, 89, 90, 91, 107, 93, 66, 107, 107, 107, 107, 71, 72, 107, 74,
- 75, 76, 107, 107, 107, 107, 81, 107, 107, 84, 85, 107, 107, 107, 89, 90, 91, 66,
- 93, 107, 107, 107, 71, 72, 107, 74, 75, 76, 107, 107, 107, 107, 81, 107, 107,
- 84, 85, 1, 2, 107, 89, 90, 91, 107, 93, 66, 107, 107, 107, 107, 71, 72, 107, 74,
- 75, 76, 107, 107, 107, 107, 81, 107, 107, 84, 85, 1, 107, 107, 89, 90, 91, 107,
- 93, 37, 107, 39, 40, 41, 63, 64, 65, 66, 67, 68, 107, 49, 71, 107, 107, 25, 107,
- 27, 56, 57, 58, 59, 107, 2, 34, 107, 107, 107, 107, 39, 40, 41, 107, 12, 13, 66,
- 15, 107, 17, 18, 71, 72, 1, 74, 107, 76, 56, 57, 58, 59, 81, 107, 11, 11, 85,
- 107, 12, 13, 89, 90, 91, 17, 93, 107, 107, 23, 107, 46, 27, 27, 49, 27, 51, 29,
- 53, 34, 34, 107, 34, 107, 39, 40, 41, 107, 107, 107, 66, 107, 1, 47, 107, 71,
- 72, 107, 74, 107, 76, 56, 57, 58, 59, 81, 107, 107, 107, 85, 107, 12, 13, 89,
- 90, 91, 17, 93, 27, 107, 107, 107, 107, 107, 107, 34, 27, 107, 29, 66, 39, 40,
- 41, 34, 71, 72, 107, 74, 107, 76, 107, 107, 107, 107, 81, 11, 107, 56, 57, 58,
- 59, 107, 89, 90, 91, 107, 93, 23, 107, 66, 107, 27, 107, 107, 71, 72, 107, 74,
- 34, 76, 66, 107, 107, 107, 81, 71, 72, 107, 74, 107, 76, 47, 89, 90, 91, 81, 93,
- 107, 107, 107, 107, 107, 107, 89, 90, 91, 66, 93, 107, 107, 107, 71, 72, 107,
- 74, 107, 76, 107, 107, 107, 107, 81, 107, 107, 2, 107, 107, 107, 107, 89, 90,
- 91, 107, 93, 12, 13, 66, 15, 107, 17, 18, 71, 72, 107, 74, 107, 76, 107, 107,
- 107, 107, 81, 107, 107, 2, 107, 107, 107, 107, 89, 90, 91, 107, 93, 12, 13, 107,
- 107, 46, 17, 18, 49, 66, 51, 2, 53, 1, 71, 72, 107, 74, 107, 76, 107, 12, 13,
- 107, 81, 107, 17, 18, 107, 107, 107, 107, 89, 90, 91, 46, 93, 107, 49, 107, 51,
- 107, 53, 54, 107, 1, 107, 107, 107, 107, 107, 39, 40, 41, 107, 46, 107, 107, 49,
- 107, 51, 107, 53, 107, 107, 2, 22, 107, 56, 57, 58, 59, 107, 61, 107, 12, 13,
- 107, 107, 107, 17, 18, 107, 39, 40, 41, 12, 13, 107, 107, 107, 17, 18, 107, 107,
- 107, 107, 107, 107, 107, 56, 57, 58, 59, 107, 107, 107, 107, 107, 46, 107, 107,
- 49, 11, 51, 107, 53, 107, 107, 107, 46, 107, 107, 49, 22, 51, 24, 53, 107, 27,
- 107, 107, 107, 107, 107, 107, 34, 107, 36, 107, 38, 107, 107, 107, 107, 107,
- 107, 107, 46,);
-
- const YY_SHIFT_USE_DFLT = - 15;
+ const YY_SHIFT_USE_DFLT = - 12;
const YY_SHIFT_MAX = 238;
- static public $yy_shift_ofst = array(499, 393, 78, 393, 348, 78, 78, 348, - 12, - 12, 33, 78, 78, 78, 78, 168, 78,
- 78, 78, 213, 123, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 303, 78, 78, 78,
- 168, 258, 258, 438, 438, 438, 438, 438, 438, 1609, 1660, 1706, 1706, 1706,
- 1706, 1706, 499, 1912, 1153, 609, 541, 507, 989, 907, 825, 1071, 646, 1880,
- 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 731,
- 731, 140, 725, 804, 230, 465, 280, 160, 747, 1714, 1663, 483, 483, 160, 280,
- 280, 324, 160, 522, 594, 1661, 1749, 642, 715, 317, 842, 40, 404, 3, 144, 404,
- - 5, 460, 327, 431, 161, 294, 147, 147, 426, - 5, 434, 223, 223, 265, 223, 223,
- 223, 223, 223, 223, 265, 223, - 15, 1827, 1857, 1640, 1877, 1931, 1942, 92,
- 645, 11, 90, - 5, 70, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, 214,
- - 5, 70, - 5, 70, - 5, - 5, - 5, - 5, - 5, 124, 124, 227, 124, 356, 124, 214,
- 124, 124, - 5, 70, 124, 124, 223, 223, 595, 587, 587, 223, 265, 232, 223, 265,
- 265, 223, - 15, - 15, - 15, - 15, - 15, 1581, 1970, 575, 694, 660, 260, 118,
- 73, - 6, 96, 256, 295, 308, 145, 44, 110, 208, 263, - 14, 99, 439, 232, 519,
- 521, 511, 509, 487, 83, 187, 101, 372, 279, 0, 297, 288, 481, 452, 371, 307,
- 319, 385, 412, 414, 433, 375, 402,);
+ static public $yy_shift_ofst = array(519, 349, 79, 349, 304, 79, 79, 304, 34, - 11, 34, 79, 394, 79, 79, 124, 79,
+ 169, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 259, 79, 79, 79, 79, 79, 79, 169,
+ 79, 214, 214, 439, 439, 439, 439, 439, 439, 1617, 1577, 1627, 1627, 1627, 1627,
+ 1627, 519, 1944, 1978, 2012, 1903, 1938, 1677, 1836, 1934, 1863, 1898, 1894,
+ 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 695,
+ 695, 6, 660, 459, 311, 103, 221, 411, 745, 1766, 2016, 783, 783, 411, 221, 411,
+ 427, 221, 607, 74, 119, 209, 266, 254, 228, 181, 55, 314, 3, 314, 235, 418,
+ 418, 584, 250, 528, 378, 297, 54, 518, 54, 539, 2, 2, 2, 2, 2, 2, 2, 2, 2, 252,
+ 252, - 12, 1697, 1759, 1748, 1995, 1772, 2014, 93, 361, 359, 134, 54, 137, 54,
+ 137, 54, 54, 54, 54, 54, 54, 54, 54, 80, 54, 54, 137, 137, 54, 54, 54, 54, 54,
+ 172, 54, 172, 444, 172, 320, 80, 172, 172, 172, 54, 172, 172, 687, 594, 2, 252,
+ 2, 382, 382, 2, 2, 252, 252, 2, - 12, - 12, - 12, - 12, - 12, 1550, 2068, 617,
+ 316, 154, 29, 240, 354, 98, 174, 236, 192, 272, 413, 249, 322, 381, 188, 36,
+ - 9, 598, 554, 424, 533, 525, 441, 498, 505, 473, 458, 450, 421, 559, 610, 594,
+ 627, 605, 564, 534, 392, 388, 629, 117, 58, 156, 313,);
- const YY_REDUCE_USE_DFLT = - 67;
+ const YY_REDUCE_USE_DFLT = - 71;
const YY_REDUCE_MAX = 192;
- static public $yy_reduce_ofst = array(1560, 469, 608, 503, 542, 570, 728, 643, 922, 1278, 1360, 1060, 950, 1032,
- 1086, 896, 868, 1004, 786, 1414, 1332, 1114, 1524, 1168, 1224, 1250, 1196,
- 1142, 1306, 1470, 1496, 1388, 1442, 978, 758, 840, 814, 1588, 1639, 1745,
- 1719, 1678, 1708, 1775, 1811, 1259, 931, 931, 1013, 1095, 849, 1177, 170,
- - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26,
- - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 26, - 66,
- 46, 652, - 37, 484, 767, - 7, 136, 351, 113, 203, 254, 141, 314, 179, 278,
- 173, 420, 289, 394, 394, 289, 289, 20, 290, 228, 290, 424, 228, 326, 406, 289,
- 384, 289, 228, 316, 312, 435, 379, 389, 289, 289, 436, 458, 289, 289, 289,
- 289, 289, 289, 228, 289, 289, 476, 476, 476, 476, 476, 476, 502, 472, 476,
- 476, 466, 470, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 482, 466,
- 490, 466, 510, 466, 466, 466, 466, 466, 506, 506, 512, 506, 459, 506, 525,
- 506, 506, 466, 530, 506, 506, 28, 28, 534, 250, 250, 28, - 56, 193, 28, - 56,
- - 56, 28, 112, - 27, 454, 403, 446,);
+ static public $yy_reduce_ofst = array(1530, 426, 482, 656, 545, 515, 623, 571, 1017, 961, 1101, 1325, 933, 793, 849,
+ 821, 1465, 1157, 1129, 1185, 1073, 989, 1045, 1241, 1381, 1437, 1493, 1409,
+ 1269, 1297, 1353, 1213, 708, 737, 905, 877, 765, 1606, 1556, 1632, 1808, 1797,
+ 1771, 1666, 1743, 886, 491, 830, 491, 746, 942, 998, 438, - 70, - 70, - 70,
+ - 70, - 70, - 70, - 70, - 70, - 70, - 70, - 70, - 70, - 70, - 70, - 70, - 70,
+ - 70, - 70, - 70, - 70, - 70, - 70, - 70, - 70, - 70, 1777, - 3, 524, 460,
+ - 36, 511, - 51, 362, 487, 575, 567, 586, 37, 445, 97, 65, 317, 321, 541, 541,
+ 276, 276, 276, 414, 246, 290, 246, - 8, 201, 290, 344, 422, 340, 276, 461,
+ 387, 290, 486, 276, 530, 276, 276, 276, 276, 276, 435, 276, 276, 276, 276,
+ 570, 290, 276, 122, 122, 122, 122, 122, 122, 602, 589, 122, 122, 574, 606,
+ 574, 603, 574, 574, 574, 574, 574, 574, 574, 574, 581, 574, 574, 597, 596,
+ 574, 574, 574, 574, 574, 593, 574, 593, 609, 593, 611, 608, 593, 593, 593,
+ 574, 593, 593, 631, 612, 96, 67, 96, 230, 230, 96, 96, 67, 67, 96, 269, 224,
+ 588, 508, 501,);
- static public $yyExpectedTokens = array(array(3, 4, 5, 6, 7, 8, 12, 13, 16, 19, 20, 21, 26, 30, 32, 33,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 31, 32, 33, 35, 37, 40, 43,
- 44, 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 31, 32, 33, 35, 37, 40, 43,
- 44, 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 54, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 53, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 55, 60,),
- array(12, 13, 14, 16, 17, 19, 20, 21, 26, 30, 32, 33, 35, 37, 40, 43, 44,
- 45, 46, 48, 50, 52, 55, 60,),
- array(1, 25, 27, 34, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 11, 27, 34, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 27, 34, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 27, 34, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 27, 34, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 27, 34, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 27, 34, 39, 40, 41, 56, 57, 58, 59,),
- array(3, 4, 5, 6, 7, 8, 12, 13, 16, 19, 20, 21, 26, 30, 32, 33,),
- array(1, 22, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 38, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 28, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 11, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 2, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 11, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 11, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 11, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 38, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 54, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59, 61,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,),
- array(1, 39, 40, 41, 56, 57, 58, 59,), array(39, 40, 41, 56, 57, 58, 59,),
- array(39, 40, 41, 56, 57, 58, 59,), array(14, 17, 50, 52, 55,),
- array(5, 12, 13, 14, 16, 19, 20, 21, 26, 30, 32, 33, 60, 61,),
- array(1, 11, 18, 27, 34, 37, 49,), array(14, 17, 52, 55,),
- array(1, 11, 27, 34,), array(1, 27, 34,), array(14, 37, 55,),
- array(5, 12, 13, 14, 16, 19, 20, 21, 26, 30, 32, 33, 60, 61,),
- array(12, 13, 17, 27, 29, 34,), array(12, 13, 17, 27, 29, 34,),
- array(12, 13, 17, 27, 34,), array(12, 13, 17, 27, 34,), array(14, 37, 55,),
- array(1, 27, 34,), array(1, 27, 34,), array(18, 46, 53,),
- array(14, 37, 55,), array(1, 2,), array(1, 11, 27, 28, 34,),
- array(11, 23, 27, 34, 47,), array(11, 23, 27, 34, 47,),
- array(1, 11, 27, 34,), array(1, 11, 27, 34,), array(13, 14, 17, 55,),
- array(12, 13, 17, 51,), array(15, 18, 49,), array(12, 13, 17,),
- array(8, 9, 10,), array(15, 18, 49,), array(12, 13, 17,), array(27, 34,),
- array(1, 54,), array(14, 55,), array(1, 11,), array(18, 49,),
- array(27, 34,), array(14, 17,), array(14, 17,), array(1, 18,),
- array(27, 34,), array(1, 29,), array(1,), array(1,), array(18,), array(1,),
- array(1,), array(1,), array(1,), array(1,), array(1,), array(18,),
- array(1,), array(), array(2, 12, 13, 15, 17, 18, 46, 49, 51, 53,),
- array(2, 12, 13, 17, 18, 46, 49, 51, 53, 54,),
- array(2, 12, 13, 15, 17, 18, 46, 49, 51, 53,),
- array(2, 12, 13, 17, 18, 46, 49, 51, 53,),
- array(2, 12, 13, 17, 18, 46, 49, 51, 53,),
- array(12, 13, 17, 18, 46, 49, 51, 53,), array(13, 14, 17, 35, 55,),
- array(12, 13, 17, 51,), array(15, 46, 53,), array(12, 13, 17,),
- array(27, 34,), array(14, 55,), array(27, 34,), array(27, 34,),
- array(27, 34,), array(27, 34,), array(27, 34,), array(27, 34,),
- array(27, 34,), array(27, 34,), array(27, 34,), array(27, 34,),
- array(46, 53,), array(27, 34,), array(14, 55,), array(27, 34,),
- array(14, 55,), array(27, 34,), array(27, 34,), array(27, 34,),
- array(27, 34,), array(27, 34,), array(46, 53,), array(46, 53,),
- array(13, 37,), array(46, 53,), array(15, 23,), array(46, 53,),
- array(46, 53,), array(46, 53,), array(46, 53,), array(27, 34,),
- array(14, 55,), array(46, 53,), array(46, 53,), array(1,), array(1,),
- array(9,), array(2,), array(2,), array(1,), array(18,), array(37,),
- array(1,), array(18,), array(18,), array(1,), array(), array(), array(),
- array(), array(), array(1, 2, 37, 39, 40, 41, 49, 56, 57, 58, 59,),
- array(11, 22, 24, 27, 34, 36, 38, 46,), array(11, 15, 27, 34, 37, 49,),
- array(37, 46, 49, 54,), array(12, 13, 17, 51,), array(29, 37, 49,),
- array(23, 47, 54,), array(23, 47, 61,), array(22, 36,), array(36, 54,),
- array(36, 38,), array(37, 49,), array(37, 49,), array(46, 54,),
- array(36, 38,), array(36, 38,), array(23, 47,), array(37, 49,),
- array(17, 51,), array(15, 46,), array(35,), array(37,), array(11,),
- array(17,), array(5,), array(17,), array(14,), array(17,), array(17,),
- array(15,), array(46,), array(17,), array(17,), array(42,), array(17,),
- array(52,), array(17,), array(24,), array(52,), array(35,), array(17,),
- array(37,), array(17,), array(54,), array(54,), array(38,), array(),
+ static public $yyExpectedTokens = array(array(3, 4, 5, 6, 7, 11, 12, 15, 18, 19, 20, 25, 29, 31, 32,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 30, 31, 32, 34, 36, 39, 42,
+ 43, 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 53, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 30, 31, 32, 34, 36, 39, 42,
+ 43, 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 52, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 54, 59,),
+ array(11, 12, 13, 15, 16, 18, 19, 20, 25, 29, 31, 32, 34, 36, 39, 42, 43,
+ 44, 45, 47, 49, 51, 54, 59,),
+ array(1, 24, 26, 33, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 10, 26, 33, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 26, 33, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 26, 33, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 26, 33, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 26, 33, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 26, 33, 38, 39, 40, 55, 56, 57, 58,),
+ array(3, 4, 5, 6, 7, 11, 12, 15, 18, 19, 20, 25, 29, 31, 32,),
+ array(1, 37, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 37, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 53, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58, 60,),
+ array(1, 10, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 10, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 2, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 10, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 27, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 10, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 21, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,),
+ array(1, 38, 39, 40, 55, 56, 57, 58,), array(38, 39, 40, 55, 56, 57, 58,),
+ array(38, 39, 40, 55, 56, 57, 58,), array(13, 16, 49, 51, 54,),
+ array(4, 11, 12, 13, 15, 18, 19, 20, 25, 29, 31, 32, 59, 60,),
+ array(1, 10, 17, 26, 33, 36, 48,), array(1, 10, 26, 33,),
+ array(13, 16, 51, 54,), array(1, 26, 33,), array(13, 36, 54,),
+ array(4, 11, 12, 13, 15, 18, 19, 20, 25, 29, 31, 32, 59, 60,),
+ array(11, 12, 16, 26, 28, 33,), array(11, 12, 16, 26, 28, 33,),
+ array(11, 12, 16, 26, 33,), array(11, 12, 16, 26, 33,), array(13, 36, 54,),
+ array(1, 26, 33,), array(13, 36, 54,), array(17, 45, 52,),
+ array(1, 26, 33,), array(1, 2,), array(10, 22, 26, 33, 46,),
+ array(10, 22, 26, 33, 46,), array(1, 10, 26, 27, 33,),
+ array(1, 10, 26, 33,), array(1, 10, 26, 33,), array(12, 13, 16, 54,),
+ array(11, 12, 16, 50,), array(14, 17, 48,), array(11, 12, 16,),
+ array(7, 8, 9,), array(11, 12, 16,), array(14, 17, 48,), array(13, 16,),
+ array(13, 16,), array(13, 54,), array(1, 10,), array(26, 33,),
+ array(1, 17,), array(17, 48,), array(26, 33,), array(1, 28,),
+ array(26, 33,), array(1, 53,), array(1,), array(1,), array(1,), array(1,),
+ array(1,), array(1,), array(1,), array(1,), array(1,), array(17,),
+ array(17,), array(), array(2, 11, 12, 14, 16, 17, 45, 48, 50, 52,),
+ array(2, 11, 12, 16, 17, 45, 48, 50, 52, 53,),
+ array(2, 11, 12, 14, 16, 17, 45, 48, 50, 52,),
+ array(2, 11, 12, 16, 17, 45, 48, 50, 52,),
+ array(2, 11, 12, 16, 17, 45, 48, 50, 52,),
+ array(11, 12, 16, 17, 45, 48, 50, 52,), array(12, 13, 16, 34, 54,),
+ array(11, 12, 16, 50,), array(11, 12, 16,), array(14, 45, 52,),
+ array(26, 33,), array(13, 54,), array(26, 33,), array(13, 54,),
+ array(26, 33,), array(26, 33,), array(26, 33,), array(26, 33,),
+ array(26, 33,), array(26, 33,), array(26, 33,), array(26, 33,),
+ array(45, 52,), array(26, 33,), array(26, 33,), array(13, 54,),
+ array(13, 54,), array(26, 33,), array(26, 33,), array(26, 33,),
+ array(26, 33,), array(26, 33,), array(45, 52,), array(26, 33,),
+ array(45, 52,), array(12, 36,), array(45, 52,), array(14, 22,),
+ array(45, 52,), array(45, 52,), array(45, 52,), array(45, 52,),
+ array(26, 33,), array(45, 52,), array(45, 52,), array(8,), array(36,),
+ array(1,), array(17,), array(1,), array(2,), array(2,), array(1,),
+ array(1,), array(17,), array(17,), array(1,), array(), array(), array(),
+ array(), array(), array(1, 2, 36, 38, 39, 40, 48, 55, 56, 57, 58,),
+ array(10, 21, 23, 26, 33, 35, 37, 45,), array(10, 14, 26, 33, 36, 48,),
+ array(11, 12, 16, 50,), array(36, 45, 48, 53,), array(22, 46, 53,),
+ array(22, 46, 60,), array(28, 36, 48,), array(36, 48,), array(21, 35,),
+ array(45, 53,), array(14, 45,), array(35, 37,), array(36, 48,),
+ array(36, 48,), array(35, 37,), array(35, 37,), array(16, 50,),
+ array(35, 53,), array(22, 46,), array(34,), array(10,), array(16,),
+ array(51,), array(16,), array(36,), array(51,), array(16,), array(16,),
+ array(4,), array(16,), array(53,), array(16,), array(16,), array(36,),
+ array(13,), array(16,), array(53,), array(45,), array(37,), array(16,),
+ array(23,), array(34,), array(16,), array(14,), array(41,), array(),
array(), array(), array(), array(), array(), array(), array(), array(),
array(), array(), array(), array(), array(), array(), array(), array(),
array(), array(), array(), array(), array(), array(), array(), array(),
@@ -834,39 +843,39 @@ class Smarty_Internal_Templateparser
array(), array(), array(), array(), array(), array(), array(), array(),
array(), array(), array(), array(), array(), array(), array(), array(),
array(), array(), array(), array(), array(), array(), array(), array(),
- array(), array(), array(), array(), array(), array(), array(), array(),);
+ array(), array(), array(), array(), array(), array(), array(),);
- static public $yy_default = array(339, 517, 496, 532, 532, 496, 496, 532, 532, 532, 532, 532, 532, 532, 532, 532,
- 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532,
- 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 398, 532, 361,
- 398, 398, 374, 364, 336, 532, 532, 403, 532, 532, 532, 532, 532, 532, 532, 532,
- 400, 494, 518, 403, 409, 520, 379, 519, 405, 495, 410, 420, 425, 424, 532, 532,
- 436, 532, 412, 398, 532, 532, 398, 398, 398, 398, 532, 398, 398, 508, 532, 388,
- 412, 426, 426, 412, 412, 532, 461, 451, 461, 532, 451, 461, 398, 412, 532, 412,
- 451, 398, 532, 532, 392, 376, 412, 419, 394, 505, 427, 416, 428, 429, 415, 423,
- 451, 412, 503, 450, 450, 450, 450, 450, 450, 532, 463, 477, 461, 384, 532, 372,
- 383, 371, 366, 365, 368, 370, 360, 362, 385, 454, 386, 532, 358, 532, 387, 377,
- 382, 381, 375, 457, 486, 461, 487, 532, 489, 456, 455, 488, 378, 532, 458, 459,
- 445, 393, 352, 497, 498, 389, 506, 461, 418, 509, 483, 395, 461, 461, 502, 502,
- 502, 436, 432, 436, 436, 462, 436, 426, 426, 532, 532, 532, 532, 436, 432, 532,
- 532, 426, 446, 532, 432, 532, 477, 532, 532, 344, 532, 532, 532, 532, 532, 432,
- 532, 532, 438, 532, 532, 532, 406, 532, 434, 532, 507, 532, 441, 532, 532, 340,
- 504, 492, 338, 337, 491, 438, 467, 482, 396, 341, 441, 477, 413, 349, 343, 350,
- 466, 351, 411, 348, 431, 346, 345, 347, 433, 407, 465, 355, 464, 356, 414, 437,
- 399, 353, 435, 380, 354, 342, 421, 417, 513, 479, 440, 439, 480, 512, 390, 511,
- 510, 523, 522, 521, 481, 484, 493, 500, 478, 453, 485, 499, 452, 529, 430, 501,
- 528, 391, 526, 525, 443, 373, 460, 490, 444, 422, 473, 471, 476, 442, 470, 469,
- 468, 447, 449, 524, 475, 531, 530, 527, 448, 397, 515, 474, 516, 472, 514, 367,);
+ static public $yy_default = array(338, 515, 494, 530, 530, 494, 494, 530, 530, 530, 530, 530, 530, 530, 530, 530,
+ 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 530,
+ 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 396, 530, 396,
+ 359, 372, 362, 396, 335, 530, 530, 530, 530, 530, 530, 530, 530, 401, 530, 530,
+ 377, 517, 492, 493, 418, 516, 403, 401, 518, 398, 407, 408, 423, 422, 530, 530,
+ 434, 410, 530, 396, 530, 530, 396, 396, 396, 396, 530, 396, 530, 506, 396, 386,
+ 424, 424, 410, 410, 410, 530, 459, 449, 459, 530, 459, 449, 530, 530, 530, 410,
+ 396, 390, 449, 396, 410, 374, 410, 417, 426, 425, 410, 392, 421, 414, 413, 427,
+ 503, 449, 501, 448, 448, 448, 448, 448, 448, 530, 461, 459, 475, 382, 530, 381,
+ 530, 369, 366, 364, 368, 360, 363, 358, 370, 452, 384, 356, 530, 530, 385, 375,
+ 380, 379, 373, 455, 376, 484, 459, 487, 530, 454, 453, 486, 485, 383, 456, 457,
+ 350, 459, 443, 481, 387, 495, 496, 416, 391, 507, 504, 393, 500, 500, 500, 459,
+ 459, 434, 430, 434, 460, 434, 424, 424, 434, 434, 530, 430, 430, 530, 530, 444,
+ 530, 530, 530, 530, 424, 530, 530, 530, 530, 530, 505, 530, 530, 530, 342, 530,
+ 439, 530, 530, 475, 530, 530, 530, 430, 530, 530, 404, 432, 530, 530, 436, 439,
+ 480, 502, 440, 490, 465, 365, 436, 475, 394, 405, 343, 344, 345, 346, 347, 409,
+ 429, 411, 337, 336, 339, 340, 341, 431, 348, 397, 353, 464, 354, 463, 435, 378,
+ 351, 349, 489, 352, 433, 462, 419, 477, 415, 446, 478, 479, 438, 388, 519, 511,
+ 510, 521, 520, 412, 482, 437, 498, 497, 491, 476, 483, 451, 526, 527, 428, 499,
+ 450, 389, 524, 523, 488, 458, 420, 442, 445, 371, 471, 468, 474, 467, 466, 469,
+ 472, 470, 522, 509, 529, 528, 525, 508, 473, 513, 447, 514, 395, 512, 441,);
- const YYNOCODE = 108;
+ const YYNOCODE = 107;
const YYSTACKDEPTH = 500;
- const YYNSTATE = 336;
+ const YYNSTATE = 335;
- const YYNRULE = 196;
+ const YYNRULE = 195;
- const YYERRORSYMBOL = 62;
+ const YYERRORSYMBOL = 61;
const YYERRSYMDT = 'yy0';
@@ -899,7 +908,7 @@ class Smarty_Internal_Templateparser
public $yyerrcnt; /* Shifts left before out of the error */
public $yystack = array(); /* The parser's stack */
- public $yyTokenName = array('$', 'VERT', 'COLON', 'PHP', 'NOCACHE', 'TEXT', 'STRIPON', 'STRIPOFF', 'LITERALSTART',
+ public $yyTokenName = array('$', 'VERT', 'COLON', 'PHP', 'TEXT', 'STRIPON', 'STRIPOFF', 'LITERALSTART',
'LITERALEND', 'LITERAL', 'RDEL', 'SIMPELOUTPUT', 'LDEL', 'DOLLARID', 'EQUAL',
'SIMPLETAG', 'ID', 'PTR', 'LDELMAKENOCACHE', 'LDELIF', 'LDELFOR', 'SEMICOLON', 'INCDEC',
'TO', 'STEP', 'LDELFOREACH', 'SPACE', 'AS', 'APTR', 'LDELSETFILTER',
@@ -919,10 +928,10 @@ class Smarty_Internal_Templateparser
public static $yyRuleName = array('start ::= template', 'template ::= template_element',
'template ::= template template_element', 'template ::=',
'template_element ::= smartytag', 'template_element ::= literal',
- 'template_element ::= PHP', 'template_element ::= NOCACHE',
- 'template_element ::= text_content', 'text_content ::= TEXT',
- 'text_content ::= text_content TEXT', 'template_element ::= STRIPON',
- 'template_element ::= STRIPOFF', 'literal ::= LITERALSTART LITERALEND',
+ 'template_element ::= PHP', 'template_element ::= text_content',
+ 'text_content ::= TEXT', 'text_content ::= text_content TEXT',
+ 'template_element ::= STRIPON', 'template_element ::= STRIPOFF',
+ 'literal ::= LITERALSTART LITERALEND',
'literal ::= LITERALSTART literal_elements LITERALEND',
'literal_elements ::= literal_elements literal_element', 'literal_elements ::=',
'literal_element ::= literal', 'literal_element ::= LITERAL',
@@ -1336,101 +1345,100 @@ class Smarty_Internal_Templateparser
}
}
- public static $yyRuleInfo = array(array(0 => 63, 1 => 1), array(0 => 64, 1 => 1), array(0 => 64, 1 => 2),
- array(0 => 64, 1 => 0), array(0 => 65, 1 => 1), array(0 => 65, 1 => 1),
- array(0 => 65, 1 => 1), array(0 => 65, 1 => 1), array(0 => 65, 1 => 1),
- array(0 => 68, 1 => 1), array(0 => 68, 1 => 2), array(0 => 65, 1 => 1),
- array(0 => 65, 1 => 1), array(0 => 67, 1 => 2), array(0 => 67, 1 => 3),
- array(0 => 69, 1 => 2), array(0 => 69, 1 => 0), array(0 => 70, 1 => 1),
- array(0 => 70, 1 => 1), array(0 => 66, 1 => 2), array(0 => 66, 1 => 1),
- array(0 => 71, 1 => 2), array(0 => 71, 1 => 3), array(0 => 71, 1 => 2),
- array(0 => 71, 1 => 3), array(0 => 71, 1 => 2), array(0 => 71, 1 => 3),
- array(0 => 71, 1 => 4), array(0 => 71, 1 => 4), array(0 => 71, 1 => 5),
- array(0 => 71, 1 => 5), array(0 => 66, 1 => 1), array(0 => 71, 1 => 3),
- array(0 => 71, 1 => 2), array(0 => 71, 1 => 4), array(0 => 71, 1 => 5),
- array(0 => 71, 1 => 6), array(0 => 71, 1 => 2), array(0 => 71, 1 => 2),
- array(0 => 71, 1 => 3), array(0 => 71, 1 => 2), array(0 => 71, 1 => 3),
- array(0 => 71, 1 => 8), array(0 => 80, 1 => 2), array(0 => 80, 1 => 1),
- array(0 => 71, 1 => 5), array(0 => 71, 1 => 7), array(0 => 71, 1 => 2),
- array(0 => 71, 1 => 6), array(0 => 71, 1 => 8), array(0 => 71, 1 => 6),
- array(0 => 71, 1 => 8), array(0 => 71, 1 => 3), array(0 => 71, 1 => 4),
- array(0 => 71, 1 => 2), array(0 => 66, 1 => 1), array(0 => 71, 1 => 2),
- array(0 => 71, 1 => 3), array(0 => 71, 1 => 4), array(0 => 71, 1 => 5),
- array(0 => 73, 1 => 2), array(0 => 73, 1 => 1), array(0 => 73, 1 => 0),
- array(0 => 83, 1 => 4), array(0 => 83, 1 => 2), array(0 => 83, 1 => 2),
- array(0 => 83, 1 => 2), array(0 => 83, 1 => 2), array(0 => 83, 1 => 2),
- array(0 => 83, 1 => 4), array(0 => 79, 1 => 1), array(0 => 79, 1 => 3),
- array(0 => 78, 1 => 3), array(0 => 78, 1 => 3), array(0 => 78, 1 => 3),
- array(0 => 78, 1 => 3), array(0 => 75, 1 => 1), array(0 => 75, 1 => 1),
- array(0 => 75, 1 => 3), array(0 => 75, 1 => 3), array(0 => 75, 1 => 3),
- array(0 => 75, 1 => 1), array(0 => 75, 1 => 2), array(0 => 75, 1 => 3),
- array(0 => 75, 1 => 3), array(0 => 75, 1 => 2), array(0 => 75, 1 => 3),
- array(0 => 75, 1 => 3), array(0 => 84, 1 => 7), array(0 => 84, 1 => 7),
- array(0 => 74, 1 => 1), array(0 => 74, 1 => 2), array(0 => 74, 1 => 2),
- array(0 => 74, 1 => 2), array(0 => 74, 1 => 2), array(0 => 74, 1 => 1),
- array(0 => 74, 1 => 1), array(0 => 74, 1 => 3), array(0 => 74, 1 => 2),
- array(0 => 74, 1 => 2), array(0 => 74, 1 => 1), array(0 => 74, 1 => 1),
- array(0 => 74, 1 => 3), array(0 => 74, 1 => 3), array(0 => 74, 1 => 3),
+ public static $yyRuleInfo = array(array(0 => 62, 1 => 1), array(0 => 63, 1 => 1), array(0 => 63, 1 => 2),
+ array(0 => 63, 1 => 0), array(0 => 64, 1 => 1), array(0 => 64, 1 => 1),
+ array(0 => 64, 1 => 1), array(0 => 64, 1 => 1), array(0 => 67, 1 => 1),
+ array(0 => 67, 1 => 2), array(0 => 64, 1 => 1), array(0 => 64, 1 => 1),
+ array(0 => 66, 1 => 2), array(0 => 66, 1 => 3), array(0 => 68, 1 => 2),
+ array(0 => 68, 1 => 0), array(0 => 69, 1 => 1), array(0 => 69, 1 => 1),
+ array(0 => 65, 1 => 2), array(0 => 65, 1 => 1), array(0 => 70, 1 => 2),
+ array(0 => 70, 1 => 3), array(0 => 70, 1 => 2), array(0 => 70, 1 => 3),
+ array(0 => 70, 1 => 2), array(0 => 70, 1 => 3), array(0 => 70, 1 => 4),
+ array(0 => 70, 1 => 4), array(0 => 70, 1 => 5), array(0 => 70, 1 => 5),
+ array(0 => 65, 1 => 1), array(0 => 70, 1 => 3), array(0 => 70, 1 => 2),
+ array(0 => 70, 1 => 4), array(0 => 70, 1 => 5), array(0 => 70, 1 => 6),
+ array(0 => 70, 1 => 2), array(0 => 70, 1 => 2), array(0 => 70, 1 => 3),
+ array(0 => 70, 1 => 2), array(0 => 70, 1 => 3), array(0 => 70, 1 => 8),
+ array(0 => 79, 1 => 2), array(0 => 79, 1 => 1), array(0 => 70, 1 => 5),
+ array(0 => 70, 1 => 7), array(0 => 70, 1 => 2), array(0 => 70, 1 => 6),
+ array(0 => 70, 1 => 8), array(0 => 70, 1 => 6), array(0 => 70, 1 => 8),
+ array(0 => 70, 1 => 3), array(0 => 70, 1 => 4), array(0 => 70, 1 => 2),
+ array(0 => 65, 1 => 1), array(0 => 70, 1 => 2), array(0 => 70, 1 => 3),
+ array(0 => 70, 1 => 4), array(0 => 70, 1 => 5), array(0 => 72, 1 => 2),
+ array(0 => 72, 1 => 1), array(0 => 72, 1 => 0), array(0 => 82, 1 => 4),
+ array(0 => 82, 1 => 2), array(0 => 82, 1 => 2), array(0 => 82, 1 => 2),
+ array(0 => 82, 1 => 2), array(0 => 82, 1 => 2), array(0 => 82, 1 => 4),
+ array(0 => 78, 1 => 1), array(0 => 78, 1 => 3), array(0 => 77, 1 => 3),
+ array(0 => 77, 1 => 3), array(0 => 77, 1 => 3), array(0 => 77, 1 => 3),
array(0 => 74, 1 => 1), array(0 => 74, 1 => 1), array(0 => 74, 1 => 3),
- array(0 => 74, 1 => 1), array(0 => 74, 1 => 2), array(0 => 74, 1 => 1),
- array(0 => 74, 1 => 3), array(0 => 90, 1 => 1), array(0 => 90, 1 => 1),
- array(0 => 72, 1 => 1), array(0 => 72, 1 => 1), array(0 => 72, 1 => 3),
- array(0 => 72, 1 => 1), array(0 => 72, 1 => 3), array(0 => 72, 1 => 4),
- array(0 => 72, 1 => 3), array(0 => 72, 1 => 4), array(0 => 76, 1 => 2),
- array(0 => 76, 1 => 2), array(0 => 94, 1 => 2), array(0 => 94, 1 => 0),
- array(0 => 95, 1 => 2), array(0 => 95, 1 => 2), array(0 => 95, 1 => 4),
- array(0 => 95, 1 => 2), array(0 => 95, 1 => 2), array(0 => 95, 1 => 4),
- array(0 => 95, 1 => 3), array(0 => 95, 1 => 5), array(0 => 95, 1 => 3),
- array(0 => 95, 1 => 3), array(0 => 95, 1 => 3), array(0 => 95, 1 => 3),
- array(0 => 95, 1 => 3), array(0 => 95, 1 => 3), array(0 => 95, 1 => 2),
- array(0 => 81, 1 => 1), array(0 => 81, 1 => 1), array(0 => 81, 1 => 2),
- array(0 => 96, 1 => 1), array(0 => 96, 1 => 1), array(0 => 96, 1 => 3),
- array(0 => 93, 1 => 2), array(0 => 97, 1 => 1), array(0 => 97, 1 => 2),
- array(0 => 98, 1 => 3), array(0 => 98, 1 => 3), array(0 => 98, 1 => 5),
- array(0 => 98, 1 => 6), array(0 => 98, 1 => 2), array(0 => 89, 1 => 4),
- array(0 => 99, 1 => 4), array(0 => 99, 1 => 4), array(0 => 100, 1 => 3),
- array(0 => 100, 1 => 1), array(0 => 100, 1 => 0), array(0 => 77, 1 => 3),
- array(0 => 77, 1 => 2), array(0 => 101, 1 => 3), array(0 => 101, 1 => 2),
- array(0 => 82, 1 => 2), array(0 => 82, 1 => 0), array(0 => 102, 1 => 2),
- array(0 => 102, 1 => 2), array(0 => 92, 1 => 1), array(0 => 92, 1 => 2),
- array(0 => 92, 1 => 1), array(0 => 92, 1 => 2), array(0 => 92, 1 => 3),
- array(0 => 87, 1 => 1), array(0 => 87, 1 => 1), array(0 => 86, 1 => 1),
- array(0 => 88, 1 => 1), array(0 => 85, 1 => 3), array(0 => 103, 1 => 1),
- array(0 => 103, 1 => 3), array(0 => 103, 1 => 0), array(0 => 104, 1 => 3),
- array(0 => 104, 1 => 3), array(0 => 104, 1 => 1), array(0 => 91, 1 => 2),
- array(0 => 91, 1 => 3), array(0 => 105, 1 => 2), array(0 => 105, 1 => 1),
- array(0 => 106, 1 => 3), array(0 => 106, 1 => 3), array(0 => 106, 1 => 1),
- array(0 => 106, 1 => 3), array(0 => 106, 1 => 3), array(0 => 106, 1 => 1),
- array(0 => 106, 1 => 1),);
+ array(0 => 74, 1 => 3), array(0 => 74, 1 => 3), array(0 => 74, 1 => 1),
+ array(0 => 74, 1 => 2), array(0 => 74, 1 => 3), array(0 => 74, 1 => 3),
+ array(0 => 74, 1 => 2), array(0 => 74, 1 => 3), array(0 => 74, 1 => 3),
+ array(0 => 83, 1 => 7), array(0 => 83, 1 => 7), array(0 => 73, 1 => 1),
+ array(0 => 73, 1 => 2), array(0 => 73, 1 => 2), array(0 => 73, 1 => 2),
+ array(0 => 73, 1 => 2), array(0 => 73, 1 => 1), array(0 => 73, 1 => 1),
+ array(0 => 73, 1 => 3), array(0 => 73, 1 => 2), array(0 => 73, 1 => 2),
+ array(0 => 73, 1 => 1), array(0 => 73, 1 => 1), array(0 => 73, 1 => 3),
+ array(0 => 73, 1 => 3), array(0 => 73, 1 => 3), array(0 => 73, 1 => 1),
+ array(0 => 73, 1 => 1), array(0 => 73, 1 => 3), array(0 => 73, 1 => 1),
+ array(0 => 73, 1 => 2), array(0 => 73, 1 => 1), array(0 => 73, 1 => 3),
+ array(0 => 89, 1 => 1), array(0 => 89, 1 => 1), array(0 => 71, 1 => 1),
+ array(0 => 71, 1 => 1), array(0 => 71, 1 => 3), array(0 => 71, 1 => 1),
+ array(0 => 71, 1 => 3), array(0 => 71, 1 => 4), array(0 => 71, 1 => 3),
+ array(0 => 71, 1 => 4), array(0 => 75, 1 => 2), array(0 => 75, 1 => 2),
+ array(0 => 93, 1 => 2), array(0 => 93, 1 => 0), array(0 => 94, 1 => 2),
+ array(0 => 94, 1 => 2), array(0 => 94, 1 => 4), array(0 => 94, 1 => 2),
+ array(0 => 94, 1 => 2), array(0 => 94, 1 => 4), array(0 => 94, 1 => 3),
+ array(0 => 94, 1 => 5), array(0 => 94, 1 => 3), array(0 => 94, 1 => 3),
+ array(0 => 94, 1 => 3), array(0 => 94, 1 => 3), array(0 => 94, 1 => 3),
+ array(0 => 94, 1 => 3), array(0 => 94, 1 => 2), array(0 => 80, 1 => 1),
+ array(0 => 80, 1 => 1), array(0 => 80, 1 => 2), array(0 => 95, 1 => 1),
+ array(0 => 95, 1 => 1), array(0 => 95, 1 => 3), array(0 => 92, 1 => 2),
+ array(0 => 96, 1 => 1), array(0 => 96, 1 => 2), array(0 => 97, 1 => 3),
+ array(0 => 97, 1 => 3), array(0 => 97, 1 => 5), array(0 => 97, 1 => 6),
+ array(0 => 97, 1 => 2), array(0 => 88, 1 => 4), array(0 => 98, 1 => 4),
+ array(0 => 98, 1 => 4), array(0 => 99, 1 => 3), array(0 => 99, 1 => 1),
+ array(0 => 99, 1 => 0), array(0 => 76, 1 => 3), array(0 => 76, 1 => 2),
+ array(0 => 100, 1 => 3), array(0 => 100, 1 => 2), array(0 => 81, 1 => 2),
+ array(0 => 81, 1 => 0), array(0 => 101, 1 => 2), array(0 => 101, 1 => 2),
+ array(0 => 91, 1 => 1), array(0 => 91, 1 => 2), array(0 => 91, 1 => 1),
+ array(0 => 91, 1 => 2), array(0 => 91, 1 => 3), array(0 => 86, 1 => 1),
+ array(0 => 86, 1 => 1), array(0 => 85, 1 => 1), array(0 => 87, 1 => 1),
+ array(0 => 84, 1 => 3), array(0 => 102, 1 => 1), array(0 => 102, 1 => 3),
+ array(0 => 102, 1 => 0), array(0 => 103, 1 => 3), array(0 => 103, 1 => 3),
+ array(0 => 103, 1 => 1), array(0 => 90, 1 => 2), array(0 => 90, 1 => 3),
+ array(0 => 104, 1 => 2), array(0 => 104, 1 => 1), array(0 => 105, 1 => 3),
+ array(0 => 105, 1 => 3), array(0 => 105, 1 => 1), array(0 => 105, 1 => 3),
+ array(0 => 105, 1 => 3), array(0 => 105, 1 => 1), array(0 => 105, 1 => 1),);
- public static $yyReduceMap = array(0 => 0, 1 => 1, 2 => 2, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 9 => 9, 17 => 9,
- 18 => 9, 44 => 9, 67 => 9, 68 => 9, 76 => 9, 77 => 9, 81 => 9, 90 => 9, 95 => 9,
- 96 => 9, 101 => 9, 105 => 9, 106 => 9, 110 => 9, 112 => 9, 117 => 9, 179 => 9,
- 184 => 9, 10 => 10, 11 => 11, 12 => 12, 13 => 13, 16 => 13, 14 => 14, 75 => 14,
- 15 => 15, 91 => 15, 93 => 15, 94 => 15, 124 => 15, 19 => 19, 20 => 20, 21 => 21,
- 23 => 21, 25 => 21, 22 => 22, 24 => 22, 26 => 22, 27 => 27, 28 => 27, 29 => 29,
+ public static $yyReduceMap = array(0 => 0, 1 => 1, 2 => 2, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 16 => 8, 17 => 8,
+ 43 => 8, 66 => 8, 67 => 8, 75 => 8, 76 => 8, 80 => 8, 89 => 8, 94 => 8, 95 => 8,
+ 100 => 8, 104 => 8, 105 => 8, 109 => 8, 111 => 8, 116 => 8, 178 => 8, 183 => 8,
+ 9 => 9, 10 => 10, 11 => 11, 12 => 12, 15 => 12, 13 => 13, 74 => 13, 14 => 14,
+ 90 => 14, 92 => 14, 93 => 14, 123 => 14, 18 => 18, 19 => 19, 20 => 20, 22 => 20,
+ 24 => 20, 21 => 21, 23 => 21, 25 => 21, 26 => 26, 27 => 26, 28 => 28, 29 => 29,
30 => 30, 31 => 31, 32 => 32, 33 => 33, 34 => 34, 35 => 35, 36 => 36, 37 => 37,
- 38 => 38, 39 => 39, 41 => 39, 40 => 40, 42 => 42, 43 => 43, 45 => 45, 46 => 46,
- 47 => 47, 48 => 48, 50 => 48, 49 => 49, 51 => 49, 52 => 52, 53 => 53, 54 => 54,
- 55 => 55, 56 => 56, 57 => 57, 58 => 58, 59 => 59, 60 => 60, 61 => 61, 70 => 61,
- 159 => 61, 163 => 61, 167 => 61, 168 => 61, 62 => 62, 160 => 62, 166 => 62,
- 63 => 63, 64 => 64, 65 => 64, 66 => 66, 144 => 66, 69 => 69, 71 => 71, 72 => 72,
- 73 => 72, 74 => 74, 78 => 78, 79 => 79, 80 => 79, 82 => 82, 109 => 82, 83 => 83,
- 84 => 84, 85 => 85, 86 => 86, 87 => 87, 88 => 88, 89 => 89, 92 => 92, 97 => 97,
- 98 => 98, 99 => 99, 100 => 100, 102 => 102, 103 => 103, 104 => 103, 107 => 107,
- 108 => 108, 111 => 111, 113 => 113, 114 => 114, 115 => 115, 116 => 116,
- 118 => 118, 119 => 119, 120 => 120, 121 => 121, 122 => 122, 123 => 123,
- 125 => 125, 181 => 125, 126 => 126, 127 => 127, 128 => 128, 129 => 129,
- 130 => 130, 131 => 131, 139 => 131, 132 => 132, 133 => 133, 134 => 134,
- 135 => 134, 137 => 134, 138 => 134, 136 => 136, 140 => 140, 141 => 141,
- 142 => 142, 185 => 142, 143 => 143, 145 => 145, 146 => 146, 147 => 147,
+ 38 => 38, 40 => 38, 39 => 39, 41 => 41, 42 => 42, 44 => 44, 45 => 45, 46 => 46,
+ 47 => 47, 49 => 47, 48 => 48, 50 => 48, 51 => 51, 52 => 52, 53 => 53, 54 => 54,
+ 55 => 55, 56 => 56, 57 => 57, 58 => 58, 59 => 59, 60 => 60, 69 => 60, 158 => 60,
+ 162 => 60, 166 => 60, 167 => 60, 61 => 61, 159 => 61, 165 => 61, 62 => 62,
+ 63 => 63, 64 => 63, 65 => 65, 143 => 65, 68 => 68, 70 => 70, 71 => 71, 72 => 71,
+ 73 => 73, 77 => 77, 78 => 78, 79 => 78, 81 => 81, 108 => 81, 82 => 82, 83 => 83,
+ 84 => 84, 85 => 85, 86 => 86, 87 => 87, 88 => 88, 91 => 91, 96 => 96, 97 => 97,
+ 98 => 98, 99 => 99, 101 => 101, 102 => 102, 103 => 102, 106 => 106, 107 => 107,
+ 110 => 110, 112 => 112, 113 => 113, 114 => 114, 115 => 115, 117 => 117,
+ 118 => 118, 119 => 119, 120 => 120, 121 => 121, 122 => 122, 124 => 124,
+ 180 => 124, 125 => 125, 126 => 126, 127 => 127, 128 => 128, 129 => 129,
+ 130 => 130, 138 => 130, 131 => 131, 132 => 132, 133 => 133, 134 => 133,
+ 136 => 133, 137 => 133, 135 => 135, 139 => 139, 140 => 140, 141 => 141,
+ 184 => 141, 142 => 142, 144 => 144, 145 => 145, 146 => 146, 147 => 147,
148 => 148, 149 => 149, 150 => 150, 151 => 151, 152 => 152, 153 => 153,
- 154 => 154, 155 => 155, 156 => 156, 157 => 157, 158 => 158, 161 => 161,
- 162 => 162, 164 => 164, 165 => 165, 169 => 169, 170 => 170, 171 => 171,
+ 154 => 154, 155 => 155, 156 => 156, 157 => 157, 160 => 160, 161 => 161,
+ 163 => 163, 164 => 164, 168 => 168, 169 => 169, 170 => 170, 171 => 171,
172 => 172, 173 => 173, 174 => 174, 175 => 175, 176 => 176, 177 => 177,
- 178 => 178, 180 => 180, 182 => 182, 183 => 183, 186 => 186, 187 => 187,
- 188 => 188, 189 => 189, 190 => 189, 192 => 189, 191 => 191, 193 => 193,
- 194 => 194, 195 => 195,);
+ 179 => 179, 181 => 181, 182 => 182, 185 => 185, 186 => 186, 187 => 187,
+ 188 => 188, 189 => 188, 191 => 188, 190 => 190, 192 => 192, 193 => 193,
+ 194 => 194,);
#line 218 "../smarty/lexer/smarty_internal_templateparser.y"
function yy_r0()
@@ -1497,70 +1505,59 @@ class Smarty_Internal_Templateparser
#line 275 "../smarty/lexer/smarty_internal_templateparser.y"
function yy_r7()
{
- $this->compiler->tag_nocache = true;
- $save = $this->template->compiled->has_nocache_code;
- $this->_retvalue = new Smarty_Internal_ParseTree_Tag($this,
- $this->compiler->processNocacheCode("<?php echo '{$this->yystack[$this->yyidx + 0]->minor}';?>\n",
- true));
- $this->template->compiled->has_nocache_code = $save;
- }
-
- #line 282 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r8()
- {
$this->_retvalue = $this->compiler->processText($this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 286 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r9()
+ #line 279 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r8()
{
$this->_retvalue = $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 290 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r10()
+ #line 283 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r9()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 1 ]->minor . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 295 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r11()
+ #line 288 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r10()
{
$this->strip = true;
}
- #line 299 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r12()
+ #line 292 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r11()
{
$this->strip = false;
}
- #line 304 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r13()
+ #line 297 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r12()
{
$this->_retvalue = '';
}
- #line 308 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r14()
+ #line 301 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r13()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 1 ]->minor;
}
- #line 312 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r15()
+ #line 305 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r14()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 1 ]->minor . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 328 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r19()
+ #line 321 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r18()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 1 ]->minor;
}
- #line 334 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r20()
+ #line 327 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r19()
{
$var =
trim(substr($this->yystack[ $this->yyidx + 0 ]->minor, $this->lex->ldel_length, - $this->lex->rdel_length),
@@ -1578,23 +1575,23 @@ class Smarty_Internal_Templateparser
}
}
- #line 344 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r21()
+ #line 337 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r20()
{
$this->_retvalue = $this->compiler->compileTag('private_print_expression', array(),
array('value' => $this->yystack[ $this->yyidx + 0 ]->minor));
}
- #line 348 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r22()
+ #line 341 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r21()
{
$this->_retvalue =
$this->compiler->compileTag('private_print_expression', $this->yystack[ $this->yyidx + 0 ]->minor,
array('value' => $this->yystack[ $this->yyidx + - 1 ]->minor));
}
- #line 371 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r27()
+ #line 364 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r26()
{
$this->_retvalue = $this->compiler->compileTag('assign', array(array('value' => $this->yystack[ $this->yyidx +
0 ]->minor),
@@ -1604,8 +1601,8 @@ class Smarty_Internal_Templateparser
1) . '\'')));
}
- #line 379 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r29()
+ #line 372 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r28()
{
$this->_retvalue = $this->compiler->compileTag('assign',
array_merge(array(array('value' => $this->yystack[ $this->yyidx +
@@ -1617,8 +1614,8 @@ class Smarty_Internal_Templateparser
$this->yystack[ $this->yyidx + 0 ]->minor));
}
- #line 383 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r30()
+ #line 376 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r29()
{
$this->_retvalue = $this->compiler->compileTag('assign',
array_merge(array(array('value' => $this->yystack[ $this->yyidx +
@@ -1630,8 +1627,8 @@ class Smarty_Internal_Templateparser
- 3 ]->minor[ 'smarty_internal_index' ]));
}
- #line 388 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r31()
+ #line 381 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r30()
{
$tag =
trim(substr($this->yystack[ $this->yyidx + 0 ]->minor, $this->lex->ldel_length, - $this->lex->rdel_length));
@@ -1655,8 +1652,8 @@ class Smarty_Internal_Templateparser
}
}
- #line 410 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r32()
+ #line 403 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r31()
{
if (defined($this->yystack[ $this->yyidx + - 1 ]->minor)) {
if ($this->security) {
@@ -1671,8 +1668,8 @@ class Smarty_Internal_Templateparser
}
}
- #line 420 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r33()
+ #line 413 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r32()
{
if (defined($this->yystack[ $this->yyidx + 0 ]->minor)) {
if ($this->security) {
@@ -1685,8 +1682,8 @@ class Smarty_Internal_Templateparser
}
}
- #line 433 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r34()
+ #line 426 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r33()
{
if (defined($this->yystack[ $this->yyidx + - 2 ]->minor)) {
if ($this->security) {
@@ -1704,8 +1701,8 @@ class Smarty_Internal_Templateparser
}
}
- #line 445 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r35()
+ #line 438 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r34()
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[ $this->yyidx + - 3 ]->minor,
$this->yystack[ $this->yyidx + 0 ]->minor,
@@ -1713,8 +1710,8 @@ class Smarty_Internal_Templateparser
- 1 ]->minor));
}
- #line 450 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r36()
+ #line 443 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r35()
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[ $this->yyidx + - 4 ]->minor,
$this->yystack[ $this->yyidx + 0 ]->minor,
@@ -1724,8 +1721,8 @@ class Smarty_Internal_Templateparser
- 2 ]->minor));
}
- #line 455 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r37()
+ #line 448 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r36()
{
$this->_retvalue = $this->compiler->compileTag('make_nocache', array(array('var' => '\'' .
substr($this->yystack[ $this->yyidx +
@@ -1733,8 +1730,8 @@ class Smarty_Internal_Templateparser
1) . '\'')));
}
- #line 460 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r38()
+ #line 453 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r37()
{
$tag = trim(substr($this->yystack[ $this->yyidx + - 1 ]->minor, $this->lex->ldel_length));
$this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, array(),
@@ -1742,8 +1739,8 @@ class Smarty_Internal_Templateparser
0 ]->minor));
}
- #line 465 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r39()
+ #line 458 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r38()
{
$tag = trim(substr($this->yystack[ $this->yyidx + - 2 ]->minor, $this->lex->ldel_length));
$this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag,
@@ -1752,8 +1749,8 @@ class Smarty_Internal_Templateparser
- 1 ]->minor));
}
- #line 470 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r40()
+ #line 463 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r39()
{
$tag = trim(substr($this->yystack[ $this->yyidx + - 1 ]->minor, $this->lex->ldel_length));
$this->_retvalue = $this->compiler->compileTag(($tag == 'else if') ? 'elseif' : $tag, array(),
@@ -1761,8 +1758,8 @@ class Smarty_Internal_Templateparser
0 ]->minor));
}
- #line 481 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r42()
+ #line 474 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r41()
{
$this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[ $this->yyidx + 0 ]->minor,
array(array('start' => $this->yystack[ $this->yyidx +
@@ -1776,14 +1773,14 @@ class Smarty_Internal_Templateparser
1);
}
- #line 485 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r43()
+ #line 478 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r42()
{
$this->_retvalue = '=' . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 493 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r45()
+ #line 486 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r44()
{
$this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[ $this->yyidx + 0 ]->minor,
array(array('start' => $this->yystack[ $this->yyidx +
@@ -1793,8 +1790,8 @@ class Smarty_Internal_Templateparser
0);
}
- #line 497 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r46()
+ #line 490 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r45()
{
$this->_retvalue = $this->compiler->compileTag('for', array_merge($this->yystack[ $this->yyidx + 0 ]->minor,
array(array('start' => $this->yystack[ $this->yyidx +
@@ -1806,14 +1803,14 @@ class Smarty_Internal_Templateparser
0);
}
- #line 502 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r47()
+ #line 495 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r46()
{
$this->_retvalue = $this->compiler->compileTag('foreach', $this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 507 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r48()
+ #line 500 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r47()
{
$this->_retvalue = $this->compiler->compileTag('foreach', array_merge($this->yystack[ $this->yyidx + 0 ]->minor,
array(array('from' => $this->yystack[ $this->yyidx +
@@ -1822,8 +1819,8 @@ class Smarty_Internal_Templateparser
- 1 ]->minor))));
}
- #line 511 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r49()
+ #line 504 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r48()
{
$this->_retvalue = $this->compiler->compileTag('foreach', array_merge($this->yystack[ $this->yyidx + 0 ]->minor,
array(array('from' => $this->yystack[ $this->yyidx +
@@ -1834,8 +1831,8 @@ class Smarty_Internal_Templateparser
- 3 ]->minor))));
}
- #line 524 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r52()
+ #line 517 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r51()
{
$this->_retvalue = $this->compiler->compileTag('setfilter', array(),
array('modifier_list' => array(array_merge(array($this->yystack[ $this->yyidx +
@@ -1844,8 +1841,8 @@ class Smarty_Internal_Templateparser
0 ]->minor))));
}
- #line 528 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r53()
+ #line 521 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r52()
{
$this->_retvalue = $this->compiler->compileTag('setfilter', array(),
array('modifier_list' => array_merge(array(array_merge(array($this->yystack[ $this->yyidx +
@@ -1856,8 +1853,8 @@ class Smarty_Internal_Templateparser
0 ]->minor)));
}
- #line 533 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r54()
+ #line 526 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r53()
{
$j = strrpos($this->yystack[ $this->yyidx + 0 ]->minor, '.');
if ($this->yystack[ $this->yyidx + 0 ]->minor[ $j + 1 ] == 'c') {
@@ -1869,8 +1866,8 @@ class Smarty_Internal_Templateparser
}
}
- #line 546 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r55()
+ #line 539 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r54()
{
$tag =
trim(substr($this->yystack[ $this->yyidx + 0 ]->minor, $this->lex->ldel_length, - $this->lex->rdel_length),
@@ -1883,30 +1880,30 @@ class Smarty_Internal_Templateparser
}
}
- #line 555 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r56()
+ #line 548 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r55()
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[ $this->yyidx + 0 ]->minor . 'close', array());
}
- #line 559 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r57()
+ #line 552 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r56()
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[ $this->yyidx + - 1 ]->minor . 'close', array(),
array('modifier_list' => $this->yystack[ $this->yyidx +
0 ]->minor));
}
- #line 564 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r58()
+ #line 557 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r57()
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[ $this->yyidx + - 2 ]->minor . 'close', array(),
array('object_method' => $this->yystack[ $this->yyidx +
0 ]->minor));
}
- #line 568 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r59()
+ #line 561 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r58()
{
$this->_retvalue = $this->compiler->compileTag($this->yystack[ $this->yyidx + - 3 ]->minor . 'close', array(),
array('object_method' => $this->yystack[ $this->yyidx +
@@ -1915,27 +1912,27 @@ class Smarty_Internal_Templateparser
0 ]->minor));
}
- #line 576 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r60()
+ #line 569 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r59()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 1 ]->minor;
$this->_retvalue[] = $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 582 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r61()
+ #line 575 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r60()
{
$this->_retvalue = array($this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 587 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r62()
+ #line 580 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r61()
{
$this->_retvalue = array();
}
- #line 592 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r63()
+ #line 585 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r62()
{
if (defined($this->yystack[ $this->yyidx + 0 ]->minor)) {
if ($this->security) {
@@ -1950,66 +1947,66 @@ class Smarty_Internal_Templateparser
}
}
- #line 603 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r64()
+ #line 596 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r63()
{
$this->_retvalue =
array(trim($this->yystack[ $this->yyidx + - 1 ]->minor, " =\n\r\t") => $this->yystack[ $this->yyidx +
0 ]->minor);
}
- #line 611 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r66()
+ #line 604 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r65()
{
$this->_retvalue = '\'' . $this->yystack[ $this->yyidx + 0 ]->minor . '\'';
}
- #line 623 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r69()
+ #line 616 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r68()
{
$this->_retvalue =
array($this->yystack[ $this->yyidx + - 2 ]->minor => $this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 636 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r71()
+ #line 629 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r70()
{
$this->yystack[ $this->yyidx + - 2 ]->minor[] = $this->yystack[ $this->yyidx + 0 ]->minor;
$this->_retvalue = $this->yystack[ $this->yyidx + - 2 ]->minor;
}
- #line 641 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r72()
+ #line 634 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r71()
{
$this->_retvalue = array('var' => '\'' . substr($this->yystack[ $this->yyidx + - 2 ]->minor, 1) . '\'',
'value' => $this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 648 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r74()
+ #line 641 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r73()
{
$this->_retvalue = array('var' => $this->yystack[ $this->yyidx + - 2 ]->minor,
'value' => $this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 672 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r78()
+ #line 665 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r77()
{
$this->_retvalue =
'$_smarty_tpl->getStreamVariable(\'' . substr($this->yystack[ $this->yyidx + - 2 ]->minor, 1) . '://' .
$this->yystack[ $this->yyidx + 0 ]->minor . '\')';
}
- #line 677 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r79()
+ #line 670 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r78()
{
$this->_retvalue =
$this->yystack[ $this->yyidx + - 2 ]->minor . trim($this->yystack[ $this->yyidx + - 1 ]->minor) .
$this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 691 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r82()
+ #line 684 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r81()
{
$this->_retvalue = $this->compiler->compileTag('private_modifier', array(),
array('value' => $this->yystack[ $this->yyidx + - 1 ]->minor,
@@ -2017,44 +2014,44 @@ class Smarty_Internal_Templateparser
0 ]->minor));
}
- #line 697 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r83()
+ #line 690 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r82()
{
$this->_retvalue =
$this->yystack[ $this->yyidx + - 1 ]->minor[ 'pre' ] . $this->yystack[ $this->yyidx + - 2 ]->minor .
$this->yystack[ $this->yyidx + - 1 ]->minor[ 'op' ] . $this->yystack[ $this->yyidx + 0 ]->minor . ')';
}
- #line 701 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r84()
+ #line 694 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r83()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 2 ]->minor . $this->yystack[ $this->yyidx + - 1 ]->minor .
$this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 705 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r85()
+ #line 698 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r84()
{
$this->_retvalue =
$this->yystack[ $this->yyidx + 0 ]->minor . $this->yystack[ $this->yyidx + - 1 ]->minor . ')';
}
- #line 709 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r86()
+ #line 702 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r85()
{
$this->_retvalue = 'in_array(' . $this->yystack[ $this->yyidx + - 2 ]->minor . ',' .
$this->yystack[ $this->yyidx + 0 ]->minor . ')';
}
- #line 713 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r87()
+ #line 706 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r86()
{
$this->_retvalue = 'in_array(' . $this->yystack[ $this->yyidx + - 2 ]->minor . ',(array)' .
$this->yystack[ $this->yyidx + 0 ]->minor . ')';
}
- #line 721 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r88()
+ #line 714 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r87()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 5 ]->minor . ' ? ' . $this->compiler->compileVariable('\'' .
substr($this->yystack[ $this->yyidx +
@@ -2064,41 +2061,41 @@ class Smarty_Internal_Templateparser
' : ' . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 725 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r89()
+ #line 718 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r88()
{
$this->_retvalue =
$this->yystack[ $this->yyidx + - 5 ]->minor . ' ? ' . $this->yystack[ $this->yyidx + - 2 ]->minor . ' : ' .
$this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 740 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r92()
+ #line 733 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r91()
{
$this->_retvalue = '!' . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 761 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r97()
+ #line 754 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r96()
{
$this->_retvalue =
$this->yystack[ $this->yyidx + - 2 ]->minor . '.' . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 765 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r98()
+ #line 758 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r97()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 1 ]->minor . '.';
}
- #line 769 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r99()
+ #line 762 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r98()
{
$this->_retvalue = '.' . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 774 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r100()
+ #line 767 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r99()
{
if (defined($this->yystack[ $this->yyidx + 0 ]->minor)) {
if ($this->security) {
@@ -2110,21 +2107,21 @@ class Smarty_Internal_Templateparser
}
}
- #line 791 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r102()
+ #line 784 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r101()
{
$this->_retvalue = "(" . $this->yystack[ $this->yyidx + - 1 ]->minor . ")";
}
- #line 795 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r103()
+ #line 788 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r102()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 2 ]->minor . $this->yystack[ $this->yyidx + - 1 ]->minor .
$this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 813 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r107()
+ #line 806 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r106()
{
$prefixVar = $this->compiler->getNewPrefixVariable();
if ($this->yystack[ $this->yyidx + - 2 ]->minor[ 'var' ] == '\'smarty\'') {
@@ -2144,8 +2141,8 @@ class Smarty_Internal_Templateparser
$this->yystack[ $this->yyidx + 0 ]->minor[ 1 ];
}
- #line 824 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r108()
+ #line 817 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r107()
{
$prefixVar = $this->compiler->getNewPrefixVariable();
$tmp = $this->compiler->appendCode('<?php ob_start();?>', $this->yystack[ $this->yyidx + 0 ]->minor);
@@ -2153,8 +2150,8 @@ class Smarty_Internal_Templateparser
$this->_retvalue = $prefixVar;
}
- #line 841 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r111()
+ #line 834 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r110()
{
if (!in_array(strtolower($this->yystack[ $this->yyidx + - 2 ]->minor), array('self', 'parent')) &&
(!$this->security ||
@@ -2176,21 +2173,21 @@ class Smarty_Internal_Templateparser
}
}
- #line 860 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r113()
+ #line 853 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r112()
{
$this->_retvalue = $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 871 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r114()
+ #line 864 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r113()
{
$this->_retvalue =
$this->compiler->compileVariable('\'' . substr($this->yystack[ $this->yyidx + 0 ]->minor, 1) . '\'');
}
- #line 874 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r115()
+ #line 867 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r114()
{
if ($this->yystack[ $this->yyidx + 0 ]->minor[ 'var' ] == '\'smarty\'') {
$smarty_var = $this->compiler->compileTag('private_special_variable', array(),
@@ -2206,22 +2203,22 @@ class Smarty_Internal_Templateparser
}
}
- #line 887 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r116()
+ #line 880 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r115()
{
$this->_retvalue = '$_smarty_tpl->tpl_vars[' . $this->yystack[ $this->yyidx + - 2 ]->minor . ']->' .
$this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 897 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r118()
+ #line 890 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r117()
{
$this->_retvalue =
$this->compiler->compileConfigVariable("'" . $this->yystack[ $this->yyidx + - 1 ]->minor . "'");
}
- #line 901 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r119()
+ #line 894 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r118()
{
$this->_retvalue = '(is_array($tmp = ' .
$this->compiler->compileConfigVariable("'" . $this->yystack[ $this->yyidx + - 2 ]->minor .
@@ -2229,81 +2226,81 @@ class Smarty_Internal_Templateparser
$this->yystack[ $this->yyidx + 0 ]->minor . ' :null)';
}
- #line 905 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r120()
+ #line 898 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r119()
{
$this->_retvalue = $this->compiler->compileConfigVariable($this->yystack[ $this->yyidx + - 1 ]->minor);
}
- #line 909 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r121()
+ #line 902 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r120()
{
$this->_retvalue =
'(is_array($tmp = ' . $this->compiler->compileConfigVariable($this->yystack[ $this->yyidx + - 2 ]->minor) .
') ? $tmp' . $this->yystack[ $this->yyidx + 0 ]->minor . ' : null)';
}
- #line 913 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r122()
+ #line 906 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r121()
{
$this->_retvalue = array('var' => '\'' . substr($this->yystack[ $this->yyidx + - 1 ]->minor, 1) . '\'',
'smarty_internal_index' => $this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 916 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r123()
+ #line 909 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r122()
{
$this->_retvalue = array('var' => $this->yystack[ $this->yyidx + - 1 ]->minor,
'smarty_internal_index' => $this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 929 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r125()
+ #line 922 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r124()
{
return;
}
- #line 935 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r126()
+ #line 928 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r125()
{
$this->_retvalue =
'[' . $this->compiler->compileVariable('\'' . substr($this->yystack[ $this->yyidx + 0 ]->minor, 1) . '\'') .
']';
}
- #line 938 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r127()
+ #line 931 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r126()
{
$this->_retvalue = '[' . $this->compiler->compileVariable($this->yystack[ $this->yyidx + 0 ]->minor) . ']';
}
- #line 942 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r128()
+ #line 935 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r127()
{
$this->_retvalue = '[' . $this->compiler->compileVariable($this->yystack[ $this->yyidx + - 2 ]->minor) . '->' .
$this->yystack[ $this->yyidx + 0 ]->minor . ']';
}
- #line 946 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r129()
+ #line 939 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r128()
{
$this->_retvalue = "['" . $this->yystack[ $this->yyidx + 0 ]->minor . "']";
}
- #line 950 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r130()
+ #line 943 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r129()
{
$this->_retvalue = '[' . $this->yystack[ $this->yyidx + 0 ]->minor . ']';
}
- #line 955 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r131()
+ #line 948 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r130()
{
$this->_retvalue = '[' . $this->yystack[ $this->yyidx + - 1 ]->minor . ']';
}
- #line 960 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r132()
+ #line 953 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r131()
{
$this->_retvalue = '[' . $this->compiler->compileTag('private_special_variable', array(), '[\'section\'][\'' .
$this->yystack[ $this->yyidx +
@@ -2312,8 +2309,8 @@ class Smarty_Internal_Templateparser
']';
}
- #line 964 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r133()
+ #line 957 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r132()
{
$this->_retvalue = '[' . $this->compiler->compileTag('private_special_variable', array(), '[\'section\'][\'' .
$this->yystack[ $this->yyidx +
@@ -2324,47 +2321,47 @@ class Smarty_Internal_Templateparser
'\']') . ']';
}
- #line 967 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r134()
+ #line 960 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r133()
{
$this->_retvalue = '[' . $this->yystack[ $this->yyidx + - 1 ]->minor . ']';
}
- #line 973 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r136()
+ #line 966 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r135()
{
$this->_retvalue = '[' . $this->compiler->compileVariable('\'' .
substr($this->yystack[ $this->yyidx + - 1 ]->minor,
1) . '\'') . ']';;
}
- #line 989 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r140()
+ #line 982 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r139()
{
$this->_retvalue = '[]';
}
- #line 999 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r141()
+ #line 992 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r140()
{
$this->_retvalue = '\'' . substr($this->yystack[ $this->yyidx + 0 ]->minor, 1) . '\'';
}
- #line 1003 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r142()
+ #line 996 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r141()
{
$this->_retvalue = "''";
}
- #line 1008 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r143()
+ #line 1001 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r142()
{
$this->_retvalue =
$this->yystack[ $this->yyidx + - 1 ]->minor . '.' . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 1016 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r145()
+ #line 1009 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r144()
{
$var =
trim(substr($this->yystack[ $this->yyidx + 0 ]->minor, $this->lex->ldel_length, - $this->lex->rdel_length),
@@ -2372,14 +2369,14 @@ class Smarty_Internal_Templateparser
$this->_retvalue = $this->compiler->compileVariable('\'' . $var . '\'');
}
- #line 1022 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r146()
+ #line 1015 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r145()
{
$this->_retvalue = '(' . $this->yystack[ $this->yyidx + - 1 ]->minor . ')';
}
- #line 1029 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r147()
+ #line 1022 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r146()
{
if ($this->yystack[ $this->yyidx + - 1 ]->minor[ 'var' ] == '\'smarty\'') {
$this->_retvalue = $this->compiler->compileTag('private_special_variable', array(),
@@ -2393,20 +2390,20 @@ class Smarty_Internal_Templateparser
}
}
- #line 1038 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r148()
+ #line 1031 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r147()
{
$this->_retvalue = $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 1043 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r149()
+ #line 1036 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r148()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 1 ]->minor . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 1048 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r150()
+ #line 1041 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r149()
{
if ($this->security && substr($this->yystack[ $this->yyidx + - 1 ]->minor, 0, 1) == '_') {
$this->compiler->trigger_template_error(self::Err1);
@@ -2415,8 +2412,8 @@ class Smarty_Internal_Templateparser
'->' . $this->yystack[ $this->yyidx + - 1 ]->minor . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 1055 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r151()
+ #line 1048 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r150()
{
if ($this->security) {
$this->compiler->trigger_template_error(self::Err2);
@@ -2425,8 +2422,8 @@ class Smarty_Internal_Templateparser
$this->yystack[ $this->yyidx + 0 ]->minor . '}';
}
- #line 1062 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r152()
+ #line 1055 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r151()
{
if ($this->security) {
$this->compiler->trigger_template_error(self::Err2);
@@ -2435,8 +2432,8 @@ class Smarty_Internal_Templateparser
'->{' . $this->yystack[ $this->yyidx + - 2 ]->minor . $this->yystack[ $this->yyidx + 0 ]->minor . '}';
}
- #line 1069 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r153()
+ #line 1062 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r152()
{
if ($this->security) {
$this->compiler->trigger_template_error(self::Err2);
@@ -2446,21 +2443,21 @@ class Smarty_Internal_Templateparser
'}';
}
- #line 1077 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r154()
+ #line 1070 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r153()
{
$this->_retvalue = '->' . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 1085 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r155()
+ #line 1078 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r154()
{
$this->_retvalue = $this->compiler->compilePHPFunctionCall($this->yystack[ $this->yyidx + - 3 ]->minor,
$this->yystack[ $this->yyidx + - 1 ]->minor);
}
- #line 1093 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r156()
+ #line 1086 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r155()
{
if ($this->security && substr($this->yystack[ $this->yyidx + - 3 ]->minor, 0, 1) == '_') {
$this->compiler->trigger_template_error(self::Err1);
@@ -2469,8 +2466,8 @@ class Smarty_Internal_Templateparser
implode(',', $this->yystack[ $this->yyidx + - 1 ]->minor) . ")";
}
- #line 1100 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r157()
+ #line 1093 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r156()
{
if ($this->security) {
$this->compiler->trigger_template_error(self::Err2);
@@ -2484,83 +2481,83 @@ class Smarty_Internal_Templateparser
$this->_retvalue = $prefixVar . '(' . implode(',', $this->yystack[ $this->yyidx + - 1 ]->minor) . ')';
}
- #line 1111 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r158()
+ #line 1104 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r157()
{
$this->_retvalue =
array_merge($this->yystack[ $this->yyidx + - 2 ]->minor, array($this->yystack[ $this->yyidx + 0 ]->minor));
}
- #line 1128 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r161()
+ #line 1121 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r160()
{
$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 1132 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r162()
+ #line 1125 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r161()
{
$this->_retvalue =
array(array_merge($this->yystack[ $this->yyidx + - 1 ]->minor, $this->yystack[ $this->yyidx + 0 ]->minor));
}
- #line 1140 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r164()
+ #line 1133 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r163()
{
$this->_retvalue = array($this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 1148 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r165()
+ #line 1141 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r164()
{
$this->_retvalue =
array_merge($this->yystack[ $this->yyidx + - 1 ]->minor, $this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 1167 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r169()
+ #line 1160 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r168()
{
$this->_retvalue = array($this->yystack[ $this->yyidx + 0 ]->minor, '', 'method');
}
- #line 1172 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r170()
+ #line 1165 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r169()
{
$this->_retvalue =
array($this->yystack[ $this->yyidx + - 1 ]->minor, $this->yystack[ $this->yyidx + 0 ]->minor, 'method');
}
- #line 1177 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r171()
+ #line 1170 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r170()
{
$this->_retvalue = array($this->yystack[ $this->yyidx + 0 ]->minor, '');
}
- #line 1182 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r172()
+ #line 1175 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r171()
{
$this->_retvalue =
array($this->yystack[ $this->yyidx + - 1 ]->minor, $this->yystack[ $this->yyidx + 0 ]->minor, 'property');
}
- #line 1187 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r173()
+ #line 1180 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r172()
{
$this->_retvalue = array($this->yystack[ $this->yyidx + - 2 ]->minor,
$this->yystack[ $this->yyidx + - 1 ]->minor .
$this->yystack[ $this->yyidx + 0 ]->minor, 'property');
}
- #line 1193 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r174()
+ #line 1186 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r173()
{
$this->_retvalue = ' ' . trim($this->yystack[ $this->yyidx + 0 ]->minor) . ' ';
}
- #line 1197 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r175()
+ #line 1190 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r174()
{
static $lops =
array('eq' => ' == ', 'ne' => ' != ', 'neq' => ' != ', 'gt' => ' > ', 'ge' => ' >= ', 'gte' => ' >= ',
@@ -2570,8 +2567,8 @@ class Smarty_Internal_Templateparser
$this->_retvalue = $lops[ $op ];
}
- #line 1216 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r176()
+ #line 1209 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r175()
{
static $tlops =
array('isdivby' => array('op' => ' % ', 'pre' => '!('), 'isnotdivby' => array('op' => ' % ', 'pre' => '('),
@@ -2583,8 +2580,8 @@ class Smarty_Internal_Templateparser
$this->_retvalue = $tlops[ $op ];
}
- #line 1229 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r177()
+ #line 1222 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r176()
{
static $scond =
array('iseven' => '!(1 & ', 'isnoteven' => '(1 & ', 'isodd' => '(1 & ', 'isnotodd' => '!(1 & ',);
@@ -2592,81 +2589,81 @@ class Smarty_Internal_Templateparser
$this->_retvalue = $scond[ $op ];
}
- #line 1243 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r178()
+ #line 1236 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r177()
{
$this->_retvalue = 'array(' . $this->yystack[ $this->yyidx + - 1 ]->minor . ')';
}
- #line 1251 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r180()
+ #line 1244 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r179()
{
$this->_retvalue =
$this->yystack[ $this->yyidx + - 2 ]->minor . ',' . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 1259 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r182()
+ #line 1252 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r181()
{
$this->_retvalue =
$this->yystack[ $this->yyidx + - 2 ]->minor . '=>' . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 1263 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r183()
+ #line 1256 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r182()
{
$this->_retvalue =
'\'' . $this->yystack[ $this->yyidx + - 2 ]->minor . '\'=>' . $this->yystack[ $this->yyidx + 0 ]->minor;
}
- #line 1279 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r186()
+ #line 1272 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r185()
{
$this->_retvalue = $this->yystack[ $this->yyidx + - 1 ]->minor->to_smarty_php($this);
}
- #line 1284 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r187()
+ #line 1277 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r186()
{
$this->yystack[ $this->yyidx + - 1 ]->minor->append_subtree($this, $this->yystack[ $this->yyidx + 0 ]->minor);
$this->_retvalue = $this->yystack[ $this->yyidx + - 1 ]->minor;
}
- #line 1289 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r188()
+ #line 1282 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r187()
{
$this->_retvalue = new Smarty_Internal_ParseTree_Dq($this, $this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 1293 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r189()
+ #line 1286 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r188()
{
$this->_retvalue = new Smarty_Internal_ParseTree_Code('(string)' . $this->yystack[ $this->yyidx + - 1 ]->minor);
}
- #line 1301 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r191()
+ #line 1294 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r190()
{
$this->_retvalue = new Smarty_Internal_ParseTree_Code('(string)$_smarty_tpl->tpl_vars[\'' .
substr($this->yystack[ $this->yyidx + 0 ]->minor, 1) .
'\']->value');
}
- #line 1309 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r193()
+ #line 1302 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r192()
{
$this->_retvalue =
new Smarty_Internal_ParseTree_Code('(string)(' . $this->yystack[ $this->yyidx + - 1 ]->minor . ')');
}
- #line 1313 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r194()
+ #line 1306 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r193()
{
$this->_retvalue = new Smarty_Internal_ParseTree_Tag($this, $this->yystack[ $this->yyidx + 0 ]->minor);
}
- #line 1317 "../smarty/lexer/smarty_internal_templateparser.y"
- function yy_r195()
+ #line 1310 "../smarty/lexer/smarty_internal_templateparser.y"
+ function yy_r194()
{
$this->_retvalue = new Smarty_Internal_ParseTree_DqContent($this->yystack[ $this->yyidx + 0 ]->minor);
}