From e9c59873369bdcff62edc669f8fd6c39c9cf3fbf Mon Sep 17 00:00:00 2001 From: Julien Leproust Date: Thu, 4 Apr 2019 17:14:52 +0200 Subject: [PATCH 1/2] Add arguments limit --- headers/modsecurity/rules_properties.h | 2 ++ src/parser/seclang-parser.yy | 6 ++++++ src/parser/seclang-scanner.ll | 2 ++ src/request_body_processor/json.cc | 5 ++++- src/transaction.cc | 6 ++++++ 5 files changed, 20 insertions(+), 1 deletion(-) diff --git a/headers/modsecurity/rules_properties.h b/headers/modsecurity/rules_properties.h index c43578faa6..46887573f5 100644 --- a/headers/modsecurity/rules_properties.h +++ b/headers/modsecurity/rules_properties.h @@ -382,6 +382,7 @@ class RulesProperties { from->m_tmpSaveUploadedFiles, PropertyNotSetConfigBoolean); + to->m_argumentsLimit.merge(&from->m_argumentsLimit); to->m_requestBodyLimit.merge(&from->m_requestBodyLimit); to->m_responseBodyLimit.merge(&from->m_responseBodyLimit); @@ -529,6 +530,7 @@ class RulesProperties { ConfigBoolean m_secXMLExternalEntity; ConfigBoolean m_tmpSaveUploadedFiles; ConfigBoolean m_uploadKeepFiles; + ConfigDouble m_argumentsLimit; ConfigDouble m_requestBodyLimit; ConfigDouble m_requestBodyNoFilesLimit; ConfigDouble m_responseBodyLimit; diff --git a/src/parser/seclang-parser.yy b/src/parser/seclang-parser.yy index 55487591ad..52993db4dd 100644 --- a/src/parser/seclang-parser.yy +++ b/src/parser/seclang-parser.yy @@ -638,6 +638,7 @@ using modsecurity::operators::Operator; CONFIG_SEC_CONN_R_STATE_LIMIT "CONFIG_SEC_CONN_R_STATE_LIMIT" CONFIG_SEC_CONN_W_STATE_LIMIT "CONFIG_SEC_CONN_W_STATE_LIMIT" CONFIG_SEC_SENSOR_ID "CONFIG_SEC_SENSOR_ID" + CONFIG_DIR_ARGS_LIMIT "CONFIG_DIR_ARGS_LIMIT" CONFIG_DIR_REQ_BODY "CONFIG_DIR_REQ_BODY" CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" CONFIG_DIR_REQ_BODY_LIMIT "CONFIG_DIR_REQ_BODY_LIMIT" @@ -1586,6 +1587,11 @@ expression: YYERROR; #endif // WITH_GEOIP } + | CONFIG_DIR_ARGS_LIMIT + { + driver.m_argumentsLimit.m_set = true; + driver.m_argumentsLimit.m_value = atoi($1.c_str()); + } /* Body limits */ | CONFIG_DIR_REQ_BODY_LIMIT { diff --git a/src/parser/seclang-scanner.ll b/src/parser/seclang-scanner.ll index d438def24d..1b7efe5246 100755 --- a/src/parser/seclang-scanner.ll +++ b/src/parser/seclang-scanner.ll @@ -358,6 +358,7 @@ CONFIG_SEC_STREAM_IN_BODY_INSPECTION (?i:SecStreamInBodyInspection) CONFIG_SEC_STREAM_OUT_BODY_INSPECTION (?i:SecStreamOutBodyInspection) CONFIG_DIR_PCRE_MATCH_LIMIT (?i:SecPcreMatchLimit) CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION (?i:SecPcreMatchLimitRecursion) +CONFIG_DIR_ARGS_LIMIT (?i:SecArgumentsLimit) CONFIG_DIR_REQ_BODY (?i:SecRequestBodyAccess) CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT (?i:SecRequestBodyInMemoryLimit) CONFIG_DIR_REQ_BODY_LIMIT (?i:SecRequestBodyLimit) @@ -763,6 +764,7 @@ EQUALS_MINUS (?i:=\-) {CONFIG_DIR_GEO_DB}[ \t]+{FREE_TEXT_NEW_LINE} { return p::make_CONFIG_DIR_GEO_DB(strchr(yytext, ' ') + 1, *driver.loc.back()); } {CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION}[ \t]+{CONFIG_VALUE_NUMBER} { return p::make_CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION(strchr(yytext, ' ') + 1, *driver.loc.back()); } {CONFIG_DIR_PCRE_MATCH_LIMIT}[ \t]+{CONFIG_VALUE_NUMBER} { return p::make_CONFIG_DIR_PCRE_MATCH_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{CONFIG_DIR_ARGS_LIMIT}[ \t]+{CONFIG_VALUE_NUMBER} { return p::make_CONFIG_DIR_ARGS_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } {CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT}[ \t]+{CONFIG_VALUE_NUMBER} { return p::make_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } {CONFIG_DIR_REQ_BODY_LIMIT_ACTION} { return p::make_CONFIG_DIR_REQ_BODY_LIMIT_ACTION(yytext, *driver.loc.back()); } {CONFIG_DIR_REQ_BODY_LIMIT}[ \t]+{CONFIG_VALUE_NUMBER} { return p::make_CONFIG_DIR_REQ_BODY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } diff --git a/src/request_body_processor/json.cc b/src/request_body_processor/json.cc index a6dd4ad4d1..b2a1772924 100644 --- a/src/request_body_processor/json.cc +++ b/src/request_body_processor/json.cc @@ -142,7 +142,10 @@ int JSON::addArgument(const std::string& value) { } - m_transaction->addArgument("JSON", path + data, value, 0); + if (!m_transaction->addArgument("JSON", path + data, value, 0)) { + // cancel parsing by returning false + return 0; + } return 1; } diff --git a/src/transaction.cc b/src/transaction.cc index 693bed6b90..a3756c70f2 100644 --- a/src/transaction.cc +++ b/src/transaction.cc @@ -342,6 +342,12 @@ bool Transaction::addArgument(const std::string& orig, const std::string& key, ms_dbg(4, "Adding request argument (" + orig + "): name \"" + \ key + "\", value \"" + value + "\""); + if (m_rules->m_argumentsLimit.m_set + && m_variableArgs.size() >= m_rules->m_argumentsLimit.m_value) { + ms_dbg(4, "Skipping request argument, over limit (" + std::to_string(m_rules->m_argumentsLimit.m_value) + ")") + return false; + } + size_t k_offset = offset; offset = offset + key.size() + 1; m_variableArgs.set(key, value, offset); From d087aaf52fac214030f60a9ee0d94ff483cf502a Mon Sep 17 00:00:00 2001 From: Julien Leproust Date: Thu, 4 Apr 2019 17:59:00 +0200 Subject: [PATCH 2/2] Update parser lex/yacc output --- src/parser/location.hh | 164 +- src/parser/position.hh | 187 +- src/parser/seclang-parser.cc | 4562 ++++++++++----------- src/parser/seclang-parser.hh | 4479 ++++++++++----------- src/parser/seclang-scanner.cc | 7055 +++++++++++++++++---------------- src/parser/stack.hh | 165 +- 6 files changed, 8178 insertions(+), 8434 deletions(-) diff --git a/src/parser/location.hh b/src/parser/location.hh index 49c002bea2..8f6425962b 100644 --- a/src/parser/location.hh +++ b/src/parser/location.hh @@ -1,8 +1,8 @@ -// A Bison parser, made by GNU Bison 3.2. +// A Bison parser, made by GNU Bison 3.0.4. // Locations for Bison parsers in C++ -// Copyright (C) 2002-2015, 2018 Free Software Foundation, Inc. +// Copyright (C) 2002-2015 Free Software Foundation, Inc. // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -38,144 +38,11 @@ #ifndef YY_YY_LOCATION_HH_INCLUDED # define YY_YY_LOCATION_HH_INCLUDED -# include // std::max -# include -# include - -# ifndef YY_NULLPTR -# if defined __cplusplus -# if 201103L <= __cplusplus -# define YY_NULLPTR nullptr -# else -# define YY_NULLPTR 0 -# endif -# else -# define YY_NULLPTR ((void*)0) -# endif -# endif +# include "position.hh" namespace yy { -#line 60 "location.hh" // location.cc:339 - /// Abstract a position. - class position - { - public: - /// Construct a position. - explicit position (std::string* f = YY_NULLPTR, - unsigned l = 1u, - unsigned c = 1u) - : filename (f) - , line (l) - , column (c) - {} - - - /// Initialization. - void initialize (std::string* fn = YY_NULLPTR, - unsigned l = 1u, - unsigned c = 1u) - { - filename = fn; - line = l; - column = c; - } - - /** \name Line and Column related manipulators - ** \{ */ - /// (line related) Advance to the COUNT next lines. - void lines (int count = 1) - { - if (count) - { - column = 1u; - line = add_ (line, count, 1); - } - } - - /// (column related) Advance to the COUNT next columns. - void columns (int count = 1) - { - column = add_ (column, count, 1); - } - /** \} */ - - /// File name to which this position refers. - std::string* filename; - /// Current line number. - unsigned line; - /// Current column number. - unsigned column; - - private: - /// Compute max (min, lhs+rhs). - static unsigned add_ (unsigned lhs, int rhs, int min) - { - return static_cast (std::max (min, - static_cast (lhs) + rhs)); - } - }; - - /// Add \a width columns, in place. - inline position& - operator+= (position& res, int width) - { - res.columns (width); - return res; - } - - /// Add \a width columns. - inline position - operator+ (position res, int width) - { - return res += width; - } - - /// Subtract \a width columns, in place. - inline position& - operator-= (position& res, int width) - { - return res += -width; - } - - /// Subtract \a width columns. - inline position - operator- (position res, int width) - { - return res -= width; - } - - /// Compare two position objects. - inline bool - operator== (const position& pos1, const position& pos2) - { - return (pos1.line == pos2.line - && pos1.column == pos2.column - && (pos1.filename == pos2.filename - || (pos1.filename && pos2.filename - && *pos1.filename == *pos2.filename))); - } - - /// Compare two position objects. - inline bool - operator!= (const position& pos1, const position& pos2) - { - return !(pos1 == pos2); - } - - /** \brief Intercept output stream redirection. - ** \param ostr the destination output stream - ** \param pos a reference to the position to redirect - */ - template - std::basic_ostream& - operator<< (std::basic_ostream& ostr, const position& pos) - { - if (pos.filename) - ostr << *pos.filename << ':'; - return ostr << pos.line << '.' << pos.column; - } - +#line 46 "location.hh" // location.cc:296 /// Abstract a location. class location { @@ -185,27 +52,30 @@ namespace yy { location (const position& b, const position& e) : begin (b) , end (e) - {} + { + } /// Construct a 0-width location in \a p. explicit location (const position& p = position ()) : begin (p) , end (p) - {} + { + } /// Construct a 0-width location in \a f, \a l, \a c. explicit location (std::string* f, - unsigned l = 1u, - unsigned c = 1u) + unsigned int l = 1u, + unsigned int c = 1u) : begin (f, l, c) , end (f, l, c) - {} + { + } /// Initialization. void initialize (std::string* f = YY_NULLPTR, - unsigned l = 1u, - unsigned c = 1u) + unsigned int l = 1u, + unsigned int c = 1u) { begin.initialize (f, l, c); end = begin; @@ -300,10 +170,10 @@ namespace yy { ** Avoid duplicate information. */ template - std::basic_ostream& + inline std::basic_ostream& operator<< (std::basic_ostream& ostr, const location& loc) { - unsigned end_col = 0 < loc.end.column ? loc.end.column - 1 : 0; + unsigned int end_col = 0 < loc.end.column ? loc.end.column - 1 : 0; ostr << loc.begin; if (loc.end.filename && (!loc.begin.filename @@ -318,5 +188,5 @@ namespace yy { } // yy -#line 322 "location.hh" // location.cc:339 +#line 192 "location.hh" // location.cc:296 #endif // !YY_YY_LOCATION_HH_INCLUDED diff --git a/src/parser/position.hh b/src/parser/position.hh index 8d0712181e..5cd394ac40 100644 --- a/src/parser/position.hh +++ b/src/parser/position.hh @@ -1,11 +1,180 @@ -// A Bison parser, made by GNU Bison 3.2. +// A Bison parser, made by GNU Bison 3.0.4. -// Starting with Bison 3.2, this file is useless: the structure it -// used to define is now defined in "location.hh". -// -// To get rid of this file: -// 1. add 'require "3.2"' (or newer) to your grammar file -// 2. remove references to this file from your build system -// 3. if you used to include it, include "location.hh" instead. +// Positions for Bison parsers in C++ -#include "location.hh" +// Copyright (C) 2002-2015 Free Software Foundation, Inc. + +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +// As a special exception, you may create a larger work that contains +// part or all of the Bison parser skeleton and distribute that work +// under terms of your choice, so long as that work isn't itself a +// parser generator using the skeleton or a modified version thereof +// as a parser skeleton. Alternatively, if you modify or redistribute +// the parser skeleton itself, you may (at your option) remove this +// special exception, which will cause the skeleton and the resulting +// Bison output files to be licensed under the GNU General Public +// License without this special exception. + +// This special exception was added by the Free Software Foundation in +// version 2.2 of Bison. + +/** + ** \file position.hh + ** Define the yy::position class. + */ + +#ifndef YY_YY_POSITION_HH_INCLUDED +# define YY_YY_POSITION_HH_INCLUDED + +# include // std::max +# include +# include + +# ifndef YY_NULLPTR +# if defined __cplusplus && 201103L <= __cplusplus +# define YY_NULLPTR nullptr +# else +# define YY_NULLPTR 0 +# endif +# endif + + +namespace yy { +#line 56 "position.hh" // location.cc:296 + /// Abstract a position. + class position + { + public: + /// Construct a position. + explicit position (std::string* f = YY_NULLPTR, + unsigned int l = 1u, + unsigned int c = 1u) + : filename (f) + , line (l) + , column (c) + { + } + + + /// Initialization. + void initialize (std::string* fn = YY_NULLPTR, + unsigned int l = 1u, + unsigned int c = 1u) + { + filename = fn; + line = l; + column = c; + } + + /** \name Line and Column related manipulators + ** \{ */ + /// (line related) Advance to the COUNT next lines. + void lines (int count = 1) + { + if (count) + { + column = 1u; + line = add_ (line, count, 1); + } + } + + /// (column related) Advance to the COUNT next columns. + void columns (int count = 1) + { + column = add_ (column, count, 1); + } + /** \} */ + + /// File name to which this position refers. + std::string* filename; + /// Current line number. + unsigned int line; + /// Current column number. + unsigned int column; + + private: + /// Compute max(min, lhs+rhs) (provided min <= lhs). + static unsigned int add_ (unsigned int lhs, int rhs, unsigned int min) + { + return (0 < rhs || -static_cast(rhs) < lhs + ? rhs + lhs + : min); + } + }; + + /// Add \a width columns, in place. + inline position& + operator+= (position& res, int width) + { + res.columns (width); + return res; + } + + /// Add \a width columns. + inline position + operator+ (position res, int width) + { + return res += width; + } + + /// Subtract \a width columns, in place. + inline position& + operator-= (position& res, int width) + { + return res += -width; + } + + /// Subtract \a width columns. + inline position + operator- (position res, int width) + { + return res -= width; + } + + /// Compare two position objects. + inline bool + operator== (const position& pos1, const position& pos2) + { + return (pos1.line == pos2.line + && pos1.column == pos2.column + && (pos1.filename == pos2.filename + || (pos1.filename && pos2.filename + && *pos1.filename == *pos2.filename))); + } + + /// Compare two position objects. + inline bool + operator!= (const position& pos1, const position& pos2) + { + return !(pos1 == pos2); + } + + /** \brief Intercept output stream redirection. + ** \param ostr the destination output stream + ** \param pos a reference to the position to redirect + */ + template + inline std::basic_ostream& + operator<< (std::basic_ostream& ostr, const position& pos) + { + if (pos.filename) + ostr << *pos.filename << ':'; + return ostr << pos.line << '.' << pos.column; + } + + +} // yy +#line 180 "position.hh" // location.cc:296 +#endif // !YY_YY_POSITION_HH_INCLUDED diff --git a/src/parser/seclang-parser.cc b/src/parser/seclang-parser.cc index 5dd9f87824..750c86b22d 100644 --- a/src/parser/seclang-parser.cc +++ b/src/parser/seclang-parser.cc @@ -1,8 +1,8 @@ -// A Bison parser, made by GNU Bison 3.2. +// A Bison parser, made by GNU Bison 3.0.4. // Skeleton implementation for Bison LALR(1) parsers in C++ -// Copyright (C) 2002-2015, 2018 Free Software Foundation, Inc. +// Copyright (C) 2002-2015 Free Software Foundation, Inc. // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -30,22 +30,30 @@ // This special exception was added by the Free Software Foundation in // version 2.2 of Bison. -// Undocumented macros, especially those whose name start with YY_, -// are private implementation details. Do not rely on them. - +// First part of user declarations. +#line 37 "seclang-parser.cc" // lalr1.cc:404 +# ifndef YY_NULLPTR +# if defined __cplusplus && 201103L <= __cplusplus +# define YY_NULLPTR nullptr +# else +# define YY_NULLPTR 0 +# endif +# endif #include "seclang-parser.hh" +// User implementation prologue. +#line 51 "seclang-parser.cc" // lalr1.cc:412 // Unqualified %code blocks. -#line 362 "seclang-parser.yy" // lalr1.cc:437 +#line 362 "seclang-parser.yy" // lalr1.cc:413 #include "src/parser/driver.h" -#line 49 "seclang-parser.cc" // lalr1.cc:437 +#line 57 "seclang-parser.cc" // lalr1.cc:413 #ifndef YY_ @@ -60,15 +68,6 @@ # endif #endif -// Whether we are compiled with exception support. -#ifndef YY_EXCEPTIONS -# if defined __GNUC__ && !defined __EXCEPTIONS -# define YY_EXCEPTIONS 0 -# else -# define YY_EXCEPTIONS 1 -# endif -#endif - #define YYRHSLOC(Rhs, K) ((Rhs)[K].location) /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends @@ -105,7 +104,7 @@ { \ *yycdebug_ << Title << ' '; \ yy_print_ (*yycdebug_, Symbol); \ - *yycdebug_ << '\n'; \ + *yycdebug_ << std::endl; \ } \ } while (false) @@ -124,9 +123,9 @@ #else // !YYDEBUG # define YYCDEBUG if (false) std::cerr -# define YY_SYMBOL_PRINT(Title, Symbol) YYUSE (Symbol) -# define YY_REDUCE_PRINT(Rule) static_cast (0) -# define YY_STACK_PRINT() static_cast (0) +# define YY_SYMBOL_PRINT(Title, Symbol) YYUSE(Symbol) +# define YY_REDUCE_PRINT(Rule) static_cast(0) +# define YY_STACK_PRINT() static_cast(0) #endif // !YYDEBUG @@ -140,7 +139,7 @@ namespace yy { -#line 144 "seclang-parser.cc" // lalr1.cc:512 +#line 143 "seclang-parser.cc" // lalr1.cc:479 /* Return YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is @@ -201,20 +200,24 @@ namespace yy { // by_state. + inline seclang_parser::by_state::by_state () : state (empty_state) {} + inline seclang_parser::by_state::by_state (const by_state& other) : state (other.state) {} + inline void seclang_parser::by_state::clear () { state = empty_state; } + inline void seclang_parser::by_state::move (by_state& that) { @@ -222,10 +225,12 @@ namespace yy { that.clear (); } + inline seclang_parser::by_state::by_state (state_type s) : state (s) {} + inline seclang_parser::symbol_number_type seclang_parser::by_state::type_get () const { @@ -235,256 +240,16 @@ namespace yy { return yystos_[state]; } + inline seclang_parser::stack_symbol_type::stack_symbol_type () {} - seclang_parser::stack_symbol_type::stack_symbol_type (YY_RVREF (stack_symbol_type) that) - : super_type (YY_MOVE (that.state), YY_MOVE (that.location)) - { - switch (that.type_get ()) - { - case 144: // "Accuracy" - case 145: // "Allow" - case 146: // "Append" - case 147: // "AuditLog" - case 148: // "Block" - case 149: // "Capture" - case 150: // "Chain" - case 151: // "ACTION_CTL_AUDIT_ENGINE" - case 152: // "ACTION_CTL_AUDIT_LOG_PARTS" - case 153: // "ACTION_CTL_BDY_JSON" - case 154: // "ACTION_CTL_BDY_XML" - case 155: // "ACTION_CTL_BDY_URLENCODED" - case 156: // "ACTION_CTL_FORCE_REQ_BODY_VAR" - case 157: // "ACTION_CTL_REQUEST_BODY_ACCESS" - case 158: // "ACTION_CTL_RULE_REMOVE_BY_ID" - case 159: // "ACTION_CTL_RULE_REMOVE_BY_TAG" - case 160: // "ACTION_CTL_RULE_REMOVE_TARGET_BY_ID" - case 161: // "ACTION_CTL_RULE_REMOVE_TARGET_BY_TAG" - case 162: // "Deny" - case 163: // "DeprecateVar" - case 164: // "Drop" - case 165: // "Exec" - case 166: // "ExpireVar" - case 167: // "Id" - case 168: // "InitCol" - case 169: // "Log" - case 170: // "LogData" - case 171: // "Maturity" - case 172: // "Msg" - case 173: // "MultiMatch" - case 174: // "NoAuditLog" - case 175: // "NoLog" - case 176: // "Pass" - case 177: // "Pause" - case 178: // "Phase" - case 179: // "Prepend" - case 180: // "Proxy" - case 181: // "Redirect" - case 182: // "Rev" - case 183: // "SanitiseArg" - case 184: // "SanitiseMatched" - case 185: // "SanitiseMatchedBytes" - case 186: // "SanitiseRequestHeader" - case 187: // "SanitiseResponseHeader" - case 188: // "SetEnv" - case 189: // "SetRsc" - case 190: // "SetSid" - case 191: // "SetUID" - case 192: // "Severity" - case 193: // "Skip" - case 194: // "SkipAfter" - case 195: // "Status" - case 196: // "Tag" - case 197: // "ACTION_TRANSFORMATION_BASE_64_ENCODE" - case 198: // "ACTION_TRANSFORMATION_BASE_64_DECODE" - case 199: // "ACTION_TRANSFORMATION_BASE_64_DECODE_EXT" - case 200: // "ACTION_TRANSFORMATION_CMD_LINE" - case 201: // "ACTION_TRANSFORMATION_COMPRESS_WHITESPACE" - case 202: // "ACTION_TRANSFORMATION_CSS_DECODE" - case 203: // "ACTION_TRANSFORMATION_ESCAPE_SEQ_DECODE" - case 204: // "ACTION_TRANSFORMATION_HEX_ENCODE" - case 205: // "ACTION_TRANSFORMATION_HEX_DECODE" - case 206: // "ACTION_TRANSFORMATION_HTML_ENTITY_DECODE" - case 207: // "ACTION_TRANSFORMATION_JS_DECODE" - case 208: // "ACTION_TRANSFORMATION_LENGTH" - case 209: // "ACTION_TRANSFORMATION_LOWERCASE" - case 210: // "ACTION_TRANSFORMATION_MD5" - case 211: // "ACTION_TRANSFORMATION_NONE" - case 212: // "ACTION_TRANSFORMATION_NORMALISE_PATH" - case 213: // "ACTION_TRANSFORMATION_NORMALISE_PATH_WIN" - case 214: // "ACTION_TRANSFORMATION_PARITY_EVEN_7_BIT" - case 215: // "ACTION_TRANSFORMATION_PARITY_ODD_7_BIT" - case 216: // "ACTION_TRANSFORMATION_PARITY_ZERO_7_BIT" - case 217: // "ACTION_TRANSFORMATION_REMOVE_COMMENTS" - case 218: // "ACTION_TRANSFORMATION_REMOVE_COMMENTS_CHAR" - case 219: // "ACTION_TRANSFORMATION_REMOVE_NULLS" - case 220: // "ACTION_TRANSFORMATION_REMOVE_WHITESPACE" - case 221: // "ACTION_TRANSFORMATION_REPLACE_COMMENTS" - case 222: // "ACTION_TRANSFORMATION_REPLACE_NULLS" - case 223: // "ACTION_TRANSFORMATION_SHA1" - case 224: // "ACTION_TRANSFORMATION_SQL_HEX_DECODE" - case 225: // "ACTION_TRANSFORMATION_TRIM" - case 226: // "ACTION_TRANSFORMATION_TRIM_LEFT" - case 227: // "ACTION_TRANSFORMATION_TRIM_RIGHT" - case 228: // "ACTION_TRANSFORMATION_UPPERCASE" - case 229: // "ACTION_TRANSFORMATION_URL_ENCODE" - case 230: // "ACTION_TRANSFORMATION_URL_DECODE" - case 231: // "ACTION_TRANSFORMATION_URL_DECODE_UNI" - case 232: // "ACTION_TRANSFORMATION_UTF8_TO_UNICODE" - case 233: // "Ver" - case 234: // "xmlns" - case 235: // "CONFIG_COMPONENT_SIG" - case 236: // "CONFIG_CONN_ENGINE" - case 237: // "CONFIG_SEC_ARGUMENT_SEPARATOR" - case 238: // "CONFIG_SEC_WEB_APP_ID" - case 239: // "CONFIG_SEC_SERVER_SIG" - case 240: // "CONFIG_DIR_AUDIT_DIR" - case 241: // "CONFIG_DIR_AUDIT_DIR_MOD" - case 242: // "CONFIG_DIR_AUDIT_ENG" - case 243: // "CONFIG_DIR_AUDIT_FLE_MOD" - case 244: // "CONFIG_DIR_AUDIT_LOG" - case 245: // "CONFIG_DIR_AUDIT_LOG2" - case 246: // "CONFIG_DIR_AUDIT_LOG_P" - case 247: // "CONFIG_DIR_AUDIT_STS" - case 248: // "CONFIG_DIR_AUDIT_TPE" - case 249: // "CONFIG_DIR_DEBUG_LOG" - case 250: // "CONFIG_DIR_DEBUG_LVL" - case 251: // "CONFIG_SEC_CACHE_TRANSFORMATIONS" - case 252: // "CONFIG_SEC_DISABLE_BACKEND_COMPRESS" - case 253: // "CONFIG_SEC_HASH_ENGINE" - case 254: // "CONFIG_SEC_HASH_KEY" - case 255: // "CONFIG_SEC_HASH_PARAM" - case 256: // "CONFIG_SEC_HASH_METHOD_RX" - case 257: // "CONFIG_SEC_HASH_METHOD_PM" - case 258: // "CONFIG_SEC_CHROOT_DIR" - case 259: // "CONFIG_DIR_GEO_DB" - case 260: // "CONFIG_DIR_GSB_DB" - case 261: // "CONFIG_SEC_GUARDIAN_LOG" - case 262: // "CONFIG_DIR_PCRE_MATCH_LIMIT" - case 263: // "CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION" - case 264: // "CONFIG_SEC_CONN_R_STATE_LIMIT" - case 265: // "CONFIG_SEC_CONN_W_STATE_LIMIT" - case 266: // "CONFIG_SEC_SENSOR_ID" - case 267: // "CONFIG_DIR_REQ_BODY" - case 268: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" - case 269: // "CONFIG_DIR_REQ_BODY_LIMIT" - case 270: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" - case 271: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" - case 272: // "CONFIG_DIR_RES_BODY" - case 273: // "CONFIG_DIR_RES_BODY_LIMIT" - case 274: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" - case 275: // "CONFIG_SEC_RULE_INHERITANCE" - case 276: // "CONFIG_SEC_RULE_PERF_TIME" - case 277: // "CONFIG_DIR_RULE_ENG" - case 278: // "CONFIG_DIR_SEC_ACTION" - case 279: // "CONFIG_DIR_SEC_DEFAULT_ACTION" - case 280: // "CONFIG_DIR_SEC_MARKER" - case 281: // "CONFIG_DIR_UNICODE_MAP_FILE" - case 282: // "CONFIG_DIR_UNICODE_CODE_PAGE" - case 283: // "CONFIG_SEC_COLLECTION_TIMEOUT" - case 284: // "CONFIG_SEC_HTTP_BLKEY" - case 285: // "CONFIG_SEC_INTERCEPT_ON_ERROR" - case 286: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" - case 287: // "CONFIG_SEC_RULE_REMOVE_BY_ID" - case 288: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" - case 289: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" - case 290: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" - case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" - case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" - case 293: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" - case 294: // "CONFIG_UPDLOAD_KEEP_FILES" - case 295: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" - case 296: // "CONFIG_UPLOAD_DIR" - case 297: // "CONFIG_UPLOAD_FILE_LIMIT" - case 298: // "CONFIG_UPLOAD_FILE_MODE" - case 299: // "CONFIG_VALUE_ABORT" - case 300: // "CONFIG_VALUE_DETC" - case 301: // "CONFIG_VALUE_HTTPS" - case 302: // "CONFIG_VALUE_OFF" - case 303: // "CONFIG_VALUE_ON" - case 304: // "CONFIG_VALUE_PARALLEL" - case 305: // "CONFIG_VALUE_PROCESS_PARTIAL" - case 306: // "CONFIG_VALUE_REJECT" - case 307: // "CONFIG_VALUE_RELEVANT_ONLY" - case 308: // "CONFIG_VALUE_SERIAL" - case 309: // "CONFIG_VALUE_WARN" - case 310: // "CONFIG_XML_EXTERNAL_ENTITY" - case 311: // "CONGIG_DIR_RESPONSE_BODY_MP" - case 312: // "CONGIG_DIR_SEC_ARG_SEP" - case 313: // "CONGIG_DIR_SEC_COOKIE_FORMAT" - case 314: // "CONFIG_SEC_COOKIEV0_SEPARATOR" - case 315: // "CONGIG_DIR_SEC_DATA_DIR" - case 316: // "CONGIG_DIR_SEC_STATUS_ENGINE" - case 317: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" - case 318: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" - case 319: // "CONGIG_DIR_SEC_TMP_DIR" - case 320: // "DIRECTIVE" - case 321: // "DIRECTIVE_SECRULESCRIPT" - case 322: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" - case 323: // "QUOTATION_MARK" - case 324: // "RUN_TIME_VAR_BLD" - case 325: // "RUN_TIME_VAR_DUR" - case 326: // "RUN_TIME_VAR_HSV" - case 327: // "RUN_TIME_VAR_REMOTE_USER" - case 328: // "RUN_TIME_VAR_TIME" - case 329: // "RUN_TIME_VAR_TIME_DAY" - case 330: // "RUN_TIME_VAR_TIME_EPOCH" - case 331: // "RUN_TIME_VAR_TIME_HOUR" - case 332: // "RUN_TIME_VAR_TIME_MIN" - case 333: // "RUN_TIME_VAR_TIME_MON" - case 334: // "RUN_TIME_VAR_TIME_SEC" - case 335: // "RUN_TIME_VAR_TIME_WDAY" - case 336: // "RUN_TIME_VAR_TIME_YEAR" - case 337: // "VARIABLE" - case 338: // "Dictionary element" - case 339: // "Dictionary element, selected by regexp" - value.YY_MOVE_OR_COPY< std::string > (YY_MOVE (that.value)); - break; - - case 346: // op - case 347: // op_before_init - value.YY_MOVE_OR_COPY< std::unique_ptr > (YY_MOVE (that.value)); - break; - - case 355: // run_time_string - value.YY_MOVE_OR_COPY< std::unique_ptr > (YY_MOVE (that.value)); - break; - - case 352: // var - value.YY_MOVE_OR_COPY< std::unique_ptr > (YY_MOVE (that.value)); - break; - - case 353: // act - case 354: // setvar_action - value.YY_MOVE_OR_COPY< std::unique_ptr > (YY_MOVE (that.value)); - break; - - case 349: // variables - case 350: // variables_pre_process - case 351: // variables_may_be_quoted - value.YY_MOVE_OR_COPY< std::unique_ptr > > > (YY_MOVE (that.value)); - break; - - case 344: // actions - case 345: // actions_may_quoted - value.YY_MOVE_OR_COPY< std::unique_ptr > > > (YY_MOVE (that.value)); - break; - - default: - break; - } - -#if defined __cplusplus && 201103L <= __cplusplus - // that is emptied. - that.state = empty_state; -#endif - } - seclang_parser::stack_symbol_type::stack_symbol_type (state_type s, YY_MOVE_REF (symbol_type) that) - : super_type (s, YY_MOVE (that.location)) + inline + seclang_parser::stack_symbol_type::stack_symbol_type (state_type s, symbol_type& that) + : super_type (s, that.location) { - switch (that.type_get ()) + switch (that.type_get ()) { case 144: // "Accuracy" case 145: // "Allow" @@ -609,109 +374,110 @@ namespace yy { case 264: // "CONFIG_SEC_CONN_R_STATE_LIMIT" case 265: // "CONFIG_SEC_CONN_W_STATE_LIMIT" case 266: // "CONFIG_SEC_SENSOR_ID" - case 267: // "CONFIG_DIR_REQ_BODY" - case 268: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" - case 269: // "CONFIG_DIR_REQ_BODY_LIMIT" - case 270: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" - case 271: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" - case 272: // "CONFIG_DIR_RES_BODY" - case 273: // "CONFIG_DIR_RES_BODY_LIMIT" - case 274: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" - case 275: // "CONFIG_SEC_RULE_INHERITANCE" - case 276: // "CONFIG_SEC_RULE_PERF_TIME" - case 277: // "CONFIG_DIR_RULE_ENG" - case 278: // "CONFIG_DIR_SEC_ACTION" - case 279: // "CONFIG_DIR_SEC_DEFAULT_ACTION" - case 280: // "CONFIG_DIR_SEC_MARKER" - case 281: // "CONFIG_DIR_UNICODE_MAP_FILE" - case 282: // "CONFIG_DIR_UNICODE_CODE_PAGE" - case 283: // "CONFIG_SEC_COLLECTION_TIMEOUT" - case 284: // "CONFIG_SEC_HTTP_BLKEY" - case 285: // "CONFIG_SEC_INTERCEPT_ON_ERROR" - case 286: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" - case 287: // "CONFIG_SEC_RULE_REMOVE_BY_ID" - case 288: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" - case 289: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" - case 290: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" - case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" - case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" - case 293: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" - case 294: // "CONFIG_UPDLOAD_KEEP_FILES" - case 295: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" - case 296: // "CONFIG_UPLOAD_DIR" - case 297: // "CONFIG_UPLOAD_FILE_LIMIT" - case 298: // "CONFIG_UPLOAD_FILE_MODE" - case 299: // "CONFIG_VALUE_ABORT" - case 300: // "CONFIG_VALUE_DETC" - case 301: // "CONFIG_VALUE_HTTPS" - case 302: // "CONFIG_VALUE_OFF" - case 303: // "CONFIG_VALUE_ON" - case 304: // "CONFIG_VALUE_PARALLEL" - case 305: // "CONFIG_VALUE_PROCESS_PARTIAL" - case 306: // "CONFIG_VALUE_REJECT" - case 307: // "CONFIG_VALUE_RELEVANT_ONLY" - case 308: // "CONFIG_VALUE_SERIAL" - case 309: // "CONFIG_VALUE_WARN" - case 310: // "CONFIG_XML_EXTERNAL_ENTITY" - case 311: // "CONGIG_DIR_RESPONSE_BODY_MP" - case 312: // "CONGIG_DIR_SEC_ARG_SEP" - case 313: // "CONGIG_DIR_SEC_COOKIE_FORMAT" - case 314: // "CONFIG_SEC_COOKIEV0_SEPARATOR" - case 315: // "CONGIG_DIR_SEC_DATA_DIR" - case 316: // "CONGIG_DIR_SEC_STATUS_ENGINE" - case 317: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" - case 318: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" - case 319: // "CONGIG_DIR_SEC_TMP_DIR" - case 320: // "DIRECTIVE" - case 321: // "DIRECTIVE_SECRULESCRIPT" - case 322: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" - case 323: // "QUOTATION_MARK" - case 324: // "RUN_TIME_VAR_BLD" - case 325: // "RUN_TIME_VAR_DUR" - case 326: // "RUN_TIME_VAR_HSV" - case 327: // "RUN_TIME_VAR_REMOTE_USER" - case 328: // "RUN_TIME_VAR_TIME" - case 329: // "RUN_TIME_VAR_TIME_DAY" - case 330: // "RUN_TIME_VAR_TIME_EPOCH" - case 331: // "RUN_TIME_VAR_TIME_HOUR" - case 332: // "RUN_TIME_VAR_TIME_MIN" - case 333: // "RUN_TIME_VAR_TIME_MON" - case 334: // "RUN_TIME_VAR_TIME_SEC" - case 335: // "RUN_TIME_VAR_TIME_WDAY" - case 336: // "RUN_TIME_VAR_TIME_YEAR" - case 337: // "VARIABLE" - case 338: // "Dictionary element" - case 339: // "Dictionary element, selected by regexp" - value.move< std::string > (YY_MOVE (that.value)); + case 267: // "CONFIG_DIR_ARGS_LIMIT" + case 268: // "CONFIG_DIR_REQ_BODY" + case 269: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" + case 270: // "CONFIG_DIR_REQ_BODY_LIMIT" + case 271: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" + case 272: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" + case 273: // "CONFIG_DIR_RES_BODY" + case 274: // "CONFIG_DIR_RES_BODY_LIMIT" + case 275: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" + case 276: // "CONFIG_SEC_RULE_INHERITANCE" + case 277: // "CONFIG_SEC_RULE_PERF_TIME" + case 278: // "CONFIG_DIR_RULE_ENG" + case 279: // "CONFIG_DIR_SEC_ACTION" + case 280: // "CONFIG_DIR_SEC_DEFAULT_ACTION" + case 281: // "CONFIG_DIR_SEC_MARKER" + case 282: // "CONFIG_DIR_UNICODE_MAP_FILE" + case 283: // "CONFIG_DIR_UNICODE_CODE_PAGE" + case 284: // "CONFIG_SEC_COLLECTION_TIMEOUT" + case 285: // "CONFIG_SEC_HTTP_BLKEY" + case 286: // "CONFIG_SEC_INTERCEPT_ON_ERROR" + case 287: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" + case 288: // "CONFIG_SEC_RULE_REMOVE_BY_ID" + case 289: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" + case 290: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" + case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" + case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" + case 293: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" + case 294: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" + case 295: // "CONFIG_UPDLOAD_KEEP_FILES" + case 296: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" + case 297: // "CONFIG_UPLOAD_DIR" + case 298: // "CONFIG_UPLOAD_FILE_LIMIT" + case 299: // "CONFIG_UPLOAD_FILE_MODE" + case 300: // "CONFIG_VALUE_ABORT" + case 301: // "CONFIG_VALUE_DETC" + case 302: // "CONFIG_VALUE_HTTPS" + case 303: // "CONFIG_VALUE_OFF" + case 304: // "CONFIG_VALUE_ON" + case 305: // "CONFIG_VALUE_PARALLEL" + case 306: // "CONFIG_VALUE_PROCESS_PARTIAL" + case 307: // "CONFIG_VALUE_REJECT" + case 308: // "CONFIG_VALUE_RELEVANT_ONLY" + case 309: // "CONFIG_VALUE_SERIAL" + case 310: // "CONFIG_VALUE_WARN" + case 311: // "CONFIG_XML_EXTERNAL_ENTITY" + case 312: // "CONGIG_DIR_RESPONSE_BODY_MP" + case 313: // "CONGIG_DIR_SEC_ARG_SEP" + case 314: // "CONGIG_DIR_SEC_COOKIE_FORMAT" + case 315: // "CONFIG_SEC_COOKIEV0_SEPARATOR" + case 316: // "CONGIG_DIR_SEC_DATA_DIR" + case 317: // "CONGIG_DIR_SEC_STATUS_ENGINE" + case 318: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" + case 319: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" + case 320: // "CONGIG_DIR_SEC_TMP_DIR" + case 321: // "DIRECTIVE" + case 322: // "DIRECTIVE_SECRULESCRIPT" + case 323: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" + case 324: // "QUOTATION_MARK" + case 325: // "RUN_TIME_VAR_BLD" + case 326: // "RUN_TIME_VAR_DUR" + case 327: // "RUN_TIME_VAR_HSV" + case 328: // "RUN_TIME_VAR_REMOTE_USER" + case 329: // "RUN_TIME_VAR_TIME" + case 330: // "RUN_TIME_VAR_TIME_DAY" + case 331: // "RUN_TIME_VAR_TIME_EPOCH" + case 332: // "RUN_TIME_VAR_TIME_HOUR" + case 333: // "RUN_TIME_VAR_TIME_MIN" + case 334: // "RUN_TIME_VAR_TIME_MON" + case 335: // "RUN_TIME_VAR_TIME_SEC" + case 336: // "RUN_TIME_VAR_TIME_WDAY" + case 337: // "RUN_TIME_VAR_TIME_YEAR" + case 338: // "VARIABLE" + case 339: // "Dictionary element" + case 340: // "Dictionary element, selected by regexp" + value.move< std::string > (that.value); break; - case 346: // op - case 347: // op_before_init - value.move< std::unique_ptr > (YY_MOVE (that.value)); + case 347: // op + case 348: // op_before_init + value.move< std::unique_ptr > (that.value); break; - case 355: // run_time_string - value.move< std::unique_ptr > (YY_MOVE (that.value)); + case 356: // run_time_string + value.move< std::unique_ptr > (that.value); break; - case 352: // var - value.move< std::unique_ptr > (YY_MOVE (that.value)); + case 353: // var + value.move< std::unique_ptr > (that.value); break; - case 353: // act - case 354: // setvar_action - value.move< std::unique_ptr > (YY_MOVE (that.value)); + case 354: // act + case 355: // setvar_action + value.move< std::unique_ptr > (that.value); break; - case 349: // variables - case 350: // variables_pre_process - case 351: // variables_may_be_quoted - value.move< std::unique_ptr > > > (YY_MOVE (that.value)); + case 350: // variables + case 351: // variables_pre_process + case 352: // variables_may_be_quoted + value.move< std::unique_ptr > > > (that.value); break; - case 344: // actions - case 345: // actions_may_quoted - value.move< std::unique_ptr > > > (YY_MOVE (that.value)); + case 345: // actions + case 346: // actions_may_quoted + value.move< std::unique_ptr > > > (that.value); break; default: @@ -722,12 +488,12 @@ namespace yy { that.type = empty_symbol; } -#if defined __cplusplus && __cplusplus < 201103L + inline seclang_parser::stack_symbol_type& - seclang_parser::stack_symbol_type::operator= (stack_symbol_type& that) + seclang_parser::stack_symbol_type::operator= (const stack_symbol_type& that) { state = that.state; - switch (that.type_get ()) + switch (that.type_get ()) { case 144: // "Accuracy" case 145: // "Allow" @@ -852,109 +618,110 @@ namespace yy { case 264: // "CONFIG_SEC_CONN_R_STATE_LIMIT" case 265: // "CONFIG_SEC_CONN_W_STATE_LIMIT" case 266: // "CONFIG_SEC_SENSOR_ID" - case 267: // "CONFIG_DIR_REQ_BODY" - case 268: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" - case 269: // "CONFIG_DIR_REQ_BODY_LIMIT" - case 270: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" - case 271: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" - case 272: // "CONFIG_DIR_RES_BODY" - case 273: // "CONFIG_DIR_RES_BODY_LIMIT" - case 274: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" - case 275: // "CONFIG_SEC_RULE_INHERITANCE" - case 276: // "CONFIG_SEC_RULE_PERF_TIME" - case 277: // "CONFIG_DIR_RULE_ENG" - case 278: // "CONFIG_DIR_SEC_ACTION" - case 279: // "CONFIG_DIR_SEC_DEFAULT_ACTION" - case 280: // "CONFIG_DIR_SEC_MARKER" - case 281: // "CONFIG_DIR_UNICODE_MAP_FILE" - case 282: // "CONFIG_DIR_UNICODE_CODE_PAGE" - case 283: // "CONFIG_SEC_COLLECTION_TIMEOUT" - case 284: // "CONFIG_SEC_HTTP_BLKEY" - case 285: // "CONFIG_SEC_INTERCEPT_ON_ERROR" - case 286: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" - case 287: // "CONFIG_SEC_RULE_REMOVE_BY_ID" - case 288: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" - case 289: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" - case 290: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" - case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" - case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" - case 293: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" - case 294: // "CONFIG_UPDLOAD_KEEP_FILES" - case 295: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" - case 296: // "CONFIG_UPLOAD_DIR" - case 297: // "CONFIG_UPLOAD_FILE_LIMIT" - case 298: // "CONFIG_UPLOAD_FILE_MODE" - case 299: // "CONFIG_VALUE_ABORT" - case 300: // "CONFIG_VALUE_DETC" - case 301: // "CONFIG_VALUE_HTTPS" - case 302: // "CONFIG_VALUE_OFF" - case 303: // "CONFIG_VALUE_ON" - case 304: // "CONFIG_VALUE_PARALLEL" - case 305: // "CONFIG_VALUE_PROCESS_PARTIAL" - case 306: // "CONFIG_VALUE_REJECT" - case 307: // "CONFIG_VALUE_RELEVANT_ONLY" - case 308: // "CONFIG_VALUE_SERIAL" - case 309: // "CONFIG_VALUE_WARN" - case 310: // "CONFIG_XML_EXTERNAL_ENTITY" - case 311: // "CONGIG_DIR_RESPONSE_BODY_MP" - case 312: // "CONGIG_DIR_SEC_ARG_SEP" - case 313: // "CONGIG_DIR_SEC_COOKIE_FORMAT" - case 314: // "CONFIG_SEC_COOKIEV0_SEPARATOR" - case 315: // "CONGIG_DIR_SEC_DATA_DIR" - case 316: // "CONGIG_DIR_SEC_STATUS_ENGINE" - case 317: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" - case 318: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" - case 319: // "CONGIG_DIR_SEC_TMP_DIR" - case 320: // "DIRECTIVE" - case 321: // "DIRECTIVE_SECRULESCRIPT" - case 322: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" - case 323: // "QUOTATION_MARK" - case 324: // "RUN_TIME_VAR_BLD" - case 325: // "RUN_TIME_VAR_DUR" - case 326: // "RUN_TIME_VAR_HSV" - case 327: // "RUN_TIME_VAR_REMOTE_USER" - case 328: // "RUN_TIME_VAR_TIME" - case 329: // "RUN_TIME_VAR_TIME_DAY" - case 330: // "RUN_TIME_VAR_TIME_EPOCH" - case 331: // "RUN_TIME_VAR_TIME_HOUR" - case 332: // "RUN_TIME_VAR_TIME_MIN" - case 333: // "RUN_TIME_VAR_TIME_MON" - case 334: // "RUN_TIME_VAR_TIME_SEC" - case 335: // "RUN_TIME_VAR_TIME_WDAY" - case 336: // "RUN_TIME_VAR_TIME_YEAR" - case 337: // "VARIABLE" - case 338: // "Dictionary element" - case 339: // "Dictionary element, selected by regexp" - value.move< std::string > (that.value); + case 267: // "CONFIG_DIR_ARGS_LIMIT" + case 268: // "CONFIG_DIR_REQ_BODY" + case 269: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" + case 270: // "CONFIG_DIR_REQ_BODY_LIMIT" + case 271: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" + case 272: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" + case 273: // "CONFIG_DIR_RES_BODY" + case 274: // "CONFIG_DIR_RES_BODY_LIMIT" + case 275: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" + case 276: // "CONFIG_SEC_RULE_INHERITANCE" + case 277: // "CONFIG_SEC_RULE_PERF_TIME" + case 278: // "CONFIG_DIR_RULE_ENG" + case 279: // "CONFIG_DIR_SEC_ACTION" + case 280: // "CONFIG_DIR_SEC_DEFAULT_ACTION" + case 281: // "CONFIG_DIR_SEC_MARKER" + case 282: // "CONFIG_DIR_UNICODE_MAP_FILE" + case 283: // "CONFIG_DIR_UNICODE_CODE_PAGE" + case 284: // "CONFIG_SEC_COLLECTION_TIMEOUT" + case 285: // "CONFIG_SEC_HTTP_BLKEY" + case 286: // "CONFIG_SEC_INTERCEPT_ON_ERROR" + case 287: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" + case 288: // "CONFIG_SEC_RULE_REMOVE_BY_ID" + case 289: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" + case 290: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" + case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" + case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" + case 293: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" + case 294: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" + case 295: // "CONFIG_UPDLOAD_KEEP_FILES" + case 296: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" + case 297: // "CONFIG_UPLOAD_DIR" + case 298: // "CONFIG_UPLOAD_FILE_LIMIT" + case 299: // "CONFIG_UPLOAD_FILE_MODE" + case 300: // "CONFIG_VALUE_ABORT" + case 301: // "CONFIG_VALUE_DETC" + case 302: // "CONFIG_VALUE_HTTPS" + case 303: // "CONFIG_VALUE_OFF" + case 304: // "CONFIG_VALUE_ON" + case 305: // "CONFIG_VALUE_PARALLEL" + case 306: // "CONFIG_VALUE_PROCESS_PARTIAL" + case 307: // "CONFIG_VALUE_REJECT" + case 308: // "CONFIG_VALUE_RELEVANT_ONLY" + case 309: // "CONFIG_VALUE_SERIAL" + case 310: // "CONFIG_VALUE_WARN" + case 311: // "CONFIG_XML_EXTERNAL_ENTITY" + case 312: // "CONGIG_DIR_RESPONSE_BODY_MP" + case 313: // "CONGIG_DIR_SEC_ARG_SEP" + case 314: // "CONGIG_DIR_SEC_COOKIE_FORMAT" + case 315: // "CONFIG_SEC_COOKIEV0_SEPARATOR" + case 316: // "CONGIG_DIR_SEC_DATA_DIR" + case 317: // "CONGIG_DIR_SEC_STATUS_ENGINE" + case 318: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" + case 319: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" + case 320: // "CONGIG_DIR_SEC_TMP_DIR" + case 321: // "DIRECTIVE" + case 322: // "DIRECTIVE_SECRULESCRIPT" + case 323: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" + case 324: // "QUOTATION_MARK" + case 325: // "RUN_TIME_VAR_BLD" + case 326: // "RUN_TIME_VAR_DUR" + case 327: // "RUN_TIME_VAR_HSV" + case 328: // "RUN_TIME_VAR_REMOTE_USER" + case 329: // "RUN_TIME_VAR_TIME" + case 330: // "RUN_TIME_VAR_TIME_DAY" + case 331: // "RUN_TIME_VAR_TIME_EPOCH" + case 332: // "RUN_TIME_VAR_TIME_HOUR" + case 333: // "RUN_TIME_VAR_TIME_MIN" + case 334: // "RUN_TIME_VAR_TIME_MON" + case 335: // "RUN_TIME_VAR_TIME_SEC" + case 336: // "RUN_TIME_VAR_TIME_WDAY" + case 337: // "RUN_TIME_VAR_TIME_YEAR" + case 338: // "VARIABLE" + case 339: // "Dictionary element" + case 340: // "Dictionary element, selected by regexp" + value.copy< std::string > (that.value); break; - case 346: // op - case 347: // op_before_init - value.move< std::unique_ptr > (that.value); + case 347: // op + case 348: // op_before_init + value.copy< std::unique_ptr > (that.value); break; - case 355: // run_time_string - value.move< std::unique_ptr > (that.value); + case 356: // run_time_string + value.copy< std::unique_ptr > (that.value); break; - case 352: // var - value.move< std::unique_ptr > (that.value); + case 353: // var + value.copy< std::unique_ptr > (that.value); break; - case 353: // act - case 354: // setvar_action - value.move< std::unique_ptr > (that.value); + case 354: // act + case 355: // setvar_action + value.copy< std::unique_ptr > (that.value); break; - case 349: // variables - case 350: // variables_pre_process - case 351: // variables_may_be_quoted - value.move< std::unique_ptr > > > (that.value); + case 350: // variables + case 351: // variables_pre_process + case 352: // variables_may_be_quoted + value.copy< std::unique_ptr > > > (that.value); break; - case 344: // actions - case 345: // actions_may_quoted - value.move< std::unique_ptr > > > (that.value); + case 345: // actions + case 346: // actions_may_quoted + value.copy< std::unique_ptr > > > (that.value); break; default: @@ -962,13 +729,12 @@ namespace yy { } location = that.location; - // that is emptied. - that.state = empty_state; return *this; } -#endif + template + inline void seclang_parser::yy_destroy_ (const char* yymsg, basic_symbol& yysym) const { @@ -997,27 +763,26 @@ namespace yy { } #endif + inline void - seclang_parser::yypush_ (const char* m, YY_MOVE_REF (stack_symbol_type) sym) + seclang_parser::yypush_ (const char* m, state_type s, symbol_type& sym) { - if (m) - YY_SYMBOL_PRINT (m, sym); - yystack_.push (YY_MOVE (sym)); + stack_symbol_type t (s, sym); + yypush_ (m, t); } + inline void - seclang_parser::yypush_ (const char* m, state_type s, YY_MOVE_REF (symbol_type) sym) + seclang_parser::yypush_ (const char* m, stack_symbol_type& s) { -#if defined __cplusplus && 201103L <= __cplusplus - yypush_ (m, stack_symbol_type (s, std::move (sym))); -#else - stack_symbol_type ss (s, sym); - yypush_ (m, ss); -#endif + if (m) + YY_SYMBOL_PRINT (m, s); + yystack_.push (s); } + inline void - seclang_parser::yypop_ (int n) + seclang_parser::yypop_ (unsigned int n) { yystack_.pop (n); } @@ -1049,7 +814,7 @@ namespace yy { } #endif // YYDEBUG - seclang_parser::state_type + inline seclang_parser::state_type seclang_parser::yy_lr_goto_state_ (state_type yystate, int yysym) { int yyr = yypgoto_[yysym - yyntokens_] + yystate; @@ -1059,24 +824,18 @@ namespace yy { return yydefgoto_[yysym - yyntokens_]; } - bool + inline bool seclang_parser::yy_pact_value_is_default_ (int yyvalue) { return yyvalue == yypact_ninf_; } - bool + inline bool seclang_parser::yy_table_value_is_error_ (int yyvalue) { return yyvalue == yytable_ninf_; } - int - seclang_parser::operator() () - { - return parse (); - } - int seclang_parser::parse () { @@ -1098,32 +857,32 @@ namespace yy { /// The return value of parse (). int yyresult; -#if YY_EXCEPTIONS + // FIXME: This shoud be completely indented. It is not yet to + // avoid gratuitous conflicts when merging into the master branch. try -#endif // YY_EXCEPTIONS { - YYCDEBUG << "Starting parse\n"; + YYCDEBUG << "Starting parse" << std::endl; // User initialization code. -#line 355 "seclang-parser.yy" // lalr1.cc:783 + #line 355 "/home/julien/modsec/modsecurity/src/parser/seclang-parser.yy" // lalr1.cc:741 { // Initialize the initial location. yyla.location.begin.filename = yyla.location.end.filename = &driver.file; } -#line 1116 "seclang-parser.cc" // lalr1.cc:783 +#line 875 "seclang-parser.cc" // lalr1.cc:741 /* Initialize the stack. The initial state will be set in yynewstate, since the latter expects the semantical and the location values to have been already stored, initialize these stacks with a primary value. */ yystack_.clear (); - yypush_ (YY_NULLPTR, 0, YY_MOVE (yyla)); + yypush_ (YY_NULLPTR, 0, yyla); // A new symbol was pushed on the stack. yynewstate: - YYCDEBUG << "Entering state " << yystack_[0].state << '\n'; + YYCDEBUG << "Entering state " << yystack_[0].state << std::endl; // Accept? if (yystack_[0].state == yyfinal_) @@ -1133,6 +892,7 @@ namespace yy { // Backup. yybackup: + // Try to take a decision without lookahead. yyn = yypact_[yystack_[0].state]; if (yy_pact_value_is_default_ (yyn)) @@ -1142,20 +902,16 @@ namespace yy { if (yyla.empty ()) { YYCDEBUG << "Reading a token: "; -#if YY_EXCEPTIONS try -#endif // YY_EXCEPTIONS { symbol_type yylookahead (yylex (driver)); yyla.move (yylookahead); } -#if YY_EXCEPTIONS catch (const syntax_error& yyexc) { error (yyexc); goto yyerrlab1; } -#endif // YY_EXCEPTIONS } YY_SYMBOL_PRINT ("Next token is", yyla); @@ -1180,7 +936,7 @@ namespace yy { --yyerrstatus_; // Shift the lookahead token. - yypush_ ("Shifting", yyn, YY_MOVE (yyla)); + yypush_ ("Shifting", yyn, yyla); goto yynewstate; /*-----------------------------------------------------------. @@ -1199,11 +955,11 @@ namespace yy { yylen = yyr2_[yyn]; { stack_symbol_type yylhs; - yylhs.state = yy_lr_goto_state_ (yystack_[yylen].state, yyr1_[yyn]); + yylhs.state = yy_lr_goto_state_(yystack_[yylen].state, yyr1_[yyn]); /* Variants are always initialized to an empty instance of the correct type. The default '$$ = $1' action is NOT applied when using variants. */ - switch (yyr1_[yyn]) + switch (yyr1_[yyn]) { case 144: // "Accuracy" case 145: // "Allow" @@ -1328,109 +1084,110 @@ namespace yy { case 264: // "CONFIG_SEC_CONN_R_STATE_LIMIT" case 265: // "CONFIG_SEC_CONN_W_STATE_LIMIT" case 266: // "CONFIG_SEC_SENSOR_ID" - case 267: // "CONFIG_DIR_REQ_BODY" - case 268: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" - case 269: // "CONFIG_DIR_REQ_BODY_LIMIT" - case 270: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" - case 271: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" - case 272: // "CONFIG_DIR_RES_BODY" - case 273: // "CONFIG_DIR_RES_BODY_LIMIT" - case 274: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" - case 275: // "CONFIG_SEC_RULE_INHERITANCE" - case 276: // "CONFIG_SEC_RULE_PERF_TIME" - case 277: // "CONFIG_DIR_RULE_ENG" - case 278: // "CONFIG_DIR_SEC_ACTION" - case 279: // "CONFIG_DIR_SEC_DEFAULT_ACTION" - case 280: // "CONFIG_DIR_SEC_MARKER" - case 281: // "CONFIG_DIR_UNICODE_MAP_FILE" - case 282: // "CONFIG_DIR_UNICODE_CODE_PAGE" - case 283: // "CONFIG_SEC_COLLECTION_TIMEOUT" - case 284: // "CONFIG_SEC_HTTP_BLKEY" - case 285: // "CONFIG_SEC_INTERCEPT_ON_ERROR" - case 286: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" - case 287: // "CONFIG_SEC_RULE_REMOVE_BY_ID" - case 288: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" - case 289: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" - case 290: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" - case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" - case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" - case 293: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" - case 294: // "CONFIG_UPDLOAD_KEEP_FILES" - case 295: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" - case 296: // "CONFIG_UPLOAD_DIR" - case 297: // "CONFIG_UPLOAD_FILE_LIMIT" - case 298: // "CONFIG_UPLOAD_FILE_MODE" - case 299: // "CONFIG_VALUE_ABORT" - case 300: // "CONFIG_VALUE_DETC" - case 301: // "CONFIG_VALUE_HTTPS" - case 302: // "CONFIG_VALUE_OFF" - case 303: // "CONFIG_VALUE_ON" - case 304: // "CONFIG_VALUE_PARALLEL" - case 305: // "CONFIG_VALUE_PROCESS_PARTIAL" - case 306: // "CONFIG_VALUE_REJECT" - case 307: // "CONFIG_VALUE_RELEVANT_ONLY" - case 308: // "CONFIG_VALUE_SERIAL" - case 309: // "CONFIG_VALUE_WARN" - case 310: // "CONFIG_XML_EXTERNAL_ENTITY" - case 311: // "CONGIG_DIR_RESPONSE_BODY_MP" - case 312: // "CONGIG_DIR_SEC_ARG_SEP" - case 313: // "CONGIG_DIR_SEC_COOKIE_FORMAT" - case 314: // "CONFIG_SEC_COOKIEV0_SEPARATOR" - case 315: // "CONGIG_DIR_SEC_DATA_DIR" - case 316: // "CONGIG_DIR_SEC_STATUS_ENGINE" - case 317: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" - case 318: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" - case 319: // "CONGIG_DIR_SEC_TMP_DIR" - case 320: // "DIRECTIVE" - case 321: // "DIRECTIVE_SECRULESCRIPT" - case 322: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" - case 323: // "QUOTATION_MARK" - case 324: // "RUN_TIME_VAR_BLD" - case 325: // "RUN_TIME_VAR_DUR" - case 326: // "RUN_TIME_VAR_HSV" - case 327: // "RUN_TIME_VAR_REMOTE_USER" - case 328: // "RUN_TIME_VAR_TIME" - case 329: // "RUN_TIME_VAR_TIME_DAY" - case 330: // "RUN_TIME_VAR_TIME_EPOCH" - case 331: // "RUN_TIME_VAR_TIME_HOUR" - case 332: // "RUN_TIME_VAR_TIME_MIN" - case 333: // "RUN_TIME_VAR_TIME_MON" - case 334: // "RUN_TIME_VAR_TIME_SEC" - case 335: // "RUN_TIME_VAR_TIME_WDAY" - case 336: // "RUN_TIME_VAR_TIME_YEAR" - case 337: // "VARIABLE" - case 338: // "Dictionary element" - case 339: // "Dictionary element, selected by regexp" - yylhs.value.emplace< std::string > (); + case 267: // "CONFIG_DIR_ARGS_LIMIT" + case 268: // "CONFIG_DIR_REQ_BODY" + case 269: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" + case 270: // "CONFIG_DIR_REQ_BODY_LIMIT" + case 271: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" + case 272: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" + case 273: // "CONFIG_DIR_RES_BODY" + case 274: // "CONFIG_DIR_RES_BODY_LIMIT" + case 275: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" + case 276: // "CONFIG_SEC_RULE_INHERITANCE" + case 277: // "CONFIG_SEC_RULE_PERF_TIME" + case 278: // "CONFIG_DIR_RULE_ENG" + case 279: // "CONFIG_DIR_SEC_ACTION" + case 280: // "CONFIG_DIR_SEC_DEFAULT_ACTION" + case 281: // "CONFIG_DIR_SEC_MARKER" + case 282: // "CONFIG_DIR_UNICODE_MAP_FILE" + case 283: // "CONFIG_DIR_UNICODE_CODE_PAGE" + case 284: // "CONFIG_SEC_COLLECTION_TIMEOUT" + case 285: // "CONFIG_SEC_HTTP_BLKEY" + case 286: // "CONFIG_SEC_INTERCEPT_ON_ERROR" + case 287: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" + case 288: // "CONFIG_SEC_RULE_REMOVE_BY_ID" + case 289: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" + case 290: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" + case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" + case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" + case 293: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" + case 294: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" + case 295: // "CONFIG_UPDLOAD_KEEP_FILES" + case 296: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" + case 297: // "CONFIG_UPLOAD_DIR" + case 298: // "CONFIG_UPLOAD_FILE_LIMIT" + case 299: // "CONFIG_UPLOAD_FILE_MODE" + case 300: // "CONFIG_VALUE_ABORT" + case 301: // "CONFIG_VALUE_DETC" + case 302: // "CONFIG_VALUE_HTTPS" + case 303: // "CONFIG_VALUE_OFF" + case 304: // "CONFIG_VALUE_ON" + case 305: // "CONFIG_VALUE_PARALLEL" + case 306: // "CONFIG_VALUE_PROCESS_PARTIAL" + case 307: // "CONFIG_VALUE_REJECT" + case 308: // "CONFIG_VALUE_RELEVANT_ONLY" + case 309: // "CONFIG_VALUE_SERIAL" + case 310: // "CONFIG_VALUE_WARN" + case 311: // "CONFIG_XML_EXTERNAL_ENTITY" + case 312: // "CONGIG_DIR_RESPONSE_BODY_MP" + case 313: // "CONGIG_DIR_SEC_ARG_SEP" + case 314: // "CONGIG_DIR_SEC_COOKIE_FORMAT" + case 315: // "CONFIG_SEC_COOKIEV0_SEPARATOR" + case 316: // "CONGIG_DIR_SEC_DATA_DIR" + case 317: // "CONGIG_DIR_SEC_STATUS_ENGINE" + case 318: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" + case 319: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" + case 320: // "CONGIG_DIR_SEC_TMP_DIR" + case 321: // "DIRECTIVE" + case 322: // "DIRECTIVE_SECRULESCRIPT" + case 323: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" + case 324: // "QUOTATION_MARK" + case 325: // "RUN_TIME_VAR_BLD" + case 326: // "RUN_TIME_VAR_DUR" + case 327: // "RUN_TIME_VAR_HSV" + case 328: // "RUN_TIME_VAR_REMOTE_USER" + case 329: // "RUN_TIME_VAR_TIME" + case 330: // "RUN_TIME_VAR_TIME_DAY" + case 331: // "RUN_TIME_VAR_TIME_EPOCH" + case 332: // "RUN_TIME_VAR_TIME_HOUR" + case 333: // "RUN_TIME_VAR_TIME_MIN" + case 334: // "RUN_TIME_VAR_TIME_MON" + case 335: // "RUN_TIME_VAR_TIME_SEC" + case 336: // "RUN_TIME_VAR_TIME_WDAY" + case 337: // "RUN_TIME_VAR_TIME_YEAR" + case 338: // "VARIABLE" + case 339: // "Dictionary element" + case 340: // "Dictionary element, selected by regexp" + yylhs.value.build< std::string > (); break; - case 346: // op - case 347: // op_before_init - yylhs.value.emplace< std::unique_ptr > (); + case 347: // op + case 348: // op_before_init + yylhs.value.build< std::unique_ptr > (); break; - case 355: // run_time_string - yylhs.value.emplace< std::unique_ptr > (); + case 356: // run_time_string + yylhs.value.build< std::unique_ptr > (); break; - case 352: // var - yylhs.value.emplace< std::unique_ptr > (); + case 353: // var + yylhs.value.build< std::unique_ptr > (); break; - case 353: // act - case 354: // setvar_action - yylhs.value.emplace< std::unique_ptr > (); + case 354: // act + case 355: // setvar_action + yylhs.value.build< std::unique_ptr > (); break; - case 349: // variables - case 350: // variables_pre_process - case 351: // variables_may_be_quoted - yylhs.value.emplace< std::unique_ptr > > > (); + case 350: // variables + case 351: // variables_pre_process + case 352: // variables_may_be_quoted + yylhs.value.build< std::unique_ptr > > > (); break; - case 344: // actions - case 345: // actions_may_quoted - yylhs.value.emplace< std::unique_ptr > > > (); + case 345: // actions + case 346: // actions_may_quoted + yylhs.value.build< std::unique_ptr > > > (); break; default: @@ -1438,257 +1195,254 @@ namespace yy { } - // Default location. + // Compute the default @$. { slice slice (yystack_, yylen); YYLLOC_DEFAULT (yylhs.location, slice, yylen); - yyerror_range[1].location = yylhs.location; } // Perform the reduction. YY_REDUCE_PRINT (yyn); -#if YY_EXCEPTIONS try -#endif // YY_EXCEPTIONS { switch (yyn) { case 2: -#line 745 "seclang-parser.yy" // lalr1.cc:906 +#line 746 "seclang-parser.yy" // lalr1.cc:859 { return 0; } -#line 1462 "seclang-parser.cc" // lalr1.cc:906 +#line 1216 "seclang-parser.cc" // lalr1.cc:859 break; case 6: -#line 758 "seclang-parser.yy" // lalr1.cc:906 +#line 759 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setStorageDirMode(strtol(yystack_[0].value.as< std::string > ().c_str(), NULL, 8)); } -#line 1470 "seclang-parser.cc" // lalr1.cc:906 +#line 1224 "seclang-parser.cc" // lalr1.cc:859 break; case 7: -#line 764 "seclang-parser.yy" // lalr1.cc:906 +#line 765 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setStorageDir(yystack_[0].value.as< std::string > ()); } -#line 1478 "seclang-parser.cc" // lalr1.cc:906 +#line 1232 "seclang-parser.cc" // lalr1.cc:859 break; case 8: -#line 770 "seclang-parser.yy" // lalr1.cc:906 +#line 771 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setStatus(modsecurity::audit_log::AuditLog::RelevantOnlyAuditLogStatus); } -#line 1486 "seclang-parser.cc" // lalr1.cc:906 +#line 1240 "seclang-parser.cc" // lalr1.cc:859 break; case 9: -#line 774 "seclang-parser.yy" // lalr1.cc:906 +#line 775 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setStatus(modsecurity::audit_log::AuditLog::OffAuditLogStatus); } -#line 1494 "seclang-parser.cc" // lalr1.cc:906 +#line 1248 "seclang-parser.cc" // lalr1.cc:859 break; case 10: -#line 778 "seclang-parser.yy" // lalr1.cc:906 +#line 779 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setStatus(modsecurity::audit_log::AuditLog::OnAuditLogStatus); } -#line 1502 "seclang-parser.cc" // lalr1.cc:906 +#line 1256 "seclang-parser.cc" // lalr1.cc:859 break; case 11: -#line 784 "seclang-parser.yy" // lalr1.cc:906 +#line 785 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setFileMode(strtol(yystack_[0].value.as< std::string > ().c_str(), NULL, 8)); } -#line 1510 "seclang-parser.cc" // lalr1.cc:906 +#line 1264 "seclang-parser.cc" // lalr1.cc:859 break; case 12: -#line 790 "seclang-parser.yy" // lalr1.cc:906 +#line 791 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setFilePath2(yystack_[0].value.as< std::string > ()); } -#line 1518 "seclang-parser.cc" // lalr1.cc:906 +#line 1272 "seclang-parser.cc" // lalr1.cc:859 break; case 13: -#line 796 "seclang-parser.yy" // lalr1.cc:906 +#line 797 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setParts(yystack_[0].value.as< std::string > ()); } -#line 1526 "seclang-parser.cc" // lalr1.cc:906 +#line 1280 "seclang-parser.cc" // lalr1.cc:859 break; case 14: -#line 802 "seclang-parser.yy" // lalr1.cc:906 +#line 803 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setFilePath1(yystack_[0].value.as< std::string > ()); } -#line 1534 "seclang-parser.cc" // lalr1.cc:906 +#line 1288 "seclang-parser.cc" // lalr1.cc:859 break; case 15: -#line 807 "seclang-parser.yy" // lalr1.cc:906 +#line 808 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setFormat(modsecurity::audit_log::AuditLog::JSONAuditLogFormat); } -#line 1542 "seclang-parser.cc" // lalr1.cc:906 +#line 1296 "seclang-parser.cc" // lalr1.cc:859 break; case 16: -#line 812 "seclang-parser.yy" // lalr1.cc:906 +#line 813 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setFormat(modsecurity::audit_log::AuditLog::NativeAuditLogFormat); } -#line 1550 "seclang-parser.cc" // lalr1.cc:906 +#line 1304 "seclang-parser.cc" // lalr1.cc:859 break; case 17: -#line 818 "seclang-parser.yy" // lalr1.cc:906 +#line 819 "seclang-parser.yy" // lalr1.cc:859 { std::string relevant_status(yystack_[0].value.as< std::string > ()); driver.m_auditLog->setRelevantStatus(relevant_status); } -#line 1559 "seclang-parser.cc" // lalr1.cc:906 +#line 1313 "seclang-parser.cc" // lalr1.cc:859 break; case 18: -#line 825 "seclang-parser.yy" // lalr1.cc:906 +#line 826 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setType(modsecurity::audit_log::AuditLog::SerialAuditLogType); } -#line 1567 "seclang-parser.cc" // lalr1.cc:906 +#line 1321 "seclang-parser.cc" // lalr1.cc:859 break; case 19: -#line 829 "seclang-parser.yy" // lalr1.cc:906 +#line 830 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setType(modsecurity::audit_log::AuditLog::ParallelAuditLogType); } -#line 1575 "seclang-parser.cc" // lalr1.cc:906 +#line 1329 "seclang-parser.cc" // lalr1.cc:859 break; case 20: -#line 833 "seclang-parser.yy" // lalr1.cc:906 +#line 834 "seclang-parser.yy" // lalr1.cc:859 { driver.m_auditLog->setType(modsecurity::audit_log::AuditLog::HttpsAuditLogType); } -#line 1583 "seclang-parser.cc" // lalr1.cc:906 +#line 1337 "seclang-parser.cc" // lalr1.cc:859 break; case 21: -#line 839 "seclang-parser.yy" // lalr1.cc:906 +#line 840 "seclang-parser.yy" // lalr1.cc:859 { driver.m_uploadKeepFiles = modsecurity::RulesProperties::TrueConfigBoolean; } -#line 1591 "seclang-parser.cc" // lalr1.cc:906 +#line 1345 "seclang-parser.cc" // lalr1.cc:859 break; case 22: -#line 843 "seclang-parser.yy" // lalr1.cc:906 +#line 844 "seclang-parser.yy" // lalr1.cc:859 { driver.m_uploadKeepFiles = modsecurity::RulesProperties::FalseConfigBoolean; } -#line 1599 "seclang-parser.cc" // lalr1.cc:906 +#line 1353 "seclang-parser.cc" // lalr1.cc:859 break; case 23: -#line 847 "seclang-parser.yy" // lalr1.cc:906 +#line 848 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[2].location, "SecUploadKeepFiles RelevantOnly is not currently supported. Accepted values are On or Off"); YYERROR; } -#line 1608 "seclang-parser.cc" // lalr1.cc:906 +#line 1362 "seclang-parser.cc" // lalr1.cc:859 break; case 24: -#line 852 "seclang-parser.yy" // lalr1.cc:906 +#line 853 "seclang-parser.yy" // lalr1.cc:859 { driver.m_uploadFileLimit.m_set = true; driver.m_uploadFileLimit.m_value = strtol(yystack_[0].value.as< std::string > ().c_str(), NULL, 10); } -#line 1617 "seclang-parser.cc" // lalr1.cc:906 +#line 1371 "seclang-parser.cc" // lalr1.cc:859 break; case 25: -#line 857 "seclang-parser.yy" // lalr1.cc:906 +#line 858 "seclang-parser.yy" // lalr1.cc:859 { driver.m_uploadFileMode.m_set = true; driver.m_uploadFileMode.m_value = strtol(yystack_[0].value.as< std::string > ().c_str(), NULL, 8); } -#line 1626 "seclang-parser.cc" // lalr1.cc:906 +#line 1380 "seclang-parser.cc" // lalr1.cc:859 break; case 26: -#line 862 "seclang-parser.yy" // lalr1.cc:906 +#line 863 "seclang-parser.yy" // lalr1.cc:859 { driver.m_uploadDirectory.m_set = true; driver.m_uploadDirectory.m_value = yystack_[0].value.as< std::string > (); } -#line 1635 "seclang-parser.cc" // lalr1.cc:906 +#line 1389 "seclang-parser.cc" // lalr1.cc:859 break; case 27: -#line 867 "seclang-parser.yy" // lalr1.cc:906 +#line 868 "seclang-parser.yy" // lalr1.cc:859 { driver.m_tmpSaveUploadedFiles = modsecurity::RulesProperties::TrueConfigBoolean; } -#line 1643 "seclang-parser.cc" // lalr1.cc:906 +#line 1397 "seclang-parser.cc" // lalr1.cc:859 break; case 28: -#line 871 "seclang-parser.yy" // lalr1.cc:906 +#line 872 "seclang-parser.yy" // lalr1.cc:859 { driver.m_tmpSaveUploadedFiles = modsecurity::RulesProperties::FalseConfigBoolean; } -#line 1651 "seclang-parser.cc" // lalr1.cc:906 +#line 1405 "seclang-parser.cc" // lalr1.cc:859 break; case 29: -#line 878 "seclang-parser.yy" // lalr1.cc:906 +#line 879 "seclang-parser.yy" // lalr1.cc:859 { yylhs.value.as< std::unique_ptr > > > () = std::move(yystack_[1].value.as< std::unique_ptr > > > ()); } -#line 1659 "seclang-parser.cc" // lalr1.cc:906 +#line 1413 "seclang-parser.cc" // lalr1.cc:859 break; case 30: -#line 882 "seclang-parser.yy" // lalr1.cc:906 +#line 883 "seclang-parser.yy" // lalr1.cc:859 { yylhs.value.as< std::unique_ptr > > > () = std::move(yystack_[0].value.as< std::unique_ptr > > > ()); } -#line 1667 "seclang-parser.cc" // lalr1.cc:906 +#line 1421 "seclang-parser.cc" // lalr1.cc:859 break; case 31: -#line 889 "seclang-parser.yy" // lalr1.cc:906 +#line 890 "seclang-parser.yy" // lalr1.cc:859 { ACTION_INIT(yystack_[0].value.as< std::unique_ptr > (), yystack_[3].location) yystack_[2].value.as< std::unique_ptr > > > ()->push_back(std::move(yystack_[0].value.as< std::unique_ptr > ())); yylhs.value.as< std::unique_ptr > > > () = std::move(yystack_[2].value.as< std::unique_ptr > > > ()); } -#line 1677 "seclang-parser.cc" // lalr1.cc:906 +#line 1431 "seclang-parser.cc" // lalr1.cc:859 break; case 32: -#line 895 "seclang-parser.yy" // lalr1.cc:906 +#line 896 "seclang-parser.yy" // lalr1.cc:859 { std::unique_ptr>> b(new std::vector>()); ACTION_INIT(yystack_[0].value.as< std::unique_ptr > (), yystack_[1].location) b->push_back(std::move(yystack_[0].value.as< std::unique_ptr > ())); yylhs.value.as< std::unique_ptr > > > () = std::move(b); } -#line 1688 "seclang-parser.cc" // lalr1.cc:906 +#line 1442 "seclang-parser.cc" // lalr1.cc:859 break; case 33: -#line 905 "seclang-parser.yy" // lalr1.cc:906 +#line 906 "seclang-parser.yy" // lalr1.cc:859 { yylhs.value.as< std::unique_ptr > () = std::move(yystack_[0].value.as< std::unique_ptr > ()); std::string error; @@ -1697,11 +1451,11 @@ namespace yy { YYERROR; } } -#line 1701 "seclang-parser.cc" // lalr1.cc:906 +#line 1455 "seclang-parser.cc" // lalr1.cc:859 break; case 34: -#line 914 "seclang-parser.yy" // lalr1.cc:906 +#line 915 "seclang-parser.yy" // lalr1.cc:859 { yylhs.value.as< std::unique_ptr > () = std::move(yystack_[0].value.as< std::unique_ptr > ()); yylhs.value.as< std::unique_ptr > ()->m_negation = true; @@ -1711,11 +1465,11 @@ namespace yy { YYERROR; } } -#line 1715 "seclang-parser.cc" // lalr1.cc:906 +#line 1469 "seclang-parser.cc" // lalr1.cc:859 break; case 35: -#line 924 "seclang-parser.yy" // lalr1.cc:906 +#line 925 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Rx(std::move(yystack_[0].value.as< std::unique_ptr > ()))); std::string error; @@ -1724,11 +1478,11 @@ namespace yy { YYERROR; } } -#line 1728 "seclang-parser.cc" // lalr1.cc:906 +#line 1482 "seclang-parser.cc" // lalr1.cc:859 break; case 36: -#line 933 "seclang-parser.yy" // lalr1.cc:906 +#line 934 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Rx(std::move(yystack_[0].value.as< std::unique_ptr > ()))); yylhs.value.as< std::unique_ptr > ()->m_negation = true; @@ -1738,286 +1492,286 @@ namespace yy { YYERROR; } } -#line 1742 "seclang-parser.cc" // lalr1.cc:906 +#line 1496 "seclang-parser.cc" // lalr1.cc:859 break; case 37: -#line 946 "seclang-parser.yy" // lalr1.cc:906 +#line 947 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::UnconditionalMatch()); } -#line 1750 "seclang-parser.cc" // lalr1.cc:906 +#line 1504 "seclang-parser.cc" // lalr1.cc:859 break; case 38: -#line 950 "seclang-parser.yy" // lalr1.cc:906 +#line 951 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::DetectSQLi()); } -#line 1758 "seclang-parser.cc" // lalr1.cc:906 +#line 1512 "seclang-parser.cc" // lalr1.cc:859 break; case 39: -#line 954 "seclang-parser.yy" // lalr1.cc:906 +#line 955 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::DetectXSS()); } -#line 1766 "seclang-parser.cc" // lalr1.cc:906 +#line 1520 "seclang-parser.cc" // lalr1.cc:859 break; case 40: -#line 958 "seclang-parser.yy" // lalr1.cc:906 +#line 959 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::ValidateUrlEncoding()); } -#line 1774 "seclang-parser.cc" // lalr1.cc:906 +#line 1528 "seclang-parser.cc" // lalr1.cc:859 break; case 41: -#line 962 "seclang-parser.yy" // lalr1.cc:906 +#line 963 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::ValidateUtf8Encoding()); } -#line 1782 "seclang-parser.cc" // lalr1.cc:906 +#line 1536 "seclang-parser.cc" // lalr1.cc:859 break; case 42: -#line 966 "seclang-parser.yy" // lalr1.cc:906 +#line 967 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::InspectFile(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1790 "seclang-parser.cc" // lalr1.cc:906 +#line 1544 "seclang-parser.cc" // lalr1.cc:859 break; case 43: -#line 970 "seclang-parser.yy" // lalr1.cc:906 +#line 971 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::FuzzyHash(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1798 "seclang-parser.cc" // lalr1.cc:906 +#line 1552 "seclang-parser.cc" // lalr1.cc:859 break; case 44: -#line 974 "seclang-parser.yy" // lalr1.cc:906 +#line 975 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::ValidateByteRange(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1806 "seclang-parser.cc" // lalr1.cc:906 +#line 1560 "seclang-parser.cc" // lalr1.cc:859 break; case 45: -#line 978 "seclang-parser.yy" // lalr1.cc:906 +#line 979 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::ValidateDTD(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1814 "seclang-parser.cc" // lalr1.cc:906 +#line 1568 "seclang-parser.cc" // lalr1.cc:859 break; case 46: -#line 982 "seclang-parser.yy" // lalr1.cc:906 +#line 983 "seclang-parser.yy" // lalr1.cc:859 { /* $$ = new operators::ValidateHash($1); */ OPERATOR_NOT_SUPPORTED("ValidateHash", yystack_[2].location); } -#line 1823 "seclang-parser.cc" // lalr1.cc:906 +#line 1577 "seclang-parser.cc" // lalr1.cc:859 break; case 47: -#line 987 "seclang-parser.yy" // lalr1.cc:906 +#line 988 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::ValidateSchema(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1831 "seclang-parser.cc" // lalr1.cc:906 +#line 1585 "seclang-parser.cc" // lalr1.cc:859 break; case 48: -#line 991 "seclang-parser.yy" // lalr1.cc:906 +#line 992 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::VerifyCC(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1839 "seclang-parser.cc" // lalr1.cc:906 +#line 1593 "seclang-parser.cc" // lalr1.cc:859 break; case 49: -#line 995 "seclang-parser.yy" // lalr1.cc:906 +#line 996 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::VerifyCPF(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1847 "seclang-parser.cc" // lalr1.cc:906 +#line 1601 "seclang-parser.cc" // lalr1.cc:859 break; case 50: -#line 999 "seclang-parser.yy" // lalr1.cc:906 +#line 1000 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::VerifySSN(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1855 "seclang-parser.cc" // lalr1.cc:906 +#line 1609 "seclang-parser.cc" // lalr1.cc:859 break; case 51: -#line 1003 "seclang-parser.yy" // lalr1.cc:906 +#line 1004 "seclang-parser.yy" // lalr1.cc:859 { /* $$ = new operators::GsbLookup($1); */ OPERATOR_NOT_SUPPORTED("GsbLookup", yystack_[2].location); } -#line 1864 "seclang-parser.cc" // lalr1.cc:906 +#line 1618 "seclang-parser.cc" // lalr1.cc:859 break; case 52: -#line 1008 "seclang-parser.yy" // lalr1.cc:906 +#line 1009 "seclang-parser.yy" // lalr1.cc:859 { /* $$ = new operators::Rsub($1); */ OPERATOR_NOT_SUPPORTED("Rsub", yystack_[2].location); } -#line 1873 "seclang-parser.cc" // lalr1.cc:906 +#line 1627 "seclang-parser.cc" // lalr1.cc:859 break; case 53: -#line 1013 "seclang-parser.yy" // lalr1.cc:906 +#line 1014 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Within(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1881 "seclang-parser.cc" // lalr1.cc:906 +#line 1635 "seclang-parser.cc" // lalr1.cc:859 break; case 54: -#line 1017 "seclang-parser.yy" // lalr1.cc:906 +#line 1018 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::ContainsWord(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1889 "seclang-parser.cc" // lalr1.cc:906 +#line 1643 "seclang-parser.cc" // lalr1.cc:859 break; case 55: -#line 1021 "seclang-parser.yy" // lalr1.cc:906 +#line 1022 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Contains(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1897 "seclang-parser.cc" // lalr1.cc:906 +#line 1651 "seclang-parser.cc" // lalr1.cc:859 break; case 56: -#line 1025 "seclang-parser.yy" // lalr1.cc:906 +#line 1026 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::EndsWith(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1905 "seclang-parser.cc" // lalr1.cc:906 +#line 1659 "seclang-parser.cc" // lalr1.cc:859 break; case 57: -#line 1029 "seclang-parser.yy" // lalr1.cc:906 +#line 1030 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Eq(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1913 "seclang-parser.cc" // lalr1.cc:906 +#line 1667 "seclang-parser.cc" // lalr1.cc:859 break; case 58: -#line 1033 "seclang-parser.yy" // lalr1.cc:906 +#line 1034 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Ge(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1921 "seclang-parser.cc" // lalr1.cc:906 +#line 1675 "seclang-parser.cc" // lalr1.cc:859 break; case 59: -#line 1037 "seclang-parser.yy" // lalr1.cc:906 +#line 1038 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Gt(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1929 "seclang-parser.cc" // lalr1.cc:906 +#line 1683 "seclang-parser.cc" // lalr1.cc:859 break; case 60: -#line 1041 "seclang-parser.yy" // lalr1.cc:906 +#line 1042 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::IpMatchF(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1937 "seclang-parser.cc" // lalr1.cc:906 +#line 1691 "seclang-parser.cc" // lalr1.cc:859 break; case 61: -#line 1045 "seclang-parser.yy" // lalr1.cc:906 +#line 1046 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::IpMatch(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1945 "seclang-parser.cc" // lalr1.cc:906 +#line 1699 "seclang-parser.cc" // lalr1.cc:859 break; case 62: -#line 1049 "seclang-parser.yy" // lalr1.cc:906 +#line 1050 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Le(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1953 "seclang-parser.cc" // lalr1.cc:906 +#line 1707 "seclang-parser.cc" // lalr1.cc:859 break; case 63: -#line 1053 "seclang-parser.yy" // lalr1.cc:906 +#line 1054 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Lt(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1961 "seclang-parser.cc" // lalr1.cc:906 +#line 1715 "seclang-parser.cc" // lalr1.cc:859 break; case 64: -#line 1057 "seclang-parser.yy" // lalr1.cc:906 +#line 1058 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::PmFromFile(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1969 "seclang-parser.cc" // lalr1.cc:906 +#line 1723 "seclang-parser.cc" // lalr1.cc:859 break; case 65: -#line 1061 "seclang-parser.yy" // lalr1.cc:906 +#line 1062 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Pm(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1977 "seclang-parser.cc" // lalr1.cc:906 +#line 1731 "seclang-parser.cc" // lalr1.cc:859 break; case 66: -#line 1065 "seclang-parser.yy" // lalr1.cc:906 +#line 1066 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Rbl(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1985 "seclang-parser.cc" // lalr1.cc:906 +#line 1739 "seclang-parser.cc" // lalr1.cc:859 break; case 67: -#line 1069 "seclang-parser.yy" // lalr1.cc:906 +#line 1070 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::Rx(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 1993 "seclang-parser.cc" // lalr1.cc:906 +#line 1747 "seclang-parser.cc" // lalr1.cc:859 break; case 68: -#line 1073 "seclang-parser.yy" // lalr1.cc:906 +#line 1074 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::StrEq(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 2001 "seclang-parser.cc" // lalr1.cc:906 +#line 1755 "seclang-parser.cc" // lalr1.cc:859 break; case 69: -#line 1077 "seclang-parser.yy" // lalr1.cc:906 +#line 1078 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::StrMatch(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 2009 "seclang-parser.cc" // lalr1.cc:906 +#line 1763 "seclang-parser.cc" // lalr1.cc:859 break; case 70: -#line 1081 "seclang-parser.yy" // lalr1.cc:906 +#line 1082 "seclang-parser.yy" // lalr1.cc:859 { OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::BeginsWith(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 2017 "seclang-parser.cc" // lalr1.cc:906 +#line 1771 "seclang-parser.cc" // lalr1.cc:859 break; case 71: -#line 1085 "seclang-parser.yy" // lalr1.cc:906 +#line 1086 "seclang-parser.yy" // lalr1.cc:859 { #if defined(WITH_GEOIP) or defined(WITH_MAXMIND) OPERATOR_CONTAINER(yylhs.value.as< std::unique_ptr > (), new operators::GeoLookup()); @@ -2028,11 +1782,11 @@ namespace yy { YYERROR; #endif // WITH_GEOIP } -#line 2032 "seclang-parser.cc" // lalr1.cc:906 +#line 1786 "seclang-parser.cc" // lalr1.cc:859 break; case 73: -#line 1100 "seclang-parser.yy" // lalr1.cc:906 +#line 1101 "seclang-parser.yy" // lalr1.cc:859 { std::vector *a = new std::vector(); for (auto &i : *yystack_[0].value.as< std::unique_ptr > > > ().get()) { @@ -2057,11 +1811,11 @@ namespace yy { YYERROR; } } -#line 2061 "seclang-parser.cc" // lalr1.cc:906 +#line 1815 "seclang-parser.cc" // lalr1.cc:859 break; case 74: -#line 1125 "seclang-parser.yy" // lalr1.cc:906 +#line 1126 "seclang-parser.yy" // lalr1.cc:859 { Variables::Variables *v = new Variables::Variables(); for (auto &i : *yystack_[1].value.as< std::unique_ptr > > > ().get()) { @@ -2080,11 +1834,11 @@ namespace yy { YYERROR; } } -#line 2084 "seclang-parser.cc" // lalr1.cc:906 +#line 1838 "seclang-parser.cc" // lalr1.cc:859 break; case 75: -#line 1144 "seclang-parser.yy" // lalr1.cc:906 +#line 1145 "seclang-parser.yy" // lalr1.cc:859 { std::vector *a = new std::vector(); for (auto &i : *yystack_[0].value.as< std::unique_ptr > > > ().get()) { @@ -2099,11 +1853,11 @@ namespace yy { ); driver.addSecAction(rule); } -#line 2103 "seclang-parser.cc" // lalr1.cc:906 +#line 1857 "seclang-parser.cc" // lalr1.cc:859 break; case 76: -#line 1159 "seclang-parser.yy" // lalr1.cc:906 +#line 1160 "seclang-parser.yy" // lalr1.cc:859 { std::string err; std::vector *a = new std::vector(); @@ -2127,11 +1881,11 @@ namespace yy { YYERROR; } } -#line 2131 "seclang-parser.cc" // lalr1.cc:906 +#line 1885 "seclang-parser.cc" // lalr1.cc:859 break; case 77: -#line 1183 "seclang-parser.yy" // lalr1.cc:906 +#line 1184 "seclang-parser.yy" // lalr1.cc:859 { bool hasDisruptive = false; std::vector *actions = new std::vector(); @@ -2187,75 +1941,75 @@ namespace yy { delete actions; } -#line 2191 "seclang-parser.cc" // lalr1.cc:906 +#line 1945 "seclang-parser.cc" // lalr1.cc:859 break; case 78: -#line 1239 "seclang-parser.yy" // lalr1.cc:906 +#line 1240 "seclang-parser.yy" // lalr1.cc:859 { driver.addSecMarker(modsecurity::utils::string::removeBracketsIfNeeded(yystack_[0].value.as< std::string > ())); } -#line 2199 "seclang-parser.cc" // lalr1.cc:906 +#line 1953 "seclang-parser.cc" // lalr1.cc:859 break; case 79: -#line 1243 "seclang-parser.yy" // lalr1.cc:906 +#line 1244 "seclang-parser.yy" // lalr1.cc:859 { driver.m_secRuleEngine = modsecurity::Rules::DisabledRuleEngine; } -#line 2207 "seclang-parser.cc" // lalr1.cc:906 +#line 1961 "seclang-parser.cc" // lalr1.cc:859 break; case 80: -#line 1247 "seclang-parser.yy" // lalr1.cc:906 +#line 1248 "seclang-parser.yy" // lalr1.cc:859 { driver.m_secRuleEngine = modsecurity::Rules::EnabledRuleEngine; } -#line 2215 "seclang-parser.cc" // lalr1.cc:906 +#line 1969 "seclang-parser.cc" // lalr1.cc:859 break; case 81: -#line 1251 "seclang-parser.yy" // lalr1.cc:906 +#line 1252 "seclang-parser.yy" // lalr1.cc:859 { driver.m_secRuleEngine = modsecurity::Rules::DetectionOnlyRuleEngine; } -#line 2223 "seclang-parser.cc" // lalr1.cc:906 +#line 1977 "seclang-parser.cc" // lalr1.cc:859 break; case 82: -#line 1255 "seclang-parser.yy" // lalr1.cc:906 +#line 1256 "seclang-parser.yy" // lalr1.cc:859 { driver.m_secRequestBodyAccess = modsecurity::RulesProperties::TrueConfigBoolean; } -#line 2231 "seclang-parser.cc" // lalr1.cc:906 +#line 1985 "seclang-parser.cc" // lalr1.cc:859 break; case 83: -#line 1259 "seclang-parser.yy" // lalr1.cc:906 +#line 1260 "seclang-parser.yy" // lalr1.cc:859 { driver.m_secRequestBodyAccess = modsecurity::RulesProperties::FalseConfigBoolean; } -#line 2239 "seclang-parser.cc" // lalr1.cc:906 +#line 1993 "seclang-parser.cc" // lalr1.cc:859 break; case 84: -#line 1263 "seclang-parser.yy" // lalr1.cc:906 +#line 1264 "seclang-parser.yy" // lalr1.cc:859 { driver.m_secResponseBodyAccess = modsecurity::RulesProperties::TrueConfigBoolean; } -#line 2247 "seclang-parser.cc" // lalr1.cc:906 +#line 2001 "seclang-parser.cc" // lalr1.cc:859 break; case 85: -#line 1267 "seclang-parser.yy" // lalr1.cc:906 +#line 1268 "seclang-parser.yy" // lalr1.cc:859 { driver.m_secResponseBodyAccess = modsecurity::RulesProperties::FalseConfigBoolean; } -#line 2255 "seclang-parser.cc" // lalr1.cc:906 +#line 2009 "seclang-parser.cc" // lalr1.cc:859 break; case 86: -#line 1271 "seclang-parser.yy" // lalr1.cc:906 +#line 1272 "seclang-parser.yy" // lalr1.cc:859 { if (yystack_[0].value.as< std::string > ().length() != 1) { driver.error(yystack_[1].location, "Argument separator should be set to a single character."); @@ -2264,259 +2018,259 @@ namespace yy { driver.m_secArgumentSeparator.m_value = yystack_[0].value.as< std::string > (); driver.m_secArgumentSeparator.m_set = true; } -#line 2268 "seclang-parser.cc" // lalr1.cc:906 +#line 2022 "seclang-parser.cc" // lalr1.cc:859 break; case 87: -#line 1280 "seclang-parser.yy" // lalr1.cc:906 +#line 1281 "seclang-parser.yy" // lalr1.cc:859 { driver.m_components.push_back(yystack_[0].value.as< std::string > ()); } -#line 2276 "seclang-parser.cc" // lalr1.cc:906 +#line 2030 "seclang-parser.cc" // lalr1.cc:859 break; case 88: -#line 1284 "seclang-parser.yy" // lalr1.cc:906 +#line 1285 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[2].location, "SecConnEngine is not yet supported."); YYERROR; } -#line 2285 "seclang-parser.cc" // lalr1.cc:906 +#line 2039 "seclang-parser.cc" // lalr1.cc:859 break; case 89: -#line 1289 "seclang-parser.yy" // lalr1.cc:906 +#line 1290 "seclang-parser.yy" // lalr1.cc:859 { } -#line 2292 "seclang-parser.cc" // lalr1.cc:906 +#line 2046 "seclang-parser.cc" // lalr1.cc:859 break; case 90: -#line 1292 "seclang-parser.yy" // lalr1.cc:906 +#line 1293 "seclang-parser.yy" // lalr1.cc:859 { driver.m_secWebAppId.m_value = yystack_[0].value.as< std::string > (); driver.m_secWebAppId.m_set = true; } -#line 2301 "seclang-parser.cc" // lalr1.cc:906 +#line 2055 "seclang-parser.cc" // lalr1.cc:859 break; case 91: -#line 1297 "seclang-parser.yy" // lalr1.cc:906 +#line 1298 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecServerSignature is not supported."); YYERROR; } -#line 2310 "seclang-parser.cc" // lalr1.cc:906 +#line 2064 "seclang-parser.cc" // lalr1.cc:859 break; case 92: -#line 1302 "seclang-parser.yy" // lalr1.cc:906 +#line 1303 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecCacheTransformations is not supported."); YYERROR; } -#line 2319 "seclang-parser.cc" // lalr1.cc:906 +#line 2073 "seclang-parser.cc" // lalr1.cc:859 break; case 93: -#line 1307 "seclang-parser.yy" // lalr1.cc:906 +#line 1308 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[2].location, "SecDisableBackendCompression is not supported."); YYERROR; } -#line 2328 "seclang-parser.cc" // lalr1.cc:906 +#line 2082 "seclang-parser.cc" // lalr1.cc:859 break; case 94: -#line 1312 "seclang-parser.yy" // lalr1.cc:906 +#line 1313 "seclang-parser.yy" // lalr1.cc:859 { } -#line 2335 "seclang-parser.cc" // lalr1.cc:906 +#line 2089 "seclang-parser.cc" // lalr1.cc:859 break; case 95: -#line 1315 "seclang-parser.yy" // lalr1.cc:906 +#line 1316 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[2].location, "SecContentInjection is not yet supported."); YYERROR; } -#line 2344 "seclang-parser.cc" // lalr1.cc:906 +#line 2098 "seclang-parser.cc" // lalr1.cc:859 break; case 96: -#line 1320 "seclang-parser.yy" // lalr1.cc:906 +#line 1321 "seclang-parser.yy" // lalr1.cc:859 { } -#line 2351 "seclang-parser.cc" // lalr1.cc:906 +#line 2105 "seclang-parser.cc" // lalr1.cc:859 break; case 97: -#line 1323 "seclang-parser.yy" // lalr1.cc:906 +#line 1324 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecChrootDir is not supported."); YYERROR; } -#line 2360 "seclang-parser.cc" // lalr1.cc:906 +#line 2114 "seclang-parser.cc" // lalr1.cc:859 break; case 98: -#line 1328 "seclang-parser.yy" // lalr1.cc:906 +#line 1329 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[2].location, "SecHashEngine is not yet supported."); YYERROR; } -#line 2369 "seclang-parser.cc" // lalr1.cc:906 +#line 2123 "seclang-parser.cc" // lalr1.cc:859 break; case 99: -#line 1333 "seclang-parser.yy" // lalr1.cc:906 +#line 1334 "seclang-parser.yy" // lalr1.cc:859 { } -#line 2376 "seclang-parser.cc" // lalr1.cc:906 +#line 2130 "seclang-parser.cc" // lalr1.cc:859 break; case 100: -#line 1336 "seclang-parser.yy" // lalr1.cc:906 +#line 1337 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecHashKey is not yet supported."); YYERROR; } -#line 2385 "seclang-parser.cc" // lalr1.cc:906 +#line 2139 "seclang-parser.cc" // lalr1.cc:859 break; case 101: -#line 1341 "seclang-parser.yy" // lalr1.cc:906 +#line 1342 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecHashParam is not yet supported."); YYERROR; } -#line 2394 "seclang-parser.cc" // lalr1.cc:906 +#line 2148 "seclang-parser.cc" // lalr1.cc:859 break; case 102: -#line 1346 "seclang-parser.yy" // lalr1.cc:906 +#line 1347 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecHashMethodRx is not yet supported."); YYERROR; } -#line 2403 "seclang-parser.cc" // lalr1.cc:906 +#line 2157 "seclang-parser.cc" // lalr1.cc:859 break; case 103: -#line 1351 "seclang-parser.yy" // lalr1.cc:906 +#line 1352 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecHashMethodPm is not yet supported."); YYERROR; } -#line 2412 "seclang-parser.cc" // lalr1.cc:906 +#line 2166 "seclang-parser.cc" // lalr1.cc:859 break; case 104: -#line 1356 "seclang-parser.yy" // lalr1.cc:906 +#line 1357 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecGsbLookupDb is not supported."); YYERROR; } -#line 2421 "seclang-parser.cc" // lalr1.cc:906 +#line 2175 "seclang-parser.cc" // lalr1.cc:859 break; case 105: -#line 1361 "seclang-parser.yy" // lalr1.cc:906 +#line 1362 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecGuardianLog is not supported."); YYERROR; } -#line 2430 "seclang-parser.cc" // lalr1.cc:906 +#line 2184 "seclang-parser.cc" // lalr1.cc:859 break; case 106: -#line 1366 "seclang-parser.yy" // lalr1.cc:906 +#line 1367 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[2].location, "SecInterceptOnError is not yet supported."); YYERROR; } -#line 2439 "seclang-parser.cc" // lalr1.cc:906 +#line 2193 "seclang-parser.cc" // lalr1.cc:859 break; case 107: -#line 1371 "seclang-parser.yy" // lalr1.cc:906 +#line 1372 "seclang-parser.yy" // lalr1.cc:859 { } -#line 2446 "seclang-parser.cc" // lalr1.cc:906 +#line 2200 "seclang-parser.cc" // lalr1.cc:859 break; case 108: -#line 1374 "seclang-parser.yy" // lalr1.cc:906 +#line 1375 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecConnReadStateLimit is not yet supported."); YYERROR; } -#line 2455 "seclang-parser.cc" // lalr1.cc:906 +#line 2209 "seclang-parser.cc" // lalr1.cc:859 break; case 109: -#line 1379 "seclang-parser.yy" // lalr1.cc:906 +#line 1380 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecConnWriteStateLimit is not yet supported."); YYERROR; } -#line 2464 "seclang-parser.cc" // lalr1.cc:906 +#line 2218 "seclang-parser.cc" // lalr1.cc:859 break; case 110: -#line 1384 "seclang-parser.yy" // lalr1.cc:906 +#line 1385 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecSensorId is not yet supported."); YYERROR; } -#line 2473 "seclang-parser.cc" // lalr1.cc:906 +#line 2227 "seclang-parser.cc" // lalr1.cc:859 break; case 111: -#line 1389 "seclang-parser.yy" // lalr1.cc:906 +#line 1390 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[2].location, "SecRuleInheritance is not yet supported."); YYERROR; } -#line 2482 "seclang-parser.cc" // lalr1.cc:906 +#line 2236 "seclang-parser.cc" // lalr1.cc:859 break; case 112: -#line 1394 "seclang-parser.yy" // lalr1.cc:906 +#line 1395 "seclang-parser.yy" // lalr1.cc:859 { } -#line 2489 "seclang-parser.cc" // lalr1.cc:906 +#line 2243 "seclang-parser.cc" // lalr1.cc:859 break; case 113: -#line 1397 "seclang-parser.yy" // lalr1.cc:906 +#line 1398 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecRulePerfTime is not yet supported."); YYERROR; } -#line 2498 "seclang-parser.cc" // lalr1.cc:906 +#line 2252 "seclang-parser.cc" // lalr1.cc:859 break; case 114: -#line 1402 "seclang-parser.yy" // lalr1.cc:906 +#line 1403 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecStreamInBodyInspection is not supported."); YYERROR; } -#line 2507 "seclang-parser.cc" // lalr1.cc:906 +#line 2261 "seclang-parser.cc" // lalr1.cc:859 break; case 115: -#line 1407 "seclang-parser.yy" // lalr1.cc:906 +#line 1408 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecStreamOutBodyInspection is not supported."); YYERROR; } -#line 2516 "seclang-parser.cc" // lalr1.cc:906 +#line 2270 "seclang-parser.cc" // lalr1.cc:859 break; case 116: -#line 1412 "seclang-parser.yy" // lalr1.cc:906 +#line 1413 "seclang-parser.yy" // lalr1.cc:859 { std::string error; if (driver.m_exceptions.load(yystack_[0].value.as< std::string > (), &error) == false) { @@ -2529,11 +2283,11 @@ namespace yy { YYERROR; } } -#line 2533 "seclang-parser.cc" // lalr1.cc:906 +#line 2287 "seclang-parser.cc" // lalr1.cc:859 break; case 117: -#line 1425 "seclang-parser.yy" // lalr1.cc:906 +#line 1426 "seclang-parser.yy" // lalr1.cc:859 { std::string error; if (driver.m_exceptions.loadRemoveRuleByTag(yystack_[0].value.as< std::string > (), &error) == false) { @@ -2546,11 +2300,11 @@ namespace yy { YYERROR; } } -#line 2550 "seclang-parser.cc" // lalr1.cc:906 +#line 2304 "seclang-parser.cc" // lalr1.cc:859 break; case 118: -#line 1438 "seclang-parser.yy" // lalr1.cc:906 +#line 1439 "seclang-parser.yy" // lalr1.cc:859 { std::string error; if (driver.m_exceptions.loadRemoveRuleByMsg(yystack_[0].value.as< std::string > (), &error) == false) { @@ -2563,11 +2317,11 @@ namespace yy { YYERROR; } } -#line 2567 "seclang-parser.cc" // lalr1.cc:906 +#line 2321 "seclang-parser.cc" // lalr1.cc:859 break; case 119: -#line 1451 "seclang-parser.yy" // lalr1.cc:906 +#line 1452 "seclang-parser.yy" // lalr1.cc:859 { std::string error; if (driver.m_exceptions.loadUpdateTargetByTag(yystack_[1].value.as< std::string > (), std::move(yystack_[0].value.as< std::unique_ptr > > > ()), &error) == false) { @@ -2580,11 +2334,11 @@ namespace yy { YYERROR; } } -#line 2584 "seclang-parser.cc" // lalr1.cc:906 +#line 2338 "seclang-parser.cc" // lalr1.cc:859 break; case 120: -#line 1464 "seclang-parser.yy" // lalr1.cc:906 +#line 1465 "seclang-parser.yy" // lalr1.cc:859 { std::string error; if (driver.m_exceptions.loadUpdateTargetByMsg(yystack_[1].value.as< std::string > (), std::move(yystack_[0].value.as< std::unique_ptr > > > ()), &error) == false) { @@ -2597,11 +2351,11 @@ namespace yy { YYERROR; } } -#line 2601 "seclang-parser.cc" // lalr1.cc:906 +#line 2355 "seclang-parser.cc" // lalr1.cc:859 break; case 121: -#line 1477 "seclang-parser.yy" // lalr1.cc:906 +#line 1478 "seclang-parser.yy" // lalr1.cc:859 { std::string error; double ruleId; @@ -2627,11 +2381,11 @@ namespace yy { YYERROR; } } -#line 2631 "seclang-parser.cc" // lalr1.cc:906 +#line 2385 "seclang-parser.cc" // lalr1.cc:859 break; case 122: -#line 1503 "seclang-parser.yy" // lalr1.cc:906 +#line 1504 "seclang-parser.yy" // lalr1.cc:859 { std::string error; double ruleId; @@ -2658,11 +2412,11 @@ namespace yy { YYERROR; } } -#line 2662 "seclang-parser.cc" // lalr1.cc:906 +#line 2416 "seclang-parser.cc" // lalr1.cc:859 break; case 123: -#line 1531 "seclang-parser.yy" // lalr1.cc:906 +#line 1532 "seclang-parser.yy" // lalr1.cc:859 { if (driver.m_debugLog != NULL) { driver.m_debugLog->setDebugLogLevel(atoi(yystack_[0].value.as< std::string > ().c_str())); @@ -2674,11 +2428,11 @@ namespace yy { YYERROR; } } -#line 2678 "seclang-parser.cc" // lalr1.cc:906 +#line 2432 "seclang-parser.cc" // lalr1.cc:859 break; case 124: -#line 1543 "seclang-parser.yy" // lalr1.cc:906 +#line 1544 "seclang-parser.yy" // lalr1.cc:859 { if (driver.m_debugLog != NULL) { std::string error; @@ -2697,11 +2451,11 @@ namespace yy { YYERROR; } } -#line 2701 "seclang-parser.cc" // lalr1.cc:906 +#line 2455 "seclang-parser.cc" // lalr1.cc:859 break; case 125: -#line 1563 "seclang-parser.yy" // lalr1.cc:906 +#line 1564 "seclang-parser.yy" // lalr1.cc:859 { #if defined(WITH_GEOIP) or defined(WITH_MAXMIND) std::string err; @@ -2728,29 +2482,38 @@ namespace yy { YYERROR; #endif // WITH_GEOIP } -#line 2732 "seclang-parser.cc" // lalr1.cc:906 +#line 2486 "seclang-parser.cc" // lalr1.cc:859 break; case 126: -#line 1591 "seclang-parser.yy" // lalr1.cc:906 +#line 1591 "seclang-parser.yy" // lalr1.cc:859 + { + driver.m_argumentsLimit.m_set = true; + driver.m_argumentsLimit.m_value = atoi(yystack_[0].value.as< std::string > ().c_str()); + } +#line 2495 "seclang-parser.cc" // lalr1.cc:859 + break; + + case 127: +#line 1597 "seclang-parser.yy" // lalr1.cc:859 { driver.m_requestBodyLimit.m_set = true; driver.m_requestBodyLimit.m_value = atoi(yystack_[0].value.as< std::string > ().c_str()); } -#line 2741 "seclang-parser.cc" // lalr1.cc:906 +#line 2504 "seclang-parser.cc" // lalr1.cc:859 break; - case 127: -#line 1596 "seclang-parser.yy" // lalr1.cc:906 + case 128: +#line 1602 "seclang-parser.yy" // lalr1.cc:859 { driver.m_requestBodyNoFilesLimit.m_set = true; driver.m_requestBodyNoFilesLimit.m_value = atoi(yystack_[0].value.as< std::string > ().c_str()); } -#line 2750 "seclang-parser.cc" // lalr1.cc:906 +#line 2513 "seclang-parser.cc" // lalr1.cc:859 break; - case 128: -#line 1601 "seclang-parser.yy" // lalr1.cc:906 + case 129: +#line 1607 "seclang-parser.yy" // lalr1.cc:859 { std::stringstream ss; ss << "As of ModSecurity version 3.0, SecRequestBodyInMemoryLimit is no longer "; @@ -2759,68 +2522,68 @@ namespace yy { driver.error(yystack_[1].location, ss.str()); YYERROR; } -#line 2763 "seclang-parser.cc" // lalr1.cc:906 +#line 2526 "seclang-parser.cc" // lalr1.cc:859 break; - case 129: -#line 1610 "seclang-parser.yy" // lalr1.cc:906 + case 130: +#line 1616 "seclang-parser.yy" // lalr1.cc:859 { driver.m_responseBodyLimit.m_set = true; driver.m_responseBodyLimit.m_value = atoi(yystack_[0].value.as< std::string > ().c_str()); } -#line 2772 "seclang-parser.cc" // lalr1.cc:906 +#line 2535 "seclang-parser.cc" // lalr1.cc:859 break; - case 130: -#line 1615 "seclang-parser.yy" // lalr1.cc:906 + case 131: +#line 1621 "seclang-parser.yy" // lalr1.cc:859 { driver.m_requestBodyLimitAction = modsecurity::Rules::BodyLimitAction::ProcessPartialBodyLimitAction; } -#line 2780 "seclang-parser.cc" // lalr1.cc:906 +#line 2543 "seclang-parser.cc" // lalr1.cc:859 break; - case 131: -#line 1619 "seclang-parser.yy" // lalr1.cc:906 + case 132: +#line 1625 "seclang-parser.yy" // lalr1.cc:859 { driver.m_requestBodyLimitAction = modsecurity::Rules::BodyLimitAction::RejectBodyLimitAction; } -#line 2788 "seclang-parser.cc" // lalr1.cc:906 +#line 2551 "seclang-parser.cc" // lalr1.cc:859 break; - case 132: -#line 1623 "seclang-parser.yy" // lalr1.cc:906 + case 133: +#line 1629 "seclang-parser.yy" // lalr1.cc:859 { driver.m_responseBodyLimitAction = modsecurity::Rules::BodyLimitAction::ProcessPartialBodyLimitAction; } -#line 2796 "seclang-parser.cc" // lalr1.cc:906 +#line 2559 "seclang-parser.cc" // lalr1.cc:859 break; - case 133: -#line 1627 "seclang-parser.yy" // lalr1.cc:906 + case 134: +#line 1633 "seclang-parser.yy" // lalr1.cc:859 { driver.m_responseBodyLimitAction = modsecurity::Rules::BodyLimitAction::RejectBodyLimitAction; } -#line 2804 "seclang-parser.cc" // lalr1.cc:906 +#line 2567 "seclang-parser.cc" // lalr1.cc:859 break; - case 134: -#line 1631 "seclang-parser.yy" // lalr1.cc:906 + case 135: +#line 1637 "seclang-parser.yy" // lalr1.cc:859 { driver.m_remoteRulesActionOnFailed = Rules::OnFailedRemoteRulesAction::AbortOnFailedRemoteRulesAction; } -#line 2812 "seclang-parser.cc" // lalr1.cc:906 +#line 2575 "seclang-parser.cc" // lalr1.cc:859 break; - case 135: -#line 1635 "seclang-parser.yy" // lalr1.cc:906 + case 136: +#line 1641 "seclang-parser.yy" // lalr1.cc:859 { driver.m_remoteRulesActionOnFailed = Rules::OnFailedRemoteRulesAction::WarnOnFailedRemoteRulesAction; } -#line 2820 "seclang-parser.cc" // lalr1.cc:906 +#line 2583 "seclang-parser.cc" // lalr1.cc:859 break; - case 138: -#line 1649 "seclang-parser.yy" // lalr1.cc:906 + case 139: +#line 1655 "seclang-parser.yy" // lalr1.cc:859 { std::istringstream buf(yystack_[0].value.as< std::string > ()); std::istream_iterator beg(buf), end; @@ -2832,37 +2595,37 @@ namespace yy { driver.m_responseBodyTypeToBeInspected.m_value.insert(*it); } } -#line 2836 "seclang-parser.cc" // lalr1.cc:906 +#line 2599 "seclang-parser.cc" // lalr1.cc:859 break; - case 139: -#line 1661 "seclang-parser.yy" // lalr1.cc:906 + case 140: +#line 1667 "seclang-parser.yy" // lalr1.cc:859 { driver.m_responseBodyTypeToBeInspected.m_set = true; driver.m_responseBodyTypeToBeInspected.m_clear = true; driver.m_responseBodyTypeToBeInspected.m_value.clear(); } -#line 2846 "seclang-parser.cc" // lalr1.cc:906 +#line 2609 "seclang-parser.cc" // lalr1.cc:859 break; - case 140: -#line 1667 "seclang-parser.yy" // lalr1.cc:906 + case 141: +#line 1673 "seclang-parser.yy" // lalr1.cc:859 { driver.m_secXMLExternalEntity = modsecurity::RulesProperties::FalseConfigBoolean; } -#line 2854 "seclang-parser.cc" // lalr1.cc:906 +#line 2617 "seclang-parser.cc" // lalr1.cc:859 break; - case 141: -#line 1671 "seclang-parser.yy" // lalr1.cc:906 + case 142: +#line 1677 "seclang-parser.yy" // lalr1.cc:859 { driver.m_secXMLExternalEntity = modsecurity::RulesProperties::TrueConfigBoolean; } -#line 2862 "seclang-parser.cc" // lalr1.cc:906 +#line 2625 "seclang-parser.cc" // lalr1.cc:859 break; - case 142: -#line 1675 "seclang-parser.yy" // lalr1.cc:906 + case 143: +#line 1681 "seclang-parser.yy" // lalr1.cc:859 { /* Parser error disabled to avoid breaking default installations with modsecurity.conf-recommended std::stringstream ss; @@ -2873,31 +2636,31 @@ namespace yy { YYERROR; */ } -#line 2877 "seclang-parser.cc" // lalr1.cc:906 +#line 2640 "seclang-parser.cc" // lalr1.cc:859 break; - case 145: -#line 1696 "seclang-parser.yy" // lalr1.cc:906 + case 146: +#line 1702 "seclang-parser.yy" // lalr1.cc:859 { if (atoi(yystack_[0].value.as< std::string > ().c_str()) == 1) { driver.error(yystack_[1].location, "SecCookieFormat 1 is not yet supported."); YYERROR; } } -#line 2888 "seclang-parser.cc" // lalr1.cc:906 +#line 2651 "seclang-parser.cc" // lalr1.cc:859 break; - case 146: -#line 1703 "seclang-parser.yy" // lalr1.cc:906 + case 147: +#line 1709 "seclang-parser.yy" // lalr1.cc:859 { driver.error(yystack_[1].location, "SecCookieV0Separator is not yet supported."); YYERROR; } -#line 2897 "seclang-parser.cc" // lalr1.cc:906 +#line 2660 "seclang-parser.cc" // lalr1.cc:859 break; - case 148: -#line 1713 "seclang-parser.yy" // lalr1.cc:906 + case 149: +#line 1719 "seclang-parser.yy" // lalr1.cc:859 { std::string error; std::vector param; @@ -2951,31 +2714,31 @@ namespace yy { } } -#line 2955 "seclang-parser.cc" // lalr1.cc:906 +#line 2718 "seclang-parser.cc" // lalr1.cc:859 break; - case 149: -#line 1767 "seclang-parser.yy" // lalr1.cc:906 + case 150: +#line 1773 "seclang-parser.yy" // lalr1.cc:859 { /* Parser error disabled to avoid breaking default CRS installations with crs-setup.conf-recommended driver.error(@0, "SecCollectionTimeout is not yet supported."); YYERROR; */ } -#line 2966 "seclang-parser.cc" // lalr1.cc:906 +#line 2729 "seclang-parser.cc" // lalr1.cc:859 break; - case 150: -#line 1774 "seclang-parser.yy" // lalr1.cc:906 + case 151: +#line 1780 "seclang-parser.yy" // lalr1.cc:859 { driver.m_httpblKey.m_set = true; driver.m_httpblKey.m_value = yystack_[0].value.as< std::string > (); } -#line 2975 "seclang-parser.cc" // lalr1.cc:906 +#line 2738 "seclang-parser.cc" // lalr1.cc:859 break; - case 151: -#line 1782 "seclang-parser.yy" // lalr1.cc:906 + case 152: +#line 1788 "seclang-parser.yy" // lalr1.cc:859 { std::unique_ptr > > originalList = std::move(yystack_[0].value.as< std::unique_ptr > > > ()); std::unique_ptr>> newList(new std::vector>()); @@ -3009,2381 +2772,2379 @@ namespace yy { } yylhs.value.as< std::unique_ptr > > > () = std::move(newNewList); } -#line 3013 "seclang-parser.cc" // lalr1.cc:906 +#line 2776 "seclang-parser.cc" // lalr1.cc:859 break; - case 152: -#line 1819 "seclang-parser.yy" // lalr1.cc:906 + case 153: +#line 1825 "seclang-parser.yy" // lalr1.cc:859 { yylhs.value.as< std::unique_ptr > > > () = std::move(yystack_[0].value.as< std::unique_ptr > > > ()); } -#line 3021 "seclang-parser.cc" // lalr1.cc:906 +#line 2784 "seclang-parser.cc" // lalr1.cc:859 break; - case 153: -#line 1823 "seclang-parser.yy" // lalr1.cc:906 + case 154: +#line 1829 "seclang-parser.yy" // lalr1.cc:859 { yylhs.value.as< std::unique_ptr > > > () = std::move(yystack_[1].value.as< std::unique_ptr > > > ()); } -#line 3029 "seclang-parser.cc" // lalr1.cc:906 +#line 2792 "seclang-parser.cc" // lalr1.cc:859 break; - case 154: -#line 1830 "seclang-parser.yy" // lalr1.cc:906 + case 155: +#line 1836 "seclang-parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::unique_ptr > > > ()->push_back(std::move(yystack_[0].value.as< std::unique_ptr > ())); yylhs.value.as< std::unique_ptr > > > () = std::move(yystack_[2].value.as< std::unique_ptr > > > ()); } -#line 3038 "seclang-parser.cc" // lalr1.cc:906 +#line 2801 "seclang-parser.cc" // lalr1.cc:859 break; - case 155: -#line 1835 "seclang-parser.yy" // lalr1.cc:906 + case 156: +#line 1841 "seclang-parser.yy" // lalr1.cc:859 { std::unique_ptr c(new VariableModificatorExclusion(std::move(yystack_[0].value.as< std::unique_ptr > ()))); yystack_[3].value.as< std::unique_ptr > > > ()->push_back(std::move(c)); yylhs.value.as< std::unique_ptr > > > () = std::move(yystack_[3].value.as< std::unique_ptr > > > ()); } -#line 3048 "seclang-parser.cc" // lalr1.cc:906 +#line 2811 "seclang-parser.cc" // lalr1.cc:859 break; - case 156: -#line 1841 "seclang-parser.yy" // lalr1.cc:906 + case 157: +#line 1847 "seclang-parser.yy" // lalr1.cc:859 { std::unique_ptr c(new VariableModificatorCount(std::move(yystack_[0].value.as< std::unique_ptr > ()))); yystack_[3].value.as< std::unique_ptr > > > ()->push_back(std::move(c)); yylhs.value.as< std::unique_ptr > > > () = std::move(yystack_[3].value.as< std::unique_ptr > > > ()); } -#line 3058 "seclang-parser.cc" // lalr1.cc:906 +#line 2821 "seclang-parser.cc" // lalr1.cc:859 break; - case 157: -#line 1847 "seclang-parser.yy" // lalr1.cc:906 + case 158: +#line 1853 "seclang-parser.yy" // lalr1.cc:859 { std::unique_ptr>> b(new std::vector>()); b->push_back(std::move(yystack_[0].value.as< std::unique_ptr > ())); yylhs.value.as< std::unique_ptr > > > () = std::move(b); } -#line 3068 "seclang-parser.cc" // lalr1.cc:906 +#line 2831 "seclang-parser.cc" // lalr1.cc:859 break; - case 158: -#line 1853 "seclang-parser.yy" // lalr1.cc:906 + case 159: +#line 1859 "seclang-parser.yy" // lalr1.cc:859 { std::unique_ptr>> b(new std::vector>()); std::unique_ptr c(new VariableModificatorExclusion(std::move(yystack_[0].value.as< std::unique_ptr > ()))); b->push_back(std::move(c)); yylhs.value.as< std::unique_ptr > > > () = std::move(b); } -#line 3079 "seclang-parser.cc" // lalr1.cc:906 +#line 2842 "seclang-parser.cc" // lalr1.cc:859 break; - case 159: -#line 1860 "seclang-parser.yy" // lalr1.cc:906 + case 160: +#line 1866 "seclang-parser.yy" // lalr1.cc:859 { std::unique_ptr>> b(new std::vector>()); std::unique_ptr c(new VariableModificatorCount(std::move(yystack_[0].value.as< std::unique_ptr > ()))); b->push_back(std::move(c)); yylhs.value.as< std::unique_ptr > > > () = std::move(b); } -#line 3090 "seclang-parser.cc" // lalr1.cc:906 +#line 2853 "seclang-parser.cc" // lalr1.cc:859 break; - case 160: -#line 1870 "seclang-parser.yy" // lalr1.cc:906 + case 161: +#line 1876 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Args_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3098 "seclang-parser.cc" // lalr1.cc:906 +#line 2861 "seclang-parser.cc" // lalr1.cc:859 break; - case 161: -#line 1874 "seclang-parser.yy" // lalr1.cc:906 + case 162: +#line 1880 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Args_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3106 "seclang-parser.cc" // lalr1.cc:906 +#line 2869 "seclang-parser.cc" // lalr1.cc:859 break; - case 162: -#line 1878 "seclang-parser.yy" // lalr1.cc:906 + case 163: +#line 1884 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Args_NoDictElement()); } -#line 3114 "seclang-parser.cc" // lalr1.cc:906 +#line 2877 "seclang-parser.cc" // lalr1.cc:859 break; - case 163: -#line 1882 "seclang-parser.yy" // lalr1.cc:906 + case 164: +#line 1888 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsPost_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3122 "seclang-parser.cc" // lalr1.cc:906 +#line 2885 "seclang-parser.cc" // lalr1.cc:859 break; - case 164: -#line 1886 "seclang-parser.yy" // lalr1.cc:906 + case 165: +#line 1892 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsPost_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3130 "seclang-parser.cc" // lalr1.cc:906 +#line 2893 "seclang-parser.cc" // lalr1.cc:859 break; - case 165: -#line 1890 "seclang-parser.yy" // lalr1.cc:906 + case 166: +#line 1896 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsPost_NoDictElement()); } -#line 3138 "seclang-parser.cc" // lalr1.cc:906 +#line 2901 "seclang-parser.cc" // lalr1.cc:859 break; - case 166: -#line 1894 "seclang-parser.yy" // lalr1.cc:906 + case 167: +#line 1900 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsGet_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3146 "seclang-parser.cc" // lalr1.cc:906 +#line 2909 "seclang-parser.cc" // lalr1.cc:859 break; - case 167: -#line 1898 "seclang-parser.yy" // lalr1.cc:906 + case 168: +#line 1904 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsGet_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3154 "seclang-parser.cc" // lalr1.cc:906 +#line 2917 "seclang-parser.cc" // lalr1.cc:859 break; - case 168: -#line 1902 "seclang-parser.yy" // lalr1.cc:906 + case 169: +#line 1908 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsGet_NoDictElement()); } -#line 3162 "seclang-parser.cc" // lalr1.cc:906 +#line 2925 "seclang-parser.cc" // lalr1.cc:859 break; - case 169: -#line 1906 "seclang-parser.yy" // lalr1.cc:906 + case 170: +#line 1912 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesSizes_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3170 "seclang-parser.cc" // lalr1.cc:906 +#line 2933 "seclang-parser.cc" // lalr1.cc:859 break; - case 170: -#line 1910 "seclang-parser.yy" // lalr1.cc:906 + case 171: +#line 1916 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesSizes_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3178 "seclang-parser.cc" // lalr1.cc:906 - break; - - case 171: -#line 1914 "seclang-parser.yy" // lalr1.cc:906 - { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesSizes_NoDictElement()); - } -#line 3186 "seclang-parser.cc" // lalr1.cc:906 +#line 2941 "seclang-parser.cc" // lalr1.cc:859 break; case 172: -#line 1918 "seclang-parser.yy" // lalr1.cc:906 +#line 1920 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesNames_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesSizes_NoDictElement()); } -#line 3194 "seclang-parser.cc" // lalr1.cc:906 +#line 2949 "seclang-parser.cc" // lalr1.cc:859 break; case 173: -#line 1922 "seclang-parser.yy" // lalr1.cc:906 +#line 1924 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesNames_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3202 "seclang-parser.cc" // lalr1.cc:906 +#line 2957 "seclang-parser.cc" // lalr1.cc:859 break; case 174: -#line 1926 "seclang-parser.yy" // lalr1.cc:906 +#line 1928 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesNames_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3210 "seclang-parser.cc" // lalr1.cc:906 +#line 2965 "seclang-parser.cc" // lalr1.cc:859 break; case 175: -#line 1930 "seclang-parser.yy" // lalr1.cc:906 +#line 1932 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpContent_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesNames_NoDictElement()); } -#line 3218 "seclang-parser.cc" // lalr1.cc:906 +#line 2973 "seclang-parser.cc" // lalr1.cc:859 break; case 176: -#line 1934 "seclang-parser.yy" // lalr1.cc:906 +#line 1936 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpContent_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpContent_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3226 "seclang-parser.cc" // lalr1.cc:906 +#line 2981 "seclang-parser.cc" // lalr1.cc:859 break; case 177: -#line 1938 "seclang-parser.yy" // lalr1.cc:906 +#line 1940 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpContent_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpContent_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3234 "seclang-parser.cc" // lalr1.cc:906 +#line 2989 "seclang-parser.cc" // lalr1.cc:859 break; case 178: -#line 1942 "seclang-parser.yy" // lalr1.cc:906 +#line 1944 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartFileName_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpContent_NoDictElement()); } -#line 3242 "seclang-parser.cc" // lalr1.cc:906 +#line 2997 "seclang-parser.cc" // lalr1.cc:859 break; case 179: -#line 1946 "seclang-parser.yy" // lalr1.cc:906 +#line 1948 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartFileName_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartFileName_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3250 "seclang-parser.cc" // lalr1.cc:906 +#line 3005 "seclang-parser.cc" // lalr1.cc:859 break; case 180: -#line 1950 "seclang-parser.yy" // lalr1.cc:906 +#line 1952 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartFileName_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartFileName_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3258 "seclang-parser.cc" // lalr1.cc:906 +#line 3013 "seclang-parser.cc" // lalr1.cc:859 break; case 181: -#line 1954 "seclang-parser.yy" // lalr1.cc:906 +#line 1956 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartName_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartFileName_NoDictElement()); } -#line 3266 "seclang-parser.cc" // lalr1.cc:906 +#line 3021 "seclang-parser.cc" // lalr1.cc:859 break; case 182: -#line 1958 "seclang-parser.yy" // lalr1.cc:906 +#line 1960 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartName_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartName_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3274 "seclang-parser.cc" // lalr1.cc:906 +#line 3029 "seclang-parser.cc" // lalr1.cc:859 break; case 183: -#line 1962 "seclang-parser.yy" // lalr1.cc:906 +#line 1964 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartName_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartName_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3282 "seclang-parser.cc" // lalr1.cc:906 +#line 3037 "seclang-parser.cc" // lalr1.cc:859 break; case 184: -#line 1966 "seclang-parser.yy" // lalr1.cc:906 +#line 1968 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVarsNames_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultiPartName_NoDictElement()); } -#line 3290 "seclang-parser.cc" // lalr1.cc:906 +#line 3045 "seclang-parser.cc" // lalr1.cc:859 break; case 185: -#line 1970 "seclang-parser.yy" // lalr1.cc:906 +#line 1972 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVarsNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVarsNames_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3298 "seclang-parser.cc" // lalr1.cc:906 +#line 3053 "seclang-parser.cc" // lalr1.cc:859 break; case 186: -#line 1974 "seclang-parser.yy" // lalr1.cc:906 +#line 1976 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVarsNames_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVarsNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3306 "seclang-parser.cc" // lalr1.cc:906 +#line 3061 "seclang-parser.cc" // lalr1.cc:859 break; case 187: -#line 1978 "seclang-parser.yy" // lalr1.cc:906 +#line 1980 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVars_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVarsNames_NoDictElement()); } -#line 3314 "seclang-parser.cc" // lalr1.cc:906 +#line 3069 "seclang-parser.cc" // lalr1.cc:859 break; case 188: -#line 1982 "seclang-parser.yy" // lalr1.cc:906 +#line 1984 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVars_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVars_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3322 "seclang-parser.cc" // lalr1.cc:906 +#line 3077 "seclang-parser.cc" // lalr1.cc:859 break; case 189: -#line 1986 "seclang-parser.yy" // lalr1.cc:906 +#line 1988 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVars_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVars_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3330 "seclang-parser.cc" // lalr1.cc:906 +#line 3085 "seclang-parser.cc" // lalr1.cc:859 break; case 190: -#line 1990 "seclang-parser.yy" // lalr1.cc:906 +#line 1992 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Files_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVars_NoDictElement()); } -#line 3338 "seclang-parser.cc" // lalr1.cc:906 +#line 3093 "seclang-parser.cc" // lalr1.cc:859 break; case 191: -#line 1994 "seclang-parser.yy" // lalr1.cc:906 +#line 1996 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Files_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Files_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3346 "seclang-parser.cc" // lalr1.cc:906 +#line 3101 "seclang-parser.cc" // lalr1.cc:859 break; case 192: -#line 1998 "seclang-parser.yy" // lalr1.cc:906 +#line 2000 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Files_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Files_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3354 "seclang-parser.cc" // lalr1.cc:906 +#line 3109 "seclang-parser.cc" // lalr1.cc:859 break; case 193: -#line 2002 "seclang-parser.yy" // lalr1.cc:906 +#line 2004 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookies_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Files_NoDictElement()); } -#line 3362 "seclang-parser.cc" // lalr1.cc:906 +#line 3117 "seclang-parser.cc" // lalr1.cc:859 break; case 194: -#line 2006 "seclang-parser.yy" // lalr1.cc:906 +#line 2008 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookies_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookies_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3370 "seclang-parser.cc" // lalr1.cc:906 +#line 3125 "seclang-parser.cc" // lalr1.cc:859 break; case 195: -#line 2010 "seclang-parser.yy" // lalr1.cc:906 +#line 2012 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookies_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookies_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3378 "seclang-parser.cc" // lalr1.cc:906 +#line 3133 "seclang-parser.cc" // lalr1.cc:859 break; case 196: -#line 2014 "seclang-parser.yy" // lalr1.cc:906 +#line 2016 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeaders_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookies_NoDictElement()); } -#line 3386 "seclang-parser.cc" // lalr1.cc:906 +#line 3141 "seclang-parser.cc" // lalr1.cc:859 break; case 197: -#line 2018 "seclang-parser.yy" // lalr1.cc:906 +#line 2020 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeaders_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeaders_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3394 "seclang-parser.cc" // lalr1.cc:906 +#line 3149 "seclang-parser.cc" // lalr1.cc:859 break; case 198: -#line 2022 "seclang-parser.yy" // lalr1.cc:906 +#line 2024 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeaders_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeaders_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3402 "seclang-parser.cc" // lalr1.cc:906 +#line 3157 "seclang-parser.cc" // lalr1.cc:859 break; case 199: -#line 2026 "seclang-parser.yy" // lalr1.cc:906 +#line 2028 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeaders_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeaders_NoDictElement()); } -#line 3410 "seclang-parser.cc" // lalr1.cc:906 +#line 3165 "seclang-parser.cc" // lalr1.cc:859 break; case 200: -#line 2030 "seclang-parser.yy" // lalr1.cc:906 +#line 2032 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeaders_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeaders_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3418 "seclang-parser.cc" // lalr1.cc:906 +#line 3173 "seclang-parser.cc" // lalr1.cc:859 break; case 201: -#line 2034 "seclang-parser.yy" // lalr1.cc:906 +#line 2036 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeaders_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeaders_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3426 "seclang-parser.cc" // lalr1.cc:906 +#line 3181 "seclang-parser.cc" // lalr1.cc:859 break; case 202: -#line 2038 "seclang-parser.yy" // lalr1.cc:906 +#line 2040 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Geo_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeaders_NoDictElement()); } -#line 3434 "seclang-parser.cc" // lalr1.cc:906 +#line 3189 "seclang-parser.cc" // lalr1.cc:859 break; case 203: -#line 2042 "seclang-parser.yy" // lalr1.cc:906 +#line 2044 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Geo_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Geo_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3442 "seclang-parser.cc" // lalr1.cc:906 +#line 3197 "seclang-parser.cc" // lalr1.cc:859 break; case 204: -#line 2046 "seclang-parser.yy" // lalr1.cc:906 +#line 2048 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Geo_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Geo_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3450 "seclang-parser.cc" // lalr1.cc:906 +#line 3205 "seclang-parser.cc" // lalr1.cc:859 break; case 205: -#line 2050 "seclang-parser.yy" // lalr1.cc:906 +#line 2052 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookiesNames_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Geo_NoDictElement()); } -#line 3458 "seclang-parser.cc" // lalr1.cc:906 +#line 3213 "seclang-parser.cc" // lalr1.cc:859 break; case 206: -#line 2054 "seclang-parser.yy" // lalr1.cc:906 +#line 2056 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookiesNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookiesNames_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3466 "seclang-parser.cc" // lalr1.cc:906 +#line 3221 "seclang-parser.cc" // lalr1.cc:859 break; case 207: -#line 2058 "seclang-parser.yy" // lalr1.cc:906 +#line 2060 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookiesNames_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookiesNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3474 "seclang-parser.cc" // lalr1.cc:906 +#line 3229 "seclang-parser.cc" // lalr1.cc:859 break; case 208: -#line 2062 "seclang-parser.yy" // lalr1.cc:906 +#line 2064 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Rule_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestCookiesNames_NoDictElement()); } -#line 3482 "seclang-parser.cc" // lalr1.cc:906 +#line 3237 "seclang-parser.cc" // lalr1.cc:859 break; case 209: -#line 2066 "seclang-parser.yy" // lalr1.cc:906 +#line 2068 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Rule_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Rule_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3490 "seclang-parser.cc" // lalr1.cc:906 +#line 3245 "seclang-parser.cc" // lalr1.cc:859 break; case 210: -#line 2070 "seclang-parser.yy" // lalr1.cc:906 +#line 2072 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Rule_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Rule_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3498 "seclang-parser.cc" // lalr1.cc:906 +#line 3253 "seclang-parser.cc" // lalr1.cc:859 break; case 211: -#line 2074 "seclang-parser.yy" // lalr1.cc:906 +#line 2076 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Env("ENV:" + yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Rule_NoDictElement()); } -#line 3506 "seclang-parser.cc" // lalr1.cc:906 +#line 3261 "seclang-parser.cc" // lalr1.cc:859 break; case 212: -#line 2078 "seclang-parser.yy" // lalr1.cc:906 +#line 2080 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Env("ENV:" + yystack_[0].value.as< std::string > ())); } -#line 3514 "seclang-parser.cc" // lalr1.cc:906 +#line 3269 "seclang-parser.cc" // lalr1.cc:859 break; case 213: -#line 2082 "seclang-parser.yy" // lalr1.cc:906 +#line 2084 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Env("ENV")); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Env("ENV:" + yystack_[0].value.as< std::string > ())); } -#line 3522 "seclang-parser.cc" // lalr1.cc:906 +#line 3277 "seclang-parser.cc" // lalr1.cc:859 break; case 214: -#line 2086 "seclang-parser.yy" // lalr1.cc:906 +#line 2088 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::XML("XML:" + yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Env("ENV")); } -#line 3530 "seclang-parser.cc" // lalr1.cc:906 +#line 3285 "seclang-parser.cc" // lalr1.cc:859 break; case 215: -#line 2090 "seclang-parser.yy" // lalr1.cc:906 +#line 2092 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::XML("XML:" + yystack_[0].value.as< std::string > ())); } -#line 3538 "seclang-parser.cc" // lalr1.cc:906 +#line 3293 "seclang-parser.cc" // lalr1.cc:859 break; case 216: -#line 2094 "seclang-parser.yy" // lalr1.cc:906 +#line 2096 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::XML_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::XML("XML:" + yystack_[0].value.as< std::string > ())); } -#line 3546 "seclang-parser.cc" // lalr1.cc:906 +#line 3301 "seclang-parser.cc" // lalr1.cc:859 break; case 217: -#line 2098 "seclang-parser.yy" // lalr1.cc:906 +#line 2100 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpNames_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::XML_NoDictElement()); } -#line 3554 "seclang-parser.cc" // lalr1.cc:906 +#line 3309 "seclang-parser.cc" // lalr1.cc:859 break; case 218: -#line 2102 "seclang-parser.yy" // lalr1.cc:906 +#line 2104 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpNames_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3562 "seclang-parser.cc" // lalr1.cc:906 +#line 3317 "seclang-parser.cc" // lalr1.cc:859 break; case 219: -#line 2106 "seclang-parser.yy" // lalr1.cc:906 +#line 2108 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpNames_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3570 "seclang-parser.cc" // lalr1.cc:906 +#line 3325 "seclang-parser.cc" // lalr1.cc:859 break; case 220: -#line 2110 "seclang-parser.yy" // lalr1.cc:906 +#line 2112 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Resource_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesTmpNames_NoDictElement()); } -#line 3578 "seclang-parser.cc" // lalr1.cc:906 +#line 3333 "seclang-parser.cc" // lalr1.cc:859 break; case 221: -#line 2114 "seclang-parser.yy" // lalr1.cc:906 +#line 2116 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Resource_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Resource_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 3586 "seclang-parser.cc" // lalr1.cc:906 +#line 3341 "seclang-parser.cc" // lalr1.cc:859 break; case 222: -#line 2118 "seclang-parser.yy" // lalr1.cc:906 +#line 2120 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Resource_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Resource_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3594 "seclang-parser.cc" // lalr1.cc:906 +#line 3349 "seclang-parser.cc" // lalr1.cc:859 break; case 223: -#line 2122 "seclang-parser.yy" // lalr1.cc:906 +#line 2124 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Resource_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Resource_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3602 "seclang-parser.cc" // lalr1.cc:906 +#line 3357 "seclang-parser.cc" // lalr1.cc:859 break; case 224: -#line 2126 "seclang-parser.yy" // lalr1.cc:906 +#line 2128 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Ip_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Resource_NoDictElement()); } -#line 3610 "seclang-parser.cc" // lalr1.cc:906 +#line 3365 "seclang-parser.cc" // lalr1.cc:859 break; case 225: -#line 2130 "seclang-parser.yy" // lalr1.cc:906 +#line 2132 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Ip_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Ip_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 3618 "seclang-parser.cc" // lalr1.cc:906 +#line 3373 "seclang-parser.cc" // lalr1.cc:859 break; case 226: -#line 2134 "seclang-parser.yy" // lalr1.cc:906 +#line 2136 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Ip_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Ip_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3626 "seclang-parser.cc" // lalr1.cc:906 +#line 3381 "seclang-parser.cc" // lalr1.cc:859 break; case 227: -#line 2138 "seclang-parser.yy" // lalr1.cc:906 +#line 2140 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Ip_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Ip_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3634 "seclang-parser.cc" // lalr1.cc:906 +#line 3389 "seclang-parser.cc" // lalr1.cc:859 break; case 228: -#line 2142 "seclang-parser.yy" // lalr1.cc:906 +#line 2144 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Global_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Ip_NoDictElement()); } -#line 3642 "seclang-parser.cc" // lalr1.cc:906 +#line 3397 "seclang-parser.cc" // lalr1.cc:859 break; case 229: -#line 2146 "seclang-parser.yy" // lalr1.cc:906 +#line 2148 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Global_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Global_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 3650 "seclang-parser.cc" // lalr1.cc:906 +#line 3405 "seclang-parser.cc" // lalr1.cc:859 break; case 230: -#line 2150 "seclang-parser.yy" // lalr1.cc:906 +#line 2152 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Global_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Global_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3658 "seclang-parser.cc" // lalr1.cc:906 +#line 3413 "seclang-parser.cc" // lalr1.cc:859 break; case 231: -#line 2154 "seclang-parser.yy" // lalr1.cc:906 +#line 2156 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Global_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Global_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3666 "seclang-parser.cc" // lalr1.cc:906 +#line 3421 "seclang-parser.cc" // lalr1.cc:859 break; case 232: -#line 2158 "seclang-parser.yy" // lalr1.cc:906 +#line 2160 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::User_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Global_NoDictElement()); } -#line 3674 "seclang-parser.cc" // lalr1.cc:906 +#line 3429 "seclang-parser.cc" // lalr1.cc:859 break; case 233: -#line 2162 "seclang-parser.yy" // lalr1.cc:906 +#line 2164 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::User_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::User_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 3682 "seclang-parser.cc" // lalr1.cc:906 +#line 3437 "seclang-parser.cc" // lalr1.cc:859 break; case 234: -#line 2166 "seclang-parser.yy" // lalr1.cc:906 +#line 2168 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::User_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::User_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3690 "seclang-parser.cc" // lalr1.cc:906 +#line 3445 "seclang-parser.cc" // lalr1.cc:859 break; case 235: -#line 2170 "seclang-parser.yy" // lalr1.cc:906 +#line 2172 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::User_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::User_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3698 "seclang-parser.cc" // lalr1.cc:906 +#line 3453 "seclang-parser.cc" // lalr1.cc:859 break; case 236: -#line 2174 "seclang-parser.yy" // lalr1.cc:906 +#line 2176 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Tx_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::User_NoDictElement()); } -#line 3706 "seclang-parser.cc" // lalr1.cc:906 +#line 3461 "seclang-parser.cc" // lalr1.cc:859 break; case 237: -#line 2178 "seclang-parser.yy" // lalr1.cc:906 +#line 2180 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Tx_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Tx_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 3714 "seclang-parser.cc" // lalr1.cc:906 +#line 3469 "seclang-parser.cc" // lalr1.cc:859 break; case 238: -#line 2182 "seclang-parser.yy" // lalr1.cc:906 +#line 2184 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Tx_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Tx_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3722 "seclang-parser.cc" // lalr1.cc:906 +#line 3477 "seclang-parser.cc" // lalr1.cc:859 break; case 239: -#line 2186 "seclang-parser.yy" // lalr1.cc:906 +#line 2188 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Tx_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Tx_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3730 "seclang-parser.cc" // lalr1.cc:906 +#line 3485 "seclang-parser.cc" // lalr1.cc:859 break; case 240: -#line 2190 "seclang-parser.yy" // lalr1.cc:906 +#line 2192 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Session_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Tx_NoDictElement()); } -#line 3738 "seclang-parser.cc" // lalr1.cc:906 +#line 3493 "seclang-parser.cc" // lalr1.cc:859 break; case 241: -#line 2194 "seclang-parser.yy" // lalr1.cc:906 +#line 2196 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Session_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Session_DynamicElement(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 3746 "seclang-parser.cc" // lalr1.cc:906 +#line 3501 "seclang-parser.cc" // lalr1.cc:859 break; case 242: -#line 2198 "seclang-parser.yy" // lalr1.cc:906 +#line 2200 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Session_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Session_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3754 "seclang-parser.cc" // lalr1.cc:906 +#line 3509 "seclang-parser.cc" // lalr1.cc:859 break; case 243: -#line 2202 "seclang-parser.yy" // lalr1.cc:906 +#line 2204 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Session_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Session_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3762 "seclang-parser.cc" // lalr1.cc:906 +#line 3517 "seclang-parser.cc" // lalr1.cc:859 break; case 244: -#line 2206 "seclang-parser.yy" // lalr1.cc:906 +#line 2208 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsNames_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Session_NoDictElement()); } -#line 3770 "seclang-parser.cc" // lalr1.cc:906 +#line 3525 "seclang-parser.cc" // lalr1.cc:859 break; case 245: -#line 2210 "seclang-parser.yy" // lalr1.cc:906 +#line 2212 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsNames_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3778 "seclang-parser.cc" // lalr1.cc:906 +#line 3533 "seclang-parser.cc" // lalr1.cc:859 break; case 246: -#line 2214 "seclang-parser.yy" // lalr1.cc:906 +#line 2216 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsNames_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3786 "seclang-parser.cc" // lalr1.cc:906 +#line 3541 "seclang-parser.cc" // lalr1.cc:859 break; case 247: -#line 2218 "seclang-parser.yy" // lalr1.cc:906 +#line 2220 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsGetNames_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsNames_NoDictElement()); } -#line 3794 "seclang-parser.cc" // lalr1.cc:906 +#line 3549 "seclang-parser.cc" // lalr1.cc:859 break; case 248: -#line 2222 "seclang-parser.yy" // lalr1.cc:906 +#line 2224 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsGetNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsGetNames_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3802 "seclang-parser.cc" // lalr1.cc:906 +#line 3557 "seclang-parser.cc" // lalr1.cc:859 break; case 249: -#line 2226 "seclang-parser.yy" // lalr1.cc:906 +#line 2228 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsGetNames_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsGetNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3810 "seclang-parser.cc" // lalr1.cc:906 +#line 3565 "seclang-parser.cc" // lalr1.cc:859 break; case 250: -#line 2231 "seclang-parser.yy" // lalr1.cc:906 +#line 2232 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsPostNames_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsGetNames_NoDictElement()); } -#line 3818 "seclang-parser.cc" // lalr1.cc:906 +#line 3573 "seclang-parser.cc" // lalr1.cc:859 break; case 251: -#line 2235 "seclang-parser.yy" // lalr1.cc:906 +#line 2237 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsPostNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsPostNames_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3826 "seclang-parser.cc" // lalr1.cc:906 +#line 3581 "seclang-parser.cc" // lalr1.cc:859 break; case 252: -#line 2239 "seclang-parser.yy" // lalr1.cc:906 +#line 2241 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsPostNames_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsPostNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3834 "seclang-parser.cc" // lalr1.cc:906 +#line 3589 "seclang-parser.cc" // lalr1.cc:859 break; case 253: -#line 2244 "seclang-parser.yy" // lalr1.cc:906 +#line 2245 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeadersNames_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsPostNames_NoDictElement()); } -#line 3842 "seclang-parser.cc" // lalr1.cc:906 +#line 3597 "seclang-parser.cc" // lalr1.cc:859 break; case 254: -#line 2248 "seclang-parser.yy" // lalr1.cc:906 +#line 2250 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeadersNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeadersNames_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3850 "seclang-parser.cc" // lalr1.cc:906 +#line 3605 "seclang-parser.cc" // lalr1.cc:859 break; case 255: -#line 2252 "seclang-parser.yy" // lalr1.cc:906 +#line 2254 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeadersNames_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeadersNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3858 "seclang-parser.cc" // lalr1.cc:906 +#line 3613 "seclang-parser.cc" // lalr1.cc:859 break; case 256: -#line 2257 "seclang-parser.yy" // lalr1.cc:906 +#line 2258 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseContentType()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestHeadersNames_NoDictElement()); } -#line 3866 "seclang-parser.cc" // lalr1.cc:906 +#line 3621 "seclang-parser.cc" // lalr1.cc:859 break; case 257: -#line 2262 "seclang-parser.yy" // lalr1.cc:906 +#line 2263 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeadersNames_DictElement(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseContentType()); } -#line 3874 "seclang-parser.cc" // lalr1.cc:906 +#line 3629 "seclang-parser.cc" // lalr1.cc:859 break; case 258: -#line 2266 "seclang-parser.yy" // lalr1.cc:906 +#line 2268 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeadersNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeadersNames_DictElement(yystack_[0].value.as< std::string > ())); } -#line 3882 "seclang-parser.cc" // lalr1.cc:906 +#line 3637 "seclang-parser.cc" // lalr1.cc:859 break; case 259: -#line 2270 "seclang-parser.yy" // lalr1.cc:906 +#line 2272 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeadersNames_NoDictElement()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeadersNames_DictElementRegexp(yystack_[0].value.as< std::string > ())); } -#line 3890 "seclang-parser.cc" // lalr1.cc:906 +#line 3645 "seclang-parser.cc" // lalr1.cc:859 break; case 260: -#line 2274 "seclang-parser.yy" // lalr1.cc:906 +#line 2276 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsCombinedSize()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseHeadersNames_NoDictElement()); } -#line 3898 "seclang-parser.cc" // lalr1.cc:906 +#line 3653 "seclang-parser.cc" // lalr1.cc:859 break; case 261: -#line 2278 "seclang-parser.yy" // lalr1.cc:906 +#line 2280 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::AuthType()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ArgsCombinedSize()); } -#line 3906 "seclang-parser.cc" // lalr1.cc:906 +#line 3661 "seclang-parser.cc" // lalr1.cc:859 break; case 262: -#line 2282 "seclang-parser.yy" // lalr1.cc:906 +#line 2284 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesCombinedSize()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::AuthType()); } -#line 3914 "seclang-parser.cc" // lalr1.cc:906 +#line 3669 "seclang-parser.cc" // lalr1.cc:859 break; case 263: -#line 2286 "seclang-parser.yy" // lalr1.cc:906 +#line 2288 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FullRequest()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FilesCombinedSize()); } -#line 3922 "seclang-parser.cc" // lalr1.cc:906 +#line 3677 "seclang-parser.cc" // lalr1.cc:859 break; case 264: -#line 2290 "seclang-parser.yy" // lalr1.cc:906 +#line 2292 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FullRequestLength()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FullRequest()); } -#line 3930 "seclang-parser.cc" // lalr1.cc:906 +#line 3685 "seclang-parser.cc" // lalr1.cc:859 break; case 265: -#line 2294 "seclang-parser.yy" // lalr1.cc:906 +#line 2296 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::InboundDataError()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::FullRequestLength()); } -#line 3938 "seclang-parser.cc" // lalr1.cc:906 +#line 3693 "seclang-parser.cc" // lalr1.cc:859 break; case 266: -#line 2298 "seclang-parser.yy" // lalr1.cc:906 +#line 2300 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVar()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::InboundDataError()); } -#line 3946 "seclang-parser.cc" // lalr1.cc:906 +#line 3701 "seclang-parser.cc" // lalr1.cc:859 break; case 267: -#line 2302 "seclang-parser.yy" // lalr1.cc:906 +#line 2304 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVarName()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVar()); } -#line 3954 "seclang-parser.cc" // lalr1.cc:906 +#line 3709 "seclang-parser.cc" // lalr1.cc:859 break; case 268: -#line 2306 "seclang-parser.yy" // lalr1.cc:906 +#line 2308 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartBoundaryQuoted()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MatchedVarName()); } -#line 3962 "seclang-parser.cc" // lalr1.cc:906 +#line 3717 "seclang-parser.cc" // lalr1.cc:859 break; case 269: -#line 2310 "seclang-parser.yy" // lalr1.cc:906 +#line 2312 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartBoundaryWhiteSpace()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartBoundaryQuoted()); } -#line 3970 "seclang-parser.cc" // lalr1.cc:906 +#line 3725 "seclang-parser.cc" // lalr1.cc:859 break; case 270: -#line 2314 "seclang-parser.yy" // lalr1.cc:906 +#line 2316 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartCrlfLFLines()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartBoundaryWhiteSpace()); } -#line 3978 "seclang-parser.cc" // lalr1.cc:906 +#line 3733 "seclang-parser.cc" // lalr1.cc:859 break; case 271: -#line 2318 "seclang-parser.yy" // lalr1.cc:906 +#line 2320 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartDateAfter()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartCrlfLFLines()); } -#line 3986 "seclang-parser.cc" // lalr1.cc:906 +#line 3741 "seclang-parser.cc" // lalr1.cc:859 break; case 272: -#line 2322 "seclang-parser.yy" // lalr1.cc:906 +#line 2324 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartDateBefore()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartDateAfter()); } -#line 3994 "seclang-parser.cc" // lalr1.cc:906 +#line 3749 "seclang-parser.cc" // lalr1.cc:859 break; case 273: -#line 2326 "seclang-parser.yy" // lalr1.cc:906 +#line 2328 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartFileLimitExceeded()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartDateBefore()); } -#line 4002 "seclang-parser.cc" // lalr1.cc:906 +#line 3757 "seclang-parser.cc" // lalr1.cc:859 break; case 274: -#line 2330 "seclang-parser.yy" // lalr1.cc:906 +#line 2332 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartHeaderFolding()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartFileLimitExceeded()); } -#line 4010 "seclang-parser.cc" // lalr1.cc:906 +#line 3765 "seclang-parser.cc" // lalr1.cc:859 break; case 275: -#line 2334 "seclang-parser.yy" // lalr1.cc:906 +#line 2336 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartInvalidHeaderFolding()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartHeaderFolding()); } -#line 4018 "seclang-parser.cc" // lalr1.cc:906 +#line 3773 "seclang-parser.cc" // lalr1.cc:859 break; case 276: -#line 2338 "seclang-parser.yy" // lalr1.cc:906 +#line 2340 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartInvalidPart()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartInvalidHeaderFolding()); } -#line 4026 "seclang-parser.cc" // lalr1.cc:906 +#line 3781 "seclang-parser.cc" // lalr1.cc:859 break; case 277: -#line 2342 "seclang-parser.yy" // lalr1.cc:906 +#line 2344 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartInvalidQuoting()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartInvalidPart()); } -#line 4034 "seclang-parser.cc" // lalr1.cc:906 +#line 3789 "seclang-parser.cc" // lalr1.cc:859 break; case 278: -#line 2346 "seclang-parser.yy" // lalr1.cc:906 +#line 2348 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartLFLine()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartInvalidQuoting()); } -#line 4042 "seclang-parser.cc" // lalr1.cc:906 +#line 3797 "seclang-parser.cc" // lalr1.cc:859 break; case 279: -#line 2350 "seclang-parser.yy" // lalr1.cc:906 +#line 2352 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartMissingSemicolon()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartLFLine()); } -#line 4050 "seclang-parser.cc" // lalr1.cc:906 +#line 3805 "seclang-parser.cc" // lalr1.cc:859 break; case 280: -#line 2354 "seclang-parser.yy" // lalr1.cc:906 +#line 2356 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartMissingSemicolon()); } -#line 4058 "seclang-parser.cc" // lalr1.cc:906 +#line 3813 "seclang-parser.cc" // lalr1.cc:859 break; case 281: -#line 2358 "seclang-parser.yy" // lalr1.cc:906 +#line 2360 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartStrictError()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartMissingSemicolon()); } -#line 4066 "seclang-parser.cc" // lalr1.cc:906 +#line 3821 "seclang-parser.cc" // lalr1.cc:859 break; case 282: -#line 2362 "seclang-parser.yy" // lalr1.cc:906 +#line 2364 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartUnmatchedBoundary()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartStrictError()); } -#line 4074 "seclang-parser.cc" // lalr1.cc:906 +#line 3829 "seclang-parser.cc" // lalr1.cc:859 break; case 283: -#line 2366 "seclang-parser.yy" // lalr1.cc:906 +#line 2368 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::OutboundDataError()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::MultipartUnmatchedBoundary()); } -#line 4082 "seclang-parser.cc" // lalr1.cc:906 +#line 3837 "seclang-parser.cc" // lalr1.cc:859 break; case 284: -#line 2370 "seclang-parser.yy" // lalr1.cc:906 +#line 2372 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::PathInfo()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::OutboundDataError()); } -#line 4090 "seclang-parser.cc" // lalr1.cc:906 +#line 3845 "seclang-parser.cc" // lalr1.cc:859 break; case 285: -#line 2374 "seclang-parser.yy" // lalr1.cc:906 +#line 2376 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::QueryString()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::PathInfo()); } -#line 4098 "seclang-parser.cc" // lalr1.cc:906 +#line 3853 "seclang-parser.cc" // lalr1.cc:859 break; case 286: -#line 2378 "seclang-parser.yy" // lalr1.cc:906 +#line 2380 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RemoteAddr()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::QueryString()); } -#line 4106 "seclang-parser.cc" // lalr1.cc:906 +#line 3861 "seclang-parser.cc" // lalr1.cc:859 break; case 287: -#line 2382 "seclang-parser.yy" // lalr1.cc:906 +#line 2384 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RemoteHost()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RemoteAddr()); } -#line 4114 "seclang-parser.cc" // lalr1.cc:906 +#line 3869 "seclang-parser.cc" // lalr1.cc:859 break; case 288: -#line 2386 "seclang-parser.yy" // lalr1.cc:906 +#line 2388 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RemotePort()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RemoteHost()); } -#line 4122 "seclang-parser.cc" // lalr1.cc:906 +#line 3877 "seclang-parser.cc" // lalr1.cc:859 break; case 289: -#line 2390 "seclang-parser.yy" // lalr1.cc:906 +#line 2392 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ReqbodyError()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RemotePort()); } -#line 4130 "seclang-parser.cc" // lalr1.cc:906 +#line 3885 "seclang-parser.cc" // lalr1.cc:859 break; case 290: -#line 2394 "seclang-parser.yy" // lalr1.cc:906 +#line 2396 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ReqbodyErrorMsg()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ReqbodyError()); } -#line 4138 "seclang-parser.cc" // lalr1.cc:906 +#line 3893 "seclang-parser.cc" // lalr1.cc:859 break; case 291: -#line 2398 "seclang-parser.yy" // lalr1.cc:906 +#line 2400 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ReqbodyProcessor()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ReqbodyErrorMsg()); } -#line 4146 "seclang-parser.cc" // lalr1.cc:906 +#line 3901 "seclang-parser.cc" // lalr1.cc:859 break; case 292: -#line 2402 "seclang-parser.yy" // lalr1.cc:906 +#line 2404 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ReqbodyProcessorError()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ReqbodyProcessor()); } -#line 4154 "seclang-parser.cc" // lalr1.cc:906 +#line 3909 "seclang-parser.cc" // lalr1.cc:859 break; case 293: -#line 2406 "seclang-parser.yy" // lalr1.cc:906 +#line 2408 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ReqbodyProcessorErrorMsg()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ReqbodyProcessorError()); } -#line 4162 "seclang-parser.cc" // lalr1.cc:906 +#line 3917 "seclang-parser.cc" // lalr1.cc:859 break; case 294: -#line 2410 "seclang-parser.yy" // lalr1.cc:906 +#line 2412 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestBasename()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ReqbodyProcessorErrorMsg()); } -#line 4170 "seclang-parser.cc" // lalr1.cc:906 +#line 3925 "seclang-parser.cc" // lalr1.cc:859 break; case 295: -#line 2414 "seclang-parser.yy" // lalr1.cc:906 +#line 2416 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestBody()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestBasename()); } -#line 4178 "seclang-parser.cc" // lalr1.cc:906 +#line 3933 "seclang-parser.cc" // lalr1.cc:859 break; case 296: -#line 2418 "seclang-parser.yy" // lalr1.cc:906 +#line 2420 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestBodyLength()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestBody()); } -#line 4186 "seclang-parser.cc" // lalr1.cc:906 +#line 3941 "seclang-parser.cc" // lalr1.cc:859 break; case 297: -#line 2422 "seclang-parser.yy" // lalr1.cc:906 +#line 2424 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestFilename()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestBodyLength()); } -#line 4194 "seclang-parser.cc" // lalr1.cc:906 +#line 3949 "seclang-parser.cc" // lalr1.cc:859 break; case 298: -#line 2426 "seclang-parser.yy" // lalr1.cc:906 +#line 2428 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestLine()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestFilename()); } -#line 4202 "seclang-parser.cc" // lalr1.cc:906 +#line 3957 "seclang-parser.cc" // lalr1.cc:859 break; case 299: -#line 2430 "seclang-parser.yy" // lalr1.cc:906 +#line 2432 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestMethod()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestLine()); } -#line 4210 "seclang-parser.cc" // lalr1.cc:906 +#line 3965 "seclang-parser.cc" // lalr1.cc:859 break; case 300: -#line 2434 "seclang-parser.yy" // lalr1.cc:906 +#line 2436 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestProtocol()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestMethod()); } -#line 4218 "seclang-parser.cc" // lalr1.cc:906 +#line 3973 "seclang-parser.cc" // lalr1.cc:859 break; case 301: -#line 2438 "seclang-parser.yy" // lalr1.cc:906 +#line 2440 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestURI()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestProtocol()); } -#line 4226 "seclang-parser.cc" // lalr1.cc:906 +#line 3981 "seclang-parser.cc" // lalr1.cc:859 break; case 302: -#line 2442 "seclang-parser.yy" // lalr1.cc:906 +#line 2444 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestURIRaw()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestURI()); } -#line 4234 "seclang-parser.cc" // lalr1.cc:906 +#line 3989 "seclang-parser.cc" // lalr1.cc:859 break; case 303: -#line 2446 "seclang-parser.yy" // lalr1.cc:906 +#line 2448 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseBody()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::RequestURIRaw()); } -#line 4242 "seclang-parser.cc" // lalr1.cc:906 +#line 3997 "seclang-parser.cc" // lalr1.cc:859 break; case 304: -#line 2450 "seclang-parser.yy" // lalr1.cc:906 +#line 2452 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseContentLength()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseBody()); } -#line 4250 "seclang-parser.cc" // lalr1.cc:906 +#line 4005 "seclang-parser.cc" // lalr1.cc:859 break; case 305: -#line 2454 "seclang-parser.yy" // lalr1.cc:906 +#line 2456 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseProtocol()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseContentLength()); } -#line 4258 "seclang-parser.cc" // lalr1.cc:906 +#line 4013 "seclang-parser.cc" // lalr1.cc:859 break; case 306: -#line 2458 "seclang-parser.yy" // lalr1.cc:906 +#line 2460 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseStatus()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseProtocol()); } -#line 4266 "seclang-parser.cc" // lalr1.cc:906 +#line 4021 "seclang-parser.cc" // lalr1.cc:859 break; case 307: -#line 2462 "seclang-parser.yy" // lalr1.cc:906 +#line 2464 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ServerAddr()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ResponseStatus()); } -#line 4274 "seclang-parser.cc" // lalr1.cc:906 +#line 4029 "seclang-parser.cc" // lalr1.cc:859 break; case 308: -#line 2466 "seclang-parser.yy" // lalr1.cc:906 +#line 2468 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ServerName()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ServerAddr()); } -#line 4282 "seclang-parser.cc" // lalr1.cc:906 +#line 4037 "seclang-parser.cc" // lalr1.cc:859 break; case 309: -#line 2470 "seclang-parser.yy" // lalr1.cc:906 +#line 2472 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ServerPort()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ServerName()); } -#line 4290 "seclang-parser.cc" // lalr1.cc:906 +#line 4045 "seclang-parser.cc" // lalr1.cc:859 break; case 310: -#line 2474 "seclang-parser.yy" // lalr1.cc:906 +#line 2476 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::SessionID()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::ServerPort()); } -#line 4298 "seclang-parser.cc" // lalr1.cc:906 +#line 4053 "seclang-parser.cc" // lalr1.cc:859 break; case 311: -#line 2478 "seclang-parser.yy" // lalr1.cc:906 +#line 2480 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::UniqueID()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::SessionID()); } -#line 4306 "seclang-parser.cc" // lalr1.cc:906 +#line 4061 "seclang-parser.cc" // lalr1.cc:859 break; case 312: -#line 2482 "seclang-parser.yy" // lalr1.cc:906 +#line 2484 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::UrlEncodedError()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::UniqueID()); } -#line 4314 "seclang-parser.cc" // lalr1.cc:906 +#line 4069 "seclang-parser.cc" // lalr1.cc:859 break; case 313: -#line 2486 "seclang-parser.yy" // lalr1.cc:906 +#line 2488 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::UserID()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::UrlEncodedError()); } -#line 4322 "seclang-parser.cc" // lalr1.cc:906 +#line 4077 "seclang-parser.cc" // lalr1.cc:859 break; case 314: -#line 2490 "seclang-parser.yy" // lalr1.cc:906 +#line 2492 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Status()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::UserID()); } -#line 4330 "seclang-parser.cc" // lalr1.cc:906 +#line 4085 "seclang-parser.cc" // lalr1.cc:859 break; case 315: -#line 2494 "seclang-parser.yy" // lalr1.cc:906 +#line 2496 "seclang-parser.yy" // lalr1.cc:859 { VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Status()); } -#line 4338 "seclang-parser.cc" // lalr1.cc:906 +#line 4093 "seclang-parser.cc" // lalr1.cc:859 break; case 316: -#line 2498 "seclang-parser.yy" // lalr1.cc:906 +#line 2500 "seclang-parser.yy" // lalr1.cc:859 { - VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::WebAppId()); + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::Status()); } -#line 4346 "seclang-parser.cc" // lalr1.cc:906 +#line 4101 "seclang-parser.cc" // lalr1.cc:859 break; case 317: -#line 2502 "seclang-parser.yy" // lalr1.cc:906 +#line 2504 "seclang-parser.yy" // lalr1.cc:859 + { + VARIABLE_CONTAINER(yylhs.value.as< std::unique_ptr > (), new Variables::WebAppId()); + } +#line 4109 "seclang-parser.cc" // lalr1.cc:859 + break; + + case 318: +#line 2508 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new Duration(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4357 "seclang-parser.cc" // lalr1.cc:906 +#line 4120 "seclang-parser.cc" // lalr1.cc:859 break; - case 318: -#line 2510 "seclang-parser.yy" // lalr1.cc:906 + case 319: +#line 2516 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new ModsecBuild(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4368 "seclang-parser.cc" // lalr1.cc:906 +#line 4131 "seclang-parser.cc" // lalr1.cc:859 break; - case 319: -#line 2517 "seclang-parser.yy" // lalr1.cc:906 + case 320: +#line 2523 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new HighestSeverity(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4379 "seclang-parser.cc" // lalr1.cc:906 +#line 4142 "seclang-parser.cc" // lalr1.cc:859 break; - case 320: -#line 2524 "seclang-parser.yy" // lalr1.cc:906 + case 321: +#line 2530 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new RemoteUser(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4390 "seclang-parser.cc" // lalr1.cc:906 +#line 4153 "seclang-parser.cc" // lalr1.cc:859 break; - case 321: -#line 2531 "seclang-parser.yy" // lalr1.cc:906 + case 322: +#line 2537 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new Time(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4401 "seclang-parser.cc" // lalr1.cc:906 +#line 4164 "seclang-parser.cc" // lalr1.cc:859 break; - case 322: -#line 2538 "seclang-parser.yy" // lalr1.cc:906 + case 323: +#line 2544 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new TimeDay(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4412 "seclang-parser.cc" // lalr1.cc:906 +#line 4175 "seclang-parser.cc" // lalr1.cc:859 break; - case 323: -#line 2545 "seclang-parser.yy" // lalr1.cc:906 + case 324: +#line 2551 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new TimeEpoch(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4423 "seclang-parser.cc" // lalr1.cc:906 +#line 4186 "seclang-parser.cc" // lalr1.cc:859 break; - case 324: -#line 2552 "seclang-parser.yy" // lalr1.cc:906 + case 325: +#line 2558 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new TimeHour(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4434 "seclang-parser.cc" // lalr1.cc:906 +#line 4197 "seclang-parser.cc" // lalr1.cc:859 break; - case 325: -#line 2559 "seclang-parser.yy" // lalr1.cc:906 + case 326: +#line 2565 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new TimeMin(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4445 "seclang-parser.cc" // lalr1.cc:906 +#line 4208 "seclang-parser.cc" // lalr1.cc:859 break; - case 326: -#line 2566 "seclang-parser.yy" // lalr1.cc:906 + case 327: +#line 2572 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new TimeMon(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4456 "seclang-parser.cc" // lalr1.cc:906 +#line 4219 "seclang-parser.cc" // lalr1.cc:859 break; - case 327: -#line 2573 "seclang-parser.yy" // lalr1.cc:906 + case 328: +#line 2579 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new TimeSec(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4467 "seclang-parser.cc" // lalr1.cc:906 +#line 4230 "seclang-parser.cc" // lalr1.cc:859 break; - case 328: -#line 2580 "seclang-parser.yy" // lalr1.cc:906 + case 329: +#line 2586 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new TimeWDay(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4478 "seclang-parser.cc" // lalr1.cc:906 +#line 4241 "seclang-parser.cc" // lalr1.cc:859 break; - case 329: -#line 2587 "seclang-parser.yy" // lalr1.cc:906 + case 330: +#line 2593 "seclang-parser.yy" // lalr1.cc:859 { std::string name(yystack_[0].value.as< std::string > ()); char z = name.at(0); std::unique_ptr c(new TimeYear(name)); yylhs.value.as< std::unique_ptr > () = std::move(c); } -#line 4489 "seclang-parser.cc" // lalr1.cc:906 +#line 4252 "seclang-parser.cc" // lalr1.cc:859 break; - case 330: -#line 2597 "seclang-parser.yy" // lalr1.cc:906 + case 331: +#line 2603 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Accuracy(yystack_[0].value.as< std::string > ())); } -#line 4497 "seclang-parser.cc" // lalr1.cc:906 +#line 4260 "seclang-parser.cc" // lalr1.cc:859 break; - case 331: -#line 2601 "seclang-parser.yy" // lalr1.cc:906 + case 332: +#line 2607 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::disruptive::Allow(yystack_[0].value.as< std::string > ())); } -#line 4505 "seclang-parser.cc" // lalr1.cc:906 +#line 4268 "seclang-parser.cc" // lalr1.cc:859 break; - case 332: -#line 2605 "seclang-parser.yy" // lalr1.cc:906 + case 333: +#line 2611 "seclang-parser.yy" // lalr1.cc:859 { ACTION_NOT_SUPPORTED("Append", yystack_[1].location); } -#line 4513 "seclang-parser.cc" // lalr1.cc:906 +#line 4276 "seclang-parser.cc" // lalr1.cc:859 break; - case 333: -#line 2609 "seclang-parser.yy" // lalr1.cc:906 + case 334: +#line 2615 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::AuditLog(yystack_[0].value.as< std::string > ())); } -#line 4521 "seclang-parser.cc" // lalr1.cc:906 +#line 4284 "seclang-parser.cc" // lalr1.cc:859 break; - case 334: -#line 2613 "seclang-parser.yy" // lalr1.cc:906 + case 335: +#line 2619 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Block(yystack_[0].value.as< std::string > ())); } -#line 4529 "seclang-parser.cc" // lalr1.cc:906 +#line 4292 "seclang-parser.cc" // lalr1.cc:859 break; - case 335: -#line 2617 "seclang-parser.yy" // lalr1.cc:906 + case 336: +#line 2623 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Capture(yystack_[0].value.as< std::string > ())); } -#line 4537 "seclang-parser.cc" // lalr1.cc:906 +#line 4300 "seclang-parser.cc" // lalr1.cc:859 break; - case 336: -#line 2621 "seclang-parser.yy" // lalr1.cc:906 + case 337: +#line 2627 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Chain(yystack_[0].value.as< std::string > ())); } -#line 4545 "seclang-parser.cc" // lalr1.cc:906 +#line 4308 "seclang-parser.cc" // lalr1.cc:859 break; - case 337: -#line 2625 "seclang-parser.yy" // lalr1.cc:906 + case 338: +#line 2631 "seclang-parser.yy" // lalr1.cc:859 { //ACTION_NOT_SUPPORTED("CtlAuditEngine", @0); ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Action(yystack_[1].value.as< std::string > ())); } -#line 4554 "seclang-parser.cc" // lalr1.cc:906 +#line 4317 "seclang-parser.cc" // lalr1.cc:859 break; - case 338: -#line 2630 "seclang-parser.yy" // lalr1.cc:906 + case 339: +#line 2636 "seclang-parser.yy" // lalr1.cc:859 { //ACTION_NOT_SUPPORTED("CtlAuditEngine", @0); ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Action(yystack_[1].value.as< std::string > ())); } -#line 4563 "seclang-parser.cc" // lalr1.cc:906 +#line 4326 "seclang-parser.cc" // lalr1.cc:859 break; - case 339: -#line 2635 "seclang-parser.yy" // lalr1.cc:906 + case 340: +#line 2641 "seclang-parser.yy" // lalr1.cc:859 { //ACTION_NOT_SUPPORTED("CtlAuditEngine", @0); ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Action(yystack_[1].value.as< std::string > ())); } -#line 4572 "seclang-parser.cc" // lalr1.cc:906 +#line 4335 "seclang-parser.cc" // lalr1.cc:859 break; - case 340: -#line 2640 "seclang-parser.yy" // lalr1.cc:906 + case 341: +#line 2646 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::AuditLogParts(yystack_[0].value.as< std::string > ())); } -#line 4580 "seclang-parser.cc" // lalr1.cc:906 +#line 4343 "seclang-parser.cc" // lalr1.cc:859 break; - case 341: -#line 2644 "seclang-parser.yy" // lalr1.cc:906 + case 342: +#line 2650 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RequestBodyProcessorJSON(yystack_[0].value.as< std::string > ())); } -#line 4588 "seclang-parser.cc" // lalr1.cc:906 +#line 4351 "seclang-parser.cc" // lalr1.cc:859 break; - case 342: -#line 2648 "seclang-parser.yy" // lalr1.cc:906 + case 343: +#line 2654 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RequestBodyProcessorXML(yystack_[0].value.as< std::string > ())); } -#line 4596 "seclang-parser.cc" // lalr1.cc:906 +#line 4359 "seclang-parser.cc" // lalr1.cc:859 break; - case 343: -#line 2652 "seclang-parser.yy" // lalr1.cc:906 + case 344: +#line 2658 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RequestBodyProcessorURLENCODED(yystack_[0].value.as< std::string > ())); } -#line 4604 "seclang-parser.cc" // lalr1.cc:906 +#line 4367 "seclang-parser.cc" // lalr1.cc:859 break; - case 344: -#line 2656 "seclang-parser.yy" // lalr1.cc:906 + case 345: +#line 2662 "seclang-parser.yy" // lalr1.cc:859 { //ACTION_NOT_SUPPORTED("CtlForceReequestBody", @0); ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Action(yystack_[1].value.as< std::string > ())); } -#line 4613 "seclang-parser.cc" // lalr1.cc:906 +#line 4376 "seclang-parser.cc" // lalr1.cc:859 break; - case 345: -#line 2661 "seclang-parser.yy" // lalr1.cc:906 + case 346: +#line 2667 "seclang-parser.yy" // lalr1.cc:859 { //ACTION_NOT_SUPPORTED("CtlForceReequestBody", @0); ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Action(yystack_[1].value.as< std::string > ())); } -#line 4622 "seclang-parser.cc" // lalr1.cc:906 +#line 4385 "seclang-parser.cc" // lalr1.cc:859 break; - case 346: -#line 2666 "seclang-parser.yy" // lalr1.cc:906 + case 347: +#line 2672 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RequestBodyAccess(yystack_[1].value.as< std::string > () + "true")); } -#line 4630 "seclang-parser.cc" // lalr1.cc:906 +#line 4393 "seclang-parser.cc" // lalr1.cc:859 break; - case 347: -#line 2670 "seclang-parser.yy" // lalr1.cc:906 + case 348: +#line 2676 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RequestBodyAccess(yystack_[1].value.as< std::string > () + "false")); } -#line 4638 "seclang-parser.cc" // lalr1.cc:906 +#line 4401 "seclang-parser.cc" // lalr1.cc:859 break; - case 348: -#line 2674 "seclang-parser.yy" // lalr1.cc:906 + case 349: +#line 2680 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RuleEngine("ctl:RuleEngine=on")); } -#line 4646 "seclang-parser.cc" // lalr1.cc:906 +#line 4409 "seclang-parser.cc" // lalr1.cc:859 break; - case 349: -#line 2678 "seclang-parser.yy" // lalr1.cc:906 + case 350: +#line 2684 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RuleEngine("ctl:RuleEngine=off")); } -#line 4654 "seclang-parser.cc" // lalr1.cc:906 +#line 4417 "seclang-parser.cc" // lalr1.cc:859 break; - case 350: -#line 2682 "seclang-parser.yy" // lalr1.cc:906 + case 351: +#line 2688 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RuleEngine("ctl:RuleEngine=detectiononly")); } -#line 4662 "seclang-parser.cc" // lalr1.cc:906 +#line 4425 "seclang-parser.cc" // lalr1.cc:859 break; - case 351: -#line 2686 "seclang-parser.yy" // lalr1.cc:906 + case 352: +#line 2692 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RuleRemoveById(yystack_[0].value.as< std::string > ())); } -#line 4670 "seclang-parser.cc" // lalr1.cc:906 +#line 4433 "seclang-parser.cc" // lalr1.cc:859 break; - case 352: -#line 2690 "seclang-parser.yy" // lalr1.cc:906 + case 353: +#line 2696 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RuleRemoveByTag(yystack_[0].value.as< std::string > ())); } -#line 4678 "seclang-parser.cc" // lalr1.cc:906 +#line 4441 "seclang-parser.cc" // lalr1.cc:859 break; - case 353: -#line 2694 "seclang-parser.yy" // lalr1.cc:906 + case 354: +#line 2700 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RuleRemoveTargetById(yystack_[0].value.as< std::string > ())); } -#line 4686 "seclang-parser.cc" // lalr1.cc:906 +#line 4449 "seclang-parser.cc" // lalr1.cc:859 break; - case 354: -#line 2698 "seclang-parser.yy" // lalr1.cc:906 + case 355: +#line 2704 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::ctl::RuleRemoveTargetByTag(yystack_[0].value.as< std::string > ())); } -#line 4694 "seclang-parser.cc" // lalr1.cc:906 +#line 4457 "seclang-parser.cc" // lalr1.cc:859 break; - case 355: -#line 2702 "seclang-parser.yy" // lalr1.cc:906 + case 356: +#line 2708 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::disruptive::Deny(yystack_[0].value.as< std::string > ())); } -#line 4702 "seclang-parser.cc" // lalr1.cc:906 +#line 4465 "seclang-parser.cc" // lalr1.cc:859 break; - case 356: -#line 2706 "seclang-parser.yy" // lalr1.cc:906 + case 357: +#line 2712 "seclang-parser.yy" // lalr1.cc:859 { ACTION_NOT_SUPPORTED("DeprecateVar", yystack_[1].location); } -#line 4710 "seclang-parser.cc" // lalr1.cc:906 +#line 4473 "seclang-parser.cc" // lalr1.cc:859 break; - case 357: -#line 2710 "seclang-parser.yy" // lalr1.cc:906 + case 358: +#line 2716 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::disruptive::Drop(yystack_[0].value.as< std::string > ())); } -#line 4718 "seclang-parser.cc" // lalr1.cc:906 +#line 4481 "seclang-parser.cc" // lalr1.cc:859 break; - case 358: -#line 2714 "seclang-parser.yy" // lalr1.cc:906 + case 359: +#line 2720 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Exec(yystack_[0].value.as< std::string > ())); } -#line 4726 "seclang-parser.cc" // lalr1.cc:906 +#line 4489 "seclang-parser.cc" // lalr1.cc:859 break; - case 359: -#line 2718 "seclang-parser.yy" // lalr1.cc:906 + case 360: +#line 2724 "seclang-parser.yy" // lalr1.cc:859 { //ACTION_NOT_SUPPORTED("ExpireVar", @0); ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Action(yystack_[0].value.as< std::string > ())); } -#line 4735 "seclang-parser.cc" // lalr1.cc:906 +#line 4498 "seclang-parser.cc" // lalr1.cc:859 break; - case 360: -#line 2723 "seclang-parser.yy" // lalr1.cc:906 + case 361: +#line 2729 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::RuleId(yystack_[0].value.as< std::string > ())); } -#line 4743 "seclang-parser.cc" // lalr1.cc:906 +#line 4506 "seclang-parser.cc" // lalr1.cc:859 break; - case 361: -#line 2727 "seclang-parser.yy" // lalr1.cc:906 + case 362: +#line 2733 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::InitCol(yystack_[1].value.as< std::string > (), std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 4751 "seclang-parser.cc" // lalr1.cc:906 +#line 4514 "seclang-parser.cc" // lalr1.cc:859 break; - case 362: -#line 2731 "seclang-parser.yy" // lalr1.cc:906 + case 363: +#line 2737 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::LogData(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 4759 "seclang-parser.cc" // lalr1.cc:906 +#line 4522 "seclang-parser.cc" // lalr1.cc:859 break; - case 363: -#line 2735 "seclang-parser.yy" // lalr1.cc:906 + case 364: +#line 2741 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Log(yystack_[0].value.as< std::string > ())); } -#line 4767 "seclang-parser.cc" // lalr1.cc:906 +#line 4530 "seclang-parser.cc" // lalr1.cc:859 break; - case 364: -#line 2739 "seclang-parser.yy" // lalr1.cc:906 + case 365: +#line 2745 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Maturity(yystack_[0].value.as< std::string > ())); } -#line 4775 "seclang-parser.cc" // lalr1.cc:906 +#line 4538 "seclang-parser.cc" // lalr1.cc:859 break; - case 365: -#line 2743 "seclang-parser.yy" // lalr1.cc:906 + case 366: +#line 2749 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Msg(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 4783 "seclang-parser.cc" // lalr1.cc:906 +#line 4546 "seclang-parser.cc" // lalr1.cc:859 break; - case 366: -#line 2747 "seclang-parser.yy" // lalr1.cc:906 + case 367: +#line 2753 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::MultiMatch(yystack_[0].value.as< std::string > ())); } -#line 4791 "seclang-parser.cc" // lalr1.cc:906 +#line 4554 "seclang-parser.cc" // lalr1.cc:859 break; - case 367: -#line 2751 "seclang-parser.yy" // lalr1.cc:906 + case 368: +#line 2757 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::NoAuditLog(yystack_[0].value.as< std::string > ())); } -#line 4799 "seclang-parser.cc" // lalr1.cc:906 +#line 4562 "seclang-parser.cc" // lalr1.cc:859 break; - case 368: -#line 2755 "seclang-parser.yy" // lalr1.cc:906 + case 369: +#line 2761 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::NoLog(yystack_[0].value.as< std::string > ())); } -#line 4807 "seclang-parser.cc" // lalr1.cc:906 +#line 4570 "seclang-parser.cc" // lalr1.cc:859 break; - case 369: -#line 2759 "seclang-parser.yy" // lalr1.cc:906 + case 370: +#line 2765 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::disruptive::Pass(yystack_[0].value.as< std::string > ())); } -#line 4815 "seclang-parser.cc" // lalr1.cc:906 +#line 4578 "seclang-parser.cc" // lalr1.cc:859 break; - case 370: -#line 2763 "seclang-parser.yy" // lalr1.cc:906 + case 371: +#line 2769 "seclang-parser.yy" // lalr1.cc:859 { ACTION_NOT_SUPPORTED("Pause", yystack_[1].location); } -#line 4823 "seclang-parser.cc" // lalr1.cc:906 +#line 4586 "seclang-parser.cc" // lalr1.cc:859 break; - case 371: -#line 2767 "seclang-parser.yy" // lalr1.cc:906 + case 372: +#line 2773 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Phase(yystack_[0].value.as< std::string > ())); } -#line 4831 "seclang-parser.cc" // lalr1.cc:906 +#line 4594 "seclang-parser.cc" // lalr1.cc:859 break; - case 372: -#line 2771 "seclang-parser.yy" // lalr1.cc:906 + case 373: +#line 2777 "seclang-parser.yy" // lalr1.cc:859 { ACTION_NOT_SUPPORTED("Prepend", yystack_[1].location); } -#line 4839 "seclang-parser.cc" // lalr1.cc:906 +#line 4602 "seclang-parser.cc" // lalr1.cc:859 break; - case 373: -#line 2775 "seclang-parser.yy" // lalr1.cc:906 + case 374: +#line 2781 "seclang-parser.yy" // lalr1.cc:859 { ACTION_NOT_SUPPORTED("Proxy", yystack_[1].location); } -#line 4847 "seclang-parser.cc" // lalr1.cc:906 +#line 4610 "seclang-parser.cc" // lalr1.cc:859 break; - case 374: -#line 2779 "seclang-parser.yy" // lalr1.cc:906 + case 375: +#line 2785 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::disruptive::Redirect(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 4855 "seclang-parser.cc" // lalr1.cc:906 +#line 4618 "seclang-parser.cc" // lalr1.cc:859 break; - case 375: -#line 2783 "seclang-parser.yy" // lalr1.cc:906 + case 376: +#line 2789 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Rev(yystack_[0].value.as< std::string > ())); } -#line 4863 "seclang-parser.cc" // lalr1.cc:906 +#line 4626 "seclang-parser.cc" // lalr1.cc:859 break; - case 376: -#line 2787 "seclang-parser.yy" // lalr1.cc:906 + case 377: +#line 2793 "seclang-parser.yy" // lalr1.cc:859 { ACTION_NOT_SUPPORTED("SanitiseArg", yystack_[1].location); } -#line 4871 "seclang-parser.cc" // lalr1.cc:906 +#line 4634 "seclang-parser.cc" // lalr1.cc:859 break; - case 377: -#line 2791 "seclang-parser.yy" // lalr1.cc:906 + case 378: +#line 2797 "seclang-parser.yy" // lalr1.cc:859 { ACTION_NOT_SUPPORTED("SanitiseMatched", yystack_[1].location); } -#line 4879 "seclang-parser.cc" // lalr1.cc:906 +#line 4642 "seclang-parser.cc" // lalr1.cc:859 break; - case 378: -#line 2795 "seclang-parser.yy" // lalr1.cc:906 + case 379: +#line 2801 "seclang-parser.yy" // lalr1.cc:859 { ACTION_NOT_SUPPORTED("SanitiseMatchedBytes", yystack_[1].location); } -#line 4887 "seclang-parser.cc" // lalr1.cc:906 +#line 4650 "seclang-parser.cc" // lalr1.cc:859 break; - case 379: -#line 2799 "seclang-parser.yy" // lalr1.cc:906 + case 380: +#line 2805 "seclang-parser.yy" // lalr1.cc:859 { ACTION_NOT_SUPPORTED("SanitiseRequestHeader", yystack_[1].location); } -#line 4895 "seclang-parser.cc" // lalr1.cc:906 +#line 4658 "seclang-parser.cc" // lalr1.cc:859 break; - case 380: -#line 2803 "seclang-parser.yy" // lalr1.cc:906 + case 381: +#line 2809 "seclang-parser.yy" // lalr1.cc:859 { ACTION_NOT_SUPPORTED("SanitiseResponseHeader", yystack_[1].location); } -#line 4903 "seclang-parser.cc" // lalr1.cc:906 +#line 4666 "seclang-parser.cc" // lalr1.cc:859 break; - case 381: -#line 2807 "seclang-parser.yy" // lalr1.cc:906 + case 382: +#line 2813 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::SetENV(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 4911 "seclang-parser.cc" // lalr1.cc:906 +#line 4674 "seclang-parser.cc" // lalr1.cc:859 break; - case 382: -#line 2811 "seclang-parser.yy" // lalr1.cc:906 + case 383: +#line 2817 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::SetRSC(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 4919 "seclang-parser.cc" // lalr1.cc:906 +#line 4682 "seclang-parser.cc" // lalr1.cc:859 break; - case 383: -#line 2815 "seclang-parser.yy" // lalr1.cc:906 + case 384: +#line 2821 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::SetSID(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 4927 "seclang-parser.cc" // lalr1.cc:906 +#line 4690 "seclang-parser.cc" // lalr1.cc:859 break; - case 384: -#line 2819 "seclang-parser.yy" // lalr1.cc:906 + case 385: +#line 2825 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::SetUID(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 4935 "seclang-parser.cc" // lalr1.cc:906 +#line 4698 "seclang-parser.cc" // lalr1.cc:859 break; - case 385: -#line 2823 "seclang-parser.yy" // lalr1.cc:906 + case 386: +#line 2829 "seclang-parser.yy" // lalr1.cc:859 { yylhs.value.as< std::unique_ptr > () = std::move(yystack_[0].value.as< std::unique_ptr > ()); } -#line 4943 "seclang-parser.cc" // lalr1.cc:906 +#line 4706 "seclang-parser.cc" // lalr1.cc:859 break; - case 386: -#line 2827 "seclang-parser.yy" // lalr1.cc:906 + case 387: +#line 2833 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Severity(yystack_[0].value.as< std::string > ())); } -#line 4951 "seclang-parser.cc" // lalr1.cc:906 +#line 4714 "seclang-parser.cc" // lalr1.cc:859 break; - case 387: -#line 2831 "seclang-parser.yy" // lalr1.cc:906 + case 388: +#line 2837 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Skip(yystack_[0].value.as< std::string > ())); } -#line 4959 "seclang-parser.cc" // lalr1.cc:906 +#line 4722 "seclang-parser.cc" // lalr1.cc:859 break; - case 388: -#line 2835 "seclang-parser.yy" // lalr1.cc:906 + case 389: +#line 2841 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::SkipAfter(yystack_[0].value.as< std::string > ())); } -#line 4967 "seclang-parser.cc" // lalr1.cc:906 +#line 4730 "seclang-parser.cc" // lalr1.cc:859 break; - case 389: -#line 2839 "seclang-parser.yy" // lalr1.cc:906 + case 390: +#line 2845 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::data::Status(yystack_[0].value.as< std::string > ())); } -#line 4975 "seclang-parser.cc" // lalr1.cc:906 +#line 4738 "seclang-parser.cc" // lalr1.cc:859 break; - case 390: -#line 2843 "seclang-parser.yy" // lalr1.cc:906 + case 391: +#line 2849 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Tag(std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 4983 "seclang-parser.cc" // lalr1.cc:906 +#line 4746 "seclang-parser.cc" // lalr1.cc:859 break; - case 391: -#line 2847 "seclang-parser.yy" // lalr1.cc:906 + case 392: +#line 2853 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::Ver(yystack_[0].value.as< std::string > ())); } -#line 4991 "seclang-parser.cc" // lalr1.cc:906 +#line 4754 "seclang-parser.cc" // lalr1.cc:859 break; - case 392: -#line 2851 "seclang-parser.yy" // lalr1.cc:906 + case 393: +#line 2857 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::XmlNS(yystack_[0].value.as< std::string > ())); } -#line 4999 "seclang-parser.cc" // lalr1.cc:906 +#line 4762 "seclang-parser.cc" // lalr1.cc:859 break; - case 393: -#line 2855 "seclang-parser.yy" // lalr1.cc:906 + case 394: +#line 2861 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::ParityZero7bit(yystack_[0].value.as< std::string > ())); } -#line 5007 "seclang-parser.cc" // lalr1.cc:906 +#line 4770 "seclang-parser.cc" // lalr1.cc:859 break; - case 394: -#line 2859 "seclang-parser.yy" // lalr1.cc:906 + case 395: +#line 2865 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::ParityOdd7bit(yystack_[0].value.as< std::string > ())); } -#line 5015 "seclang-parser.cc" // lalr1.cc:906 +#line 4778 "seclang-parser.cc" // lalr1.cc:859 break; - case 395: -#line 2863 "seclang-parser.yy" // lalr1.cc:906 + case 396: +#line 2869 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::ParityEven7bit(yystack_[0].value.as< std::string > ())); } -#line 5023 "seclang-parser.cc" // lalr1.cc:906 +#line 4786 "seclang-parser.cc" // lalr1.cc:859 break; - case 396: -#line 2867 "seclang-parser.yy" // lalr1.cc:906 + case 397: +#line 2873 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::SqlHexDecode(yystack_[0].value.as< std::string > ())); } -#line 5031 "seclang-parser.cc" // lalr1.cc:906 +#line 4794 "seclang-parser.cc" // lalr1.cc:859 break; - case 397: -#line 2871 "seclang-parser.yy" // lalr1.cc:906 + case 398: +#line 2877 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::Base64Encode(yystack_[0].value.as< std::string > ())); } -#line 5039 "seclang-parser.cc" // lalr1.cc:906 +#line 4802 "seclang-parser.cc" // lalr1.cc:859 break; - case 398: -#line 2875 "seclang-parser.yy" // lalr1.cc:906 + case 399: +#line 2881 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::Base64Decode(yystack_[0].value.as< std::string > ())); } -#line 5047 "seclang-parser.cc" // lalr1.cc:906 +#line 4810 "seclang-parser.cc" // lalr1.cc:859 break; - case 399: -#line 2879 "seclang-parser.yy" // lalr1.cc:906 + case 400: +#line 2885 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::Base64DecodeExt(yystack_[0].value.as< std::string > ())); } -#line 5055 "seclang-parser.cc" // lalr1.cc:906 +#line 4818 "seclang-parser.cc" // lalr1.cc:859 break; - case 400: -#line 2883 "seclang-parser.yy" // lalr1.cc:906 + case 401: +#line 2889 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::CmdLine(yystack_[0].value.as< std::string > ())); } -#line 5063 "seclang-parser.cc" // lalr1.cc:906 +#line 4826 "seclang-parser.cc" // lalr1.cc:859 break; - case 401: -#line 2887 "seclang-parser.yy" // lalr1.cc:906 + case 402: +#line 2893 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::Sha1(yystack_[0].value.as< std::string > ())); } -#line 5071 "seclang-parser.cc" // lalr1.cc:906 +#line 4834 "seclang-parser.cc" // lalr1.cc:859 break; - case 402: -#line 2891 "seclang-parser.yy" // lalr1.cc:906 + case 403: +#line 2897 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::Md5(yystack_[0].value.as< std::string > ())); } -#line 5079 "seclang-parser.cc" // lalr1.cc:906 +#line 4842 "seclang-parser.cc" // lalr1.cc:859 break; - case 403: -#line 2895 "seclang-parser.yy" // lalr1.cc:906 + case 404: +#line 2901 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::EscapeSeqDecode(yystack_[0].value.as< std::string > ())); } -#line 5087 "seclang-parser.cc" // lalr1.cc:906 +#line 4850 "seclang-parser.cc" // lalr1.cc:859 break; - case 404: -#line 2899 "seclang-parser.yy" // lalr1.cc:906 + case 405: +#line 2905 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::HexEncode(yystack_[0].value.as< std::string > ())); } -#line 5095 "seclang-parser.cc" // lalr1.cc:906 +#line 4858 "seclang-parser.cc" // lalr1.cc:859 break; - case 405: -#line 2903 "seclang-parser.yy" // lalr1.cc:906 + case 406: +#line 2909 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::HexDecode(yystack_[0].value.as< std::string > ())); } -#line 5103 "seclang-parser.cc" // lalr1.cc:906 +#line 4866 "seclang-parser.cc" // lalr1.cc:859 break; - case 406: -#line 2907 "seclang-parser.yy" // lalr1.cc:906 + case 407: +#line 2913 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::LowerCase(yystack_[0].value.as< std::string > ())); } -#line 5111 "seclang-parser.cc" // lalr1.cc:906 +#line 4874 "seclang-parser.cc" // lalr1.cc:859 break; - case 407: -#line 2911 "seclang-parser.yy" // lalr1.cc:906 + case 408: +#line 2917 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::UpperCase(yystack_[0].value.as< std::string > ())); } -#line 5119 "seclang-parser.cc" // lalr1.cc:906 +#line 4882 "seclang-parser.cc" // lalr1.cc:859 break; - case 408: -#line 2915 "seclang-parser.yy" // lalr1.cc:906 + case 409: +#line 2921 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::UrlDecodeUni(yystack_[0].value.as< std::string > ())); } -#line 5127 "seclang-parser.cc" // lalr1.cc:906 +#line 4890 "seclang-parser.cc" // lalr1.cc:859 break; - case 409: -#line 2919 "seclang-parser.yy" // lalr1.cc:906 + case 410: +#line 2925 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::UrlDecode(yystack_[0].value.as< std::string > ())); } -#line 5135 "seclang-parser.cc" // lalr1.cc:906 +#line 4898 "seclang-parser.cc" // lalr1.cc:859 break; - case 410: -#line 2923 "seclang-parser.yy" // lalr1.cc:906 + case 411: +#line 2929 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::UrlEncode(yystack_[0].value.as< std::string > ())); } -#line 5143 "seclang-parser.cc" // lalr1.cc:906 +#line 4906 "seclang-parser.cc" // lalr1.cc:859 break; - case 411: -#line 2927 "seclang-parser.yy" // lalr1.cc:906 + case 412: +#line 2933 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::None(yystack_[0].value.as< std::string > ())); } -#line 5151 "seclang-parser.cc" // lalr1.cc:906 +#line 4914 "seclang-parser.cc" // lalr1.cc:859 break; - case 412: -#line 2931 "seclang-parser.yy" // lalr1.cc:906 + case 413: +#line 2937 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::CompressWhitespace(yystack_[0].value.as< std::string > ())); } -#line 5159 "seclang-parser.cc" // lalr1.cc:906 +#line 4922 "seclang-parser.cc" // lalr1.cc:859 break; - case 413: -#line 2935 "seclang-parser.yy" // lalr1.cc:906 + case 414: +#line 2941 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::RemoveWhitespace(yystack_[0].value.as< std::string > ())); } -#line 5167 "seclang-parser.cc" // lalr1.cc:906 +#line 4930 "seclang-parser.cc" // lalr1.cc:859 break; - case 414: -#line 2939 "seclang-parser.yy" // lalr1.cc:906 + case 415: +#line 2945 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::ReplaceNulls(yystack_[0].value.as< std::string > ())); } -#line 5175 "seclang-parser.cc" // lalr1.cc:906 +#line 4938 "seclang-parser.cc" // lalr1.cc:859 break; - case 415: -#line 2943 "seclang-parser.yy" // lalr1.cc:906 + case 416: +#line 2949 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::RemoveNulls(yystack_[0].value.as< std::string > ())); } -#line 5183 "seclang-parser.cc" // lalr1.cc:906 +#line 4946 "seclang-parser.cc" // lalr1.cc:859 break; - case 416: -#line 2947 "seclang-parser.yy" // lalr1.cc:906 + case 417: +#line 2953 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::HtmlEntityDecode(yystack_[0].value.as< std::string > ())); } -#line 5191 "seclang-parser.cc" // lalr1.cc:906 +#line 4954 "seclang-parser.cc" // lalr1.cc:859 break; - case 417: -#line 2951 "seclang-parser.yy" // lalr1.cc:906 + case 418: +#line 2957 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::JsDecode(yystack_[0].value.as< std::string > ())); } -#line 5199 "seclang-parser.cc" // lalr1.cc:906 +#line 4962 "seclang-parser.cc" // lalr1.cc:859 break; - case 418: -#line 2955 "seclang-parser.yy" // lalr1.cc:906 + case 419: +#line 2961 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::CssDecode(yystack_[0].value.as< std::string > ())); } -#line 5207 "seclang-parser.cc" // lalr1.cc:906 +#line 4970 "seclang-parser.cc" // lalr1.cc:859 break; - case 419: -#line 2959 "seclang-parser.yy" // lalr1.cc:906 + case 420: +#line 2965 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::Trim(yystack_[0].value.as< std::string > ())); } -#line 5215 "seclang-parser.cc" // lalr1.cc:906 +#line 4978 "seclang-parser.cc" // lalr1.cc:859 break; - case 420: -#line 2963 "seclang-parser.yy" // lalr1.cc:906 + case 421: +#line 2969 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::TrimLeft(yystack_[0].value.as< std::string > ())); } -#line 5223 "seclang-parser.cc" // lalr1.cc:906 +#line 4986 "seclang-parser.cc" // lalr1.cc:859 break; - case 421: -#line 2967 "seclang-parser.yy" // lalr1.cc:906 + case 422: +#line 2973 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::TrimRight(yystack_[0].value.as< std::string > ())); } -#line 5231 "seclang-parser.cc" // lalr1.cc:906 +#line 4994 "seclang-parser.cc" // lalr1.cc:859 break; - case 422: -#line 2971 "seclang-parser.yy" // lalr1.cc:906 + case 423: +#line 2977 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::NormalisePathWin(yystack_[0].value.as< std::string > ())); } -#line 5239 "seclang-parser.cc" // lalr1.cc:906 +#line 5002 "seclang-parser.cc" // lalr1.cc:859 break; - case 423: -#line 2975 "seclang-parser.yy" // lalr1.cc:906 + case 424: +#line 2981 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::NormalisePath(yystack_[0].value.as< std::string > ())); } -#line 5247 "seclang-parser.cc" // lalr1.cc:906 +#line 5010 "seclang-parser.cc" // lalr1.cc:859 break; - case 424: -#line 2979 "seclang-parser.yy" // lalr1.cc:906 + case 425: +#line 2985 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::Length(yystack_[0].value.as< std::string > ())); } -#line 5255 "seclang-parser.cc" // lalr1.cc:906 +#line 5018 "seclang-parser.cc" // lalr1.cc:859 break; - case 425: -#line 2983 "seclang-parser.yy" // lalr1.cc:906 + case 426: +#line 2989 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::Utf8ToUnicode(yystack_[0].value.as< std::string > ())); } -#line 5263 "seclang-parser.cc" // lalr1.cc:906 +#line 5026 "seclang-parser.cc" // lalr1.cc:859 break; - case 426: -#line 2987 "seclang-parser.yy" // lalr1.cc:906 + case 427: +#line 2993 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::RemoveCommentsChar(yystack_[0].value.as< std::string > ())); } -#line 5271 "seclang-parser.cc" // lalr1.cc:906 +#line 5034 "seclang-parser.cc" // lalr1.cc:859 break; - case 427: -#line 2991 "seclang-parser.yy" // lalr1.cc:906 + case 428: +#line 2997 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::RemoveComments(yystack_[0].value.as< std::string > ())); } -#line 5279 "seclang-parser.cc" // lalr1.cc:906 +#line 5042 "seclang-parser.cc" // lalr1.cc:859 break; - case 428: -#line 2995 "seclang-parser.yy" // lalr1.cc:906 + case 429: +#line 3001 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::transformations::ReplaceComments(yystack_[0].value.as< std::string > ())); } -#line 5287 "seclang-parser.cc" // lalr1.cc:906 +#line 5050 "seclang-parser.cc" // lalr1.cc:859 break; - case 429: -#line 3002 "seclang-parser.yy" // lalr1.cc:906 + case 430: +#line 3008 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::SetVar(actions::SetVarOperation::unsetOperation, std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 5295 "seclang-parser.cc" // lalr1.cc:906 +#line 5058 "seclang-parser.cc" // lalr1.cc:859 break; - case 430: -#line 3006 "seclang-parser.yy" // lalr1.cc:906 + case 431: +#line 3012 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::SetVar(actions::SetVarOperation::setToOneOperation, std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 5303 "seclang-parser.cc" // lalr1.cc:906 +#line 5066 "seclang-parser.cc" // lalr1.cc:859 break; - case 431: -#line 3010 "seclang-parser.yy" // lalr1.cc:906 + case 432: +#line 3016 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::SetVar(actions::SetVarOperation::setOperation, std::move(yystack_[2].value.as< std::unique_ptr > ()), std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 5311 "seclang-parser.cc" // lalr1.cc:906 +#line 5074 "seclang-parser.cc" // lalr1.cc:859 break; - case 432: -#line 3014 "seclang-parser.yy" // lalr1.cc:906 + case 433: +#line 3020 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::SetVar(actions::SetVarOperation::sumAndSetOperation, std::move(yystack_[2].value.as< std::unique_ptr > ()), std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 5319 "seclang-parser.cc" // lalr1.cc:906 +#line 5082 "seclang-parser.cc" // lalr1.cc:859 break; - case 433: -#line 3018 "seclang-parser.yy" // lalr1.cc:906 + case 434: +#line 3024 "seclang-parser.yy" // lalr1.cc:859 { ACTION_CONTAINER(yylhs.value.as< std::unique_ptr > (), new actions::SetVar(actions::SetVarOperation::substractAndSetOperation, std::move(yystack_[2].value.as< std::unique_ptr > ()), std::move(yystack_[0].value.as< std::unique_ptr > ()))); } -#line 5327 "seclang-parser.cc" // lalr1.cc:906 +#line 5090 "seclang-parser.cc" // lalr1.cc:859 break; - case 434: -#line 3025 "seclang-parser.yy" // lalr1.cc:906 + case 435: +#line 3031 "seclang-parser.yy" // lalr1.cc:859 { yystack_[1].value.as< std::unique_ptr > ()->appendText(yystack_[0].value.as< std::string > ()); yylhs.value.as< std::unique_ptr > () = std::move(yystack_[1].value.as< std::unique_ptr > ()); } -#line 5336 "seclang-parser.cc" // lalr1.cc:906 +#line 5099 "seclang-parser.cc" // lalr1.cc:859 break; - case 435: -#line 3030 "seclang-parser.yy" // lalr1.cc:906 + case 436: +#line 3036 "seclang-parser.yy" // lalr1.cc:859 { yystack_[1].value.as< std::unique_ptr > ()->appendVar(std::move(yystack_[0].value.as< std::unique_ptr > ())); yylhs.value.as< std::unique_ptr > () = std::move(yystack_[1].value.as< std::unique_ptr > ()); } -#line 5345 "seclang-parser.cc" // lalr1.cc:906 +#line 5108 "seclang-parser.cc" // lalr1.cc:859 break; - case 436: -#line 3035 "seclang-parser.yy" // lalr1.cc:906 + case 437: +#line 3041 "seclang-parser.yy" // lalr1.cc:859 { std::unique_ptr r(new RunTimeString()); r->appendText(yystack_[0].value.as< std::string > ()); yylhs.value.as< std::unique_ptr > () = std::move(r); } -#line 5355 "seclang-parser.cc" // lalr1.cc:906 +#line 5118 "seclang-parser.cc" // lalr1.cc:859 break; - case 437: -#line 3041 "seclang-parser.yy" // lalr1.cc:906 + case 438: +#line 3047 "seclang-parser.yy" // lalr1.cc:859 { std::unique_ptr r(new RunTimeString()); r->appendVar(std::move(yystack_[0].value.as< std::unique_ptr > ())); yylhs.value.as< std::unique_ptr > () = std::move(r); } -#line 5365 "seclang-parser.cc" // lalr1.cc:906 +#line 5128 "seclang-parser.cc" // lalr1.cc:859 break; -#line 5369 "seclang-parser.cc" // lalr1.cc:906 +#line 5132 "seclang-parser.cc" // lalr1.cc:859 default: break; } } -#if YY_EXCEPTIONS catch (const syntax_error& yyexc) { error (yyexc); YYERROR; } -#endif // YY_EXCEPTIONS YY_SYMBOL_PRINT ("-> $$ =", yylhs); yypop_ (yylen); yylen = 0; YY_STACK_PRINT (); // Shift the result of the reduction. - yypush_ (YY_NULLPTR, YY_MOVE (yylhs)); + yypush_ (YY_NULLPTR, yylhs); } goto yynewstate; @@ -5429,6 +5190,7 @@ namespace yy { code. */ if (false) goto yyerrorlab; + yyerror_range[1].location = yystack_[yylen - 1].location; /* Do not reclaim the symbols of the rule whose action triggered this YYERROR. */ yypop_ (yylen); @@ -5471,7 +5233,7 @@ namespace yy { // Shift the error token. error_token.state = yyn; - yypush_ ("Shifting", YY_MOVE (error_token)); + yypush_ ("Shifting", error_token); } goto yynewstate; @@ -5500,12 +5262,12 @@ namespace yy { return yyresult; } -#if YY_EXCEPTIONS catch (...) { - YYCDEBUG << "Exception caught: cleaning lookahead and stack\n"; + YYCDEBUG << "Exception caught: cleaning lookahead and stack" + << std::endl; // Do not try to display the values of the reclaimed symbols, - // as their printers might throw an exception. + // as their printer might throw an exception. if (!yyla.empty ()) yy_destroy_ (YY_NULLPTR, yyla); @@ -5516,13 +5278,12 @@ namespace yy { } throw; } -#endif // YY_EXCEPTIONS } void seclang_parser::error (const syntax_error& yyexc) { - error (yyexc.location, yyexc.what ()); + error (yyexc.location, yyexc.what()); } // Generate an error message. @@ -5598,13 +5359,12 @@ namespace yy { case N: \ yyformat = S; \ break - default: // Avoid compiler warnings. - YYCASE_ (0, YY_("syntax error")); - YYCASE_ (1, YY_("syntax error, unexpected %s")); - YYCASE_ (2, YY_("syntax error, unexpected %s, expecting %s")); - YYCASE_ (3, YY_("syntax error, unexpected %s, expecting %s or %s")); - YYCASE_ (4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); - YYCASE_ (5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); + YYCASE_(0, YY_("syntax error")); + YYCASE_(1, YY_("syntax error, unexpected %s")); + YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); + YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); + YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); + YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); #undef YYCASE_ } @@ -5623,199 +5383,190 @@ namespace yy { } - const short seclang_parser::yypact_ninf_ = -396; + const short int seclang_parser::yypact_ninf_ = -383; const signed char seclang_parser::yytable_ninf_ = -1; - const short + const short int seclang_parser::yypact_[] = { - 2736, -396, -287, -396, -117, -396, -271, -396, -396, -396, - -396, -396, -281, -396, -396, -396, -396, -396, -268, -396, - -396, -396, -257, -251, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -148, -396, -396, - -147, -396, -142, -396, -143, -138, -396, -253, -86, -86, - -396, -396, -396, -396, -130, -291, -396, -396, -396, 1471, - 1471, 1471, -86, -265, -128, -396, -396, -396, -126, -396, - -396, -396, -396, -396, -396, -396, -396, -396, 1471, -86, - 2878, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, 2307, -247, -396, -396, -396, -396, -396, - -396, -396, -259, -396, -396, -396, -396, -124, -122, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, 2437, - -396, 2437, -396, 2437, -396, -396, -396, -396, -396, -396, - -396, -396, 2437, -396, -396, -396, -396, -396, -396, 2437, - 2437, 2437, 2437, -396, -396, -396, -396, 2437, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, 3061, -396, 0, -396, - -396, -396, -396, -396, -396, 2634, 2634, -156, -154, -152, - -150, -146, -144, -141, -139, -136, -134, -131, -129, -127, - -125, -123, -121, -396, -119, -116, -114, -112, -396, -396, - -110, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -108, -396, -396, -396, - -396, -396, 453, -396, -396, -396, -106, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, 542, - 631, 961, 1050, 1139, -104, -100, 1562, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, 1, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, 1980, -396, -396, -396, -396, 2634, 51, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, 2526, 2526, 2526, 2526, 2526, 2526, 2526, - 2526, 2526, 11, 3061, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, -396, -396, -396, -396, -396, -396, -396, -396, - -396, -396, 2526, -396, -396, -396, -396, 2526, -396, -396, - 2526, -396, -396, 2526, -396, -396, 2526, -396, -396, 2526, - -396, -396, -396, -396, 6, 1653, 2110, 2437, 2437, 2437, - -396, -396, 2437, 2437, 2437, -396, 2437, 2437, 2437, 2437, - 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, - 2437, -396, 2437, 2437, 2437, 2437, -396, -396, 2437, 2437, - 2437, 2437, -86, -396, 2526, -396, 2437, 2437, 2437, -396, - -396, -396, -396, -396, 2634, 2634, -396, -396, 2526, 2526, - 2526, 2526, 2526, 2526, 2526, 2526, 2526, 2526, 2526, 2526, - 2526, 2526, 2526, 2526, 2526, 2526, 2526, 2526, 2526, 2526, - 2526, 2526, 2526, 2526, 2526, 2526, 2526, 2526, -396, 2526, - 2526, 2526, -396, -396 + 2742, -383, -279, -383, -102, -383, -251, -383, -383, -383, + -383, -383, -282, -383, -383, -383, -383, -383, -295, -383, + -383, -383, -155, -152, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -150, -383, + -383, -148, -383, -143, -383, -144, -139, -383, -260, -87, + -87, -383, -383, -383, -383, -131, -297, -383, -383, -383, + 1473, 1473, 1473, -87, -272, -129, -383, -383, -383, -127, + -383, -383, -383, -383, -383, -383, -383, -383, -383, 1473, + -87, 2885, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, 2311, -256, -383, -383, -383, -383, + -383, -383, -383, -266, -383, -383, -383, -383, -125, -123, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + 2441, -383, 2441, -383, 2441, -383, -383, -383, -383, -383, + -383, -383, -383, 2441, -383, -383, -383, -383, -383, -383, + 2441, 2441, 2441, 2441, -383, -383, -383, -383, 2441, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, 3069, -383, 12, + -383, -383, -383, -383, -383, -383, 2639, 2639, -157, -154, + -151, -149, -147, -145, -142, -140, -137, -135, -132, -130, + -128, -126, -124, -122, -383, -120, -118, -116, -114, -383, + -383, -112, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -110, -383, -383, + -383, -383, -383, 453, -383, -383, -383, -108, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + 542, 631, 962, 1051, 1140, -106, -104, 1564, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, 27, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, 1983, -383, -383, -383, -383, 2639, + -51, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, 2530, 2530, 2530, 2530, 2530, 2530, + 2530, 2530, 2530, 5, 3069, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, -383, -383, -383, -383, -383, -383, -383, + -383, -383, -383, 2530, -383, -383, -383, -383, 2530, -383, + -383, 2530, -383, -383, 2530, -383, -383, 2530, -383, -383, + 2530, -383, -383, -383, -383, 10, 1655, 2113, 2441, 2441, + 2441, -383, -383, 2441, 2441, 2441, -383, 2441, 2441, 2441, + 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, + 2441, 2441, -383, 2441, 2441, 2441, 2441, -383, -383, 2441, + 2441, 2441, 2441, -87, -383, 2530, -383, 2441, 2441, 2441, + -383, -383, -383, -383, -383, 2639, 2639, -383, -383, 2530, + 2530, 2530, 2530, 2530, 2530, 2530, 2530, 2530, 2530, 2530, + 2530, 2530, 2530, 2530, 2530, 2530, 2530, 2530, 2530, 2530, + 2530, 2530, 2530, 2530, 2530, 2530, 2530, 2530, 2530, -383, + 2530, 2530, 2530, -383, -383 }; - const unsigned short + const unsigned short int seclang_parser::yydefact_[] = { - 0, 2, 0, 139, 0, 87, 0, 86, 90, 91, + 0, 2, 0, 140, 0, 87, 0, 86, 90, 91, 7, 6, 0, 11, 14, 12, 13, 17, 0, 124, 123, 92, 0, 0, 100, 101, 102, 103, 97, 125, - 104, 105, 137, 136, 108, 109, 110, 0, 128, 126, - 0, 127, 0, 129, 0, 0, 113, 0, 0, 0, - 78, 148, 149, 150, 0, 0, 116, 118, 117, 0, - 0, 0, 0, 0, 0, 26, 24, 25, 0, 138, - 144, 145, 146, 143, 147, 114, 115, 142, 0, 0, - 0, 4, 72, 5, 96, 95, 15, 16, 89, 88, - 9, 10, 8, 20, 19, 18, 94, 93, 99, 98, - 83, 82, 130, 131, 85, 84, 132, 133, 112, 111, - 81, 79, 80, 0, 0, 330, 331, 332, 333, 334, - 335, 336, 0, 340, 341, 342, 343, 0, 0, 351, - 352, 353, 354, 355, 356, 357, 358, 359, 360, 0, - 363, 0, 364, 0, 366, 367, 368, 369, 370, 371, - 372, 373, 0, 375, 376, 377, 378, 379, 380, 0, - 0, 0, 0, 386, 387, 388, 389, 0, 397, 398, - 399, 400, 412, 418, 403, 404, 405, 416, 417, 424, - 406, 402, 411, 423, 422, 395, 394, 393, 427, 426, - 415, 413, 428, 414, 401, 396, 419, 420, 421, 407, - 410, 409, 408, 425, 391, 392, 0, 75, 30, 32, - 77, 107, 106, 134, 135, 0, 0, 162, 165, 168, - 171, 174, 177, 180, 183, 186, 189, 192, 195, 198, - 201, 204, 207, 260, 249, 210, 246, 252, 261, 262, - 219, 263, 264, 265, 266, 267, 268, 269, 270, 271, + 104, 105, 138, 137, 108, 109, 110, 126, 0, 129, + 127, 0, 128, 0, 130, 0, 0, 113, 0, 0, + 0, 78, 149, 150, 151, 0, 0, 116, 118, 117, + 0, 0, 0, 0, 0, 0, 26, 24, 25, 0, + 139, 145, 146, 147, 144, 148, 114, 115, 143, 0, + 0, 0, 4, 72, 5, 96, 95, 15, 16, 89, + 88, 9, 10, 8, 20, 19, 18, 94, 93, 99, + 98, 83, 82, 131, 132, 85, 84, 133, 134, 112, + 111, 81, 79, 80, 0, 0, 331, 332, 333, 334, + 335, 336, 337, 0, 341, 342, 343, 344, 0, 0, + 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, + 0, 364, 0, 365, 0, 367, 368, 369, 370, 371, + 372, 373, 374, 0, 376, 377, 378, 379, 380, 381, + 0, 0, 0, 0, 387, 388, 389, 390, 0, 398, + 399, 400, 401, 413, 419, 404, 405, 406, 417, 418, + 425, 407, 403, 412, 424, 423, 396, 395, 394, 428, + 427, 416, 414, 429, 415, 402, 397, 420, 421, 422, + 408, 411, 410, 409, 426, 392, 393, 0, 75, 30, + 32, 77, 107, 106, 135, 136, 0, 0, 163, 166, + 169, 172, 175, 178, 181, 184, 187, 190, 193, 196, + 199, 202, 205, 208, 261, 250, 211, 247, 253, 262, + 263, 220, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, - 282, 283, 284, 285, 286, 287, 288, 290, 289, 293, - 292, 291, 294, 296, 295, 297, 255, 298, 299, 300, - 302, 301, 223, 303, 304, 256, 259, 305, 306, 307, - 308, 309, 310, 311, 312, 313, 316, 314, 315, 227, - 231, 239, 243, 235, 213, 216, 0, 318, 317, 319, + 282, 283, 284, 285, 286, 287, 288, 289, 291, 290, + 294, 293, 292, 295, 297, 296, 298, 256, 299, 300, + 301, 303, 302, 224, 304, 305, 257, 260, 306, 307, + 308, 309, 310, 311, 312, 313, 314, 317, 315, 316, + 228, 232, 240, 244, 236, 214, 217, 0, 319, 318, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, - 119, 152, 157, 120, 121, 122, 22, 21, 23, 28, - 27, 140, 141, 0, 151, 76, 1, 3, 0, 430, - 385, 350, 349, 348, 338, 337, 339, 345, 344, 347, - 346, 436, 437, 361, 362, 365, 374, 381, 382, 383, - 384, 390, 0, 0, 159, 158, 160, 161, 163, 164, - 166, 167, 169, 170, 172, 173, 175, 176, 178, 179, - 181, 182, 184, 185, 187, 188, 190, 191, 193, 194, - 196, 197, 199, 200, 202, 203, 205, 206, 247, 248, - 208, 209, 244, 245, 250, 251, 217, 218, 253, 254, - 221, 222, 220, 257, 258, 225, 226, 224, 229, 230, - 228, 237, 238, 236, 241, 242, 240, 233, 234, 232, - 211, 212, 214, 215, 0, 0, 0, 0, 0, 0, - 38, 39, 0, 0, 0, 71, 0, 0, 0, 0, + 330, 119, 153, 158, 120, 121, 122, 22, 21, 23, + 28, 27, 141, 142, 0, 152, 76, 1, 3, 0, + 431, 386, 351, 350, 349, 339, 338, 340, 346, 345, + 348, 347, 437, 438, 362, 363, 366, 375, 382, 383, + 384, 385, 391, 0, 0, 160, 159, 161, 162, 164, + 165, 167, 168, 170, 171, 173, 174, 176, 177, 179, + 180, 182, 183, 185, 186, 188, 189, 191, 192, 194, + 195, 197, 198, 200, 201, 203, 204, 206, 207, 248, + 249, 209, 210, 245, 246, 251, 252, 218, 219, 254, + 255, 222, 223, 221, 258, 259, 226, 227, 225, 230, + 231, 229, 238, 239, 237, 242, 243, 241, 234, 235, + 233, 212, 213, 215, 216, 0, 0, 0, 0, 0, + 0, 38, 39, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 37, 0, 0, 0, 0, 40, 41, 0, 0, - 0, 0, 74, 33, 35, 429, 0, 0, 0, 434, - 435, 29, 31, 153, 0, 0, 154, 34, 36, 70, - 55, 54, 56, 57, 43, 58, 51, 59, 42, 60, - 61, 62, 63, 64, 65, 66, 52, 67, 68, 69, - 44, 45, 46, 47, 48, 49, 50, 53, 73, 431, - 432, 433, 156, 155 + 0, 0, 37, 0, 0, 0, 0, 40, 41, 0, + 0, 0, 0, 74, 33, 35, 430, 0, 0, 0, + 435, 436, 29, 31, 154, 0, 0, 155, 34, 36, + 70, 55, 54, 56, 57, 43, 58, 51, 59, 42, + 60, 61, 62, 63, 64, 65, 66, 52, 67, 68, + 69, 44, 45, 46, 47, 48, 49, 50, 53, 73, + 432, 433, 434, 157, 156 }; - const short + const short int seclang_parser::yypgoto_[] = { - -396, -396, -70, -396, -45, -167, -396, -395, -396, -396, - -55, -157, -59, -197, -396, -132 + -383, -383, -63, -383, -46, -161, -383, -382, -383, -383, + -56, -141, -60, -209, -383, -133 }; - const short + const short int seclang_parser::yydefgoto_[] = { - -1, 80, 81, 82, 207, 208, 472, 473, 83, 333, - 320, 321, 352, 209, 340, 353 + -1, 81, 82, 83, 208, 209, 473, 474, 84, 334, + 321, 322, 353, 210, 341, 354 }; - const unsigned short + const unsigned short int seclang_parser::yytable_[] = { - 322, 322, 322, 363, 210, 323, 324, 435, 213, 354, - 337, 355, 435, 113, 363, 84, 85, 325, 214, 322, - 356, 90, 91, 334, 86, 87, 92, 357, 358, 359, - 360, 88, 89, 93, 335, 361, 94, 326, 327, 362, - 95, 487, 328, 344, 345, 96, 97, 110, 346, 111, - 112, 98, 99, 341, 339, 342, 343, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, - 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, - 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, - 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, - 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, 201, 202, 203, 204, 205, 434, - 412, 476, 477, 478, 100, 101, 364, 365, 102, 103, - 104, 105, 106, 107, 108, 109, 482, 417, 420, 423, - 426, 429, 211, 212, 329, 330, 331, 332, 347, 348, - 349, 350, 366, 367, 368, 369, 370, 371, 372, 373, - 0, 0, 374, 375, 376, 377, 0, 378, 379, 380, - 381, 474, 382, 383, 384, 385, 0, 386, 387, 388, - 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, - 399, 0, 400, 401, 402, 403, 404, 405, 406, 407, - 408, 409, 413, 414, 430, 431, 0, 206, 432, 433, - 0, 0, 0, 0, 0, 0, 0, 322, 0, 0, + 323, 323, 323, 214, 211, 324, 325, 94, 364, 355, + 95, 356, 114, 215, 96, 364, 436, 326, 338, 323, + 357, 91, 92, 335, 85, 86, 93, 358, 359, 360, + 361, 327, 328, 436, 336, 362, 329, 345, 346, 87, + 88, 111, 347, 112, 113, 342, 363, 343, 344, 477, + 478, 479, 89, 90, 340, 488, 115, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, + 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, + 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, + 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, + 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, + 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, 206, 97, 98, + 413, 99, 100, 101, 102, 483, 365, 366, 103, 104, + 105, 106, 107, 108, 109, 110, 435, 418, 421, 424, + 427, 430, 212, 213, 330, 331, 332, 333, 348, 349, + 350, 351, 367, 368, 0, 369, 370, 0, 371, 372, + 373, 374, 375, 376, 377, 378, 0, 379, 380, 381, + 382, 475, 383, 384, 385, 386, 0, 387, 388, 389, + 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, + 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, + 410, 414, 415, 431, 432, 433, 434, 207, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 475, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 480, 480, 480, 480, 480, 480, - 480, 480, 480, 0, 488, 489, 490, 491, 0, 0, - 492, 493, 494, 0, 495, 496, 497, 498, 499, 500, - 501, 502, 503, 504, 505, 506, 507, 508, 509, 483, - 510, 511, 512, 513, 481, 0, 514, 515, 516, 517, - 0, 0, 0, 0, 519, 520, 521, 0, 0, 0, - 0, 0, 0, 480, 0, 0, 0, 0, 480, 0, - 0, 480, 0, 0, 480, 0, 0, 480, 0, 0, - 480, 0, 0, 0, 0, 0, 486, 0, 0, 0, + 0, 0, 0, 0, 481, 481, 481, 481, 481, 481, + 481, 481, 481, 0, 489, 490, 491, 492, 0, 0, + 493, 494, 495, 0, 496, 497, 498, 499, 500, 501, + 502, 503, 504, 505, 506, 507, 508, 509, 510, 482, + 511, 512, 513, 514, 484, 0, 515, 516, 517, 518, + 0, 0, 0, 0, 520, 521, 522, 0, 0, 0, + 0, 0, 0, 481, 0, 0, 0, 0, 481, 0, + 0, 481, 0, 0, 481, 0, 0, 481, 0, 0, + 481, 0, 0, 0, 0, 0, 487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 480, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 522, 523, 518, 0, 480, - 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, - 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, - 480, 480, 480, 480, 480, 480, 480, 480, 480, 0, - 480, 480, 480, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, - 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, - 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, - 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, - 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, - 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, - 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, - 304, 305, 217, 218, 219, 220, 221, 222, 223, 224, + 0, 0, 0, 0, 0, 481, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 523, 524, 519, 0, 481, + 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, + 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, + 481, 481, 481, 481, 481, 481, 481, 481, 481, 0, + 481, 481, 481, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, @@ -5824,7 +5575,7 @@ namespace yy { 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, - 305, 217, 218, 219, 220, 221, 222, 223, 224, 225, + 305, 306, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, @@ -5833,31 +5584,40 @@ namespace yy { 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, + 306, 218, 219, 220, 221, 222, 223, 224, 225, 226, + 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, + 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, + 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, + 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, + 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, + 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, + 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, + 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 351, 0, 307, 308, 309, + 0, 0, 0, 0, 0, 0, 352, 0, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, - 0, 410, 411, 0, 0, 0, 0, 0, 0, 0, + 320, 0, 411, 412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 351, 0, 307, 308, 309, 310, - 311, 312, 313, 314, 315, 316, 317, 318, 319, 0, - 415, 416, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 352, 0, 308, 309, 310, + 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, + 0, 416, 417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 351, 0, 307, 308, 309, 310, 311, - 312, 313, 314, 315, 316, 317, 318, 319, 0, 418, - 419, 217, 218, 219, 220, 221, 222, 223, 224, 225, + 0, 0, 0, 0, 352, 0, 308, 309, 310, 311, + 312, 313, 314, 315, 316, 317, 318, 319, 320, 0, + 419, 420, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, @@ -5866,7 +5626,7 @@ namespace yy { 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, - 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, + 306, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, @@ -5874,7 +5634,7 @@ namespace yy { 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 299, 300, 301, 302, 303, 304, 305, 217, + 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, @@ -5883,41 +5643,32 @@ namespace yy { 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, - 298, 299, 300, 301, 302, 303, 304, 305, 0, 0, + 298, 299, 300, 301, 302, 303, 304, 305, 306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 351, 0, 307, 308, 309, 310, 311, - 312, 313, 314, 315, 316, 317, 318, 319, 0, 421, - 422, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 352, 0, 308, 309, 310, + 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, + 0, 422, 423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 351, 0, 307, 308, 309, 310, 311, 312, - 313, 314, 315, 316, 317, 318, 319, 0, 424, 425, + 0, 0, 0, 0, 352, 0, 308, 309, 310, 311, + 312, 313, 314, 315, 316, 317, 318, 319, 320, 0, + 425, 426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 351, 0, 307, 308, 309, 310, 311, 312, 313, - 314, 315, 316, 317, 318, 319, 0, 427, 428, 215, - 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, - 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, - 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, - 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, - 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, - 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, - 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, + 0, 0, 0, 352, 0, 308, 309, 310, 311, 312, + 313, 314, 315, 316, 317, 318, 319, 320, 0, 428, + 429, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, @@ -5926,7 +5677,7 @@ namespace yy { 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, - 305, 484, 485, 217, 218, 219, 220, 221, 222, 223, + 305, 306, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, @@ -5935,31 +5686,73 @@ namespace yy { 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, - 304, 305, 0, 0, 0, 0, 0, 0, 0, 0, + 304, 305, 306, 485, 486, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, + 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, + 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, + 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, + 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, + 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, + 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, + 303, 304, 305, 306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 306, 307, 308, 309, 310, 311, - 312, 313, 314, 315, 316, 317, 318, 319, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 307, 308, 309, + 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, + 320, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 308, + 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, + 319, 320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 307, 308, 309, 310, - 311, 312, 313, 314, 315, 316, 317, 318, 319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, + 318, 319, 320, 218, 219, 220, 221, 222, 223, 224, + 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, + 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, + 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, + 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, + 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, + 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, + 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, + 305, 306, 0, 0, 0, 0, 437, 438, 439, 440, + 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 0, 459, + 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, + 470, 471, 472, 218, 219, 220, 221, 222, 223, 224, + 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, + 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, + 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, + 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, + 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, + 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, + 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, + 305, 306, 0, 0, 0, 0, 0, 438, 439, 440, + 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 0, 459, + 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, + 470, 471, 472, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 307, 308, 309, + 0, 0, 0, 0, 0, 0, 352, 0, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, - 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, + 320, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, @@ -5967,12 +5760,12 @@ namespace yy { 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 299, 300, 301, 302, 303, 304, 305, 0, - 0, 0, 0, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, - 453, 454, 455, 456, 457, 0, 458, 459, 460, 461, - 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, - 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, + 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, + 0, 0, 0, 0, 339, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 352, 0, 308, 309, + 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, + 320, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, @@ -5980,168 +5773,136 @@ namespace yy { 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, - 297, 298, 299, 300, 301, 302, 303, 304, 305, 0, - 0, 0, 0, 0, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, - 453, 454, 455, 456, 457, 0, 458, 459, 460, 461, - 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, + 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, + 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, + 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, + 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, + 298, 299, 300, 301, 302, 303, 304, 305, 306, 0, + 0, 0, 0, 0, 0, 0, 308, 309, 310, 311, + 312, 313, 314, 315, 316, 317, 318, 319, 320, 218, + 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, + 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, + 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, + 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, + 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, + 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, + 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, + 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, + 299, 300, 301, 302, 303, 304, 305, 306, 0, 0, + 0, 0, 1, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 352, 0, 308, 309, 310, 311, + 312, 313, 314, 315, 316, 317, 318, 319, 320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 351, 0, 307, 308, 309, 310, 311, 312, - 313, 314, 315, 316, 317, 318, 319, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, - 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, - 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, - 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, - 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, - 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, - 300, 301, 302, 303, 304, 305, 0, 0, 0, 0, - 338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 351, 0, 307, 308, 309, 310, 311, 312, - 313, 314, 315, 316, 317, 318, 319, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, - 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, - 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, - 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, - 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, - 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, - 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, - 300, 301, 302, 303, 304, 305, 217, 218, 219, 220, - 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, - 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, - 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, - 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, - 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, - 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, - 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, - 301, 302, 303, 304, 305, 0, 0, 0, 0, 0, - 0, 307, 308, 309, 310, 311, 312, 313, 314, 315, - 316, 317, 318, 319, 217, 218, 219, 220, 221, 222, - 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, - 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, - 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, - 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, - 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, - 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, - 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, - 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, - 303, 304, 305, 0, 0, 0, 1, 0, 0, 0, - 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 351, - 0, 307, 308, 309, 310, 311, 312, 313, 314, 315, - 316, 317, 318, 319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 480, 0, 308, 309, 310, 311, 312, + 313, 314, 315, 316, 317, 318, 319, 320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 479, 0, - 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, - 317, 318, 319, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 4, 0, 336, 0, - 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 4, 0, 0, 337, 0, 0, 0, 2, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 307, 308, - 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, - 319, 5, 6, 7, 8, 9, 10, 11, 12, 13, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, - 44, 45, 46, 47, 48, 49, 50, 51, 4, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 68, 69, 70, 71, - 72, 73, 74, 75, 76, 77, 78, 79, 0, 0, + 0, 0, 0, 0, 308, 309, 310, 311, 312, 313, + 314, 315, 316, 317, 318, 319, 320, 5, 6, 7, + 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, + 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, + 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, + 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 4, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 69, 70, 71, 72, 73, 74, 75, + 76, 77, 78, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 5, 6, 7, 8, 9, 10, 11, - 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 113, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 69, - 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, - 0, 0, 0, 0, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, - 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, - 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 205 + 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 114, 53, + 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 64, 65, 66, 67, 68, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 69, 70, 71, 72, + 73, 74, 75, 76, 77, 78, 79, 80, 0, 0, + 0, 0, 115, 116, 117, 118, 119, 120, 121, 122, + 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, + 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, + 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, + 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, + 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, 206 }; - const short + const short int seclang_parser::yycheck_[] = { - 59, 60, 61, 3, 49, 60, 61, 6, 299, 141, - 80, 143, 6, 99, 3, 302, 303, 62, 309, 78, - 152, 302, 303, 78, 141, 142, 307, 159, 160, 161, - 162, 302, 303, 301, 79, 167, 304, 302, 303, 206, - 308, 436, 307, 302, 303, 302, 303, 300, 307, 302, - 303, 302, 303, 300, 113, 302, 303, 143, 144, 145, - 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, - 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, - 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, - 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, - 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 233, 234, 306, - 282, 100, 101, 102, 302, 303, 215, 216, 305, 306, - 302, 303, 305, 306, 302, 303, 363, 299, 300, 301, - 302, 303, 302, 303, 302, 303, 302, 303, 302, 303, - 302, 303, 338, 339, 338, 339, 338, 339, 338, 339, - -1, -1, 338, 339, 338, 339, -1, 338, 339, 338, - 339, 333, 338, 339, 338, 339, -1, 338, 339, 338, - 339, 338, 339, 338, 339, 338, 339, 338, 339, 338, - 339, -1, 338, 339, 338, 339, 338, 339, 338, 339, - 338, 339, 338, 339, 338, 339, -1, 323, 338, 339, - -1, -1, -1, -1, -1, -1, -1, 306, -1, -1, + 60, 61, 62, 300, 50, 61, 62, 302, 3, 142, + 305, 144, 99, 310, 309, 3, 6, 63, 81, 79, + 153, 303, 304, 79, 303, 304, 308, 160, 161, 162, + 163, 303, 304, 6, 80, 168, 308, 303, 304, 141, + 142, 301, 308, 303, 304, 301, 207, 303, 304, 100, + 101, 102, 303, 304, 114, 437, 143, 144, 145, 146, + 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, + 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, + 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, + 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, + 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, + 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, + 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, + 227, 228, 229, 230, 231, 232, 233, 234, 303, 304, + 283, 303, 304, 303, 304, 364, 216, 217, 306, 307, + 303, 304, 306, 307, 303, 304, 307, 300, 301, 302, + 303, 304, 303, 304, 303, 304, 303, 304, 303, 304, + 303, 304, 339, 340, -1, 339, 340, -1, 339, 340, + 339, 340, 339, 340, 339, 340, -1, 339, 340, 339, + 340, 334, 339, 340, 339, 340, -1, 339, 340, 339, + 340, 339, 340, 339, 340, 339, 340, 339, 340, 339, + 340, 339, 340, 339, 340, 339, 340, 339, 340, 339, + 340, 339, 340, 339, 340, 339, 340, 324, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 307, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 338, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 353, 354, 355, 356, 357, 358, - 359, 360, 361, -1, 436, 437, 438, 439, -1, -1, - 442, 443, 444, -1, 446, 447, 448, 449, 450, 451, - 452, 453, 454, 455, 456, 457, 458, 459, 460, 323, - 462, 463, 464, 465, 323, -1, 468, 469, 470, 471, - -1, -1, -1, -1, 476, 477, 478, -1, -1, -1, - -1, -1, -1, 412, -1, -1, -1, -1, 417, -1, - -1, 420, -1, -1, 423, -1, -1, 426, -1, -1, - 429, -1, -1, -1, -1, -1, 435, -1, -1, -1, + -1, -1, -1, -1, 354, 355, 356, 357, 358, 359, + 360, 361, 362, -1, 437, 438, 439, 440, -1, -1, + 443, 444, 445, -1, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 461, 324, + 463, 464, 465, 466, 324, -1, 469, 470, 471, 472, + -1, -1, -1, -1, 477, 478, 479, -1, -1, -1, + -1, -1, -1, 413, -1, -1, -1, -1, 418, -1, + -1, 421, -1, -1, 424, -1, -1, 427, -1, -1, + 430, -1, -1, -1, -1, -1, 436, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 474, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 484, 485, 472, -1, 488, - 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, - 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, - 509, 510, 511, 512, 513, 514, 515, 516, 517, -1, - 519, 520, 521, 10, 11, 12, 13, 14, 15, 16, + -1, -1, -1, -1, -1, 475, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 485, 486, 473, -1, 489, + 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, + 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, + 510, 511, 512, 513, 514, 515, 516, 517, 518, -1, + 520, 521, 522, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, @@ -6172,27 +5933,36 @@ namespace yy { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 322, -1, 324, 325, 326, + -1, -1, -1, -1, -1, -1, 323, -1, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, - -1, 338, 339, -1, -1, -1, -1, -1, -1, -1, + 337, -1, 339, 340, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 322, -1, 324, 325, 326, 327, - 328, 329, 330, 331, 332, 333, 334, 335, 336, -1, - 338, 339, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 323, -1, 325, 326, 327, + 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, + -1, 339, 340, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 322, -1, 324, 325, 326, 327, 328, - 329, 330, 331, 332, 333, 334, 335, 336, -1, 338, - 339, 10, 11, 12, 13, 14, 15, 16, 17, 18, + -1, -1, -1, -1, 323, -1, 325, 326, 327, 328, + 329, 330, 331, 332, 333, 334, 335, 336, 337, -1, + 339, 340, 10, 11, 12, 13, 14, 15, 16, 17, + 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, + 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, + 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, + 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, + 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, + 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, + 98, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, @@ -6209,59 +5979,32 @@ namespace yy { 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, - 90, 91, 92, 93, 94, 95, 96, 97, 98, 10, - 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, - 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, - 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, 92, 93, 94, 95, 96, 97, 98, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 90, 91, 92, 93, 94, 95, 96, 97, 98, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 322, -1, 324, 325, 326, 327, 328, - 329, 330, 331, 332, 333, 334, 335, 336, -1, 338, - 339, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 323, -1, 325, 326, 327, + 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, + -1, 339, 340, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, - 330, 331, 332, 333, 334, 335, 336, -1, 338, 339, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 323, -1, 325, 326, 327, 328, + 329, 330, 331, 332, 333, 334, 335, 336, 337, -1, + 339, 340, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 322, -1, 324, 325, 326, 327, 328, 329, 330, - 331, 332, 333, 334, 335, 336, -1, 338, 339, 8, - 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, - 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, - 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, - 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, - 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, - 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, - 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, - 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, - 98, 8, 9, 10, 11, 12, 13, 14, 15, 16, + -1, -1, -1, 323, -1, 325, 326, 327, 328, 329, + 330, 331, 332, 333, 334, 335, 336, 337, -1, 339, + 340, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, @@ -6270,30 +6013,103 @@ namespace yy { 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, - 97, 98, -1, -1, -1, -1, -1, -1, -1, -1, + 97, 98, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, + 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, + 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, + 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, + 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, + 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, + 96, 97, 98, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, + 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, + 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, + 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, + 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, + 95, 96, 97, 98, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 323, 324, 325, 326, 327, 328, - 329, 330, 331, 332, 333, 334, 335, 336, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 324, 325, 326, + 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, + 337, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 325, + 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, + 336, 337, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 324, 325, 326, 327, - 328, 329, 330, 331, 332, 333, 334, 335, 336, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, + 335, 336, 337, 10, 11, 12, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, + 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, + 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, + 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, + 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, + 97, 98, -1, -1, -1, -1, 103, 104, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, -1, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 10, 11, 12, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, + 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, + 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, + 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, + 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, + 97, 98, -1, -1, -1, -1, -1, 104, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, -1, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 323, -1, 325, 326, + 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, + 337, 10, 11, 12, 13, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, + 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, + 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, + 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, + 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, + 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, + 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, + -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 324, 325, 326, + -1, -1, -1, -1, -1, -1, 323, -1, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, + 337, 10, 11, 12, 13, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, + 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, + 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, + 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, + 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, + 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, + 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, @@ -6303,131 +6119,77 @@ namespace yy { 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, -1, - -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, - 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, - 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, - 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, - 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, - 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, - 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, - 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, - 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, - 90, 91, 92, 93, 94, 95, 96, 97, 98, -1, - -1, -1, -1, -1, 104, 105, 106, 107, 108, 109, - 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, -1, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + -1, -1, -1, -1, -1, -1, 325, 326, 327, 328, + 329, 330, 331, 332, 333, 334, 335, 336, 337, 10, + 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, + 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, + 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, + 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, + 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, + 91, 92, 93, 94, 95, 96, 97, 98, -1, -1, + -1, -1, 0, -1, -1, -1, 4, 5, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 323, -1, 325, 326, 327, 328, + 329, 330, 331, 332, 333, 334, 335, 336, 337, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, - 330, 331, 332, 333, 334, 335, 336, 10, 11, 12, - 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, - 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, - 93, 94, 95, 96, 97, 98, -1, -1, -1, -1, - 103, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 322, -1, 324, 325, 326, 327, 328, 329, - 330, 331, 332, 333, 334, 335, 336, 10, 11, 12, - 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, - 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, - 93, 94, 95, 96, 97, 98, 10, 11, 12, 13, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, - 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, - 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, - 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, - 94, 95, 96, 97, 98, -1, -1, -1, -1, -1, - -1, 324, 325, 326, 327, 328, 329, 330, 331, 332, - 333, 334, 335, 336, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, - 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, - 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, - 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, - 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, - 96, 97, 98, -1, -1, -1, 0, -1, -1, -1, - 4, 5, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 322, - -1, 324, 325, 326, 327, 328, 329, 330, 331, 332, - 333, 334, 335, 336, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 323, -1, 325, 326, 327, 328, 329, + 330, 331, 332, 333, 334, 335, 336, 337, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 140, -1, -1, 0, -1, -1, -1, 4, + 5, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 322, -1, - 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, - 334, 335, 336, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 140, -1, 0, -1, - -1, -1, 4, 5, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 324, 325, - 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, - 336, 235, 236, 237, 238, 239, 240, 241, 242, 243, - 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, - 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, - 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, - 274, 275, 276, 277, 278, 279, 280, 281, 140, 283, - 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 297, 298, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 310, 311, 312, 313, - 314, 315, 316, 317, 318, 319, 320, 321, -1, -1, + -1, -1, -1, -1, 325, 326, 327, 328, 329, 330, + 331, 332, 333, 334, 335, 336, 337, 235, 236, 237, + 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, + 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, + 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, + 278, 279, 280, 281, 282, 140, 284, 285, 286, 287, + 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, + 298, 299, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 311, 312, 313, 314, 315, 316, 317, + 318, 319, 320, 321, 322, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 235, 236, 237, 238, 239, 240, 241, - 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, - 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, - 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, - 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, - 99, 283, 284, 285, 286, 287, 288, 289, 290, 291, - 292, 293, 294, 295, 296, 297, 298, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 310, 311, - 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, - -1, -1, -1, -1, 143, 144, 145, 146, 147, 148, - 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, - 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, - 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, - 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, - 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, - 229, 230, 231, 232, 233, 234 + 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, + 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, + 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, + 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, + 275, 276, 277, 278, 279, 280, 281, 282, 99, 284, + 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 311, 312, 313, 314, + 315, 316, 317, 318, 319, 320, 321, 322, -1, -1, + -1, -1, 143, 144, 145, 146, 147, 148, 149, 150, + 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, + 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, + 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, + 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, + 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, + 231, 232, 233, 234 }; - const unsigned short + const unsigned short int seclang_parser::yystos_[] = { 0, 0, 4, 5, 140, 235, 236, 237, 238, 239, @@ -6435,92 +6197,80 @@ namespace yy { 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, - 280, 281, 283, 284, 285, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 297, 298, 310, 311, + 280, 281, 282, 284, 285, 286, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, - 341, 342, 343, 348, 302, 303, 141, 142, 302, 303, - 302, 303, 307, 301, 304, 308, 302, 303, 302, 303, - 302, 303, 305, 306, 302, 303, 305, 306, 302, 303, - 300, 302, 303, 99, 143, 144, 145, 146, 147, 148, - 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, - 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, - 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, - 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, - 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, - 229, 230, 231, 232, 233, 234, 323, 344, 345, 353, - 344, 302, 303, 299, 309, 8, 9, 10, 11, 12, - 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, - 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, - 93, 94, 95, 96, 97, 98, 323, 324, 325, 326, + 322, 342, 343, 344, 349, 303, 304, 141, 142, 303, + 304, 303, 304, 308, 302, 305, 309, 303, 304, 303, + 304, 303, 304, 306, 307, 303, 304, 306, 307, 303, + 304, 301, 303, 304, 99, 143, 144, 145, 146, 147, + 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, + 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, + 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, + 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, + 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 324, 345, 346, + 354, 345, 303, 304, 300, 310, 8, 9, 10, 11, + 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, + 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, + 92, 93, 94, 95, 96, 97, 98, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, - 350, 351, 352, 350, 350, 344, 302, 303, 307, 302, - 303, 302, 303, 349, 350, 344, 0, 342, 103, 352, - 354, 300, 302, 303, 302, 303, 307, 302, 303, 302, - 303, 322, 352, 355, 355, 355, 355, 355, 355, 355, - 355, 355, 345, 3, 352, 352, 338, 339, 338, 339, - 338, 339, 338, 339, 338, 339, 338, 339, 338, 339, - 338, 339, 338, 339, 338, 339, 338, 339, 338, 339, - 338, 339, 338, 339, 338, 339, 338, 339, 338, 339, - 338, 339, 338, 339, 338, 339, 338, 339, 338, 339, - 338, 339, 355, 338, 339, 338, 339, 355, 338, 339, - 355, 338, 339, 355, 338, 339, 355, 338, 339, 355, - 338, 339, 338, 339, 351, 6, 103, 104, 105, 106, - 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, - 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 346, 347, 355, 352, 100, 101, 102, 322, - 352, 323, 353, 323, 8, 9, 352, 347, 355, 355, - 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, - 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, - 355, 355, 355, 355, 355, 355, 355, 355, 344, 355, - 355, 355, 352, 352 + 337, 351, 352, 353, 351, 351, 345, 303, 304, 308, + 303, 304, 303, 304, 350, 351, 345, 0, 343, 103, + 353, 355, 301, 303, 304, 303, 304, 308, 303, 304, + 303, 304, 323, 353, 356, 356, 356, 356, 356, 356, + 356, 356, 356, 346, 3, 353, 353, 339, 340, 339, + 340, 339, 340, 339, 340, 339, 340, 339, 340, 339, + 340, 339, 340, 339, 340, 339, 340, 339, 340, 339, + 340, 339, 340, 339, 340, 339, 340, 339, 340, 339, + 340, 339, 340, 339, 340, 339, 340, 339, 340, 339, + 340, 339, 340, 356, 339, 340, 339, 340, 356, 339, + 340, 356, 339, 340, 356, 339, 340, 356, 339, 340, + 356, 339, 340, 339, 340, 352, 6, 103, 104, 105, + 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 347, 348, 356, 353, 100, 101, 102, + 323, 353, 324, 354, 324, 8, 9, 353, 348, 356, + 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, + 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, + 356, 356, 356, 356, 356, 356, 356, 356, 356, 345, + 356, 356, 356, 353, 353 }; - const unsigned short + const unsigned short int seclang_parser::yyr1_[] = { - 0, 340, 341, 341, 341, 342, 343, 343, 343, 343, - 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, - 343, 343, 343, 343, 343, 343, 343, 343, 343, 344, - 344, 345, 345, 346, 346, 346, 346, 347, 347, 347, - 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, - 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, - 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, - 347, 347, 348, 348, 348, 348, 348, 348, 348, 348, - 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, - 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, - 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, + 0, 341, 342, 342, 342, 343, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 345, + 345, 346, 346, 347, 347, 347, 347, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, - 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, - 348, 349, 350, 350, 351, 351, 351, 351, 351, 351, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, + 348, 348, 349, 349, 349, 349, 349, 349, 349, 349, + 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, + 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, + 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, + 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, + 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, + 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, + 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, + 349, 349, 350, 351, 351, 352, 352, 352, 352, 352, + 352, 353, 353, 353, 353, 353, 353, 353, 353, 353, + 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, + 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, + 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, + 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, @@ -6530,8 +6280,20 @@ namespace yy { 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, - 353, 353, 353, 353, 353, 353, 353, 353, 353, 354, - 354, 354, 354, 354, 355, 355, 355, 355 + 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, + 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, + 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, + 353, 354, 354, 354, 354, 354, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, + 355, 355, 355, 355, 355, 356, 356, 356, 356 }; const unsigned char @@ -6550,19 +6312,19 @@ namespace yy { 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, - 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, - 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 3, 3, 4, 4, 1, 2, 2, + 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, + 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 3, 3, 4, 4, 1, 2, + 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, - 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, - 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, - 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, - 2, 2, 2, 1, 2, 2, 1, 2, 2, 1, - 2, 2, 1, 2, 2, 1, 1, 2, 2, 1, + 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, + 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, + 1, 2, 2, 2, 1, 2, 2, 1, 2, 2, + 1, 2, 2, 1, 2, 2, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -6570,17 +6332,17 @@ namespace yy { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, - 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, - 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 2, 2, 1, 1, 2, 1, 1, 1, 1, - 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, - 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, - 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, + 2, 1, 1, 1, 1, 2, 2, 2, 2, 2, + 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, + 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, + 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, + 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, - 1, 3, 3, 3, 2, 2, 1, 1 + 2, 1, 3, 3, 3, 2, 2, 1, 1 }; @@ -6715,8 +6477,8 @@ namespace yy { "\"CONFIG_DIR_PCRE_MATCH_LIMIT\"", "\"CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION\"", "\"CONFIG_SEC_CONN_R_STATE_LIMIT\"", "\"CONFIG_SEC_CONN_W_STATE_LIMIT\"", - "\"CONFIG_SEC_SENSOR_ID\"", "\"CONFIG_DIR_REQ_BODY\"", - "\"CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT\"", + "\"CONFIG_SEC_SENSOR_ID\"", "\"CONFIG_DIR_ARGS_LIMIT\"", + "\"CONFIG_DIR_REQ_BODY\"", "\"CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT\"", "\"CONFIG_DIR_REQ_BODY_LIMIT\"", "\"CONFIG_DIR_REQ_BODY_LIMIT_ACTION\"", "\"CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT\"", "\"CONFIG_DIR_RES_BODY\"", "\"CONFIG_DIR_RES_BODY_LIMIT\"", "\"CONFIG_DIR_RES_BODY_LIMIT_ACTION\"", @@ -6764,53 +6526,53 @@ namespace yy { }; #if YYDEBUG - const unsigned short + const unsigned short int seclang_parser::yyrline_[] = { - 0, 744, 744, 748, 749, 752, 757, 763, 769, 773, - 777, 783, 789, 795, 801, 806, 811, 817, 824, 828, - 832, 838, 842, 846, 851, 856, 861, 866, 870, 877, - 881, 888, 894, 904, 913, 923, 932, 945, 949, 953, - 957, 961, 965, 969, 973, 977, 981, 986, 990, 994, - 998, 1002, 1007, 1012, 1016, 1020, 1024, 1028, 1032, 1036, - 1040, 1044, 1048, 1052, 1056, 1060, 1064, 1068, 1072, 1076, - 1080, 1084, 1098, 1099, 1124, 1143, 1158, 1182, 1238, 1242, - 1246, 1250, 1254, 1258, 1262, 1266, 1270, 1279, 1283, 1288, - 1291, 1296, 1301, 1306, 1311, 1314, 1319, 1322, 1327, 1332, - 1335, 1340, 1345, 1350, 1355, 1360, 1365, 1370, 1373, 1378, - 1383, 1388, 1393, 1396, 1401, 1406, 1411, 1424, 1437, 1450, - 1463, 1476, 1502, 1530, 1542, 1562, 1590, 1595, 1600, 1609, - 1614, 1618, 1622, 1626, 1630, 1634, 1638, 1643, 1648, 1660, - 1666, 1670, 1674, 1685, 1694, 1695, 1702, 1707, 1712, 1766, - 1773, 1781, 1818, 1822, 1829, 1834, 1840, 1846, 1852, 1859, - 1869, 1873, 1877, 1881, 1885, 1889, 1893, 1897, 1901, 1905, - 1909, 1913, 1917, 1921, 1925, 1929, 1933, 1937, 1941, 1945, - 1949, 1953, 1957, 1961, 1965, 1969, 1973, 1977, 1981, 1985, - 1989, 1993, 1997, 2001, 2005, 2009, 2013, 2017, 2021, 2025, - 2029, 2033, 2037, 2041, 2045, 2049, 2053, 2057, 2061, 2065, - 2069, 2073, 2077, 2081, 2085, 2089, 2093, 2097, 2101, 2105, - 2109, 2113, 2117, 2121, 2125, 2129, 2133, 2137, 2141, 2145, - 2149, 2153, 2157, 2161, 2165, 2169, 2173, 2177, 2181, 2185, - 2189, 2193, 2197, 2201, 2205, 2209, 2213, 2217, 2221, 2225, - 2230, 2234, 2238, 2243, 2247, 2251, 2256, 2261, 2265, 2269, - 2273, 2277, 2281, 2285, 2289, 2293, 2297, 2301, 2305, 2309, - 2313, 2317, 2321, 2325, 2329, 2333, 2337, 2341, 2345, 2349, - 2353, 2357, 2361, 2365, 2369, 2373, 2377, 2381, 2385, 2389, - 2393, 2397, 2401, 2405, 2409, 2413, 2417, 2421, 2425, 2429, - 2433, 2437, 2441, 2445, 2449, 2453, 2457, 2461, 2465, 2469, - 2473, 2477, 2481, 2485, 2489, 2493, 2497, 2501, 2509, 2516, - 2523, 2530, 2537, 2544, 2551, 2558, 2565, 2572, 2579, 2586, - 2596, 2600, 2604, 2608, 2612, 2616, 2620, 2624, 2629, 2634, - 2639, 2643, 2647, 2651, 2655, 2660, 2665, 2669, 2673, 2677, - 2681, 2685, 2689, 2693, 2697, 2701, 2705, 2709, 2713, 2717, - 2722, 2726, 2730, 2734, 2738, 2742, 2746, 2750, 2754, 2758, - 2762, 2766, 2770, 2774, 2778, 2782, 2786, 2790, 2794, 2798, - 2802, 2806, 2810, 2814, 2818, 2822, 2826, 2830, 2834, 2838, - 2842, 2846, 2850, 2854, 2858, 2862, 2866, 2870, 2874, 2878, - 2882, 2886, 2890, 2894, 2898, 2902, 2906, 2910, 2914, 2918, - 2922, 2926, 2930, 2934, 2938, 2942, 2946, 2950, 2954, 2958, - 2962, 2966, 2970, 2974, 2978, 2982, 2986, 2990, 2994, 3001, - 3005, 3009, 3013, 3017, 3024, 3029, 3034, 3040 + 0, 745, 745, 749, 750, 753, 758, 764, 770, 774, + 778, 784, 790, 796, 802, 807, 812, 818, 825, 829, + 833, 839, 843, 847, 852, 857, 862, 867, 871, 878, + 882, 889, 895, 905, 914, 924, 933, 946, 950, 954, + 958, 962, 966, 970, 974, 978, 982, 987, 991, 995, + 999, 1003, 1008, 1013, 1017, 1021, 1025, 1029, 1033, 1037, + 1041, 1045, 1049, 1053, 1057, 1061, 1065, 1069, 1073, 1077, + 1081, 1085, 1099, 1100, 1125, 1144, 1159, 1183, 1239, 1243, + 1247, 1251, 1255, 1259, 1263, 1267, 1271, 1280, 1284, 1289, + 1292, 1297, 1302, 1307, 1312, 1315, 1320, 1323, 1328, 1333, + 1336, 1341, 1346, 1351, 1356, 1361, 1366, 1371, 1374, 1379, + 1384, 1389, 1394, 1397, 1402, 1407, 1412, 1425, 1438, 1451, + 1464, 1477, 1503, 1531, 1543, 1563, 1590, 1596, 1601, 1606, + 1615, 1620, 1624, 1628, 1632, 1636, 1640, 1644, 1649, 1654, + 1666, 1672, 1676, 1680, 1691, 1700, 1701, 1708, 1713, 1718, + 1772, 1779, 1787, 1824, 1828, 1835, 1840, 1846, 1852, 1858, + 1865, 1875, 1879, 1883, 1887, 1891, 1895, 1899, 1903, 1907, + 1911, 1915, 1919, 1923, 1927, 1931, 1935, 1939, 1943, 1947, + 1951, 1955, 1959, 1963, 1967, 1971, 1975, 1979, 1983, 1987, + 1991, 1995, 1999, 2003, 2007, 2011, 2015, 2019, 2023, 2027, + 2031, 2035, 2039, 2043, 2047, 2051, 2055, 2059, 2063, 2067, + 2071, 2075, 2079, 2083, 2087, 2091, 2095, 2099, 2103, 2107, + 2111, 2115, 2119, 2123, 2127, 2131, 2135, 2139, 2143, 2147, + 2151, 2155, 2159, 2163, 2167, 2171, 2175, 2179, 2183, 2187, + 2191, 2195, 2199, 2203, 2207, 2211, 2215, 2219, 2223, 2227, + 2231, 2236, 2240, 2244, 2249, 2253, 2257, 2262, 2267, 2271, + 2275, 2279, 2283, 2287, 2291, 2295, 2299, 2303, 2307, 2311, + 2315, 2319, 2323, 2327, 2331, 2335, 2339, 2343, 2347, 2351, + 2355, 2359, 2363, 2367, 2371, 2375, 2379, 2383, 2387, 2391, + 2395, 2399, 2403, 2407, 2411, 2415, 2419, 2423, 2427, 2431, + 2435, 2439, 2443, 2447, 2451, 2455, 2459, 2463, 2467, 2471, + 2475, 2479, 2483, 2487, 2491, 2495, 2499, 2503, 2507, 2515, + 2522, 2529, 2536, 2543, 2550, 2557, 2564, 2571, 2578, 2585, + 2592, 2602, 2606, 2610, 2614, 2618, 2622, 2626, 2630, 2635, + 2640, 2645, 2649, 2653, 2657, 2661, 2666, 2671, 2675, 2679, + 2683, 2687, 2691, 2695, 2699, 2703, 2707, 2711, 2715, 2719, + 2723, 2728, 2732, 2736, 2740, 2744, 2748, 2752, 2756, 2760, + 2764, 2768, 2772, 2776, 2780, 2784, 2788, 2792, 2796, 2800, + 2804, 2808, 2812, 2816, 2820, 2824, 2828, 2832, 2836, 2840, + 2844, 2848, 2852, 2856, 2860, 2864, 2868, 2872, 2876, 2880, + 2884, 2888, 2892, 2896, 2900, 2904, 2908, 2912, 2916, 2920, + 2924, 2928, 2932, 2936, 2940, 2944, 2948, 2952, 2956, 2960, + 2964, 2968, 2972, 2976, 2980, 2984, 2988, 2992, 2996, 3000, + 3007, 3011, 3015, 3019, 3023, 3030, 3035, 3040, 3046 }; // Print the state stack on the debug stream. @@ -6823,18 +6585,18 @@ namespace yy { i_end = yystack_.end (); i != i_end; ++i) *yycdebug_ << ' ' << i->state; - *yycdebug_ << '\n'; + *yycdebug_ << std::endl; } // Report on the debug stream that the rule \a yyrule is going to be reduced. void seclang_parser::yy_reduce_print_ (int yyrule) { - unsigned yylno = yyrline_[yyrule]; + unsigned int yylno = yyrline_[yyrule]; int yynrhs = yyr2_[yyrule]; // Print the symbols being reduced, and their result. *yycdebug_ << "Reducing stack by rule " << yyrule - 1 - << " (line " << yylno << "):\n"; + << " (line " << yylno << "):" << std::endl; // The symbols being reduced. for (int yyi = 0; yyi < yynrhs; yyi++) YY_SYMBOL_PRINT (" $" << yyi + 1 << " =", @@ -6845,8 +6607,8 @@ namespace yy { } // yy -#line 6849 "seclang-parser.cc" // lalr1.cc:1217 -#line 3047 "seclang-parser.yy" // lalr1.cc:1218 +#line 6611 "seclang-parser.cc" // lalr1.cc:1167 +#line 3053 "seclang-parser.yy" // lalr1.cc:1168 void yy::seclang_parser::error (const location_type& l, const std::string& m) { diff --git a/src/parser/seclang-parser.hh b/src/parser/seclang-parser.hh index e82347dbbd..eb59edfcf0 100644 --- a/src/parser/seclang-parser.hh +++ b/src/parser/seclang-parser.hh @@ -1,8 +1,8 @@ -// A Bison parser, made by GNU Bison 3.2. +// A Bison parser, made by GNU Bison 3.0.4. // Skeleton interface for Bison LALR(1) parsers in C++ -// Copyright (C) 2002-2015, 2018 Free Software Foundation, Inc. +// Copyright (C) 2002-2015 Free Software Foundation, Inc. // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -30,7 +30,6 @@ // This special exception was added by the Free Software Foundation in // version 2.2 of Bison. - /** ** \file y.tab.h ** Define the yy::parser class. @@ -38,13 +37,10 @@ // C++ LALR(1) parser skeleton written by Akim Demaille. -// Undocumented macros, especially those whose name start with YY_, -// are private implementation details. Do not rely on them. - #ifndef YY_YY_SECLANG_PARSER_HH_INCLUDED # define YY_YY_SECLANG_PARSER_HH_INCLUDED // // "%code requires" blocks. -#line 10 "seclang-parser.yy" // lalr1.cc:403 +#line 10 "seclang-parser.yy" // lalr1.cc:377 #include #include @@ -386,7 +382,7 @@ using modsecurity::operators::Operator; a = std::move(c); -#line 390 "seclang-parser.hh" // lalr1.cc:403 +#line 386 "seclang-parser.hh" // lalr1.cc:377 # include # include // std::abort @@ -394,21 +390,7 @@ using modsecurity::operators::Operator; # include # include # include - -// Support move semantics when possible. -#if defined __cplusplus && 201103L <= __cplusplus -# define YY_MOVE std::move -# define YY_MOVE_OR_COPY move -# define YY_MOVE_REF(Type) Type&& -# define YY_RVREF(Type) Type&& -# define YY_COPY(Type) Type -#else -# define YY_MOVE -# define YY_MOVE_OR_COPY copy -# define YY_MOVE_REF(Type) Type& -# define YY_RVREF(Type) const Type& -# define YY_COPY(Type) const Type& -#endif +# include "stack.hh" # include "location.hh" #include #ifndef YYASSERT @@ -435,6 +417,15 @@ using modsecurity::operators::Operator; # define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__)) #endif +#if !defined _Noreturn \ + && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112) +# if defined _MSC_VER && 1200 <= _MSC_VER +# define _Noreturn __declspec (noreturn) +# else +# define _Noreturn YY_ATTRIBUTE ((__noreturn__)) +# endif +#endif + /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(E) ((void) (E)) @@ -442,7 +433,7 @@ using modsecurity::operators::Operator; # define YYUSE(E) /* empty */ #endif -#if defined __GNUC__ && ! defined __ICC && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ +#if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ /* Suppress an incorrect diagnostic about yylval being uninitialized. */ # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ @@ -461,18 +452,6 @@ using modsecurity::operators::Operator; # define YY_INITIAL_VALUE(Value) /* Nothing. */ #endif -# ifndef YY_NULLPTR -# if defined __cplusplus -# if 201103L <= __cplusplus -# define YY_NULLPTR nullptr -# else -# define YY_NULLPTR 0 -# endif -# else -# define YY_NULLPTR ((void*)0) -# endif -# endif - /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 1 @@ -480,126 +459,7 @@ using modsecurity::operators::Operator; namespace yy { -#line 484 "seclang-parser.hh" // lalr1.cc:403 - - /// A stack with random access from its top. - template > - class stack - { - public: - // Hide our reversed order. - typedef typename S::reverse_iterator iterator; - typedef typename S::const_reverse_iterator const_iterator; - typedef typename S::size_type size_type; - - stack (size_type n = 200) - : seq_ (n) - {} - - /// Random access. - /// - /// Index 0 returns the topmost element. - T& - operator[] (size_type i) - { - return seq_[size () - 1 - i]; - } - - /// Random access. - /// - /// Index 0 returns the topmost element. - T& - operator[] (int i) - { - return operator[] (size_type (i)); - } - - /// Random access. - /// - /// Index 0 returns the topmost element. - const T& - operator[] (size_type i) const - { - return seq_[size () - 1 - i]; - } - - /// Random access. - /// - /// Index 0 returns the topmost element. - const T& - operator[] (int i) const - { - return operator[] (size_type (i)); - } - - /// Steal the contents of \a t. - /// - /// Close to move-semantics. - void - push (YY_MOVE_REF (T) t) - { - seq_.push_back (T ()); - operator[](0).move (t); - } - - void - pop (int n = 1) - { - for (; 0 < n; --n) - seq_.pop_back (); - } - - void - clear () - { - seq_.clear (); - } - - size_type - size () const - { - return seq_.size (); - } - - const_iterator - begin () const - { - return seq_.rbegin (); - } - - const_iterator - end () const - { - return seq_.rend (); - } - - private: - stack (const stack&); - stack& operator= (const stack&); - /// The wrapped container. - S seq_; - }; - - /// Present a slice of the top of a stack. - template > - class slice - { - public: - slice (const S& stack, int range) - : stack_ (stack) - , range_ (range) - {} - - const T& - operator[] (int i) const - { - return stack_[range_ - i]; - } - - private: - const S& stack_; - int range_; - }; +#line 463 "seclang-parser.hh" // lalr1.cc:377 @@ -616,17 +476,16 @@ namespace yy { /// Empty construction. variant () - : yybuffer_ () - , yytypeid_ (YY_NULLPTR) + : yytypeid_ (YY_NULLPTR) {} /// Construct and fill. template - variant (YY_RVREF (T) t) + variant (const T& t) : yytypeid_ (&typeid (T)) { YYASSERT (sizeof (T) <= S); - new (yyas_ ()) T (YY_MOVE (t)); + new (yyas_ ()) T (t); } /// Destruction, allowed only if empty. @@ -638,62 +497,30 @@ namespace yy { /// Instantiate an empty \a T in here. template T& - emplace () + build () { YYASSERT (!yytypeid_); YYASSERT (sizeof (T) <= S); yytypeid_ = & typeid (T); - return *new (yyas_ ()) T (); + return *new (yyas_ ()) T; } -# if defined __cplusplus && 201103L <= __cplusplus - /// Instantiate a \a T in here from \a t. - template - T& - emplace (U&& u) - { - YYASSERT (!yytypeid_); - YYASSERT (sizeof (T) <= S); - yytypeid_ = & typeid (T); - return *new (yyas_ ()) T (std::forward (u)); - } -# else /// Instantiate a \a T in here from \a t. template T& - emplace (const T& t) + build (const T& t) { YYASSERT (!yytypeid_); YYASSERT (sizeof (T) <= S); yytypeid_ = & typeid (T); return *new (yyas_ ()) T (std::move((T&)t)); } -# endif - - /// Instantiate an empty \a T in here. - /// Obsolete, use emplace. - template - T& - build () - { - return emplace (); - } - - /// Instantiate a \a T in here from \a t. - /// Obsolete, use emplace. - template - T& - build (const T& t) - { - return emplace (t); - } /// Accessor to a built \a T. template T& as () { - YYASSERT (yytypeid_); YYASSERT (*yytypeid_ == typeid (T)); YYASSERT (sizeof (T) <= S); return *yyas_ (); @@ -704,7 +531,6 @@ namespace yy { const T& as () const { - YYASSERT (yytypeid_); YYASSERT (*yytypeid_ == typeid (T)); YYASSERT (sizeof (T) <= S); return *yyas_ (); @@ -715,7 +541,7 @@ namespace yy { /// Both variants must be built beforehand, because swapping the actual /// data requires reading it (with as()), and this is not possible on /// unconstructed variants: it would require some dynamic testing, which - /// should not be the variant's responsibility. + /// should not be the variant's responsability. /// Swapping between built and (possibly) non-built is done with /// variant::move (). template @@ -734,32 +560,17 @@ namespace yy { void move (self_type& other) { -# if defined __cplusplus && 201103L <= __cplusplus - emplace (std::move (other.as ())); -# else - emplace (); + build (); swap (other); -# endif - other.destroy (); - } - -# if defined __cplusplus && 201103L <= __cplusplus - /// Move the content of \a other to this. - template - void - move (self_type&& other) - { - emplace (std::move (other.as ())); other.destroy (); } -#endif /// Copy the content of \a other to this. template void copy (const self_type& other) { - emplace (other.as ()); + build (other.as ()); } /// Destroy the stored \a T. @@ -773,7 +584,7 @@ namespace yy { private: /// Prohibit blind copies. - self_type& operator= (const self_type&); + self_type& operator=(const self_type&); variant (const self_type&); /// Accessor to raw memory as \a T. @@ -938,6 +749,7 @@ namespace yy { // "CONFIG_SEC_CONN_R_STATE_LIMIT" // "CONFIG_SEC_CONN_W_STATE_LIMIT" // "CONFIG_SEC_SENSOR_ID" + // "CONFIG_DIR_ARGS_LIMIT" // "CONFIG_DIR_REQ_BODY" // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" // "CONFIG_DIR_REQ_BODY_LIMIT" @@ -1011,34 +823,34 @@ namespace yy { // "VARIABLE" // "Dictionary element" // "Dictionary element, selected by regexp" - char dummy1[sizeof (std::string)]; + char dummy1[sizeof(std::string)]; // op // op_before_init - char dummy2[sizeof (std::unique_ptr)]; + char dummy2[sizeof(std::unique_ptr)]; // run_time_string - char dummy3[sizeof (std::unique_ptr)]; + char dummy3[sizeof(std::unique_ptr)]; // var - char dummy4[sizeof (std::unique_ptr)]; + char dummy4[sizeof(std::unique_ptr)]; // act // setvar_action - char dummy5[sizeof (std::unique_ptr)]; + char dummy5[sizeof(std::unique_ptr)]; // variables // variables_pre_process // variables_may_be_quoted - char dummy6[sizeof (std::unique_ptr > > )]; + char dummy6[sizeof(std::unique_ptr > > )]; // actions // actions_may_quoted - char dummy7[sizeof (std::unique_ptr > > )]; + char dummy7[sizeof(std::unique_ptr > > )]; }; /// Symbol semantic values. - typedef variant semantic_type; + typedef variant semantic_type; #else typedef YYSTYPE semantic_type; #endif @@ -1322,79 +1134,80 @@ namespace yy { TOK_CONFIG_SEC_CONN_R_STATE_LIMIT = 519, TOK_CONFIG_SEC_CONN_W_STATE_LIMIT = 520, TOK_CONFIG_SEC_SENSOR_ID = 521, - TOK_CONFIG_DIR_REQ_BODY = 522, - TOK_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT = 523, - TOK_CONFIG_DIR_REQ_BODY_LIMIT = 524, - TOK_CONFIG_DIR_REQ_BODY_LIMIT_ACTION = 525, - TOK_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT = 526, - TOK_CONFIG_DIR_RES_BODY = 527, - TOK_CONFIG_DIR_RES_BODY_LIMIT = 528, - TOK_CONFIG_DIR_RES_BODY_LIMIT_ACTION = 529, - TOK_CONFIG_SEC_RULE_INHERITANCE = 530, - TOK_CONFIG_SEC_RULE_PERF_TIME = 531, - TOK_CONFIG_DIR_RULE_ENG = 532, - TOK_CONFIG_DIR_SEC_ACTION = 533, - TOK_CONFIG_DIR_SEC_DEFAULT_ACTION = 534, - TOK_CONFIG_DIR_SEC_MARKER = 535, - TOK_CONFIG_DIR_UNICODE_MAP_FILE = 536, - TOK_CONFIG_DIR_UNICODE_CODE_PAGE = 537, - TOK_CONFIG_SEC_COLLECTION_TIMEOUT = 538, - TOK_CONFIG_SEC_HTTP_BLKEY = 539, - TOK_CONFIG_SEC_INTERCEPT_ON_ERROR = 540, - TOK_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION = 541, - TOK_CONFIG_SEC_RULE_REMOVE_BY_ID = 542, - TOK_CONFIG_SEC_RULE_REMOVE_BY_MSG = 543, - TOK_CONFIG_SEC_RULE_REMOVE_BY_TAG = 544, - TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG = 545, - TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG = 546, - TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID = 547, - TOK_CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID = 548, - TOK_CONFIG_UPDLOAD_KEEP_FILES = 549, - TOK_CONFIG_UPDLOAD_SAVE_TMP_FILES = 550, - TOK_CONFIG_UPLOAD_DIR = 551, - TOK_CONFIG_UPLOAD_FILE_LIMIT = 552, - TOK_CONFIG_UPLOAD_FILE_MODE = 553, - TOK_CONFIG_VALUE_ABORT = 554, - TOK_CONFIG_VALUE_DETC = 555, - TOK_CONFIG_VALUE_HTTPS = 556, - TOK_CONFIG_VALUE_OFF = 557, - TOK_CONFIG_VALUE_ON = 558, - TOK_CONFIG_VALUE_PARALLEL = 559, - TOK_CONFIG_VALUE_PROCESS_PARTIAL = 560, - TOK_CONFIG_VALUE_REJECT = 561, - TOK_CONFIG_VALUE_RELEVANT_ONLY = 562, - TOK_CONFIG_VALUE_SERIAL = 563, - TOK_CONFIG_VALUE_WARN = 564, - TOK_CONFIG_XML_EXTERNAL_ENTITY = 565, - TOK_CONGIG_DIR_RESPONSE_BODY_MP = 566, - TOK_CONGIG_DIR_SEC_ARG_SEP = 567, - TOK_CONGIG_DIR_SEC_COOKIE_FORMAT = 568, - TOK_CONFIG_SEC_COOKIEV0_SEPARATOR = 569, - TOK_CONGIG_DIR_SEC_DATA_DIR = 570, - TOK_CONGIG_DIR_SEC_STATUS_ENGINE = 571, - TOK_CONFIG_SEC_STREAM_IN_BODY_INSPECTION = 572, - TOK_CONFIG_SEC_STREAM_OUT_BODY_INSPECTION = 573, - TOK_CONGIG_DIR_SEC_TMP_DIR = 574, - TOK_DIRECTIVE = 575, - TOK_DIRECTIVE_SECRULESCRIPT = 576, - TOK_FREE_TEXT_QUOTE_MACRO_EXPANSION = 577, - TOK_QUOTATION_MARK = 578, - TOK_RUN_TIME_VAR_BLD = 579, - TOK_RUN_TIME_VAR_DUR = 580, - TOK_RUN_TIME_VAR_HSV = 581, - TOK_RUN_TIME_VAR_REMOTE_USER = 582, - TOK_RUN_TIME_VAR_TIME = 583, - TOK_RUN_TIME_VAR_TIME_DAY = 584, - TOK_RUN_TIME_VAR_TIME_EPOCH = 585, - TOK_RUN_TIME_VAR_TIME_HOUR = 586, - TOK_RUN_TIME_VAR_TIME_MIN = 587, - TOK_RUN_TIME_VAR_TIME_MON = 588, - TOK_RUN_TIME_VAR_TIME_SEC = 589, - TOK_RUN_TIME_VAR_TIME_WDAY = 590, - TOK_RUN_TIME_VAR_TIME_YEAR = 591, - TOK_VARIABLE = 592, - TOK_DICT_ELEMENT = 593, - TOK_DICT_ELEMENT_REGEXP = 594 + TOK_CONFIG_DIR_ARGS_LIMIT = 522, + TOK_CONFIG_DIR_REQ_BODY = 523, + TOK_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT = 524, + TOK_CONFIG_DIR_REQ_BODY_LIMIT = 525, + TOK_CONFIG_DIR_REQ_BODY_LIMIT_ACTION = 526, + TOK_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT = 527, + TOK_CONFIG_DIR_RES_BODY = 528, + TOK_CONFIG_DIR_RES_BODY_LIMIT = 529, + TOK_CONFIG_DIR_RES_BODY_LIMIT_ACTION = 530, + TOK_CONFIG_SEC_RULE_INHERITANCE = 531, + TOK_CONFIG_SEC_RULE_PERF_TIME = 532, + TOK_CONFIG_DIR_RULE_ENG = 533, + TOK_CONFIG_DIR_SEC_ACTION = 534, + TOK_CONFIG_DIR_SEC_DEFAULT_ACTION = 535, + TOK_CONFIG_DIR_SEC_MARKER = 536, + TOK_CONFIG_DIR_UNICODE_MAP_FILE = 537, + TOK_CONFIG_DIR_UNICODE_CODE_PAGE = 538, + TOK_CONFIG_SEC_COLLECTION_TIMEOUT = 539, + TOK_CONFIG_SEC_HTTP_BLKEY = 540, + TOK_CONFIG_SEC_INTERCEPT_ON_ERROR = 541, + TOK_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION = 542, + TOK_CONFIG_SEC_RULE_REMOVE_BY_ID = 543, + TOK_CONFIG_SEC_RULE_REMOVE_BY_MSG = 544, + TOK_CONFIG_SEC_RULE_REMOVE_BY_TAG = 545, + TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG = 546, + TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG = 547, + TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID = 548, + TOK_CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID = 549, + TOK_CONFIG_UPDLOAD_KEEP_FILES = 550, + TOK_CONFIG_UPDLOAD_SAVE_TMP_FILES = 551, + TOK_CONFIG_UPLOAD_DIR = 552, + TOK_CONFIG_UPLOAD_FILE_LIMIT = 553, + TOK_CONFIG_UPLOAD_FILE_MODE = 554, + TOK_CONFIG_VALUE_ABORT = 555, + TOK_CONFIG_VALUE_DETC = 556, + TOK_CONFIG_VALUE_HTTPS = 557, + TOK_CONFIG_VALUE_OFF = 558, + TOK_CONFIG_VALUE_ON = 559, + TOK_CONFIG_VALUE_PARALLEL = 560, + TOK_CONFIG_VALUE_PROCESS_PARTIAL = 561, + TOK_CONFIG_VALUE_REJECT = 562, + TOK_CONFIG_VALUE_RELEVANT_ONLY = 563, + TOK_CONFIG_VALUE_SERIAL = 564, + TOK_CONFIG_VALUE_WARN = 565, + TOK_CONFIG_XML_EXTERNAL_ENTITY = 566, + TOK_CONGIG_DIR_RESPONSE_BODY_MP = 567, + TOK_CONGIG_DIR_SEC_ARG_SEP = 568, + TOK_CONGIG_DIR_SEC_COOKIE_FORMAT = 569, + TOK_CONFIG_SEC_COOKIEV0_SEPARATOR = 570, + TOK_CONGIG_DIR_SEC_DATA_DIR = 571, + TOK_CONGIG_DIR_SEC_STATUS_ENGINE = 572, + TOK_CONFIG_SEC_STREAM_IN_BODY_INSPECTION = 573, + TOK_CONFIG_SEC_STREAM_OUT_BODY_INSPECTION = 574, + TOK_CONGIG_DIR_SEC_TMP_DIR = 575, + TOK_DIRECTIVE = 576, + TOK_DIRECTIVE_SECRULESCRIPT = 577, + TOK_FREE_TEXT_QUOTE_MACRO_EXPANSION = 578, + TOK_QUOTATION_MARK = 579, + TOK_RUN_TIME_VAR_BLD = 580, + TOK_RUN_TIME_VAR_DUR = 581, + TOK_RUN_TIME_VAR_HSV = 582, + TOK_RUN_TIME_VAR_REMOTE_USER = 583, + TOK_RUN_TIME_VAR_TIME = 584, + TOK_RUN_TIME_VAR_TIME_DAY = 585, + TOK_RUN_TIME_VAR_TIME_EPOCH = 586, + TOK_RUN_TIME_VAR_TIME_HOUR = 587, + TOK_RUN_TIME_VAR_TIME_MIN = 588, + TOK_RUN_TIME_VAR_TIME_MON = 589, + TOK_RUN_TIME_VAR_TIME_SEC = 590, + TOK_RUN_TIME_VAR_TIME_WDAY = 591, + TOK_RUN_TIME_VAR_TIME_YEAR = 592, + TOK_VARIABLE = 593, + TOK_DICT_ELEMENT = 594, + TOK_DICT_ELEMENT_REGEXP = 595 }; }; @@ -1408,12 +1221,12 @@ namespace yy { enum { empty_symbol = -2 }; /// Internal symbol number for tokens (subsumed by symbol_number_type). - typedef unsigned short token_number_type; + typedef unsigned short int token_number_type; /// A complete symbol. /// /// Expects its Base type to provide access to the symbol type - /// via type_get (). + /// via type_get(). /// /// Provide access to semantic value and location. template @@ -1425,20 +1238,32 @@ namespace yy { /// Default constructor. basic_symbol (); - /// Move or copy constructor. - basic_symbol (YY_RVREF (basic_symbol) other); - + /// Copy constructor. + basic_symbol (const basic_symbol& other); /// Constructor for valueless symbols, and symbols from each type. - basic_symbol (typename Base::kind_type t, YY_RVREF (location_type) l); - basic_symbol (typename Base::kind_type t, YY_RVREF (std::string) v, YY_RVREF (location_type) l); - basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr) v, YY_RVREF (location_type) l); - basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr) v, YY_RVREF (location_type) l); - basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr) v, YY_RVREF (location_type) l); - basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr) v, YY_RVREF (location_type) l); - basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr > > ) v, YY_RVREF (location_type) l); - basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr > > ) v, YY_RVREF (location_type) l); + basic_symbol (typename Base::kind_type t, const location_type& l); + + basic_symbol (typename Base::kind_type t, const std::string v, const location_type& l); + + basic_symbol (typename Base::kind_type t, const std::unique_ptr v, const location_type& l); + + basic_symbol (typename Base::kind_type t, const std::unique_ptr v, const location_type& l); + + basic_symbol (typename Base::kind_type t, const std::unique_ptr v, const location_type& l); + + basic_symbol (typename Base::kind_type t, const std::unique_ptr v, const location_type& l); + + basic_symbol (typename Base::kind_type t, const std::unique_ptr > > v, const location_type& l); + + basic_symbol (typename Base::kind_type t, const std::unique_ptr > > v, const location_type& l); + + + /// Constructor for symbols with semantic value. + basic_symbol (typename Base::kind_type t, + const semantic_type& v, + const location_type& l); /// Destroy the symbol. ~basic_symbol (); @@ -1459,10 +1284,8 @@ namespace yy { location_type location; private: -#if defined __cplusplus && __cplusplus < 201103L /// Assignment operator. basic_symbol& operator= (const basic_symbol& other); -#endif }; /// Type access provider for token (enum) based symbols. @@ -1502,1394 +1325,1393 @@ namespace yy { /// "External" symbols: returned by the scanner. typedef basic_symbol symbol_type; - /// Build a parser object. - seclang_parser (modsecurity::Parser::Driver& driver_yyarg); - virtual ~seclang_parser (); + // Symbol constructors declarations. + static inline + symbol_type + make_END (const location_type& l); - /// Parse. An alias for parse (). - /// \returns 0 iff parsing succeeded. - int operator() (); + static inline + symbol_type + make_COMMA (const location_type& l); - /// Parse. - /// \returns 0 iff parsing succeeded. - virtual int parse (); + static inline + symbol_type + make_CONFIG_CONTENT_INJECTION (const location_type& l); -#if YYDEBUG - /// The current debugging stream. - std::ostream& debug_stream () const YY_ATTRIBUTE_PURE; - /// Set the current debugging stream. - void set_debug_stream (std::ostream &); + static inline + symbol_type + make_CONGIG_DIR_RESPONSE_BODY_MP_CLEAR (const location_type& l); - /// Type for debugging levels. - typedef int debug_level_type; - /// The current debugging level. - debug_level_type debug_level () const YY_ATTRIBUTE_PURE; - /// Set the current debugging level. - void set_debug_level (debug_level_type l); -#endif + static inline + symbol_type + make_PIPE (const location_type& l); - /// Report a syntax error. - /// \param loc where the syntax error is found. - /// \param msg a description of the syntax error. - virtual void error (const location_type& loc, const std::string& msg); + static inline + symbol_type + make_NEW_LINE (const location_type& l); - /// Report a syntax error. - void error (const syntax_error& err); + static inline + symbol_type + make_VAR_COUNT (const location_type& l); - // Symbol constructors declarations. - static + static inline symbol_type - make_END (YY_COPY (location_type) l); + make_VAR_EXCLUSION (const location_type& l); - static + static inline symbol_type - make_COMMA (YY_COPY (location_type) l); + make_VARIABLE_ARGS (const location_type& l); - static + static inline symbol_type - make_CONFIG_CONTENT_INJECTION (YY_COPY (location_type) l); + make_VARIABLE_ARGS_POST (const location_type& l); - static + static inline symbol_type - make_CONGIG_DIR_RESPONSE_BODY_MP_CLEAR (YY_COPY (location_type) l); + make_VARIABLE_ARGS_GET (const location_type& l); - static + static inline symbol_type - make_PIPE (YY_COPY (location_type) l); + make_VARIABLE_FILES_SIZES (const location_type& l); - static + static inline symbol_type - make_NEW_LINE (YY_COPY (location_type) l); + make_VARIABLE_FILES_NAMES (const location_type& l); - static + static inline symbol_type - make_VAR_COUNT (YY_COPY (location_type) l); + make_VARIABLE_FILES_TMP_CONTENT (const location_type& l); - static + static inline symbol_type - make_VAR_EXCLUSION (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_FILENAME (const location_type& l); - static + static inline symbol_type - make_VARIABLE_ARGS (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_NAME (const location_type& l); - static + static inline symbol_type - make_VARIABLE_ARGS_POST (YY_COPY (location_type) l); + make_VARIABLE_MATCHED_VARS_NAMES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_ARGS_GET (YY_COPY (location_type) l); + make_VARIABLE_MATCHED_VARS (const location_type& l); - static + static inline symbol_type - make_VARIABLE_FILES_SIZES (YY_COPY (location_type) l); + make_VARIABLE_FILES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_FILES_NAMES (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_COOKIES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_FILES_TMP_CONTENT (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_HEADERS (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_FILENAME (YY_COPY (location_type) l); + make_VARIABLE_RESPONSE_HEADERS (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_NAME (YY_COPY (location_type) l); + make_VARIABLE_GEO (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MATCHED_VARS_NAMES (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_COOKIES_NAMES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MATCHED_VARS (YY_COPY (location_type) l); + make_VARIABLE_ARGS_COMBINED_SIZE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_FILES (YY_COPY (location_type) l); + make_VARIABLE_ARGS_GET_NAMES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_COOKIES (YY_COPY (location_type) l); + make_VARIABLE_RULE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_HEADERS (YY_COPY (location_type) l); + make_VARIABLE_ARGS_NAMES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_RESPONSE_HEADERS (YY_COPY (location_type) l); + make_VARIABLE_ARGS_POST_NAMES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_GEO (YY_COPY (location_type) l); + make_VARIABLE_AUTH_TYPE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_COOKIES_NAMES (YY_COPY (location_type) l); + make_VARIABLE_FILES_COMBINED_SIZE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_ARGS_COMBINED_SIZE (YY_COPY (location_type) l); + make_VARIABLE_FILES_TMP_NAMES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_ARGS_GET_NAMES (YY_COPY (location_type) l); + make_VARIABLE_FULL_REQUEST (const location_type& l); - static + static inline symbol_type - make_VARIABLE_RULE (YY_COPY (location_type) l); + make_VARIABLE_FULL_REQUEST_LENGTH (const location_type& l); - static + static inline symbol_type - make_VARIABLE_ARGS_NAMES (YY_COPY (location_type) l); + make_VARIABLE_INBOUND_DATA_ERROR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_ARGS_POST_NAMES (YY_COPY (location_type) l); + make_VARIABLE_MATCHED_VAR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_AUTH_TYPE (YY_COPY (location_type) l); + make_VARIABLE_MATCHED_VAR_NAME (const location_type& l); - static + static inline symbol_type - make_VARIABLE_FILES_COMBINED_SIZE (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_BOUNDARY_QUOTED (const location_type& l); - static + static inline symbol_type - make_VARIABLE_FILES_TMP_NAMES (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_BOUNDARY_WHITESPACE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_FULL_REQUEST (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_CRLF_LF_LINES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_FULL_REQUEST_LENGTH (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_DATA_AFTER (const location_type& l); - static + static inline symbol_type - make_VARIABLE_INBOUND_DATA_ERROR (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_DATA_BEFORE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MATCHED_VAR (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_FILE_LIMIT_EXCEEDED (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MATCHED_VAR_NAME (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_HEADER_FOLDING (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_BOUNDARY_QUOTED (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_INVALID_HEADER_FOLDING (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_BOUNDARY_WHITESPACE (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_INVALID_PART (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_CRLF_LF_LINES (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_INVALID_QUOTING (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_DATA_AFTER (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_LF_LINE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_DATA_BEFORE (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_MISSING_SEMICOLON (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_FILE_LIMIT_EXCEEDED (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_SEMICOLON_MISSING (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_HEADER_FOLDING (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_STRICT_ERROR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_INVALID_HEADER_FOLDING (YY_COPY (location_type) l); + make_VARIABLE_MULTIPART_UNMATCHED_BOUNDARY (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_INVALID_PART (YY_COPY (location_type) l); + make_VARIABLE_OUTBOUND_DATA_ERROR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_INVALID_QUOTING (YY_COPY (location_type) l); + make_VARIABLE_PATH_INFO (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_LF_LINE (YY_COPY (location_type) l); + make_VARIABLE_QUERY_STRING (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_MISSING_SEMICOLON (YY_COPY (location_type) l); + make_VARIABLE_REMOTE_ADDR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_SEMICOLON_MISSING (YY_COPY (location_type) l); + make_VARIABLE_REMOTE_HOST (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_STRICT_ERROR (YY_COPY (location_type) l); + make_VARIABLE_REMOTE_PORT (const location_type& l); - static + static inline symbol_type - make_VARIABLE_MULTIPART_UNMATCHED_BOUNDARY (YY_COPY (location_type) l); + make_VARIABLE_REQBODY_ERROR_MSG (const location_type& l); - static + static inline symbol_type - make_VARIABLE_OUTBOUND_DATA_ERROR (YY_COPY (location_type) l); + make_VARIABLE_REQBODY_ERROR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_PATH_INFO (YY_COPY (location_type) l); + make_VARIABLE_REQBODY_PROCESSOR_ERROR_MSG (const location_type& l); - static + static inline symbol_type - make_VARIABLE_QUERY_STRING (YY_COPY (location_type) l); + make_VARIABLE_REQBODY_PROCESSOR_ERROR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REMOTE_ADDR (YY_COPY (location_type) l); + make_VARIABLE_REQBODY_PROCESSOR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REMOTE_HOST (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_BASENAME (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REMOTE_PORT (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_BODY_LENGTH (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQBODY_ERROR_MSG (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_BODY (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQBODY_ERROR (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_FILE_NAME (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQBODY_PROCESSOR_ERROR_MSG (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_HEADERS_NAMES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQBODY_PROCESSOR_ERROR (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_LINE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQBODY_PROCESSOR (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_METHOD (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_BASENAME (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_PROTOCOL (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_BODY_LENGTH (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_URI_RAW (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_BODY (YY_COPY (location_type) l); + make_VARIABLE_REQUEST_URI (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_FILE_NAME (YY_COPY (location_type) l); + make_VARIABLE_RESOURCE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_HEADERS_NAMES (YY_COPY (location_type) l); + make_VARIABLE_RESPONSE_BODY (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_LINE (YY_COPY (location_type) l); + make_VARIABLE_RESPONSE_CONTENT_LENGTH (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_METHOD (YY_COPY (location_type) l); + make_VARIABLE_RESPONSE_CONTENT_TYPE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_PROTOCOL (YY_COPY (location_type) l); + make_VARIABLE_RESPONSE_HEADERS_NAMES (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_URI_RAW (YY_COPY (location_type) l); + make_VARIABLE_RESPONSE_PROTOCOL (const location_type& l); - static + static inline symbol_type - make_VARIABLE_REQUEST_URI (YY_COPY (location_type) l); + make_VARIABLE_RESPONSE_STATUS (const location_type& l); - static + static inline symbol_type - make_VARIABLE_RESOURCE (YY_COPY (location_type) l); + make_VARIABLE_SERVER_ADDR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_RESPONSE_BODY (YY_COPY (location_type) l); + make_VARIABLE_SERVER_NAME (const location_type& l); - static + static inline symbol_type - make_VARIABLE_RESPONSE_CONTENT_LENGTH (YY_COPY (location_type) l); + make_VARIABLE_SERVER_PORT (const location_type& l); - static + static inline symbol_type - make_VARIABLE_RESPONSE_CONTENT_TYPE (YY_COPY (location_type) l); + make_VARIABLE_SESSION_ID (const location_type& l); - static + static inline symbol_type - make_VARIABLE_RESPONSE_HEADERS_NAMES (YY_COPY (location_type) l); + make_VARIABLE_UNIQUE_ID (const location_type& l); - static + static inline symbol_type - make_VARIABLE_RESPONSE_PROTOCOL (YY_COPY (location_type) l); + make_VARIABLE_URL_ENCODED_ERROR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_RESPONSE_STATUS (YY_COPY (location_type) l); + make_VARIABLE_USER_ID (const location_type& l); - static + static inline symbol_type - make_VARIABLE_SERVER_ADDR (YY_COPY (location_type) l); + make_VARIABLE_WEB_APP_ID (const location_type& l); - static + static inline symbol_type - make_VARIABLE_SERVER_NAME (YY_COPY (location_type) l); + make_VARIABLE_STATUS (const location_type& l); - static + static inline symbol_type - make_VARIABLE_SERVER_PORT (YY_COPY (location_type) l); + make_VARIABLE_STATUS_LINE (const location_type& l); - static + static inline symbol_type - make_VARIABLE_SESSION_ID (YY_COPY (location_type) l); + make_VARIABLE_IP (const location_type& l); - static + static inline symbol_type - make_VARIABLE_UNIQUE_ID (YY_COPY (location_type) l); + make_VARIABLE_GLOBAL (const location_type& l); - static + static inline symbol_type - make_VARIABLE_URL_ENCODED_ERROR (YY_COPY (location_type) l); + make_VARIABLE_TX (const location_type& l); - static + static inline symbol_type - make_VARIABLE_USER_ID (YY_COPY (location_type) l); + make_VARIABLE_SESSION (const location_type& l); - static + static inline symbol_type - make_VARIABLE_WEB_APP_ID (YY_COPY (location_type) l); + make_VARIABLE_USER (const location_type& l); - static + static inline symbol_type - make_VARIABLE_STATUS (YY_COPY (location_type) l); + make_RUN_TIME_VAR_ENV (const location_type& l); - static + static inline symbol_type - make_VARIABLE_STATUS_LINE (YY_COPY (location_type) l); + make_RUN_TIME_VAR_XML (const location_type& l); - static + static inline symbol_type - make_VARIABLE_IP (YY_COPY (location_type) l); + make_ACTION_SETVAR (const location_type& l); - static + static inline symbol_type - make_VARIABLE_GLOBAL (YY_COPY (location_type) l); + make_SETVAR_OPERATION_EQUALS (const location_type& l); - static + static inline symbol_type - make_VARIABLE_TX (YY_COPY (location_type) l); + make_SETVAR_OPERATION_EQUALS_PLUS (const location_type& l); - static + static inline symbol_type - make_VARIABLE_SESSION (YY_COPY (location_type) l); + make_SETVAR_OPERATION_EQUALS_MINUS (const location_type& l); - static + static inline symbol_type - make_VARIABLE_USER (YY_COPY (location_type) l); + make_NOT (const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_ENV (YY_COPY (location_type) l); + make_OPERATOR_BEGINS_WITH (const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_XML (YY_COPY (location_type) l); + make_OPERATOR_CONTAINS (const location_type& l); - static + static inline symbol_type - make_ACTION_SETVAR (YY_COPY (location_type) l); + make_OPERATOR_CONTAINS_WORD (const location_type& l); - static + static inline symbol_type - make_SETVAR_OPERATION_EQUALS (YY_COPY (location_type) l); + make_OPERATOR_DETECT_SQLI (const location_type& l); - static + static inline symbol_type - make_SETVAR_OPERATION_EQUALS_PLUS (YY_COPY (location_type) l); + make_OPERATOR_DETECT_XSS (const location_type& l); - static + static inline symbol_type - make_SETVAR_OPERATION_EQUALS_MINUS (YY_COPY (location_type) l); + make_OPERATOR_ENDS_WITH (const location_type& l); - static + static inline symbol_type - make_NOT (YY_COPY (location_type) l); + make_OPERATOR_EQ (const location_type& l); - static + static inline symbol_type - make_OPERATOR_BEGINS_WITH (YY_COPY (location_type) l); + make_OPERATOR_FUZZY_HASH (const location_type& l); - static + static inline symbol_type - make_OPERATOR_CONTAINS (YY_COPY (location_type) l); + make_OPERATOR_GEOLOOKUP (const location_type& l); - static + static inline symbol_type - make_OPERATOR_CONTAINS_WORD (YY_COPY (location_type) l); + make_OPERATOR_GE (const location_type& l); - static + static inline symbol_type - make_OPERATOR_DETECT_SQLI (YY_COPY (location_type) l); + make_OPERATOR_GSB_LOOKUP (const location_type& l); - static + static inline symbol_type - make_OPERATOR_DETECT_XSS (YY_COPY (location_type) l); + make_OPERATOR_GT (const location_type& l); - static + static inline symbol_type - make_OPERATOR_ENDS_WITH (YY_COPY (location_type) l); + make_OPERATOR_INSPECT_FILE (const location_type& l); - static + static inline symbol_type - make_OPERATOR_EQ (YY_COPY (location_type) l); + make_OPERATOR_IP_MATCH_FROM_FILE (const location_type& l); - static + static inline symbol_type - make_OPERATOR_FUZZY_HASH (YY_COPY (location_type) l); + make_OPERATOR_IP_MATCH (const location_type& l); - static + static inline symbol_type - make_OPERATOR_GEOLOOKUP (YY_COPY (location_type) l); + make_OPERATOR_LE (const location_type& l); - static + static inline symbol_type - make_OPERATOR_GE (YY_COPY (location_type) l); + make_OPERATOR_LT (const location_type& l); - static + static inline symbol_type - make_OPERATOR_GSB_LOOKUP (YY_COPY (location_type) l); + make_OPERATOR_PM_FROM_FILE (const location_type& l); - static + static inline symbol_type - make_OPERATOR_GT (YY_COPY (location_type) l); + make_OPERATOR_PM (const location_type& l); - static + static inline symbol_type - make_OPERATOR_INSPECT_FILE (YY_COPY (location_type) l); + make_OPERATOR_RBL (const location_type& l); - static + static inline symbol_type - make_OPERATOR_IP_MATCH_FROM_FILE (YY_COPY (location_type) l); + make_OPERATOR_RSUB (const location_type& l); - static + static inline symbol_type - make_OPERATOR_IP_MATCH (YY_COPY (location_type) l); + make_OPERATOR_RX_CONTENT_ONLY (const location_type& l); - static + static inline symbol_type - make_OPERATOR_LE (YY_COPY (location_type) l); + make_OPERATOR_RX (const location_type& l); - static + static inline symbol_type - make_OPERATOR_LT (YY_COPY (location_type) l); + make_OPERATOR_STR_EQ (const location_type& l); - static + static inline symbol_type - make_OPERATOR_PM_FROM_FILE (YY_COPY (location_type) l); + make_OPERATOR_STR_MATCH (const location_type& l); - static + static inline symbol_type - make_OPERATOR_PM (YY_COPY (location_type) l); + make_OPERATOR_UNCONDITIONAL_MATCH (const location_type& l); - static + static inline symbol_type - make_OPERATOR_RBL (YY_COPY (location_type) l); + make_OPERATOR_VALIDATE_BYTE_RANGE (const location_type& l); - static + static inline symbol_type - make_OPERATOR_RSUB (YY_COPY (location_type) l); + make_OPERATOR_VALIDATE_DTD (const location_type& l); - static + static inline symbol_type - make_OPERATOR_RX_CONTENT_ONLY (YY_COPY (location_type) l); + make_OPERATOR_VALIDATE_HASH (const location_type& l); - static + static inline symbol_type - make_OPERATOR_RX (YY_COPY (location_type) l); + make_OPERATOR_VALIDATE_SCHEMA (const location_type& l); - static + static inline symbol_type - make_OPERATOR_STR_EQ (YY_COPY (location_type) l); + make_OPERATOR_VALIDATE_URL_ENCODING (const location_type& l); - static + static inline symbol_type - make_OPERATOR_STR_MATCH (YY_COPY (location_type) l); + make_OPERATOR_VALIDATE_UTF8_ENCODING (const location_type& l); - static + static inline symbol_type - make_OPERATOR_UNCONDITIONAL_MATCH (YY_COPY (location_type) l); + make_OPERATOR_VERIFY_CC (const location_type& l); - static + static inline symbol_type - make_OPERATOR_VALIDATE_BYTE_RANGE (YY_COPY (location_type) l); + make_OPERATOR_VERIFY_CPF (const location_type& l); - static + static inline symbol_type - make_OPERATOR_VALIDATE_DTD (YY_COPY (location_type) l); + make_OPERATOR_VERIFY_SSN (const location_type& l); - static + static inline symbol_type - make_OPERATOR_VALIDATE_HASH (YY_COPY (location_type) l); + make_OPERATOR_WITHIN (const location_type& l); - static + static inline symbol_type - make_OPERATOR_VALIDATE_SCHEMA (YY_COPY (location_type) l); + make_CONFIG_DIR_AUDIT_LOG_FMT (const location_type& l); - static + static inline symbol_type - make_OPERATOR_VALIDATE_URL_ENCODING (YY_COPY (location_type) l); + make_JSON (const location_type& l); - static + static inline symbol_type - make_OPERATOR_VALIDATE_UTF8_ENCODING (YY_COPY (location_type) l); + make_NATIVE (const location_type& l); - static + static inline symbol_type - make_OPERATOR_VERIFY_CC (YY_COPY (location_type) l); + make_ACTION_CTL_RULE_ENGINE (const location_type& l); - static + static inline symbol_type - make_OPERATOR_VERIFY_CPF (YY_COPY (location_type) l); + make_ACTION_ACCURACY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_OPERATOR_VERIFY_SSN (YY_COPY (location_type) l); + make_ACTION_ALLOW (const std::string& v, const location_type& l); - static + static inline symbol_type - make_OPERATOR_WITHIN (YY_COPY (location_type) l); + make_ACTION_APPEND (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_AUDIT_LOG_FMT (YY_COPY (location_type) l); + make_ACTION_AUDIT_LOG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_JSON (YY_COPY (location_type) l); + make_ACTION_BLOCK (const std::string& v, const location_type& l); - static + static inline symbol_type - make_NATIVE (YY_COPY (location_type) l); + make_ACTION_CAPTURE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_RULE_ENGINE (YY_COPY (location_type) l); + make_ACTION_CHAIN (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_ACCURACY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_AUDIT_ENGINE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_ALLOW (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_AUDIT_LOG_PARTS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_APPEND (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_BDY_JSON (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_AUDIT_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_BDY_XML (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_BLOCK (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_BDY_URLENCODED (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CAPTURE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_FORCE_REQ_BODY_VAR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CHAIN (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_REQUEST_BODY_ACCESS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_AUDIT_ENGINE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_RULE_REMOVE_BY_ID (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_AUDIT_LOG_PARTS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_RULE_REMOVE_BY_TAG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_BDY_JSON (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_RULE_REMOVE_TARGET_BY_ID (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_BDY_XML (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_CTL_RULE_REMOVE_TARGET_BY_TAG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_BDY_URLENCODED (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_DENY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_FORCE_REQ_BODY_VAR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_DEPRECATE_VAR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_REQUEST_BODY_ACCESS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_DROP (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_RULE_REMOVE_BY_ID (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_EXEC (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_RULE_REMOVE_BY_TAG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_EXPIRE_VAR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_RULE_REMOVE_TARGET_BY_ID (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_ID (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_CTL_RULE_REMOVE_TARGET_BY_TAG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_INITCOL (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_DENY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_LOG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_DEPRECATE_VAR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_LOG_DATA (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_DROP (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_MATURITY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_EXEC (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_MSG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_EXPIRE_VAR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_MULTI_MATCH (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_ID (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_NO_AUDIT_LOG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_INITCOL (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_NO_LOG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_PASS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_LOG_DATA (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_PAUSE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_MATURITY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_PHASE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_MSG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_PREPEND (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_MULTI_MATCH (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_PROXY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_NO_AUDIT_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_REDIRECT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_NO_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_REV (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_PASS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SANITISE_ARG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_PAUSE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SANITISE_MATCHED (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_PHASE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SANITISE_MATCHED_BYTES (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_PREPEND (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SANITISE_REQUEST_HEADER (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_PROXY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SANITISE_RESPONSE_HEADER (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_REDIRECT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SETENV (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_REV (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SETRSC (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SANITISE_ARG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SETSID (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SANITISE_MATCHED (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SETUID (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SANITISE_MATCHED_BYTES (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SEVERITY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SANITISE_REQUEST_HEADER (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SKIP (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SANITISE_RESPONSE_HEADER (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_SKIP_AFTER (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SETENV (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_STATUS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SETRSC (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TAG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SETSID (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_BASE_64_ENCODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SETUID (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_BASE_64_DECODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SEVERITY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_BASE_64_DECODE_EXT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SKIP (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_CMD_LINE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_SKIP_AFTER (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_COMPRESS_WHITESPACE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_STATUS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_CSS_DECODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TAG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_ESCAPE_SEQ_DECODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_BASE_64_ENCODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_HEX_ENCODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_BASE_64_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_HEX_DECODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_BASE_64_DECODE_EXT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_HTML_ENTITY_DECODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_CMD_LINE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_JS_DECODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_COMPRESS_WHITESPACE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_LENGTH (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_CSS_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_LOWERCASE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_ESCAPE_SEQ_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_MD5 (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_HEX_ENCODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_NONE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_HEX_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_NORMALISE_PATH (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_HTML_ENTITY_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_NORMALISE_PATH_WIN (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_JS_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_PARITY_EVEN_7_BIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_LENGTH (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_PARITY_ODD_7_BIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_LOWERCASE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_PARITY_ZERO_7_BIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_MD5 (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_REMOVE_COMMENTS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_NONE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_REMOVE_COMMENTS_CHAR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_NORMALISE_PATH (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_REMOVE_NULLS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_NORMALISE_PATH_WIN (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_REMOVE_WHITESPACE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_PARITY_EVEN_7_BIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_REPLACE_COMMENTS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_PARITY_ODD_7_BIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_REPLACE_NULLS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_PARITY_ZERO_7_BIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_SHA1 (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_REMOVE_COMMENTS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_SQL_HEX_DECODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_REMOVE_COMMENTS_CHAR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_TRIM (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_REMOVE_NULLS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_TRIM_LEFT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_REMOVE_WHITESPACE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_TRIM_RIGHT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_REPLACE_COMMENTS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_UPPERCASE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_REPLACE_NULLS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_URL_ENCODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_SHA1 (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_URL_DECODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_SQL_HEX_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_URL_DECODE_UNI (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_TRIM (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_TRANSFORMATION_UTF8_TO_UNICODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_TRIM_LEFT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_VER (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_TRIM_RIGHT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_ACTION_XMLNS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_UPPERCASE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_COMPONENT_SIG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_URL_ENCODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_CONN_ENGINE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_URL_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_ARGUMENT_SEPARATOR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_URL_DECODE_UNI (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_WEB_APP_ID (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_TRANSFORMATION_UTF8_TO_UNICODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_SERVER_SIG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_VER (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_AUDIT_DIR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_ACTION_XMLNS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_AUDIT_DIR_MOD (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_COMPONENT_SIG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_AUDIT_ENG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_CONN_ENGINE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_AUDIT_FLE_MOD (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_ARGUMENT_SEPARATOR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_AUDIT_LOG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_WEB_APP_ID (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_AUDIT_LOG2 (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_SERVER_SIG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_AUDIT_LOG_P (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_AUDIT_DIR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_AUDIT_STS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_AUDIT_DIR_MOD (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_AUDIT_TPE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_AUDIT_ENG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_DEBUG_LOG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_AUDIT_FLE_MOD (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_DEBUG_LVL (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_AUDIT_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_CACHE_TRANSFORMATIONS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_AUDIT_LOG2 (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_DISABLE_BACKEND_COMPRESS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_AUDIT_LOG_P (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_HASH_ENGINE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_AUDIT_STS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_HASH_KEY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_AUDIT_TPE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_HASH_PARAM (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_DEBUG_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_HASH_METHOD_RX (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_DEBUG_LVL (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_HASH_METHOD_PM (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_CACHE_TRANSFORMATIONS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_CHROOT_DIR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_DISABLE_BACKEND_COMPRESS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_GEO_DB (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_HASH_ENGINE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_GSB_DB (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_HASH_KEY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_GUARDIAN_LOG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_HASH_PARAM (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_PCRE_MATCH_LIMIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_HASH_METHOD_RX (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_HASH_METHOD_PM (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_CONN_R_STATE_LIMIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_CHROOT_DIR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_CONN_W_STATE_LIMIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_GEO_DB (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_SENSOR_ID (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_GSB_DB (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_ARGS_LIMIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_GUARDIAN_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_REQ_BODY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_PCRE_MATCH_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_REQ_BODY_LIMIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_CONN_R_STATE_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_REQ_BODY_LIMIT_ACTION (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_CONN_W_STATE_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_SENSOR_ID (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_RES_BODY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_REQ_BODY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_RES_BODY_LIMIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_RES_BODY_LIMIT_ACTION (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_REQ_BODY_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_RULE_INHERITANCE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_REQ_BODY_LIMIT_ACTION (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_RULE_PERF_TIME (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_RULE_ENG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_RES_BODY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_SEC_ACTION (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_RES_BODY_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_SEC_DEFAULT_ACTION (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_RES_BODY_LIMIT_ACTION (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_SEC_MARKER (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_RULE_INHERITANCE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_UNICODE_MAP_FILE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_RULE_PERF_TIME (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_DIR_UNICODE_CODE_PAGE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_RULE_ENG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_COLLECTION_TIMEOUT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_SEC_ACTION (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_HTTP_BLKEY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_SEC_DEFAULT_ACTION (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_INTERCEPT_ON_ERROR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_SEC_MARKER (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_UNICODE_MAP_FILE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_RULE_REMOVE_BY_ID (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_DIR_UNICODE_CODE_PAGE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_RULE_REMOVE_BY_MSG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_COLLECTION_TIMEOUT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_RULE_REMOVE_BY_TAG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_HTTP_BLKEY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_INTERCEPT_ON_ERROR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_RULE_REMOVE_BY_ID (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_RULE_REMOVE_BY_MSG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_UPDLOAD_KEEP_FILES (const std::string& v, const location_type& l); - static - symbol_type - make_CONFIG_SEC_RULE_REMOVE_BY_TAG (YY_COPY (std::string) v, YY_COPY (location_type) l); - - static + static inline symbol_type - make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_UPDLOAD_SAVE_TMP_FILES (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_UPLOAD_DIR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_UPLOAD_FILE_LIMIT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_UPLOAD_FILE_MODE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_UPDLOAD_KEEP_FILES (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_ABORT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_UPDLOAD_SAVE_TMP_FILES (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_DETC (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_UPLOAD_DIR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_HTTPS (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_UPLOAD_FILE_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_OFF (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_UPLOAD_FILE_MODE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_ON (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_ABORT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_PARALLEL (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_DETC (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_PROCESS_PARTIAL (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_HTTPS (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_REJECT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_OFF (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_RELEVANT_ONLY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_ON (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_SERIAL (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_PARALLEL (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_VALUE_WARN (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_PROCESS_PARTIAL (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_XML_EXTERNAL_ENTITY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_REJECT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONGIG_DIR_RESPONSE_BODY_MP (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_RELEVANT_ONLY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONGIG_DIR_SEC_ARG_SEP (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_SERIAL (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONGIG_DIR_SEC_COOKIE_FORMAT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_VALUE_WARN (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_COOKIEV0_SEPARATOR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_XML_EXTERNAL_ENTITY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONGIG_DIR_SEC_DATA_DIR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONGIG_DIR_RESPONSE_BODY_MP (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONGIG_DIR_SEC_STATUS_ENGINE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONGIG_DIR_SEC_ARG_SEP (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_STREAM_IN_BODY_INSPECTION (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONGIG_DIR_SEC_COOKIE_FORMAT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONFIG_SEC_STREAM_OUT_BODY_INSPECTION (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_COOKIEV0_SEPARATOR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_CONGIG_DIR_SEC_TMP_DIR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONGIG_DIR_SEC_DATA_DIR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_DIRECTIVE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONGIG_DIR_SEC_STATUS_ENGINE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_DIRECTIVE_SECRULESCRIPT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_STREAM_IN_BODY_INSPECTION (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_FREE_TEXT_QUOTE_MACRO_EXPANSION (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONFIG_SEC_STREAM_OUT_BODY_INSPECTION (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_QUOTATION_MARK (const std::string& v, const location_type& l); - static + static inline symbol_type - make_CONGIG_DIR_SEC_TMP_DIR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_BLD (const std::string& v, const location_type& l); - static + static inline symbol_type - make_DIRECTIVE (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_DUR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_DIRECTIVE_SECRULESCRIPT (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_HSV (const std::string& v, const location_type& l); - static + static inline symbol_type - make_FREE_TEXT_QUOTE_MACRO_EXPANSION (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_REMOTE_USER (const std::string& v, const location_type& l); - static + static inline symbol_type - make_QUOTATION_MARK (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_TIME (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_BLD (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_TIME_DAY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_DUR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_TIME_EPOCH (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_HSV (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_TIME_HOUR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_REMOTE_USER (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_TIME_MIN (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_TIME (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_TIME_MON (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_TIME_DAY (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_TIME_SEC (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_TIME_EPOCH (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_TIME_WDAY (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_TIME_HOUR (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_RUN_TIME_VAR_TIME_YEAR (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_TIME_MIN (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_VARIABLE (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_TIME_MON (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_DICT_ELEMENT (const std::string& v, const location_type& l); - static + static inline symbol_type - make_RUN_TIME_VAR_TIME_SEC (YY_COPY (std::string) v, YY_COPY (location_type) l); + make_DICT_ELEMENT_REGEXP (const std::string& v, const location_type& l); - static - symbol_type - make_RUN_TIME_VAR_TIME_WDAY (YY_COPY (std::string) v, YY_COPY (location_type) l); - static - symbol_type - make_RUN_TIME_VAR_TIME_YEAR (YY_COPY (std::string) v, YY_COPY (location_type) l); + /// Build a parser object. + seclang_parser (modsecurity::Parser::Driver& driver_yyarg); + virtual ~seclang_parser (); - static - symbol_type - make_VARIABLE (YY_COPY (std::string) v, YY_COPY (location_type) l); + /// Parse. + /// \returns 0 iff parsing succeeded. + virtual int parse (); - static - symbol_type - make_DICT_ELEMENT (YY_COPY (std::string) v, YY_COPY (location_type) l); +#if YYDEBUG + /// The current debugging stream. + std::ostream& debug_stream () const YY_ATTRIBUTE_PURE; + /// Set the current debugging stream. + void set_debug_stream (std::ostream &); - static - symbol_type - make_DICT_ELEMENT_REGEXP (YY_COPY (std::string) v, YY_COPY (location_type) l); + /// Type for debugging levels. + typedef int debug_level_type; + /// The current debugging level. + debug_level_type debug_level () const YY_ATTRIBUTE_PURE; + /// Set the current debugging level. + void set_debug_level (debug_level_type l); +#endif + /// Report a syntax error. + /// \param loc where the syntax error is found. + /// \param msg a description of the syntax error. + virtual void error (const location_type& loc, const std::string& msg); + /// Report a syntax error. + void error (const syntax_error& err); private: /// This class is not copyable. @@ -2918,7 +2740,7 @@ namespace yy { /// \param yyvalue the value to check static bool yy_table_value_is_error_ (int yyvalue); - static const short yypact_ninf_; + static const short int yypact_ninf_; static const signed char yytable_ninf_; /// Convert a scanner token number \a t to a symbol number. @@ -2927,32 +2749,32 @@ namespace yy { // Tables. // YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing // STATE-NUM. - static const short yypact_[]; + static const short int yypact_[]; // YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. // Performed when YYTABLE does not specify something else to do. Zero // means the default is an error. - static const unsigned short yydefact_[]; + static const unsigned short int yydefact_[]; // YYPGOTO[NTERM-NUM]. - static const short yypgoto_[]; + static const short int yypgoto_[]; // YYDEFGOTO[NTERM-NUM]. - static const short yydefgoto_[]; + static const short int yydefgoto_[]; // YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If // positive, shift that token. If negative, reduce the rule whose // number is the opposite. If YYTABLE_NINF, syntax error. - static const unsigned short yytable_[]; + static const unsigned short int yytable_[]; - static const short yycheck_[]; + static const short int yycheck_[]; // YYSTOS[STATE-NUM] -- The (internal number of the) accessing // symbol of state STATE-NUM. - static const unsigned short yystos_[]; + static const unsigned short int yystos_[]; // YYR1[YYN] -- Symbol number of symbol that rule YYN derives. - static const unsigned short yyr1_[]; + static const unsigned short int yyr1_[]; // YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. static const unsigned char yyr2_[]; @@ -2966,7 +2788,7 @@ namespace yy { static const char* const yytname_[]; #if YYDEBUG // YYRLINE[YYN] -- Source line where rule number YYN was defined. - static const unsigned short yyrline_[]; + static const unsigned short int yyrline_[]; /// Report on the debug stream that the rule \a r is going to be reduced. virtual void yy_reduce_print_ (int r); /// Print the state stack on the debug stream. @@ -3031,15 +2853,10 @@ namespace yy { typedef basic_symbol super_type; /// Construct an empty symbol. stack_symbol_type (); - /// Move or copy construction. - stack_symbol_type (YY_RVREF (stack_symbol_type) that); /// Steal the contents from \a sym to build this. - stack_symbol_type (state_type s, YY_MOVE_REF (symbol_type) sym); -#if defined __cplusplus && __cplusplus < 201103L - /// Assignment, needed by push_back by some old implementations. - /// Moves the contents of that. - stack_symbol_type& operator= (stack_symbol_type& that); -#endif + stack_symbol_type (state_type s, symbol_type& sym); + /// Assignment, needed by push_back. + stack_symbol_type& operator= (const stack_symbol_type& that); }; /// Stack type. @@ -3051,31 +2868,31 @@ namespace yy { /// Push a new state on the stack. /// \param m a debug message to display /// if null, no trace is output. - /// \param sym the symbol + /// \param s the symbol /// \warning the contents of \a s.value is stolen. - void yypush_ (const char* m, YY_MOVE_REF (stack_symbol_type) sym); + void yypush_ (const char* m, stack_symbol_type& s); /// Push a new look ahead token on the state on the stack. /// \param m a debug message to display /// if null, no trace is output. /// \param s the state /// \param sym the symbol (for its value and location). - /// \warning the contents of \a sym.value is stolen. - void yypush_ (const char* m, state_type s, YY_MOVE_REF (symbol_type) sym); + /// \warning the contents of \a s.value is stolen. + void yypush_ (const char* m, state_type s, symbol_type& sym); - /// Pop \a n symbols from the stack. - void yypop_ (int n = 1); + /// Pop \a n symbols the three stacks. + void yypop_ (unsigned int n = 1); /// Constants. enum { yyeof_ = 0, - yylast_ = 3295, ///< Last index in yytable_. + yylast_ = 3303, ///< Last index in yytable_. yynnts_ = 16, ///< Number of nonterminal symbols. - yyfinal_ = 336, ///< Termination state number. + yyfinal_ = 337, ///< Termination state number. yyterror_ = 1, yyerrcode_ = 256, - yyntokens_ = 340 ///< Number of tokens. + yyntokens_ = 341 ///< Number of tokens. }; @@ -3151,14 +2968,14 @@ namespace yy { 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, - 335, 336, 337, 338, 339 + 335, 336, 337, 338, 339, 340 }; - const unsigned user_token_number_max_ = 594; + const unsigned int user_token_number_max_ = 595; const token_number_type undef_token_ = 2; - if (static_cast (t) <= yyeof_) + if (static_cast(t) <= yyeof_) return yyeof_; - else if (static_cast (t) <= user_token_number_max_) + else if (static_cast (t) <= user_token_number_max_) return translate_table[t]; else return undef_token_; @@ -3172,18 +2989,19 @@ namespace yy { // basic_symbol. template + inline seclang_parser::basic_symbol::basic_symbol () : value () - , location () {} template - seclang_parser::basic_symbol::basic_symbol (YY_RVREF (basic_symbol) other) - : Base (YY_MOVE (other)) + inline + seclang_parser::basic_symbol::basic_symbol (const basic_symbol& other) + : Base (other) , value () - , location (YY_MOVE (other.location)) + , location (other.location) { - switch (other.type_get ()) + switch (other.type_get ()) { case 144: // "Accuracy" case 145: // "Allow" @@ -3308,109 +3126,110 @@ namespace yy { case 264: // "CONFIG_SEC_CONN_R_STATE_LIMIT" case 265: // "CONFIG_SEC_CONN_W_STATE_LIMIT" case 266: // "CONFIG_SEC_SENSOR_ID" - case 267: // "CONFIG_DIR_REQ_BODY" - case 268: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" - case 269: // "CONFIG_DIR_REQ_BODY_LIMIT" - case 270: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" - case 271: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" - case 272: // "CONFIG_DIR_RES_BODY" - case 273: // "CONFIG_DIR_RES_BODY_LIMIT" - case 274: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" - case 275: // "CONFIG_SEC_RULE_INHERITANCE" - case 276: // "CONFIG_SEC_RULE_PERF_TIME" - case 277: // "CONFIG_DIR_RULE_ENG" - case 278: // "CONFIG_DIR_SEC_ACTION" - case 279: // "CONFIG_DIR_SEC_DEFAULT_ACTION" - case 280: // "CONFIG_DIR_SEC_MARKER" - case 281: // "CONFIG_DIR_UNICODE_MAP_FILE" - case 282: // "CONFIG_DIR_UNICODE_CODE_PAGE" - case 283: // "CONFIG_SEC_COLLECTION_TIMEOUT" - case 284: // "CONFIG_SEC_HTTP_BLKEY" - case 285: // "CONFIG_SEC_INTERCEPT_ON_ERROR" - case 286: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" - case 287: // "CONFIG_SEC_RULE_REMOVE_BY_ID" - case 288: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" - case 289: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" - case 290: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" - case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" - case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" - case 293: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" - case 294: // "CONFIG_UPDLOAD_KEEP_FILES" - case 295: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" - case 296: // "CONFIG_UPLOAD_DIR" - case 297: // "CONFIG_UPLOAD_FILE_LIMIT" - case 298: // "CONFIG_UPLOAD_FILE_MODE" - case 299: // "CONFIG_VALUE_ABORT" - case 300: // "CONFIG_VALUE_DETC" - case 301: // "CONFIG_VALUE_HTTPS" - case 302: // "CONFIG_VALUE_OFF" - case 303: // "CONFIG_VALUE_ON" - case 304: // "CONFIG_VALUE_PARALLEL" - case 305: // "CONFIG_VALUE_PROCESS_PARTIAL" - case 306: // "CONFIG_VALUE_REJECT" - case 307: // "CONFIG_VALUE_RELEVANT_ONLY" - case 308: // "CONFIG_VALUE_SERIAL" - case 309: // "CONFIG_VALUE_WARN" - case 310: // "CONFIG_XML_EXTERNAL_ENTITY" - case 311: // "CONGIG_DIR_RESPONSE_BODY_MP" - case 312: // "CONGIG_DIR_SEC_ARG_SEP" - case 313: // "CONGIG_DIR_SEC_COOKIE_FORMAT" - case 314: // "CONFIG_SEC_COOKIEV0_SEPARATOR" - case 315: // "CONGIG_DIR_SEC_DATA_DIR" - case 316: // "CONGIG_DIR_SEC_STATUS_ENGINE" - case 317: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" - case 318: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" - case 319: // "CONGIG_DIR_SEC_TMP_DIR" - case 320: // "DIRECTIVE" - case 321: // "DIRECTIVE_SECRULESCRIPT" - case 322: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" - case 323: // "QUOTATION_MARK" - case 324: // "RUN_TIME_VAR_BLD" - case 325: // "RUN_TIME_VAR_DUR" - case 326: // "RUN_TIME_VAR_HSV" - case 327: // "RUN_TIME_VAR_REMOTE_USER" - case 328: // "RUN_TIME_VAR_TIME" - case 329: // "RUN_TIME_VAR_TIME_DAY" - case 330: // "RUN_TIME_VAR_TIME_EPOCH" - case 331: // "RUN_TIME_VAR_TIME_HOUR" - case 332: // "RUN_TIME_VAR_TIME_MIN" - case 333: // "RUN_TIME_VAR_TIME_MON" - case 334: // "RUN_TIME_VAR_TIME_SEC" - case 335: // "RUN_TIME_VAR_TIME_WDAY" - case 336: // "RUN_TIME_VAR_TIME_YEAR" - case 337: // "VARIABLE" - case 338: // "Dictionary element" - case 339: // "Dictionary element, selected by regexp" - value.YY_MOVE_OR_COPY< std::string > (YY_MOVE (other.value)); + case 267: // "CONFIG_DIR_ARGS_LIMIT" + case 268: // "CONFIG_DIR_REQ_BODY" + case 269: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" + case 270: // "CONFIG_DIR_REQ_BODY_LIMIT" + case 271: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" + case 272: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" + case 273: // "CONFIG_DIR_RES_BODY" + case 274: // "CONFIG_DIR_RES_BODY_LIMIT" + case 275: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" + case 276: // "CONFIG_SEC_RULE_INHERITANCE" + case 277: // "CONFIG_SEC_RULE_PERF_TIME" + case 278: // "CONFIG_DIR_RULE_ENG" + case 279: // "CONFIG_DIR_SEC_ACTION" + case 280: // "CONFIG_DIR_SEC_DEFAULT_ACTION" + case 281: // "CONFIG_DIR_SEC_MARKER" + case 282: // "CONFIG_DIR_UNICODE_MAP_FILE" + case 283: // "CONFIG_DIR_UNICODE_CODE_PAGE" + case 284: // "CONFIG_SEC_COLLECTION_TIMEOUT" + case 285: // "CONFIG_SEC_HTTP_BLKEY" + case 286: // "CONFIG_SEC_INTERCEPT_ON_ERROR" + case 287: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" + case 288: // "CONFIG_SEC_RULE_REMOVE_BY_ID" + case 289: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" + case 290: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" + case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" + case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" + case 293: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" + case 294: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" + case 295: // "CONFIG_UPDLOAD_KEEP_FILES" + case 296: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" + case 297: // "CONFIG_UPLOAD_DIR" + case 298: // "CONFIG_UPLOAD_FILE_LIMIT" + case 299: // "CONFIG_UPLOAD_FILE_MODE" + case 300: // "CONFIG_VALUE_ABORT" + case 301: // "CONFIG_VALUE_DETC" + case 302: // "CONFIG_VALUE_HTTPS" + case 303: // "CONFIG_VALUE_OFF" + case 304: // "CONFIG_VALUE_ON" + case 305: // "CONFIG_VALUE_PARALLEL" + case 306: // "CONFIG_VALUE_PROCESS_PARTIAL" + case 307: // "CONFIG_VALUE_REJECT" + case 308: // "CONFIG_VALUE_RELEVANT_ONLY" + case 309: // "CONFIG_VALUE_SERIAL" + case 310: // "CONFIG_VALUE_WARN" + case 311: // "CONFIG_XML_EXTERNAL_ENTITY" + case 312: // "CONGIG_DIR_RESPONSE_BODY_MP" + case 313: // "CONGIG_DIR_SEC_ARG_SEP" + case 314: // "CONGIG_DIR_SEC_COOKIE_FORMAT" + case 315: // "CONFIG_SEC_COOKIEV0_SEPARATOR" + case 316: // "CONGIG_DIR_SEC_DATA_DIR" + case 317: // "CONGIG_DIR_SEC_STATUS_ENGINE" + case 318: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" + case 319: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" + case 320: // "CONGIG_DIR_SEC_TMP_DIR" + case 321: // "DIRECTIVE" + case 322: // "DIRECTIVE_SECRULESCRIPT" + case 323: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" + case 324: // "QUOTATION_MARK" + case 325: // "RUN_TIME_VAR_BLD" + case 326: // "RUN_TIME_VAR_DUR" + case 327: // "RUN_TIME_VAR_HSV" + case 328: // "RUN_TIME_VAR_REMOTE_USER" + case 329: // "RUN_TIME_VAR_TIME" + case 330: // "RUN_TIME_VAR_TIME_DAY" + case 331: // "RUN_TIME_VAR_TIME_EPOCH" + case 332: // "RUN_TIME_VAR_TIME_HOUR" + case 333: // "RUN_TIME_VAR_TIME_MIN" + case 334: // "RUN_TIME_VAR_TIME_MON" + case 335: // "RUN_TIME_VAR_TIME_SEC" + case 336: // "RUN_TIME_VAR_TIME_WDAY" + case 337: // "RUN_TIME_VAR_TIME_YEAR" + case 338: // "VARIABLE" + case 339: // "Dictionary element" + case 340: // "Dictionary element, selected by regexp" + value.copy< std::string > (other.value); break; - case 346: // op - case 347: // op_before_init - value.YY_MOVE_OR_COPY< std::unique_ptr > (YY_MOVE (other.value)); + case 347: // op + case 348: // op_before_init + value.copy< std::unique_ptr > (other.value); break; - case 355: // run_time_string - value.YY_MOVE_OR_COPY< std::unique_ptr > (YY_MOVE (other.value)); + case 356: // run_time_string + value.copy< std::unique_ptr > (other.value); break; - case 352: // var - value.YY_MOVE_OR_COPY< std::unique_ptr > (YY_MOVE (other.value)); + case 353: // var + value.copy< std::unique_ptr > (other.value); break; - case 353: // act - case 354: // setvar_action - value.YY_MOVE_OR_COPY< std::unique_ptr > (YY_MOVE (other.value)); + case 354: // act + case 355: // setvar_action + value.copy< std::unique_ptr > (other.value); break; - case 349: // variables - case 350: // variables_pre_process - case 351: // variables_may_be_quoted - value.YY_MOVE_OR_COPY< std::unique_ptr > > > (YY_MOVE (other.value)); + case 350: // variables + case 351: // variables_pre_process + case 352: // variables_may_be_quoted + value.copy< std::unique_ptr > > > (other.value); break; - case 344: // actions - case 345: // actions_may_quoted - value.YY_MOVE_OR_COPY< std::unique_ptr > > > (YY_MOVE (other.value)); + case 345: // actions + case 346: // actions_may_quoted + value.copy< std::unique_ptr > > > (other.value); break; default: @@ -3420,71 +3239,319 @@ namespace yy { } + template + inline + seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, const semantic_type& v, const location_type& l) + : Base (t) + , value () + , location (l) + { + (void) v; + switch (this->type_get ()) + { + case 144: // "Accuracy" + case 145: // "Allow" + case 146: // "Append" + case 147: // "AuditLog" + case 148: // "Block" + case 149: // "Capture" + case 150: // "Chain" + case 151: // "ACTION_CTL_AUDIT_ENGINE" + case 152: // "ACTION_CTL_AUDIT_LOG_PARTS" + case 153: // "ACTION_CTL_BDY_JSON" + case 154: // "ACTION_CTL_BDY_XML" + case 155: // "ACTION_CTL_BDY_URLENCODED" + case 156: // "ACTION_CTL_FORCE_REQ_BODY_VAR" + case 157: // "ACTION_CTL_REQUEST_BODY_ACCESS" + case 158: // "ACTION_CTL_RULE_REMOVE_BY_ID" + case 159: // "ACTION_CTL_RULE_REMOVE_BY_TAG" + case 160: // "ACTION_CTL_RULE_REMOVE_TARGET_BY_ID" + case 161: // "ACTION_CTL_RULE_REMOVE_TARGET_BY_TAG" + case 162: // "Deny" + case 163: // "DeprecateVar" + case 164: // "Drop" + case 165: // "Exec" + case 166: // "ExpireVar" + case 167: // "Id" + case 168: // "InitCol" + case 169: // "Log" + case 170: // "LogData" + case 171: // "Maturity" + case 172: // "Msg" + case 173: // "MultiMatch" + case 174: // "NoAuditLog" + case 175: // "NoLog" + case 176: // "Pass" + case 177: // "Pause" + case 178: // "Phase" + case 179: // "Prepend" + case 180: // "Proxy" + case 181: // "Redirect" + case 182: // "Rev" + case 183: // "SanitiseArg" + case 184: // "SanitiseMatched" + case 185: // "SanitiseMatchedBytes" + case 186: // "SanitiseRequestHeader" + case 187: // "SanitiseResponseHeader" + case 188: // "SetEnv" + case 189: // "SetRsc" + case 190: // "SetSid" + case 191: // "SetUID" + case 192: // "Severity" + case 193: // "Skip" + case 194: // "SkipAfter" + case 195: // "Status" + case 196: // "Tag" + case 197: // "ACTION_TRANSFORMATION_BASE_64_ENCODE" + case 198: // "ACTION_TRANSFORMATION_BASE_64_DECODE" + case 199: // "ACTION_TRANSFORMATION_BASE_64_DECODE_EXT" + case 200: // "ACTION_TRANSFORMATION_CMD_LINE" + case 201: // "ACTION_TRANSFORMATION_COMPRESS_WHITESPACE" + case 202: // "ACTION_TRANSFORMATION_CSS_DECODE" + case 203: // "ACTION_TRANSFORMATION_ESCAPE_SEQ_DECODE" + case 204: // "ACTION_TRANSFORMATION_HEX_ENCODE" + case 205: // "ACTION_TRANSFORMATION_HEX_DECODE" + case 206: // "ACTION_TRANSFORMATION_HTML_ENTITY_DECODE" + case 207: // "ACTION_TRANSFORMATION_JS_DECODE" + case 208: // "ACTION_TRANSFORMATION_LENGTH" + case 209: // "ACTION_TRANSFORMATION_LOWERCASE" + case 210: // "ACTION_TRANSFORMATION_MD5" + case 211: // "ACTION_TRANSFORMATION_NONE" + case 212: // "ACTION_TRANSFORMATION_NORMALISE_PATH" + case 213: // "ACTION_TRANSFORMATION_NORMALISE_PATH_WIN" + case 214: // "ACTION_TRANSFORMATION_PARITY_EVEN_7_BIT" + case 215: // "ACTION_TRANSFORMATION_PARITY_ODD_7_BIT" + case 216: // "ACTION_TRANSFORMATION_PARITY_ZERO_7_BIT" + case 217: // "ACTION_TRANSFORMATION_REMOVE_COMMENTS" + case 218: // "ACTION_TRANSFORMATION_REMOVE_COMMENTS_CHAR" + case 219: // "ACTION_TRANSFORMATION_REMOVE_NULLS" + case 220: // "ACTION_TRANSFORMATION_REMOVE_WHITESPACE" + case 221: // "ACTION_TRANSFORMATION_REPLACE_COMMENTS" + case 222: // "ACTION_TRANSFORMATION_REPLACE_NULLS" + case 223: // "ACTION_TRANSFORMATION_SHA1" + case 224: // "ACTION_TRANSFORMATION_SQL_HEX_DECODE" + case 225: // "ACTION_TRANSFORMATION_TRIM" + case 226: // "ACTION_TRANSFORMATION_TRIM_LEFT" + case 227: // "ACTION_TRANSFORMATION_TRIM_RIGHT" + case 228: // "ACTION_TRANSFORMATION_UPPERCASE" + case 229: // "ACTION_TRANSFORMATION_URL_ENCODE" + case 230: // "ACTION_TRANSFORMATION_URL_DECODE" + case 231: // "ACTION_TRANSFORMATION_URL_DECODE_UNI" + case 232: // "ACTION_TRANSFORMATION_UTF8_TO_UNICODE" + case 233: // "Ver" + case 234: // "xmlns" + case 235: // "CONFIG_COMPONENT_SIG" + case 236: // "CONFIG_CONN_ENGINE" + case 237: // "CONFIG_SEC_ARGUMENT_SEPARATOR" + case 238: // "CONFIG_SEC_WEB_APP_ID" + case 239: // "CONFIG_SEC_SERVER_SIG" + case 240: // "CONFIG_DIR_AUDIT_DIR" + case 241: // "CONFIG_DIR_AUDIT_DIR_MOD" + case 242: // "CONFIG_DIR_AUDIT_ENG" + case 243: // "CONFIG_DIR_AUDIT_FLE_MOD" + case 244: // "CONFIG_DIR_AUDIT_LOG" + case 245: // "CONFIG_DIR_AUDIT_LOG2" + case 246: // "CONFIG_DIR_AUDIT_LOG_P" + case 247: // "CONFIG_DIR_AUDIT_STS" + case 248: // "CONFIG_DIR_AUDIT_TPE" + case 249: // "CONFIG_DIR_DEBUG_LOG" + case 250: // "CONFIG_DIR_DEBUG_LVL" + case 251: // "CONFIG_SEC_CACHE_TRANSFORMATIONS" + case 252: // "CONFIG_SEC_DISABLE_BACKEND_COMPRESS" + case 253: // "CONFIG_SEC_HASH_ENGINE" + case 254: // "CONFIG_SEC_HASH_KEY" + case 255: // "CONFIG_SEC_HASH_PARAM" + case 256: // "CONFIG_SEC_HASH_METHOD_RX" + case 257: // "CONFIG_SEC_HASH_METHOD_PM" + case 258: // "CONFIG_SEC_CHROOT_DIR" + case 259: // "CONFIG_DIR_GEO_DB" + case 260: // "CONFIG_DIR_GSB_DB" + case 261: // "CONFIG_SEC_GUARDIAN_LOG" + case 262: // "CONFIG_DIR_PCRE_MATCH_LIMIT" + case 263: // "CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION" + case 264: // "CONFIG_SEC_CONN_R_STATE_LIMIT" + case 265: // "CONFIG_SEC_CONN_W_STATE_LIMIT" + case 266: // "CONFIG_SEC_SENSOR_ID" + case 267: // "CONFIG_DIR_ARGS_LIMIT" + case 268: // "CONFIG_DIR_REQ_BODY" + case 269: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" + case 270: // "CONFIG_DIR_REQ_BODY_LIMIT" + case 271: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" + case 272: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" + case 273: // "CONFIG_DIR_RES_BODY" + case 274: // "CONFIG_DIR_RES_BODY_LIMIT" + case 275: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" + case 276: // "CONFIG_SEC_RULE_INHERITANCE" + case 277: // "CONFIG_SEC_RULE_PERF_TIME" + case 278: // "CONFIG_DIR_RULE_ENG" + case 279: // "CONFIG_DIR_SEC_ACTION" + case 280: // "CONFIG_DIR_SEC_DEFAULT_ACTION" + case 281: // "CONFIG_DIR_SEC_MARKER" + case 282: // "CONFIG_DIR_UNICODE_MAP_FILE" + case 283: // "CONFIG_DIR_UNICODE_CODE_PAGE" + case 284: // "CONFIG_SEC_COLLECTION_TIMEOUT" + case 285: // "CONFIG_SEC_HTTP_BLKEY" + case 286: // "CONFIG_SEC_INTERCEPT_ON_ERROR" + case 287: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" + case 288: // "CONFIG_SEC_RULE_REMOVE_BY_ID" + case 289: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" + case 290: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" + case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" + case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" + case 293: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" + case 294: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" + case 295: // "CONFIG_UPDLOAD_KEEP_FILES" + case 296: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" + case 297: // "CONFIG_UPLOAD_DIR" + case 298: // "CONFIG_UPLOAD_FILE_LIMIT" + case 299: // "CONFIG_UPLOAD_FILE_MODE" + case 300: // "CONFIG_VALUE_ABORT" + case 301: // "CONFIG_VALUE_DETC" + case 302: // "CONFIG_VALUE_HTTPS" + case 303: // "CONFIG_VALUE_OFF" + case 304: // "CONFIG_VALUE_ON" + case 305: // "CONFIG_VALUE_PARALLEL" + case 306: // "CONFIG_VALUE_PROCESS_PARTIAL" + case 307: // "CONFIG_VALUE_REJECT" + case 308: // "CONFIG_VALUE_RELEVANT_ONLY" + case 309: // "CONFIG_VALUE_SERIAL" + case 310: // "CONFIG_VALUE_WARN" + case 311: // "CONFIG_XML_EXTERNAL_ENTITY" + case 312: // "CONGIG_DIR_RESPONSE_BODY_MP" + case 313: // "CONGIG_DIR_SEC_ARG_SEP" + case 314: // "CONGIG_DIR_SEC_COOKIE_FORMAT" + case 315: // "CONFIG_SEC_COOKIEV0_SEPARATOR" + case 316: // "CONGIG_DIR_SEC_DATA_DIR" + case 317: // "CONGIG_DIR_SEC_STATUS_ENGINE" + case 318: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" + case 319: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" + case 320: // "CONGIG_DIR_SEC_TMP_DIR" + case 321: // "DIRECTIVE" + case 322: // "DIRECTIVE_SECRULESCRIPT" + case 323: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" + case 324: // "QUOTATION_MARK" + case 325: // "RUN_TIME_VAR_BLD" + case 326: // "RUN_TIME_VAR_DUR" + case 327: // "RUN_TIME_VAR_HSV" + case 328: // "RUN_TIME_VAR_REMOTE_USER" + case 329: // "RUN_TIME_VAR_TIME" + case 330: // "RUN_TIME_VAR_TIME_DAY" + case 331: // "RUN_TIME_VAR_TIME_EPOCH" + case 332: // "RUN_TIME_VAR_TIME_HOUR" + case 333: // "RUN_TIME_VAR_TIME_MIN" + case 334: // "RUN_TIME_VAR_TIME_MON" + case 335: // "RUN_TIME_VAR_TIME_SEC" + case 336: // "RUN_TIME_VAR_TIME_WDAY" + case 337: // "RUN_TIME_VAR_TIME_YEAR" + case 338: // "VARIABLE" + case 339: // "Dictionary element" + case 340: // "Dictionary element, selected by regexp" + value.copy< std::string > (v); + break; + + case 347: // op + case 348: // op_before_init + value.copy< std::unique_ptr > (v); + break; + + case 356: // run_time_string + value.copy< std::unique_ptr > (v); + break; + + case 353: // var + value.copy< std::unique_ptr > (v); + break; + + case 354: // act + case 355: // setvar_action + value.copy< std::unique_ptr > (v); + break; + + case 350: // variables + case 351: // variables_pre_process + case 352: // variables_may_be_quoted + value.copy< std::unique_ptr > > > (v); + break; + + case 345: // actions + case 346: // actions_may_quoted + value.copy< std::unique_ptr > > > (v); + break; + + default: + break; + } +} + + // Implementation of basic_symbol constructor for each type. + template - seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, YY_RVREF (location_type) l) + seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, const location_type& l) : Base (t) - , location (YY_MOVE (l)) + , value () + , location (l) {} template - seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, YY_RVREF (std::string) v, YY_RVREF (location_type) l) + seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::string v, const location_type& l) : Base (t) - , value (YY_MOVE (v)) - , location (YY_MOVE (l)) + , value (v) + , location (l) {} template - seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr) v, YY_RVREF (location_type) l) + seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::unique_ptr v, const location_type& l) : Base (t) - , value (YY_MOVE (v)) - , location (YY_MOVE (l)) + , value (v) + , location (l) {} template - seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr) v, YY_RVREF (location_type) l) + seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::unique_ptr v, const location_type& l) : Base (t) - , value (YY_MOVE (v)) - , location (YY_MOVE (l)) + , value (v) + , location (l) {} template - seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr) v, YY_RVREF (location_type) l) + seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::unique_ptr v, const location_type& l) : Base (t) - , value (YY_MOVE (v)) - , location (YY_MOVE (l)) + , value (v) + , location (l) {} template - seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr) v, YY_RVREF (location_type) l) + seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::unique_ptr v, const location_type& l) : Base (t) - , value (YY_MOVE (v)) - , location (YY_MOVE (l)) + , value (v) + , location (l) {} template - seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr > > ) v, YY_RVREF (location_type) l) + seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::unique_ptr > > v, const location_type& l) : Base (t) - , value (YY_MOVE (v)) - , location (YY_MOVE (l)) + , value (v) + , location (l) {} template - seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, YY_RVREF (std::unique_ptr > > ) v, YY_RVREF (location_type) l) + seclang_parser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::unique_ptr > > v, const location_type& l) : Base (t) - , value (YY_MOVE (v)) - , location (YY_MOVE (l)) + , value (v) + , location (l) {} - template + inline seclang_parser::basic_symbol::~basic_symbol () { clear (); } template + inline void seclang_parser::basic_symbol::clear () { @@ -3499,7 +3566,7 @@ namespace yy { } // Type destructor. - switch (yytype) + switch (yytype) { case 144: // "Accuracy" case 145: // "Allow" @@ -3624,108 +3691,109 @@ namespace yy { case 264: // "CONFIG_SEC_CONN_R_STATE_LIMIT" case 265: // "CONFIG_SEC_CONN_W_STATE_LIMIT" case 266: // "CONFIG_SEC_SENSOR_ID" - case 267: // "CONFIG_DIR_REQ_BODY" - case 268: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" - case 269: // "CONFIG_DIR_REQ_BODY_LIMIT" - case 270: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" - case 271: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" - case 272: // "CONFIG_DIR_RES_BODY" - case 273: // "CONFIG_DIR_RES_BODY_LIMIT" - case 274: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" - case 275: // "CONFIG_SEC_RULE_INHERITANCE" - case 276: // "CONFIG_SEC_RULE_PERF_TIME" - case 277: // "CONFIG_DIR_RULE_ENG" - case 278: // "CONFIG_DIR_SEC_ACTION" - case 279: // "CONFIG_DIR_SEC_DEFAULT_ACTION" - case 280: // "CONFIG_DIR_SEC_MARKER" - case 281: // "CONFIG_DIR_UNICODE_MAP_FILE" - case 282: // "CONFIG_DIR_UNICODE_CODE_PAGE" - case 283: // "CONFIG_SEC_COLLECTION_TIMEOUT" - case 284: // "CONFIG_SEC_HTTP_BLKEY" - case 285: // "CONFIG_SEC_INTERCEPT_ON_ERROR" - case 286: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" - case 287: // "CONFIG_SEC_RULE_REMOVE_BY_ID" - case 288: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" - case 289: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" - case 290: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" - case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" - case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" - case 293: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" - case 294: // "CONFIG_UPDLOAD_KEEP_FILES" - case 295: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" - case 296: // "CONFIG_UPLOAD_DIR" - case 297: // "CONFIG_UPLOAD_FILE_LIMIT" - case 298: // "CONFIG_UPLOAD_FILE_MODE" - case 299: // "CONFIG_VALUE_ABORT" - case 300: // "CONFIG_VALUE_DETC" - case 301: // "CONFIG_VALUE_HTTPS" - case 302: // "CONFIG_VALUE_OFF" - case 303: // "CONFIG_VALUE_ON" - case 304: // "CONFIG_VALUE_PARALLEL" - case 305: // "CONFIG_VALUE_PROCESS_PARTIAL" - case 306: // "CONFIG_VALUE_REJECT" - case 307: // "CONFIG_VALUE_RELEVANT_ONLY" - case 308: // "CONFIG_VALUE_SERIAL" - case 309: // "CONFIG_VALUE_WARN" - case 310: // "CONFIG_XML_EXTERNAL_ENTITY" - case 311: // "CONGIG_DIR_RESPONSE_BODY_MP" - case 312: // "CONGIG_DIR_SEC_ARG_SEP" - case 313: // "CONGIG_DIR_SEC_COOKIE_FORMAT" - case 314: // "CONFIG_SEC_COOKIEV0_SEPARATOR" - case 315: // "CONGIG_DIR_SEC_DATA_DIR" - case 316: // "CONGIG_DIR_SEC_STATUS_ENGINE" - case 317: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" - case 318: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" - case 319: // "CONGIG_DIR_SEC_TMP_DIR" - case 320: // "DIRECTIVE" - case 321: // "DIRECTIVE_SECRULESCRIPT" - case 322: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" - case 323: // "QUOTATION_MARK" - case 324: // "RUN_TIME_VAR_BLD" - case 325: // "RUN_TIME_VAR_DUR" - case 326: // "RUN_TIME_VAR_HSV" - case 327: // "RUN_TIME_VAR_REMOTE_USER" - case 328: // "RUN_TIME_VAR_TIME" - case 329: // "RUN_TIME_VAR_TIME_DAY" - case 330: // "RUN_TIME_VAR_TIME_EPOCH" - case 331: // "RUN_TIME_VAR_TIME_HOUR" - case 332: // "RUN_TIME_VAR_TIME_MIN" - case 333: // "RUN_TIME_VAR_TIME_MON" - case 334: // "RUN_TIME_VAR_TIME_SEC" - case 335: // "RUN_TIME_VAR_TIME_WDAY" - case 336: // "RUN_TIME_VAR_TIME_YEAR" - case 337: // "VARIABLE" - case 338: // "Dictionary element" - case 339: // "Dictionary element, selected by regexp" + case 267: // "CONFIG_DIR_ARGS_LIMIT" + case 268: // "CONFIG_DIR_REQ_BODY" + case 269: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" + case 270: // "CONFIG_DIR_REQ_BODY_LIMIT" + case 271: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" + case 272: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" + case 273: // "CONFIG_DIR_RES_BODY" + case 274: // "CONFIG_DIR_RES_BODY_LIMIT" + case 275: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" + case 276: // "CONFIG_SEC_RULE_INHERITANCE" + case 277: // "CONFIG_SEC_RULE_PERF_TIME" + case 278: // "CONFIG_DIR_RULE_ENG" + case 279: // "CONFIG_DIR_SEC_ACTION" + case 280: // "CONFIG_DIR_SEC_DEFAULT_ACTION" + case 281: // "CONFIG_DIR_SEC_MARKER" + case 282: // "CONFIG_DIR_UNICODE_MAP_FILE" + case 283: // "CONFIG_DIR_UNICODE_CODE_PAGE" + case 284: // "CONFIG_SEC_COLLECTION_TIMEOUT" + case 285: // "CONFIG_SEC_HTTP_BLKEY" + case 286: // "CONFIG_SEC_INTERCEPT_ON_ERROR" + case 287: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" + case 288: // "CONFIG_SEC_RULE_REMOVE_BY_ID" + case 289: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" + case 290: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" + case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" + case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" + case 293: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" + case 294: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" + case 295: // "CONFIG_UPDLOAD_KEEP_FILES" + case 296: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" + case 297: // "CONFIG_UPLOAD_DIR" + case 298: // "CONFIG_UPLOAD_FILE_LIMIT" + case 299: // "CONFIG_UPLOAD_FILE_MODE" + case 300: // "CONFIG_VALUE_ABORT" + case 301: // "CONFIG_VALUE_DETC" + case 302: // "CONFIG_VALUE_HTTPS" + case 303: // "CONFIG_VALUE_OFF" + case 304: // "CONFIG_VALUE_ON" + case 305: // "CONFIG_VALUE_PARALLEL" + case 306: // "CONFIG_VALUE_PROCESS_PARTIAL" + case 307: // "CONFIG_VALUE_REJECT" + case 308: // "CONFIG_VALUE_RELEVANT_ONLY" + case 309: // "CONFIG_VALUE_SERIAL" + case 310: // "CONFIG_VALUE_WARN" + case 311: // "CONFIG_XML_EXTERNAL_ENTITY" + case 312: // "CONGIG_DIR_RESPONSE_BODY_MP" + case 313: // "CONGIG_DIR_SEC_ARG_SEP" + case 314: // "CONGIG_DIR_SEC_COOKIE_FORMAT" + case 315: // "CONFIG_SEC_COOKIEV0_SEPARATOR" + case 316: // "CONGIG_DIR_SEC_DATA_DIR" + case 317: // "CONGIG_DIR_SEC_STATUS_ENGINE" + case 318: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" + case 319: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" + case 320: // "CONGIG_DIR_SEC_TMP_DIR" + case 321: // "DIRECTIVE" + case 322: // "DIRECTIVE_SECRULESCRIPT" + case 323: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" + case 324: // "QUOTATION_MARK" + case 325: // "RUN_TIME_VAR_BLD" + case 326: // "RUN_TIME_VAR_DUR" + case 327: // "RUN_TIME_VAR_HSV" + case 328: // "RUN_TIME_VAR_REMOTE_USER" + case 329: // "RUN_TIME_VAR_TIME" + case 330: // "RUN_TIME_VAR_TIME_DAY" + case 331: // "RUN_TIME_VAR_TIME_EPOCH" + case 332: // "RUN_TIME_VAR_TIME_HOUR" + case 333: // "RUN_TIME_VAR_TIME_MIN" + case 334: // "RUN_TIME_VAR_TIME_MON" + case 335: // "RUN_TIME_VAR_TIME_SEC" + case 336: // "RUN_TIME_VAR_TIME_WDAY" + case 337: // "RUN_TIME_VAR_TIME_YEAR" + case 338: // "VARIABLE" + case 339: // "Dictionary element" + case 340: // "Dictionary element, selected by regexp" value.template destroy< std::string > (); break; - case 346: // op - case 347: // op_before_init + case 347: // op + case 348: // op_before_init value.template destroy< std::unique_ptr > (); break; - case 355: // run_time_string + case 356: // run_time_string value.template destroy< std::unique_ptr > (); break; - case 352: // var + case 353: // var value.template destroy< std::unique_ptr > (); break; - case 353: // act - case 354: // setvar_action + case 354: // act + case 355: // setvar_action value.template destroy< std::unique_ptr > (); break; - case 349: // variables - case 350: // variables_pre_process - case 351: // variables_may_be_quoted + case 350: // variables + case 351: // variables_pre_process + case 352: // variables_may_be_quoted value.template destroy< std::unique_ptr > > > (); break; - case 344: // actions - case 345: // actions_may_quoted + case 345: // actions + case 346: // actions_may_quoted value.template destroy< std::unique_ptr > > > (); break; @@ -3737,6 +3805,7 @@ namespace yy { } template + inline bool seclang_parser::basic_symbol::empty () const { @@ -3744,11 +3813,12 @@ namespace yy { } template + inline void seclang_parser::basic_symbol::move (basic_symbol& s) { - super_type::move (s); - switch (this->type_get ()) + super_type::move(s); + switch (this->type_get ()) { case 144: // "Accuracy" case 145: // "Allow" @@ -3873,116 +3943,117 @@ namespace yy { case 264: // "CONFIG_SEC_CONN_R_STATE_LIMIT" case 265: // "CONFIG_SEC_CONN_W_STATE_LIMIT" case 266: // "CONFIG_SEC_SENSOR_ID" - case 267: // "CONFIG_DIR_REQ_BODY" - case 268: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" - case 269: // "CONFIG_DIR_REQ_BODY_LIMIT" - case 270: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" - case 271: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" - case 272: // "CONFIG_DIR_RES_BODY" - case 273: // "CONFIG_DIR_RES_BODY_LIMIT" - case 274: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" - case 275: // "CONFIG_SEC_RULE_INHERITANCE" - case 276: // "CONFIG_SEC_RULE_PERF_TIME" - case 277: // "CONFIG_DIR_RULE_ENG" - case 278: // "CONFIG_DIR_SEC_ACTION" - case 279: // "CONFIG_DIR_SEC_DEFAULT_ACTION" - case 280: // "CONFIG_DIR_SEC_MARKER" - case 281: // "CONFIG_DIR_UNICODE_MAP_FILE" - case 282: // "CONFIG_DIR_UNICODE_CODE_PAGE" - case 283: // "CONFIG_SEC_COLLECTION_TIMEOUT" - case 284: // "CONFIG_SEC_HTTP_BLKEY" - case 285: // "CONFIG_SEC_INTERCEPT_ON_ERROR" - case 286: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" - case 287: // "CONFIG_SEC_RULE_REMOVE_BY_ID" - case 288: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" - case 289: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" - case 290: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" - case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" - case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" - case 293: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" - case 294: // "CONFIG_UPDLOAD_KEEP_FILES" - case 295: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" - case 296: // "CONFIG_UPLOAD_DIR" - case 297: // "CONFIG_UPLOAD_FILE_LIMIT" - case 298: // "CONFIG_UPLOAD_FILE_MODE" - case 299: // "CONFIG_VALUE_ABORT" - case 300: // "CONFIG_VALUE_DETC" - case 301: // "CONFIG_VALUE_HTTPS" - case 302: // "CONFIG_VALUE_OFF" - case 303: // "CONFIG_VALUE_ON" - case 304: // "CONFIG_VALUE_PARALLEL" - case 305: // "CONFIG_VALUE_PROCESS_PARTIAL" - case 306: // "CONFIG_VALUE_REJECT" - case 307: // "CONFIG_VALUE_RELEVANT_ONLY" - case 308: // "CONFIG_VALUE_SERIAL" - case 309: // "CONFIG_VALUE_WARN" - case 310: // "CONFIG_XML_EXTERNAL_ENTITY" - case 311: // "CONGIG_DIR_RESPONSE_BODY_MP" - case 312: // "CONGIG_DIR_SEC_ARG_SEP" - case 313: // "CONGIG_DIR_SEC_COOKIE_FORMAT" - case 314: // "CONFIG_SEC_COOKIEV0_SEPARATOR" - case 315: // "CONGIG_DIR_SEC_DATA_DIR" - case 316: // "CONGIG_DIR_SEC_STATUS_ENGINE" - case 317: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" - case 318: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" - case 319: // "CONGIG_DIR_SEC_TMP_DIR" - case 320: // "DIRECTIVE" - case 321: // "DIRECTIVE_SECRULESCRIPT" - case 322: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" - case 323: // "QUOTATION_MARK" - case 324: // "RUN_TIME_VAR_BLD" - case 325: // "RUN_TIME_VAR_DUR" - case 326: // "RUN_TIME_VAR_HSV" - case 327: // "RUN_TIME_VAR_REMOTE_USER" - case 328: // "RUN_TIME_VAR_TIME" - case 329: // "RUN_TIME_VAR_TIME_DAY" - case 330: // "RUN_TIME_VAR_TIME_EPOCH" - case 331: // "RUN_TIME_VAR_TIME_HOUR" - case 332: // "RUN_TIME_VAR_TIME_MIN" - case 333: // "RUN_TIME_VAR_TIME_MON" - case 334: // "RUN_TIME_VAR_TIME_SEC" - case 335: // "RUN_TIME_VAR_TIME_WDAY" - case 336: // "RUN_TIME_VAR_TIME_YEAR" - case 337: // "VARIABLE" - case 338: // "Dictionary element" - case 339: // "Dictionary element, selected by regexp" - value.move< std::string > (YY_MOVE (s.value)); + case 267: // "CONFIG_DIR_ARGS_LIMIT" + case 268: // "CONFIG_DIR_REQ_BODY" + case 269: // "CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT" + case 270: // "CONFIG_DIR_REQ_BODY_LIMIT" + case 271: // "CONFIG_DIR_REQ_BODY_LIMIT_ACTION" + case 272: // "CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT" + case 273: // "CONFIG_DIR_RES_BODY" + case 274: // "CONFIG_DIR_RES_BODY_LIMIT" + case 275: // "CONFIG_DIR_RES_BODY_LIMIT_ACTION" + case 276: // "CONFIG_SEC_RULE_INHERITANCE" + case 277: // "CONFIG_SEC_RULE_PERF_TIME" + case 278: // "CONFIG_DIR_RULE_ENG" + case 279: // "CONFIG_DIR_SEC_ACTION" + case 280: // "CONFIG_DIR_SEC_DEFAULT_ACTION" + case 281: // "CONFIG_DIR_SEC_MARKER" + case 282: // "CONFIG_DIR_UNICODE_MAP_FILE" + case 283: // "CONFIG_DIR_UNICODE_CODE_PAGE" + case 284: // "CONFIG_SEC_COLLECTION_TIMEOUT" + case 285: // "CONFIG_SEC_HTTP_BLKEY" + case 286: // "CONFIG_SEC_INTERCEPT_ON_ERROR" + case 287: // "CONFIG_SEC_REMOTE_RULES_FAIL_ACTION" + case 288: // "CONFIG_SEC_RULE_REMOVE_BY_ID" + case 289: // "CONFIG_SEC_RULE_REMOVE_BY_MSG" + case 290: // "CONFIG_SEC_RULE_REMOVE_BY_TAG" + case 291: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG" + case 292: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG" + case 293: // "CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID" + case 294: // "CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID" + case 295: // "CONFIG_UPDLOAD_KEEP_FILES" + case 296: // "CONFIG_UPDLOAD_SAVE_TMP_FILES" + case 297: // "CONFIG_UPLOAD_DIR" + case 298: // "CONFIG_UPLOAD_FILE_LIMIT" + case 299: // "CONFIG_UPLOAD_FILE_MODE" + case 300: // "CONFIG_VALUE_ABORT" + case 301: // "CONFIG_VALUE_DETC" + case 302: // "CONFIG_VALUE_HTTPS" + case 303: // "CONFIG_VALUE_OFF" + case 304: // "CONFIG_VALUE_ON" + case 305: // "CONFIG_VALUE_PARALLEL" + case 306: // "CONFIG_VALUE_PROCESS_PARTIAL" + case 307: // "CONFIG_VALUE_REJECT" + case 308: // "CONFIG_VALUE_RELEVANT_ONLY" + case 309: // "CONFIG_VALUE_SERIAL" + case 310: // "CONFIG_VALUE_WARN" + case 311: // "CONFIG_XML_EXTERNAL_ENTITY" + case 312: // "CONGIG_DIR_RESPONSE_BODY_MP" + case 313: // "CONGIG_DIR_SEC_ARG_SEP" + case 314: // "CONGIG_DIR_SEC_COOKIE_FORMAT" + case 315: // "CONFIG_SEC_COOKIEV0_SEPARATOR" + case 316: // "CONGIG_DIR_SEC_DATA_DIR" + case 317: // "CONGIG_DIR_SEC_STATUS_ENGINE" + case 318: // "CONFIG_SEC_STREAM_IN_BODY_INSPECTION" + case 319: // "CONFIG_SEC_STREAM_OUT_BODY_INSPECTION" + case 320: // "CONGIG_DIR_SEC_TMP_DIR" + case 321: // "DIRECTIVE" + case 322: // "DIRECTIVE_SECRULESCRIPT" + case 323: // "FREE_TEXT_QUOTE_MACRO_EXPANSION" + case 324: // "QUOTATION_MARK" + case 325: // "RUN_TIME_VAR_BLD" + case 326: // "RUN_TIME_VAR_DUR" + case 327: // "RUN_TIME_VAR_HSV" + case 328: // "RUN_TIME_VAR_REMOTE_USER" + case 329: // "RUN_TIME_VAR_TIME" + case 330: // "RUN_TIME_VAR_TIME_DAY" + case 331: // "RUN_TIME_VAR_TIME_EPOCH" + case 332: // "RUN_TIME_VAR_TIME_HOUR" + case 333: // "RUN_TIME_VAR_TIME_MIN" + case 334: // "RUN_TIME_VAR_TIME_MON" + case 335: // "RUN_TIME_VAR_TIME_SEC" + case 336: // "RUN_TIME_VAR_TIME_WDAY" + case 337: // "RUN_TIME_VAR_TIME_YEAR" + case 338: // "VARIABLE" + case 339: // "Dictionary element" + case 340: // "Dictionary element, selected by regexp" + value.move< std::string > (s.value); break; - case 346: // op - case 347: // op_before_init - value.move< std::unique_ptr > (YY_MOVE (s.value)); + case 347: // op + case 348: // op_before_init + value.move< std::unique_ptr > (s.value); break; - case 355: // run_time_string - value.move< std::unique_ptr > (YY_MOVE (s.value)); + case 356: // run_time_string + value.move< std::unique_ptr > (s.value); break; - case 352: // var - value.move< std::unique_ptr > (YY_MOVE (s.value)); + case 353: // var + value.move< std::unique_ptr > (s.value); break; - case 353: // act - case 354: // setvar_action - value.move< std::unique_ptr > (YY_MOVE (s.value)); + case 354: // act + case 355: // setvar_action + value.move< std::unique_ptr > (s.value); break; - case 349: // variables - case 350: // variables_pre_process - case 351: // variables_may_be_quoted - value.move< std::unique_ptr > > > (YY_MOVE (s.value)); + case 350: // variables + case 351: // variables_pre_process + case 352: // variables_may_be_quoted + value.move< std::unique_ptr > > > (s.value); break; - case 344: // actions - case 345: // actions_may_quoted - value.move< std::unique_ptr > > > (YY_MOVE (s.value)); + case 345: // actions + case 346: // actions_may_quoted + value.move< std::unique_ptr > > > (s.value); break; default: break; } - location = YY_MOVE (s.location); + location = s.location; } // by_type. @@ -4030,7 +4101,7 @@ namespace yy { // YYTOKNUM[NUM] -- (External) token number corresponding to the // (internal) symbol number NUM (which must be that of a token). */ static - const unsigned short + const unsigned short int yytoken_number_[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, @@ -4066,2382 +4137,2050 @@ namespace yy { 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, - 585, 586, 587, 588, 589, 590, 591, 592, 593, 594 + 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, + 595 }; return static_cast (yytoken_number_[type]); } - // Implementation of make_symbol for each symbol type. - inline seclang_parser::symbol_type - seclang_parser::make_END (YY_COPY (location_type) l) + seclang_parser::make_END (const location_type& l) { - return symbol_type (token::TOK_END, YY_MOVE (l)); + return symbol_type (token::TOK_END, l); } - inline seclang_parser::symbol_type - seclang_parser::make_COMMA (YY_COPY (location_type) l) + seclang_parser::make_COMMA (const location_type& l) { - return symbol_type (token::TOK_COMMA, YY_MOVE (l)); + return symbol_type (token::TOK_COMMA, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_CONTENT_INJECTION (YY_COPY (location_type) l) + seclang_parser::make_CONFIG_CONTENT_INJECTION (const location_type& l) { - return symbol_type (token::TOK_CONFIG_CONTENT_INJECTION, YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_CONTENT_INJECTION, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONGIG_DIR_RESPONSE_BODY_MP_CLEAR (YY_COPY (location_type) l) + seclang_parser::make_CONGIG_DIR_RESPONSE_BODY_MP_CLEAR (const location_type& l) { - return symbol_type (token::TOK_CONGIG_DIR_RESPONSE_BODY_MP_CLEAR, YY_MOVE (l)); + return symbol_type (token::TOK_CONGIG_DIR_RESPONSE_BODY_MP_CLEAR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_PIPE (YY_COPY (location_type) l) + seclang_parser::make_PIPE (const location_type& l) { - return symbol_type (token::TOK_PIPE, YY_MOVE (l)); + return symbol_type (token::TOK_PIPE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_NEW_LINE (YY_COPY (location_type) l) + seclang_parser::make_NEW_LINE (const location_type& l) { - return symbol_type (token::TOK_NEW_LINE, YY_MOVE (l)); + return symbol_type (token::TOK_NEW_LINE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VAR_COUNT (YY_COPY (location_type) l) + seclang_parser::make_VAR_COUNT (const location_type& l) { - return symbol_type (token::TOK_VAR_COUNT, YY_MOVE (l)); + return symbol_type (token::TOK_VAR_COUNT, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VAR_EXCLUSION (YY_COPY (location_type) l) + seclang_parser::make_VAR_EXCLUSION (const location_type& l) { - return symbol_type (token::TOK_VAR_EXCLUSION, YY_MOVE (l)); + return symbol_type (token::TOK_VAR_EXCLUSION, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_ARGS (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_ARGS (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_ARGS, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_ARGS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_ARGS_POST (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_ARGS_POST (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_ARGS_POST, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_ARGS_POST, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_ARGS_GET (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_ARGS_GET (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_ARGS_GET, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_ARGS_GET, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_FILES_SIZES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_FILES_SIZES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_FILES_SIZES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_FILES_SIZES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_FILES_NAMES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_FILES_NAMES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_FILES_NAMES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_FILES_NAMES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_FILES_TMP_CONTENT (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_FILES_TMP_CONTENT (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_FILES_TMP_CONTENT, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_FILES_TMP_CONTENT, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_FILENAME (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_FILENAME (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_FILENAME, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_FILENAME, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_NAME (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_NAME (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_NAME, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_NAME, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MATCHED_VARS_NAMES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MATCHED_VARS_NAMES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MATCHED_VARS_NAMES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MATCHED_VARS_NAMES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MATCHED_VARS (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MATCHED_VARS (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MATCHED_VARS, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MATCHED_VARS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_FILES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_FILES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_FILES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_FILES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_COOKIES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_COOKIES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_COOKIES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_COOKIES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_HEADERS (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_HEADERS (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_HEADERS, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_HEADERS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_RESPONSE_HEADERS (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_RESPONSE_HEADERS (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_RESPONSE_HEADERS, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_RESPONSE_HEADERS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_GEO (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_GEO (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_GEO, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_GEO, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_COOKIES_NAMES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_COOKIES_NAMES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_COOKIES_NAMES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_COOKIES_NAMES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_ARGS_COMBINED_SIZE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_ARGS_COMBINED_SIZE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_ARGS_COMBINED_SIZE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_ARGS_COMBINED_SIZE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_ARGS_GET_NAMES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_ARGS_GET_NAMES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_ARGS_GET_NAMES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_ARGS_GET_NAMES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_RULE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_RULE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_RULE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_RULE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_ARGS_NAMES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_ARGS_NAMES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_ARGS_NAMES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_ARGS_NAMES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_ARGS_POST_NAMES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_ARGS_POST_NAMES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_ARGS_POST_NAMES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_ARGS_POST_NAMES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_AUTH_TYPE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_AUTH_TYPE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_AUTH_TYPE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_AUTH_TYPE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_FILES_COMBINED_SIZE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_FILES_COMBINED_SIZE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_FILES_COMBINED_SIZE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_FILES_COMBINED_SIZE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_FILES_TMP_NAMES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_FILES_TMP_NAMES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_FILES_TMP_NAMES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_FILES_TMP_NAMES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_FULL_REQUEST (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_FULL_REQUEST (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_FULL_REQUEST, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_FULL_REQUEST, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_FULL_REQUEST_LENGTH (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_FULL_REQUEST_LENGTH (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_FULL_REQUEST_LENGTH, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_FULL_REQUEST_LENGTH, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_INBOUND_DATA_ERROR (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_INBOUND_DATA_ERROR (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_INBOUND_DATA_ERROR, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_INBOUND_DATA_ERROR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MATCHED_VAR (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MATCHED_VAR (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MATCHED_VAR, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MATCHED_VAR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MATCHED_VAR_NAME (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MATCHED_VAR_NAME (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MATCHED_VAR_NAME, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MATCHED_VAR_NAME, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_BOUNDARY_QUOTED (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_BOUNDARY_QUOTED (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_BOUNDARY_QUOTED, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_BOUNDARY_QUOTED, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_BOUNDARY_WHITESPACE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_BOUNDARY_WHITESPACE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_BOUNDARY_WHITESPACE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_BOUNDARY_WHITESPACE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_CRLF_LF_LINES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_CRLF_LF_LINES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_CRLF_LF_LINES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_CRLF_LF_LINES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_DATA_AFTER (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_DATA_AFTER (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_DATA_AFTER, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_DATA_AFTER, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_DATA_BEFORE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_DATA_BEFORE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_DATA_BEFORE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_DATA_BEFORE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_FILE_LIMIT_EXCEEDED (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_FILE_LIMIT_EXCEEDED (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_FILE_LIMIT_EXCEEDED, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_FILE_LIMIT_EXCEEDED, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_HEADER_FOLDING (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_HEADER_FOLDING (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_HEADER_FOLDING, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_HEADER_FOLDING, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_INVALID_HEADER_FOLDING (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_INVALID_HEADER_FOLDING (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_INVALID_HEADER_FOLDING, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_INVALID_HEADER_FOLDING, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_INVALID_PART (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_INVALID_PART (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_INVALID_PART, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_INVALID_PART, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_INVALID_QUOTING (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_INVALID_QUOTING (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_INVALID_QUOTING, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_INVALID_QUOTING, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_LF_LINE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_LF_LINE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_LF_LINE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_LF_LINE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_MISSING_SEMICOLON (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_MISSING_SEMICOLON (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_MISSING_SEMICOLON, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_MISSING_SEMICOLON, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_SEMICOLON_MISSING (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_SEMICOLON_MISSING (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_SEMICOLON_MISSING, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_SEMICOLON_MISSING, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_STRICT_ERROR (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_STRICT_ERROR (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_STRICT_ERROR, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_STRICT_ERROR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_MULTIPART_UNMATCHED_BOUNDARY (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_MULTIPART_UNMATCHED_BOUNDARY (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_MULTIPART_UNMATCHED_BOUNDARY, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_MULTIPART_UNMATCHED_BOUNDARY, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_OUTBOUND_DATA_ERROR (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_OUTBOUND_DATA_ERROR (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_OUTBOUND_DATA_ERROR, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_OUTBOUND_DATA_ERROR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_PATH_INFO (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_PATH_INFO (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_PATH_INFO, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_PATH_INFO, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_QUERY_STRING (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_QUERY_STRING (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_QUERY_STRING, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_QUERY_STRING, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REMOTE_ADDR (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REMOTE_ADDR (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REMOTE_ADDR, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REMOTE_ADDR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REMOTE_HOST (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REMOTE_HOST (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REMOTE_HOST, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REMOTE_HOST, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REMOTE_PORT (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REMOTE_PORT (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REMOTE_PORT, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REMOTE_PORT, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQBODY_ERROR_MSG (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQBODY_ERROR_MSG (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQBODY_ERROR_MSG, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQBODY_ERROR_MSG, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQBODY_ERROR (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQBODY_ERROR (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQBODY_ERROR, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQBODY_ERROR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQBODY_PROCESSOR_ERROR_MSG (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQBODY_PROCESSOR_ERROR_MSG (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQBODY_PROCESSOR_ERROR_MSG, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQBODY_PROCESSOR_ERROR_MSG, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQBODY_PROCESSOR_ERROR (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQBODY_PROCESSOR_ERROR (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQBODY_PROCESSOR_ERROR, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQBODY_PROCESSOR_ERROR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQBODY_PROCESSOR (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQBODY_PROCESSOR (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQBODY_PROCESSOR, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQBODY_PROCESSOR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_BASENAME (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_BASENAME (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_BASENAME, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_BASENAME, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_BODY_LENGTH (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_BODY_LENGTH (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_BODY_LENGTH, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_BODY_LENGTH, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_BODY (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_BODY (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_BODY, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_BODY, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_FILE_NAME (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_FILE_NAME (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_FILE_NAME, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_FILE_NAME, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_HEADERS_NAMES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_HEADERS_NAMES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_HEADERS_NAMES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_HEADERS_NAMES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_LINE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_LINE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_LINE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_LINE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_METHOD (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_METHOD (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_METHOD, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_METHOD, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_PROTOCOL (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_PROTOCOL (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_PROTOCOL, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_PROTOCOL, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_URI_RAW (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_URI_RAW (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_URI_RAW, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_URI_RAW, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_REQUEST_URI (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_REQUEST_URI (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_REQUEST_URI, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_REQUEST_URI, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_RESOURCE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_RESOURCE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_RESOURCE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_RESOURCE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_RESPONSE_BODY (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_RESPONSE_BODY (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_RESPONSE_BODY, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_RESPONSE_BODY, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_RESPONSE_CONTENT_LENGTH (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_RESPONSE_CONTENT_LENGTH (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_RESPONSE_CONTENT_LENGTH, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_RESPONSE_CONTENT_LENGTH, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_RESPONSE_CONTENT_TYPE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_RESPONSE_CONTENT_TYPE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_RESPONSE_CONTENT_TYPE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_RESPONSE_CONTENT_TYPE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_RESPONSE_HEADERS_NAMES (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_RESPONSE_HEADERS_NAMES (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_RESPONSE_HEADERS_NAMES, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_RESPONSE_HEADERS_NAMES, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_RESPONSE_PROTOCOL (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_RESPONSE_PROTOCOL (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_RESPONSE_PROTOCOL, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_RESPONSE_PROTOCOL, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_RESPONSE_STATUS (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_RESPONSE_STATUS (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_RESPONSE_STATUS, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_RESPONSE_STATUS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_SERVER_ADDR (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_SERVER_ADDR (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_SERVER_ADDR, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_SERVER_ADDR, l); + } + + seclang_parser::symbol_type + seclang_parser::make_VARIABLE_SERVER_NAME (const location_type& l) + { + return symbol_type (token::TOK_VARIABLE_SERVER_NAME, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_SERVER_NAME (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_SERVER_PORT (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_SERVER_NAME, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_SERVER_PORT, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_SERVER_PORT (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_SESSION_ID (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_SERVER_PORT, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_SESSION_ID, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_SESSION_ID (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_UNIQUE_ID (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_SESSION_ID, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_UNIQUE_ID, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_UNIQUE_ID (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_URL_ENCODED_ERROR (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_UNIQUE_ID, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_URL_ENCODED_ERROR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_URL_ENCODED_ERROR (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_USER_ID (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_URL_ENCODED_ERROR, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_USER_ID, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_USER_ID (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_WEB_APP_ID (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_USER_ID, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_WEB_APP_ID, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_WEB_APP_ID (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_STATUS (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_WEB_APP_ID, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_STATUS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_STATUS (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_STATUS_LINE (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_STATUS, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_STATUS_LINE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_STATUS_LINE (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_IP (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_STATUS_LINE, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_IP, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_IP (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_GLOBAL (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_IP, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_GLOBAL, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_GLOBAL (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_TX (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_GLOBAL, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_TX, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_TX (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_SESSION (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_TX, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_SESSION, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_SESSION (YY_COPY (location_type) l) + seclang_parser::make_VARIABLE_USER (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_SESSION, YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE_USER, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE_USER (YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_ENV (const location_type& l) { - return symbol_type (token::TOK_VARIABLE_USER, YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_ENV, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_ENV (YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_XML (const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_ENV, YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_XML, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_XML (YY_COPY (location_type) l) + seclang_parser::make_ACTION_SETVAR (const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_XML, YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SETVAR, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SETVAR (YY_COPY (location_type) l) + seclang_parser::make_SETVAR_OPERATION_EQUALS (const location_type& l) { - return symbol_type (token::TOK_ACTION_SETVAR, YY_MOVE (l)); + return symbol_type (token::TOK_SETVAR_OPERATION_EQUALS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_SETVAR_OPERATION_EQUALS (YY_COPY (location_type) l) + seclang_parser::make_SETVAR_OPERATION_EQUALS_PLUS (const location_type& l) { - return symbol_type (token::TOK_SETVAR_OPERATION_EQUALS, YY_MOVE (l)); + return symbol_type (token::TOK_SETVAR_OPERATION_EQUALS_PLUS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_SETVAR_OPERATION_EQUALS_PLUS (YY_COPY (location_type) l) + seclang_parser::make_SETVAR_OPERATION_EQUALS_MINUS (const location_type& l) { - return symbol_type (token::TOK_SETVAR_OPERATION_EQUALS_PLUS, YY_MOVE (l)); + return symbol_type (token::TOK_SETVAR_OPERATION_EQUALS_MINUS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_SETVAR_OPERATION_EQUALS_MINUS (YY_COPY (location_type) l) + seclang_parser::make_NOT (const location_type& l) { - return symbol_type (token::TOK_SETVAR_OPERATION_EQUALS_MINUS, YY_MOVE (l)); + return symbol_type (token::TOK_NOT, l); } - inline seclang_parser::symbol_type - seclang_parser::make_NOT (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_BEGINS_WITH (const location_type& l) { - return symbol_type (token::TOK_NOT, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_BEGINS_WITH, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_BEGINS_WITH (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_CONTAINS (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_BEGINS_WITH, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_CONTAINS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_CONTAINS (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_CONTAINS_WORD (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_CONTAINS, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_CONTAINS_WORD, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_CONTAINS_WORD (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_DETECT_SQLI (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_CONTAINS_WORD, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_DETECT_SQLI, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_DETECT_SQLI (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_DETECT_XSS (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_DETECT_SQLI, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_DETECT_XSS, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_DETECT_XSS (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_ENDS_WITH (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_DETECT_XSS, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_ENDS_WITH, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_ENDS_WITH (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_EQ (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_ENDS_WITH, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_EQ, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_EQ (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_FUZZY_HASH (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_EQ, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_FUZZY_HASH, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_FUZZY_HASH (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_GEOLOOKUP (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_FUZZY_HASH, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_GEOLOOKUP, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_GEOLOOKUP (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_GE (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_GEOLOOKUP, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_GE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_GE (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_GSB_LOOKUP (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_GE, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_GSB_LOOKUP, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_GSB_LOOKUP (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_GT (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_GSB_LOOKUP, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_GT, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_GT (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_INSPECT_FILE (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_GT, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_INSPECT_FILE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_INSPECT_FILE (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_IP_MATCH_FROM_FILE (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_INSPECT_FILE, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_IP_MATCH_FROM_FILE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_IP_MATCH_FROM_FILE (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_IP_MATCH (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_IP_MATCH_FROM_FILE, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_IP_MATCH, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_IP_MATCH (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_LE (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_IP_MATCH, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_LE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_LE (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_LT (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_LE, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_LT, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_LT (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_PM_FROM_FILE (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_LT, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_PM_FROM_FILE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_PM_FROM_FILE (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_PM (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_PM_FROM_FILE, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_PM, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_PM (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_RBL (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_PM, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_RBL, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_RBL (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_RSUB (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_RBL, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_RSUB, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_RSUB (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_RX_CONTENT_ONLY (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_RSUB, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_RX_CONTENT_ONLY, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_RX_CONTENT_ONLY (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_RX (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_RX_CONTENT_ONLY, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_RX, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_RX (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_STR_EQ (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_RX, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_STR_EQ, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_STR_EQ (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_STR_MATCH (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_STR_EQ, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_STR_MATCH, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_STR_MATCH (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_UNCONDITIONAL_MATCH (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_STR_MATCH, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_UNCONDITIONAL_MATCH, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_UNCONDITIONAL_MATCH (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_VALIDATE_BYTE_RANGE (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_UNCONDITIONAL_MATCH, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_VALIDATE_BYTE_RANGE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_VALIDATE_BYTE_RANGE (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_VALIDATE_DTD (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_VALIDATE_BYTE_RANGE, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_VALIDATE_DTD, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_VALIDATE_DTD (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_VALIDATE_HASH (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_VALIDATE_DTD, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_VALIDATE_HASH, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_VALIDATE_HASH (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_VALIDATE_SCHEMA (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_VALIDATE_HASH, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_VALIDATE_SCHEMA, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_VALIDATE_SCHEMA (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_VALIDATE_URL_ENCODING (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_VALIDATE_SCHEMA, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_VALIDATE_URL_ENCODING, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_VALIDATE_URL_ENCODING (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_VALIDATE_UTF8_ENCODING (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_VALIDATE_URL_ENCODING, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_VALIDATE_UTF8_ENCODING, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_VALIDATE_UTF8_ENCODING (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_VERIFY_CC (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_VALIDATE_UTF8_ENCODING, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_VERIFY_CC, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_VERIFY_CC (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_VERIFY_CPF (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_VERIFY_CC, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_VERIFY_CPF, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_VERIFY_CPF (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_VERIFY_SSN (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_VERIFY_CPF, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_VERIFY_SSN, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_VERIFY_SSN (YY_COPY (location_type) l) + seclang_parser::make_OPERATOR_WITHIN (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_VERIFY_SSN, YY_MOVE (l)); + return symbol_type (token::TOK_OPERATOR_WITHIN, l); } - inline seclang_parser::symbol_type - seclang_parser::make_OPERATOR_WITHIN (YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_AUDIT_LOG_FMT (const location_type& l) { - return symbol_type (token::TOK_OPERATOR_WITHIN, YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_AUDIT_LOG_FMT, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_AUDIT_LOG_FMT (YY_COPY (location_type) l) + seclang_parser::make_JSON (const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_AUDIT_LOG_FMT, YY_MOVE (l)); + return symbol_type (token::TOK_JSON, l); } - inline seclang_parser::symbol_type - seclang_parser::make_JSON (YY_COPY (location_type) l) + seclang_parser::make_NATIVE (const location_type& l) { - return symbol_type (token::TOK_JSON, YY_MOVE (l)); + return symbol_type (token::TOK_NATIVE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_NATIVE (YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_RULE_ENGINE (const location_type& l) { - return symbol_type (token::TOK_NATIVE, YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_RULE_ENGINE, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_RULE_ENGINE (YY_COPY (location_type) l) + seclang_parser::make_ACTION_ACCURACY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_RULE_ENGINE, YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_ACCURACY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_ACCURACY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_ALLOW (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_ACCURACY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_ALLOW, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_ALLOW (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_APPEND (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_ALLOW, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_APPEND, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_APPEND (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_AUDIT_LOG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_APPEND, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_AUDIT_LOG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_AUDIT_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_BLOCK (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_AUDIT_LOG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_BLOCK, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_BLOCK (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CAPTURE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_BLOCK, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CAPTURE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CAPTURE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CHAIN (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CAPTURE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CHAIN, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CHAIN (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_AUDIT_ENGINE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CHAIN, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_AUDIT_ENGINE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_AUDIT_ENGINE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_AUDIT_LOG_PARTS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_AUDIT_ENGINE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_AUDIT_LOG_PARTS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_AUDIT_LOG_PARTS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_BDY_JSON (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_AUDIT_LOG_PARTS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_BDY_JSON, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_BDY_JSON (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_BDY_XML (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_BDY_JSON, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_BDY_XML, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_BDY_XML (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_BDY_URLENCODED (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_BDY_XML, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_BDY_URLENCODED, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_BDY_URLENCODED (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_FORCE_REQ_BODY_VAR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_BDY_URLENCODED, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_FORCE_REQ_BODY_VAR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_FORCE_REQ_BODY_VAR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_REQUEST_BODY_ACCESS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_FORCE_REQ_BODY_VAR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_REQUEST_BODY_ACCESS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_REQUEST_BODY_ACCESS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_RULE_REMOVE_BY_ID (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_REQUEST_BODY_ACCESS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_RULE_REMOVE_BY_ID, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_RULE_REMOVE_BY_ID (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_RULE_REMOVE_BY_TAG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_RULE_REMOVE_BY_ID, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_RULE_REMOVE_BY_TAG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_RULE_REMOVE_BY_TAG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_RULE_REMOVE_TARGET_BY_ID (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_RULE_REMOVE_BY_TAG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_RULE_REMOVE_TARGET_BY_ID, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_RULE_REMOVE_TARGET_BY_ID (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_CTL_RULE_REMOVE_TARGET_BY_TAG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_RULE_REMOVE_TARGET_BY_ID, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_CTL_RULE_REMOVE_TARGET_BY_TAG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_CTL_RULE_REMOVE_TARGET_BY_TAG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_DENY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_CTL_RULE_REMOVE_TARGET_BY_TAG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_DENY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_DENY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_DEPRECATE_VAR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_DENY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_DEPRECATE_VAR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_DEPRECATE_VAR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_DROP (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_DEPRECATE_VAR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_DROP, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_DROP (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_EXEC (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_DROP, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_EXEC, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_EXEC (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_EXPIRE_VAR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_EXEC, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_EXPIRE_VAR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_EXPIRE_VAR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_ID (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_EXPIRE_VAR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_ID, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_ID (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_INITCOL (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_ID, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_INITCOL, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_INITCOL (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_LOG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_INITCOL, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_LOG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_LOG_DATA (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_LOG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_LOG_DATA, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_LOG_DATA (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_MATURITY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_LOG_DATA, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_MATURITY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_MATURITY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_MSG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_MATURITY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_MSG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_MSG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_MULTI_MATCH (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_MSG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_MULTI_MATCH, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_MULTI_MATCH (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_NO_AUDIT_LOG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_MULTI_MATCH, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_NO_AUDIT_LOG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_NO_AUDIT_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_NO_LOG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_NO_AUDIT_LOG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_NO_LOG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_NO_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_PASS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_NO_LOG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_PASS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_PASS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_PAUSE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_PASS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_PAUSE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_PAUSE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_PHASE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_PAUSE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_PHASE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_PHASE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_PREPEND (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_PHASE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_PREPEND, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_PREPEND (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_PROXY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_PREPEND, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_PROXY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_PROXY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_REDIRECT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_PROXY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_REDIRECT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_REDIRECT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_REV (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_REDIRECT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_REV, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_REV (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SANITISE_ARG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_REV, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SANITISE_ARG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SANITISE_ARG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SANITISE_MATCHED (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SANITISE_ARG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SANITISE_MATCHED, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SANITISE_MATCHED (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SANITISE_MATCHED_BYTES (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SANITISE_MATCHED, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SANITISE_MATCHED_BYTES, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SANITISE_MATCHED_BYTES (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SANITISE_REQUEST_HEADER (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SANITISE_MATCHED_BYTES, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SANITISE_REQUEST_HEADER, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SANITISE_REQUEST_HEADER (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SANITISE_RESPONSE_HEADER (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SANITISE_REQUEST_HEADER, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SANITISE_RESPONSE_HEADER, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SANITISE_RESPONSE_HEADER (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SETENV (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SANITISE_RESPONSE_HEADER, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SETENV, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SETENV (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SETRSC (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SETENV, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SETRSC, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SETRSC (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SETSID (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SETRSC, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SETSID, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SETSID (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SETUID (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SETSID, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SETUID, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SETUID (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SEVERITY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SETUID, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SEVERITY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SEVERITY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SKIP (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SEVERITY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SKIP, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SKIP (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_SKIP_AFTER (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SKIP, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_SKIP_AFTER, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_SKIP_AFTER (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_STATUS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_SKIP_AFTER, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_STATUS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_STATUS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TAG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_STATUS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TAG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TAG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_BASE_64_ENCODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TAG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_BASE_64_ENCODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_BASE_64_ENCODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_BASE_64_DECODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_BASE_64_ENCODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_BASE_64_DECODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_BASE_64_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_BASE_64_DECODE_EXT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_BASE_64_DECODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_BASE_64_DECODE_EXT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_BASE_64_DECODE_EXT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_CMD_LINE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_BASE_64_DECODE_EXT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_CMD_LINE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_CMD_LINE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_COMPRESS_WHITESPACE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_CMD_LINE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_COMPRESS_WHITESPACE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_COMPRESS_WHITESPACE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_CSS_DECODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_COMPRESS_WHITESPACE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_CSS_DECODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_CSS_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_ESCAPE_SEQ_DECODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_CSS_DECODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_ESCAPE_SEQ_DECODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_ESCAPE_SEQ_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_HEX_ENCODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_ESCAPE_SEQ_DECODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_HEX_ENCODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_HEX_ENCODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_HEX_DECODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_HEX_ENCODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_HEX_DECODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_HEX_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_HTML_ENTITY_DECODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_HEX_DECODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_HTML_ENTITY_DECODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_HTML_ENTITY_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_JS_DECODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_HTML_ENTITY_DECODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_JS_DECODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_JS_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_LENGTH (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_JS_DECODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_LENGTH, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_LENGTH (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_LOWERCASE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_LENGTH, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_LOWERCASE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_LOWERCASE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_MD5 (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_LOWERCASE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_MD5, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_MD5 (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_NONE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_MD5, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_NONE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_NONE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_NORMALISE_PATH (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_NONE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_NORMALISE_PATH, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_NORMALISE_PATH (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_NORMALISE_PATH_WIN (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_NORMALISE_PATH, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_NORMALISE_PATH_WIN, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_NORMALISE_PATH_WIN (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_PARITY_EVEN_7_BIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_NORMALISE_PATH_WIN, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_PARITY_EVEN_7_BIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_PARITY_EVEN_7_BIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_PARITY_ODD_7_BIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_PARITY_EVEN_7_BIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_PARITY_ODD_7_BIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_PARITY_ODD_7_BIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_PARITY_ZERO_7_BIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_PARITY_ODD_7_BIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_PARITY_ZERO_7_BIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_PARITY_ZERO_7_BIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_REMOVE_COMMENTS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_PARITY_ZERO_7_BIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_REMOVE_COMMENTS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_REMOVE_COMMENTS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_REMOVE_COMMENTS_CHAR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_REMOVE_COMMENTS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_REMOVE_COMMENTS_CHAR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_REMOVE_COMMENTS_CHAR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_REMOVE_NULLS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_REMOVE_COMMENTS_CHAR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_REMOVE_NULLS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_REMOVE_NULLS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_REMOVE_WHITESPACE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_REMOVE_NULLS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_REMOVE_WHITESPACE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_REMOVE_WHITESPACE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_REPLACE_COMMENTS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_REMOVE_WHITESPACE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_REPLACE_COMMENTS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_REPLACE_COMMENTS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_REPLACE_NULLS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_REPLACE_COMMENTS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_REPLACE_NULLS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_REPLACE_NULLS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_SHA1 (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_REPLACE_NULLS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_SHA1, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_SHA1 (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_SQL_HEX_DECODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_SHA1, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_SQL_HEX_DECODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_SQL_HEX_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_TRIM (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_SQL_HEX_DECODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_TRIM, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_TRIM (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_TRIM_LEFT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_TRIM, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_TRIM_LEFT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_TRIM_LEFT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_TRIM_RIGHT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_TRIM_LEFT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_TRIM_RIGHT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_TRIM_RIGHT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_UPPERCASE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_TRIM_RIGHT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_UPPERCASE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_UPPERCASE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_URL_ENCODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_UPPERCASE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_URL_ENCODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_URL_ENCODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_URL_DECODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_URL_ENCODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_URL_DECODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_URL_DECODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_URL_DECODE_UNI (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_URL_DECODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_URL_DECODE_UNI, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_URL_DECODE_UNI (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_TRANSFORMATION_UTF8_TO_UNICODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_URL_DECODE_UNI, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_TRANSFORMATION_UTF8_TO_UNICODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_TRANSFORMATION_UTF8_TO_UNICODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_VER (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_TRANSFORMATION_UTF8_TO_UNICODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_VER, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_VER (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_ACTION_XMLNS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_VER, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_ACTION_XMLNS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_ACTION_XMLNS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_COMPONENT_SIG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_ACTION_XMLNS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_COMPONENT_SIG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_COMPONENT_SIG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_CONN_ENGINE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_COMPONENT_SIG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_CONN_ENGINE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_CONN_ENGINE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_ARGUMENT_SEPARATOR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_CONN_ENGINE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_ARGUMENT_SEPARATOR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_ARGUMENT_SEPARATOR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_WEB_APP_ID (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_ARGUMENT_SEPARATOR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_WEB_APP_ID, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_WEB_APP_ID (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_SERVER_SIG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_WEB_APP_ID, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_SERVER_SIG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_SERVER_SIG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_AUDIT_DIR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_SERVER_SIG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_AUDIT_DIR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_AUDIT_DIR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_AUDIT_DIR_MOD (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_AUDIT_DIR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_AUDIT_DIR_MOD, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_AUDIT_DIR_MOD (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_AUDIT_ENG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_AUDIT_DIR_MOD, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_AUDIT_ENG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_AUDIT_ENG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_AUDIT_FLE_MOD (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_AUDIT_ENG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_AUDIT_FLE_MOD, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_AUDIT_FLE_MOD (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_AUDIT_LOG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_AUDIT_FLE_MOD, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_AUDIT_LOG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_AUDIT_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_AUDIT_LOG2 (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_AUDIT_LOG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_AUDIT_LOG2, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_AUDIT_LOG2 (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_AUDIT_LOG_P (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_AUDIT_LOG2, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_AUDIT_LOG_P, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_AUDIT_LOG_P (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_AUDIT_STS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_AUDIT_LOG_P, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_AUDIT_STS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_AUDIT_STS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_AUDIT_TPE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_AUDIT_STS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_AUDIT_TPE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_AUDIT_TPE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_DEBUG_LOG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_AUDIT_TPE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_DEBUG_LOG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_DEBUG_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_DEBUG_LVL (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_DEBUG_LOG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_DEBUG_LVL, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_DEBUG_LVL (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_CACHE_TRANSFORMATIONS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_DEBUG_LVL, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_CACHE_TRANSFORMATIONS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_CACHE_TRANSFORMATIONS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_DISABLE_BACKEND_COMPRESS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_CACHE_TRANSFORMATIONS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_DISABLE_BACKEND_COMPRESS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_DISABLE_BACKEND_COMPRESS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_HASH_ENGINE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_DISABLE_BACKEND_COMPRESS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_HASH_ENGINE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_HASH_ENGINE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_HASH_KEY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_HASH_ENGINE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_HASH_KEY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_HASH_KEY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_HASH_PARAM (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_HASH_KEY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_HASH_PARAM, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_HASH_PARAM (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_HASH_METHOD_RX (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_HASH_PARAM, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_HASH_METHOD_RX, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_HASH_METHOD_RX (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_HASH_METHOD_PM (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_HASH_METHOD_RX, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_HASH_METHOD_PM, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_HASH_METHOD_PM (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_CHROOT_DIR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_HASH_METHOD_PM, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_CHROOT_DIR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_CHROOT_DIR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_GEO_DB (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_CHROOT_DIR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_GEO_DB, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_GEO_DB (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_GSB_DB (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_GEO_DB, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_GSB_DB, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_GSB_DB (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_GUARDIAN_LOG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_GSB_DB, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_GUARDIAN_LOG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_GUARDIAN_LOG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_PCRE_MATCH_LIMIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_GUARDIAN_LOG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_PCRE_MATCH_LIMIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_PCRE_MATCH_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_PCRE_MATCH_LIMIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_CONN_R_STATE_LIMIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_CONN_R_STATE_LIMIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_CONN_R_STATE_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_CONN_W_STATE_LIMIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_CONN_R_STATE_LIMIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_CONN_W_STATE_LIMIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_CONN_W_STATE_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_SENSOR_ID (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_CONN_W_STATE_LIMIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_SENSOR_ID, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_SENSOR_ID (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_ARGS_LIMIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_SENSOR_ID, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_ARGS_LIMIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_REQ_BODY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_REQ_BODY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_REQ_BODY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_REQ_BODY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_REQ_BODY_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_REQ_BODY_LIMIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_REQ_BODY_LIMIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_REQ_BODY_LIMIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_REQ_BODY_LIMIT_ACTION (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_REQ_BODY_LIMIT_ACTION (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_REQ_BODY_LIMIT_ACTION, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_REQ_BODY_LIMIT_ACTION, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_RES_BODY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_RES_BODY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_RES_BODY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_RES_BODY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_RES_BODY_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_RES_BODY_LIMIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_RES_BODY_LIMIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_RES_BODY_LIMIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_RES_BODY_LIMIT_ACTION (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_RES_BODY_LIMIT_ACTION (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_RES_BODY_LIMIT_ACTION, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_RES_BODY_LIMIT_ACTION, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_RULE_INHERITANCE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_RULE_INHERITANCE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_RULE_INHERITANCE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_RULE_INHERITANCE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_RULE_PERF_TIME (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_RULE_PERF_TIME (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_RULE_PERF_TIME, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_RULE_PERF_TIME, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_RULE_ENG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_RULE_ENG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_RULE_ENG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_RULE_ENG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_SEC_ACTION (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_SEC_ACTION (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_SEC_ACTION, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_SEC_ACTION, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_SEC_DEFAULT_ACTION (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_SEC_DEFAULT_ACTION (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_SEC_DEFAULT_ACTION, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_SEC_DEFAULT_ACTION, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_SEC_MARKER (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_SEC_MARKER (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_SEC_MARKER, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_SEC_MARKER, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_UNICODE_MAP_FILE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_UNICODE_MAP_FILE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_UNICODE_MAP_FILE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_UNICODE_MAP_FILE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_DIR_UNICODE_CODE_PAGE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_DIR_UNICODE_CODE_PAGE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_DIR_UNICODE_CODE_PAGE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_DIR_UNICODE_CODE_PAGE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_COLLECTION_TIMEOUT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_COLLECTION_TIMEOUT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_COLLECTION_TIMEOUT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_COLLECTION_TIMEOUT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_HTTP_BLKEY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_HTTP_BLKEY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_HTTP_BLKEY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_HTTP_BLKEY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_INTERCEPT_ON_ERROR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_INTERCEPT_ON_ERROR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_INTERCEPT_ON_ERROR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_INTERCEPT_ON_ERROR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_RULE_REMOVE_BY_ID (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_RULE_REMOVE_BY_ID (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_RULE_REMOVE_BY_ID, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_RULE_REMOVE_BY_ID, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_RULE_REMOVE_BY_MSG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_RULE_REMOVE_BY_MSG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_RULE_REMOVE_BY_MSG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_RULE_REMOVE_BY_MSG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_RULE_REMOVE_BY_TAG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_RULE_REMOVE_BY_TAG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_RULE_REMOVE_BY_TAG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_RULE_REMOVE_BY_TAG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_UPDLOAD_KEEP_FILES (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_UPDLOAD_KEEP_FILES (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_UPDLOAD_KEEP_FILES, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_UPDLOAD_KEEP_FILES, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_UPDLOAD_SAVE_TMP_FILES (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_UPDLOAD_SAVE_TMP_FILES (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_UPDLOAD_SAVE_TMP_FILES, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_UPDLOAD_SAVE_TMP_FILES, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_UPLOAD_DIR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_UPLOAD_DIR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_UPLOAD_DIR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_UPLOAD_DIR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_UPLOAD_FILE_LIMIT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_UPLOAD_FILE_LIMIT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_UPLOAD_FILE_LIMIT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_UPLOAD_FILE_LIMIT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_UPLOAD_FILE_MODE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_UPLOAD_FILE_MODE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_UPLOAD_FILE_MODE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_UPLOAD_FILE_MODE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_ABORT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_ABORT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_ABORT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_ABORT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_DETC (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_DETC (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_DETC, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_DETC, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_HTTPS (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_HTTPS (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_HTTPS, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_HTTPS, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_OFF (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_OFF (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_OFF, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_OFF, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_ON (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_ON (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_ON, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_ON, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_PARALLEL (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_PARALLEL (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_PARALLEL, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_PARALLEL, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_PROCESS_PARTIAL (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_PROCESS_PARTIAL (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_PROCESS_PARTIAL, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_PROCESS_PARTIAL, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_REJECT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_REJECT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_REJECT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_REJECT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_RELEVANT_ONLY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_RELEVANT_ONLY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_RELEVANT_ONLY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_RELEVANT_ONLY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_SERIAL (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_SERIAL (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_SERIAL, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_SERIAL, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_VALUE_WARN (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_VALUE_WARN (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_VALUE_WARN, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_VALUE_WARN, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_XML_EXTERNAL_ENTITY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_XML_EXTERNAL_ENTITY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_XML_EXTERNAL_ENTITY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_XML_EXTERNAL_ENTITY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONGIG_DIR_RESPONSE_BODY_MP (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONGIG_DIR_RESPONSE_BODY_MP (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONGIG_DIR_RESPONSE_BODY_MP, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONGIG_DIR_RESPONSE_BODY_MP, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONGIG_DIR_SEC_ARG_SEP (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONGIG_DIR_SEC_ARG_SEP (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONGIG_DIR_SEC_ARG_SEP, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONGIG_DIR_SEC_ARG_SEP, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONGIG_DIR_SEC_COOKIE_FORMAT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONGIG_DIR_SEC_COOKIE_FORMAT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONGIG_DIR_SEC_COOKIE_FORMAT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONGIG_DIR_SEC_COOKIE_FORMAT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_COOKIEV0_SEPARATOR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_COOKIEV0_SEPARATOR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_COOKIEV0_SEPARATOR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_COOKIEV0_SEPARATOR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONGIG_DIR_SEC_DATA_DIR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONGIG_DIR_SEC_DATA_DIR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONGIG_DIR_SEC_DATA_DIR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONGIG_DIR_SEC_DATA_DIR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONGIG_DIR_SEC_STATUS_ENGINE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONGIG_DIR_SEC_STATUS_ENGINE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONGIG_DIR_SEC_STATUS_ENGINE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONGIG_DIR_SEC_STATUS_ENGINE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_STREAM_IN_BODY_INSPECTION (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_STREAM_IN_BODY_INSPECTION (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_STREAM_IN_BODY_INSPECTION, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_STREAM_IN_BODY_INSPECTION, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONFIG_SEC_STREAM_OUT_BODY_INSPECTION (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONFIG_SEC_STREAM_OUT_BODY_INSPECTION (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONFIG_SEC_STREAM_OUT_BODY_INSPECTION, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONFIG_SEC_STREAM_OUT_BODY_INSPECTION, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_CONGIG_DIR_SEC_TMP_DIR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_CONGIG_DIR_SEC_TMP_DIR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_CONGIG_DIR_SEC_TMP_DIR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_CONGIG_DIR_SEC_TMP_DIR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_DIRECTIVE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_DIRECTIVE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_DIRECTIVE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_DIRECTIVE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_DIRECTIVE_SECRULESCRIPT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_DIRECTIVE_SECRULESCRIPT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_DIRECTIVE_SECRULESCRIPT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_DIRECTIVE_SECRULESCRIPT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_FREE_TEXT_QUOTE_MACRO_EXPANSION (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_FREE_TEXT_QUOTE_MACRO_EXPANSION (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_FREE_TEXT_QUOTE_MACRO_EXPANSION, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_FREE_TEXT_QUOTE_MACRO_EXPANSION, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_QUOTATION_MARK (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_QUOTATION_MARK (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_QUOTATION_MARK, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_QUOTATION_MARK, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_BLD (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_BLD (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_BLD, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_BLD, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_DUR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_DUR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_DUR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_DUR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_HSV (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_HSV (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_HSV, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_HSV, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_REMOTE_USER (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_REMOTE_USER (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_REMOTE_USER, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_REMOTE_USER, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_TIME (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_TIME (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_TIME, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_TIME, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_TIME_DAY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_TIME_DAY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_TIME_DAY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_TIME_DAY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_TIME_EPOCH (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_TIME_EPOCH (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_TIME_EPOCH, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_TIME_EPOCH, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_TIME_HOUR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_TIME_HOUR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_TIME_HOUR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_TIME_HOUR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_TIME_MIN (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_TIME_MIN (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_TIME_MIN, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_TIME_MIN, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_TIME_MON (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_TIME_MON (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_TIME_MON, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_TIME_MON, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_TIME_SEC (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_TIME_SEC (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_TIME_SEC, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_TIME_SEC, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_TIME_WDAY (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_TIME_WDAY (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_TIME_WDAY, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_TIME_WDAY, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_RUN_TIME_VAR_TIME_YEAR (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_RUN_TIME_VAR_TIME_YEAR (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_RUN_TIME_VAR_TIME_YEAR, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_RUN_TIME_VAR_TIME_YEAR, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_VARIABLE (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_VARIABLE (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_VARIABLE, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_VARIABLE, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_DICT_ELEMENT (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_DICT_ELEMENT (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_DICT_ELEMENT, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_DICT_ELEMENT, v, l); } - inline seclang_parser::symbol_type - seclang_parser::make_DICT_ELEMENT_REGEXP (YY_COPY (std::string) v, YY_COPY (location_type) l) + seclang_parser::make_DICT_ELEMENT_REGEXP (const std::string& v, const location_type& l) { - return symbol_type (token::TOK_DICT_ELEMENT_REGEXP, YY_MOVE (v), YY_MOVE (l)); + return symbol_type (token::TOK_DICT_ELEMENT_REGEXP, v, l); } } // yy -#line 6445 "seclang-parser.hh" // lalr1.cc:403 +#line 6184 "seclang-parser.hh" // lalr1.cc:377 diff --git a/src/parser/seclang-scanner.cc b/src/parser/seclang-scanner.cc index bfaff535fb..5b0a9aa19d 100644 --- a/src/parser/seclang-scanner.cc +++ b/src/parser/seclang-scanner.cc @@ -1,11 +1,12 @@ -#line 2 "seclang-scanner.cc" +#line 3 "seclang-scanner.cc" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ /* %not-for-header */ + /* %if-c-only */ /* %if-not-reentrant */ @@ -16,7 +17,7 @@ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 6 -#define YY_FLEX_SUBMINOR_VERSION 4 +#define YY_FLEX_SUBMINOR_VERSION 1 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif @@ -25,7 +26,7 @@ /* %endif */ /* %if-c-only */ - + /* %endif */ /* %if-c-only */ @@ -107,17 +108,12 @@ typedef unsigned int flex_uint32_t; #define UINT32_MAX (4294967295U) #endif -#ifndef SIZE_MAX -#define SIZE_MAX (~(size_t)0) -#endif - #endif /* ! C99 */ #endif /* ! FLEXINT_H */ /* %endif */ -/* begin standard C++ headers. */ /* %if-c++-only */ /* %endif */ @@ -131,15 +127,19 @@ typedef unsigned int flex_uint32_t; #endif /* %not-for-header */ + /* Returned upon end-of-file. */ #define YY_NULL 0 /* %ok-for-header */ /* %not-for-header */ -/* Promotes a possibly negative, possibly signed char to an - * integer in range [0..255] for use as an array index. + +/* Promotes a possibly negative, possibly signed char to an unsigned + * integer for use as an array index. If the signed char is negative, + * we want to instead treat it as an 8-bit unsigned char, hence the + * double cast. */ -#define YY_SC_TO_UI(c) ((YY_CHAR) (c)) +#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* %ok-for-header */ /* %if-reentrant */ @@ -154,16 +154,20 @@ typedef unsigned int flex_uint32_t; * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * + /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START + /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) + /* Special action meaning "start processing a new file". */ -#define YY_NEW_FILE yyrestart( yyin ) +#define YY_NEW_FILE yyrestart(yyin ) + #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ @@ -206,7 +210,7 @@ extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 - + #define YY_LESS_LINENO(n) #define YY_LINENO_REWIND_TO(ptr) @@ -223,6 +227,7 @@ extern FILE *yyin, *yyout; YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) + #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE @@ -297,6 +302,7 @@ struct yy_buffer_state /* %if-c-only Standard (non-C++) definition */ /* %not-for-header */ + /* %if-not-reentrant */ /* Stack of input buffers. */ @@ -317,6 +323,7 @@ static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) + /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ @@ -326,6 +333,7 @@ static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */ /* %if-not-reentrant */ /* %not-for-header */ + /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ @@ -344,48 +352,52 @@ static int yy_did_buffer_switch_on_eof; /* %endif */ -void yyrestart ( FILE *input_file ); -void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer ); -YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size ); -void yy_delete_buffer ( YY_BUFFER_STATE b ); -void yy_flush_buffer ( YY_BUFFER_STATE b ); -void yypush_buffer_state ( YY_BUFFER_STATE new_buffer ); -void yypop_buffer_state ( void ); +void yyrestart (FILE *input_file ); +void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); +YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); +void yy_delete_buffer (YY_BUFFER_STATE b ); +void yy_flush_buffer (YY_BUFFER_STATE b ); +void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); +void yypop_buffer_state (void ); + +static void yyensure_buffer_stack (void ); +static void yy_load_buffer_state (void ); +static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); -static void yyensure_buffer_stack ( void ); -static void yy_load_buffer_state ( void ); -static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file ); -#define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER ) +#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) -YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size ); -YY_BUFFER_STATE yy_scan_string ( const char *yy_str ); -YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len ); +YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); +YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); +YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); /* %endif */ -void *yyalloc ( yy_size_t ); -void *yyrealloc ( void *, yy_size_t ); -void yyfree ( void * ); +void *yyalloc (yy_size_t ); +void *yyrealloc (void *,yy_size_t ); +void yyfree (void * ); #define yy_new_buffer yy_create_buffer + #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ - yy_create_buffer( yyin, YY_BUF_SIZE ); \ + yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } + #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ - yy_create_buffer( yyin, YY_BUF_SIZE ); \ + yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } + #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */ @@ -395,13 +407,15 @@ void yyfree ( void * ); #define YY_SKIP_YYWRAP #define FLEX_DEBUG -typedef flex_uint8_t YY_CHAR; + +typedef unsigned char YY_CHAR; FILE *yyin = NULL, *yyout = NULL; typedef int yy_state_type; extern int yylineno; + int yylineno = 1; extern char *yytext; @@ -414,10 +428,10 @@ extern char *yytext; /* %if-c-only Standard (non-C++) definition */ -static yy_state_type yy_get_previous_state ( void ); -static yy_state_type yy_try_NUL_trans ( yy_state_type current_state ); -static int yy_get_next_buffer ( void ); -static void yynoreturn yy_fatal_error ( const char* msg ); +static yy_state_type yy_get_previous_state (void ); +static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); +static int yy_get_next_buffer (void ); +static void yynoreturn yy_fatal_error (yyconst char* msg ); /* %endif */ @@ -432,9 +446,10 @@ static void yynoreturn yy_fatal_error ( const char* msg ); *yy_cp = '\0'; \ /* %% [3.0] code to copy yytext_ptr to yytext[] goes here, if %array \ */\ (yy_c_buf_p) = yy_cp; + /* %% [4.0] data tables for the DFA and the user's section 1 definitions go here */ -#define YY_NUM_RULES 536 -#define YY_END_OF_BUFFER 537 +#define YY_NUM_RULES 537 +#define YY_END_OF_BUFFER 538 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info @@ -442,172 +457,172 @@ struct yy_trans_info flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static const flex_int16_t yy_accept[3911] = +static yyconst flex_int16_t yy_accept[3918] = { 0, - 0, 0, 0, 0, 270, 270, 278, 278, 0, 0, + 0, 0, 0, 0, 271, 271, 279, 279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 282, 282, 0, 0, 0, 0, + 0, 0, 0, 0, 283, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 537, 529, 523, 263, 267, 268, - 266, 269, 529, 529, 529, 529, 529, 529, 529, 529, - 529, 529, 529, 529, 529, 286, 286, 536, 286, 286, - - 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, - 286, 286, 286, 286, 286, 286, 125, 270, 276, 278, - 280, 274, 273, 275, 272, 278, 271, 487, 487, 486, - 487, 487, 487, 120, 119, 118, 127, 127, 127, 134, + 0, 0, 0, 0, 538, 530, 524, 264, 268, 269, + 267, 270, 530, 530, 530, 530, 530, 530, 530, 530, + 530, 530, 530, 530, 530, 287, 287, 537, 287, 287, + + 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, + 287, 287, 287, 287, 287, 287, 125, 271, 277, 279, + 281, 275, 274, 276, 273, 279, 272, 488, 488, 487, + 488, 488, 488, 120, 119, 118, 127, 127, 127, 134, 126, 127, 129, 129, 129, 128, 134, 129, 132, 132, - 132, 131, 134, 130, 132, 528, 528, 528, 536, 489, - 488, 440, 443, 536, 443, 440, 440, 440, 430, 430, - 430, 433, 435, 430, 434, 430, 424, 430, 497, 497, - 497, 496, 501, 497, 499, 499, 499, 498, 501, 499, + 132, 131, 134, 130, 132, 529, 529, 529, 537, 490, + 489, 441, 444, 537, 444, 441, 441, 441, 431, 431, + 431, 434, 436, 431, 435, 431, 425, 431, 498, 498, + 498, 497, 502, 498, 500, 500, 500, 499, 502, 500, 117, 117, 109, 117, 114, 108, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, - 117, 117, 117, 117, 112, 117, 111, 536, 506, 536, - 502, 515, 536, 282, 283, 536, 493, 493, 492, 495, - 493, 491, 491, 490, 495, 491, 149, 530, 531, 532, + 117, 117, 117, 117, 112, 117, 111, 537, 507, 537, + 503, 516, 537, 283, 284, 537, 494, 494, 493, 496, + 494, 492, 492, 491, 496, 492, 149, 531, 532, 533, 136, 135, 136, 136, 136, 136, 136, 136, 140, 139, 144, 145, 145, 144, 142, 141, 139, 147, 148, 148, - 146, 147, 523, 263, 0, 266, 266, 266, 0, 0, - 0, 0, 0, 0, 0, 0, 215, 0, 0, 0, - 0, 0, 524, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 409, 0, 0, 0, - - 0, 0, 0, 0, 0, 0, 0, 0, 414, 0, - 0, 0, 0, 0, 121, 0, 124, 270, 276, 278, - 280, 277, 278, 279, 280, 281, 523, 0, 0, 0, + 146, 147, 524, 264, 0, 267, 267, 267, 0, 0, + 0, 0, 0, 0, 0, 0, 216, 0, 0, 0, + 0, 0, 525, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 410, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 415, 0, + 0, 0, 0, 0, 121, 0, 124, 271, 277, 279, + 281, 278, 279, 280, 281, 282, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 0, 127, 127, 127, 0, 133, 121, 127, 127, 129, 0, 0, 129, 129, 129, 0, 129, 121, 129, 132, 0, 0, 132, 132, - 132, 0, 132, 121, 132, 528, 528, 528, 0, 526, - 528, 440, 0, 440, 0, 440, 440, 0, 440, 440, - 430, 0, 0, 429, 430, 430, 430, 0, 430, 500, - - 430, 430, 0, 429, 0, 430, 422, 423, 430, 430, - 497, 0, 0, 497, 497, 497, 0, 497, 121, 497, - 499, 0, 499, 499, 0, 499, 0, 0, 121, 499, - 499, 0, 109, 0, 108, 0, 110, 114, 115, 0, + 132, 0, 132, 121, 132, 529, 529, 529, 0, 527, + 529, 441, 0, 441, 0, 441, 441, 0, 441, 441, + 431, 0, 0, 430, 431, 431, 431, 0, 431, 501, + + 431, 431, 0, 430, 0, 431, 423, 424, 431, 431, + 498, 0, 0, 498, 498, 498, 0, 498, 121, 498, + 500, 0, 500, 500, 0, 500, 0, 0, 121, 500, + 500, 0, 109, 0, 108, 0, 110, 114, 115, 0, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 0, 0, 112, 0, 113, 111, - 111, 0, 506, 0, 515, 0, 506, 504, 514, 0, - 502, 515, 0, 0, 522, 0, 505, 0, 282, 283, + 111, 0, 507, 0, 516, 0, 507, 505, 515, 0, + 503, 516, 0, 0, 523, 0, 506, 0, 283, 284, - 0, 283, 0, 0, 493, 0, 493, 0, 494, 493, - 491, 0, 0, 491, 0, 491, 530, 531, 532, 0, + 0, 284, 0, 0, 494, 0, 494, 0, 495, 494, + 492, 0, 0, 492, 0, 492, 531, 532, 533, 0, 0, 0, 0, 0, 0, 137, 138, 144, 0, 0, 144, 0, 144, 143, 147, 0, 0, 147, 0, 147, - 266, 0, 0, 0, 0, 0, 0, 0, 214, 0, - 0, 0, 0, 0, 0, 0, 524, 525, 0, 0, - 0, 392, 0, 0, 382, 0, 0, 0, 417, 0, + 267, 0, 0, 0, 0, 0, 0, 0, 215, 0, + 0, 0, 0, 0, 0, 0, 525, 526, 0, 0, + 0, 393, 0, 0, 383, 0, 0, 0, 418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 420, 0, 0, 0, 0, 390, 121, - 122, 123, 0, 0, 0, 0, 461, 0, 462, 0, + 0, 0, 0, 421, 0, 0, 0, 0, 391, 121, + 122, 123, 0, 0, 0, 0, 462, 0, 463, 0, - 463, 0, 0, 466, 467, 469, 0, 0, 471, 0, - 0, 0, 0, 0, 0, 462, 0, 0, 0, 127, + 464, 0, 0, 467, 468, 470, 0, 0, 472, 0, + 0, 0, 0, 0, 0, 463, 0, 0, 0, 127, 0, 0, 121, 122, 0, 129, 0, 0, 121, 122, - 0, 132, 0, 0, 121, 122, 526, 527, 440, 0, - 440, 0, 440, 0, 0, 0, 440, 0, 430, 0, - 0, 430, 0, 429, 0, 430, 430, 430, 430, 430, - 0, 0, 0, 0, 430, 430, 430, 0, 497, 0, - 0, 121, 122, 0, 499, 0, 0, 121, 121, 122, + 0, 132, 0, 0, 121, 122, 527, 528, 441, 0, + 441, 0, 441, 0, 0, 0, 441, 0, 431, 0, + 0, 431, 0, 430, 0, 431, 431, 431, 431, 431, + 0, 0, 0, 0, 431, 431, 431, 0, 498, 0, + 0, 121, 122, 0, 500, 0, 0, 121, 121, 122, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 106, 107, 504, 514, 510, 513, 0, 517, - 0, 0, 522, 0, 0, 505, 503, 512, 0, 0, - 284, 0, 0, 493, 0, 0, 0, 491, 0, 0, + 0, 0, 106, 107, 505, 515, 511, 514, 0, 518, + 0, 0, 523, 0, 0, 506, 504, 513, 0, 0, + 285, 0, 0, 494, 0, 0, 0, 492, 0, 0, 0, 0, 0, 0, 0, 144, 0, 0, 0, 147, - 0, 0, 266, 0, 0, 0, 0, 0, 168, 0, + 0, 0, 267, 0, 0, 0, 0, 0, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, - 525, 358, 0, 0, 393, 0, 0, 383, 0, 0, + 526, 359, 0, 0, 394, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 386, 0, 0, 0, 405, 0, 0, 415, - 0, 0, 391, 122, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 468, 470, 0, 0, 0, 0, 0, + 0, 0, 387, 0, 0, 0, 406, 0, 0, 416, + 0, 0, 392, 122, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 469, 471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 0, 122, 129, 0, - 122, 132, 0, 122, 527, 440, 0, 0, 0, 0, - 440, 0, 0, 436, 441, 437, 436, 441, 437, 430, - 0, 430, 430, 430, 0, 430, 0, 0, 0, 0, - 430, 0, 429, 0, 430, 430, 425, 431, 426, 425, + 122, 132, 0, 122, 528, 441, 0, 0, 0, 0, + 441, 0, 0, 437, 442, 438, 437, 442, 438, 431, + 0, 431, 431, 431, 0, 431, 0, 0, 0, 0, + 431, 0, 430, 0, 431, 431, 426, 432, 427, 426, - 431, 426, 0, 0, 430, 430, 497, 0, 122, 499, + 432, 427, 0, 0, 431, 431, 498, 0, 122, 500, 0, 122, 122, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 49, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 63, 0, 0, 107, 510, 513, 509, 517, - 0, 520, 0, 0, 516, 0, 0, 503, 512, 508, - 511, 284, 0, 285, 493, 0, 491, 0, 0, 0, + 0, 0, 63, 0, 0, 107, 511, 514, 510, 518, + 0, 521, 0, 0, 517, 0, 0, 504, 513, 509, + 512, 285, 0, 286, 494, 0, 492, 0, 0, 0, - 0, 0, 144, 0, 147, 0, 266, 266, 211, 0, - 0, 213, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 144, 0, 147, 0, 267, 267, 212, 0, + 0, 214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 359, 0, 0, 0, 374, + 0, 0, 0, 0, 0, 360, 0, 0, 0, 375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 387, 0, 0, 0, 0, - 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 485, 0, 0, 0, + 0, 0, 0, 0, 0, 388, 0, 0, 0, 0, + 0, 0, 422, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 438, 438, 438, 0, 0, 427, 427, - 0, 0, 0, 430, 430, 0, 427, 0, 430, 0, + 0, 0, 0, 439, 439, 439, 0, 0, 428, 428, + 0, 0, 0, 431, 431, 0, 428, 0, 431, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 14, 0, 0, 16, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 509, 520, 0, - 521, 516, 0, 518, 0, 508, 511, 507, 285, 0, + 0, 0, 0, 0, 0, 0, 0, 510, 521, 0, + 522, 517, 0, 519, 0, 509, 512, 508, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 266, 266, 0, 0, 0, 169, 0, 0, 218, 0, + 267, 267, 0, 0, 0, 169, 0, 0, 219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 220, 0, 0, 0, 0, 0, - 0, 375, 0, 0, 408, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 221, 0, 0, 0, 0, 0, + 0, 376, 0, 0, 409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 412, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 472, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 442, 439, 442, 439, 432, 428, 432, - 428, 0, 427, 0, 0, 0, 430, 0, 0, 0, + 0, 0, 0, 473, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 443, 440, 443, 440, 433, 429, 433, + 429, 0, 428, 0, 0, 0, 431, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 41, 41, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 74, 0, - 92, 0, 0, 0, 0, 0, 0, 0, 0, 521, - 518, 0, 519, 507, 0, 0, 0, 266, 266, 0, + 92, 0, 0, 0, 0, 0, 0, 0, 0, 522, + 519, 0, 520, 508, 0, 0, 0, 267, 267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 257, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 416, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 411, 0, 0, + 0, 0, 417, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 457, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 41, 0, 41, 41, 0, 0, @@ -615,19 +630,19 @@ static const flex_int16_t yy_accept[3911] = 52, 0, 54, 22, 55, 56, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 64, 0, 0, 65, 519, 0, 0, 266, - 266, 0, 0, 0, 216, 0, 0, 0, 0, 0, + 0, 0, 64, 0, 0, 65, 520, 0, 0, 267, + 267, 0, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 360, 0, 0, 0, 395, 0, + 0, 0, 0, 0, 361, 0, 0, 0, 396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 410, 0, - 0, 0, 0, 419, 0, 0, 398, 0, 0, 401, - 402, 403, 0, 0, 0, 0, 357, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 465, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 411, 0, + 0, 0, 0, 420, 0, 0, 399, 0, 0, 402, + 403, 404, 0, 0, 0, 0, 358, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, @@ -635,20 +650,20 @@ static const flex_int16_t yy_accept[3911] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 64, 0, 266, 266, 0, - 0, 0, 0, 533, 0, 0, 259, 0, 0, 0, + 0, 0, 0, 0, 0, 64, 0, 267, 267, 0, + 0, 0, 0, 534, 0, 0, 260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 361, 0, 0, 362, 294, 0, + 0, 0, 0, 0, 362, 0, 0, 363, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 322, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 418, 0, 0, 0, - 0, 353, 0, 0, 400, 406, 404, 354, 0, 0, - 0, 459, 0, 0, 460, 0, 0, 0, 0, 464, - 0, 473, 0, 0, 481, 0, 0, 0, 0, 0, + 323, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 419, 0, 0, 0, + 0, 354, 0, 0, 401, 407, 405, 355, 0, 0, + 0, 460, 0, 0, 461, 0, 0, 0, 0, 465, + 0, 474, 0, 0, 482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 40, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 51, 0, @@ -656,20 +671,20 @@ static const flex_int16_t yy_accept[3911] = 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 266, 266, 264, 0, 264, 216, 0, 0, 0, 0, + 267, 267, 265, 0, 265, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 241, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 290, 363, 0, 0, 0, 0, 0, 0, + 0, 0, 291, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 399, 0, 0, 0, 0, 0, 0, 476, - 0, 484, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 482, 483, 0, 0, 0, 0, 0, 25, 0, + 0, 0, 400, 0, 0, 0, 0, 0, 0, 477, + 0, 485, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 483, 484, 0, 0, 0, 0, 0, 25, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 48, 0, 48, 10, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, @@ -677,21 +692,21 @@ static const flex_int16_t yy_accept[3911] = 0, 0, 0, 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93, - 0, 0, 0, 0, 0, 266, 0, 264, 264, 264, - 264, 264, 0, 534, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 267, 0, 265, 265, 265, + 265, 265, 0, 535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, - 0, 0, 366, 364, 0, 0, 0, 0, 0, 300, + 0, 191, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 233, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, + 0, 0, 367, 365, 0, 0, 0, 0, 0, 301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 324, 325, 326, 397, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 342, 0, - 0, 0, 0, 0, 350, 351, 352, 413, 0, 0, - 474, 0, 0, 448, 445, 0, 0, 468, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 454, 0, 451, + 0, 0, 0, 0, 325, 326, 327, 398, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 343, 0, + 0, 0, 0, 0, 351, 352, 353, 414, 0, 0, + 475, 0, 0, 449, 446, 0, 0, 469, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 455, 0, 452, 0, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, @@ -700,21 +715,21 @@ static const flex_int16_t yy_accept[3911] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 0, 0, 0, 91, 0, 78, 77, 0, 79, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 94, 80, 83, 81, 0, 266, - 266, 0, 0, 0, 0, 219, 0, 0, 0, 0, + 0, 0, 0, 0, 94, 80, 83, 81, 0, 267, + 267, 0, 0, 0, 0, 220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 229, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 242, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 230, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 251, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 252, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 367, 365, - 0, 0, 297, 0, 0, 372, 0, 394, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 368, 366, + 0, 0, 298, 0, 0, 373, 0, 395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 323, 0, 0, 0, 334, 0, 0, 0, 338, + 0, 324, 0, 0, 0, 335, 0, 0, 0, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 447, 475, 0, 0, 0, 478, 0, 0, 0, - 0, 0, 453, 0, 0, 0, 0, 24, 0, 0, + 0, 448, 476, 0, 0, 0, 479, 0, 0, 0, + 0, 0, 454, 0, 0, 0, 0, 24, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 44, 44, 0, 44, 0, 44, 44, 0, 0, 47, 0, 0, 47, 0, 0, 0, 0, 0, 0, @@ -723,160 +738,161 @@ static const flex_int16_t yy_accept[3911] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 265, 265, 265, 265, 265, 212, 0, 0, 0, 0, - 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, - 0, 174, 0, 0, 0, 0, 0, 0, 240, 0, - 0, 0, 189, 0, 0, 0, 0, 188, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 233, 0, 0, - - 0, 0, 0, 153, 153, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 373, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 328, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 343, 0, 0, 0, 0, 0, 0, 458, - 0, 0, 0, 479, 0, 0, 0, 0, 0, 0, - 24, 25, 26, 0, 0, 0, 0, 0, 0, 103, - 44, 43, 44, 44, 43, 0, 0, 44, 43, 0, - 0, 44, 43, 44, 44, 45, 47, 48, 0, 0, - 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, + 266, 266, 266, 266, 266, 213, 0, 0, 0, 0, + 0, 166, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 240, 0, 0, 0, 0, 0, + 0, 0, 174, 0, 0, 0, 0, 0, 0, 241, + 0, 0, 0, 190, 0, 0, 0, 0, 189, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 234, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 88, 0, 0, 0, 0, 0, 0, - 217, 0, 161, 0, 163, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 237, 0, 0, 0, 0, 0, - 0, 0, 230, 0, 0, 0, 0, 0, 0, 247, - 0, 0, 262, 262, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 153, 153, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 207, 0, 0, 0, 0, 0, 0, 0, - 0, 288, 0, 0, 388, 0, 0, 0, 0, 0, + 0, 0, 0, 329, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 344, 0, 0, 0, 0, 0, 0, + 459, 0, 0, 0, 480, 0, 0, 0, 0, 0, + 0, 24, 25, 26, 0, 0, 0, 0, 0, 0, + 103, 44, 43, 44, 44, 43, 0, 0, 44, 43, + 0, 0, 44, 43, 44, 44, 45, 47, 48, 0, + 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 339, 0, 0, 0, 0, 0, 0, 0, 0, + 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 88, 0, 0, 0, 0, 0, + 0, 218, 0, 0, 161, 0, 163, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 238, 0, 0, 0, + 0, 0, 0, 0, 231, 0, 0, 0, 0, 0, + 0, 248, 0, 0, 263, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 44, 0, 43, 0, - 44, 44, 43, 0, 43, 0, 0, 43, 0, 0, - 45, 43, 45, 45, 43, 0, 44, 43, 44, 0, - 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 60, 0, 60, 0, 60, - 0, 0, 71, 70, 0, 0, 0, 0, 0, 0, - - 0, 0, 0, 0, 0, 87, 69, 82, 0, 0, - 170, 0, 0, 0, 0, 0, 0, 173, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 175, 0, 0, - 0, 0, 0, 244, 243, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 234, 0, + 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, + 0, 0, 0, 289, 0, 0, 389, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 152, 0, 0, 0, 0, 289, 292, 0, 389, + 0, 319, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 317, 0, 0, 0, 0, - 0, 0, 0, 0, 376, 0, 378, 0, 341, 0, - - 0, 0, 349, 0, 0, 0, 0, 0, 480, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, - 0, 42, 44, 42, 0, 44, 42, 0, 0, 42, - 44, 0, 42, 0, 42, 45, 45, 42, 45, 26, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 60, 0, 0, 0, 0, 0, 96, - 96, 0, 67, 0, 0, 0, 0, 98, 0, 0, - 0, 0, 0, 0, 0, 0, 238, 0, 0, 0, - 0, 0, 0, 0, 0, 258, 0, 177, 177, 0, - 245, 0, 0, 0, 0, 0, 0, 0, 0, 0, - + 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, + 43, 0, 44, 44, 43, 0, 43, 0, 0, 43, + 0, 0, 45, 43, 45, 45, 43, 0, 44, 43, + 44, 0, 0, 0, 0, 50, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 60, 0, 60, + 0, 60, 0, 0, 71, 70, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 87, 69, 82, + 0, 0, 0, 170, 0, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 175, 0, 0, 0, 0, 0, 245, 244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, - 152, 0, 0, 293, 0, 0, 0, 396, 0, 0, - 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 332, 0, 377, - 0, 335, 379, 0, 340, 0, 380, 0, 355, 0, - 464, 0, 0, 0, 0, 0, 0, 0, 28, 0, - 0, 0, 0, 0, 0, 42, 42, 0, 42, 0, - 44, 0, 42, 45, 43, 45, 45, 0, 0, 0, + 0, 235, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 152, 0, 0, 0, 0, 290, + 293, 0, 390, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 318, 0, + 0, 0, 0, 0, 0, 0, 0, 377, 0, 379, + + 0, 342, 0, 0, 0, 350, 0, 0, 0, 0, + 0, 481, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 35, 0, 0, 42, 44, 42, 0, 44, 42, + 0, 0, 42, 44, 0, 42, 0, 42, 45, 45, + 42, 45, 26, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 0, 0, 0, + 0, 0, 96, 96, 0, 67, 0, 0, 0, 0, + 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 239, 0, 0, 0, 0, 0, 0, 0, 0, 259, + 0, 177, 177, 0, 246, 0, 0, 0, 0, 0, - 0, 0, 0, 68, 66, 100, 0, 0, 0, 0, - 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 226, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, - 0, 0, 235, 0, 0, 0, 231, 231, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 314, 0, 0, 0, 0, 0, 327, 331, 0, 0, - 0, 0, 381, 0, 348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - - 43, 43, 45, 45, 43, 45, 0, 0, 0, 0, - 0, 0, 60, 0, 72, 0, 76, 0, 0, 0, - 0, 0, 101, 0, 0, 0, 0, 164, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 176, 0, 246, - 0, 0, 0, 535, 0, 0, 0, 0, 0, 0, - 0, 0, 252, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 205, 0, 287, 0, 369, - 0, 298, 370, 0, 0, 0, 0, 308, 0, 0, + 209, 0, 0, 0, 152, 0, 0, 294, 0, 0, + 0, 397, 0, 0, 300, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 333, 0, 378, 0, 336, 380, 0, 341, 0, + 381, 0, 356, 0, 465, 0, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 0, 0, 0, 0, 42, + 42, 0, 42, 0, 44, 0, 42, 45, 43, 45, + 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 60, 0, 0, 0, 0, 0, 0, 68, 66, 100, + 0, 0, 0, 0, 0, 0, 167, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 477, 0, 0, 0, 0, - - 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, - 0, 0, 0, 0, 60, 0, 89, 95, 95, 0, - 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 154, 0, 0, 248, 179, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 192, 192, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, - 0, 295, 296, 371, 0, 0, 0, 0, 307, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 321, 0, - 333, 0, 0, 0, 0, 0, 407, 0, 0, 0, + 0, 0, 0, 254, 0, 0, 0, 236, 0, 0, + 0, 232, 232, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 369, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 315, 0, 0, 0, 0, + 0, 328, 332, 0, 0, 0, 0, 382, 0, 349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 155, 0, - 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 184, 0, 0, 0, 0, 0, 0, 0, - 193, 193, 0, 195, 195, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 209, 222, 0, 0, 0, 304, + 0, 0, 0, 0, 0, 43, 43, 45, 45, 43, + 45, 0, 0, 0, 0, 0, 0, 60, 0, 72, + 0, 76, 0, 0, 0, 0, 0, 101, 0, 0, + 0, 0, 0, 164, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 176, 0, 247, 0, 0, 0, 536, + 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 446, 0, 0, 0, - 452, 0, 0, 29, 0, 0, 0, 36, 0, 0, - 19, 0, 0, 85, 99, 0, 0, 162, 0, 0, + 0, 206, 0, 288, 0, 370, 0, 299, 371, 0, + 0, 0, 0, 309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 182, 0, 0, 187, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, - 0, 305, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 384, 336, 0, 345, 0, 449, 0, 0, - 455, 0, 0, 0, 0, 37, 0, 20, 0, 160, - 225, 225, 0, 160, 156, 0, 0, 0, 261, 0, - 249, 0, 228, 0, 0, 0, 0, 0, 0, 0, - 186, 0, 0, 194, 196, 0, 0, 0, 0, 151, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 312, 0, 0, 0, 319, 0, 0, 385, 337, + 0, 478, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, + 60, 0, 89, 95, 95, 0, 86, 0, 180, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, + 0, 0, 249, 179, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 193, 193, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 211, 0, 296, 297, + 372, 0, 0, 0, 0, 308, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 322, 0, 334, 0, 0, + 0, 0, 0, 408, 0, 0, 0, 0, 0, 0, - 0, 346, 450, 0, 456, 0, 34, 0, 0, 21, - 0, 0, 0, 157, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 151, 0, 0, 206, 0, 0, 303, 0, 0, 0, - 0, 0, 0, 0, 330, 344, 347, 0, 0, 0, - 0, 159, 0, 0, 236, 0, 0, 0, 227, 0, - 0, 260, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 309, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, - 150, 0, 0, 0, 0, 0, 181, 0, 0, 223, - - 223, 0, 204, 0, 202, 0, 0, 0, 254, 0, - 301, 0, 0, 0, 313, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 150, 0, 0, 0, 0, 185, - 0, 0, 0, 200, 0, 198, 0, 255, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, - 0, 171, 171, 0, 0, 0, 0, 0, 0, 203, - 201, 0, 0, 0, 0, 0, 315, 316, 0, 329, - 0, 0, 0, 0, 39, 0, 256, 178, 0, 183, - 0, 199, 197, 0, 0, 0, 320, 0, 0, 0, - 31, 172, 180, 224, 302, 306, 0, 33, 30, 0, - - 0, 0, 0, 0, 311, 0, 0, 0, 32, 0 + 0, 0, 0, 0, 0, 155, 0, 165, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 185, + 0, 0, 0, 0, 0, 0, 0, 194, 194, 0, + 196, 196, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 210, 223, 0, 0, 0, 305, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 447, 0, 0, 0, 453, 0, 0, + 29, 0, 0, 0, 36, 0, 0, 19, 0, 0, + 85, 99, 0, 0, 162, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 183, 0, 0, + 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 192, 0, 0, 0, 306, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 385, + 337, 0, 346, 0, 450, 0, 0, 456, 0, 0, + 0, 0, 37, 0, 20, 0, 160, 226, 226, 0, + 160, 156, 0, 0, 0, 262, 0, 250, 0, 229, + 0, 0, 0, 0, 0, 0, 0, 187, 0, 0, + 195, 197, 0, 0, 0, 0, 151, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 313, 0, + + 0, 0, 320, 0, 0, 386, 338, 0, 347, 451, + 0, 457, 0, 34, 0, 0, 21, 0, 0, 0, + 157, 0, 0, 251, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 151, 0, 0, + 207, 0, 0, 304, 0, 0, 0, 0, 0, 0, + 0, 331, 345, 348, 0, 0, 0, 0, 159, 0, + 0, 237, 0, 0, 0, 228, 0, 0, 261, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 310, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 158, 150, 0, 0, + + 0, 0, 0, 182, 0, 0, 224, 224, 0, 205, + 0, 203, 0, 0, 0, 255, 0, 302, 0, 0, + 0, 314, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 150, 0, 0, 0, 0, 186, 0, 0, 0, + 201, 0, 199, 0, 256, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 38, 0, 171, 171, + 0, 0, 0, 0, 0, 0, 204, 202, 0, 0, + 0, 0, 0, 316, 317, 0, 330, 0, 0, 0, + 0, 39, 0, 257, 178, 0, 184, 0, 200, 198, + 0, 0, 0, 321, 0, 0, 0, 31, 172, 181, + + 225, 303, 307, 0, 33, 30, 0, 0, 0, 0, + 0, 312, 0, 0, 0, 32, 0 } ; -static const YY_CHAR yy_ec[256] = +static yyconst YY_CHAR yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, @@ -908,7 +924,7 @@ static const YY_CHAR yy_ec[256] = 1, 1, 1, 1, 1 } ; -static const YY_CHAR yy_meta[88] = +static yyconst YY_CHAR yy_meta[88] = { 0, 1, 2, 3, 4, 5, 1, 6, 1, 7, 1, 1, 8, 9, 1, 10, 9, 9, 9, 11, 11, @@ -921,1095 +937,1097 @@ static const YY_CHAR yy_meta[88] = 15, 15, 15, 15, 17, 18, 1 } ; -static const flex_int16_t yy_base[4196] = +static yyconst flex_uint16_t yy_base[4203] = { 0, 0, 80, 161, 0, 4, 8, 14, 247, 21, 87, 101, 254, 25, 40, 53, 261, 265, 275, 284, 290, - 94, 304,11856,11853,11804,11803, 324, 347, 365, 383, + 94, 304,12042,12041,12039,12038, 324, 347, 365, 383, 413, 434, 314, 448, 335, 397, 505, 0, 457, 464, 591, 597, 603, 609, 419, 425, 271, 298, 102, 612, - 11802,11776,11770,11769,11766,11740,11734,11733, 614, 622, - 0, 0,11704,11696, 428, 611, 646, 668, 0, 0, - 57, 79, 620, 627,11719,14121, 673,14121,14121,14121, - 308,14121, 4, 25, 59, 52, 71, 72, 96, 279, - 315, 97, 220, 271, 8,14121, 443,14121, 655, 269, + 11987,11904,11902,11886,11882,11881,11878,11829, 614, 622, + 0, 0,11802,11799, 428, 611, 646, 668, 0, 0, + 57, 79, 620, 627,11802,14144, 673,14144,14144,14144, + 308,14144, 4, 25, 59, 52, 71, 72, 96, 279, + 315, 97, 220, 271, 8,14144, 443,14144, 655, 269, 312, 578, 673, 330, 429, 681, 327, 358, 368, 686, - 679, 699, 707, 421, 422, 38,11708, 133, 765, 771, - 783,14121,14121,14121,14121, 789,14121,14121, 631,14121, - 815, 76, 764,14121,14121,14121, 278, 798, 348, 417, - 11658, 801, 372, 829, 752,11587, 540, 814, 855, 895, - 883,11504, 546,11435, 904, 830, 901,14121, 913,14121, - 14121, 918,11429,11428,11425, 924, 957, 964, 934, 980, - 991,11381, 601, 1012,11375, 1024, 725, 1042, 770, 1054, - 831,11374, 625, 1063, 645, 978, 802, 867, 663, 1072, - 14121, 1081,14121,11425, 484, 475, 1047, 719, 764, 874, + 679, 699, 707, 421, 422, 38,11786, 133, 765, 771, + 783,14144,14144,14144,14144, 789,14144,14144, 631,14144, + 815, 76, 764,14144,14144,14144, 278, 798, 348, 417, + 11738, 801, 372, 829, 752,11735, 540, 814, 855, 895, + 883,11709, 546,11703, 904, 830, 901,14144, 913,14144, + 14144, 918,11702,11699,11691, 924, 957, 964, 934, 980, + 991,11685, 601, 1012,11684, 1024, 725, 1042, 770, 1054, + 831,11681, 625, 1063, 645, 978, 802, 867, 663, 1072, + 14144, 1081,14144,11664, 484, 475, 1047, 719, 764, 874, 717, 940, 752, 1056, 800, 953, 1064, 818, 1059, 917, - 821, 885, 405, 1139,14121,11399, 1143, 1147, 476, 309, - 1153, 1159, 410, 1011, 490, 493, 1096, 1114,11339, 911, - 1122, 1124, 1129,11338, 943, 1158,14121, 0, 0, 0, - 14121,14121, 990, 1017, 1053, 1062, 1105, 1118,14121, 120, - 1162,11335, 1113, 1168,14121,14121, 282, 1178,11310, 1116, - 11304, 1199, 1200,14121, 495, 0, 1187,11297, 1135, 1140, - 1144, 1149, 1180, 1172, 1168, 1184,14121, 1173, 1178, 1184, - 1199, 1182, 636,11354, 1229, 620, 1196, 1187, 1190, 1187, + 821, 885, 405, 1139,14144,11581, 1143, 1147, 476, 309, + 1153, 1159, 410, 1011, 490, 493, 1096, 1114,11458, 911, + 1122, 1124, 1129,11452, 943, 1158,14144, 0, 0, 0, + 14144,14144, 990, 1017, 1053, 1062, 1105, 1118,14144, 120, + 1162,11451, 1113, 1168,14144,14144, 282, 1178,11448, 1116, + 11404, 1199, 1200,14144, 495, 0, 1187,11392, 1135, 1140, + 1144, 1149, 1180, 1172, 1168, 1184,14144, 1173, 1178, 1184, + 1199, 1182, 636,11451, 1229, 620, 1196, 1187, 1190, 1187, 1198, 1200, 1198, 1199, 1213, 1221, 297, 1205, 1225, 1220, 1213, 1214, 1234, 1230, 1232, 1236, 1245, 1237, 735, 1243, - 1246, 1254, 1261, 1252, 641,11346,11258, 642, 1321, 1327, - 1333,14121, 1293,14121, 1304,14121, 1294, 1279, 1270, 1283, + 1246, 1254, 1261, 1252, 641,11448,11340, 642, 1321, 1327, + 1333,14144, 1293,14144, 1304,14144, 1294, 1279, 1270, 1283, 1297, 1268, 1304, 1311, 1298, 1302, 1317, 1302, 1314, 1328, - 1321, 1329, 1354, 1321, 1339, 920,11285, 670, 1395, 1405, - 1400,14121, 1409, 1410, 1406, 1416,11282,11274, 998, 1423, - 1431, 1417, 1429, 1435, 1440, 1439,11268,11267, 1391, 1454, - 1467, 1448, 1468, 1474, 1484, 1498, 1504,14121, 1510, 933, - 1514, 1525,11264, 1518,11225, 1541, 1561, 346, 1578, 1584, - 1585,10969,10963, 1609, 1527, 1624, 1642, 1500, 1648,14121, - - 1673, 1677, 1615, 1707, 842, 1708,14121,14121, 1733, 1739, - 1488,10962,10959, 1005, 1722, 1549, 1633, 1684, 1745, 1701, - 1568,10915, 1172, 1751, 1671, 1599, 1664, 1605, 1764, 1767, - 1734, 1780,14121,10963, 949, 816,14121, 1784,14121,10962, + 1321, 1329, 1354, 1321, 1339, 920,11362, 670, 1395, 1405, + 1400,14144, 1409, 1410, 1406, 1416,11361,11358, 998, 1423, + 1431, 1417, 1429, 1435, 1440, 1439,11333,11327, 1391, 1454, + 1467, 1448, 1468, 1474, 1484, 1498, 1504,14144, 1510, 933, + 1514, 1525,11326, 1518,11373, 1541, 1561, 346, 1578, 1584, + 1585,11315,11309, 1609, 1527, 1624, 1642, 1500, 1648,14144, + + 1673, 1677, 1615, 1707, 842, 1708,14144,14144, 1733, 1739, + 1488,11308,11305, 1005, 1722, 1549, 1633, 1684, 1745, 1701, + 1568,11297, 1172, 1751, 1671, 1599, 1664, 1605, 1764, 1767, + 1734, 1780,14144,11345, 949, 816,14144, 1784,14144,11344, 1463, 1335, 1402, 1444, 1474, 1477, 1503, 1529, 1581, 1753, - 1658, 1746,10934, 1734, 1739, 1728, 1761, 1758, 1774, 1771, - 14121, 1761, 1780, 1778, 1780, 1771, 1767, 1779, 1791, 1829, - 1792, 1782, 1806, 1533,10880, 1879,14121,10874,14121, 1883, - 1907, 1911, 1567, 701, 1917, 1075, 1691, 1560, 1847,10873, + 1658, 1746,11316, 1734, 1739, 1728, 1761, 1758, 1774, 1771, + 14144, 1761, 1780, 1778, 1780, 1771, 1767, 1779, 1791, 1829, + 1792, 1782, 1806, 1533,11252, 1879,14144,11046,14144, 1883, + 1907, 1911, 1567, 701, 1917, 1075, 1691, 1560, 1847,11040, 1923, 1930, 1861, 898, 1755, 1100, 1889, 1035, 1936, 1851, - 1110, 1937, 1942,10870, 1860,10790, 1293, 1888,14121, 1941, - 1943,10784,10783, 1428, 1945, 1947, 0, 0, 0, 1829, - 1030, 1882, 1899, 1476, 1921,14121,14121, 1956,10780,10772, - 1955, 1948, 1968,14121, 1979,10766,10765, 1996, 1978, 2008, - 10758, 1919, 1940, 1946, 1936, 1954, 1955, 1975,14121, 1985, + 1110, 1937, 1942,11039, 1860,10982, 1293, 1888,14144, 1941, + 1943,10938,10932, 1428, 1945, 1947, 0, 0, 0, 1829, + 1030, 1882, 1899, 1476, 1921,14144,14144, 1956,10931,10928, + 1955, 1948, 1968,14144, 1979,10849,10843, 1996, 1978, 2008, + 10838, 1919, 1940, 1946, 1936, 1954, 1955, 1975,14144, 1985, 1984, 1984, 1986, 2035, 1983, 1982, 1967, 2026, 1980, 1992, - 2001, 1633, 1998, 1992, 1669, 2007, 2005, 2003,14121, 2018, + 2001, 1633, 1998, 1992, 1669, 2007, 2005, 2003,14144, 2018, 2003, 2009, 2031, 2026, 2022, 2030, 2067, 2059, 2047, 2041, - 2046, 2057, 2073,14121, 2068, 2084, 2072, 2091, 2109, 2036, - 2123,14121, 2087, 2085, 2080, 2097,14121, 2078, 2093, 2107, + 2046, 2057, 2073,14144, 2068, 2084, 2072, 2091, 2109, 2036, + 2123,14144, 2087, 2085, 2080, 2097,14144, 2078, 2093, 2107, - 14121, 2092, 2099,14121,14121, 2108, 2103, 2098,14121, 2103, + 14144, 2092, 2099,14144,14144, 2108, 2103, 2098,14144, 2103, 2120, 2112, 2107, 2106, 2110, 2116, 2130, 2122, 2108, 2164, - 10609,10633, 2185, 2194,10597, 2168,10519,10529, 2198, 2205, - 10511, 2204,10479,10435, 2221, 2222, 2196, 2211, 2215, 2184, - 2251, 856, 2282,10434, 2230, 2231, 2288,10389, 2253,10360, - 10385, 2313, 2322, 2347, 2255, 2348, 2380, 2409, 2410, 2440, - 10367, 2281, 2265, 2384, 2444, 2470, 2474,10288, 2257,10254, - 10281, 2458, 2500, 2186, 2247,10250,10203, 2378, 2379, 2391, - 14121, 2195, 2232, 2246, 2259, 2274, 2269, 2294,10196, 2281, - 2295, 2309, 2332, 2370, 2390, 2497, 2393, 2430, 2427,10128, - - 2433, 2449, 2459,14121, 2459, 2463, 2464, 2468, 2471, 2494, - 10038, 2495, 2500, 2502, 2492, 2489, 2512, 2501, 2496, 2519, - 2498, 2523, 2521, 2511, 2528, 2525, 2543, 2516, 2543,10020, - 10002, 2526, 2245, 2392, 2421, 2486, 2485, 2597, 2598, 2605, - 2606, 9703, 2610, 2618, 1372, 2622, 2626, 2628, 9281, 2632, - 2636, 2638, 2537, 2596, 9198, 9225, 9224, 2637, 9195, 9222, - 2582, 2581, 2583, 2588, 9221, 2641, 9192, 9219, 9218, 2651, - 9185, 9212, 92, 2596, 2598, 2617, 2606, 2606,14121, 2607, + 10811,10813, 2185, 2194,10807, 2168,10778,10803, 2198, 2205, + 10795, 2204,10761,10788, 2221, 2222, 2196, 2211, 2215, 2184, + 2251, 856, 2282,10824, 2230, 2231, 2288,10660, 2253,10628, + 10620, 2313, 2322, 2347, 2255, 2348, 2380, 2409, 2410, 2440, + 10609, 2281, 2265, 2384, 2444, 2470, 2474,10552, 2257,10506, + 10530, 2458, 2500, 2186, 2247,10430,10418, 2378, 2379, 2391, + 14144, 2195, 2232, 2246, 2259, 2274, 2269, 2294,10441, 2281, + 2295, 2309, 2332, 2370, 2390, 2497, 2393, 2430, 2427,10440, + + 2433, 2449, 2459,14144, 2459, 2463, 2464, 2468, 2471, 2494, + 10437, 2495, 2500, 2502, 2492, 2489, 2512, 2501, 2496, 2519, + 2498, 2523, 2521, 2511, 2528, 2525, 2543, 2516, 2543,10380, + 10340, 2526, 2245, 2392, 2421, 2486, 2485, 2597, 2598, 2605, + 2606,10359, 2610, 2618, 1372, 2622, 2626, 2628,10358, 2632, + 2636, 2638, 2537, 2596,10273,10226,10190, 2637,10094,10032, + 2582, 2581, 2583, 2588,10014, 2641, 9968, 9672, 9246, 2651, + 9217, 9244, 92, 2596, 2598, 2617, 2606, 2606,14144, 2607, 2620, 2630, 2634, 2616, 2638, 2666, 2653, 2656, 2650, 2629, - 2644, 2649, 2667, 2671, 2670, 2678, 2680, 2680, 2695,14121, + 2644, 2649, 2667, 2671, 2670, 2678, 2680, 2680, 2695,14144, - 2667, 2710, 9210, 2679,14121, 2682, 9209,14121, 2705, 2702, - 2691, 2706, 2710, 2708, 2703, 9208, 2698, 2705, 2711, 2723, - 2709, 2716, 2304, 2727, 2724, 2715, 9207, 2716, 2725, 2754, - 2728, 2742,14121, 2674, 2739, 2729, 2745, 2736, 2731, 2750, - 2754, 2752, 2768, 2752,14121, 2769, 2768, 2759, 2770, 2771, + 2667, 2710, 9242, 2679,14144, 2682, 9241,14144, 2705, 2702, + 2691, 2706, 2710, 2708, 2703, 9240, 2698, 2705, 2711, 2723, + 2709, 2716, 2304, 2727, 2724, 2715, 9239, 2716, 2725, 2754, + 2728, 2742,14144, 2674, 2739, 2729, 2745, 2736, 2731, 2750, + 2754, 2752, 2768, 2752,14144, 2769, 2768, 2759, 2770, 2771, 2774, 2779, 2774, 2772, 2779, 1723, 2813, 2831, 2809, 2840, - 2846, 2820, 2842, 2852, 2853, 2866, 947, 2862, 2854, 9246, - 2887, 42, 2857, 9206, 916, 9205,14121, 9191,14121, 2886, - 2850, 2910, 2953, 2954, 1309, 2974, 2864, 2920, 9190, 2973, - 3007, 3016, 3039, 2316, 3048, 3060, 2978, 2847, 3069,14121, + 2846, 2820, 2842, 2852, 2853, 2866, 947, 2862, 2854, 9278, + 2887, 42, 2857, 9238, 916, 9232,14144, 9270,14144, 2886, + 2850, 2910, 2953, 2954, 1309, 2974, 2864, 2920, 9269, 2973, + 3007, 3016, 3039, 2316, 3048, 3060, 2978, 2847, 3069,14144, - 9189,14121, 989, 2867, 3085, 3106, 2853, 2876, 3081, 2877, + 9268,14144, 989, 2867, 3085, 3106, 2853, 2876, 3081, 2877, 2937, 2995, 2930, 2843, 2855, 2869, 2868, 2885, 2878, 2926, - 3084,14121, 2964, 2968,14121, 9177, 2956, 3130, 3153, 2982, - 2989, 2980,14121, 2994, 3037, 3037,14121, 3047, 3059, 3071, - 3054, 3064, 9192, 3069, 3086, 3082, 3094, 3097, 3108, 3093, + 3084,14144, 2964, 2968,14144, 9257, 2956, 3130, 3153, 2982, + 2989, 2980,14144, 2994, 3037, 3037,14144, 3047, 3059, 3071, + 3054, 3064, 9220, 3069, 3086, 3082, 3094, 3097, 3108, 3093, 3134, 3115, 3119, 3136, 3138, 3133, 3150, 3130, 3142, 3152, - 3143, 3135, 9168, 3147, 3141, 3154, 3159, 3150, 3160, 3155, - 3160, 3167,14121, 9144, 3155, 2909, 3011, 3122, 3102, 3123, - 3219, 3203, 3231, 3232, 3238, 3239, 9152, 3240, 3245, 3246, + 3143, 3135, 9205, 3147, 3141, 3154, 3159, 3150, 3160, 3155, + 3160, 3167,14144, 9216, 3155, 2909, 3011, 3122, 3102, 3123, + 3219, 3203, 3231, 3232, 3238, 3239, 9213, 3240, 3245, 3246, 3251, 3252, 3257, 3258, 2985, 3256, 3028, 3258, 3176, 3198, - 3216, 2934, 3260, 3259, 3264, 3262, 9093, 9072,14121, 3225, - 3228,14121, 3246, 3246, 3240, 3235, 3236, 3259, 3242, 3257, + 3216, 2934, 3260, 3259, 3264, 3262, 9153, 9131,14144, 3225, + 3228,14144, 3246, 3246, 3240, 3235, 3236, 3259, 3242, 3257, 3261, 3263, 3249, 3260, 3248, 3275, 3250, 3255, 3297, 3303, 3287, 3287, 3288, 3292, 3293, 3299, 3301, 3301, 3313, 3301, - 3311, 3309, 3320, 3311, 3312,14121, 3350, 3306, 3319, 3371, - 3315, 3325, 3336, 3346, 3357, 3360, 3351, 3347, 3361, 9088, - 3367, 3369, 3355, 3357, 3362,14121, 3359, 3363, 3360, 3404, - 3377, 3383,14121, 3383, 3377, 3379, 3397, 3412, 3413, 3395, - 3394, 3405, 3407, 3419, 3406, 3413,14121, 3413, 3430, 3418, - 3429, 3428, 3426, 3435, 3427, 3429, 3445, 3426, 9060, 9087, - - 9058, 9085, 8914, 3501, 3479, 1508, 8822, 8746, 3510, 3480, + 3311, 3309, 3320, 3311, 3312,14144, 3350, 3306, 3319, 3371, + 3315, 3325, 3336, 3346, 3357, 3360, 3351, 3347, 3361, 9150, + 3367, 3369, 3355, 3357, 3362,14144, 3359, 3363, 3360, 3404, + 3377, 3383,14144, 3383, 3377, 3379, 3397, 3412, 3413, 3395, + 3394, 3405, 3407, 3419, 3406, 3413,14144, 3413, 3430, 3418, + 3429, 3428, 3426, 3435, 3427, 3429, 3445, 3426, 9122, 9149, + + 9087, 9114, 9085, 3501, 3479, 1508, 9112, 9082, 3510, 3480, 3484, 3487, 1344, 3519, 3545, 3522, 3579, 3554, 3588, 3525, - 3602, 8773, 8730, 3442, 8684, 3479, 8740, 3479, 3472,14121, - 3470,14121, 3485, 3504, 3550, 3538, 3560, 8675, 3577, 3627, - 3569, 3565, 3577, 3584, 3589,14121,14121, 8617, 3586,14121, - 3597, 8577, 0, 3594, 3582, 3602, 3607, 3623, 3616, 3627, + 3602, 8962, 8773, 3442, 8772, 3479, 8769, 3479, 3472,14144, + 3470,14144, 3485, 3504, 3550, 3538, 3560, 8784, 3577, 3627, + 3569, 3565, 3577, 3584, 3589,14144,14144, 8767, 3586,14144, + 3597, 8702, 0, 3594, 3582, 3602, 3607, 3623, 3616, 3627, 3651, 3631, 3619, 3644, 3638, 3635, 3648, 3652, 3652, 3642, - 3654, 3653, 3656,14121, 3658, 3654, 3659, 3654, 3658, 8547, - 3663, 3659, 3668, 3670, 8446, 18, 8441, 3573, 3616, 3617, + 3654, 3653, 3656,14144, 3658, 3654, 3659, 3654, 3658, 8652, + 3663, 3659, 3668, 3670, 8644, 18, 8583, 3573, 3616, 3617, 3621, 3711, 3732, 3718, 3733, 3739, 3740, 3741, 3746, 3665, - 8383, 8312, 8267, 3682, 3688, 3704, 8294, 8265, 8233, 8189, - 8190, 8196, 3705, 3715, 3720,14121, 3721, 3708,14121, 3714, + 8524, 8548, 8510, 3682, 3688, 3704, 8534, 8500, 8454, 8324, + 8316, 8319, 3705, 3715, 3720,14144, 3721, 3708,14144, 3714, 3720, 3709, 3722, 3724, 3718, 3723, 3720, 3723, 3727, 3738, 3719, 3740, 3741, 3732, 3733, 3728, 3740, 3733, 3745, 3751, 3770, 3764, 3759, 3765, 3777, 3764, 3762, 3765, 3781, 3783, - 3785, 3774, 3790, 3787,14121, 3778, 3789, 3794, 3781, 3772, - 3783,14121, 3815, 3794, 3009, 3780, 3800, 3801, 8168, 3830, - 3822, 3823, 3819, 8043, 3814, 3820, 3838, 3823, 8005, 3829, - 7998, 3843, 3829, 3832, 3839, 3844, 3846, 3846, 7988, 3837, - 14121, 3844, 3833, 3837, 3849, 3840, 3852, 3866, 3870, 3872, - - 3887, 3888, 3879,14121, 3873, 3890, 3894, 3871, 3883, 3878, - 3884, 3896, 3900, 3915, 2888, 1689, 8021, 3916, 3959, 1818, - 7966, 3950, 1837, 3960, 1749, 2990, 3980, 3918, 3902, 3938, - 14121, 3897, 3941, 3946, 3935, 3944, 3951, 3963, 3957, 0, - 4008, 3945,14121, 3957, 3969, 3955, 3975, 3976, 4018, 3995, - 3998, 7958, 3986, 7831, 7830, 7806, 7787, 7718, 3989, 4049, - 3999, 7688, 7668, 4011, 4003, 4017, 4007, 4020, 4012, 4023, - 4028, 4012, 4016,14121, 4051, 4035, 4035, 4060,14121, 4058, - 4053, 4048, 4062, 4054, 4049, 966, 7634, 2182, 0, 3935, - 3936, 4036, 4040, 4042, 3052, 4067, 4058, 7619, 7622, 4068, + 3785, 3774, 3790, 3787,14144, 3778, 3789, 3794, 3781, 3772, + 3783,14144, 3815, 3794, 3009, 3780, 3800, 3801, 8306, 3830, + 3822, 3823, 3819, 8265, 3814, 3820, 3838, 3823, 8258, 3829, + 8250, 3843, 3829, 3832, 3839, 3844, 3846, 3846, 8227, 3837, + 14144, 3844, 3833, 3837, 3849, 3840, 3852, 3866, 3870, 3872, + + 3887, 3888, 3879,14144, 3873, 3890, 3894, 3871, 3883, 3878, + 3884, 3896, 3900, 3915, 2888, 1689, 8260, 3916, 3959, 1818, + 8254, 3950, 1837, 3960, 1749, 2990, 3980, 3918, 3902, 3938, + 14144, 3897, 3941, 3946, 3935, 3944, 3951, 3963, 3957, 0, + 4008, 3945,14144, 3957, 3969, 3955, 3975, 3976, 4018, 3995, + 3998, 8234, 3986, 8160, 8159, 8137, 8106, 8105, 3989, 4049, + 3999, 8047, 8048, 4011, 4003, 4017, 4007, 4020, 4012, 4023, + 4028, 4012, 4016,14144, 4051, 4035, 4035, 4060,14144, 4058, + 4053, 4048, 4062, 4054, 4049, 966, 7941, 2182, 0, 3935, + 3936, 4036, 4040, 4042, 3052, 4067, 4058, 7916, 7915, 4068, 4059, 4103, 4064, 4061, 4059, 4066, 4069, 4064, 4081, 4072, 4083, 4075, 4101, 4087, 4094, 4104, 4104, 4092, 4115, 4106, 4107, 4119, 4122, 4123, 4108, 4123, 4116, 4110, 4127, 4122, 4159, 4127, 4138, 4123, 4145, 4139, 4158, 4147, 4166, 4153, 4149, 4166, 4161, 4169, 4164, 4168, 4171, 4171, 4187, 4180, - 4178, 4176,14121, 7623, 7506, 7460, 4192, 4180, 4195, 4194, - 4182, 4217, 7455, 7369, 4199, 4210, 4223, 4233, 4211, 4204, + 4178, 4176,14144, 7871, 7765, 7688, 4192, 4180, 4195, 4194, + 4182, 4217, 7663, 7627, 4199, 4210, 4223, 4233, 4211, 4204, 4219, 4214, 4222, 4226, 4238, 4243, 4244, 4238, 4244, 4245, 4245, 4231, 4241, 4255, 4236, 4257, 4248, 4249, 4251, 4272, - 4275, 4282, 4280, 4270, 4291,14121, 4272, 4281, 4284, 4275, + 4275, 4282, 4280, 4270, 4291,14144, 4272, 4281, 4284, 4275, - 4309, 4326, 4328, 4273, 4293, 4299, 4304,14121, 4303, 4312, - 4307, 4325, 4311, 4318, 4369, 2441, 7354, 4375, 4333, 7378, - 7347, 4310, 4322, 4333, 4359, 4389, 4333, 4361,14121, 4347, - 14121, 4364,14121,14121,14121,14121, 7357, 4347, 4382, 4417, - 7195, 4374, 4384, 4387, 4386, 4389, 4390, 4384, 4386, 4396, + 4309, 4326, 4328, 4273, 4293, 4299, 4304,14144, 4303, 4312, + 4307, 4325, 4311, 4318, 4369, 2441, 7513, 4375, 4333, 7537, + 7497, 4310, 4322, 4333, 4359, 4389, 4333, 4361,14144, 4347, + 14144, 4364,14144,14144,14144,14144, 7506, 4347, 4382, 4417, + 7436, 4374, 4384, 4387, 4386, 4389, 4390, 4384, 4386, 4396, 4419, 4411, 4399, 4420, 4424, 4404, 4425, 4422, 4430, 4431, - 4432, 4421, 7156, 3511, 7200, 0, 4465, 4433, 4456, 7138, - 1989, 4425, 4427, 4470,14121, 4443, 4431, 4434, 4444, 4463, + 4432, 4421, 7388, 3511, 7396, 0, 4465, 4433, 4456, 7333, + 1989, 4425, 4427, 4470,14144, 4443, 4431, 4434, 4444, 4463, 4437, 4440, 4462, 4456, 4457, 4468, 4460, 4465, 4475, 4472, 4470, 4471, 4472, 4471, 4472, 4480, 4476, 4486, 4487, 4493, 4483, 4494, 4482, 4501, 4499, 4486, 4499, 4502, 4507, 4519, 4521, 4524, 4513, 4513, 4516, 4516, 4523, 4519, 4516, 4535, - 4536, 4526, 4523, 4543, 4560, 4541, 4528, 4545,14121, 4538, - 4540, 4530, 4545, 4548, 4553, 4571, 4555, 4559, 4562, 7016, - 4568, 4567, 4582, 4572, 4575, 4572, 4588, 4631, 4608, 7012, - 4588, 4593, 4581,14121, 4594, 4590,14121, 4598, 4584,14121, - 14121,14121, 4582, 4594, 4613, 4618,14121, 4607, 4619, 4612, + 4536, 4526, 4523, 4543, 4560, 4541, 4528, 4545,14144, 4538, + 4540, 4530, 4545, 4548, 4553, 4571, 4555, 4559, 4562, 7340, + 4568, 4567, 4582, 4572, 4575, 4572, 4588, 4631, 4608, 7326, + 4588, 4593, 4581,14144, 4594, 4590,14144, 4598, 4584,14144, + 14144,14144, 4582, 4594, 4613, 4618,14144, 4607, 4619, 4612, 4619, 4619, 4633, 4623, 4625, 4627, 4643, 4644, 4645, 4647, 4637, 4653, 4657, 4644, 4651, 4660, 4660, 4664, 4682, 2191, - 7037, 4688, 4673,14121, 4672, 4688, 4689, 4690, 4692, 4684, - - 6993, 4728, 6974, 3568, 7005, 4681, 0,14121, 6981, 4699, - 4689, 4749, 4691, 4711, 4719, 4721, 4716, 6980, 4736,14121, - 6979, 4711, 4777, 4746, 4743, 4734, 4743, 4740, 4745, 4747, - 4744, 4771,14121, 4779, 4774, 4779, 4786, 4780, 4787, 4787, - 4788, 4795, 4782, 4783, 4778, 3580, 4817, 6785, 6658, 6656, - 4781, 4787, 0, 4739, 4788, 4793,14121, 4796, 4800, 4801, + 7348, 4688, 4673,14144, 4672, 4688, 4689, 4690, 4692, 4684, + + 7314, 4728, 7071, 3568, 7101, 4681, 0,14144, 7054, 4699, + 4689, 4749, 4691, 4711, 4719, 4721, 4716, 7041, 4736,14144, + 7025, 4711, 4777, 4746, 4743, 4734, 4743, 4740, 4745, 4747, + 4744, 4771,14144, 4779, 4774, 4779, 4786, 4780, 4787, 4787, + 4788, 4795, 4782, 4783, 4778, 3580, 4817, 6971, 6948, 6944, + 4781, 4787, 0, 4739, 4788, 4793,14144, 4796, 4800, 4801, 4800, 4816, 4811, 4827, 4829, 4838, 4831, 4821, 4839, 4825, 4832, 4829, 4845, 4840, 4841, 4852, 4847, 4830, 4836, 4839, 4847, 4857, 4891, 4845, 4852, 4852, 4855, 4869, 4879, 4870, 4878, 4874, 4890, 4886, 4877, 4892, 4890, 4931, 4896, 4902, - 4906, 4899, 4904, 4902,14121, 4899, 4895, 4934,14121, 4916, - 4921, 4923, 4916, 4926, 4938, 4946, 4947, 4940, 6623, 4946, - 14121, 4942, 4948, 4934, 4937, 4952, 4942, 4943, 4967, 4948, - 4955, 4960, 4957, 4962, 4951, 4952,14121, 4997, 4969, 4961, - 4966,14121, 4972, 4979,14121,14121,14121,14121, 4986, 6587, - 4983, 4981, 4994, 4988,14121, 5000, 4993, 4995, 5008, 5001, - 5008,14121, 5012, 5021,14121, 5016, 5010, 5014, 5011, 5022, + 4906, 4899, 4904, 4902,14144, 4899, 4895, 4934,14144, 4916, + 4921, 4923, 4916, 4926, 4938, 4946, 4947, 4940, 6937, 4946, + 14144, 4942, 4948, 4934, 4937, 4952, 4942, 4943, 4967, 4948, + 4955, 4960, 4957, 4962, 4951, 4952,14144, 4997, 4969, 4961, + 4966,14144, 4972, 4979,14144,14144,14144,14144, 4986, 6647, + 4983, 4981, 4994, 4988,14144, 5000, 4993, 4995, 5008, 5001, + 5008,14144, 5012, 5021,14144, 5016, 5010, 5014, 5011, 5022, 5034, 5057, 5064, 5036, 5035, 5055, 5044, 5045, 5055, 5067, - 5051, 5059, 5133, 6625, 5093, 5095, 6437, 6417, 5097, 5073, - 5078,14121, 5079, 5097, 5100, 5092, 5082, 5091,14121, 5093, + 5051, 5059, 5133, 6674, 5093, 5095, 6629, 6623, 5097, 5073, + 5078,14144, 5079, 5097, 5100, 5092, 5082, 5091,14144, 5093, - 5111, 5111, 5179, 6308, 5116, 5109,14121, 5106, 5124, 5124, + 5111, 5111, 5179, 6432, 5116, 5109,14144, 5106, 5124, 5124, 5126, 5130, 5127, 5132, 5119, 5159, 5137, 5159, 5162, 5162, 5158, 5173, 5183, 5184, 5170, 5184, 5175, 5192, 5194, 5185, - 2177, 6263, 5259, 6238, 5263,14121, 5186, 6202, 5181, 5203, + 2177, 6393, 5259, 6259, 5263,14144, 5186, 6287, 5181, 5203, 5199, 5216, 5232, 5239, 5232, 5233, 5230, 5236, 5242, 5228, - 5240, 5235, 6141, 5171, 5245, 5252, 5252, 5234, 5235, 5243, - 5250,14121, 5252, 5260, 5258, 5248, 5321, 5263, 5250, 5273, + 5240, 5235, 6081, 5171, 5245, 5252, 5252, 5234, 5235, 5243, + 5250,14144, 5252, 5260, 5258, 5248, 5321, 5263, 5250, 5273, 5274, 5286, 5292, 5294, 5286, 5293, 5303, 5301, 5297, 5294, 5295, 5289, 5339, 5291, 5300, 5306, 5308, 5313, 5315, 5302, - 5307, 5321, 5154,14121, 5310, 5317, 5308, 5312, 5334, 5336, + 5307, 5321, 5154,14144, 5310, 5317, 5308, 5312, 5334, 5336, 5323, 5322, 5331, 5335, 5344, 5383, 5359, 5348, 5347, 5346, 5351, 5355, 5357, 5362, 5359, 5376, 5367, 5371, 5397, 5386, 5387, 5394, 5403, 5401, 5403, 5416, 5404, 5407, 5411, 5426, - 5413, 5429,14121, 6046, 5431, 5430, 5424, 5432, 6089,14121, - 6074,14121, 5430, 5428, 5440, 5432, 5423, 5431, 5451, 5450, - 5436,14121,14121, 5449, 1035, 1169, 5445, 5445, 5486, 5490, + 5413, 5429,14144, 6036, 5431, 5430, 5424, 5432, 6083,14144, + 6074,14144, 5430, 5428, 5440, 5432, 5423, 5431, 5451, 5450, + 5436,14144,14144, 5449, 1035, 1169, 5445, 5445, 5486, 5490, 5492, 5472, 5473, 5469, 5472, 5485, 5472, 5487, 5482, 5495, - 5483, 5280,14121, 5503, 5507, 5516,14121,14121, 5492, 5481, + 5483, 5280,14144, 5503, 5507, 5516,14144,14144, 5492, 5481, 5480, 5487, 5495, 5502, 5493, 5502, 5490, 5495, 5555, 5618, 5514, 5515, 5534, 5544, 5539, 5540, 5562, 0, 5562, 5563, - 5545, 5565, 5554, 5567, 5568, 5554,14121, 5570, 5571, 5572, - 5584, 5591, 5598, 5605, 5607, 5611, 5606, 5601, 5621,14121, + 5545, 5565, 5554, 5567, 5568, 5554,14144, 5570, 5571, 5572, + 5584, 5591, 5598, 5605, 5607, 5611, 5606, 5601, 5621,14144, 5605, 5621, 5622, 5623, 5620, 6016, 5921, 5658, 1957, 5661, - 5664, 5667, 5630,14121, 5634, 5620, 5632, 5649, 5723, 5645, + 5664, 5667, 5630,14144, 5634, 5620, 5632, 5649, 5723, 5645, 5643, 5647, 5644, 5651, 5649, 5664, 5658, 5656, 5656, 5705, 5706, 5673, 5682, 5668, 5689, 5694, 5693, 5693, 5696, 5685, 5696, 5745, 0, 5711, 5709, 5708, 5722, 5711, 5708, 5708, 5708, 5715, 5712, 0, 5733, 5738, 5746, 5730, 0, 5789, - 5746, 5762, 5747, 5760, 5769, 5386, 5761, 5772, 5766,14121, + 5746, 5762, 5747, 5760, 5769, 5386, 5761, 5772, 5766,14144, 5779, 5767, 5370, 5796, 5769, 5769, 5765, 5781, 5786, 5769, 5785, 5777, 5777, 5795, 5789, 5794, 5787, 5798, 5797, 5810, - 5813, 5805, 5801, 5815,14121,14121,14121,14121, 5810, 5825, + 5813, 5805, 5801, 5815,14144,14144,14144,14144, 5810, 5825, 5825, 5806, 5824, 5831, 5833, 5833, 5832, 5821, 5901, 5838, - 5829, 5843, 5830, 5847,14121,14121,14121,14121, 5846, 5834, - 14121, 5836, 5932,14121,14121, 5850, 5844,14121, 5846, 5842, - 5863, 5855, 5867, 5865, 5872, 1446, 1625,14121, 2341,14121, - 5867, 5872, 5880, 5688, 5686, 5905, 5674, 5907,14121, 5872, + 5829, 5843, 5830, 5847,14144,14144,14144,14144, 5846, 5834, + 14144, 5836, 5932,14144,14144, 5850, 5844,14144, 5846, 5842, + 5863, 5855, 5867, 5865, 5872, 1446, 1625,14144, 2341,14144, + 5867, 5872, 5880, 5688, 5686, 5905, 5674, 5907,14144, 5872, 5885, 5886, 5877, 5894, 5888, 5883, 5881, 5888, 250, 5958, 5700, 5640, 5639, 5919, 5553, 5922, 5899, 5905, 5906, 5898, - 5902, 5898, 5909,14121, 5928, 5916, 5926, 5982, 5940, 5935, + 5902, 5898, 5909,14144, 5928, 5916, 5926, 5982, 5940, 5935, 5949, 5942, 5942, 5943, 5960, 5957, 5954, 5964, 5962, 5950, - 5963, 5967, 5974, 0, 5978, 5983, 5991,14121, 5996,14121, - 14121, 5976,14121, 5986, 5987, 5990, 5545, 5990, 5993, 5995, - 5988, 5996, 5998, 5996,14121,14121, 5991,14121, 6010, 5494, - 6044, 5489, 6050, 5989, 6017,14121, 6019, 6030, 6073, 5607, - 6038, 6042, 6052, 6049, 6035, 6031, 6040, 5688, 6046, 6042, - 6057, 6043, 6046, 6056, 6054, 6063, 0, 6101, 6125, 6065, - 6060, 6096, 6097, 6099, 6089, 6100, 6102,14121, 5943, 6092, - 5525, 6097, 6105, 6107, 6097, 6108, 6105, 6106, 6111, 6097, - 6113, 0, 6105, 6111, 6106, 6120, 5392, 6111, 6108, 5975, - - 6120, 6110, 6183, 6127, 6132, 6152, 6146, 6156,14121,14121, - 6157, 6149, 5336, 6147, 5230, 6179, 6153,14121, 6147, 6157, - 6150, 6159, 6171, 6151, 5175, 6155, 6162, 6163, 6160, 6167, - 6180,14121, 6164, 6178, 6170, 5127, 6177, 6174, 6187,14121, - 6179, 6190, 6195, 6190, 6197, 6214, 6199, 6201, 6205, 6206, - 6221,14121,14121, 6220, 6226, 6223,14121, 6221, 6225, 6226, - 5145, 2425,14121, 6231, 6229, 5136, 5098, 5036, 6253, 4990, - 6254, 6255, 6218, 6230, 6224, 6221, 6229, 6234, 6228,14121, - 6236, 4949, 6302, 6287, 6286, 6316, 6320, 6335, 4631, 4627, - 4533, 6281, 4392, 6282, 6291, 6261, 4386, 6264, 6280, 6289, - - 6279, 6281, 6296, 6311, 6306,14121, 6318, 6316, 6324, 6325, - 6313, 6327, 6315, 6318, 6319, 6318, 6318, 6322, 6326, 6327, - 6336, 6332, 6344, 6346, 6343, 6350, 6352, 6356, 6359, 4353, - 6369, 4341, 6367, 6356, 6372, 6366, 6369, 6378, 6372, 6372, - 4309, 6417,14121, 4113, 6421,14121, 6379, 6379, 6392, 0, - 0, 6426, 6384, 6392, 6388, 6390, 6399, 6397, 6397, 6411, - 6449, 6398, 6413,14121, 6426, 6408, 6424, 6432, 6421, 4041, - 0, 0, 6416, 6433, 6432, 6445, 6447, 6444,14121, 6436, - 6492, 6439,14121, 6449, 6441, 6437, 6464,14121, 6449, 6459, - 6471, 6512, 6473, 6475, 6464, 6479, 6470,14121, 6474, 6485, - - 6533, 6482, 6486, 0, 6537, 1544, 6486, 3982, 6480, 6498, - 6503, 6496, 6496, 6506, 6515, 6520,14121, 6514, 6528, 6516, - 6526, 6532, 6529, 6532, 6536, 6526, 6520, 6535, 6532, 6533, - 6544, 3974, 3960, 6528, 6547, 6537, 6545, 6550, 6536, 6551, - 6556, 6562,14121, 6566, 6567, 6559, 6559, 6563, 6569,14121, - 6576, 6574, 6570,14121, 6576, 6576, 6587, 6581, 6580, 6590, - 6614, 6615,14121, 6584, 6600, 6598, 6600, 6600, 6601,14121, - 3960, 6625, 6663, 6672, 3779, 6629, 6637, 6661, 6626, 6693, - 6697, 6709, 652, 6728, 6729, 3816, 6655, 6668, 6620, 6610, - 6620,14121, 6654, 6656, 6669, 6679, 6679, 6678, 6681, 6689, - - 6694, 6697, 6706, 6703, 6698, 6710, 6715, 6716, 6711,14121, - 6728, 6723, 6728, 6729, 6718, 6736, 6736, 6722, 6724, 6746, - 6740, 6750, 6739,14121, 6735, 6753, 6744, 6759, 6756, 6764, - 14121, 6770,14121, 3699, 0, 6760, 6769, 6762, 6758, 6774, - 6765, 6779, 6770, 0, 0, 6778, 6781, 6769, 6789, 6791, - 6775, 6796,14121, 3546, 6793, 6785, 6799, 6691, 6701,14121, - 6792, 6784, 0, 6705, 6804, 6797, 6839, 6830, 6794, 6819, - 6816, 6799, 6878, 6826, 6829, 6814, 6830, 6815, 6837, 6842, - 6837, 0, 0, 6842, 6839, 6847, 1551, 3476, 1922, 6855, - 6842, 6071, 6845, 3451, 6433, 6860, 6861, 6855, 6858, 6876, - - 6865, 6876, 3361, 3356, 6867, 6878, 6873, 6877, 6878, 6903, - 6888, 6893, 6877, 6893, 6886, 6881, 6889, 6902, 6891, 6899, - 6897,14121, 6902, 6895, 6906, 6903, 6919, 6904, 6914, 6913, - 6920, 6920, 6933, 6935, 6934, 6925, 6928, 6939, 6929, 6965, - 6947, 6935, 6935, 6930, 3326, 6954, 6991, 6976, 749, 7014, - 7022, 7023, 7034, 3281, 3232, 7011, 7030, 7032, 7033, 2301, - 7070, 942, 7071, 7090, 7091, 7102, 7003, 7106, 7110, 6990, - 3210, 3194, 7018,14121, 7022, 7010, 7017, 7051, 7067, 7073, - 7079, 7075, 3133, 7091, 7087,14121, 7097,14121, 7097,14121, - 7098, 7092, 7102,14121, 7105, 7096, 7109, 7105, 7107, 7107, - - 7099, 7111, 7103, 7109, 7112,14121,14121,14121, 7122, 7114, - 14121, 7121, 7129, 7144, 7127, 7127, 7149,14121, 7134, 3116, - 7143, 7143, 7153, 7139, 7141, 7052, 7144,14121, 7151, 7151, - 7152, 7053, 7062,14121,14121, 7149, 7159, 0, 7168, 7168, - 7158, 7166, 7161, 7197, 7165, 7230, 7199, 0, 7239, 7172, - 7183, 7185, 7243, 7204, 7192, 7217, 7210, 3017, 7210, 7220, - 7213, 2880, 2033, 2924, 7213, 7219,14121, 7244, 7211,14121, - 7218, 7219, 7210, 7221, 7230, 7239, 7245, 7236, 7263, 7253, - 7245, 7241, 7253, 7252, 7254,14121, 7254, 7250, 7270, 7257, - 7258, 7263, 7274, 7266, 7297, 7276, 7301, 7271,14121, 7266, - - 7270, 7276,14121, 7282, 2869, 7297, 7303, 7296,14121, 7297, - 7310, 7314, 7301, 7315, 2892, 7300, 7301, 7321,14121, 7298, - 7323, 1445, 7381, 2843, 7360, 7349, 7327, 7385, 7396, 7397, - 7416, 2822, 7365, 7395, 3344, 7428, 7351, 7432, 7453,14121, - 2810, 7325, 7353, 7378, 2728, 7387, 2640, 7401, 2604, 7411, - 7405, 7419, 7407,14121, 7419, 7405, 7413, 7429, 7421, 7414, - 7416, 7420,14121, 7421, 7423, 7444, 7426,14121, 7449, 7447, - 7438, 7436, 7427, 7457, 7455, 7450,14121, 7461, 7470, 7460, - 7470, 7467, 7517, 7476, 7510,14121, 7483, 0, 7521, 0, - 7544, 7477, 7477, 2590, 7489, 7498, 7489, 7504, 7512, 7517, - - 7513, 7515, 7524, 7567, 7533, 7519, 7539, 2578, 7532, 7536, - 7526, 7556, 7533, 7540, 7546, 7548,14121, 7545, 7562, 7565, - 2437, 7553, 7548,14121, 7567, 7558, 7573,14121, 7568, 7579, - 14121, 7567, 7580, 7581, 7583, 7576, 7581, 2471, 7587, 7587, - 7586, 7582, 2416, 7588, 7579, 7592, 7582,14121, 7596,14121, - 7591,14121,14121, 7593,14121, 2403, 7636, 7597,14121, 7598, - 14121, 7606, 7622, 7626, 7617, 7619, 7636, 7626,14121, 7623, - 7641, 7641, 7627, 7639, 7628, 7703, 7654, 3533, 7707, 7718, - 7719, 7684, 7737, 7738, 3924, 7756, 7767, 7624, 7692, 7690, - 7698, 7693, 2428, 7722, 7720, 7737,14121, 7723, 7731, 7743, - - 7746, 7742, 7744,14121,14121, 7751, 7753, 7739, 7739, 7756, - 7758,14121, 7675, 7749, 7762, 7768, 7755, 7752, 7764, 7762, - 7762, 7817, 7768, 7843, 7789, 2411, 7778, 7824, 0, 7791, - 7812, 7814, 7813, 7814, 7821, 7812, 7813, 7822, 7867, 7560, - 7834, 7836,14121, 7829, 7841, 7843, 0, 7561, 7830, 7851, - 7862, 7690, 7847, 7733, 7849, 7864, 7870, 7852, 7388, 7859, - 7862, 7862, 7857, 2352, 7863, 7878, 7880, 7873, 7881, 2342, - 14121, 2298, 7873, 7884, 7885, 7876,14121, 2234, 7872, 7896, - 7897, 7909,14121, 7885,14121, 7885, 7899, 7899, 7896, 7918, - 7920, 7915, 7927, 2259, 7919, 7932, 7921, 7933, 7937, 7932, - - 7971, 7959, 7996, 7739, 7997, 8008, 7927, 7959, 7956, 7964, - 7974, 2247,14121, 7959,14121, 7986,14121, 7986, 7978, 7980, - 7989, 7994,14121, 7985, 7970, 7996, 8035, 8046, 7982, 7999, - 7986, 8011, 8037, 8046, 8053, 8049, 8049, 8084, 8050,14121, - 8048, 8110, 8062, 0, 8067, 8050, 8057, 8063, 8072, 8083, - 8080, 8103,14121, 8036, 8038, 8042, 8095, 8090, 8046, 8097, - 8095, 8109, 8146, 8147, 8155,14121, 8105,14121, 8121,14121, - 8120,14121, 7705, 2182, 8117, 8126, 8117, 7957, 8124, 8119, - 8147, 8120, 8126, 8140, 8161, 8148, 8164, 8162, 8158, 8159, - 8168, 8149, 8174, 8169, 8169,14121, 8164, 8170, 8172, 8167, - - 8173, 8201, 8180, 8183, 8186, 2157, 8183, 8190, 8247, 8206, - 8209, 8213, 2173, 8190,14121, 8217,14121,14121,14121, 8220, - 14121, 8207, 8275, 8148, 8274, 8207, 8218, 8219, 8210, 8213, - 8224, 8221,14121, 8217, 8232,14121, 8297, 8292, 8293, 8278, - 8283, 8327, 8296, 8284, 8284, 8285, 0, 8265, 8334, 8335, - 8306, 8311, 8342, 8310, 8300, 8309, 2166, 8355, 8370, 8358, - 8315,14121,14121,14121, 8352, 8348, 8340, 8352,14121, 8351, - 8360, 8368, 8373, 8355, 8372, 2019, 8360, 1998,14121, 8361, - 14121, 8375, 8376, 8368, 8367, 8371,14121, 2050, 8380, 8374, - 3139, 8382, 8376, 8418, 8388, 8395, 8425, 0, 1830, 8411, - - 8413, 8428, 8430, 1759, 8430, 8418, 8362, 8456, 8476, 8502, - 14121, 8434, 8437, 8441, 8363, 8452, 8455, 8467, 8419, 8462, - 8458, 8460,14121, 8463, 8530, 8483, 8468, 8469, 8538, 8464, - 1709, 8556, 0, 1652, 8557, 0, 8465, 8487, 3353, 8527, - 8530, 8524, 8579, 8590, 8552,14121, 8517, 8542, 8546,14121, - 8556, 1579, 8573, 8589, 8573, 8577, 8580, 8581, 8580, 8594, - 8579, 8579, 8580, 8593, 8596, 8597,14121, 1374, 8596, 3280, - 14121, 3939, 8597, 8632, 8594, 8598, 8627, 0, 0, 8645, - 14121, 8630, 8644,14121,14121, 8678, 8689, 8617, 8658, 8420, - 8646, 8717, 8421, 0, 8642, 8580, 8647, 8649, 8659, 8644, - - 8726, 8650, 8659,14121, 8752, 8669, 8657, 1313, 1065, 8693, - 8716, 5105, 1008, 5177, 8683, 8701, 8700, 8776, 8711, 8719, - 8730,14121, 8745, 8743, 8751, 8738, 8739, 8751, 8752, 8744, - 8759, 8760, 8137, 8513, 8756,14121, 8758,14121, 989, 5119, - 14121, 5173, 8778, 914, 8762, 0, 8757,14121, 8766, 8821, - 8839, 0, 0, 0,14121, 8771, 8679, 8773, 8836, 8822, - 0, 0, 8846, 0, 8803, 8796, 8802, 8810, 8825, 8826, - 8862, 8817, 8833,14121,14121, 8835, 8836, 8822, 8841, 879, - 7358, 876, 8835, 8826, 8828, 8828, 8840, 8842, 8840, 8857, - 8868,14121, 8869, 8876, 8861,14121, 8860, 8864,14121,14121, - - 8875, 8898,14121, 5399,14121, 8866,14121, 8871, 8878,14121, - 830, 8869, 0, 8925, 0, 7803, 0, 743, 8872, 8884, - 8880, 8894, 8889, 8892, 8904, 8945, 8465, 8581, 8909, 8916, - 8524, 8909, 8916,14121, 8922, 8923,14121, 8926, 8923, 8916, - 8921, 8922, 8919, 8925, 670,14121,14121, 8931, 8924, 8939, - 8944,14121, 8927, 602, 0, 8959, 447, 8970,14121, 8929, - 8934,14121, 8937, 8940, 8950, 8945, 8689, 8958, 9008, 9018, - 8719, 8765, 8958, 8960, 8975, 8962, 8979,14121, 436, 8984, - 8982, 8987, 8994, 8986, 9000, 461, 367, 8995, 9033,14121, - 330, 9027, 366, 8997, 8996, 9002,14121, 8993, 9000, 0, - - 9043, 9004, 9048, 0, 9056, 0, 9060, 9068,14121, 9007, - 14121, 9020, 9041, 9041,14121, 9033, 9036, 9050, 9033, 9051, - 9045, 0, 315, 9084, 9040, 9042, 9088, 9038, 9090,14121, - 9063, 262, 254, 9112, 0, 9116, 0,14121, 9069, 9067, - 9057, 9059, 9070, 9064, 9083, 9080, 9076, 9084, 9090, 0, - 0, 143, 9132, 0, 9092, 9147, 9136, 9157, 9116,14121, - 14121, 138, 109, 9124, 9123, 9121,14121,14121, 9110,14121, - 9152, 9143, 9147, 9148, 0, 43,14121, 9175, 9201, 9210, - 9162,14121,14121, 9176, 9178, 9179,14121, 6, 9170, 9184, - 14121,14121, 9229,14121,14121,14121, 9204,14121,14121, 9200, - - 9201, 9213, 9220, 9213,14121, 9225, 9225, 9227,14121,14121, - 9289, 9307, 9325, 9343, 9361, 9379, 9397, 9415, 9433, 9451, - 9469, 9487, 9505, 9523, 9541, 9559, 9577, 9595, 9613, 9631, - 9649, 9667, 9685, 9703, 9721, 9739, 9757, 9775, 9793, 9811, - 9829, 9847, 9865, 9883, 9901, 9919, 9937, 9955, 9973, 9991, - 10009,10027,10045,10063,10081,10099,10117,10135,10153,10171, - 10189,10207,10225,10243,10261,10279,10297,10315,10333,10350, - 10368,10386,10404,10422,10440,10457,10475,10493,10511,10529, - 10547,10565,10583,10601,10619,10637,10655,10673,10691,10709, - 10727,10745,10763,10781,10799,10817,10835,10853,10871,10888, - - 10906,10924,10942,10960,10978,10996,11014,11031,11049,11067, - 11085,11103,11121,11139,11157,11175,11193,11211,11229,11247, - 11265,11283,11301,11319,11337,11355,11372,11390,11408,11426, - 11444,11462,11480,11497,11515,11533,11551,11569,11587,11605, - 11623,11641,11659,11677,11695,11713,11731,11749,11767,11785, - 11803,11820,11838,11856,11874,11892,11910,11928,11946,11964, - 11982,12000,12011,12025,12043,12051,12067,12084,12088,12104, - 12122,12132,12148,12166,12184,12202,12219,12235,12253,12271, - 12289,12307,12325,12342,12358,12376,12385,12401,12419,12437, - 12455,12472,12480,12495,12511,12528,12546,12564,12582,12600, - - 12618,12636,12654,12672,12690,12708,12718,12726,12741,12756, - 12767,12775,12783,12799,12815,12831,12848,12866,12884,12902, - 12920,12938,12956,12974,12992,13010,13028,13046,13064,13082, - 13100,13118,13131,13139,13147,13155,13166,13182,13198,13206, - 13214,13230,13248,13266,13284,13302,13320,13338,13356,13374, - 13392,13410,13428,13444,13460,13478,13496,13506,13522,13538, - 13551,13569,13586,13603,13620,13631,13647,13664,13681,13693, - 13709,13727,13744,13762,13779,13797,13814,13830,13847,13857, - 13873,13890,13908,13925,13943,13961,13978,13995,14013,14025, - 14041,14058,14075,14086,14102 - + 5963, 5967, 5974, 0, 5978, 5983, 5991,14144, 5996,14144, + 14144, 5976,14144, 5986, 5987, 5990, 5545, 5990, 5993, 5995, + 5988, 5996, 5998, 5996,14144,14144, 5991,14144, 6010, 5494, + 6044, 5489, 6050, 5989, 6017,14144, 6039, 6010, 6073, 5607, + 6038, 6044, 6053, 6050, 6036, 6032, 6041, 5688, 6047, 6043, + 6058, 6045, 6047, 6057, 6055, 6064, 0, 6101, 6126, 6069, + 6060, 6096, 6096, 6100, 6090, 6101, 6103,14144, 5943, 6094, + 5525, 6098, 6106, 6108, 6098, 6109, 6106, 6107, 6112, 6098, + 6114, 0, 6106, 6112, 6107, 6121, 5392, 6112, 6109, 5975, + + 6121, 6113, 6183, 6130, 6132, 6151, 6148, 6157,14144,14144, + 6158, 6151, 5336, 6148, 5230, 6180, 6154,14144, 6148, 6158, + 6151, 6160, 6172, 6152, 5175, 6156, 6163, 6164, 6161, 6168, + 6181,14144, 6165, 6180, 6172, 5127, 6178, 6174, 6187,14144, + 6180, 6191, 6194, 6192, 6198, 6215, 6201, 6202, 6206, 6207, + 6222,14144,14144, 6221, 6227, 6224,14144, 6222, 6226, 6227, + 5145, 2425,14144, 6232, 6230, 5136, 5098, 5036, 6254, 4990, + 6255, 6256, 6219, 6232, 6226, 6222, 6229, 6234, 6229,14144, + 6237, 4949, 6303, 6292, 6288, 6317, 6321, 6332, 4631, 4627, + 4533, 6283, 4392, 6284, 6286, 6263, 4386, 6265, 6281, 6290, + + 6280, 6282, 6300, 6313, 6306,14144, 6317, 6315, 6324, 6322, + 6314, 6327, 6314, 6317, 6319, 6318, 6318, 6322, 6326, 6327, + 6334, 6331, 6343, 6347, 6344, 6351, 6353, 6357, 6363, 4353, + 6370, 4341, 6369, 6357, 6372, 6365, 6368, 6378, 6369, 6372, + 4309, 6416,14144, 4113, 6421,14144, 6378, 6379, 6388, 6393, + 0, 0, 6437, 6381, 6389, 6385, 6389, 6401, 6399, 6400, + 6411, 6447, 6401, 6419,14144, 6431, 6413, 6429, 6435, 6421, + 4041, 0, 0, 6416, 6430, 6429, 6444, 6445, 6443,14144, + 6435, 6480, 6440,14144, 6448, 6440, 6444, 6466,14144, 6451, + 6459, 6471, 6505, 6475, 6482, 6470, 6482, 6473,14144, 6474, + + 6484, 6519, 6480, 6496, 0, 6531, 1544, 6493, 3982, 6488, + 6504, 6506, 6494, 6495, 6507, 6513, 6519,14144, 6511, 6525, + 6513, 6522, 6528, 6526, 6528, 6533, 6524, 6520, 6535, 6533, + 6535, 6544, 3974, 3960, 6527, 6547, 6537, 6546, 6557, 6543, + 6559, 6562, 6565,14144, 6564, 6566, 6560, 6557, 6562, 6566, + 14144, 6573, 6571, 6566,14144, 6572, 6573, 6583, 6578, 6578, + 6590, 6614, 6616,14144, 6586, 6600, 6597, 6600, 6600, 6602, + 14144, 3960, 6632, 6662, 6673, 3779, 6637, 6639, 6664, 6615, + 6685, 6696, 6705, 652, 6711, 6726, 3816, 6642, 6658, 6618, + 6606, 6632,14144, 6669, 6676, 6672, 6678, 6676, 6679, 6684, + + 6688, 6692, 6698, 6705, 6701, 6696, 6708, 6711, 6714, 6706, + 14144, 6723, 6719, 6724, 6725, 6711, 6733, 6732, 6719, 6720, + 6745, 6739, 6748, 6737,14144, 6736, 6755, 6742, 6757, 6754, + 6762,14144, 6768, 6757,14144, 3699, 0, 6758, 6767, 6760, + 6754, 6772, 6762, 6776, 6767, 0, 0, 6775, 6778, 6766, + 6786, 6789, 6773, 6794,14144, 3546, 6791, 6788, 6799, 6844, + 6850,14144, 6793, 6783, 0, 6854, 6806, 6804, 6843, 6829, + 6802, 6827, 6828, 6811, 6865, 6841, 6845, 6827, 6843, 6825, + 6847, 6851, 6844, 0, 0, 6845, 6842, 6850, 1551, 3476, + 1922, 6855, 6843, 6678, 6844, 3451, 6886, 6860, 6862, 6848, + + 6852, 6882, 6873, 6885, 3361, 3356, 6878, 6889, 6885, 6890, + 6891, 6914, 6899, 6900, 6884, 6900, 6894, 6889, 6896, 6905, + 6894, 6902, 6897,14144, 6903, 6896, 6907, 6905, 6921, 6907, + 6914, 6916, 6927, 6927, 6941, 6944, 6945, 6936, 6940, 6952, + 6942, 6670, 6953, 6941, 6941, 6936, 3326, 6962, 7018, 6981, + 749, 6997, 7022, 7034, 7043, 3281, 3232, 7003, 7023, 7030, + 7032, 2301, 7066, 942, 7081, 7092, 7096, 7104, 7016, 7112, + 7127, 7009, 3210, 3194, 7021,14144, 7023, 7012, 7015, 7024, + 7038, 7075, 7078, 7070, 3133, 7087, 7083,14144, 7093,14144, + 7095,14144, 7096, 7091, 7101,14144, 7102, 7099, 7112, 7109, + + 7113, 7113, 7105, 7118, 7110, 7116, 7122,14144,14144,14144, + 7132, 7120, 7131,14144, 7126, 7131, 7145, 7128, 7126, 7150, + 14144, 7134, 3116, 7143, 7143, 7154, 7141, 7142, 7065, 7145, + 14144, 7155, 7156, 7157, 7206, 7211,14144,14144, 7155, 7168, + 0, 7181, 7189, 7179, 7185, 7181, 7196, 7186, 7231, 7198, + 0, 7240, 7182, 7186, 7192, 7244, 7205, 7198, 7222, 7215, + 3017, 7216, 7227, 7221, 2880, 2033, 2924, 7220, 7229,14144, + 6979, 7221,14144, 7229, 7230, 7220, 7229, 7235, 7244, 7249, + 7240, 7262, 7252, 7244, 7240, 7251, 7251, 7253,14144, 7254, + 7250, 7271, 7261, 7263, 7268, 7280, 7273, 7302, 7285, 7307, + + 7284,14144, 7279, 7282, 7288,14144, 7286, 2869, 7301, 7307, + 7295,14144, 7297, 7311, 7315, 7302, 7316, 2892, 7300, 7301, + 7322,14144, 7297, 7324, 1445, 7380, 2843, 7344, 7374, 7334, + 7392, 7398, 7410, 7411, 2822, 7390, 7399, 3344, 7429, 7378, + 7458, 7459,14144, 2810, 7382, 7382, 7389, 2728, 7396, 2640, + 7415, 2604, 7416, 7409, 7423, 7418,14144, 7432, 7418, 7426, + 7442, 7432, 7427, 7430, 7434,14144, 7435, 7440, 7460, 7442, + 14144, 7462, 7444, 7461, 7451, 7448, 7428, 7468, 7464, 7459, + 14144, 7471, 7476, 7467, 7475, 7475, 7526, 7501, 7430,14144, + 7499, 0, 7441, 0, 7534, 7492, 7493, 2590, 7505, 7521, + + 7512, 7513, 7521, 7525, 7520, 7523, 7530, 7573, 7539, 7525, + 7545, 2578, 7538, 7542, 7532, 7562, 7537, 7549, 7554, 7568, + 14144, 7567, 7575, 7576, 2437, 7562, 7557,14144, 7575, 7565, + 7581,14144, 7574, 7585,14144, 7573, 7586, 7587, 7589, 7582, + 7587, 2471, 7593, 7593, 7592, 7588, 2416, 7594, 7585, 7598, + 7588,14144, 7600,14144, 7600,14144,14144, 7601,14144, 2403, + 7642, 7620,14144, 7624,14144, 7617, 7631, 7635, 7626, 7624, + 7641, 7631,14144, 7628, 7646, 7646, 7632, 7642, 7634, 7686, + 7699, 3533, 7711, 7712, 7720, 7700, 7732, 7743, 3924, 7758, + 7769, 7671, 7696, 7698, 7707, 7707, 2428, 7715, 7720, 7734, + + 14144, 7725, 7732, 7747, 7749, 7746, 7747,14144,14144, 7755, + 7758, 7743, 7743, 7564, 7759, 7762,14144, 7682, 7753, 7764, + 7770, 7757, 7754, 7766, 7765, 7763, 7818, 7768, 7829, 7814, + 2411, 7812, 7856, 0, 7817, 7825, 7827, 7824, 7825, 7832, + 7823, 7824, 7833, 7857, 7681, 7832, 7833,14144, 7826, 7837, + 7838, 0, 7728, 7825, 7842, 7855, 7807, 7853, 7903, 7857, + 7868, 7874, 7854, 7048, 7861, 7864, 7864, 7860, 2352, 7866, + 7882, 7884, 7877, 7885, 2342,14144, 2298, 7877, 7888, 7889, + 7880,14144, 2234, 7876, 7896, 7897, 7915,14144, 7886,14144, + 7888, 7903, 7907, 7906, 7925, 7927, 7923, 7929, 2259, 7921, + + 7934, 7923, 7935, 7940, 7935, 7974, 7963, 7999, 7962, 8000, + 8011, 7930, 7951, 7974, 7975, 7986, 2247,14144, 7966,14144, + 7991,14144, 7989, 7981, 7983, 7992, 7997,14144, 7988, 8057, + 8033, 8001, 8054, 8065, 7989, 8007, 7992, 7992, 7993, 8003, + 8068, 8064, 8064, 8092, 8075,14144, 8074, 8136, 8088, 0, + 8093, 8076, 8083, 8089, 8098, 8107, 8104, 8109,14144, 8046, + 8061, 8125, 8101, 8096, 8126, 8101, 8100, 8128, 8127, 8164, + 8174,14144, 8128,14144, 8145,14144, 8143,14144, 7341, 2182, + 8140, 8148, 8139, 7725, 8146, 8141, 8169, 8140, 8146, 8143, + 8168, 8155, 8169, 8167, 8177, 8178, 8187, 8168, 8193, 8188, + + 8188,14144, 8183, 8189, 8191, 8190, 8197, 8223, 8204, 8205, + 8208, 2157, 8205, 8210, 8269, 8212, 8224, 8228, 2173, 8205, + 14144, 8228,14144,14144,14144, 8232,14144, 8217, 8280, 8308, + 8275, 8305, 8218, 8244, 8251, 8242, 8246, 8257, 8254,14144, + 8271, 8278,14144, 8331, 8315, 8326, 8311, 8317, 8361, 8330, + 8318, 8318, 8319, 0, 8277, 8368, 8372, 8339, 8340, 8376, + 8345, 8336, 8345, 2166, 8312, 8402, 8411, 8330,14144,14144, + 14144, 8364, 8347, 8343, 8367,14144, 8366, 8376, 8405, 8410, + 8391, 8412, 2019, 8400, 1998,14144, 8401,14144, 8415, 8416, + 8408, 8407, 8411,14144, 2050, 8418, 8412, 3139, 8420, 8414, + + 8456, 8416, 8423, 8438, 0, 1830, 8424, 8449, 8468, 8470, + 1759, 8470, 8458, 8396, 8440, 8494, 8520,14144, 8457, 8460, + 8464, 8400, 8475, 8473, 8485, 8401, 8481, 8477, 8479,14144, + 8482, 8548, 8515, 8500, 8505, 8557, 8506, 1709, 8558, 0, + 1652, 8576, 0, 8509, 8511, 3353, 8546, 8545, 8542, 8598, + 8608, 8617,14144, 8535, 8549, 8554,14144, 8610, 1579, 8612, + 8616, 8600, 8604, 8607, 8608, 8607, 8621, 8606, 8606, 8607, + 8620, 8623, 8624,14144, 1374, 8623, 3280,14144, 3939, 8624, + 8659, 8649, 8653, 8654, 0, 0, 8672,14144, 8657, 8671, + 14144,14144, 8705, 8716, 8643, 8685, 8588, 8673, 8744, 8594, + + 0, 8669, 8595, 8674, 8676, 8686, 8671, 8753, 8677, 8686, + 14144, 8779, 8724, 8712, 1313, 1065, 8720, 8768, 5105, 1008, + 5177, 8710, 8728, 8727, 8803, 8737, 8753, 8758,14144, 8774, + 8773, 8779, 8764, 8765, 8777, 8778, 8771, 8786, 8787, 7800, + 8037, 8783,14144, 8785,14144, 989, 5119,14144, 5173, 8805, + 914, 8789, 0, 8793,14144, 8801, 8848, 8863, 0, 0, + 0,14144, 8801, 8599, 8805, 8864, 8706, 0, 0, 8867, + 0, 8836, 8824, 8830, 8838, 8842, 8853, 8891, 8843, 8859, + 14144,14144, 8861, 8862, 8848, 8867, 879, 6153, 876, 8861, + 8852, 8855, 8855, 8857, 8870, 8873, 8885, 8896,14144, 8897, + + 8904, 8889,14144, 8888, 8892,14144,14144, 8903, 8766,14144, + 5399,14144, 8894,14144, 8898, 8906,14144, 830, 8893, 0, + 8946, 0, 7381, 0, 743, 8897, 8911, 8908, 8915, 8913, + 8917, 8922, 8974, 8716, 8746, 8925, 8926, 7977, 8930, 8938, + 14144, 8946, 8948,14144, 8952, 8950, 8944, 8949, 8949, 8947, + 8953, 670,14144,14144, 8959, 8951, 8966, 8970,14144, 8953, + 602, 0, 8849, 447, 8988,14144, 8955, 8961,14144, 8964, + 8964, 8971, 8967, 9012, 8983, 9041, 9045, 9037, 9051, 8987, + 8988, 9003, 8992, 9014,14144, 436, 9017, 9013, 9018, 9024, + 9017, 9031, 461, 367, 9026, 9062,14144, 330, 9011, 366, + + 9027, 9026, 9032,14144, 9022, 9029, 0, 9073, 9032, 9074, + 0, 9082, 0, 9090, 9101,14144, 9049,14144, 9050, 9069, + 9069,14144, 9062, 9065, 9079, 9062, 9080, 9074, 0, 315, + 9111, 9073, 9070, 9115, 9069, 9121,14144, 9087, 262, 254, + 9129, 0, 9139, 0,14144, 9096, 9095, 9100, 9104, 9112, + 9103, 9115, 9112, 9109, 9111, 9117, 0, 0, 143, 9159, + 0, 9118, 9173, 9163, 9199, 9132,14144,14144, 138, 109, + 9141, 9146, 9141,14144,14144, 9129,14144, 9150, 9144, 9161, + 9163, 0, 43,14144, 9215, 9225, 9234, 9167,14144,14144, + 9227, 9229, 9230,14144, 6, 9221, 9231,14144,14144, 9248, + + 14144,14144,14144, 9237,14144,14144, 9233, 9234, 9246, 9243, + 9236,14144, 9248, 9248, 9250,14144,14144, 9312, 9330, 9348, + 9366, 9384, 9402, 9420, 9438, 9456, 9474, 9492, 9510, 9528, + 9546, 9564, 9582, 9600, 9618, 9636, 9654, 9672, 9690, 9708, + 9726, 9744, 9762, 9780, 9798, 9816, 9834, 9852, 9870, 9888, + 9906, 9924, 9942, 9960, 9978, 9996,10014,10032,10050,10068, + 10086,10104,10122,10140,10158,10176,10194,10212,10230,10248, + 10266,10284,10302,10320,10338,10356,10373,10391,10409,10427, + 10445,10463,10480,10498,10516,10534,10552,10570,10588,10606, + 10624,10642,10660,10678,10696,10714,10732,10750,10768,10786, + + 10804,10822,10840,10858,10876,10894,10911,10929,10947,10965, + 10983,11001,11019,11037,11054,11072,11090,11108,11126,11144, + 11162,11180,11198,11216,11234,11252,11270,11288,11306,11324, + 11342,11360,11378,11395,11413,11431,11449,11467,11485,11503, + 11520,11538,11556,11574,11592,11610,11628,11646,11664,11682, + 11700,11718,11736,11754,11772,11790,11808,11826,11843,11861, + 11879,11897,11915,11933,11951,11969,11987,12005,12023,12034, + 12048,12066,12074,12090,12107,12111,12127,12145,12155,12171, + 12189,12207,12225,12242,12258,12276,12294,12312,12330,12348, + 12365,12381,12399,12408,12424,12442,12460,12478,12495,12503, + + 12518,12534,12551,12569,12587,12605,12623,12641,12659,12677, + 12695,12713,12731,12741,12749,12764,12779,12790,12798,12806, + 12822,12838,12854,12871,12889,12907,12925,12943,12961,12979, + 12997,13015,13033,13051,13069,13087,13105,13123,13141,13154, + 13162,13170,13178,13189,13205,13221,13229,13237,13253,13271, + 13289,13307,13325,13343,13361,13379,13397,13415,13433,13451, + 13467,13483,13501,13519,13529,13545,13561,13574,13592,13609, + 13626,13643,13654,13670,13687,13704,13716,13732,13750,13767, + 13785,13802,13820,13837,13853,13870,13880,13896,13913,13931, + 13948,13966,13984,14001,14018,14036,14048,14064,14081,14098, + + 14109,14125 } ; -static const flex_int16_t yy_def[4196] = +static yyconst flex_int16_t yy_def[4203] = { 0, - 3911, 3911, 3910, 3, 3912, 3912, 3, 3, 3913, 3913, - 3913, 3913, 3914, 3914, 3915, 3915, 3916, 3916, 3917, 3917, - 3918, 3918, 3912, 3912, 3912, 3912, 3919, 3919, 3920, 3920, - 3920, 3920, 3921, 3921, 3922, 3922, 3910, 37, 37, 37, - 3912, 3912, 3912, 3912, 3912, 3912, 3923, 3923, 3924, 3924, - 3925, 3925, 3926, 3926, 3927, 3927, 3928, 3928, 3929, 3929, - 3912, 3912, 3930, 3930, 3931, 3931, 3929, 3929, 3912, 3912, - 3932, 3932, 3933, 3933, 3910, 3910, 3910, 3910, 3910, 3910, - 3934, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 131, 3910, 3910, 3910, 3935, 3935, 3935, 3910, - 3910, 3935, 3936, 3936, 3936, 3910, 3937, 3936, 3938, 3938, - 3938, 3910, 3939, 3910, 3938, 3940, 3940, 3910, 3940, 3910, - 3910, 3941, 3910, 3910, 3910, 3941, 3942, 3941, 3943, 3943, - 3943, 3910, 3944, 3943, 3910, 3945, 3910, 3943, 3946, 3946, - 3946, 3910, 3947, 3946, 3948, 3948, 3948, 3910, 3910, 3948, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3949, 3949, 3910, 3910, - 3949, 3950, 3950, 3910, 3951, 3950, 3910, 3952, 3953, 3954, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3955, 3910, 3956, 3955, 3910, 3910, 3910, 3957, 3910, 3958, - 3910, 3957, 3910, 3910, 3910, 3959, 3959, 3959, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3960, 3910, 3960, 3960, 3960, - 3910, 3910, 3960, 3960, 3960, 3961, 3910, 3962, 3961, 3961, - 3961, 3910, 3961, 3961, 3961, 3963, 3910, 3964, 3963, 3963, - 3963, 3910, 3963, 3963, 3963, 3965, 3965, 3910, 3965, 3910, - 3965, 3966, 3910, 3966, 3910, 3967, 3968, 3969, 3968, 3966, - 3970, 3910, 3971, 3970, 3970, 3970, 3970, 3910, 3970, 3910, - - 3972, 3973, 3974, 3973, 3975, 3973, 3910, 3910, 3970, 3970, - 3976, 3910, 3977, 3976, 3976, 3976, 3910, 3976, 3976, 3976, - 3978, 3910, 3978, 3978, 3910, 3978, 3910, 3910, 3978, 3978, - 3978, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3979, 3910, 3979, 3910, 3910, 3979, - 3980, 3910, 3981, 3980, 3910, 3980, 3982, 3983, 3984, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3985, 3910, 3986, - 3985, 3910, 3985, 3910, 3987, 3910, 3988, 3987, 3910, 3987, - 3989, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3990, - 3910, 3910, 3990, 3990, 3991, 3992, 3910, 3910, 3992, 3992, - 3993, 3994, 3910, 3910, 3994, 3994, 3910, 3910, 3995, 3996, - 3995, 3997, 3998, 3999, 3999, 3999, 3998, 4000, 4001, 3910, - 3910, 4002, 4003, 4002, 4004, 4002, 4005, 4006, 4006, 4006, - 4007, 4007, 4007, 4008, 4006, 4001, 4001, 4009, 4010, 3910, - 3910, 4010, 4010, 3910, 4011, 3910, 3910, 4011, 3910, 4011, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4012, 3910, 3910, 4013, 4014, 3910, 3910, - 3910, 3910, 3910, 3910, 4015, 4016, 3910, 3910, 4017, 4018, - 3910, 3910, 4019, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 4020, 3910, 4020, 4021, 3910, - 4021, 4022, 3910, 4022, 3910, 4023, 4024, 4024, 4024, 4025, - 4023, 4025, 4025, 3910, 4026, 3910, 3910, 4026, 3910, 4001, - 3910, 4027, 4027, 4027, 4028, 4029, 4028, 4028, 4030, 4031, - 4027, 4032, 4029, 4030, 4029, 4029, 4001, 4033, 4001, 3910, - - 4033, 3910, 4033, 4033, 4034, 4001, 4035, 3910, 4035, 4036, - 3910, 4036, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 4037, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 4038, 3910, 4039, 3910, 3910, 3910, - - 3910, 3910, 4040, 3910, 4041, 3910, 4042, 4042, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4043, - - 3910, 4044, 3910, 4045, 4046, 4047, 4048, 3910, 4027, 4049, - 4049, 4049, 4030, 4027, 4029, 4030, 4029, 4050, 4029, 4051, - 4052, 4053, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4054, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4037, 4055, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 4056, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 4057, 3910, 3910, 3910, 3910, 4058, 3910, 4059, 3910, - 4060, 4060, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4046, 4047, 4046, 4047, 4049, 4029, 4049, - 4030, 4049, 4030, 4061, 4030, 4030, 4029, 4051, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4054, - 4062, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4063, 3910, - 3910, 4055, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 4056, 3910, 4056, 4064, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4060, 4060, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 4049, 4030, 4050, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 4062, 4065, 4054, 4062, 3910, 3910, - 3910, 3910, 3910, 3910, 4066, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4056, 3910, 4064, 3910, 3910, 3910, 4060, - 4067, 3910, 3910, 4068, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4030, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 4054, 4062, 3910, 4065, 4054, 3910, 4069, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 4056, 3910, 4060, 4070, 4071, - 3910, 3910, 4072, 4068, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 4073, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 4062, 3910, 4065, 4065, 3910, 4069, 4074, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4075, 4070, 4070, 4071, 4071, 3910, 3910, 4072, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 4076, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 4077, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4073, 4078, - 4073, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4079, 3910, 4074, 4080, 4074, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4081, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 4082, 4083, 4070, 3910, 4070, - 4071, 4071, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4084, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4076, 4085, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4086, 3910, 3910, 3910, 3910, 4087, 4077, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 4073, 4078, 3910, 4078, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4079, 4088, - 4089, 3910, 4074, 4080, 3910, 4080, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4081, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4082, - 4090, 4083, 4091, 3910, 3910, 3910, 3910, 3910, 4092, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 4093, 4084, 4094, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4085, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4086, 3910, 3910, 3910, 3910, 4087, 3910, 3910, 3910, - - 3910, 3910, 4095, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4078, 3910, - 4073, 4078, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4096, 4088, 4097, 4079, 4098, 4099, 4088, 4100, 3910, - 3910, 4101, 3910, 4102, 4101, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4103, 4104, 3910, 4105, 4106, 3910, 3910, 3910, 3910, 4107, - 4108, 4109, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4110, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4111, - 4112, 4113, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4114, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 4115, 3910, 3910, 4116, 4116, 4117, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4118, 4119, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4120, 4121, 4122, 4123, 3910, 4124, 4125, 4121, 4126, 4127, - 4128, 4129, 4120, 4122, 4129, 4130, 4131, 4132, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4133, 4134, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4135, 4136, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4137, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 4138, 4138, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 4139, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4140, 4141, 3910, 3910, 3910, 4142, 3910, 4142, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4143, - 3910, 3910, 3910, 3910, 3910, 3910, 4122, 4144, 4120, 4145, - 4122, 4122, 4146, 3910, 3910, 4144, 4144, 4147, 4147, 4148, - 4149, 4130, 4149, 4149, 4150, 4150, 4120, 4151, 4151, 4152, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4135, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4153, 4154, 3910, 3910, 3910, 3910, 4155, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4156, 4139, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4140, 3910, 3910, - 3910, 3910, 4142, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4120, 4122, 3910, 4144, 4120, 4148, 4149, 4145, 4151, - 4122, 3910, 4147, 4144, 4130, 4149, 4130, 4157, 4149, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4153, 4153, 4158, - 4154, 3910, 3910, 4155, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4156, 3910, 3910, - 3910, 4159, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4142, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 4122, 4144, 4148, 4145, 4145, - 4151, 4147, 4149, 4157, 4130, 4149, 4157, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 4160, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 4158, 3910, 3910, 4161, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 4159, 4159, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 4122, 4144, 4157, 4130, 4149, 4157, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4161, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4162, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 4163, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4157, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 4162, 4162, 4164, 4165, - 3910, 3910, 3910, 3910, 3910, 3910, 4163, 4163, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4166, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4164, 4164, 4167, 4165, 4165, 4168, 3910, 3910, 4169, 3910, - 3910, 3910, 4163, 4163, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4166, 4170, 3910, - 3910, 3910, 3910, 3910, 3910, 4171, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4172, 3910, 4173, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4167, 4168, 3910, - 3910, 4169, 3910, 4169, 3910, 3910, 3910, 4163, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 4170, 3910, 3910, 3910, 4171, - 4171, 4174, 4175, 4176, 3910, 3910, 4177, 3910, 3910, 3910, - 4172, 4178, 4173, 4179, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4169, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4175, 3910, 4180, 4177, 4181, 4182, 4178, 4179, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 4169, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 4180, 4181, 4182, 3910, 4182, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 4183, 3910, 4184, 4185, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4182, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4183, - - 4183, 3910, 4184, 4186, 4185, 4187, 4188, 4189, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4190, 3910, 4191, 4182, 3910, 3910, 3910, 3910, 3910, - 3910, 4186, 4187, 4188, 4192, 4189, 4193, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 4190, - 4194, 4191, 4191, 4195, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 4192, 4193, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 4194, 4195, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 0, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910 + 3918, 3918, 3917, 3, 3919, 3919, 3, 3, 3920, 3920, + 3920, 3920, 3921, 3921, 3922, 3922, 3923, 3923, 3924, 3924, + 3925, 3925, 3919, 3919, 3919, 3919, 3926, 3926, 3927, 3927, + 3927, 3927, 3928, 3928, 3929, 3929, 3917, 37, 37, 37, + 3919, 3919, 3919, 3919, 3919, 3919, 3930, 3930, 3931, 3931, + 3932, 3932, 3933, 3933, 3934, 3934, 3935, 3935, 3936, 3936, + 3919, 3919, 3937, 3937, 3938, 3938, 3936, 3936, 3919, 3919, + 3939, 3939, 3940, 3940, 3917, 3917, 3917, 3917, 3917, 3917, + 3941, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - } ; + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 131, 3917, 3917, 3917, 3942, 3942, 3942, 3917, + 3917, 3942, 3943, 3943, 3943, 3917, 3944, 3943, 3945, 3945, + 3945, 3917, 3946, 3917, 3945, 3947, 3947, 3917, 3947, 3917, + 3917, 3948, 3917, 3917, 3917, 3948, 3949, 3948, 3950, 3950, + 3950, 3917, 3951, 3950, 3917, 3952, 3917, 3950, 3953, 3953, + 3953, 3917, 3954, 3953, 3955, 3955, 3955, 3917, 3917, 3955, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, -static const flex_int16_t yy_nxt[14209] = - { 0, - 3910, 77, 78, 79, 77, 118, 80, 81, 118, 118, - 283, 284, 118, 3910, 82, 119, 120, 121, 119, 122, - 123, 3910, 129, 98, 124, 129, 130, 98, 125, 1387, - 83, 135, 84, 85, 3898, 269, 136, 86, 87, 88, - 315, 316, 98, 89, 90, 91, 135, 92, 93, 3892, - 131, 136, 94, 1106, 138, 139, 95, 138, 83, 872, - 84, 85, 140, 269, 141, 86, 87, 88, 256, 270, - 126, 89, 90, 91, 1388, 92, 93, 132, 283, 284, - 94, 77, 78, 79, 77, 257, 80, 81, 129, 98, - 256, 129, 130, 271, 82, 157, 158, 270, 157, 127, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3956, 3956, 3917, 3917, + 3956, 3957, 3957, 3917, 3958, 3957, 3917, 3959, 3960, 3961, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3962, 3917, 3963, 3962, 3917, 3917, 3917, 3964, 3917, 3965, + 3917, 3964, 3917, 3917, 3917, 3966, 3966, 3966, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 96, 272, 129, 98, 233, 129, 130, 257, 234, 142, - 83, 235, 84, 85, 273, 3883, 131, 86, 87, 88, - 274, 271, 1007, 89, 90, 91, 275, 92, 93, 272, - 133, 280, 94, 526, 318, 527, 95, 318, 83, 1008, - 84, 85, 273, 132, 3882, 86, 87, 88, 274, 3910, - 159, 89, 90, 91, 275, 92, 93, 132, 236, 280, - 94, 96, 97, 98, 96, 97, 96, 96, 96, 96, - 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, - 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, - 96, 99, 96, 96, 100, 101, 102, 103, 104, 105, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3967, 3917, 3967, 3967, 3967, + 3917, 3917, 3967, 3967, 3967, 3968, 3917, 3969, 3968, 3968, + 3968, 3917, 3968, 3968, 3968, 3970, 3917, 3971, 3970, 3970, + 3970, 3917, 3970, 3970, 3970, 3972, 3972, 3917, 3972, 3917, + 3972, 3973, 3917, 3973, 3917, 3974, 3975, 3976, 3975, 3973, + 3977, 3917, 3978, 3977, 3977, 3977, 3977, 3917, 3977, 3917, + + 3979, 3980, 3981, 3980, 3982, 3980, 3917, 3917, 3977, 3977, + 3983, 3917, 3984, 3983, 3983, 3983, 3917, 3983, 3983, 3983, + 3985, 3917, 3985, 3985, 3917, 3985, 3917, 3917, 3985, 3985, + 3985, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 96, 96, 96, 106, 96, 107, 108, 109, 110, 111, - 112, 113, 96, 114, 115, 96, 96, 116, 96, 99, - 96, 96, 100, 101, 102, 103, 104, 105, 96, 96, - 96, 106, 96, 107, 108, 109, 110, 111, 112, 113, - 96, 114, 115, 96, 96, 96, 96, 117, 119, 120, - 121, 119, 122, 123, 281, 129, 98, 124, 129, 130, - 3861, 125, 138, 139, 2281, 138, 144, 145, 3860, 144, - 140, 146, 141, 228, 147, 229, 144, 145, 2482, 144, - 230, 146, 281, 133, 147, 150, 151, 347, 150, 347, - 152, 150, 151, 153, 150, 526, 152, 527, 154, 153, + 3917, 3917, 3917, 3917, 3986, 3917, 3986, 3917, 3917, 3986, + 3987, 3917, 3988, 3987, 3917, 3987, 3989, 3990, 3991, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3992, 3917, 3993, + 3992, 3917, 3992, 3917, 3994, 3917, 3995, 3994, 3917, 3994, + 3996, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 228, 282, 229, 126, 154, 157, 158, 230, 157, 267, - 132, 489, 267, 569, 276, 180, 181, 142, 180, 289, - 182, 148, 277, 183, 569, 163, 164, 231, 163, 282, - 165, 148, 127, 96, 348, 166, 186, 187, 163, 188, - 155, 167, 276, 3851, 189, 278, 155, 289, 163, 164, - 277, 163, 163, 165, 231, 290, 268, 347, 166, 347, - 159, 163, 279, 645, 167, 490, 170, 171, 295, 170, - 184, 172, 3758, 278, 173, 163, 174, 301, 357, 175, - 168, 358, 176, 290, 170, 171, 3793, 170, 302, 172, - 279, 190, 173, 177, 174, 3822, 295, 175, 186, 187, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3997, + 3917, 3917, 3997, 3997, 3998, 3999, 3917, 3917, 3999, 3999, + 4000, 4001, 3917, 3917, 4001, 4001, 3917, 3917, 4002, 4003, + 4002, 4004, 4005, 4006, 4006, 4006, 4005, 4007, 4008, 3917, + 3917, 4009, 4010, 4009, 4011, 4009, 4012, 4013, 4013, 4013, + 4014, 4014, 4014, 4015, 4013, 4008, 4008, 4016, 4017, 3917, + 3917, 4017, 4017, 3917, 4018, 3917, 3917, 4018, 3917, 4018, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 176, 188, 646, 168, 348, 301, 189, 474, 475, 163, - 163, 177, 497, 498, 170, 171, 302, 170, 303, 172, - 224, 178, 173, 224, 174, 225, 224, 175, 359, 224, - 176, 225, 163, 163, 252, 170, 171, 253, 170, 178, - 172, 177, 252, 173, 285, 174, 303, 285, 175, 180, - 181, 176, 180, 190, 182, 313, 252, 183, 214, 215, - 216, 217, 177, 191, 314, 214, 215, 216, 217, 178, - 191, 191, 296, 351, 297, 226, 441, 487, 191, 441, - 487, 226, 488, 313, 254, 438, 439, 440, 438, 3821, - 178, 502, 314, 3814, 502, 503, 504, 283, 284, 286, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 4019, 3917, 3917, 4020, 4021, 3917, 3917, + 3917, 3917, 3917, 3917, 4022, 4023, 3917, 3917, 4024, 4025, + 3917, 3917, 4026, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 296, 352, 297, 3793, 184, 191, 192, 193, 194, 192, - 191, 195, 191, 191, 191, 191, 191, 191, 191, 196, - 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, - 191, 191, 191, 191, 191, 197, 198, 199, 200, 201, - 191, 191, 191, 202, 191, 191, 203, 204, 205, 206, - 207, 191, 208, 209, 210, 191, 211, 191, 212, 191, - 191, 213, 191, 197, 198, 199, 200, 201, 191, 191, - 191, 202, 191, 191, 203, 204, 205, 206, 207, 191, - 208, 209, 210, 191, 211, 191, 212, 191, 191, 191, - 191, 191, 218, 219, 220, 221, 359, 222, 218, 219, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 4027, 3917, 4027, 4028, 3917, + 4028, 4029, 3917, 4029, 3917, 4030, 4031, 4031, 4031, 4032, + 4030, 4032, 4032, 3917, 4033, 3917, 3917, 4033, 3917, 4008, + 3917, 4034, 4034, 4034, 4035, 4036, 4035, 4035, 4037, 4038, + 4034, 4039, 4036, 4037, 4036, 4036, 4008, 4040, 4008, 3917, + + 4040, 3917, 4040, 4040, 4041, 4008, 4042, 3917, 4042, 4043, + 3917, 4043, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 4044, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4045, 3917, 4046, 3917, 3917, 3917, - 220, 221, 369, 222, 218, 219, 220, 221, 3790, 222, - 218, 219, 220, 221, 233, 222, 291, 252, 234, 242, - 253, 235, 315, 316, 352, 252, 259, 242, 292, 260, - 352, 261, 327, 259, 259, 327, 260, 557, 261, 252, - 557, 259, 590, 318, 291, 590, 318, 223, 259, 422, - 243, 242, 244, 223, 422, 259, 292, 395, 243, 223, - 244, 245, 246, 247, 248, 223, 2281, 254, 236, 245, - 246, 247, 248, 242, 263, 264, 262, 263, 243, 619, - 244, 414, 243, 262, 244, 400, 243, 265, 244, 245, - 246, 247, 248, 245, 246, 247, 248, 245, 246, 247, + 3917, 3917, 4047, 3917, 4048, 3917, 4049, 4049, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4050, - 248, 423, 287, 489, 243, 288, 244, 293, 2867, 400, - 243, 298, 244, 306, 294, 245, 246, 247, 248, 428, - 304, 245, 246, 247, 248, 299, 620, 3784, 307, 265, - 287, 300, 243, 288, 244, 293, 305, 308, 407, 298, - 408, 306, 294, 245, 246, 247, 248, 400, 304, 3759, - 310, 584, 309, 299, 311, 312, 307, 490, 357, 300, - 446, 358, 584, 2281, 305, 308, 319, 320, 321, 319, - 452, 322, 323, 320, 321, 323, 412, 324, 310, 413, - 309, 398, 311, 312, 325, 321, 321, 325, 446, 326, - 323, 320, 321, 323, 447, 324, 455, 342, 452, 349, + 3917, 4051, 3917, 4052, 4053, 4054, 4055, 3917, 4034, 4056, + 4056, 4056, 4037, 4034, 4036, 4037, 4036, 4057, 4036, 4058, + 4059, 4060, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4061, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4044, 4062, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 4063, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 343, 448, 349, 353, 354, 3026, 422, 347, 359, 347, - 347, 422, 347, 449, 344, 345, 364, 365, 474, 475, - 357, 320, 447, 358, 455, 342, 414, 320, 343, 448, - 360, 377, 378, 360, 377, 357, 3752, 412, 358, 321, - 413, 449, 344, 345, 459, 320, 328, 329, 330, 331, - 332, 333, 465, 334, 350, 472, 335, 355, 423, 662, - 336, 367, 337, 338, 368, 339, 340, 341, 285, 367, - 363, 285, 459, 872, 328, 329, 330, 331, 332, 333, - 465, 334, 3614, 472, 335, 361, 379, 414, 336, 367, - 337, 338, 368, 339, 340, 341, 370, 367, 663, 370, + 3917, 4064, 3917, 3917, 3917, 3917, 4065, 3917, 4066, 3917, + 4067, 4067, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 741, 367, 377, 378, 368, 377, 374, 375, 450, 367, - 367, 369, 873, 368, 377, 380, 381, 377, 367, 383, - 383, 451, 383, 427, 383, 383, 383, 473, 383, 347, - 383, 347, 383, 645, 637, 3682, 450, 637, 383, 369, - 392, 386, 3707, 393, 470, 394, 383, 471, 392, 451, - 441, 371, 383, 441, 742, 473, 2281, 379, 383, 388, - 373, 383, 392, 383, 868, 383, 383, 508, 383, 379, - 383, 388, 646, 453, 384, 471, 348, 1563, 383, 424, - 384, 396, 425, 454, 396, 383, 392, 422, 460, 393, - 395, 394, 383, 3703, 392, 509, 461, 392, 3037, 514, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 4053, 4054, 4053, 4054, 4056, 4036, 4056, + 4037, 4056, 4037, 4068, 4037, 4037, 4036, 4058, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4061, + 4069, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4070, 3917, + 3917, 4062, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 4063, 3917, 4063, 4071, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4067, 4067, 3917, - 393, 453, 394, 383, 383, 392, 662, 625, 392, 383, - 383, 454, 499, 389, 668, 499, 460, 500, 392, 392, - 390, 393, 1564, 394, 461, 391, 392, 509, 391, 401, - 392, 520, 870, 403, 426, 404, 397, 748, 405, 2257, - 392, 2258, 383, 388, 409, 410, 569, 395, 392, 383, - 383, 393, 392, 394, 626, 415, 392, 569, 415, 520, - 412, 669, 521, 413, 3682, 419, 420, 501, 395, 412, - 392, 3675, 413, 659, 429, 430, 422, 497, 498, 442, - 406, 422, 432, 433, 434, 432, 456, 522, 443, 466, - 521, 749, 444, 467, 462, 435, 523, 445, 399, 468, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 506, 463, 744, 745, 457, 506, 458, 442, 469, 391, - 416, 464, 503, 504, 456, 522, 443, 466, 506, 418, - 444, 467, 462, 506, 523, 445, 506, 468, 431, 463, - 512, 506, 457, 513, 458, 512, 469, 436, 513, 464, - 476, 477, 478, 476, 480, 477, 478, 481, 482, 483, - 484, 482, 507, 485, 482, 483, 484, 491, 524, 485, - 492, 493, 494, 492, 512, 495, 525, 513, 529, 531, - 507, 530, 538, 2259, 529, 2260, 529, 530, 510, 542, - 514, 674, 529, 543, 536, 514, 524, 537, 267, 536, - 529, 267, 536, 544, 525, 436, 529, 534, 545, 436, + 4056, 4037, 4057, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4069, 4072, 4061, 4069, 3917, 3917, + 3917, 3917, 3917, 3917, 4073, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 4063, 3917, 4071, 3917, 3917, 3917, 4067, + 4074, 3917, 3917, 4075, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 534, 263, 264, 486, 263, 536, 536, 542, 537, 486, - 536, 543, 546, 536, 516, 496, 547, 548, 531, 549, - 550, 544, 551, 552, 533, 553, 545, 536, 675, 556, - 285, 554, 559, 285, 538, 268, 560, 561, 562, 563, - 546, 564, 565, 566, 547, 548, 555, 549, 550, 567, - 551, 552, 568, 553, 570, 540, 265, 556, 571, 554, - 559, 572, 573, 574, 560, 561, 562, 563, 575, 564, - 565, 566, 576, 579, 555, 582, 577, 567, 578, 583, - 568, 585, 570, 580, 581, 286, 571, 586, 587, 572, - 573, 574, 588, 589, 323, 327, 575, 323, 327, 324, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4037, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 576, 579, 753, 582, 577, 325, 578, 583, 325, 585, - 326, 580, 581, 593, 594, 586, 587, 595, 598, 3674, - 588, 589, 319, 320, 321, 319, 887, 322, 323, 320, - 321, 323, 604, 324, 325, 321, 321, 325, 599, 326, - 596, 593, 594, 597, 606, 595, 598, 605, 607, 754, - 265, 610, 600, 601, 602, 1323, 603, 611, 612, 614, - 604, 1113, 613, 615, 617, 608, 599, 682, 596, 618, - 609, 597, 606, 613, 986, 605, 607, 320, 3638, 610, - 600, 601, 602, 320, 603, 611, 612, 614, 616, 321, - 613, 615, 617, 608, 889, 682, 349, 618, 609, 349, + 4061, 4069, 3917, 4072, 4061, 3917, 4076, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 4063, 3917, 4067, 4077, 4078, + 3917, 3917, 4079, 4075, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 631, 613, 600, 601, 347, 367, 347, 353, 354, 621, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 4080, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 4069, 3917, 4072, 4072, 3917, 4076, 4081, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 4082, 4077, 4077, 4078, 4078, 3917, 3917, 4079, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 4083, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 4084, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4080, 4085, + 4080, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4086, 3917, 4081, 4087, 4081, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4088, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 4089, 4090, 4077, 3917, 4077, + 4078, 4078, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4091, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4083, 4092, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 4093, 3917, 3917, 3917, 3917, 4094, 4084, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4080, 4085, 3917, 4085, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4086, 4095, + 4096, 3917, 4081, 4087, 3917, 4087, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 4088, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4089, + 4097, 4090, 4098, 3917, 3917, 3917, 3917, 3917, 4099, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 4100, 4091, 4101, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 4092, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4093, 3917, 3917, 3917, 3917, 4094, 3917, 3917, 3917, + + 3917, 3917, 4102, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4085, 3917, + 4080, 4085, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4103, 4095, 4104, 4086, 4105, 4106, 4095, 4107, 3917, + 3917, 4108, 3917, 4109, 4108, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 4110, 4111, 3917, 4112, 4113, 3917, 3917, 3917, 3917, 3917, + 4114, 4115, 4116, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4117, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 4118, 4119, 4120, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4121, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 4122, 3917, 3917, 4123, 4123, 4124, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4125, 4126, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4127, 4128, 4129, 4130, 3917, 4131, 4132, 4128, 4133, + 4134, 4135, 4136, 4127, 4129, 4136, 4137, 4138, 4139, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 4140, 4141, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 4142, 4143, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 4144, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4145, 4145, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4146, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 4147, 4148, 3917, 3917, 3917, 4149, 3917, + 4149, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4150, 3917, 3917, 3917, 3917, 3917, 3917, 4129, 4151, + 4127, 4152, 4129, 4129, 4153, 3917, 3917, 4151, 4151, 4154, + 4154, 4155, 4156, 4137, 4156, 4156, 4157, 4157, 4127, 4158, + 4158, 4159, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 4142, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4160, 4161, 3917, 3917, 3917, 3917, + 4162, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 4163, 4146, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 4147, 3917, 3917, 3917, 3917, 4149, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4127, 4129, 3917, 4151, 4127, 4155, + 4156, 4152, 4158, 4129, 3917, 4154, 4151, 4137, 4156, 4137, + 4164, 4156, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4160, 4160, 4165, 4161, 3917, 3917, 4162, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4163, 3917, 3917, 3917, 4166, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4149, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4129, + 4151, 4155, 4152, 4152, 4158, 4154, 4156, 4164, 4137, 4156, + 4164, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4167, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 4165, 3917, 3917, 4168, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4166, 4166, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 4129, 4151, 4164, 4137, 4156, + 4164, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4168, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4169, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4170, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4164, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 4169, 4169, 4171, 4172, 3917, 3917, 3917, + 3917, 3917, 3917, 4170, 4170, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 4173, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4171, 4171, 4174, + 4172, 4172, 4175, 3917, 3917, 4176, 3917, 3917, 3917, 4170, + 4170, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4173, 4177, 3917, 3917, 3917, 3917, + 3917, 3917, 4178, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 4179, 3917, 4180, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 4174, 4175, 3917, 3917, 4176, 3917, + 4176, 3917, 3917, 3917, 4170, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 4177, 3917, 3917, 3917, 4178, 4178, 4181, 4182, + 4183, 3917, 3917, 4184, 3917, 3917, 3917, 4179, 4185, 4180, + 4186, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4176, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4182, 3917, 4187, + 4184, 4188, 4189, 4185, 4186, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4176, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 4187, 4188, 4189, 3917, 4189, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 4190, 3917, 4191, 4192, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4189, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 4190, 4190, 3917, 4191, + 4193, 4192, 4194, 4195, 4196, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4197, 3917, + 4198, 4189, 3917, 3917, 3917, 3917, 3917, 3917, 4193, 4194, + 4195, 4199, 4196, 4200, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 4197, 4201, 4198, 4198, + 4202, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 4199, 4200, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 4201, 4202, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 0, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + + 3917, 3917 + } ; + +static yyconst flex_uint16_t yy_nxt[14232] = + { 0, + 3917, 77, 78, 79, 77, 118, 80, 81, 118, 118, + 283, 284, 118, 3917, 82, 119, 120, 121, 119, 122, + 123, 3917, 129, 98, 124, 129, 130, 98, 125, 1387, + 83, 135, 84, 85, 3905, 269, 136, 86, 87, 88, + 315, 316, 98, 89, 90, 91, 135, 92, 93, 3899, + 131, 136, 94, 1106, 138, 139, 95, 138, 83, 872, + 84, 85, 140, 269, 141, 86, 87, 88, 256, 270, + 126, 89, 90, 91, 1388, 92, 93, 132, 283, 284, + 94, 77, 78, 79, 77, 257, 80, 81, 129, 98, + 256, 129, 130, 271, 82, 157, 158, 270, 157, 127, + + 96, 272, 129, 98, 233, 129, 130, 257, 234, 142, + 83, 235, 84, 85, 273, 3890, 131, 86, 87, 88, + 274, 271, 1007, 89, 90, 91, 275, 92, 93, 272, + 133, 280, 94, 526, 318, 527, 95, 318, 83, 1008, + 84, 85, 273, 132, 3889, 86, 87, 88, 274, 3917, + 159, 89, 90, 91, 275, 92, 93, 132, 236, 280, + 94, 96, 97, 98, 96, 97, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, + 96, 99, 96, 96, 100, 101, 102, 103, 104, 105, + + 96, 96, 96, 106, 96, 107, 108, 109, 110, 111, + 112, 113, 96, 114, 115, 96, 96, 116, 96, 99, + 96, 96, 100, 101, 102, 103, 104, 105, 96, 96, + 96, 106, 96, 107, 108, 109, 110, 111, 112, 113, + 96, 114, 115, 96, 96, 96, 96, 117, 119, 120, + 121, 119, 122, 123, 281, 129, 98, 124, 129, 130, + 3868, 125, 138, 139, 2281, 138, 144, 145, 3867, 144, + 140, 146, 141, 228, 147, 229, 144, 145, 2482, 144, + 230, 146, 281, 133, 147, 150, 151, 347, 150, 347, + 152, 150, 151, 153, 150, 526, 152, 527, 154, 153, + + 228, 282, 229, 126, 154, 157, 158, 230, 157, 267, + 132, 489, 267, 569, 276, 180, 181, 142, 180, 289, + 182, 148, 277, 183, 569, 163, 164, 231, 163, 282, + 165, 148, 127, 96, 348, 166, 186, 187, 163, 188, + 155, 167, 276, 3858, 189, 278, 155, 289, 163, 164, + 277, 163, 163, 165, 231, 290, 268, 347, 166, 347, + 159, 163, 279, 645, 167, 490, 170, 171, 295, 170, + 184, 172, 3765, 278, 173, 163, 174, 301, 357, 175, + 168, 358, 176, 290, 170, 171, 3800, 170, 302, 172, + 279, 190, 173, 177, 174, 3829, 295, 175, 186, 187, + + 176, 188, 646, 168, 348, 301, 189, 474, 475, 163, + 163, 177, 497, 498, 170, 171, 302, 170, 303, 172, + 224, 178, 173, 224, 174, 225, 224, 175, 359, 224, + 176, 225, 163, 163, 252, 170, 171, 253, 170, 178, + 172, 177, 252, 173, 285, 174, 303, 285, 175, 180, + 181, 176, 180, 190, 182, 313, 252, 183, 214, 215, + 216, 217, 177, 191, 314, 214, 215, 216, 217, 178, + 191, 191, 296, 351, 297, 226, 441, 487, 191, 441, + 487, 226, 488, 313, 254, 438, 439, 440, 438, 3828, + 178, 502, 314, 3821, 502, 503, 504, 283, 284, 286, + + 296, 352, 297, 3800, 184, 191, 192, 193, 194, 192, + 191, 195, 191, 191, 191, 191, 191, 191, 191, 196, + 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, + 191, 191, 191, 191, 191, 197, 198, 199, 200, 201, + 191, 191, 191, 202, 191, 191, 203, 204, 205, 206, + 207, 191, 208, 209, 210, 191, 211, 191, 212, 191, + 191, 213, 191, 197, 198, 199, 200, 201, 191, 191, + 191, 202, 191, 191, 203, 204, 205, 206, 207, 191, + 208, 209, 210, 191, 211, 191, 212, 191, 191, 191, + 191, 191, 218, 219, 220, 221, 359, 222, 218, 219, + + 220, 221, 369, 222, 218, 219, 220, 221, 3797, 222, + 218, 219, 220, 221, 233, 222, 291, 252, 234, 242, + 253, 235, 315, 316, 352, 252, 259, 242, 292, 260, + 352, 261, 327, 259, 259, 327, 260, 557, 261, 252, + 557, 259, 590, 318, 291, 590, 318, 223, 259, 422, + 243, 242, 244, 223, 422, 259, 292, 395, 243, 223, + 244, 245, 246, 247, 248, 223, 2281, 254, 236, 245, + 246, 247, 248, 242, 263, 264, 262, 263, 243, 619, + 244, 414, 243, 262, 244, 400, 243, 265, 244, 245, + 246, 247, 248, 245, 246, 247, 248, 245, 246, 247, + + 248, 423, 287, 489, 243, 288, 244, 293, 2869, 400, + 243, 298, 244, 306, 294, 245, 246, 247, 248, 428, + 304, 245, 246, 247, 248, 299, 620, 3791, 307, 265, + 287, 300, 243, 288, 244, 293, 305, 308, 407, 298, + 408, 306, 294, 245, 246, 247, 248, 400, 304, 3766, + 310, 584, 309, 299, 311, 312, 307, 490, 357, 300, + 446, 358, 584, 2281, 305, 308, 319, 320, 321, 319, + 452, 322, 323, 320, 321, 323, 412, 324, 310, 413, + 309, 398, 311, 312, 325, 321, 321, 325, 446, 326, + 323, 320, 321, 323, 447, 324, 455, 342, 452, 349, + + 343, 448, 349, 353, 354, 3029, 422, 347, 359, 347, + 347, 422, 347, 449, 344, 345, 364, 365, 474, 475, + 357, 320, 447, 358, 455, 342, 414, 320, 343, 448, + 360, 377, 378, 360, 377, 357, 3759, 412, 358, 321, + 413, 449, 344, 345, 459, 320, 328, 329, 330, 331, + 332, 333, 465, 334, 350, 472, 335, 355, 423, 662, + 336, 367, 337, 338, 368, 339, 340, 341, 285, 367, + 363, 285, 459, 872, 328, 329, 330, 331, 332, 333, + 465, 334, 3621, 472, 335, 361, 379, 414, 336, 367, + 337, 338, 368, 339, 340, 341, 370, 367, 663, 370, + + 741, 367, 377, 378, 368, 377, 374, 375, 450, 367, + 367, 369, 873, 368, 377, 380, 381, 377, 367, 383, + 383, 451, 383, 427, 383, 383, 383, 473, 383, 347, + 383, 347, 383, 645, 637, 3689, 450, 637, 383, 369, + 392, 386, 3714, 393, 470, 394, 383, 471, 392, 451, + 441, 371, 383, 441, 742, 473, 2281, 379, 383, 388, + 373, 383, 392, 383, 868, 383, 383, 508, 383, 379, + 383, 388, 646, 453, 384, 471, 348, 1563, 383, 424, + 384, 396, 425, 454, 396, 383, 392, 422, 460, 393, + 395, 394, 383, 3710, 392, 509, 461, 392, 3040, 514, + + 393, 453, 394, 383, 383, 392, 662, 625, 392, 383, + 383, 454, 499, 389, 668, 499, 460, 500, 392, 392, + 390, 393, 1564, 394, 461, 391, 392, 509, 391, 401, + 392, 520, 870, 403, 426, 404, 397, 748, 405, 2257, + 392, 2258, 383, 388, 409, 410, 569, 395, 392, 383, + 383, 393, 392, 394, 626, 415, 392, 569, 415, 520, + 412, 669, 521, 413, 3689, 419, 420, 501, 395, 412, + 392, 3682, 413, 659, 429, 430, 422, 497, 498, 442, + 406, 422, 432, 433, 434, 432, 456, 522, 443, 466, + 521, 749, 444, 467, 462, 435, 523, 445, 399, 468, + + 506, 463, 744, 745, 457, 506, 458, 442, 469, 391, + 416, 464, 503, 504, 456, 522, 443, 466, 506, 418, + 444, 467, 462, 506, 523, 445, 506, 468, 431, 463, + 512, 506, 457, 513, 458, 512, 469, 436, 513, 464, + 476, 477, 478, 476, 480, 477, 478, 481, 482, 483, + 484, 482, 507, 485, 482, 483, 484, 491, 524, 485, + 492, 493, 494, 492, 512, 495, 525, 513, 529, 531, + 507, 530, 538, 2259, 529, 2260, 529, 530, 510, 542, + 514, 674, 529, 543, 536, 514, 524, 537, 267, 536, + 529, 267, 536, 544, 525, 436, 529, 534, 545, 436, + + 534, 263, 264, 486, 263, 536, 536, 542, 537, 486, + 536, 543, 546, 536, 516, 496, 547, 548, 531, 549, + 550, 544, 551, 552, 533, 553, 545, 536, 675, 556, + 285, 554, 559, 285, 538, 268, 560, 561, 562, 563, + 546, 564, 565, 566, 547, 548, 555, 549, 550, 567, + 551, 552, 568, 553, 570, 540, 265, 556, 571, 554, + 559, 572, 573, 574, 560, 561, 562, 563, 575, 564, + 565, 566, 576, 579, 555, 582, 577, 567, 578, 583, + 568, 585, 570, 580, 581, 286, 571, 586, 587, 572, + 573, 574, 588, 589, 323, 327, 575, 323, 327, 324, + + 576, 579, 753, 582, 577, 325, 578, 583, 325, 585, + 326, 580, 581, 593, 594, 586, 587, 595, 598, 3681, + 588, 589, 319, 320, 321, 319, 887, 322, 323, 320, + 321, 323, 604, 324, 325, 321, 321, 325, 599, 326, + 596, 593, 594, 597, 606, 595, 598, 605, 607, 754, + 265, 610, 600, 601, 602, 1323, 603, 611, 612, 614, + 604, 1113, 613, 615, 617, 608, 599, 682, 596, 618, + 609, 597, 606, 613, 986, 605, 607, 320, 3645, 610, + 600, 601, 602, 320, 603, 611, 612, 614, 616, 321, + 613, 615, 617, 608, 889, 682, 349, 618, 609, 349, + + 631, 613, 600, 601, 347, 367, 347, 353, 354, 621, 623, 355, 624, 623, 619, 347, 616, 347, 347, 347, 347, 347, 357, 363, 360, 358, 627, 360, 987, 357, 600, 601, 358, 364, 365, 357, 629, 757, 358, 629, @@ -2020,30 +2038,30 @@ static const flex_int16_t yy_nxt[14209] = 367, 367, 367, 368, 758, 363, 636, 626, 367, 684, 367, 359, 584, 368, 412, 369, 359, 413, 367, 377, - 378, 3026, 377, 584, 634, 377, 378, 685, 377, 650, + 378, 3029, 377, 584, 634, 377, 378, 685, 377, 650, 371, 377, 380, 381, 377, 377, 638, 684, 377, 383, 383, 686, 383, 632, 373, 872, 383, 383, 399, 383, 369, 383, 383, 392, 733, 685, 648, 733, 394, 383, 369, 392, 383, 640, 414, 383, 383, 383, 687, 686, - 2788, 419, 420, 383, 379, 640, 651, 2962, 668, 688, + 2790, 419, 420, 383, 379, 640, 651, 2965, 668, 688, 379, 735, 383, 388, 735, 383, 379, 383, 487, 383, 379, 487, 422, 488, 390, 388, 687, 422, 643, 383, 388, 384, 383, 649, 382, 383, 383, 688, 383, 383, 383, 392, 388, 1317, 393, 643, 394, 641, 383, 392, - 2789, 429, 430, 383, 383, 669, 383, 2963, 674, 431, + 2791, 429, 430, 383, 383, 669, 383, 2966, 674, 431, 383, 383, 383, 392, 676, 392, 399, 389, 393, 399, 394, 399, 689, 392, 423, 396, 642, 640, 396, 2257, - 392, 2258, 660, 393, 647, 394, 3623, 392, 392, 418, + 392, 2258, 660, 393, 647, 394, 3630, 392, 392, 418, 390, 395, 670, 399, 409, 410, 383, 388, 392, 805, - 689, 648, 392, 394, 392, 675, 392, 393, 3910, 394, + 689, 648, 392, 394, 392, 675, 392, 393, 3917, 394, 805, 677, 392, 383, 388, 395, 315, 316, 431, 383, 383, 406, 285, 676, 391, 285, 392, 391, 391, 392, 397, 391, 653, 392, 654, 808, 403, 655, 404, 671, 412, 405, 487, 413, 658, 487, 808, 488, 649, 661, 399, 392, 693, 673, 399, 392, 868, 412, 391, 391, - 413, 391, 391, 392, 392, 3910, 403, 664, 404, 404, + 413, 391, 391, 392, 392, 3917, 403, 664, 404, 404, 677, 405, 405, 415, 658, 658, 415, 427, 412, 656, 693, 413, 1098, 406, 666, 392, 391, 666, 422, 392, 418, 667, 393, 422, 394, 392, 672, 392, 393, 672, @@ -2058,7 +2076,7 @@ static const flex_int16_t yy_nxt[14209] = 423, 716, 709, 423, 690, 700, 691, 701, 730, 731, 692, 711, 702, 886, 704, 887, 436, 705, 707, 706, 708, 710, 712, 703, 713, 715, 714, 732, 736, 716, - 709, 736, 502, 737, 1113, 502, 730, 731, 3579, 711, + 709, 736, 502, 737, 1113, 502, 730, 731, 3586, 711, 717, 718, 739, 719, 506, 739, 720, 740, 721, 506, 722, 723, 724, 761, 725, 732, 726, 727, 728, 729, 476, 477, 478, 476, 480, 477, 478, 480, 717, 718, @@ -2066,24 +2084,24 @@ static const flex_int16_t yy_nxt[14209] = 724, 761, 725, 889, 726, 727, 728, 729, 480, 477, 478, 481, 482, 483, 484, 482, 507, 485, 492, 493, - 494, 492, 1321, 495, 482, 483, 484, 491, 2962, 485, + 494, 492, 1321, 495, 482, 483, 484, 491, 2965, 485, 762, 492, 493, 494, 492, 436, 495, 499, 502, 436, 499, 502, 500, 750, 756, 506, 750, 763, 751, 512, 506, 516, 513, 512, 759, 764, 513, 767, 762, 2129, 2129, 529, 529, 436, 765, 530, 774, 486, 557, 529, - 529, 557, 775, 496, 529, 763, 533, 530, 2789, 486, + 529, 557, 775, 496, 529, 763, 533, 530, 2791, 486, 776, 777, 529, 764, 529, 536, 496, 771, 537, 540, 536, 1750, 501, 536, 774, 778, 529, 510, 779, 514, 775, 760, 536, 516, 768, 769, 540, 536, 776, 777, 536, 766, 531, 780, 536, 781, 782, 537, 783, 536, 784, 799, 536, 778, 533, 800, 779, 801, 802, 803, - 801, 804, 806, 807, 772, 538, 536, 590, 809, 3121, + 801, 804, 806, 807, 772, 538, 536, 590, 809, 3125, 590, 780, 810, 781, 782, 266, 783, 811, 784, 799, - 812, 813, 770, 800, 3567, 3560, 802, 803, 814, 804, + 812, 813, 770, 800, 3574, 3567, 802, 803, 814, 804, 806, 807, 815, 816, 540, 785, 809, 786, 787, 817, - 810, 788, 789, 790, 818, 811, 3558, 791, 812, 813, - 792, 823, 793, 794, 795, 796, 814, 797, 798, 2789, + 810, 788, 789, 790, 818, 811, 3565, 791, 812, 813, + 792, 823, 793, 794, 795, 796, 814, 797, 798, 2791, 815, 816, 824, 785, 825, 786, 787, 817, 819, 788, 789, 790, 818, 821, 822, 791, 826, 827, 792, 823, @@ -2093,53 +2111,53 @@ static const flex_int16_t yy_nxt[14209] = 842, 843, 828, 844, 845, 820, 829, 830, 846, 831, 847, 835, 848, 849, 850, 851, 836, 837, 838, 852, 853, 839, 854, 855, 351, 840, 841, 832, 842, 843, - 3543, 844, 845, 347, 357, 347, 846, 358, 847, 2127, - 848, 849, 850, 851, 2506, 3498, 623, 852, 853, 623, + 3550, 844, 845, 347, 357, 347, 846, 358, 847, 2127, + 848, 849, 850, 851, 2506, 3505, 623, 852, 853, 623, 854, 855, 355, 1563, 347, 858, 347, 637, 858, 629, 637, 868, 629, 347, 357, 347, 861, 358, 1113, 861, 367, 357, 865, 368, 358, 865, 383, 640, 367, 383, 856, 383, 635, 864, 859, 635, 864, 367, 367, 640, - 368, 368, 866, 266, 877, 367, 367, 390, 1388, 3465, + 368, 368, 866, 266, 877, 367, 367, 390, 1388, 3472, 869, 348, 428, 383, 878, 914, 733, 645, 645, 733, 348, 422, 383, 640, 359, 383, 422, 382, 2506, 392, 862, 359, 393, 412, 394, 640, 413, 392, 866, 870, 431, 641, 887, 914, 903, 886, 915, 369, 369, 383, - 916, 392, 662, 383, 388, 900, 874, 3402, 383, 383, - 388, 3387, 383, 399, 383, 901, 875, 917, 662, 643, + 916, 392, 662, 383, 388, 900, 874, 3408, 383, 383, + 388, 3393, 383, 399, 383, 901, 875, 917, 662, 643, 642, 640, 388, 910, 915, 643, 918, 871, 916, 880, - 383, 888, 2866, 907, 391, 879, 383, 391, 919, 392, + 383, 888, 2868, 907, 391, 879, 383, 391, 919, 392, 1066, 904, 653, 399, 654, 917, 399, 655, 399, 2489, 882, 1066, 920, 1113, 918, 922, 642, 640, 389, 884, 889, 392, 923, 924, 647, 2259, 919, 2260, 391, 391, - 399, 391, 391, 392, 392, 3382, 653, 890, 654, 654, + 399, 391, 391, 392, 392, 3388, 653, 890, 654, 654, 920, 655, 655, 922, 882, 882, 902, 876, 388, 656, 923, 924, 1116, 383, 388, 392, 391, 925, 656, 678, 590, 391, 679, 590, 391, 399, 392, 422, 399, 892, - 399, 893, 912, 976, 894, 913, 976, 895, 657, 3381, + 399, 893, 912, 976, 894, 913, 976, 895, 657, 3387, - 422, 660, 926, 656, 891, 925, 885, 886, 392, 3375, - 391, 391, 399, 897, 391, 392, 392, 3340, 403, 403, + 422, 660, 926, 656, 891, 925, 885, 886, 392, 3381, + 391, 391, 399, 897, 391, 392, 392, 3346, 403, 403, 404, 404, 735, 898, 405, 735, 658, 658, 927, 2462, 926, 2463, 657, 657, 423, 428, 896, 392, 392, 2506, - 406, 391, 930, 2962, 897, 391, 392, 423, 391, 403, + 406, 391, 930, 2965, 897, 391, 392, 423, 391, 403, 392, 404, 1703, 403, 898, 404, 927, 658, 405, 672, - 3282, 658, 672, 931, 412, 406, 659, 413, 392, 399, - 930, 666, 392, 3274, 666, 906, 392, 932, 906, 393, + 3287, 658, 672, 931, 412, 406, 659, 413, 392, 399, + 930, 666, 392, 3279, 666, 906, 392, 932, 906, 393, 392, 394, 934, 393, 392, 394, 977, 736, 392, 977, - 736, 931, 737, 2963, 899, 391, 659, 1704, 392, 935, + 736, 931, 737, 2966, 899, 391, 659, 1704, 392, 935, 905, 909, 392, 936, 909, 932, 412, 937, 928, 413, 934, 938, 939, 940, 414, 929, 929, 929, 929, 929, - 929, 929, 929, 929, 941, 899, 395, 935, 3269, 391, + 929, 929, 929, 929, 941, 899, 395, 935, 3274, 391, 395, 936, 942, 944, 945, 937, 950, 951, 952, 938, 939, 940, 953, 954, 957, 955, 960, 946, 947, 956, 948, 949, 941, 958, 963, 964, 414, 961, 965, 966, 942, 944, 945, 969, 950, 951, 952, 962, 959, 975, 953, 954, 957, 955, 960, 946, 947, 956, 948, 949, - 967, 958, 963, 964, 3243, 961, 965, 966, 970, 968, - 971, 969, 972, 508, 3229, 962, 959, 975, 978, 739, + 967, 958, 963, 964, 3248, 961, 965, 966, 970, 968, + 971, 969, 972, 508, 3234, 962, 959, 975, 978, 739, 506, 978, 739, 979, 740, 506, 980, 981, 967, 980, 981, 743, 982, 999, 743, 2506, 970, 968, 971, 984, @@ -2166,18 +2184,18 @@ static const flex_int16_t yy_nxt[14209] = 1087, 1075, 1088, 1090, 1076, 1077, 1078, 1079, 1091, 1092, 1089, 1093, 1080, 1094, 1081, 1095, 1096, 1097, 1100, 1082, 1074, 1892, 1099, 1083, 355, 1084, 1085, 1086, 1087, 1102, - 1088, 1090, 858, 3034, 367, 858, 1091, 1092, 1089, 1093, + 1088, 1090, 858, 3037, 367, 858, 1091, 1092, 1089, 1093, 347, 1094, 347, 1095, 1096, 1097, 363, 861, 373, 1101, 861, 1103, 357, 864, 865, 358, 864, 865, 367, 1108, 390, 368, 1122, 390, 662, 626, 367, 383, 640, 622, 383, 868, 383, 1105, 872, 1110, 632, 1104, 399, 868, 640, 887, 418, 866, 662, 1123, 1124, 348, 383, 640, - 1126, 383, 392, 383, 383, 1107, 628, 394, 634, 3032, + 1126, 383, 392, 383, 383, 1107, 628, 394, 634, 3035, 392, 640, 359, 663, 866, 872, 651, 1127, 369, 669, 976, 391, 1128, 976, 391, 383, 392, 1129, 1126, 653, - 3169, 1109, 641, 1120, 655, 1130, 3160, 882, 1131, 1111, - 2789, 834, 671, 675, 834, 1127, 2964, 887, 392, 870, + 3173, 1109, 641, 1120, 655, 1130, 3164, 882, 1131, 1111, + 2791, 834, 671, 675, 834, 1127, 2967, 887, 392, 870, 1128, 431, 649, 871, 873, 1129, 1125, 870, 399, 889, 1073, 642, 640, 1130, 391, 391, 1131, 391, 391, 392, 392, 1073, 653, 653, 654, 1109, 656, 655, 655, 1132, @@ -2187,7 +2205,7 @@ static const flex_int16_t yy_nxt[14209] = 1137, 399, 392, 1139, 422, 889, 392, 1113, 391, 883, 883, 391, 977, 392, 1141, 977, 653, 399, 654, 1142, - 399, 655, 399, 3117, 882, 1453, 1136, 1143, 1137, 656, + 399, 655, 399, 3121, 882, 1453, 1136, 1143, 1137, 656, 886, 1139, 1144, 1115, 395, 392, 1453, 1202, 657, 657, 391, 754, 1141, 391, 399, 392, 1502, 1142, 892, 391, 893, 423, 391, 894, 392, 1143, 895, 892, 886, 1117, @@ -2198,16 +2216,16 @@ static const flex_int16_t yy_nxt[14209] = 889, 1146, 658, 1188, 896, 1149, 1188, 906, 1150, 1147, 906, 1151, 392, 391, 1133, 393, 1119, 394, 1154, 1134, - 392, 1148, 3077, 978, 980, 395, 978, 980, 979, 1155, + 392, 1148, 3081, 978, 980, 395, 978, 980, 979, 1155, 1156, 1135, 1157, 1149, 392, 1158, 1150, 414, 1159, 1151, - 1160, 665, 1133, 3570, 2506, 3571, 1154, 1134, 1140, 1140, + 1160, 665, 1133, 3577, 2506, 3578, 1154, 1134, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1155, 1156, 1135, 1157, 1161, 395, 1158, 1162, 1163, 1159, 1164, 1160, 1165, 391, 929, 929, 929, 929, 929, 929, 929, 929, 929, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1177, 1180, 1175, 1181, 1162, 1163, 1176, 1164, 1178, 1165, 1182, 1179, - 1183, 1184, 1185, 1187, 1189, 3040, 1204, 1189, 1166, 1167, + 1183, 1184, 1185, 1187, 1189, 3043, 1204, 1189, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1177, 1180, 1175, 1181, 981, 1892, 1176, 981, 1178, 982, 1182, 1179, 1183, 1184, 1185, 1187, 1190, 984, 1204, 1190, 984, 1191, 985, 1192, @@ -2215,22 +2233,22 @@ static const flex_int16_t yy_nxt[14209] = 1196, 990, 1197, 992, 1206, 1197, 992, 1198, 993, 1199, 510, 993, 1199, 994, 516, 1201, 529, 1203, 1208, 1207, 536, 1210, 1213, 1209, 529, 536, 1205, 1214, 536, 1215, - 1216, 1217, 1206, 1218, 3570, 1219, 3571, 533, 3032, 1220, - 540, 1221, 2859, 1222, 1223, 1224, 1225, 1230, 1233, 1234, + 1216, 1217, 1206, 1218, 3577, 1219, 3578, 533, 3035, 1220, + 540, 1221, 2861, 1222, 1223, 1224, 1225, 1230, 1233, 1234, 1213, 1226, 1227, 1228, 1229, 1214, 1231, 1215, 1216, 1217, 1232, 1218, 756, 1219, 760, 768, 766, 1220, 772, 1221, 770, 1222, 1223, 1224, 1225, 1230, 1233, 1234, 1235, 1226, 1227, 1228, 1229, 1236, 1231, 1237, 1238, 1239, 1232, 1240, 1241, 1242, 1245, 1248, 1246, 1243, 1250, 1244, 1247, 1251, - 1252, 1253, 1254, 1255, 3019, 1260, 1235, 1261, 2281, 3613, + 1252, 1253, 1254, 1255, 3022, 1260, 1235, 1261, 2281, 3620, 1249, 1236, 1264, 1237, 1238, 1239, 1265, 1240, 1241, 1242, 1245, 1248, 1246, 1243, 1250, 1244, 1247, 1251, 1252, 1253, 1254, 1255, 1256, 1260, 1266, 1261, 1257, 1262, 1249, 1267, 1264, 1268, 1269, 1258, 1265, 1259, 1270, 1271, 1262, 1272, - 3037, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 3614, - 1256, 1289, 1266, 2979, 1257, 1290, 1291, 1267, 2978, 1268, + 3040, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 3621, + 1256, 1289, 1266, 2982, 1257, 1290, 1291, 1267, 2981, 1268, 1269, 1258, 1292, 1259, 1270, 1271, 1293, 1272, 1263, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1289, 1294, 1284, 1295, 1290, 1291, 1296, 1285, 1297, 1298, 1299, @@ -2240,12 +2258,12 @@ static const flex_int16_t yy_nxt[14209] = 1286, 1301, 351, 1302, 1287, 1303, 1288, 1304, 1305, 1306, 1307, 1308, 1309, 1316, 1320, 1310, 868, 887, 428, 1311, - 1312, 887, 383, 640, 887, 383, 1313, 383, 2969, 1329, + 1312, 887, 383, 640, 887, 383, 1313, 383, 2972, 1329, 355, 391, 1331, 1332, 391, 1314, 392, 1333, 866, 653, 391, 654, 1746, 391, 1318, 392, 431, 882, 1324, 383, - 654, 1325, 2964, 655, 1328, 1334, 882, 1329, 392, 1113, - 1331, 1332, 662, 1322, 3180, 1333, 391, 391, 1335, 391, - 399, 392, 2928, 399, 892, 399, 1117, 641, 399, 894, + 654, 1325, 2967, 655, 1328, 1334, 882, 1329, 392, 1113, + 1331, 1332, 662, 1322, 3184, 1333, 391, 391, 1335, 391, + 399, 392, 2931, 399, 892, 399, 1117, 641, 399, 894, 399, 2489, 895, 1334, 1317, 1321, 656, 1388, 883, 889, 1338, 1115, 889, 392, 1188, 891, 1335, 1188, 1326, 1885, 391, 904, 399, 391, 1336, 392, 1315, 640, 892, 391, @@ -2262,7 +2280,7 @@ static const flex_int16_t yy_nxt[14209] = 1365, 1366, 1367, 1370, 1357, 1368, 1369, 399, 1371, 1372, 1373, 1358, 1374, 1359, 1361, 1362, 1375, 1376, 1377, 1378, - 1380, 1381, 1382, 1383, 1384, 2911, 1363, 1364, 1365, 1366, + 1380, 1381, 1382, 1383, 1384, 2914, 1363, 1364, 1365, 1366, 1367, 1370, 1192, 1368, 1369, 1192, 1371, 1372, 1373, 1391, 1374, 508, 1391, 1395, 1375, 1376, 1377, 1378, 1380, 1381, 1382, 1383, 1384, 1193, 1392, 1396, 1193, 1392, 1194, 1393, @@ -2276,7 +2294,7 @@ static const flex_int16_t yy_nxt[14209] = 1414, 1420, 1421, 1422, 1427, 1423, 1424, 1425, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, 1426, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1452, 1454, - 2281, 1437, 1427, 1455, 1456, 2854, 1428, 1429, 1430, 1431, + 2281, 1437, 1427, 1455, 1456, 2856, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, 1448, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1452, 1454, 1449, 1437, 1458, 1455, 1456, 1450, 1451, 1459, 1460, 1461, 1463, 1464, @@ -2288,18 +2306,18 @@ static const flex_int16_t yy_nxt[14209] = 1480, 1474, 1481, 1482, 1487, 1483, 1488, 1484, 1485, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1486, 868, 887, 1504, 662, 1390, 1391, 2281, 1390, - 1391, 1507, 1487, 3640, 1488, 3641, 3910, 1489, 1490, 1491, + 1391, 1507, 1487, 3647, 1488, 3648, 3917, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 391, 399, 1504, 391, 399, 392, 399, 887, 892, 1507, 893, 869, 888, 894, 2281, 1508, 895, 884, 399, 1509, - 3304, 391, 1510, 1505, 391, 1506, 392, 392, 399, 1503, + 3309, 391, 1510, 1505, 391, 1506, 392, 392, 399, 1503, 1511, 893, 1512, 1513, 894, 1514, 1519, 895, 1520, 1521, 870, 889, 659, 1508, 1522, 1523, 1112, 1509, 391, 1516, - 1510, 1505, 1516, 1506, 1516, 896, 656, 2815, 1511, 1517, + 1510, 1505, 1516, 1506, 1516, 896, 656, 2817, 1511, 1517, 1512, 1513, 1516, 1514, 1519, 1524, 1520, 1521, 1529, 1525, - 1530, 2814, 1522, 1523, 1532, 889, 1119, 1392, 1538, 2791, - 1392, 1567, 1393, 1394, 1567, 886, 1394, 2753, 1539, 1542, + 1530, 2816, 1522, 1523, 1532, 889, 1119, 1392, 1538, 2793, + 1392, 1567, 1393, 1394, 1567, 886, 1394, 2755, 1539, 1542, 1543, 1544, 1545, 1524, 1546, 1547, 1529, 1548, 1530, 1527, 1549, 1550, 1532, 1551, 1518, 1528, 1538, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1539, 1542, 1543, 1544, @@ -2334,10 +2352,10 @@ static const flex_int16_t yy_nxt[14209] = 1692, 1671, 399, 1693, 399, 1690, 1672, 1678, 1679, 1684, 1694, 1695, 1680, 1113, 1696, 1115, 1681, 1682, 1685, 1687, 1688, 1683, 1689, 1686, 399, 1691, 399, 1697, 1692, 1698, - 1699, 1693, 1700, 1706, 1709, 2341, 2722, 1684, 1694, 1695, - 1516, 1710, 1696, 1516, 1711, 1516, 1516, 1716, 2720, 1516, + 1699, 1693, 1700, 1706, 1709, 2341, 2723, 1684, 1694, 1695, + 1516, 1710, 1696, 1516, 1711, 1516, 1516, 1716, 2721, 1516, 1701, 1516, 1326, 1516, 896, 1697, 1701, 1698, 1699, 1516, - 1700, 1706, 1709, 883, 889, 1717, 1718, 2663, 1719, 1710, + 1700, 1706, 1709, 883, 889, 1717, 1718, 2664, 1719, 1710, 1713, 1721, 1711, 2495, 1714, 1716, 1715, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1722, 1725, 1726, 1727, @@ -2376,7 +2394,7 @@ static const flex_int16_t yy_nxt[14209] = 1870, 1861, 1862, 1871, 1863, 1864, 1872, 1865, 1874, 1875, 1867, 1876, 1877, 1878, 1879, 1868, 1881, 1882, 1887, 1516, 1866, 1890, 1516, 1891, 1516, 1893, 1869, 1880, 1870, 1883, - 3910, 1871, 1516, 3910, 1872, 3910, 1874, 1875, 1894, 1876, + 3917, 1871, 1516, 3917, 1872, 3917, 1874, 1875, 1894, 1876, 1877, 1878, 1879, 1895, 1881, 1882, 1887, 1896, 1904, 1890, 1892, 1891, 1897, 1893, 1898, 1880, 1900, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1894, 1907, 1901, 1905, @@ -2417,25 +2435,25 @@ static const flex_int16_t yy_nxt[14209] = 2048, 2066, 2470, 2067, 2049, 2056, 2065, 2050, 2068, 2051, 2057, 2069, 2070, 2071, 1703, 2050, 1703, 2058, 2075, 2061, - 2077, 3680, 2062, 2063, 2078, 2079, 2047, 2064, 2048, 2066, - 2061, 2067, 2049, 3640, 2065, 3641, 2068, 2080, 2083, 2069, + 2077, 3687, 2062, 2063, 2078, 2079, 2047, 2064, 2048, 2066, + 2061, 2067, 2049, 3647, 2065, 3648, 2068, 2080, 2083, 2069, 2070, 2071, 2084, 2050, 1516, 2058, 2085, 1516, 2077, 1516, 2086, 2087, 2078, 2079, 1701, 2088, 2081, 1516, 2082, 1704, 2099, 1886, 2100, 2076, 2101, 2080, 2083, 2102, 2103, 2104, - 2084, 3681, 2660, 2105, 2085, 2106, 2107, 2108, 2086, 2087, - 2190, 2657, 2150, 2088, 2081, 2150, 2082, 3704, 2099, 3705, - 2100, 2190, 2101, 3680, 2636, 2102, 2103, 2104, 2111, 1702, + 2084, 3688, 2661, 2105, 2085, 2106, 2107, 2108, 2086, 2087, + 2190, 2658, 2150, 2088, 2081, 2150, 2082, 3711, 2099, 3712, + 2100, 2190, 2101, 3687, 2637, 2102, 2103, 2104, 2111, 1702, 2089, 2105, 2112, 2106, 2107, 2108, 2113, 2090, 2090, 2090, 2090, 2090, 2090, 2090, 2090, 2090, 2114, 2109, 2115, 2091, 2116, 2092, 2093, 2094, 2110, 2117, 2111, 2095, 2119, 2120, 2112, 2121, 2096, 2122, 2113, 2123, 2118, 2124, 2125, 2133, - 2135, 2097, 2626, 3614, 2114, 2109, 2115, 2091, 2116, 2092, + 2135, 2097, 2627, 3621, 2114, 2109, 2115, 2091, 2116, 2092, 2093, 2094, 2110, 2117, 2136, 2095, 2119, 2120, 2137, 2121, 2096, 2122, 2138, 2123, 2118, 2124, 2125, 2133, 2135, 2097, 2128, 2129, 2130, 2128, 2131, 2129, 2132, 2131, 2139, 2140, 2141, 2142, 2136, 2143, 2144, 2145, 2137, 2146, 2147, 2148, - 2138, 2151, 2152, 2153, 2154, 2155, 2156, 2616, 2157, 2158, + 2138, 2151, 2152, 2153, 2154, 2155, 2156, 2617, 2157, 2158, 2159, 2280, 2160, 2161, 2281, 2164, 2139, 2140, 2141, 2142, 2165, 2143, 2144, 2145, 2166, 2146, 2147, 2148, 2167, 2151, @@ -2447,9 +2465,9 @@ static const flex_int16_t yy_nxt[14209] = 2194, 2173, 2174, 2175, 2195, 2176, 2177, 2178, 2196, 2181, 2182, 2197, 2183, 2198, 2184, 2185, 2186, 2187, 2188, 2189, 2199, 2191, 2200, 2192, 2193, 2201, 2409, 2403, 2194, 2213, - 2403, 2214, 2195, 2614, 2215, 2216, 2196, 2409, 2598, 2197, + 2403, 2214, 2195, 2615, 2215, 2216, 2196, 2409, 2599, 2197, - 2217, 2198, 2218, 3704, 2219, 3705, 2220, 2221, 2199, 2222, + 2217, 2198, 2218, 3711, 2219, 3712, 2220, 2221, 2199, 2222, 2200, 2223, 2224, 2201, 2202, 2203, 2204, 2213, 2205, 2214, 2206, 2207, 2215, 2216, 2208, 2209, 2210, 2225, 2217, 2226, 2218, 2211, 2219, 2212, 2220, 2221, 2227, 2222, 2228, 2223, @@ -2463,7 +2481,7 @@ static const flex_int16_t yy_nxt[14209] = 2247, 2267, 2248, 2264, 2249, 2250, 2269, 2270, 2251, 2252, 2253, 2254, 2271, 2255, 2282, 2256, 2272, 2261, 2285, 2273, 2262, 2274, 2263, 2275, 2276, 2277, 2278, 2282, 2287, 2288, - 2289, 2583, 2290, 2291, 2269, 2270, 2292, 2293, 2294, 2295, + 2289, 2584, 2290, 2291, 2269, 2270, 2292, 2293, 2294, 2295, 2271, 2296, 2265, 2297, 2272, 2343, 2268, 2273, 2061, 2274, 2341, 2275, 2276, 2277, 2278, 2306, 2287, 2288, 2289, 2283, 2290, 2291, 2307, 2286, 2292, 2293, 2294, 2295, 2308, 2296, @@ -2471,27 +2489,27 @@ static const flex_int16_t yy_nxt[14209] = 2298, 2298, 2311, 2306, 2312, 2299, 2309, 2300, 2301, 2302, 2307, 2310, 2313, 2303, 2315, 2316, 2308, 2317, 2304, 2318, - 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2305, 2552, 2493, - 2311, 2552, 2312, 2299, 2309, 2300, 2301, 2302, 2326, 2310, + 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2305, 2553, 2493, + 2311, 2553, 2312, 2299, 2309, 2300, 2301, 2302, 2326, 2310, 2313, 2303, 2315, 2316, 2327, 2317, 2304, 2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2305, 2090, 2090, 2090, 2090, 2090, 2090, 2090, 2090, 2090, 2328, 2326, 2329, 2330, 2331, 2332, 2333, 2327, 2334, 2335, 2336, 2337, 2338, 2339, 2128, 2129, 2130, 2128, 2129, 2130, 2131, 2129, 2132, 2131, 2129, 2132, 2344, 2345, 2328, 2346, 2329, 2330, 2331, 2332, 2333, - 2347, 2334, 2335, 2336, 2337, 2338, 2339, 2348, 2357, 2561, - 2358, 2359, 2561, 2360, 2361, 2076, 2490, 2362, 2363, 2344, + 2347, 2334, 2335, 2336, 2337, 2338, 2339, 2348, 2357, 2562, + 2358, 2359, 2562, 2360, 2361, 2076, 2490, 2362, 2363, 2344, 2345, 2364, 2346, 2365, 2366, 2371, 2150, 2369, 2347, 2150, 2369, 2367, 2372, 2373, 1933, 2348, 2357, 1933, 2358, 2359, 1935, 2360, 2361, 1935, 2349, 2362, 2363, 2349, 2489, 2364, 2470, 2365, 2366, 2371, 2374, 2375, 2376, 2377, 2378, 2379, - 2372, 2373, 2061, 2350, 2467, 2380, 3910, 2370, 2382, 3910, - 2383, 3910, 2384, 2385, 2386, 2387, 2351, 2388, 2352, 2389, + 2372, 2373, 2061, 2350, 2467, 2380, 3917, 2370, 2382, 3917, + 2383, 3917, 2384, 2385, 2386, 2387, 2351, 2388, 2352, 2389, 2390, 2391, 2374, 2375, 2376, 2377, 2378, 2379, 2353, 2393, 2354, 2355, 2356, 2380, 2394, 2370, 2382, 2395, 2383, 2396, 2384, 2385, 2386, 2387, 2351, 2388, 2352, 2389, 2390, 2391, - 3910, 2398, 2399, 3910, 2400, 3910, 2353, 2393, 2354, 2355, + 3917, 2398, 2399, 3917, 2400, 3917, 2353, 2393, 2354, 2355, 2356, 2401, 2394, 2402, 2404, 2395, 2405, 2396, 2406, 2407, 2408, 2411, 2410, 2412, 2413, 2414, 2415, 2416, 2418, 2398, @@ -2508,10 +2526,10 @@ static const flex_int16_t yy_nxt[14209] = 2464, 2451, 2453, 2465, 2454, 2466, 2468, 2455, 2471, 2456, 2473, 2474, 2475, 2476, 2457, 2477, 2478, 2479, 2480, 2481, 2491, 2458, 2459, 2494, 2460, 2461, 2452, 2496, 2464, 2497, - 2498, 2465, 2499, 2466, 2581, 2500, 2501, 2581, 2473, 2474, + 2498, 2465, 2499, 2466, 2582, 2500, 2501, 2582, 2473, 2474, 2475, 2476, 2502, 2477, 2478, 2479, 2480, 2481, 2443, 2484, 2503, 2469, 2484, 2472, 2484, 2496, 2504, 2497, 2498, 2485, - 2499, 2505, 2486, 2500, 2501, 2492, 2601, 2343, 2495, 2601, + 2499, 2505, 2486, 2500, 2501, 2492, 2602, 2343, 2495, 2602, 2502, 2507, 2508, 2509, 2510, 2512, 2487, 2513, 2503, 2511, 2514, 2515, 2516, 2506, 2504, 2517, 2518, 2519, 2520, 2505, @@ -2520,913 +2538,916 @@ static const flex_int16_t yy_nxt[14209] = 2516, 2522, 2523, 2517, 2518, 2519, 2520, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2546, 2521, 2542, 2543, 2547, 2542, 2522, - 2523, 2545, 2543, 2548, 2545, 2524, 2525, 2526, 2527, 2528, + 2523, 2545, 2543, 2550, 2545, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, - 2540, 2546, 2341, 2549, 2349, 2547, 2553, 2349, 2245, 2550, - 2554, 2548, 2556, 2557, 2558, 2559, 2555, 2967, 2560, 2562, - 2563, 2564, 2565, 2244, 2566, 2567, 2568, 2569, 2967, 2573, - - 2341, 2549, 3910, 2239, 2553, 3910, 2343, 3910, 2554, 2574, - 2556, 2557, 2558, 2559, 2555, 2340, 2560, 2562, 2563, 2564, - 2565, 2342, 2566, 2567, 2568, 2569, 2369, 2573, 2575, 2369, - 2576, 2571, 2577, 2578, 2579, 2580, 2582, 2574, 2584, 2585, + 2540, 2546, 2341, 2548, 2349, 2547, 2554, 2349, 2245, 2551, + 2549, 2550, 2555, 2557, 2558, 2559, 2560, 2244, 2556, 2561, + 2563, 2564, 2565, 2239, 2566, 2567, 2568, 2569, 2570, 2149, + + 2341, 2548, 3917, 2574, 2554, 3917, 2343, 3917, 2549, 2575, + 2555, 2557, 2558, 2559, 2560, 2340, 2556, 2561, 2563, 2564, + 2565, 2342, 2566, 2567, 2568, 2569, 2570, 2369, 2576, 2577, + 2369, 2574, 2572, 2578, 2579, 2580, 2581, 2575, 2583, 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, - 2596, 2597, 2599, 2600, 2602, 2603, 2575, 2607, 2576, 2149, - 2577, 2578, 2579, 2580, 2582, 2608, 2584, 2585, 2586, 2587, + 2596, 2597, 2598, 2600, 2601, 2603, 2576, 2577, 2604, 3738, + 2608, 2578, 2579, 2580, 2581, 2609, 2583, 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, - 2599, 2600, 2602, 2603, 2605, 2607, 2609, 2605, 2610, 2606, - 2611, 2612, 2613, 2608, 2615, 2617, 2619, 2620, 2621, 2622, - - 2623, 2624, 2625, 2627, 2628, 2629, 2617, 2630, 2134, 2631, - 2632, 2633, 2634, 2635, 2609, 2637, 2610, 2638, 2611, 2612, - 2613, 2639, 2615, 2640, 2619, 2620, 2621, 2622, 2623, 2624, - 2625, 2627, 2628, 2629, 2641, 2630, 2618, 2631, 2632, 2633, - 2634, 2635, 2642, 2637, 2643, 2638, 2644, 2645, 2646, 2639, - 2647, 2640, 2648, 2649, 2650, 2651, 2652, 2653, 2654, 2655, - 2656, 2658, 2641, 2659, 2661, 2264, 2468, 2663, 2664, 2665, - 2642, 2666, 2643, 2667, 2644, 2645, 2646, 2668, 2647, 2669, - 2648, 2649, 2650, 2651, 2652, 2653, 2654, 2655, 2656, 2658, - 2670, 2659, 2687, 2282, 1935, 2663, 2664, 2665, 2675, 2666, - - 2281, 2667, 2491, 2484, 2689, 2668, 2484, 2669, 2484, 2472, - 2662, 2472, 2690, 2672, 2482, 2676, 2486, 2484, 2670, 1933, - 2484, 2484, 2484, 2691, 2484, 2692, 2484, 2679, 1892, 2693, - 2673, 2683, 2689, 2694, 2486, 2098, 2484, 2495, 2688, 2484, - 2690, 2484, 2678, 2677, 2680, 2695, 2672, 2495, 2684, 2486, - 2696, 2691, 2697, 2692, 2698, 2699, 1892, 2693, 2674, 2700, - 2701, 2694, 2702, 2673, 2703, 2704, 2705, 2706, 2707, 2708, - 2709, 2710, 2681, 2695, 2711, 2712, 2685, 2713, 2696, 2714, - 2697, 2715, 2698, 2699, 2716, 2717, 2718, 2700, 2701, 2719, - 2702, 2488, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710, - - 2721, 2723, 2711, 2712, 2724, 2713, 2725, 2714, 2726, 2715, - 2727, 2728, 2716, 2717, 2718, 2729, 2730, 2719, 2542, 2543, - 2731, 2542, 2545, 2543, 2732, 2545, 2733, 2552, 2721, 2723, - 2552, 2736, 2724, 2737, 2725, 2738, 2726, 2739, 2727, 2728, - 2740, 2741, 2742, 2729, 2730, 2073, 2743, 2746, 2731, 2970, - 2561, 2747, 2732, 2561, 2733, 2744, 2748, 2749, 2750, 2736, - 2970, 2737, 2751, 2738, 2072, 2739, 2752, 2755, 2740, 2741, - 2742, 2756, 2757, 2341, 2743, 2746, 2758, 2343, 2759, 2747, - 2760, 2761, 2765, 2762, 2748, 2749, 2750, 2766, 2340, 2767, - 2751, 2768, 2342, 2764, 2752, 2755, 2764, 2769, 2770, 2756, - - 2757, 2771, 2772, 2774, 2758, 2776, 2759, 2777, 2760, 2761, - 2765, 2762, 2778, 2773, 2779, 2766, 2773, 2767, 2780, 2768, - 2781, 2786, 2775, 2784, 2785, 2769, 2770, 2790, 2792, 2771, - 2772, 2774, 2793, 2776, 2601, 2777, 2794, 2601, 2605, 2782, - 2778, 2605, 2779, 2606, 2795, 2796, 2780, 2797, 2781, 2786, - 2775, 2784, 2785, 2798, 2799, 2790, 2792, 2800, 2801, 2802, - 2793, 2803, 2804, 2805, 2794, 2806, 2807, 2808, 2809, 2810, - 2811, 2812, 2795, 2796, 2813, 2797, 2816, 2817, 2818, 2819, - 2820, 2798, 2799, 2821, 2822, 2800, 2801, 2802, 2823, 2803, - 2804, 2805, 2824, 2806, 2807, 2808, 2809, 2810, 2811, 2812, - - 2825, 2826, 2813, 2827, 2816, 2817, 2818, 2819, 2820, 2828, - 2829, 2821, 2822, 2830, 2831, 2832, 2823, 2833, 2834, 2835, - 2824, 2836, 2837, 2838, 2839, 2468, 2840, 2841, 2825, 2826, - 2842, 2827, 2843, 2844, 2845, 2846, 1886, 2828, 2829, 2281, - 2855, 2830, 2831, 2832, 2035, 2833, 2834, 2835, 2858, 2836, - 2837, 2838, 2839, 2482, 2489, 2841, 2871, 2856, 2842, 2872, - 2843, 2844, 2845, 2846, 2848, 2676, 2491, 2848, 2873, 2848, - 2469, 2061, 2488, 2484, 2849, 2281, 2484, 2850, 2484, 2870, - 2006, 2678, 2860, 2853, 2871, 2857, 2486, 2872, 2874, 2482, - 2875, 2851, 2932, 2859, 2848, 2932, 2873, 2848, 2484, 2848, - - 2673, 2484, 2933, 2484, 2862, 2933, 2764, 2850, 2865, 2764, - 2484, 2492, 1935, 2484, 1933, 2484, 2874, 2876, 2875, 2852, - 2683, 2863, 2877, 2486, 2076, 2680, 2878, 2879, 2488, 2848, - 2484, 2880, 2848, 2484, 2848, 2484, 2881, 2684, 2882, 2849, - 2868, 2883, 2850, 2486, 2884, 2876, 2885, 2886, 2887, 2864, - 2877, 2888, 2889, 2866, 2878, 2879, 2851, 2684, 2890, 2880, - 2891, 2892, 2893, 2894, 2881, 2685, 2882, 2895, 2896, 2883, - 2897, 2898, 2884, 2899, 2885, 2886, 2887, 2900, 2901, 2888, - 2889, 2902, 2903, 2904, 2852, 2869, 2890, 2905, 2891, 2892, - 2893, 2894, 2906, 2907, 2908, 2895, 2896, 2909, 2897, 2898, - - 2910, 2899, 2912, 2913, 2914, 2900, 2901, 2915, 2916, 2902, - 2903, 2904, 2917, 2918, 2919, 2905, 2921, 2922, 2923, 2924, - 2906, 2907, 2908, 2925, 2926, 2909, 2927, 2929, 2910, 2930, - 2912, 2913, 2914, 2931, 2934, 2915, 2916, 2935, 2936, 2937, - 2917, 2918, 2919, 2938, 2921, 2922, 2923, 2924, 2944, 2945, - 2946, 2925, 2926, 2947, 2927, 2929, 1931, 2930, 2950, 2951, - 2940, 2931, 2934, 2952, 2953, 2935, 2936, 2937, 2941, 2954, - 2955, 2942, 2956, 2943, 2939, 2957, 2944, 2945, 2946, 2773, - 2959, 2947, 2773, 2960, 2948, 2961, 2950, 2951, 2940, 2965, - 2966, 2952, 2953, 2968, 2971, 2972, 2941, 2954, 2955, 2942, - - 2956, 2943, 2939, 2957, 2973, 2974, 2975, 2976, 2959, 2977, - 2980, 2960, 2982, 2961, 2983, 2984, 2985, 2965, 2966, 2986, - 2987, 2968, 2971, 2972, 2981, 2988, 2989, 2990, 2991, 2992, - 2986, 2993, 2973, 2974, 2975, 2976, 2994, 2977, 2980, 2995, - 2982, 2996, 2983, 2984, 2985, 2997, 2998, 2999, 2987, 3000, - 3001, 3002, 3003, 2988, 2989, 2990, 2991, 2992, 3004, 2993, - 3005, 3006, 3007, 3008, 2994, 3009, 3010, 2995, 3011, 2996, - 3012, 3013, 3014, 2997, 2998, 2999, 2468, 3000, 3001, 3002, - 3003, 3015, 3016, 3017, 3018, 3020, 3004, 3024, 3005, 3006, - 3007, 3008, 2848, 3009, 3010, 2848, 3011, 2848, 3012, 3013, - - 3014, 2491, 3022, 3021, 2856, 2850, 1903, 1899, 1889, 3015, - 3016, 3017, 3018, 3020, 2869, 2848, 1518, 2281, 2848, 2851, - 2848, 2268, 3024, 2848, 2848, 3027, 2848, 2848, 2848, 2848, - 1884, 3021, 3025, 3022, 3030, 2484, 2850, 2850, 2484, 2856, - 2484, 3033, 3028, 2675, 2675, 2672, 2286, 3023, 2486, 1705, - 2851, 2851, 3041, 3083, 3089, 3042, 3083, 3089, 2856, 3043, - 2676, 2676, 2673, 2933, 1873, 3044, 2933, 3025, 3090, 1838, - 3029, 2848, 2848, 1820, 2848, 2848, 2848, 2848, 3023, 3031, - 3041, 3035, 3035, 3042, 2850, 2850, 3034, 3043, 2677, 2859, - 2674, 2848, 2484, 3044, 2848, 2484, 2848, 2484, 2863, 2863, - - 3045, 3038, 2679, 2484, 2850, 3046, 2484, 2484, 2484, 3047, - 2484, 2484, 2484, 2679, 2484, 3048, 2484, 2683, 2863, 2680, - 2486, 2683, 3049, 3050, 2486, 3051, 3036, 3036, 3045, 3052, - 2680, 3053, 3054, 3046, 2684, 3055, 3056, 3047, 2684, 3057, - 3058, 3059, 3060, 3048, 3061, 3062, 3039, 2681, 3063, 3064, - 3049, 3050, 3065, 3051, 3066, 3067, 3068, 3052, 2866, 3053, - 3054, 3069, 2685, 3055, 3056, 3070, 2869, 3057, 3058, 3059, - 3060, 3071, 3061, 3062, 3072, 3073, 3063, 3064, 3074, 3075, - 3065, 3076, 3066, 3067, 3068, 3078, 3079, 3080, 3081, 3069, - 3082, 3084, 3085, 3070, 3086, 3087, 3092, 3093, 3095, 3071, - - 3096, 3097, 3072, 3073, 3098, 3099, 3074, 3075, 3103, 3076, - 1748, 1388, 1565, 3078, 3079, 3080, 3081, 1724, 3082, 3084, - 3085, 3109, 3086, 3087, 3092, 3093, 3095, 3100, 3096, 3097, - 3110, 3104, 3098, 3099, 3104, 3111, 3103, 3105, 3101, 3102, - 3910, 3106, 3113, 3910, 3112, 3910, 3114, 3112, 3107, 3109, - 3115, 3116, 3118, 3119, 3120, 3100, 3122, 3123, 3110, 3125, - 3124, 3126, 3127, 3111, 3128, 3105, 3101, 3102, 3129, 3106, - 3113, 3124, 3130, 3131, 3114, 3132, 3107, 3133, 3115, 3116, - 3118, 3119, 3120, 3136, 3122, 3123, 3137, 3125, 3138, 3126, - 3127, 3139, 3128, 3134, 3135, 3140, 3129, 3141, 3142, 3143, - - 3130, 3131, 3144, 3132, 3145, 3133, 3146, 3147, 3148, 3149, - 3152, 3136, 3155, 3150, 3137, 3156, 3138, 3153, 3157, 3139, - 3158, 3134, 3135, 3140, 3150, 3141, 3142, 3143, 3153, 3159, - 3144, 3161, 3145, 3162, 3146, 3147, 3148, 3149, 3152, 3163, - 3155, 3164, 3165, 3156, 3166, 3167, 3157, 3168, 3158, 3170, - 3171, 3172, 3174, 3175, 3151, 2489, 3188, 3159, 3154, 3161, - 3031, 3162, 3039, 2281, 3731, 2281, 3173, 3163, 1720, 3164, - 3165, 3177, 3166, 3167, 1708, 3168, 2675, 3170, 3171, 3172, - 3174, 3175, 2848, 3178, 3188, 2848, 2848, 2848, 2856, 2848, - 3189, 2848, 3176, 2676, 3173, 2850, 3035, 2848, 2484, 2850, - - 2848, 2484, 2848, 2484, 3370, 1707, 3024, 3179, 2683, 2851, - 1705, 2486, 3190, 2863, 3614, 3370, 3034, 2848, 3189, 3191, - 2848, 3182, 2848, 2856, 3028, 2684, 1648, 3022, 3213, 2848, - 2850, 3213, 2848, 2484, 2848, 3192, 2484, 3031, 2484, 3183, - 3190, 3036, 2850, 3185, 2851, 3193, 2486, 3191, 3194, 3195, - 3196, 3034, 3180, 3181, 2848, 3197, 2863, 2848, 3198, 2848, - 3186, 3199, 3200, 3192, 3035, 3201, 3202, 2850, 3203, 3204, - 3205, 3206, 3031, 3193, 3207, 3208, 3194, 3195, 3196, 3209, - 3210, 2863, 3211, 3197, 3039, 3212, 3198, 3214, 3187, 3199, - 3200, 3215, 3216, 3201, 3202, 3217, 3203, 3204, 3205, 3206, - - 3218, 3219, 3207, 3208, 3220, 3221, 3223, 3209, 3210, 3039, - 3211, 3224, 1647, 3212, 3224, 3214, 3225, 1637, 3083, 3215, - 3216, 3083, 3089, 3217, 3227, 3089, 3228, 3230, 3218, 3219, - 3231, 3232, 3220, 3221, 3223, 3222, 3222, 3222, 3222, 3222, - 3222, 3222, 3222, 3222, 3225, 3910, 3233, 3234, 3910, 3235, - 3910, 3236, 3227, 3237, 3228, 3230, 3238, 3248, 3231, 3232, - 3248, 3354, 3248, 1636, 3354, 3248, 3240, 3241, 3104, 3242, - 3244, 3104, 3245, 3246, 3233, 3234, 3249, 3235, 3250, 3236, - 3251, 3237, 3252, 3253, 3238, 3239, 3239, 3239, 3239, 3239, - 3239, 3239, 3239, 3239, 3240, 3241, 3254, 3242, 3244, 3255, - - 3245, 3246, 3256, 3257, 3249, 3258, 3250, 3259, 3251, 3260, - 3252, 3253, 3261, 3262, 3263, 3264, 3265, 3266, 3267, 3268, - 3270, 3271, 3272, 3273, 3254, 3275, 3276, 3255, 3277, 3278, - 3256, 3257, 3279, 3258, 3280, 3259, 3281, 3260, 3285, 3286, - 3261, 3262, 3263, 3264, 3265, 3266, 3267, 3268, 3270, 3271, - 3272, 3273, 3283, 3275, 3276, 3287, 3277, 3278, 3288, 3289, - 3279, 3290, 3280, 3283, 3281, 3024, 3285, 3286, 3291, 3292, - 3293, 3294, 3295, 3296, 3297, 3300, 3213, 3298, 3307, 3213, - 1635, 3327, 2856, 3287, 1571, 1570, 3288, 3289, 3299, 3290, - 1565, 3363, 1541, 3284, 3363, 3302, 3291, 3292, 3293, 3294, - - 3295, 3296, 3297, 3300, 2848, 3298, 3307, 2848, 2848, 2848, - 3025, 2848, 2676, 2848, 3022, 1540, 3299, 2850, 3027, 2848, - 2484, 3464, 2848, 2484, 2848, 2484, 3308, 3309, 3310, 3027, - 3301, 2851, 3464, 2486, 3365, 3028, 3311, 3365, 2848, 2484, - 2859, 2848, 2484, 2848, 2484, 1537, 3028, 2684, 3035, 3185, - 3306, 2850, 2486, 2281, 3308, 3309, 3310, 2848, 3312, 3023, - 2848, 3313, 2848, 3029, 3311, 2863, 3186, 2862, 2484, 3314, - 2850, 2484, 3315, 2484, 3180, 2869, 3316, 3317, 3305, 3318, - 3319, 2486, 3320, 3321, 2863, 3322, 3312, 3323, 3324, 3313, - 3325, 3326, 3329, 3036, 3303, 3186, 3330, 3314, 3331, 3332, - - 3315, 3333, 3334, 3335, 3316, 3317, 3336, 3318, 3319, 3757, - 3320, 3321, 2864, 3322, 1536, 3323, 3324, 3337, 3325, 3326, - 3329, 3339, 3341, 3306, 3330, 3342, 3331, 3332, 3342, 3333, - 3334, 3335, 3345, 1535, 3336, 3222, 3222, 3222, 3222, 3222, - 3222, 3222, 3222, 3222, 3224, 3337, 3346, 3224, 3347, 3339, - 3341, 3348, 3349, 3350, 3351, 3352, 3353, 1534, 1533, 3758, - 3345, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 3338, - 3355, 3343, 3356, 3357, 3346, 3358, 3347, 3359, 3360, 3348, - 3349, 3350, 3351, 3352, 3353, 3239, 3239, 3239, 3239, 3239, - 3239, 3239, 3239, 3239, 3361, 3362, 3364, 3366, 3355, 3343, - - 3356, 3357, 3367, 3358, 3368, 3359, 3360, 3369, 3371, 3372, - 3373, 3374, 3376, 3377, 3378, 3379, 3380, 3383, 3384, 3385, - 3386, 3388, 3361, 3362, 3364, 3366, 3389, 3390, 3393, 3394, - 3367, 3395, 3368, 3396, 3397, 3369, 3371, 3372, 3373, 3374, - 3376, 3377, 3378, 3379, 3380, 3383, 3384, 3385, 3386, 3388, - 3391, 3398, 3399, 3400, 3389, 3390, 3393, 3394, 3392, 3395, - 3401, 3396, 3397, 3403, 3404, 3405, 3406, 3407, 3408, 1531, - 3024, 3423, 2848, 3469, 3423, 2848, 3410, 2848, 3391, 3398, - 3399, 3400, 3022, 1113, 3469, 2850, 3392, 2856, 3401, 3411, - 3412, 3403, 3404, 3405, 3406, 3407, 3408, 2484, 2848, 2851, - - 2484, 2848, 2484, 2848, 3410, 3413, 3414, 3409, 3035, 2484, - 2486, 2850, 2484, 3415, 2484, 2857, 3416, 3411, 3412, 3185, - 3417, 3418, 2486, 3419, 3186, 2863, 3420, 2852, 3421, 3422, - 3424, 3426, 3427, 3413, 3414, 3428, 3186, 3448, 872, 3449, - 3448, 3415, 3449, 3450, 3416, 1478, 3450, 3453, 3417, 3418, - 3453, 3419, 3306, 2864, 3420, 1469, 3421, 3422, 3424, 3426, - 3427, 3429, 1467, 3428, 3306, 3425, 3425, 3425, 3425, 3425, - 3425, 3425, 3425, 3425, 3425, 3425, 3328, 3328, 3328, 3328, - 3328, 3328, 3328, 3328, 3328, 3328, 3328, 3430, 3431, 3429, - 3425, 3432, 3433, 3434, 3435, 3436, 3438, 3439, 3440, 3441, - - 1462, 3328, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 3338, - 3338, 3342, 3442, 3443, 3342, 3430, 3431, 3444, 3445, 3432, - 3433, 3434, 3435, 3436, 3438, 3439, 3440, 3441, 3437, 3437, - 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3446, 3451, 3452, - 3442, 3443, 3454, 3455, 3456, 3444, 3445, 3458, 3459, 3510, - 3458, 3459, 3510, 3699, 3461, 3462, 3365, 3463, 3466, 3365, - 3467, 3468, 3470, 3471, 3699, 3446, 3451, 3452, 3475, 3476, - 3454, 3455, 3456, 3460, 3460, 3460, 3460, 3460, 3460, 3460, - 3460, 3460, 3461, 3462, 3472, 3463, 3466, 3477, 3467, 3468, - 3470, 3471, 3473, 3474, 3478, 3479, 3475, 3476, 3480, 3481, - - 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, - 3492, 3493, 3472, 3495, 3494, 3477, 3494, 3496, 3497, 3499, - 3473, 3474, 3478, 3479, 3500, 1457, 3480, 3481, 3482, 3483, - 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, - 3501, 3495, 3502, 3503, 3504, 3496, 3497, 3499, 2484, 3505, - 3506, 2484, 3500, 2484, 3507, 3512, 3513, 3514, 3185, 3515, - 3516, 2486, 3517, 3518, 3519, 1399, 3448, 1398, 3501, 3448, - 3502, 3503, 3504, 540, 3520, 3186, 3423, 3505, 3506, 3423, - 3511, 3508, 3507, 3512, 3513, 3514, 3494, 3515, 3516, 538, - 3517, 3518, 3519, 3509, 3509, 3509, 3509, 3509, 3509, 3509, - - 3509, 3509, 3520, 3303, 3425, 3425, 3425, 3425, 3425, 3425, - 3425, 3425, 3425, 3425, 3425, 3437, 3437, 3437, 3437, 3437, - 3437, 3437, 3437, 3437, 3521, 3522, 3523, 3524, 3525, 3425, - 3527, 3525, 3528, 3529, 3530, 3532, 3535, 3537, 3532, 3535, - 3533, 3536, 3538, 3453, 3540, 3541, 3453, 3542, 3539, 533, - 531, 516, 3521, 3522, 3523, 3524, 3458, 3526, 3527, 3544, - 3528, 3529, 3530, 3586, 3592, 3537, 3586, 3592, 514, 3546, - 3538, 3459, 3540, 3541, 3459, 3542, 3460, 3460, 3460, 3460, - 3460, 3460, 3460, 3460, 3460, 3526, 3549, 3550, 3545, 3545, - 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3546, 3547, 3551, - - 3552, 3553, 3554, 3555, 3548, 3556, 3557, 3559, 3561, 3562, - 3563, 3564, 3565, 3566, 3549, 3550, 3568, 3569, 3572, 3573, - 3596, 3657, 3660, 3596, 3657, 3660, 3547, 3551, 3552, 3553, - 3554, 3555, 3548, 3556, 3557, 3559, 3561, 3562, 3563, 3564, - 3565, 3566, 3575, 3576, 3568, 3569, 3572, 3573, 3574, 3574, - 3574, 3574, 3574, 3574, 3574, 3574, 3574, 3574, 3574, 3577, - 3580, 3581, 3582, 3583, 3584, 3585, 3769, 510, 1389, 3769, - 3575, 3576, 1385, 3574, 3587, 3587, 3587, 3587, 3587, 3587, - 3587, 3587, 3587, 3589, 3590, 3591, 3593, 3577, 3580, 3581, - 3582, 3583, 3584, 3585, 3509, 3509, 3509, 3509, 3509, 3509, - - 3509, 3509, 3509, 3510, 3594, 3595, 3510, 3597, 3598, 3599, - 3600, 3589, 3590, 3591, 3593, 3602, 3603, 3604, 3607, 3610, - 3588, 3588, 3588, 3588, 3588, 3588, 3588, 3588, 3588, 3700, - 3680, 3525, 3594, 3595, 3525, 3597, 3598, 3599, 3600, 3605, - 3700, 3611, 3605, 3602, 3603, 3604, 3607, 3610, 3601, 3601, - 3601, 3601, 3601, 3601, 3601, 3601, 3601, 3532, 3535, 3615, - 3532, 3535, 3533, 3536, 3616, 3617, 1379, 3619, 3606, 3611, - 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3620, - 3681, 3596, 3770, 3543, 3596, 3770, 3664, 3615, 3910, 3621, - 3622, 3458, 3616, 3617, 3544, 3619, 3606, 3618, 3618, 3618, - - 3618, 3618, 3618, 3618, 3618, 3618, 3624, 3620, 3618, 3618, - 3618, 3618, 3618, 3618, 3618, 3618, 3618, 3621, 3622, 3625, - 3626, 3627, 3628, 3629, 3630, 3631, 3632, 3633, 3634, 3635, - 3636, 3637, 3639, 3642, 3624, 3588, 3588, 3588, 3588, 3588, - 3588, 3588, 3588, 3588, 1349, 3643, 3644, 3625, 3626, 3627, - 3628, 3629, 3630, 3631, 3632, 3633, 3634, 3635, 3636, 3637, - 3639, 3642, 3574, 3574, 3574, 3574, 3574, 3574, 3574, 3574, - 3574, 3574, 3574, 3643, 3644, 3645, 3647, 3648, 3649, 3651, - 3657, 3652, 3651, 3657, 3653, 3713, 1341, 3574, 3656, 3658, - 3801, 3662, 3652, 3801, 3665, 3655, 3666, 3667, 3668, 3669, - - 3670, 3672, 3673, 3645, 3647, 3648, 3649, 3587, 3587, 3587, - 3587, 3587, 3587, 3587, 3587, 3587, 3656, 3658, 3592, 3662, - 3807, 3592, 3665, 3807, 3666, 3667, 3668, 3669, 3670, 3672, - 3673, 3676, 3683, 3684, 3685, 3659, 3659, 3659, 3659, 3659, - 3659, 3659, 3659, 3659, 3601, 3601, 3601, 3601, 3601, 3601, - 3601, 3601, 3601, 3605, 3677, 3686, 3605, 3687, 3678, 3676, - 3683, 3684, 3685, 3654, 3688, 3679, 3808, 1330, 431, 3808, - 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3689, - 3543, 3690, 3677, 3686, 3691, 3687, 3678, 3692, 3693, 3694, - 3695, 3696, 3688, 3679, 3618, 3618, 3618, 3618, 3618, 3618, - - 3618, 3618, 3618, 3697, 3698, 3701, 3702, 3689, 3706, 3690, - 3708, 3709, 3691, 3710, 418, 3692, 3693, 3694, 3695, 3696, - 3712, 3715, 3652, 3660, 3652, 3652, 3660, 3910, 3716, 414, - 399, 3697, 3698, 3701, 3702, 3652, 3706, 3719, 3708, 3709, - 3651, 3710, 3652, 3651, 3720, 3653, 3721, 3910, 3712, 3715, - 3910, 3722, 3910, 3652, 3659, 3659, 3659, 3659, 3659, 3659, - 3659, 3659, 3659, 3723, 3724, 3719, 3725, 3726, 3727, 3728, - 3729, 3730, 3720, 3732, 3721, 3733, 3734, 3735, 395, 3722, - 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3736, - 3737, 3723, 3724, 3738, 3725, 3726, 3727, 3728, 3729, 3730, - - 3739, 3732, 3740, 3733, 3734, 3735, 3654, 3741, 3742, 3743, - 3744, 3745, 3746, 3748, 3747, 3749, 3750, 3736, 3737, 3753, - 3760, 3738, 3761, 3762, 3654, 3747, 3910, 3751, 3739, 3910, - 3740, 3910, 3763, 3764, 3765, 3741, 3742, 3743, 3744, 3745, - 3746, 3748, 3766, 3749, 3750, 3771, 3767, 3753, 3760, 3767, - 3761, 3762, 3772, 3773, 3774, 3751, 3775, 3776, 3777, 3778, - 3763, 3764, 3765, 3779, 3780, 3791, 3781, 3782, 3783, 3785, - 3766, 3786, 3787, 3771, 3788, 3789, 3791, 3794, 3795, 3796, - 3772, 3773, 3774, 3797, 3775, 3776, 3777, 3778, 3798, 3799, - 3802, 3779, 3780, 3768, 3781, 3782, 3783, 3785, 373, 3786, - - 3787, 3809, 3788, 3789, 3810, 3794, 3795, 3796, 3811, 3769, - 3812, 3797, 3769, 3813, 3804, 3792, 3798, 3799, 3802, 3770, - 3815, 3768, 3770, 3816, 3806, 3817, 3758, 3818, 3819, 3809, - 3820, 3823, 3810, 3825, 3824, 3826, 3811, 3824, 3812, 3827, - 3828, 3813, 3829, 3830, 3801, 3831, 3791, 3801, 3815, 3910, - 3838, 3816, 3910, 3817, 3910, 3818, 3819, 3910, 3820, 3823, - 3910, 3807, 3910, 3826, 3807, 3839, 3835, 3827, 3828, 3808, - 3829, 3830, 3808, 3831, 3837, 3840, 3841, 3842, 3838, 3843, - 3844, 3845, 3846, 3758, 3847, 3853, 3855, 3857, 3853, 3856, - 3854, 3858, 3856, 3839, 3858, 3848, 3792, 3859, 3849, 3864, - - 3865, 3866, 3867, 3840, 3841, 3842, 3868, 3843, 3844, 3845, - 3846, 3869, 3847, 3910, 3855, 3857, 3910, 3910, 3910, 3870, - 3910, 3871, 3910, 3848, 3872, 3859, 3849, 3864, 3865, 3866, - 3867, 3873, 3874, 3853, 3868, 3877, 3853, 3879, 3854, 3869, - 3879, 369, 363, 359, 355, 1273, 3881, 3870, 3856, 3871, - 1212, 3856, 3872, 1211, 1195, 1186, 3884, 3885, 3858, 3873, - 3874, 3858, 3886, 3877, 3887, 3878, 3878, 3878, 3878, 3878, - 3878, 3878, 3878, 3878, 3881, 3880, 3880, 3880, 3880, 3880, - 3880, 3880, 3880, 3880, 3884, 3885, 3888, 3889, 3890, 3891, - 3886, 1174, 3887, 3878, 3878, 3878, 3878, 3878, 3878, 3878, - - 3878, 3878, 3879, 1153, 1138, 3879, 662, 1113, 645, 3894, - 3895, 3896, 3897, 3899, 3888, 3889, 3890, 3891, 3900, 3893, - 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3880, 3880, - 3880, 3880, 3880, 3880, 3880, 3880, 3880, 3894, 3895, 3896, - 3897, 3899, 3901, 3902, 3903, 3904, 3900, 3893, 3893, 3893, - 3893, 3893, 3893, 3893, 3893, 3893, 3905, 3906, 3907, 3908, - 3909, 385, 385, 872, 1070, 1059, 1051, 1048, 1006, 540, - 3901, 3902, 3903, 3904, 538, 1004, 533, 531, 998, 516, - 514, 996, 510, 991, 3905, 3906, 3907, 3908, 3909, 76, + 2598, 2600, 2601, 2603, 2606, 2610, 2604, 2606, 2608, 2607, + 2611, 2612, 2613, 2609, 2614, 2616, 2618, 2620, 2621, 2622, + + 2623, 2624, 2625, 2626, 2628, 2629, 2630, 2618, 2631, 3621, + 2632, 2633, 2634, 2610, 2635, 2636, 2638, 2639, 2611, 2612, + 2613, 2640, 2614, 2616, 2641, 2620, 2621, 2622, 2623, 2624, + 2625, 2626, 2628, 2629, 2630, 2642, 2631, 2619, 2632, 2633, + 2634, 2643, 2635, 2636, 2638, 2639, 2644, 2645, 2646, 2640, + 2647, 2648, 2641, 2649, 2650, 2651, 2652, 2653, 2654, 2655, + 2656, 2657, 2659, 2642, 2660, 2662, 2264, 2468, 2664, 2643, + 2665, 2666, 2667, 2668, 2644, 2645, 2646, 2669, 2647, 2648, + 2670, 2649, 2650, 2651, 2652, 2653, 2654, 2655, 2656, 2657, + 2659, 2671, 2660, 2134, 2688, 2282, 2664, 2491, 2665, 2666, + + 2667, 2668, 2281, 2676, 2484, 2669, 2690, 2484, 2670, 2484, + 2472, 2663, 2472, 2691, 2673, 1935, 2482, 2486, 2484, 2671, + 2677, 2484, 2484, 2484, 2692, 2484, 2693, 2484, 2680, 1892, + 2694, 2674, 2684, 2484, 2690, 2486, 2484, 2695, 2484, 2495, + 2689, 2691, 2495, 2673, 2679, 2681, 2486, 2696, 2678, 2685, + 2697, 2698, 2692, 2699, 2693, 2700, 2701, 1892, 2694, 2675, + 2674, 2702, 2703, 2704, 2705, 2695, 2706, 2707, 2708, 2709, + 2710, 2711, 2712, 2682, 2713, 2696, 2714, 2686, 2697, 2698, + 2715, 2699, 2716, 2700, 2701, 2717, 2718, 2719, 2488, 2702, + 2703, 2704, 2705, 2720, 2706, 2707, 2708, 2709, 2710, 2711, + + 2712, 2722, 2713, 2724, 2714, 2725, 2726, 2727, 2715, 2728, + 2716, 2729, 2730, 2717, 2718, 2719, 2731, 2542, 2543, 2732, + 2542, 2720, 2545, 2543, 2733, 2545, 2734, 2735, 2738, 2722, + 2739, 2724, 2740, 2725, 2726, 2727, 2741, 2728, 2553, 2729, + 2730, 2553, 2742, 2743, 2731, 2744, 2745, 2732, 2562, 1933, + 2748, 2562, 2733, 2746, 2734, 2735, 2738, 2749, 2739, 2098, + 2740, 2750, 2751, 2752, 2741, 2753, 2754, 2757, 2758, 2759, + 2742, 2743, 2341, 2744, 2745, 2760, 2761, 2343, 2748, 2762, + 2763, 2766, 2764, 2767, 2766, 2749, 2768, 2340, 2769, 2750, + 2751, 2752, 2342, 2753, 2754, 2757, 2758, 2759, 2770, 2771, + + 2772, 2773, 2774, 2760, 2761, 2776, 2775, 2762, 2763, 2775, + 2764, 2767, 2778, 2779, 2768, 2780, 2769, 2781, 2782, 2783, + 2602, 2786, 2787, 2602, 2777, 2784, 2770, 2771, 2772, 2773, + 2774, 2788, 2606, 2776, 2792, 2606, 2794, 2607, 2795, 2796, + 2778, 2779, 2797, 2780, 2798, 2781, 2782, 2783, 2799, 2786, + 2787, 2800, 2777, 2801, 2802, 2803, 2804, 2805, 2806, 2788, + 2807, 2808, 2792, 2809, 2794, 2810, 2795, 2796, 2811, 2812, + 2797, 2813, 2798, 2814, 2815, 2818, 2799, 2819, 2820, 2800, + 2821, 2801, 2802, 2803, 2804, 2805, 2806, 2822, 2807, 2808, + 2823, 2809, 2824, 2810, 2825, 2826, 2811, 2812, 2827, 2813, + + 2828, 2814, 2815, 2818, 2829, 2819, 2820, 2830, 2821, 2831, + 2832, 2833, 2834, 2835, 2836, 2822, 2837, 2838, 2823, 2839, + 2824, 2840, 2825, 2826, 2841, 2468, 2827, 2842, 2828, 2843, + 2844, 2845, 2829, 2846, 2847, 2830, 2848, 2831, 2832, 2833, + 2834, 2835, 2836, 2489, 2837, 2838, 2281, 2839, 2857, 2840, + 2860, 2073, 2841, 2491, 2873, 2874, 2072, 2843, 2844, 2845, + 2482, 2846, 2847, 2850, 2848, 2858, 2850, 2677, 2850, 2872, + 2469, 2862, 2061, 2851, 2484, 2488, 2852, 2484, 2281, 2484, + 2875, 2468, 2873, 2874, 2855, 1886, 2850, 2486, 2679, 2850, + 2853, 2850, 2482, 2859, 2970, 2861, 2864, 2484, 2492, 2852, + + 2484, 2674, 2484, 2876, 2035, 2970, 2484, 2867, 2875, 2484, + 2877, 2484, 2850, 2865, 2076, 2850, 2684, 2850, 2854, 2486, + 2878, 2879, 2851, 2880, 2681, 2852, 2268, 2484, 2881, 2488, + 2484, 2876, 2484, 2685, 2882, 2883, 2884, 2870, 2877, 2853, + 2486, 2866, 2885, 2886, 2887, 2888, 2889, 2890, 2878, 2879, + 2891, 2880, 2868, 2892, 2685, 2893, 2881, 2894, 2895, 2896, + 2897, 2686, 2882, 2883, 2884, 2898, 2899, 2854, 2900, 2901, + 2885, 2886, 2887, 2888, 2889, 2890, 2902, 2903, 2891, 2904, + 2905, 2892, 2871, 2893, 2906, 2894, 2895, 2896, 2897, 2907, + 2908, 2909, 2910, 2898, 2899, 2911, 2900, 2901, 2912, 2913, + + 2915, 2916, 2917, 2918, 2902, 2903, 2919, 2904, 2905, 2920, + 2921, 2922, 2906, 2924, 2925, 2926, 2927, 2907, 2908, 2909, + 2910, 2928, 2929, 2911, 2930, 2932, 2912, 2913, 2915, 2916, + 2917, 2918, 2933, 2934, 2919, 2937, 2938, 2920, 2921, 2922, + 2939, 2924, 2925, 2926, 2927, 2935, 2940, 2941, 2935, 2928, + 2929, 2936, 2930, 2932, 2936, 2766, 2947, 2948, 2766, 2943, + 2933, 2934, 2949, 2937, 2938, 2950, 2775, 2944, 2939, 2775, + 2945, 2951, 2946, 2953, 2940, 2954, 2955, 2956, 2942, 2957, + 2958, 2959, 2960, 2962, 2947, 2948, 2963, 2943, 2964, 2968, + 2949, 2969, 2971, 2950, 2974, 2944, 2975, 2976, 2945, 2977, + + 2946, 2953, 2973, 2954, 2955, 2956, 2942, 2957, 2958, 2959, + 2960, 2962, 2978, 2973, 2963, 2979, 2964, 2968, 2980, 2969, + 2971, 2983, 2974, 2985, 2975, 2976, 2986, 2977, 2987, 2988, + 2989, 2990, 2991, 2992, 2993, 2984, 2994, 2995, 2996, 2997, + 2978, 2989, 2998, 2979, 2999, 3000, 2980, 3001, 3002, 2983, + 3003, 2985, 3004, 3005, 2986, 3006, 2987, 2988, 3007, 2990, + 2991, 2992, 2993, 3008, 2994, 2995, 2996, 2997, 3009, 3010, + 2998, 3011, 2999, 3000, 3012, 3001, 3002, 3013, 3003, 3014, + 3004, 3005, 3015, 3006, 3016, 3017, 3007, 3018, 3019, 3020, + 3021, 3008, 3027, 3023, 2006, 3128, 3009, 3010, 2850, 3011, + + 1935, 2850, 3012, 2850, 1933, 3013, 3128, 3014, 3030, 2858, + 3015, 3024, 3016, 3017, 3027, 3018, 3019, 3020, 3021, 2850, + 2491, 3023, 2850, 2850, 2850, 3031, 2850, 2871, 2850, 3025, + 2281, 2858, 2852, 3025, 3036, 2850, 2852, 3028, 2850, 3024, + 2850, 2676, 1931, 2676, 2484, 3033, 2853, 2484, 2852, 2484, + 2853, 2858, 1903, 3032, 2673, 3044, 3045, 2486, 2677, 3028, + 2677, 3046, 2853, 3047, 3376, 2286, 3087, 2850, 1899, 3087, + 2850, 2674, 2850, 3048, 3026, 3376, 3049, 3038, 3026, 3037, + 2852, 1889, 2850, 3044, 3045, 2850, 2678, 2850, 2861, 3046, + 3034, 3047, 3038, 2850, 2865, 2852, 2850, 2484, 2850, 2675, + + 2484, 3048, 2484, 3041, 3049, 2484, 2852, 2680, 2484, 2865, + 2484, 3050, 1518, 2484, 3051, 2680, 2484, 3052, 2484, 3053, + 2865, 3054, 3039, 2684, 2681, 3055, 2486, 1884, 2484, 3056, + 3057, 2484, 2681, 2484, 3058, 3059, 3060, 3039, 2684, 3050, + 2685, 2486, 3051, 3061, 3062, 3052, 3063, 3053, 3042, 3054, + 3064, 3065, 2682, 3055, 3066, 2685, 3067, 3056, 3057, 3068, + 2868, 3069, 3058, 3059, 3060, 3070, 3071, 3072, 2686, 3073, + 3074, 3061, 3062, 3075, 3063, 3076, 3077, 3078, 3064, 3065, + 3079, 3080, 3066, 2871, 3067, 3082, 3083, 3068, 3084, 3069, + 3085, 3086, 3088, 3070, 3071, 3072, 3089, 3073, 3074, 3090, + + 3091, 3075, 3096, 3076, 3077, 3078, 3097, 3093, 3079, 3080, + 3093, 3099, 2936, 3082, 3083, 2936, 3084, 3094, 3085, 3086, + 3088, 3100, 3101, 3102, 3089, 3103, 3104, 3090, 3091, 3107, + 3096, 3113, 3108, 3114, 3097, 3108, 3109, 3105, 3106, 3099, + 3110, 3917, 3115, 3117, 3917, 3116, 3917, 3111, 3116, 3100, + 3101, 3102, 3118, 3103, 3104, 3119, 3120, 3107, 3122, 3113, + 3123, 3114, 3124, 3126, 3109, 3105, 3106, 3127, 3110, 3129, + 3115, 3117, 3130, 3131, 3132, 3111, 3133, 3134, 3135, 3136, + 3118, 3137, 3140, 3119, 3120, 3141, 3122, 3142, 3123, 3143, + 3124, 3126, 3138, 3139, 3144, 3127, 3145, 3129, 3146, 3147, + + 3130, 3131, 3132, 3148, 3133, 3134, 3135, 3136, 3149, 3137, + 3140, 3150, 3151, 3141, 3152, 3142, 3153, 3143, 3154, 3156, + 3138, 3139, 3144, 3157, 3145, 3159, 3146, 3147, 3160, 3154, + 3161, 3148, 3162, 3163, 3157, 3165, 3149, 3166, 3167, 3150, + 3151, 3168, 3152, 3169, 3153, 3170, 3171, 3156, 3172, 3174, + 3175, 3178, 3176, 3159, 3179, 3181, 3160, 3471, 3161, 3155, + 3162, 3163, 2489, 3165, 3158, 3166, 3167, 3177, 3471, 3168, + 1705, 3169, 2858, 3170, 3171, 1873, 3172, 3174, 3175, 3178, + 3176, 2850, 3179, 1838, 2850, 3034, 2850, 3764, 2281, 3042, + 3182, 3180, 2281, 2850, 2852, 3177, 2850, 1820, 2850, 2850, + + 3037, 2676, 2850, 3038, 2850, 1748, 2852, 1388, 2853, 3183, + 3027, 2484, 2850, 3192, 2484, 2850, 2484, 2850, 2677, 3193, + 2865, 2684, 3025, 3194, 2486, 2852, 3031, 2858, 3195, 3218, + 2850, 3229, 3218, 2850, 3229, 2850, 3034, 3765, 2685, 2853, + 3187, 3192, 3093, 2852, 1565, 3093, 3186, 3193, 3039, 3196, + 3197, 3194, 3198, 3199, 3184, 3037, 3195, 2865, 1724, 2484, + 2850, 3200, 2484, 2850, 2484, 2850, 3185, 3034, 3201, 3189, + 3038, 3202, 2486, 2852, 3203, 3204, 3205, 3196, 3197, 3206, + 3198, 3199, 3207, 3208, 3209, 3042, 3190, 2865, 3210, 3200, + 3211, 3212, 3213, 3214, 3215, 3216, 3201, 3217, 3219, 3202, + + 3220, 3221, 3203, 3204, 3205, 3222, 3223, 3206, 3224, 3225, + 3207, 3208, 3209, 3226, 3191, 3042, 3210, 1720, 3211, 3212, + 3213, 3214, 3215, 3216, 1708, 3217, 3219, 3087, 3220, 3221, + 3087, 3228, 3230, 3222, 3223, 3917, 3224, 3225, 3917, 3232, + 3917, 3226, 3233, 3235, 3227, 3227, 3227, 3227, 3227, 3227, + 3227, 3227, 3227, 3236, 3237, 3238, 3239, 3240, 3241, 3228, + 3230, 3242, 3243, 3253, 1707, 3330, 3253, 3232, 3330, 1705, + 3233, 3235, 3245, 3246, 3108, 3247, 3249, 3108, 3250, 3251, + 3254, 3236, 3237, 3238, 3239, 3240, 3241, 3255, 3256, 3242, + 3243, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, + + 3245, 3246, 3257, 3247, 3249, 3258, 3250, 3251, 3254, 3259, + 3260, 3261, 3262, 3263, 3264, 3255, 3256, 3265, 3266, 3267, + 3268, 3269, 3270, 3271, 3272, 3273, 3275, 3276, 3277, 3278, + 3257, 3280, 3281, 3258, 3282, 3283, 3284, 3259, 3260, 3261, + 3262, 3263, 3264, 3285, 3286, 3265, 3266, 3267, 3268, 3269, + 3270, 3271, 3272, 3273, 3275, 3276, 3277, 3278, 3288, 3280, + 3281, 3290, 3282, 3283, 3284, 3291, 3292, 3293, 3294, 3288, + 3295, 3285, 3286, 3296, 3297, 3298, 3299, 3300, 3301, 3302, + 3303, 3305, 3360, 3218, 1648, 3360, 3218, 2850, 3333, 3290, + 2850, 3304, 2850, 3291, 3292, 3293, 3294, 3025, 3295, 3289, + + 2852, 3296, 3297, 3298, 3299, 3300, 3301, 3302, 3303, 3305, + 3027, 3307, 2850, 2850, 2853, 2850, 2850, 2850, 2850, 3304, + 1647, 2484, 3030, 3030, 2484, 3312, 2484, 2858, 2677, 3253, + 3313, 3306, 3253, 2850, 2486, 3314, 2850, 3315, 2850, 3031, + 3031, 3476, 3026, 3038, 2484, 1637, 2852, 2484, 2685, 2484, + 3316, 3317, 3476, 3312, 3189, 3028, 2861, 2486, 3313, 2850, + 2865, 3318, 2850, 3314, 2850, 3315, 3319, 3032, 3184, 2864, + 2484, 3190, 2852, 2484, 3320, 2484, 2871, 3321, 3316, 3317, + 3310, 3322, 3323, 2486, 3324, 3325, 2865, 3326, 3039, 3318, + 3327, 3328, 3329, 3331, 3319, 3332, 3335, 3190, 3336, 3308, + + 3337, 3338, 3320, 3339, 3340, 3321, 3341, 3342, 3369, 3322, + 3323, 3369, 3324, 3325, 2866, 3326, 3706, 3343, 3327, 3328, + 3329, 3331, 1636, 3332, 3335, 3311, 3336, 3706, 3337, 3338, + 3229, 3339, 3340, 3229, 3341, 3342, 3227, 3227, 3227, 3227, + 3227, 3227, 3227, 3227, 3227, 3343, 3345, 3344, 3344, 3344, + 3344, 3344, 3344, 3344, 3344, 3344, 3347, 3348, 3351, 3352, + 3348, 3353, 3354, 3355, 3356, 3357, 3358, 3359, 3361, 3362, + 3363, 3364, 3365, 3366, 3345, 3244, 3244, 3244, 3244, 3244, + 3244, 3244, 3244, 3244, 3347, 3367, 3351, 3352, 3368, 3353, + 3354, 3355, 3356, 3357, 3358, 3359, 3361, 3362, 3363, 3364, + + 3365, 3366, 3370, 3349, 3371, 3372, 3373, 3371, 3374, 3375, + 3377, 3378, 3379, 3367, 3380, 3382, 3368, 3383, 3384, 3385, + 3386, 3389, 3390, 3391, 3392, 3394, 3395, 3396, 1635, 3399, + 3370, 3349, 3400, 3372, 3373, 3401, 3374, 3375, 3377, 3378, + 3379, 3402, 3380, 3382, 3403, 3383, 3384, 3385, 3386, 3389, + 3390, 3391, 3392, 3394, 3395, 3396, 3397, 3399, 3404, 3405, + 3400, 3406, 3407, 3401, 3398, 3409, 3410, 3411, 3412, 3402, + 3413, 3414, 3403, 3311, 3027, 2850, 2281, 1571, 2850, 3416, + 2850, 3417, 1570, 3687, 3397, 3025, 3404, 3405, 2852, 3406, + 3407, 2858, 3398, 3409, 3410, 3411, 3412, 1565, 3413, 3414, + + 2484, 2850, 2853, 2484, 2850, 2484, 2850, 3416, 3418, 3417, + 3415, 3038, 2484, 2486, 2852, 2484, 3419, 2484, 3420, 2859, + 3421, 3422, 3189, 3423, 3424, 2486, 3425, 3190, 2865, 3426, + 2854, 3427, 3428, 3688, 3430, 3431, 3418, 3430, 3433, 3190, + 3434, 3435, 3436, 3437, 3419, 3438, 3420, 3455, 3421, 3422, + 3455, 3423, 3424, 3707, 3425, 3311, 2866, 3426, 3330, 3427, + 3428, 3330, 3456, 3431, 3707, 3456, 3433, 3311, 3434, 3435, + 3436, 3437, 1541, 3438, 1540, 3429, 3429, 3429, 3429, 3429, + 3429, 3429, 3429, 3429, 3432, 3432, 3432, 3432, 3432, 3432, + 3432, 3432, 3432, 3432, 3432, 3334, 3334, 3334, 3334, 3334, + + 3334, 3334, 3334, 3334, 3334, 3334, 3439, 3440, 3441, 3432, + 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3442, + 3334, 3443, 3445, 3446, 3447, 3448, 3457, 3460, 3465, 3457, + 3460, 3465, 1537, 1536, 3439, 3440, 3441, 3348, 3449, 3450, + 3348, 3451, 3452, 3453, 3458, 3459, 3461, 3442, 3462, 3443, + 3445, 3446, 3447, 3448, 3444, 3444, 3444, 3444, 3444, 3444, + 3444, 3444, 3444, 3463, 1535, 3466, 3449, 3450, 3466, 3451, + 3452, 3453, 3458, 3459, 3461, 3371, 3462, 3468, 3371, 3469, + 3470, 3473, 3474, 3475, 3477, 3478, 1534, 1533, 3482, 3483, + 3484, 3463, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, + + 3467, 3485, 3486, 3487, 3488, 3468, 3479, 3469, 3470, 3473, + 3474, 3475, 3477, 3478, 3480, 3481, 3482, 3483, 3484, 3489, + 3490, 3491, 3492, 3493, 3494, 3495, 3496, 3497, 3498, 3485, + 3486, 3487, 3488, 3499, 3479, 3500, 3501, 3502, 3501, 3503, + 3504, 3506, 3480, 3481, 3507, 1531, 3508, 3489, 3490, 3491, + 3492, 3493, 3494, 3495, 3496, 3497, 3498, 3509, 3510, 3511, + 3512, 3499, 3513, 3500, 3514, 3502, 3519, 3503, 3504, 3506, + 2484, 1113, 3507, 2484, 3508, 2484, 3517, 872, 3455, 3517, + 3189, 3455, 3520, 2486, 1478, 3509, 3510, 3511, 3512, 3521, + 3513, 3522, 3514, 3523, 3519, 3524, 3525, 3190, 3429, 3429, + + 3429, 3429, 3429, 3429, 3429, 3429, 3429, 1469, 3501, 3430, + 3520, 3518, 3430, 3465, 3515, 1467, 3551, 3521, 3526, 3522, + 3527, 3523, 1462, 3524, 3525, 3308, 3516, 3516, 3516, 3516, + 3516, 3516, 3516, 3516, 3516, 3432, 3432, 3432, 3432, 3432, + 3432, 3432, 3432, 3432, 3432, 3432, 3526, 3528, 3527, 3444, + 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3529, 3530, + 3432, 3531, 3532, 1457, 3534, 3532, 3535, 3536, 3537, 3539, + 3544, 3545, 3539, 3542, 3540, 3528, 3542, 3460, 3543, 3547, + 3460, 3548, 3546, 3549, 3553, 3556, 3529, 3530, 1399, 3531, + 3557, 3533, 3534, 1398, 3535, 3536, 3537, 3593, 3544, 3545, + + 3593, 3599, 3603, 3466, 3599, 3603, 3466, 3547, 540, 3548, + 3554, 3549, 3553, 3556, 3558, 3559, 3555, 3560, 3557, 3533, + 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3552, 3467, + 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3554, 3561, + 3562, 3563, 3558, 3559, 3555, 3560, 3564, 3566, 3568, 3569, + 3570, 3571, 3572, 3573, 3575, 3576, 3579, 3580, 3594, 3594, + 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3561, 3562, 3563, + 3582, 3583, 3584, 3587, 3564, 3566, 3568, 3569, 3570, 3571, + 3572, 3573, 3575, 3576, 3579, 3580, 3581, 3581, 3581, 3581, + 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3588, 3582, 3583, + + 3584, 3587, 3589, 3590, 3591, 3592, 3596, 3597, 3598, 3600, + 538, 3581, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, + 3516, 3517, 3601, 3602, 3517, 3588, 3604, 3605, 3606, 3607, + 3589, 3590, 3591, 3592, 3596, 3597, 3598, 3600, 3595, 3595, + 3595, 3595, 3595, 3595, 3595, 3595, 3595, 3609, 3610, 3532, + 3601, 3602, 3532, 3611, 3604, 3605, 3606, 3607, 3612, 3539, + 3614, 3612, 3539, 3617, 3540, 3618, 3608, 3608, 3608, 3608, + 3608, 3608, 3608, 3608, 3608, 3609, 3610, 3542, 3622, 3623, + 3542, 3611, 3543, 3624, 533, 3626, 3627, 3613, 3614, 3664, + 531, 3617, 3664, 3618, 516, 3667, 3603, 3628, 3667, 3603, + + 3664, 3671, 3550, 3664, 514, 3720, 3622, 3623, 510, 3465, + 1389, 3624, 3551, 3626, 3627, 3613, 3625, 3625, 3625, 3625, + 3625, 3625, 3625, 3625, 3625, 3628, 3625, 3625, 3625, 3625, + 3625, 3625, 3625, 3625, 3625, 3552, 3552, 3552, 3552, 3552, + 3552, 3552, 3552, 3552, 3629, 3631, 3632, 3633, 3634, 3635, + 3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3646, + 3649, 3595, 3595, 3595, 3595, 3595, 3595, 3595, 3595, 3595, + 1385, 1379, 3629, 3631, 3632, 3633, 3634, 3635, 3636, 3637, + 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3646, 3649, 3581, + 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, + + 3650, 3651, 3652, 3654, 3655, 3656, 3658, 3667, 3659, 3658, + 3667, 3660, 3723, 3917, 3581, 3663, 3665, 3776, 3669, 3659, + 3776, 3672, 3662, 3673, 3674, 3675, 3676, 3677, 3650, 3651, + 3652, 3654, 3655, 3656, 3594, 3594, 3594, 3594, 3594, 3594, + 3594, 3594, 3594, 3663, 3665, 3599, 3669, 3777, 3599, 3672, + 3777, 3673, 3674, 3675, 3676, 3677, 3679, 3680, 3683, 3690, + 3691, 3692, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, + 3666, 3608, 3608, 3608, 3608, 3608, 3608, 3608, 3608, 3608, + 3612, 3693, 3754, 3612, 3679, 3680, 3683, 3690, 3691, 3692, + 3661, 3694, 3695, 3754, 1349, 1341, 1330, 3678, 3678, 3678, + + 3678, 3678, 3678, 3678, 3678, 3678, 3684, 3550, 3696, 3693, + 3685, 3697, 3698, 3699, 3700, 3701, 3702, 3686, 3703, 3694, + 3695, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, + 3704, 3705, 3708, 3709, 3684, 3713, 3696, 3715, 3685, 3697, + 3698, 3699, 3700, 3701, 3702, 3686, 3703, 3716, 3717, 3659, + 3719, 3659, 3659, 3722, 3917, 3798, 431, 418, 3704, 3705, + 3708, 3709, 3659, 3713, 3658, 3715, 3659, 3658, 3917, 3660, + 3726, 3917, 3727, 3917, 3728, 3716, 3717, 3659, 3719, 3729, + 3730, 3722, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, + 3666, 3731, 3732, 3733, 3734, 3735, 3736, 3737, 3726, 3739, + + 3727, 3740, 3728, 3741, 3742, 3799, 3743, 3729, 3730, 3678, + 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3744, 3731, + 3732, 3733, 3734, 3735, 3736, 3737, 3745, 3739, 3746, 3740, + 3747, 3741, 3742, 3661, 3743, 3748, 3749, 3750, 3751, 3752, + 3753, 3755, 3756, 3760, 3757, 3767, 3744, 3917, 3661, 3768, + 3917, 3769, 3917, 3770, 3745, 3758, 3746, 3771, 3747, 3772, + 3773, 3778, 3779, 3748, 3749, 3750, 3751, 3752, 3753, 3755, + 3756, 3760, 3757, 3767, 3780, 3774, 3781, 3768, 3774, 3769, + 3782, 3770, 3783, 3758, 3784, 3771, 3785, 3772, 3773, 3778, + 3779, 3786, 3787, 3788, 3798, 3789, 3790, 3792, 3793, 3794, + + 3795, 3796, 3780, 3801, 3781, 3802, 3803, 3804, 3782, 3805, + 3783, 3806, 3784, 3808, 3785, 3809, 3808, 3832, 414, 3786, + 3787, 3788, 3775, 3789, 3790, 3792, 3793, 3794, 3795, 3796, + 3816, 3801, 3817, 3802, 3803, 3804, 3818, 3805, 3814, 3806, + 3819, 3814, 3776, 3809, 3765, 3776, 3777, 3811, 3820, 3777, + 3775, 3813, 3815, 3822, 3823, 3815, 3824, 3825, 3816, 3826, + 3817, 3827, 3830, 3831, 3818, 3833, 3831, 3765, 3819, 3834, + 3835, 3836, 3837, 3838, 3808, 3917, 3820, 3808, 3917, 3798, + 3917, 3822, 3823, 3917, 3824, 3825, 3917, 3826, 3917, 3827, + 3830, 3814, 3845, 3833, 3814, 3846, 3842, 3834, 3835, 3836, + + 3837, 3838, 3815, 3847, 3848, 3815, 3849, 3844, 3850, 3851, + 3852, 3853, 3860, 3854, 3862, 3860, 3863, 3861, 3864, 3863, + 3845, 3866, 3865, 3846, 3855, 3865, 3871, 3856, 3872, 3799, + 3917, 3847, 3848, 3917, 3849, 3917, 3850, 3851, 3852, 3853, + 3917, 3854, 3862, 3917, 3873, 3917, 3864, 3874, 3875, 3866, + 3876, 3877, 3855, 3878, 3871, 3856, 3872, 3879, 3880, 3881, + 3860, 3884, 3888, 3860, 3886, 3861, 399, 3886, 395, 373, + 369, 363, 3873, 3891, 3863, 3874, 3875, 3863, 3876, 3877, + 3892, 3878, 3893, 3894, 3895, 3879, 3880, 3881, 3896, 3884, + 3888, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, + + 3865, 3891, 3897, 3865, 3898, 359, 355, 1273, 3892, 1212, + 3893, 3894, 3895, 1211, 3901, 1195, 3896, 3887, 3887, 3887, + 3887, 3887, 3887, 3887, 3887, 3887, 3886, 1186, 1174, 3886, + 3897, 1153, 3898, 3885, 3885, 3885, 3885, 3885, 3885, 3885, + 3885, 3885, 3901, 3900, 3900, 3900, 3900, 3900, 3900, 3900, + 3900, 3900, 3887, 3887, 3887, 3887, 3887, 3887, 3887, 3887, + 3887, 3902, 3903, 3904, 3906, 3907, 3900, 3900, 3900, 3900, + 3900, 3900, 3900, 3900, 3900, 3908, 3909, 3910, 3911, 3912, + 3913, 3914, 3915, 3916, 1138, 662, 1113, 645, 385, 3902, + 3903, 3904, 3906, 3907, 385, 872, 1070, 1059, 1051, 1048, + + 1006, 540, 538, 3908, 3909, 3910, 3911, 3912, 3913, 3914, + 3915, 3916, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, - - 76, 76, 76, 76, 76, 76, 76, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, - 98, 98, 98, 98, 98, 128, 128, 128, 128, 128, + 98, 98, 98, 98, 98, 98, 98, 98, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 134, 134, 134, 134, 134, 134, 134, + 128, 128, 128, 128, 128, 128, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 137, 137, 137, 137, 137, 137, 137, 137, 137, - 137, 137, 137, 137, 137, 137, 137, 137, 137, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 149, 149, 149, + 134, 134, 134, 134, 137, 137, 137, 137, 137, 137, + 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, + 137, 137, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, - 149, 149, 149, 149, 149, 156, 156, 156, 156, 156, + 149, 149, 149, 149, 149, 149, 149, 149, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 156, 156, 162, 162, 162, 162, 162, 162, 162, + 156, 156, 156, 156, 156, 156, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, - 162, 169, 169, 169, 169, 169, 169, 169, 169, 169, - 169, 169, 169, 169, 169, 169, 169, 169, 169, 179, + 162, 162, 162, 162, 169, 169, 169, 169, 169, 169, + 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, + 169, 169, 179, 179, 179, 179, 179, 179, 179, 179, + 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, - 179, 179, 179, 179, 179, 179, 179, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, - - 185, 185, 185, 185, 185, 227, 227, 227, 227, 227, + 185, 185, 185, 185, 185, 185, 185, 185, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, - 227, 227, 227, 232, 232, 232, 232, 232, 232, 232, + 227, 227, 227, 227, 227, 227, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, - 232, 237, 237, 237, 237, 237, 237, 237, 237, 237, - 237, 237, 237, 237, 237, 237, 237, 237, 237, 238, + 232, 232, 232, 232, 237, 237, 237, 237, 237, 237, + 237, 237, 237, 237, 237, 237, 237, 237, 237, 237, + 237, 237, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, - 238, 238, 238, 238, 238, 238, 238, 239, 239, 239, - 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, - 239, 239, 239, 239, 239, 240, 240, 240, 240, 240, + 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, + 239, 239, 239, 239, 239, 239, 239, 239, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, - 240, 240, 240, 241, 241, 241, 241, 241, 241, 241, + 240, 240, 240, 240, 240, 240, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, - 241, 249, 249, 249, 249, 249, 249, 249, 249, 249, - 249, 249, 249, 249, 249, 249, 249, 249, 249, 251, + 241, 241, 241, 241, 249, 249, 249, 249, 249, 249, + 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, + 249, 249, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, - 251, 251, 251, 251, 251, 251, 251, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, - 255, 255, 255, 255, 255, 258, 258, 258, 258, 258, - 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, - 258, 258, 258, 266, 266, 983, 266, 266, 266, 266, + 255, 255, 255, 255, 255, 255, 255, 255, 258, 258, + 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, + 258, 258, 258, 258, 258, 258, 266, 266, 1004, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, - 266, 346, 346, 346, 346, 346, 346, 346, 346, 346, - 346, 346, 346, 346, 346, 346, 346, 346, 346, 356, + 266, 266, 266, 266, 346, 346, 346, 346, 346, 346, + 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, - 356, 356, 356, 356, 356, 356, 356, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, - 363, 363, 363, 363, 363, 366, 366, 366, 366, 366, - 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, - 366, 366, 366, 373, 373, 373, 373, 373, 373, 373, + 363, 363, 363, 363, 363, 363, 363, 363, 366, 366, + 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, + 366, 366, 366, 366, 366, 366, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, - 373, 376, 376, 376, 376, 376, 376, 376, 376, 376, - 376, 376, 376, 376, 376, 376, 376, 376, 376, 382, + 373, 373, 373, 373, 376, 376, 376, 376, 376, 376, + 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, + 376, 376, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, - 382, 382, 382, 382, 382, 382, 382, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, - 387, 387, 387, 387, 387, 391, 391, 391, 391, 391, + 387, 387, 387, 387, 387, 387, 387, 387, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, - 391, 391, 391, 399, 399, 399, 399, 399, 399, 399, - 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, - 399, 402, 402, 402, 402, 402, 402, 402, 402, 402, - 402, 402, 402, 402, 402, 402, 402, 402, 402, 411, + 391, 391, 391, 391, 391, 391, 399, 399, 399, 399, + 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, + 399, 399, 399, 399, 402, 402, 402, 402, 402, 402, + 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, + 402, 402, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, - 411, 411, 411, 411, 411, 411, 411, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, - 418, 418, 418, 418, 418, 421, 421, 421, 421, 421, + 418, 418, 418, 418, 418, 418, 418, 418, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, - 421, 421, 421, 505, 505, 505, 505, 505, 505, 505, - 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, - 505, 511, 511, 511, 511, 511, 511, 511, 511, 511, + 421, 421, 421, 421, 421, 421, 505, 505, 505, 505, - 511, 511, 511, 511, 511, 511, 511, 511, 511, 516, + 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, + 505, 505, 505, 505, 511, 511, 511, 511, 511, 511, + 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, + 511, 511, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, - 516, 516, 516, 516, 516, 516, 516, 517, 517, 974, - 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, - 517, 517, 517, 517, 517, 518, 518, 973, 518, 518, - 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, - 518, 518, 518, 519, 519, 943, 519, 519, 519, 519, + 517, 517, 533, 517, 517, 517, 517, 517, 517, 517, + 517, 517, 517, 517, 517, 517, 517, 517, 518, 518, + 531, 518, 518, 518, 518, 518, 518, 518, 518, 518, + 518, 518, 518, 518, 518, 518, 519, 519, 998, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, - 519, 528, 528, 528, 528, 528, 528, 528, 528, 528, - 528, 528, 528, 528, 528, 528, 528, 528, 528, 533, + 519, 519, 519, 519, 528, 528, 528, 528, 528, 528, + 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, + 528, 528, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, - 533, 533, 533, 533, 533, 533, 533, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, - 535, 535, 535, 535, 535, 540, 540, 540, 540, 540, + 535, 535, 535, 535, 535, 535, 535, 535, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 266, 266, 933, 266, 266, 266, 266, + 540, 540, 540, 540, 540, 540, 266, 266, 516, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, - 266, 346, 346, 346, 346, 346, 346, 346, 346, 346, - 346, 346, 346, 346, 346, 346, 346, 346, 346, 356, - 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, + 266, 266, 266, 266, 346, 346, 346, 346, 346, 346, - 356, 356, 356, 356, 356, 356, 356, 363, 363, 363, + 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, + 346, 346, 356, 356, 356, 356, 356, 356, 356, 356, + 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, - 363, 363, 363, 921, 363, 366, 366, 366, 366, 366, + 363, 363, 363, 363, 363, 363, 514, 363, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, - 366, 366, 366, 373, 373, 373, 373, 373, 373, 373, - 373, 373, 373, 373, 373, 373, 373, 373, 373, 911, - 373, 376, 376, 376, 376, 376, 376, 376, 376, 376, - 376, 376, 376, 376, 376, 376, 376, 376, 376, 382, - 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, - 382, 382, 382, 382, 382, 382, 382, 639, 639, 639, + 366, 366, 366, 366, 366, 366, 373, 373, 373, 373, + 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, + 373, 373, 996, 373, 376, 376, 376, 376, 376, 376, + 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, + 376, 376, 382, 382, 382, 382, 382, 382, 382, 382, + 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, - 639, 639, 639, 639, 639, 387, 387, 387, 387, 387, + 639, 639, 639, 639, 639, 639, 639, 639, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, - 387, 387, 387, 644, 431, 644, 644, 908, 418, 644, - 644, 644, 644, 644, 414, 644, 644, 644, 644, 644, + 387, 387, 387, 387, 387, 387, 644, 510, 644, 644, + 991, 983, 644, 644, 644, 644, 644, 974, 644, 644, + 644, 644, 644, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, - 391, 391, 391, 391, 391, 391, 391, 391, 399, 399, - 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, - 399, 399, 399, 399, 662, 399, 652, 652, 652, 652, - 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, + 391, 399, 399, 399, 399, 399, 399, 399, 399, 399, - 652, 652, 652, 652, 402, 402, 402, 402, 402, 402, + 399, 399, 399, 399, 399, 399, 399, 973, 399, 652, + 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, + 652, 652, 652, 652, 652, 652, 652, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, - 402, 402, 659, 659, 659, 659, 659, 659, 659, 659, + 402, 402, 402, 402, 402, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, - 661, 881, 661, 661, 399, 395, 661, 661, 661, 661, - 661, 645, 661, 661, 661, 661, 661, 411, 411, 411, + 659, 659, 659, 661, 943, 661, 661, 933, 921, 661, + 661, 661, 661, 661, 911, 661, 661, 661, 661, 661, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, - 411, 411, 411, 411, 411, 418, 418, 418, 418, 418, - 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, - 418, 863, 418, 421, 421, 421, 421, 421, 421, 421, + 411, 411, 411, 411, 411, 411, 411, 411, 418, 418, + 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, + 418, 418, 418, 418, 431, 418, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, - 421, 505, 505, 505, 505, 505, 505, 505, 505, 505, - 505, 505, 505, 505, 505, 505, 505, 505, 505, 511, + 421, 421, 421, 421, 505, 505, 505, 505, 505, 505, + 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, + 505, 505, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, - 511, 511, 511, 511, 511, 511, 511, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, - 516, 516, 516, 373, 516, 517, 517, 369, 517, 517, - 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, - 517, 517, 517, 518, 518, 860, 518, 518, 518, 518, - 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, + 516, 516, 516, 516, 516, 516, 908, 516, 517, 517, + 418, 517, 517, 517, 517, 517, 517, 517, 517, 517, - 518, 519, 519, 363, 519, 519, 519, 519, 519, 519, - 519, 519, 519, 519, 519, 519, 519, 519, 519, 528, + 517, 517, 517, 517, 517, 517, 518, 518, 414, 518, + 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, + 518, 518, 518, 518, 519, 519, 662, 519, 519, 519, + 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, + 519, 519, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, - 528, 528, 528, 528, 528, 528, 528, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, - 533, 533, 533, 359, 533, 535, 535, 535, 535, 535, + 533, 533, 533, 533, 533, 533, 881, 533, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, - 535, 535, 535, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, 540, 857, - 540, 266, 266, 355, 266, 266, 266, 266, 266, 266, + 535, 535, 535, 535, 535, 535, 540, 540, 540, 540, - 266, 266, 266, 266, 266, 266, 266, 266, 266, 346, + 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, + 540, 540, 399, 540, 266, 266, 395, 266, 266, 266, + 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, + 266, 266, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, - 346, 346, 346, 346, 346, 346, 346, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, - 363, 363, 363, 363, 363, 356, 356, 356, 356, 356, + 363, 363, 363, 363, 363, 363, 363, 363, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, - 356, 356, 356, 373, 373, 373, 373, 373, 373, 373, + 356, 356, 356, 356, 356, 356, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, - 373, 366, 366, 366, 366, 366, 366, 366, 366, 366, - 366, 366, 366, 366, 366, 366, 366, 366, 366, 639, + 373, 373, 373, 373, 366, 366, 366, 366, 366, 366, + 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, + 366, 366, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, - 639, 639, 639, 639, 639, 639, 639, 867, 773, 867, - 867, 538, 539, 867, 867, 867, 867, 867, 531, 867, - 867, 867, 867, 867, 867, 870, 532, 870, 870, 514, - 515, 870, 870, 870, 870, 870, 508, 870, 870, 870, - 870, 870, 870, 387, 387, 387, 387, 387, 387, 387, + 867, 645, 867, 867, 863, 373, 867, 867, 867, 867, + 867, 369, 867, 867, 867, 867, 867, 867, 870, 860, + 870, 870, 363, 359, 870, 870, 870, 870, 870, 857, + 870, 870, 870, 870, 870, 870, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, - 387, 644, 752, 644, 644, 738, 479, 644, 644, 644, - 644, 644, 734, 644, 644, 644, 644, 644, 399, 399, - 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, + 387, 387, 387, 387, 644, 355, 644, 644, 773, 538, - 399, 399, 399, 399, 399, 399, 391, 391, 391, 391, + 644, 644, 644, 644, 644, 539, 644, 644, 644, 644, + 644, 399, 399, 399, 399, 399, 399, 399, 399, 399, + 399, 399, 399, 399, 399, 399, 399, 399, 399, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, - 391, 391, 391, 391, 652, 652, 652, 652, 652, 652, + 391, 391, 391, 391, 391, 391, 391, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, - 652, 652, 883, 883, 883, 883, 883, 883, 883, 883, + 652, 652, 652, 652, 652, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, - 885, 696, 885, 885, 681, 437, 885, 885, 885, 885, - 885, 428, 885, 885, 885, 885, 885, 885, 657, 657, - 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, - 657, 657, 657, 657, 657, 657, 402, 402, 402, 402, + 883, 883, 883, 885, 531, 885, 885, 532, 514, 885, + 885, 885, 885, 885, 515, 885, 885, 885, 885, 885, + 885, 657, 657, 657, 657, 657, 657, 657, 657, 657, + 657, 657, 657, 657, 657, 657, 657, 657, 657, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, - 402, 402, 402, 402, 661, 414, 661, 661, 417, 395, - 661, 661, 661, 661, 661, 398, 661, 661, 661, 661, - 661, 659, 659, 659, 659, 659, 659, 659, 659, 659, - 659, 659, 659, 659, 659, 659, 659, 659, 659, 418, + 402, 402, 402, 402, 402, 402, 402, 661, 508, 661, + 661, 752, 738, 661, 661, 661, 661, 661, 479, 661, + 661, 661, 661, 661, 659, 659, 659, 659, 659, 659, + 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, + 659, 659, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, - 418, 418, 418, 418, 418, 418, 418, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, - 411, 411, 411, 411, 411, 421, 421, 421, 421, 421, - 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, - 421, 421, 421, 505, 505, 505, 505, 505, 505, 505, + 411, 411, 411, 411, 411, 411, 411, 411, 421, 421, + 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, + 421, 421, 421, 421, 421, 421, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, - 505, 516, 516, 516, 516, 516, 516, 516, 516, 516, - 516, 516, 516, 516, 516, 516, 516, 516, 516, 511, + 505, 505, 505, 505, 516, 516, 516, 516, 516, 516, + 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, + 516, 516, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, - 511, 511, 511, 511, 511, 511, 511, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, - 533, 533, 533, 533, 533, 528, 528, 528, 528, 528, - 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, - 528, 528, 528, 540, 540, 540, 540, 540, 540, 540, + 533, 533, 533, 533, 533, 533, 533, 533, 528, 528, + 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, + 528, 528, 528, 528, 528, 528, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, - 540, 535, 535, 535, 535, 535, 535, 535, 535, 535, - 535, 535, 535, 535, 535, 535, 535, 535, 535, 266, - 266, 390, 266, 266, 266, 266, 266, 266, 266, 266, - 266, 266, 266, 266, 266, 266, 266, 346, 346, 346, + 540, 540, 540, 540, 535, 535, 535, 535, 535, 535, + 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, + 535, 535, 266, 266, 734, 266, 266, 266, 266, 266, + 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, - 346, 346, 346, 346, 346, 356, 356, 356, 356, 356, + 346, 346, 346, 346, 346, 346, 346, 346, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, - 356, 356, 356, 366, 366, 366, 366, 366, 366, 366, + + 356, 356, 356, 356, 356, 356, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, + 366, 366, 366, 366, 639, 639, 639, 639, 639, 639, + 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, + 639, 639, 867, 696, 867, 867, 681, 437, 867, 867, + 867, 867, 867, 428, 867, 867, 867, 867, 867, 867, + 870, 414, 870, 870, 417, 395, 870, 870, 870, 870, + 870, 398, 870, 870, 870, 870, 870, 870, 644, 390, + 644, 644, 385, 369, 644, 644, 644, 644, 644, 372, + 644, 644, 644, 644, 644, 652, 652, 652, 652, 652, - 366, 639, 639, 639, 639, 639, 639, 639, 639, 639, - 639, 639, 639, 639, 639, 639, 639, 639, 639, 867, - 385, 867, 867, 369, 372, 867, 867, 867, 867, 867, - 359, 867, 867, 867, 867, 867, 867, 870, 362, 870, - 870, 351, 592, 870, 870, 870, 870, 870, 591, 870, - 870, 870, 870, 870, 870, 644, 558, 644, 644, 541, - 539, 644, 644, 644, 644, 644, 539, 644, 644, 644, - 644, 644, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, - 885, 532, 885, 885, 515, 508, 885, 885, 885, 885, - - 885, 479, 885, 885, 885, 885, 885, 885, 657, 657, - 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, - 657, 657, 657, 657, 657, 657, 889, 437, 889, 889, - 417, 398, 889, 889, 889, 889, 889, 398, 889, 889, - 889, 889, 889, 889, 883, 883, 883, 883, 883, 883, + 652, 652, 652, 885, 359, 885, 885, 362, 351, 885, + 885, 885, 885, 885, 592, 885, 885, 885, 885, 885, + 885, 657, 657, 657, 657, 657, 657, 657, 657, 657, + 657, 657, 657, 657, 657, 657, 657, 657, 657, 889, + 591, 889, 889, 558, 541, 889, 889, 889, 889, 889, + 539, 889, 889, 889, 889, 889, 889, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, - 883, 883, 886, 886, 886, 886, 886, 886, 886, 886, + 883, 883, 883, 883, 883, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, - 661, 385, 661, 661, 385, 385, 661, 661, 661, 661, - 661, 372, 661, 661, 661, 661, 661, 402, 402, 402, + 886, 886, 886, 661, 539, 661, 661, 532, 515, 661, + 661, 661, 661, 661, 508, 661, 661, 661, 661, 661, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, - 402, 402, 402, 402, 402, 411, 411, 411, 411, 411, + 402, 402, 402, 402, 402, 402, 402, 402, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, - 411, 411, 411, 421, 421, 421, 421, 421, 421, 421, + 411, 411, 411, 411, 411, 411, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, - 421, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, - 372, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 505, + 421, 421, 421, 421, 1152, 1152, 1152, 1152, 1152, 1152, + 1152, 1152, 1152, 479, 1152, 1152, 1152, 1152, 1152, 1152, + 1152, 1152, 505, 505, 505, 505, 505, 505, 505, 505, + 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, - 505, 505, 505, 505, 505, 505, 505, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, - - 511, 511, 511, 511, 511, 528, 528, 528, 528, 528, + 511, 511, 511, 511, 511, 511, 511, 511, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, - 528, 528, 528, 535, 535, 535, 535, 535, 535, 535, + 528, 528, 528, 528, 528, 528, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, - 535, 266, 266, 362, 266, 266, 266, 266, 266, 266, - 266, 266, 266, 266, 266, 266, 266, 266, 266, 363, + 535, 535, 535, 535, 266, 266, 437, 266, 266, 266, + 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, + 266, 266, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, - 363, 363, 363, 363, 363, 363, 363, 373, 373, 373, - 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, - 373, 373, 373, 373, 373, 639, 639, 639, 639, 639, + 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, + 373, 373, 373, 373, 373, 373, 373, 373, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, - 639, 639, 639, 867, 351, 867, 867, 317, 3910, 867, - 867, 867, 867, 867, 250, 867, 867, 867, 867, 867, - 867, 870, 250, 870, 870, 98, 98, 870, 870, 870, - 870, 870, 98, 870, 870, 870, 870, 870, 870, 399, + 639, 639, 639, 639, 639, 639, 867, 417, 867, 867, + 398, 398, 867, 867, 867, 867, 867, 385, 867, 867, + 867, 867, 867, 867, 870, 385, 870, 870, 385, 372, + 870, 870, 870, 870, 870, 372, 870, 870, 870, 870, + 870, 870, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, - 399, 399, 399, 399, 399, 399, 399, 885, 98, 885, - 885, 98, 98, 885, 885, 885, 885, 885, 98, 885, - 885, 885, 885, 885, 885, 886, 886, 886, 886, 886, - 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, + 885, 362, 885, 885, 351, 317, 885, 885, 885, 885, - 886, 886, 886, 661, 98, 661, 661, 161, 161, 661, - 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, + 885, 3917, 885, 885, 885, 885, 885, 885, 886, 886, + 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, + 886, 886, 886, 886, 886, 886, 661, 250, 661, 661, + 250, 98, 661, 661, 661, 661, 661, 661, 661, 661, + 661, 661, 661, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, - 659, 659, 659, 659, 659, 659, 659, 659, 418, 418, - 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, - 418, 418, 418, 418, 418, 418, 1340, 160, 1340, 1340, - 160, 3910, 1340, 1340, 1340, 3910, 1340, 1340, 1340, 1340, - 1340, 1340, 1340, 1340, 1352, 1352, 1352, 1352, 1352, 1352, - 1352, 3910, 1352, 3910, 1352, 1352, 1352, 1352, 1352, 1352, - 1352, 1352, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, + 659, 418, 418, 418, 418, 418, 418, 418, 418, 418, + 418, 418, 418, 418, 418, 418, 418, 418, 418, 1340, + 98, 1340, 1340, 98, 98, 1340, 1340, 1340, 98, 1340, + 1340, 1340, 1340, 1340, 1340, 1340, 1340, 1352, 1352, 1352, + 1352, 1352, 1352, 1352, 98, 1352, 98, 1352, 1352, 1352, + 1352, 1352, 1352, 1352, 1352, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, + 1386, 1386, 1386, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, - 516, 516, 516, 516, 516, 516, 516, 516, 533, 533, - 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, - 533, 533, 533, 533, 533, 533, 540, 540, 540, 540, + 516, 533, 533, 533, 533, 533, 533, 533, 533, 533, + 533, 533, 533, 533, 533, 533, 533, 533, 533, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 266, 266, 3910, 266, 266, 266, + 540, 540, 540, 540, 540, 540, 540, 266, 266, 98, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, - 266, 266, 883, 883, 883, 883, 883, 883, 883, 883, - 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, + 266, 266, 266, 266, 266, 883, 883, 883, 883, 883, + 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, + 883, 883, 883, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, - 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1526, 3910, - 3910, 1526, 3910, 3910, 1526, 1566, 3910, 3910, 3910, 3910, - 3910, 1566, 1566, 1566, 3910, 1566, 1566, 1566, 1566, 1566, - 1566, 1566, 1566, 1516, 1516, 1516, 1516, 1516, 1516, 1516, + 1515, 1526, 161, 161, 1526, 160, 160, 1526, 1566, 3917, + 3917, 3917, 3917, 3917, 1566, 1566, 1566, 3917, 1566, 1566, + 1566, 1566, 1566, 1566, 1566, 1566, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, - 1516, 1712, 3910, 3910, 1712, 3910, 1712, 1749, 1749, 1749, + 1516, 1516, 1516, 1516, 1712, 3917, 3917, 1712, 3917, 1712, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, - 1749, 1749, 1749, 1749, 1749, 1754, 3910, 3910, 1754, 1754, - 3910, 3910, 1754, 3910, 1754, 3910, 1754, 1754, 1754, 1754, - 1888, 1888, 1888, 1888, 1932, 1932, 3910, 1932, 1932, 1932, + 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1754, 3917, + 3917, 1754, 1754, 3917, 3917, 1754, 3917, 1754, 3917, 1754, + 1754, 1754, 1754, 1888, 1888, 1888, 1888, 1932, 1932, 3917, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, - 1932, 1932, 1934, 1934, 3910, 1934, 1934, 1934, 1934, 1934, + 1932, 1932, 1932, 1932, 1932, 1934, 1934, 3917, 1934, 1934, 1934, 1934, 1934, 1934, 1934, 1934, 1934, 1934, 1934, 1934, - 1938, 3910, 1938, 3910, 1938, 1938, 1938, 1938, 2059, 2059, - 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, - 2059, 2059, 2059, 2059, 2059, 2059, 2074, 2074, 2074, 2074, + 1934, 1934, 1934, 1938, 3917, 1938, 3917, 1938, 1938, 1938, + 1938, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, + 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, - 2074, 2074, 2074, 2074, 2126, 2126, 2126, 2126, 2126, 2126, - 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, - 2126, 2126, 2162, 2162, 3910, 3910, 2162, 2162, 2162, 2162, - 2162, 3910, 2162, 2162, 2162, 2162, 2162, 2162, 2162, 2162, - 2180, 3910, 3910, 2180, 2180, 3910, 3910, 2180, 3910, 2180, - 3910, 2180, 2180, 2180, 2180, 2266, 2266, 2266, 2266, 2266, + 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, + 2126, 2126, 2126, 2126, 2126, 2162, 2162, 3917, 3917, 2162, + 2162, 2162, 2162, 2162, 3917, 2162, 2162, 2162, 2162, 2162, + 2162, 2162, 2162, 2180, 3917, 3917, 2180, 2180, 3917, 3917, + 2180, 3917, 2180, 3917, 2180, 2180, 2180, 2180, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, - 2266, 2266, 2266, 2279, 3910, 2279, 2279, 3910, 3910, 2279, - 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, - 2279, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, - 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2314, - 3910, 3910, 3910, 3910, 3910, 2314, 2314, 2314, 3910, 2314, + 2266, 2266, 2266, 2266, 2266, 2266, 2279, 3917, 2279, 2279, + 3917, 3917, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, + 2279, 2279, 2279, 2279, 2284, 2284, 2284, 2284, 2284, 2284, - 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2340, 2340, 3910, - 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, - 2340, 2340, 2340, 2340, 2340, 2342, 2342, 3910, 2342, 2342, - 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, - 2342, 2342, 2342, 2368, 3910, 3910, 2368, 2368, 3910, 3910, - 2368, 3910, 2368, 3910, 2368, 2368, 2368, 2368, 2381, 3910, - 3910, 3910, 3910, 3910, 2381, 2381, 2381, 3910, 2381, 2381, - 2381, 2381, 2381, 2381, 2381, 2381, 2392, 2392, 3910, 2392, - 2392, 3910, 2392, 2392, 2392, 2392, 2392, 2392, 2392, 2392, - 2392, 2392, 2392, 2397, 3910, 2397, 3910, 2397, 2397, 2397, - - 2397, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, - 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2281, - 3910, 2281, 2281, 3910, 3910, 2281, 2281, 2281, 2281, 2281, - 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2541, 2541, 2541, + 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, + 2284, 2284, 2314, 3917, 3917, 3917, 3917, 3917, 2314, 2314, + 2314, 3917, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, + 2340, 2340, 3917, 2340, 2340, 2340, 2340, 2340, 2340, 2340, + 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2342, 2342, + 3917, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, + 2342, 2342, 2342, 2342, 2342, 2342, 2368, 3917, 3917, 2368, + 2368, 3917, 3917, 2368, 3917, 2368, 3917, 2368, 2368, 2368, + 2368, 2381, 3917, 3917, 3917, 3917, 3917, 2381, 2381, 2381, + 3917, 2381, 2381, 2381, 2381, 2381, 2381, 2381, 2381, 2392, + + 2392, 3917, 2392, 2392, 3917, 2392, 2392, 2392, 2392, 2392, + 2392, 2392, 2392, 2392, 2392, 2392, 2397, 3917, 2397, 3917, + 2397, 2397, 2397, 2397, 2483, 2483, 2483, 2483, 2483, 2483, + 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, + 2483, 2483, 2281, 3917, 2281, 2281, 3917, 3917, 2281, 2281, + 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, - 2541, 2541, 2541, 2541, 2541, 2544, 2544, 2544, 2544, 2544, + 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, - 2544, 2544, 2544, 2551, 3910, 3910, 2551, 2551, 3910, 3910, - 2551, 3910, 2551, 3910, 2551, 2551, 2551, 2551, 2570, 3910, - 2570, 3910, 2570, 2570, 2570, 2570, 2572, 3910, 3910, 2572, - - 2572, 3910, 3910, 2572, 3910, 2572, 3910, 2572, 2572, 2572, - 2572, 2604, 2604, 3910, 2604, 2604, 2604, 2604, 2604, 2604, - 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2671, 3910, - 2671, 2671, 3910, 3910, 2671, 2671, 2671, 2671, 2671, 2671, - 2671, 2671, 2671, 2671, 2671, 2671, 2484, 2484, 2484, 2484, + 2544, 2544, 2544, 2544, 2544, 2544, 2552, 3917, 3917, 2552, + + 2552, 3917, 3917, 2552, 3917, 2552, 3917, 2552, 2552, 2552, + 2552, 2571, 3917, 2571, 3917, 2571, 2571, 2571, 2571, 2573, + 3917, 3917, 2573, 2573, 3917, 3917, 2573, 3917, 2573, 3917, + 2573, 2573, 2573, 2573, 2605, 2605, 3917, 2605, 2605, 2605, + 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, + 2605, 2672, 3917, 2672, 2672, 3917, 3917, 2672, 2672, 2672, + 2672, 2672, 2672, 2672, 2672, 2672, 2672, 2672, 2672, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, - 2484, 2484, 2484, 2484, 2486, 2486, 2486, 2486, 2486, 2486, + 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, - 2486, 2486, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, - 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, - 2686, 3910, 2686, 2686, 3910, 3910, 2686, 2686, 2686, 2686, - 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2284, 2284, - 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, - 2284, 2284, 2284, 2284, 2284, 2284, 2074, 2074, 2074, 2074, + 2486, 2486, 2486, 2486, 2486, 2683, 2683, 2683, 2683, 2683, + 2683, 2683, 2683, 2683, 2683, 2683, 2683, 2683, 2683, 2683, + 2683, 2683, 2683, 2687, 3917, 2687, 2687, 3917, 3917, 2687, + 2687, 2687, 2687, 2687, 2687, 2687, 2687, 2687, 2687, 2687, + 2687, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, + 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, - 2074, 2074, 2074, 2074, 2340, 2340, 3910, 2340, 2340, 2340, + 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2340, 2340, 3917, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, 2340, - 2340, 2340, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, - 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, - 2342, 2342, 3910, 2342, 2342, 2342, 2342, 2342, 2342, 2342, + 2340, 2340, 2340, 2340, 2340, 2541, 2541, 2541, 2541, 2541, - 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2544, 2544, - 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, - 2544, 2544, 2544, 2544, 2544, 2544, 2734, 3910, 2734, 3910, - 2734, 2734, 2734, 2734, 2551, 3910, 2551, 3910, 2551, 2551, - 2551, 2551, 2735, 3910, 3910, 2735, 3910, 3910, 3910, 2735, - 3910, 2735, 3910, 2735, 2735, 2735, 2735, 2745, 3910, 3910, - 2745, 2745, 3910, 3910, 2745, 3910, 2745, 3910, 2745, 2745, - 2745, 2745, 2570, 3910, 3910, 2570, 3910, 2570, 3910, 2570, - 2570, 2570, 2570, 2754, 3910, 2754, 3910, 2754, 2754, 2754, - 2754, 2572, 3910, 2572, 3910, 2572, 2572, 2572, 2572, 2763, - - 2763, 3910, 2763, 2763, 3910, 2763, 2763, 2763, 2763, 2763, - 2763, 2763, 2763, 2763, 2763, 2763, 2783, 3910, 3910, 2783, - 2783, 3910, 3910, 2783, 3910, 2783, 3910, 2783, 2783, 2783, - 2783, 2604, 2604, 3910, 2604, 2604, 3910, 2604, 2604, 2604, - 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2604, 2787, 2787, - 2787, 2787, 2787, 2787, 2787, 2787, 2787, 2787, 2787, 2787, - 2787, 2787, 2787, 2787, 2787, 2787, 2266, 2266, 2266, 2266, + 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, + 2541, 2541, 2541, 2342, 2342, 3917, 2342, 2342, 2342, 2342, + 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, 2342, + 2342, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, + 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2736, + 3917, 2736, 3917, 2736, 2736, 2736, 2736, 2552, 3917, 2552, + 3917, 2552, 2552, 2552, 2552, 2737, 3917, 3917, 2737, 3917, + 3917, 3917, 2737, 3917, 2737, 3917, 2737, 2737, 2737, 2737, + 2747, 3917, 3917, 2747, 2747, 3917, 3917, 2747, 3917, 2747, + 3917, 2747, 2747, 2747, 2747, 2571, 3917, 3917, 2571, 3917, + + 2571, 3917, 2571, 2571, 2571, 2571, 2756, 3917, 2756, 3917, + 2756, 2756, 2756, 2756, 2573, 3917, 2573, 3917, 2573, 2573, + 2573, 2573, 2765, 2765, 3917, 2765, 2765, 3917, 2765, 2765, + 2765, 2765, 2765, 2765, 2765, 2765, 2765, 2765, 2765, 2785, + 3917, 3917, 2785, 2785, 3917, 3917, 2785, 3917, 2785, 3917, + 2785, 2785, 2785, 2785, 2605, 2605, 3917, 2605, 2605, 3917, + 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, + 2605, 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2789, + 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, - 2266, 2266, 2266, 2266, 2059, 2059, 2059, 2059, 2059, 2059, - 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, - 2059, 2059, 2671, 3910, 2671, 2671, 3910, 3910, 2671, 2671, - 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, - 2279, 3910, 2279, 2279, 3910, 3910, 2279, 2279, 2279, 2279, - 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2847, 2847, - 2847, 2847, 2847, 2847, 2847, 2847, 2847, 2847, 2847, 2847, - 2847, 2847, 2847, 2847, 2847, 2847, 2483, 2483, 2483, 2483, + 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2059, 2059, 2059, + 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, + 2059, 2059, 2059, 2059, 2059, 2672, 3917, 2672, 2672, 3917, + 3917, 2672, 2672, 2672, 2672, 2672, 2672, 2672, 2672, 2672, + 2672, 2672, 2672, 2279, 3917, 2279, 2279, 3917, 3917, 2279, + 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, + 2279, 2849, 2849, 2849, 2849, 2849, 2849, 2849, 2849, 2849, + 2849, 2849, 2849, 2849, 2849, 2849, 2849, 2849, 2849, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, - 2483, 2483, 2483, 2483, 2848, 2848, 2848, 2848, 2848, 2848, - 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, - 2848, 2848, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, + 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2850, 2850, 2850, + 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, + 2850, 2850, 2850, 2850, 2850, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, - 2281, 3910, 2281, 2281, 3910, 3910, 2281, 2281, 2281, 2281, - 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2861, 2861, - 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, - 2861, 2861, 2861, 2861, 2861, 2861, 2486, 2486, 2486, 2486, + 2484, 2484, 2484, 2281, 3917, 2281, 2281, 3917, 3917, 2281, + 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, + 2281, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, + 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, - 2486, 2486, 2486, 2486, 2682, 2682, 2682, 2682, 2682, 2682, - 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, - 2682, 2682, 2686, 3910, 2686, 2686, 3910, 3910, 2686, 2686, - 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, + 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2683, 2683, 2683, + 2683, 2683, 2683, 2683, 2683, 2683, 2683, 2683, 2683, 2683, + 2683, 2683, 2683, 2683, 2683, 2687, 3917, 2687, 2687, 3917, + 3917, 2687, 2687, 2687, 2687, 2687, 2687, 2687, 2687, 2687, + 2687, 2687, 2687, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, - 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2074, 2074, - 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, - 2074, 2074, 2074, 2074, 2074, 2074, 2734, 3910, 3910, 2734, - 3910, 2734, 3910, 2734, 2734, 2734, 2734, 2735, 3910, 2735, - 3910, 2735, 2735, 2735, 2735, 2920, 3910, 2920, 3910, 2920, - 2920, 2920, 2920, 2745, 3910, 2745, 3910, 2745, 2745, 2745, - 2745, 2754, 3910, 3910, 2754, 3910, 2754, 3910, 2754, 2754, - 2754, 2754, 2763, 2763, 3910, 2763, 2763, 3910, 2763, 2763, - 2763, 2763, 2763, 2763, 2763, 2763, 2763, 2763, 2763, 2949, - - 3910, 3910, 2949, 2949, 3910, 3910, 2949, 3910, 2949, 3910, - 2949, 2949, 2949, 2949, 2958, 3910, 2958, 3910, 2958, 2958, - 2958, 2958, 2783, 3910, 2783, 3910, 2783, 2783, 2783, 2783, - 2787, 2787, 2787, 2787, 2787, 2787, 2787, 2787, 2787, 2787, - 2787, 2787, 2787, 2787, 2787, 2787, 2787, 2787, 2266, 2266, - 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, - 2266, 2266, 2266, 2266, 2266, 2266, 2848, 2848, 2848, 2848, - 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, - 2848, 2848, 2848, 2848, 2850, 2850, 2850, 2850, 2850, 2850, + 2284, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, + 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2736, + 3917, 3917, 2736, 3917, 2736, 3917, 2736, 2736, 2736, 2736, + 2737, 3917, 2737, 3917, 2737, 2737, 2737, 2737, 2923, 3917, + 2923, 3917, 2923, 2923, 2923, 2923, 2747, 3917, 2747, 3917, + 2747, 2747, 2747, 2747, 2756, 3917, 3917, 2756, 3917, 2756, + + 3917, 2756, 2756, 2756, 2756, 2765, 2765, 3917, 2765, 2765, + 3917, 2765, 2765, 2765, 2765, 2765, 2765, 2765, 2765, 2765, + 2765, 2765, 2952, 3917, 3917, 2952, 2952, 3917, 3917, 2952, + 3917, 2952, 3917, 2952, 2952, 2952, 2952, 2961, 3917, 2961, + 3917, 2961, 2961, 2961, 2961, 2785, 3917, 2785, 3917, 2785, + 2785, 2785, 2785, 2789, 2789, 2789, 2789, 2789, 2789, 2789, + 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2789, + 2789, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, + 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, - 2850, 2850, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, + 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2852, 2852, 2852, + 2852, 2852, 2852, 2852, 2852, 2852, 2852, 2852, 2852, 2852, + 2852, 2852, 2852, 2852, 2852, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, + 2483, 2483, 2483, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, - 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2281, 3910, - 2281, 2281, 3910, 3910, 2281, 2281, 2281, 2281, 2281, 2281, - 2281, 2281, 2281, 2281, 2281, 2281, 2861, 2861, 2861, 2861, - 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, - 2861, 2861, 2861, 2861, 2486, 2486, 2486, 2486, 2486, 2486, + 2484, 2281, 3917, 2281, 2281, 3917, 3917, 2281, 2281, 2281, + 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2863, + 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, + 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2486, 2486, 2486, + 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, - 2486, 2486, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, + 2486, 2486, 2486, 2486, 2486, 2683, 2683, 2683, 2683, 2683, + 2683, 2683, 2683, 2683, 2683, 2683, 2683, 2683, 2683, 2683, + 2683, 2683, 2683, 2284, 2284, 2284, 2284, 2284, 2284, 2284, + 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, + 2284, 3092, 3092, 3917, 3092, 3092, 3917, 3092, 3092, 3092, + 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3095, 3917, + 3917, 3095, 3095, 3917, 3917, 3095, 3917, 3095, 3917, 3095, + 3095, 3095, 3095, 3098, 3098, 3098, 3098, 3917, 3098, 3098, + 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3098, + + 3098, 3112, 3917, 3917, 3917, 3917, 3917, 3112, 3112, 3112, + 3917, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3188, + 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, + 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3231, 3917, 3231, + 3917, 3231, 3231, 3231, 3231, 3252, 3252, 3917, 3252, 3252, + 3917, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, + 3252, 3252, 3334, 3917, 3917, 3334, 3334, 3917, 3917, 3917, + 3917, 3917, 3917, 3334, 3350, 3350, 3917, 3917, 3917, 3350, + 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, + 3350, 3350, 3454, 3454, 3917, 3454, 3454, 3917, 3454, 3454, + + 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3454, 3464, + 3464, 3917, 3464, 3464, 3917, 3464, 3464, 3464, 3464, 3464, + 3464, 3464, 3464, 3464, 3464, 3464, 3538, 3538, 3917, 3538, + 3538, 3538, 3538, 3538, 3538, 3538, 3538, 3538, 3538, 3538, + 3538, 3538, 3538, 3541, 3541, 3917, 3541, 3541, 3541, 3541, + 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, 3541, + 3585, 3917, 3585, 3917, 3585, 3917, 3585, 3585, 3585, 3585, + 3615, 3615, 3917, 3615, 3615, 3917, 3615, 3615, 3615, 3615, + 3615, 3615, 3615, 3615, 3615, 3615, 3615, 3616, 3616, 3917, + 3616, 3616, 3917, 3616, 3616, 3616, 3616, 3616, 3616, 3616, + + 3616, 3616, 3616, 3616, 3619, 3619, 3619, 3619, 3619, 3619, + 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, + 3619, 3619, 3653, 3917, 3653, 3917, 3653, 3917, 3653, 3653, + 3653, 3653, 3657, 3657, 3917, 3657, 3657, 3657, 3657, 3657, + 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, + 3668, 3668, 3917, 3668, 3668, 3917, 3668, 3668, 3668, 3668, + 3668, 3668, 3668, 3668, 3668, 3668, 3668, 3670, 3670, 3917, + 3917, 3670, 3670, 3670, 3670, 3670, 3917, 3670, 3670, 3670, + 3670, 3670, 3670, 3670, 3670, 3659, 3659, 3917, 3659, 3659, + 3917, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, + + 3659, 3659, 3718, 3917, 3917, 3917, 3917, 3917, 3718, 3718, + 3718, 3917, 3718, 3718, 3718, 3718, 3718, 3718, 3718, 3718, + 3661, 3917, 3917, 3917, 3917, 3917, 3661, 3661, 3661, 3917, + 3661, 3661, 3661, 3661, 3661, 3661, 3661, 3661, 3721, 3917, + 3917, 3721, 3721, 3917, 3917, 3721, 3917, 3721, 3917, 3721, + 3721, 3721, 3721, 3724, 3724, 3917, 3724, 3724, 3917, 3724, + 3724, 3724, 3724, 3724, 3724, 3724, 3724, 3724, 3724, 3724, + 3725, 3917, 3917, 3917, 3917, 3917, 3725, 3725, 3725, 3917, + 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3725, 3761, 3917, + 3761, 3917, 3761, 3761, 3761, 3761, 3762, 3762, 3917, 3762, + + 3762, 3917, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, + 3762, 3762, 3762, 3763, 3763, 3763, 3763, 3763, 3763, 3763, + 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, 3763, + 3763, 3807, 3807, 3917, 3807, 3807, 3917, 3807, 3807, 3807, + 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3807, 3810, 3810, + 3917, 3917, 3810, 3810, 3810, 3810, 3810, 3917, 3810, 3810, + 3810, 3810, 3810, 3810, 3810, 3810, 3812, 3812, 3917, 3917, + 3812, 3812, 3812, 3812, 3812, 3917, 3812, 3812, 3812, 3812, + 3812, 3812, 3812, 3812, 3839, 3839, 3917, 3839, 3839, 3917, + 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, 3839, + + 3839, 3840, 3840, 3917, 3840, 3840, 3917, 3840, 3840, 3840, + 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3841, 3841, + 3917, 3917, 3841, 3841, 3841, 3841, 3841, 3917, 3841, 3841, + 3841, 3841, 3841, 3841, 3841, 3841, 3843, 3843, 3917, 3917, + 3843, 3843, 3843, 3843, 3843, 3917, 3843, 3843, 3843, 3843, + 3843, 3843, 3843, 3843, 3857, 3917, 3857, 3917, 3857, 3917, + 3857, 3857, 3857, 3857, 3859, 3859, 3917, 3859, 3859, 3859, + 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, + 3859, 3869, 3869, 3917, 3869, 3869, 3917, 3869, 3869, 3869, + 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3869, 3870, 3870, + + 3917, 3870, 3870, 3917, 3870, 3870, 3870, 3870, 3870, 3870, + 3870, 3870, 3870, 3870, 3870, 3882, 3917, 3882, 3917, 3882, + 3917, 3882, 3882, 3882, 3882, 3883, 3917, 3917, 3917, 3917, + 3917, 3883, 3883, 3883, 3917, 3883, 3883, 3883, 3883, 3883, + 3883, 3883, 3883, 75, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, - 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, - 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 3088, 3088, - 3910, 3088, 3088, 3910, 3088, 3088, 3088, 3088, 3088, 3088, - 3088, 3088, 3088, 3088, 3088, 3091, 3910, 3910, 3091, 3091, - 3910, 3910, 3091, 3910, 3091, 3910, 3091, 3091, 3091, 3091, - 3094, 3094, 3094, 3094, 3910, 3094, 3094, 3094, 3094, 3094, - 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3108, 3910, - 3910, 3910, 3910, 3910, 3108, 3108, 3108, 3910, 3108, 3108, - 3108, 3108, 3108, 3108, 3108, 3108, 3184, 3184, 3184, 3184, - - 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, - 3184, 3184, 3184, 3184, 3226, 3910, 3226, 3910, 3226, 3226, - 3226, 3226, 3247, 3247, 3910, 3247, 3247, 3910, 3247, 3247, - 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3328, - 3910, 3910, 3328, 3328, 3910, 3910, 3910, 3910, 3910, 3910, - 3328, 3344, 3344, 3910, 3910, 3910, 3344, 3344, 3344, 3344, - 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3447, - 3447, 3910, 3447, 3447, 3910, 3447, 3447, 3447, 3447, 3447, - 3447, 3447, 3447, 3447, 3447, 3447, 3457, 3457, 3910, 3457, - 3457, 3910, 3457, 3457, 3457, 3457, 3457, 3457, 3457, 3457, - - 3457, 3457, 3457, 3531, 3531, 3910, 3531, 3531, 3531, 3531, - 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, - 3534, 3534, 3910, 3534, 3534, 3534, 3534, 3534, 3534, 3534, - 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3578, 3910, 3578, - 3910, 3578, 3910, 3578, 3578, 3578, 3578, 3608, 3608, 3910, - 3608, 3608, 3910, 3608, 3608, 3608, 3608, 3608, 3608, 3608, - 3608, 3608, 3608, 3608, 3609, 3609, 3910, 3609, 3609, 3910, - 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, - 3609, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, - 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3646, - - 3910, 3646, 3910, 3646, 3910, 3646, 3646, 3646, 3646, 3650, - 3650, 3910, 3650, 3650, 3650, 3650, 3650, 3650, 3650, 3650, - 3650, 3650, 3650, 3650, 3650, 3650, 3650, 3661, 3661, 3910, - 3661, 3661, 3910, 3661, 3661, 3661, 3661, 3661, 3661, 3661, - 3661, 3661, 3661, 3661, 3663, 3663, 3910, 3910, 3663, 3663, - 3663, 3663, 3663, 3910, 3663, 3663, 3663, 3663, 3663, 3663, - 3663, 3663, 3652, 3652, 3910, 3652, 3652, 3910, 3652, 3652, - 3652, 3652, 3652, 3652, 3652, 3652, 3652, 3652, 3652, 3711, - 3910, 3910, 3910, 3910, 3910, 3711, 3711, 3711, 3910, 3711, - 3711, 3711, 3711, 3711, 3711, 3711, 3711, 3654, 3910, 3910, - - 3910, 3910, 3910, 3654, 3654, 3654, 3910, 3654, 3654, 3654, - 3654, 3654, 3654, 3654, 3654, 3714, 3910, 3910, 3714, 3714, - 3910, 3910, 3714, 3910, 3714, 3910, 3714, 3714, 3714, 3714, - 3717, 3717, 3910, 3717, 3717, 3910, 3717, 3717, 3717, 3717, - 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3718, 3910, 3910, - 3910, 3910, 3910, 3718, 3718, 3718, 3910, 3718, 3718, 3718, - 3718, 3718, 3718, 3718, 3718, 3754, 3910, 3754, 3910, 3754, - 3754, 3754, 3754, 3755, 3755, 3910, 3755, 3755, 3910, 3755, - 3755, 3755, 3755, 3755, 3755, 3755, 3755, 3755, 3755, 3755, - 3756, 3756, 3756, 3756, 3756, 3756, 3756, 3756, 3756, 3756, - - 3756, 3756, 3756, 3756, 3756, 3756, 3756, 3756, 3800, 3800, - 3910, 3800, 3800, 3910, 3800, 3800, 3800, 3800, 3800, 3800, - 3800, 3800, 3800, 3800, 3800, 3803, 3803, 3910, 3910, 3803, - 3803, 3803, 3803, 3803, 3910, 3803, 3803, 3803, 3803, 3803, - 3803, 3803, 3803, 3805, 3805, 3910, 3910, 3805, 3805, 3805, - 3805, 3805, 3910, 3805, 3805, 3805, 3805, 3805, 3805, 3805, - 3805, 3832, 3832, 3910, 3832, 3832, 3910, 3832, 3832, 3832, - 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3833, 3833, - 3910, 3833, 3833, 3910, 3833, 3833, 3833, 3833, 3833, 3833, - 3833, 3833, 3833, 3833, 3833, 3834, 3834, 3910, 3910, 3834, - - 3834, 3834, 3834, 3834, 3910, 3834, 3834, 3834, 3834, 3834, - 3834, 3834, 3834, 3836, 3836, 3910, 3910, 3836, 3836, 3836, - 3836, 3836, 3910, 3836, 3836, 3836, 3836, 3836, 3836, 3836, - 3836, 3850, 3910, 3850, 3910, 3850, 3910, 3850, 3850, 3850, - 3850, 3852, 3852, 3910, 3852, 3852, 3852, 3852, 3852, 3852, - 3852, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 3862, 3862, - 3910, 3862, 3862, 3910, 3862, 3862, 3862, 3862, 3862, 3862, - 3862, 3862, 3862, 3862, 3862, 3863, 3863, 3910, 3863, 3863, - 3910, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, - 3863, 3863, 3875, 3910, 3875, 3910, 3875, 3910, 3875, 3875, - - 3875, 3875, 3876, 3910, 3910, 3910, 3910, 3910, 3876, 3876, - 3876, 3910, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, - 75, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910 + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917 } ; -static const flex_int16_t yy_chk[14209] = +static yyconst flex_int16_t yy_chk[14232] = { 0, 0, 1, 1, 1, 1, 5, 1, 1, 5, 6, 95, 95, 6, 0, 1, 7, 7, 7, 7, 7, 7, 0, 9, 9, 7, 9, 9, 13, 7, 1186, - 1, 13, 1, 1, 3888, 83, 13, 1, 1, 1, - 116, 116, 14, 1, 1, 1, 14, 1, 1, 3876, + 1, 13, 1, 1, 3895, 83, 13, 1, 1, 1, + 116, 116, 14, 1, 1, 1, 14, 1, 1, 3883, 9, 14, 1, 872, 15, 15, 1, 15, 1, 872, 1, 1, 15, 83, 15, 1, 1, 1, 71, 84, 7, 1, 1, 1, 1186, 1, 1, 9, 132, 132, @@ -3434,10 +3455,10 @@ static const flex_int16_t yy_chk[14209] = 72, 10, 10, 85, 2, 21, 21, 84, 21, 7, 7, 86, 11, 11, 49, 11, 11, 72, 49, 15, - 2, 49, 2, 2, 87, 3863, 10, 2, 2, 2, + 2, 49, 2, 2, 87, 3870, 10, 2, 2, 2, 88, 85, 773, 2, 2, 2, 89, 2, 2, 86, 11, 92, 2, 250, 118, 250, 2, 118, 2, 773, - 2, 2, 87, 10, 3862, 2, 2, 2, 88, 3852, + 2, 2, 87, 10, 3869, 2, 2, 2, 88, 3859, 21, 2, 2, 2, 89, 2, 2, 11, 49, 92, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, @@ -3450,7 +3471,7 @@ static const flex_int16_t yy_chk[14209] = 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 93, 12, 12, 8, 12, 12, - 3833, 8, 16, 16, 2279, 16, 17, 17, 3832, 17, + 3840, 8, 16, 16, 2279, 16, 17, 17, 3839, 17, 16, 17, 16, 47, 17, 47, 18, 18, 2279, 18, 47, 18, 93, 12, 18, 19, 19, 137, 19, 137, 19, 20, 20, 19, 20, 257, 20, 257, 19, 20, @@ -3459,12 +3480,12 @@ static const flex_int16_t yy_chk[14209] = 12, 220, 81, 297, 90, 33, 33, 16, 33, 100, 33, 17, 90, 33, 297, 27, 27, 47, 27, 94, 27, 18, 8, 8, 137, 27, 35, 35, 27, 35, - 19, 27, 90, 3823, 35, 91, 20, 100, 28, 28, + 19, 27, 90, 3830, 35, 91, 20, 100, 28, 28, 90, 28, 27, 28, 48, 101, 81, 139, 28, 139, 22, 28, 91, 388, 28, 220, 29, 29, 104, 29, - 33, 29, 3793, 91, 29, 28, 29, 107, 143, 29, - 27, 143, 29, 101, 30, 30, 3791, 30, 108, 30, - 91, 35, 30, 29, 30, 3787, 104, 30, 36, 36, + 33, 29, 3800, 91, 29, 28, 29, 107, 143, 29, + 27, 143, 29, 101, 30, 30, 3798, 30, 108, 30, + 91, 35, 30, 29, 30, 3794, 104, 30, 36, 36, 30, 36, 388, 28, 139, 107, 36, 213, 213, 27, 27, 30, 223, 223, 31, 31, 108, 31, 109, 31, @@ -3474,10 +3495,10 @@ static const flex_int16_t yy_chk[14209] = 34, 32, 34, 36, 34, 114, 65, 34, 39, 39, 39, 39, 32, 39, 115, 40, 40, 40, 40, 31, 40, 39, 105, 140, 105, 45, 196, 219, 40, 196, - 219, 46, 219, 114, 65, 195, 195, 195, 195, 3786, - 32, 225, 115, 3779, 225, 226, 226, 265, 265, 97, + 219, 46, 219, 114, 65, 195, 195, 195, 195, 3793, + 32, 225, 115, 3786, 225, 226, 226, 265, 265, 97, - 105, 140, 105, 3757, 34, 37, 37, 37, 37, 37, + 105, 140, 105, 3764, 34, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, @@ -3488,49 +3509,49 @@ static const flex_int16_t yy_chk[14209] = 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 41, 41, 41, 41, 147, 41, 42, 42, - 42, 42, 153, 42, 43, 43, 43, 43, 3754, 43, + 42, 42, 153, 42, 43, 43, 43, 43, 3761, 43, 44, 44, 44, 44, 50, 44, 102, 66, 50, 59, 66, 50, 286, 286, 147, 66, 73, 60, 102, 73, 153, 73, 129, 74, 73, 129, 74, 283, 74, 66, 283, 74, 315, 318, 102, 315, 318, 41, 73, 185, 59, 67, 59, 42, 185, 74, 102, 173, 60, 43, - 60, 59, 59, 59, 59, 44, 2683, 66, 50, 60, + 60, 59, 59, 59, 59, 44, 2684, 66, 50, 60, 60, 60, 60, 68, 77, 77, 73, 77, 59, 348, 59, 183, 67, 74, 67, 173, 60, 129, 60, 59, 59, 59, 59, 67, 67, 67, 67, 60, 60, 60, - 60, 185, 99, 484, 68, 99, 68, 103, 2683, 183, + 60, 185, 99, 484, 68, 99, 68, 103, 2684, 183, 67, 106, 67, 111, 103, 68, 68, 68, 68, 189, - 110, 67, 67, 67, 67, 106, 348, 3745, 111, 77, + 110, 67, 67, 67, 67, 106, 348, 3752, 111, 77, 99, 106, 68, 99, 68, 103, 110, 112, 177, 106, - 177, 111, 103, 68, 68, 68, 68, 189, 110, 3718, + 177, 111, 103, 68, 68, 68, 68, 189, 110, 3725, 113, 309, 112, 106, 113, 113, 111, 484, 145, 106, - 198, 145, 309, 2849, 110, 112, 119, 119, 119, 119, + 198, 145, 309, 2851, 110, 112, 119, 119, 119, 119, 201, 119, 120, 120, 120, 120, 179, 120, 113, 179, 112, 177, 113, 113, 121, 121, 121, 121, 198, 121, 126, 126, 126, 126, 199, 126, 203, 133, 201, 138, - 133, 199, 138, 142, 142, 2849, 187, 138, 145, 138, + 133, 199, 138, 142, 142, 2851, 187, 138, 145, 138, 142, 187, 142, 199, 133, 133, 148, 148, 436, 436, 148, 119, 199, 148, 203, 133, 179, 120, 133, 199, - 144, 156, 156, 144, 156, 144, 3711, 181, 144, 121, + 144, 156, 156, 144, 156, 144, 3718, 181, 144, 121, 181, 199, 133, 133, 205, 126, 131, 131, 131, 131, 131, 131, 208, 131, 138, 211, 131, 142, 187, 405, 131, 149, 131, 131, 149, 131, 131, 131, 188, 149, 148, 188, 205, 642, 131, 131, 131, 131, 131, 131, - 208, 131, 3682, 211, 131, 144, 156, 181, 131, 151, + 208, 131, 3689, 211, 131, 144, 156, 181, 131, 151, 131, 131, 151, 131, 131, 131, 150, 151, 405, 150, 494, 150, 157, 157, 150, 157, 155, 155, 200, 150, 155, 149, 642, 155, 159, 159, 159, 159, 155, 162, 162, 200, 162, 188, 162, 166, 166, 212, 166, 346, - 166, 346, 162, 875, 380, 3680, 200, 380, 166, 151, - 169, 166, 3644, 169, 210, 169, 162, 210, 169, 200, - 435, 150, 166, 435, 494, 212, 2862, 157, 167, 167, + 166, 346, 162, 875, 380, 3687, 200, 380, 166, 151, + 169, 166, 3651, 169, 210, 169, 162, 210, 169, 200, + 435, 150, 166, 435, 494, 212, 2864, 157, 167, 167, 155, 167, 169, 167, 867, 168, 168, 230, 168, 159, 168, 167, 875, 202, 162, 210, 346, 1386, 168, 186, 166, 170, 186, 202, 170, 167, 170, 186, 206, 170, - 169, 170, 168, 3639, 170, 230, 206, 171, 2862, 235, + 169, 170, 168, 3646, 170, 230, 206, 171, 2864, 235, 171, 202, 171, 162, 162, 171, 903, 359, 170, 166, 166, 202, 224, 167, 414, 224, 206, 224, 174, 171, @@ -3538,8 +3559,8 @@ static const flex_int16_t yy_chk[14209] = 176, 243, 867, 176, 186, 176, 170, 498, 176, 2055, 174, 2055, 167, 167, 178, 178, 521, 171, 178, 168, 168, 178, 176, 178, 359, 180, 178, 521, 180, 243, - 180, 414, 244, 180, 3613, 184, 184, 224, 174, 184, - 178, 3609, 184, 903, 190, 190, 190, 486, 486, 197, + 180, 414, 244, 180, 3620, 184, 184, 224, 174, 184, + 178, 3616, 184, 903, 190, 190, 190, 486, 486, 197, 176, 190, 192, 192, 192, 192, 204, 245, 197, 209, 244, 498, 197, 209, 207, 192, 246, 197, 178, 209, @@ -3566,13 +3587,13 @@ static const flex_int16_t yy_chk[14209] = 301, 302, 313, 314, 323, 327, 303, 323, 327, 323, 304, 305, 507, 307, 304, 325, 304, 308, 325, 310, - 325, 306, 306, 328, 329, 311, 312, 330, 332, 3608, + 325, 306, 306, 328, 329, 311, 312, 330, 332, 3615, 313, 314, 319, 319, 319, 319, 885, 319, 320, 320, 320, 320, 335, 320, 321, 321, 321, 321, 333, 321, 331, 328, 329, 331, 336, 330, 332, 335, 337, 507, 327, 338, 333, 333, 334, 1113, 334, 339, 340, 341, 335, 1113, 340, 342, 344, 337, 333, 442, 331, 345, - 337, 331, 336, 345, 745, 335, 337, 319, 3568, 338, + 337, 331, 336, 345, 745, 335, 337, 319, 3575, 338, 333, 333, 334, 320, 334, 339, 340, 341, 343, 321, 340, 342, 344, 337, 885, 442, 349, 345, 337, 349, @@ -3581,42 +3602,42 @@ static const flex_int16_t yy_chk[14209] = 353, 354, 356, 362, 360, 356, 362, 360, 745, 360, 343, 343, 360, 361, 361, 363, 364, 514, 363, 364, 361, 364, 365, 443, 364, 366, 365, 369, 366, 365, - 2256, 349, 2256, 366, 372, 370, 351, 372, 370, 3022, + 2256, 349, 2256, 366, 372, 370, 351, 372, 370, 3025, 370, 350, 355, 370, 441, 353, 354, 441, 370, 371, 371, 443, 356, 362, 373, 374, 371, 373, 374, 360, 374, 371, 373, 374, 514, 363, 375, 361, 374, 444, 375, 364, 524, 375, 411, 366, 365, 411, 375, 376, - 376, 3022, 376, 524, 372, 377, 377, 445, 377, 398, + 376, 3025, 376, 524, 372, 377, 377, 445, 377, 398, 370, 379, 379, 379, 379, 381, 381, 444, 381, 384, 384, 446, 384, 371, 373, 1106, 382, 382, 398, 382, 374, 382, 384, 395, 474, 445, 395, 474, 395, 382, 375, 395, 386, 386, 411, 386, 384, 386, 447, 446, - 2606, 416, 416, 382, 376, 386, 398, 2787, 416, 448, + 2607, 416, 416, 382, 376, 386, 398, 2789, 416, 448, 377, 488, 387, 387, 488, 387, 379, 387, 483, 386, 381, 483, 421, 483, 384, 387, 447, 421, 387, 389, 389, 382, 389, 395, 389, 390, 390, 448, 390, 387, 390, 391, 389, 1106, 391, 389, 391, 386, 390, 391, - 2606, 426, 426, 384, 384, 416, 389, 2787, 426, 428, + 2607, 426, 426, 384, 384, 416, 389, 2789, 426, 428, 382, 382, 390, 391, 428, 394, 403, 387, 394, 403, 394, 403, 449, 394, 421, 396, 386, 386, 396, 2257, - 396, 2257, 403, 396, 389, 396, 3552, 394, 396, 417, + 396, 2257, 403, 396, 389, 396, 3559, 394, 396, 417, 390, 391, 417, 403, 397, 397, 387, 387, 397, 562, - 449, 397, 396, 397, 399, 426, 397, 399, 3534, 399, + 449, 397, 396, 397, 399, 426, 397, 399, 3541, 399, 562, 428, 399, 389, 389, 394, 427, 427, 427, 390, 390, 403, 425, 427, 401, 425, 399, 401, 402, 401, 396, 402, 401, 402, 401, 565, 402, 401, 402, 417, 418, 402, 487, 418, 402, 487, 565, 487, 397, 403, 403, 401, 451, 420, 399, 402, 1316, 420, 404, 406, - 420, 404, 406, 404, 406, 3531, 404, 406, 404, 406, + 420, 404, 406, 404, 406, 3538, 404, 406, 404, 406, 427, 404, 406, 415, 404, 406, 415, 425, 415, 401, 451, 415, 856, 402, 409, 404, 406, 409, 431, 409, 418, 410, 409, 431, 409, 410, 419, 409, 410, 419, 410, 419, 424, 410, 419, 424, 495, 420, 401, 495, 424, 409, 402, 404, 406, 429, 1325, 410, 429, 430, - 3504, 430, 454, 429, 1316, 455, 430, 456, 415, 856, + 3511, 430, 454, 429, 1316, 455, 430, 456, 415, 856, 452, 432, 432, 432, 432, 438, 438, 438, 438, 409, 431, 452, 404, 406, 432, 410, 450, 457, 450, 458, @@ -3625,7 +3646,7 @@ static const flex_int16_t yy_chk[14209] = 429, 469, 464, 430, 450, 457, 450, 458, 471, 472, 450, 465, 459, 1325, 460, 1320, 432, 462, 463, 462, 464, 465, 466, 459, 467, 468, 467, 473, 489, 469, - 464, 489, 500, 489, 1323, 500, 471, 472, 3499, 465, + 464, 489, 500, 489, 1323, 500, 471, 472, 3506, 465, 470, 470, 493, 470, 505, 493, 470, 493, 470, 505, 470, 470, 470, 520, 470, 473, 470, 470, 470, 470, 476, 476, 476, 476, 480, 480, 480, 480, 470, 470, @@ -3633,24 +3654,24 @@ static const flex_int16_t yy_chk[14209] = 470, 520, 470, 1320, 470, 470, 470, 470, 481, 481, 481, 481, 482, 482, 482, 482, 505, 482, 485, 485, - 485, 485, 1323, 485, 491, 491, 491, 491, 2789, 491, + 485, 485, 1323, 485, 491, 491, 491, 491, 2791, 491, 522, 492, 492, 492, 492, 476, 492, 499, 502, 480, 499, 502, 499, 503, 508, 510, 503, 523, 503, 511, 510, 515, 511, 516, 515, 525, 516, 532, 522, 2129, 2129, 531, 528, 481, 531, 528, 542, 482, 557, 531, - 528, 557, 543, 485, 533, 523, 532, 533, 2789, 491, + 528, 557, 543, 485, 533, 523, 532, 533, 2791, 491, 544, 545, 533, 525, 528, 535, 492, 539, 535, 539, 535, 1571, 499, 535, 542, 546, 533, 510, 547, 511, 543, 515, 538, 516, 532, 538, 539, 535, 544, 545, 538, 531, 528, 548, 540, 550, 551, 540, 552, 540, 553, 555, 540, 546, 533, 556, 547, 558, 559, 560, - 558, 561, 563, 564, 539, 535, 540, 590, 566, 2963, + 558, 561, 563, 564, 539, 535, 540, 590, 566, 2966, 590, 548, 567, 550, 551, 1571, 552, 568, 553, 555, - 570, 571, 538, 556, 3488, 3478, 559, 560, 572, 561, + 570, 571, 538, 556, 3495, 3485, 559, 560, 572, 561, 563, 564, 573, 574, 540, 554, 566, 554, 554, 575, - 567, 554, 554, 554, 576, 568, 3476, 554, 570, 571, - 554, 579, 554, 554, 554, 554, 572, 554, 554, 2963, + 567, 554, 554, 554, 576, 568, 3483, 554, 570, 571, + 554, 579, 554, 554, 554, 554, 572, 554, 554, 2966, 573, 574, 580, 554, 581, 554, 554, 575, 577, 554, 554, 554, 576, 578, 578, 554, 582, 583, 554, 579, @@ -3660,60 +3681,60 @@ static const flex_int16_t yy_chk[14209] = 602, 603, 585, 606, 607, 577, 586, 587, 608, 588, 610, 593, 611, 612, 613, 614, 594, 595, 596, 615, 616, 598, 617, 618, 619, 599, 600, 588, 602, 603, - 3457, 606, 607, 620, 626, 620, 608, 626, 610, 1931, - 611, 612, 613, 614, 3413, 3406, 623, 615, 616, 623, + 3464, 606, 607, 620, 626, 620, 608, 626, 610, 1931, + 611, 612, 613, 614, 3419, 3412, 623, 615, 616, 623, 617, 618, 619, 1388, 623, 624, 623, 637, 624, 629, 637, 640, 629, 624, 629, 624, 630, 629, 1690, 630, 632, 630, 638, 632, 630, 638, 639, 639, 632, 639, 620, 639, 635, 636, 626, 635, 636, 635, 636, 639, - 635, 636, 639, 1931, 645, 635, 636, 646, 1388, 3374, + 635, 636, 639, 1931, 645, 635, 636, 646, 1388, 3380, 640, 623, 674, 639, 645, 682, 733, 645, 646, 733, - 624, 675, 641, 641, 629, 641, 675, 641, 3312, 649, + 624, 675, 641, 641, 629, 641, 675, 641, 3317, 649, 632, 630, 649, 669, 649, 641, 669, 649, 641, 640, 674, 639, 655, 682, 663, 1690, 683, 635, 636, 641, - 684, 649, 663, 643, 643, 662, 643, 3294, 643, 647, - 647, 3278, 647, 663, 647, 662, 643, 685, 662, 643, + 684, 649, 663, 643, 643, 662, 643, 3299, 643, 647, + 647, 3283, 647, 663, 647, 662, 643, 685, 662, 643, 639, 639, 647, 675, 683, 647, 686, 641, 684, 649, - 643, 655, 2860, 669, 652, 645, 647, 652, 687, 652, - 823, 663, 652, 653, 652, 685, 653, 652, 653, 2860, + 643, 655, 2862, 669, 652, 645, 647, 652, 687, 652, + 823, 663, 652, 653, 652, 685, 653, 652, 653, 2862, 652, 823, 688, 894, 686, 690, 641, 641, 643, 653, 655, 652, 691, 692, 647, 2259, 687, 2259, 654, 656, - 653, 654, 656, 654, 656, 3272, 654, 656, 654, 656, + 653, 654, 656, 654, 656, 3277, 654, 656, 654, 656, 688, 654, 656, 690, 654, 656, 662, 643, 643, 652, 691, 692, 894, 647, 647, 654, 656, 693, 653, 678, 679, 657, 678, 679, 657, 664, 657, 678, 664, 657, - 664, 657, 680, 734, 657, 680, 734, 657, 652, 3270, + 664, 657, 680, 734, 657, 680, 734, 657, 652, 3275, - 680, 664, 694, 654, 656, 693, 653, 653, 657, 3264, - 658, 659, 664, 658, 659, 658, 659, 3226, 658, 659, + 680, 664, 694, 654, 656, 693, 653, 653, 657, 3269, + 658, 659, 664, 658, 659, 658, 659, 3231, 658, 659, 658, 659, 735, 658, 659, 735, 658, 659, 695, 2462, - 694, 2462, 654, 656, 678, 679, 657, 658, 659, 3193, - 664, 660, 697, 3121, 660, 665, 660, 680, 665, 660, + 694, 2462, 654, 656, 678, 679, 657, 658, 659, 3197, + 664, 660, 697, 3125, 660, 665, 660, 680, 665, 660, 665, 660, 1516, 665, 660, 665, 695, 660, 665, 672, - 3156, 665, 672, 698, 672, 658, 659, 672, 660, 664, - 697, 666, 665, 3143, 666, 667, 666, 699, 667, 666, + 3160, 665, 672, 698, 672, 658, 659, 672, 660, 664, + 697, 666, 665, 3147, 666, 667, 666, 699, 667, 666, 667, 666, 701, 667, 666, 667, 737, 736, 667, 737, - 736, 698, 736, 3121, 658, 659, 660, 1516, 666, 702, + 736, 698, 736, 3125, 658, 659, 660, 1516, 666, 702, 665, 673, 667, 703, 673, 699, 673, 705, 696, 673, 701, 706, 707, 708, 672, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 709, 660, 666, 702, 3138, 665, + 696, 696, 696, 696, 709, 660, 666, 702, 3142, 665, 667, 703, 710, 712, 713, 705, 714, 715, 716, 706, 707, 708, 717, 718, 719, 718, 721, 713, 713, 718, 713, 713, 709, 720, 723, 724, 673, 722, 725, 726, 710, 712, 713, 728, 714, 715, 716, 722, 720, 732, 717, 718, 719, 718, 721, 713, 713, 718, 713, 713, - 727, 720, 723, 724, 3108, 722, 725, 726, 729, 727, - 729, 728, 729, 753, 3094, 722, 720, 732, 738, 739, + 727, 720, 723, 724, 3112, 722, 725, 726, 729, 727, + 729, 728, 729, 753, 3098, 722, 720, 732, 738, 739, 754, 738, 739, 738, 739, 754, 740, 741, 727, 740, - 741, 743, 741, 761, 743, 3049, 729, 727, 729, 744, + 741, 743, 741, 761, 743, 3052, 729, 727, 729, 744, 729, 753, 744, 746, 744, 762, 746, 747, 746, 748, 747, 763, 748, 750, 748, 764, 750, 751, 750, 752, 751, 761, 752, 758, 752, 774, 758, 766, 775, 776, - 766, 3047, 754, 762, 777, 766, 778, 770, 780, 763, + 766, 3050, 754, 762, 777, 766, 778, 770, 780, 763, 770, 781, 770, 764, 782, 770, 783, 784, 801, 766, 785, 801, 790, 774, 791, 834, 775, 776, 834, 770, 789, 792, 777, 787, 778, 785, 780, 787, 785, 781, @@ -3722,7 +3743,7 @@ static const flex_int16_t yy_chk[14209] = 790, 793, 791, 786, 788, 794, 788, 770, 789, 792, 786, 787, 795, 785, 797, 787, 785, 793, 788, 787, 794, 796, 798, 796, 786, 799, 802, 789, 804, 793, - 806, 786, 788, 794, 788, 809, 810, 802, 786, 3045, + 806, 786, 788, 794, 788, 809, 810, 802, 786, 3048, 795, 811, 797, 812, 813, 793, 814, 815, 794, 796, 798, 796, 817, 799, 818, 819, 804, 820, 806, 821, 822, 824, 825, 809, 810, 826, 828, 802, 829, 811, @@ -3732,19 +3753,19 @@ static const flex_int16_t yy_chk[14209] = 846, 831, 847, 848, 832, 835, 836, 837, 849, 850, 847, 851, 838, 852, 839, 853, 854, 855, 859, 840, - 830, 3041, 857, 841, 857, 842, 843, 844, 846, 862, - 847, 848, 858, 3032, 862, 858, 849, 850, 847, 851, + 830, 3044, 857, 841, 857, 842, 843, 844, 846, 862, + 847, 848, 858, 3035, 862, 858, 849, 850, 847, 851, 858, 852, 858, 853, 854, 855, 860, 861, 863, 860, 861, 863, 861, 864, 865, 861, 864, 865, 864, 881, 869, 864, 907, 873, 898, 859, 864, 866, 866, 857, 866, 869, 866, 868, 873, 887, 862, 866, 881, 868, 866, 887, 908, 866, 904, 908, 910, 858, 871, 871, - 914, 871, 880, 871, 866, 880, 860, 880, 863, 3024, + 914, 871, 880, 871, 866, 880, 860, 880, 863, 3027, 880, 871, 861, 898, 871, 1315, 881, 915, 864, 907, 976, 882, 916, 976, 882, 871, 882, 917, 914, 882, - 3015, 882, 866, 904, 882, 918, 3005, 882, 919, 888, - 2964, 913, 908, 910, 913, 915, 2962, 888, 882, 869, + 3018, 882, 866, 904, 882, 918, 3008, 882, 919, 888, + 2967, 913, 908, 910, 913, 915, 2965, 888, 882, 869, 916, 911, 880, 871, 1315, 917, 911, 868, 888, 887, 1002, 866, 866, 918, 883, 884, 919, 883, 884, 883, 884, 1002, 883, 884, 883, 884, 882, 883, 884, 920, @@ -3754,7 +3775,7 @@ static const flex_int16_t yy_chk[14209] = 924, 890, 886, 927, 912, 888, 897, 1326, 891, 883, 884, 891, 977, 891, 930, 977, 891, 892, 891, 931, - 892, 891, 892, 2958, 891, 1265, 923, 932, 924, 890, + 892, 891, 892, 2961, 891, 1265, 923, 932, 924, 890, 886, 927, 934, 892, 897, 891, 1265, 997, 883, 884, 893, 995, 930, 893, 892, 893, 1326, 931, 893, 895, 893, 912, 895, 893, 895, 932, 893, 895, 890, 895, @@ -3765,39 +3786,39 @@ static const flex_int16_t yy_chk[14209] = 892, 936, 905, 979, 895, 940, 979, 906, 941, 938, 906, 942, 906, 905, 921, 906, 896, 906, 944, 921, - 906, 939, 2920, 978, 980, 899, 978, 980, 978, 945, + 906, 939, 2923, 978, 980, 899, 978, 980, 978, 945, 946, 921, 947, 940, 906, 948, 941, 909, 949, 942, - 950, 905, 921, 3491, 2883, 3491, 944, 921, 928, 928, + 950, 905, 921, 3498, 2885, 3498, 944, 921, 928, 928, 928, 928, 928, 928, 928, 928, 928, 945, 946, 921, 947, 951, 906, 948, 951, 952, 949, 953, 950, 954, 905, 929, 929, 929, 929, 929, 929, 929, 929, 929, 955, 956, 957, 958, 959, 960, 961, 962, 965, 967, 964, 968, 951, 952, 964, 953, 966, 954, 969, 966, - 970, 971, 972, 975, 982, 2872, 999, 982, 955, 956, + 970, 971, 972, 975, 982, 2874, 999, 982, 955, 956, 957, 958, 959, 960, 961, 962, 965, 967, 964, 968, - 981, 2871, 964, 981, 966, 981, 969, 966, 970, 971, + 981, 2873, 964, 981, 966, 981, 969, 966, 970, 971, 972, 975, 983, 984, 999, 983, 984, 983, 984, 985, 986, 988, 985, 986, 988, 986, 989, 990, 1000, 989, 990, 989, 991, 992, 1001, 991, 992, 991, 993, 994, 996, 993, 994, 993, 998, 996, 1003, 998, 1004, 1003, 1005, 1006, 1010, 1005, 1003, 1005, 1000, 1011, 1005, 1013, - 1014, 1015, 1001, 1016, 3570, 1017, 3570, 1004, 2855, 1018, - 1006, 1019, 2854, 1020, 1021, 1022, 1023, 1025, 1027, 1028, + 1014, 1015, 1001, 1016, 3577, 1017, 3577, 1004, 2857, 1018, + 1006, 1019, 2856, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1010, 1024, 1024, 1024, 1024, 1011, 1026, 1013, 1014, 1015, 1026, 1016, 996, 1017, 998, 1004, 1003, 1018, 1006, 1019, 1005, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1024, 1024, 1024, 1024, 1030, 1026, 1031, 1032, 1033, 1026, 1034, 1035, 1036, 1037, 1039, 1038, 1036, 1040, 1036, 1038, 1041, - 1042, 1043, 1044, 1045, 2845, 1048, 1029, 1049, 3035, 3539, + 1042, 1043, 1044, 1045, 2847, 1048, 1029, 1049, 3038, 3546, 1039, 1030, 1051, 1031, 1032, 1033, 1052, 1034, 1035, 1036, 1037, 1039, 1038, 1036, 1040, 1036, 1038, 1041, 1042, 1043, 1044, 1045, 1047, 1048, 1053, 1049, 1047, 1050, 1039, 1054, 1051, 1055, 1056, 1047, 1052, 1047, 1057, 1058, 1050, 1059, - 3035, 1061, 1062, 1063, 1064, 1065, 1067, 1068, 1069, 3539, - 1047, 1071, 1053, 2804, 1047, 1072, 1074, 1054, 2803, 1055, + 3038, 1061, 1062, 1063, 1064, 1065, 1067, 1068, 1069, 3546, + 1047, 1071, 1053, 2806, 1047, 1072, 1074, 1054, 2805, 1055, 1056, 1047, 1075, 1047, 1057, 1058, 1076, 1059, 1050, 1061, 1062, 1063, 1064, 1065, 1067, 1068, 1069, 1070, 1070, 1071, 1077, 1070, 1078, 1072, 1074, 1079, 1070, 1080, 1081, 1082, @@ -3807,13 +3828,13 @@ static const flex_int16_t yy_chk[14209] = 1070, 1084, 1098, 1085, 1070, 1086, 1070, 1088, 1089, 1090, 1091, 1092, 1093, 1105, 1110, 1094, 1105, 1110, 1124, 1095, - 1096, 1111, 1104, 1104, 1112, 1104, 1097, 1104, 2794, 1126, + 1096, 1111, 1104, 1104, 1112, 1104, 1097, 1104, 2796, 1126, 1098, 1109, 1128, 1129, 1109, 1104, 1109, 1131, 1104, 1109, 1114, 1109, 1564, 1114, 1109, 1114, 1124, 1109, 1114, 1104, - 1114, 1116, 2788, 1114, 1120, 1133, 1114, 1126, 1109, 1116, - 1128, 1129, 1120, 1112, 3178, 1131, 1115, 1114, 1134, 1115, - 1116, 1115, 2754, 1120, 1115, 1118, 1115, 1104, 1118, 1115, - 1118, 3178, 1115, 1133, 1105, 1110, 1109, 1564, 1111, 1111, + 1114, 1116, 2790, 1114, 1120, 1133, 1114, 1126, 1109, 1116, + 1128, 1129, 1120, 1112, 3182, 1131, 1115, 1114, 1134, 1115, + 1116, 1115, 2756, 1120, 1115, 1118, 1115, 1104, 1118, 1115, + 1118, 3182, 1115, 1133, 1105, 1110, 1109, 1564, 1111, 1111, 1136, 1118, 1112, 1115, 1188, 1114, 1134, 1188, 1116, 1704, 1117, 1120, 1118, 1117, 1135, 1117, 1104, 1104, 1117, 1119, 1117, 1746, 1119, 1117, 1119, 1109, 1117, 1119, 1136, 1119, @@ -3829,7 +3850,7 @@ static const flex_int16_t yy_chk[14209] = 1166, 1167, 1168, 1170, 1158, 1169, 1169, 1121, 1171, 1172, 1173, 1159, 1175, 1160, 1162, 1163, 1176, 1177, 1178, 1179, - 1181, 1182, 1183, 1184, 1184, 2734, 1164, 1165, 1166, 1167, + 1181, 1182, 1183, 1184, 1184, 2736, 1164, 1165, 1166, 1167, 1168, 1170, 1192, 1169, 1169, 1192, 1171, 1172, 1173, 1194, 1175, 1200, 1194, 1204, 1176, 1177, 1178, 1179, 1181, 1182, 1183, 1184, 1184, 1193, 1195, 1205, 1193, 1195, 1193, 1195, @@ -3843,7 +3864,7 @@ static const flex_int16_t yy_chk[14209] = 1228, 1234, 1235, 1236, 1241, 1237, 1238, 1239, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1240, 1253, 1254, 1256, 1257, 1258, 1259, 1260, 1261, 1264, 1266, - 2686, 1250, 1241, 1267, 1268, 2675, 1242, 1243, 1244, 1245, + 2687, 1250, 1241, 1267, 1268, 2676, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1263, 1253, 1254, 1256, 1257, 1258, 1259, 1260, 1261, 1264, 1266, 1263, 1250, 1270, 1267, 1268, 1263, 1263, 1271, 1272, 1273, 1275, 1276, @@ -3854,19 +3875,19 @@ static const flex_int16_t yy_chk[14209] = 1280, 1282, 1283, 1298, 1284, 1285, 1286, 1287, 1288, 1290, 1292, 1285, 1293, 1294, 1299, 1295, 1300, 1296, 1297, 1301, 1302, 1303, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, - 1313, 1298, 1314, 1318, 1329, 1328, 1390, 1391, 3185, 1390, - 1391, 1332, 1299, 3572, 1300, 3572, 1328, 1301, 1302, 1303, + 1313, 1298, 1314, 1318, 1329, 1328, 1390, 1391, 3189, 1390, + 1391, 1332, 1299, 3579, 1300, 3579, 1328, 1301, 1302, 1303, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1322, 1319, 1324, 1329, 1319, 1324, 1319, 1324, 1322, 1319, 1332, - 1319, 1314, 1318, 1319, 2671, 1333, 1319, 1324, 1322, 1334, - 3185, 1327, 1335, 1330, 1327, 1330, 1327, 1319, 1324, 1327, + 1319, 1314, 1318, 1319, 2672, 1333, 1319, 1324, 1322, 1334, + 3189, 1327, 1335, 1330, 1327, 1330, 1327, 1319, 1324, 1327, 1336, 1327, 1337, 1338, 1327, 1339, 1342, 1327, 1344, 1345, 1314, 1318, 1328, 1333, 1346, 1347, 1322, 1334, 1327, 1341, - 1335, 1330, 1341, 1330, 1341, 1319, 1324, 2633, 1336, 1341, + 1335, 1330, 1341, 1330, 1341, 1319, 1324, 2634, 1336, 1341, 1337, 1338, 1341, 1339, 1342, 1348, 1344, 1345, 1350, 1349, - 1351, 2632, 1346, 1347, 1353, 1322, 1327, 1392, 1359, 2608, - 1392, 1393, 1392, 1394, 1393, 1324, 1394, 2570, 1361, 1364, + 1351, 2633, 1346, 1347, 1353, 1322, 1327, 1392, 1359, 2609, + 1392, 1393, 1392, 1394, 1393, 1324, 1394, 2571, 1361, 1364, 1365, 1366, 1367, 1348, 1368, 1369, 1350, 1370, 1351, 1349, 1371, 1372, 1353, 1373, 1341, 1349, 1359, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1361, 1364, 1365, 1366, @@ -3984,20 +4005,20 @@ static const flex_int16_t yy_chk[14209] = 1872, 1877, 2468, 1878, 1872, 1870, 1876, 1864, 1879, 1864, 1871, 1880, 1881, 1882, 1885, 1872, 1886, 1872, 1889, 2467, - 1890, 3612, 1874, 1875, 1891, 1893, 1872, 1876, 1872, 1877, - 1873, 1878, 1872, 3640, 1876, 3640, 1879, 1894, 1896, 1880, + 1890, 3619, 1874, 1875, 1891, 1893, 1872, 1876, 1872, 1877, + 1873, 1878, 1872, 3647, 1876, 3647, 1879, 1894, 1896, 1880, 1881, 1882, 1897, 1872, 1883, 1872, 1898, 1883, 1890, 1883, 1900, 1901, 1891, 1893, 1883, 1902, 1895, 1883, 1895, 1885, 1905, 1886, 1906, 1889, 1908, 1894, 1896, 1909, 1910, 1911, - 1897, 3612, 2466, 1912, 1898, 1913, 1914, 1915, 1900, 1901, - 1993, 2461, 1954, 1902, 1895, 1954, 1895, 3642, 1905, 3642, - 1906, 1993, 1908, 3614, 2436, 1909, 1910, 1911, 1917, 1883, + 1897, 3619, 2466, 1912, 1898, 1913, 1914, 1915, 1900, 1901, + 1993, 2461, 1954, 1902, 1895, 1954, 1895, 3649, 1905, 3649, + 1906, 1993, 1908, 3621, 2436, 1909, 1910, 1911, 1917, 1883, 1903, 1912, 1918, 1913, 1914, 1915, 1919, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1920, 1916, 1921, 1903, 1922, 1903, 1903, 1903, 1916, 1923, 1917, 1903, 1924, 1925, 1918, 1926, 1903, 1927, 1919, 1928, 1923, 1929, 1930, 1937, - 1939, 1903, 2425, 3614, 1920, 1916, 1921, 1903, 1922, 1903, + 1939, 1903, 2425, 3621, 1920, 1916, 1921, 1903, 1922, 1903, 1903, 1903, 1916, 1923, 1940, 1903, 1924, 1925, 1941, 1926, 1903, 1927, 1942, 1928, 1923, 1929, 1930, 1937, 1939, 1903, 1933, 1933, 1933, 1933, 1935, 1935, 1935, 1935, 1943, 1944, @@ -4016,7 +4037,7 @@ static const flex_int16_t yy_chk[14209] = 2003, 1995, 2004, 1996, 1997, 2005, 2193, 2186, 1998, 2007, 2186, 2008, 1999, 2413, 2009, 2010, 2000, 2193, 2397, 2001, - 2011, 2002, 2012, 3704, 2013, 3704, 2014, 2015, 2003, 2016, + 2011, 2002, 2012, 3711, 2013, 3711, 2014, 2015, 2003, 2016, 2004, 2017, 2018, 2005, 2006, 2006, 2006, 2007, 2006, 2008, 2006, 2006, 2009, 2010, 2006, 2006, 2006, 2019, 2011, 2020, 2012, 2006, 2013, 2006, 2014, 2015, 2021, 2016, 2022, 2017, @@ -4087,904 +4108,907 @@ static const flex_int16_t yy_chk[14209] = 2307, 2313, 2315, 2308, 2309, 2310, 2311, 2316, 2317, 2319, 2322, 2324, 2325, 2326, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2337, 2339, 2344, 2312, 2341, 2341, 2345, 2341, 2313, - 2315, 2343, 2343, 2347, 2343, 2316, 2317, 2319, 2322, 2324, + 2315, 2343, 2343, 2348, 2343, 2316, 2317, 2319, 2322, 2324, 2325, 2326, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2337, - 2339, 2344, 2126, 2348, 2349, 2345, 2351, 2349, 2041, 2349, - 2352, 2347, 2353, 2354, 2355, 2356, 2352, 2792, 2357, 2359, - 2360, 2361, 2362, 2039, 2363, 2364, 2365, 2366, 2792, 2370, - - 2341, 2348, 2368, 2034, 2351, 2368, 2343, 2368, 2352, 2371, - 2353, 2354, 2355, 2356, 2352, 2341, 2357, 2359, 2360, 2361, - 2362, 2343, 2363, 2364, 2365, 2366, 2369, 2370, 2372, 2369, - 2373, 2369, 2374, 2375, 2376, 2377, 2380, 2371, 2382, 2383, - 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2393, 2394, - 2395, 2396, 2398, 2399, 2401, 2402, 2372, 2404, 2373, 1953, - 2374, 2375, 2376, 2377, 2380, 2405, 2382, 2383, 2384, 2385, - 2386, 2387, 2388, 2389, 2390, 2391, 2393, 2394, 2395, 2396, - 2398, 2399, 2401, 2402, 2403, 2404, 2406, 2403, 2407, 2403, - 2408, 2411, 2412, 2405, 2414, 2416, 2417, 2419, 2420, 2421, - - 2422, 2423, 2424, 2426, 2427, 2428, 2416, 2429, 1938, 2430, - 2431, 2433, 2434, 2435, 2406, 2437, 2407, 2438, 2408, 2411, - 2412, 2439, 2414, 2441, 2417, 2419, 2420, 2421, 2422, 2423, - 2424, 2426, 2427, 2428, 2442, 2429, 2416, 2430, 2431, 2433, - 2434, 2435, 2443, 2437, 2444, 2438, 2445, 2446, 2447, 2439, - 2448, 2441, 2449, 2450, 2451, 2454, 2455, 2456, 2458, 2459, - 2460, 2464, 2442, 2465, 2469, 2471, 2472, 2473, 2474, 2475, - 2443, 2476, 2444, 2477, 2445, 2446, 2447, 2478, 2448, 2479, - 2449, 2450, 2451, 2454, 2455, 2456, 2458, 2459, 2460, 2464, - 2481, 2465, 2492, 2494, 1934, 2473, 2474, 2475, 2484, 2476, - - 2485, 2477, 2495, 2483, 2496, 2478, 2483, 2479, 2483, 2469, - 2471, 2472, 2498, 2483, 2485, 2484, 2483, 2486, 2481, 1932, - 2486, 2487, 2486, 2499, 2487, 2500, 2487, 2486, 2501, 2502, - 2483, 2487, 2496, 2503, 2487, 1904, 2488, 2492, 2494, 2488, - 2498, 2488, 2485, 2484, 2486, 2504, 2488, 2495, 2487, 2488, - 2505, 2499, 2507, 2500, 2508, 2509, 2501, 2502, 2483, 2510, - 2511, 2503, 2512, 2488, 2513, 2514, 2515, 2516, 2517, 2518, - 2519, 2520, 2486, 2504, 2521, 2522, 2487, 2523, 2505, 2524, - 2507, 2525, 2508, 2509, 2526, 2527, 2528, 2510, 2511, 2529, - 2512, 2488, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, - - 2531, 2533, 2521, 2522, 2534, 2523, 2535, 2524, 2536, 2525, - 2537, 2538, 2526, 2527, 2528, 2539, 2540, 2529, 2542, 2542, - 2547, 2542, 2545, 2545, 2548, 2545, 2549, 2552, 2531, 2533, - 2552, 2553, 2534, 2554, 2535, 2555, 2536, 2556, 2537, 2538, - 2557, 2558, 2559, 2539, 2540, 1888, 2560, 2562, 2547, 2795, - 2561, 2563, 2548, 2561, 2549, 2561, 2565, 2566, 2567, 2553, - 2795, 2554, 2568, 2555, 1887, 2556, 2569, 2573, 2557, 2558, - 2559, 2574, 2575, 2542, 2560, 2562, 2576, 2545, 2577, 2563, - 2578, 2580, 2582, 2580, 2565, 2566, 2567, 2584, 2542, 2585, - 2568, 2586, 2545, 2581, 2569, 2573, 2581, 2587, 2589, 2574, - - 2575, 2590, 2591, 2593, 2576, 2594, 2577, 2595, 2578, 2580, - 2582, 2580, 2596, 2592, 2597, 2584, 2592, 2585, 2599, 2586, - 2600, 2603, 2593, 2602, 2602, 2587, 2589, 2607, 2609, 2590, - 2591, 2593, 2610, 2594, 2601, 2595, 2611, 2601, 2605, 2601, - 2596, 2605, 2597, 2605, 2612, 2613, 2599, 2614, 2600, 2603, - 2593, 2602, 2602, 2615, 2616, 2607, 2609, 2618, 2619, 2620, - 2610, 2621, 2622, 2623, 2611, 2624, 2625, 2626, 2627, 2628, - 2629, 2630, 2612, 2613, 2631, 2614, 2634, 2635, 2636, 2637, - 2638, 2615, 2616, 2639, 2640, 2618, 2619, 2620, 2641, 2621, - 2622, 2623, 2642, 2624, 2625, 2626, 2627, 2628, 2629, 2630, - - 2644, 2645, 2631, 2646, 2634, 2635, 2636, 2637, 2638, 2647, - 2648, 2639, 2640, 2649, 2651, 2652, 2641, 2653, 2655, 2656, - 2642, 2657, 2658, 2659, 2660, 2661, 2662, 2664, 2644, 2645, - 2665, 2646, 2666, 2667, 2668, 2669, 1884, 2647, 2648, 2672, - 2676, 2649, 2651, 2652, 1850, 2653, 2655, 2656, 2677, 2657, - 2658, 2659, 2660, 2672, 2679, 2664, 2689, 2676, 2665, 2690, - 2666, 2667, 2668, 2669, 2673, 2677, 2687, 2673, 2691, 2673, - 2661, 2662, 2678, 2674, 2673, 2678, 2674, 2673, 2674, 2688, - 1819, 2672, 2679, 2674, 2689, 2676, 2674, 2690, 2693, 2678, - 2694, 2673, 2758, 2677, 2680, 2758, 2691, 2680, 2681, 2680, - - 2674, 2681, 2759, 2681, 2680, 2759, 2764, 2680, 2681, 2764, - 2682, 2687, 1750, 2682, 1749, 2682, 2693, 2695, 2694, 2673, - 2682, 2680, 2696, 2682, 2688, 2681, 2697, 2698, 2674, 2684, - 2685, 2699, 2684, 2685, 2684, 2685, 2700, 2682, 2701, 2684, - 2685, 2702, 2684, 2685, 2703, 2695, 2704, 2705, 2706, 2680, - 2696, 2707, 2708, 2681, 2697, 2698, 2684, 2685, 2709, 2699, - 2711, 2712, 2713, 2714, 2700, 2682, 2701, 2715, 2716, 2702, - 2717, 2718, 2703, 2719, 2704, 2705, 2706, 2720, 2721, 2707, - 2708, 2722, 2723, 2725, 2684, 2685, 2709, 2726, 2711, 2712, - 2713, 2714, 2727, 2728, 2729, 2715, 2716, 2730, 2717, 2718, - - 2732, 2719, 2736, 2737, 2738, 2720, 2721, 2739, 2740, 2722, - 2723, 2725, 2741, 2742, 2743, 2726, 2746, 2747, 2748, 2749, - 2727, 2728, 2729, 2750, 2751, 2730, 2752, 2755, 2732, 2756, - 2736, 2737, 2738, 2757, 2761, 2739, 2740, 2762, 2765, 2766, - 2741, 2742, 2743, 2767, 2746, 2747, 2748, 2749, 2769, 2770, - 2771, 2750, 2751, 2772, 2752, 2755, 1748, 2756, 2774, 2775, - 2768, 2757, 2761, 2776, 2777, 2762, 2765, 2766, 2768, 2778, - 2779, 2768, 2780, 2768, 2767, 2781, 2769, 2770, 2771, 2773, - 2784, 2772, 2773, 2785, 2773, 2786, 2774, 2775, 2768, 2790, - 2791, 2776, 2777, 2793, 2796, 2797, 2768, 2778, 2779, 2768, - - 2780, 2768, 2767, 2781, 2798, 2799, 2800, 2801, 2784, 2802, - 2805, 2785, 2806, 2786, 2807, 2808, 2809, 2790, 2791, 2810, - 2811, 2793, 2796, 2797, 2805, 2812, 2813, 2814, 2815, 2816, - 2810, 2817, 2798, 2799, 2800, 2801, 2818, 2802, 2805, 2819, - 2806, 2820, 2807, 2808, 2809, 2821, 2823, 2824, 2811, 2825, - 2826, 2827, 2828, 2812, 2813, 2814, 2815, 2816, 2829, 2817, - 2830, 2831, 2832, 2833, 2818, 2834, 2835, 2819, 2836, 2820, - 2837, 2838, 2839, 2821, 2823, 2824, 2840, 2825, 2826, 2827, - 2828, 2841, 2842, 2843, 2844, 2846, 2829, 2848, 2830, 2831, - 2832, 2833, 2847, 2834, 2835, 2847, 2836, 2847, 2837, 2838, - - 2839, 2870, 2847, 2846, 2848, 2847, 1721, 1718, 1709, 2841, - 2842, 2843, 2844, 2846, 2867, 2850, 1705, 2867, 2850, 2847, - 2850, 2840, 2856, 2851, 2852, 2850, 2851, 2852, 2851, 2852, - 1703, 2846, 2848, 2851, 2852, 2853, 2851, 2852, 2853, 2856, - 2853, 2857, 2850, 2858, 2859, 2853, 2870, 2847, 2853, 1701, - 2851, 2852, 2873, 2926, 2932, 2875, 2926, 2932, 2857, 2876, - 2858, 2859, 2853, 2933, 1691, 2877, 2933, 2856, 2933, 1650, - 2850, 2861, 2863, 1640, 2861, 2863, 2861, 2863, 2851, 2852, - 2873, 2861, 2863, 2875, 2861, 2863, 2857, 2876, 2858, 2859, - 2853, 2864, 2865, 2877, 2864, 2865, 2864, 2865, 2861, 2863, - - 2878, 2864, 2865, 2866, 2864, 2879, 2866, 2868, 2866, 2880, - 2868, 2869, 2868, 2866, 2869, 2881, 2869, 2868, 2864, 2865, - 2868, 2869, 2882, 2884, 2869, 2885, 2861, 2863, 2878, 2887, - 2866, 2889, 2891, 2879, 2868, 2892, 2893, 2880, 2869, 2895, - 2896, 2897, 2898, 2881, 2899, 2900, 2864, 2865, 2901, 2902, - 2882, 2884, 2903, 2885, 2904, 2905, 2909, 2887, 2866, 2889, - 2891, 2910, 2868, 2892, 2893, 2912, 2869, 2895, 2896, 2897, - 2898, 2913, 2899, 2900, 2914, 2915, 2901, 2902, 2916, 2917, - 2903, 2919, 2904, 2905, 2909, 2921, 2922, 2923, 2924, 2910, - 2925, 2927, 2929, 2912, 2930, 2931, 2936, 2937, 2939, 2913, - - 2940, 2941, 2914, 2915, 2942, 2943, 2916, 2917, 2945, 2919, - 1570, 1565, 1563, 2921, 2922, 2923, 2924, 1541, 2925, 2927, - 2929, 2950, 2930, 2931, 2936, 2937, 2939, 2944, 2940, 2941, - 2951, 2946, 2942, 2943, 2946, 2952, 2945, 2947, 2944, 2944, - 2949, 2947, 2954, 2949, 2953, 2949, 2955, 2953, 2947, 2950, - 2956, 2957, 2959, 2960, 2961, 2944, 2965, 2966, 2951, 2969, - 2968, 2971, 2972, 2952, 2973, 2947, 2944, 2944, 2974, 2947, - 2954, 2968, 2975, 2976, 2955, 2977, 2947, 2978, 2956, 2957, - 2959, 2960, 2961, 2980, 2965, 2966, 2981, 2969, 2982, 2971, - 2972, 2983, 2973, 2979, 2979, 2984, 2974, 2985, 2987, 2988, - - 2975, 2976, 2989, 2977, 2990, 2978, 2991, 2992, 2993, 2994, - 2996, 2980, 2998, 2995, 2981, 3000, 2982, 2997, 3001, 2983, - 3002, 2979, 2979, 2984, 2995, 2985, 2987, 2988, 2997, 3004, - 2989, 3006, 2990, 3007, 2991, 2992, 2993, 2994, 2996, 3008, - 2998, 3010, 3011, 3000, 3012, 3013, 3001, 3014, 3002, 3016, - 3017, 3018, 3020, 3021, 2995, 3027, 3042, 3004, 2997, 3006, - 3026, 3007, 3037, 3026, 3681, 3037, 3018, 3008, 1537, 3010, - 3011, 3025, 3012, 3013, 1521, 3014, 3033, 3016, 3017, 3018, - 3020, 3021, 3023, 3027, 3042, 3023, 3028, 3023, 3025, 3028, - 3043, 3028, 3023, 3033, 3018, 3023, 3028, 3029, 3030, 3028, - - 3029, 3030, 3029, 3030, 3259, 1520, 3034, 3029, 3030, 3023, - 1517, 3030, 3044, 3028, 3681, 3259, 3025, 3031, 3043, 3046, - 3031, 3033, 3031, 3034, 3029, 3030, 1464, 3031, 3073, 3036, - 3031, 3073, 3036, 3038, 3036, 3048, 3038, 3023, 3038, 3036, - 3044, 3028, 3036, 3038, 3031, 3050, 3038, 3046, 3051, 3052, - 3053, 3034, 3029, 3030, 3039, 3055, 3036, 3039, 3056, 3039, - 3038, 3057, 3058, 3048, 3039, 3059, 3060, 3039, 3061, 3062, - 3064, 3065, 3031, 3050, 3066, 3067, 3051, 3052, 3053, 3069, - 3070, 3039, 3071, 3055, 3036, 3072, 3056, 3074, 3038, 3057, - 3058, 3075, 3076, 3059, 3060, 3078, 3061, 3062, 3064, 3065, - - 3079, 3080, 3066, 3067, 3081, 3082, 3084, 3069, 3070, 3039, - 3071, 3085, 1463, 3072, 3085, 3074, 3087, 1456, 3083, 3075, - 3076, 3083, 3089, 3078, 3092, 3089, 3093, 3095, 3079, 3080, - 3096, 3097, 3081, 3082, 3084, 3083, 3083, 3083, 3083, 3083, - 3083, 3083, 3083, 3083, 3087, 3091, 3098, 3099, 3091, 3100, - 3091, 3101, 3092, 3102, 3093, 3095, 3103, 3112, 3096, 3097, - 3112, 3240, 3248, 1455, 3240, 3248, 3105, 3106, 3104, 3107, - 3109, 3104, 3110, 3111, 3098, 3099, 3113, 3100, 3114, 3101, - 3115, 3102, 3116, 3118, 3103, 3104, 3104, 3104, 3104, 3104, - 3104, 3104, 3104, 3104, 3105, 3106, 3119, 3107, 3109, 3120, - - 3110, 3111, 3122, 3123, 3113, 3125, 3114, 3126, 3115, 3127, - 3116, 3118, 3129, 3130, 3132, 3133, 3134, 3135, 3136, 3137, - 3139, 3140, 3141, 3142, 3119, 3144, 3145, 3120, 3146, 3147, - 3122, 3123, 3149, 3125, 3151, 3126, 3154, 3127, 3158, 3160, - 3129, 3130, 3132, 3133, 3134, 3135, 3136, 3137, 3139, 3140, - 3141, 3142, 3157, 3144, 3145, 3162, 3146, 3147, 3163, 3164, - 3149, 3165, 3151, 3157, 3154, 3177, 3158, 3160, 3166, 3167, - 3168, 3170, 3171, 3172, 3173, 3175, 3213, 3174, 3188, 3213, - 1454, 3213, 3177, 3162, 1399, 1398, 3163, 3164, 3174, 3165, - 1387, 3252, 1363, 3157, 3252, 3182, 3166, 3167, 3168, 3170, - - 3171, 3172, 3173, 3175, 3176, 3174, 3188, 3176, 3179, 3176, - 3177, 3179, 3182, 3179, 3176, 1362, 3174, 3176, 3179, 3180, - 3181, 3373, 3180, 3181, 3180, 3181, 3189, 3190, 3191, 3180, - 3181, 3176, 3373, 3181, 3254, 3179, 3192, 3254, 3183, 3184, - 3182, 3183, 3184, 3183, 3184, 1358, 3180, 3181, 3183, 3184, - 3304, 3183, 3184, 3304, 3189, 3190, 3191, 3186, 3194, 3176, - 3186, 3195, 3186, 3179, 3192, 3183, 3184, 3186, 3187, 3196, - 3186, 3187, 3198, 3187, 3180, 3181, 3199, 3200, 3187, 3201, - 3202, 3187, 3203, 3206, 3186, 3207, 3194, 3208, 3209, 3195, - 3210, 3211, 3214, 3183, 3184, 3187, 3215, 3196, 3216, 3217, - - 3198, 3218, 3219, 3220, 3199, 3200, 3221, 3201, 3202, 3716, - 3203, 3206, 3186, 3207, 1357, 3208, 3209, 3223, 3210, 3211, - 3214, 3225, 3227, 3187, 3215, 3228, 3216, 3217, 3228, 3218, - 3219, 3220, 3230, 1356, 3221, 3222, 3222, 3222, 3222, 3222, - 3222, 3222, 3222, 3222, 3224, 3223, 3231, 3224, 3232, 3225, - 3227, 3233, 3234, 3235, 3236, 3237, 3238, 1355, 1354, 3716, - 3230, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224, - 3241, 3228, 3242, 3244, 3231, 3245, 3232, 3246, 3249, 3233, - 3234, 3235, 3236, 3237, 3238, 3239, 3239, 3239, 3239, 3239, - 3239, 3239, 3239, 3239, 3250, 3251, 3253, 3255, 3241, 3228, - - 3242, 3244, 3256, 3245, 3257, 3246, 3249, 3258, 3260, 3261, - 3262, 3263, 3265, 3266, 3267, 3268, 3269, 3273, 3274, 3275, - 3276, 3279, 3250, 3251, 3253, 3255, 3280, 3281, 3284, 3286, - 3256, 3287, 3257, 3288, 3289, 3258, 3260, 3261, 3262, 3263, - 3265, 3266, 3267, 3268, 3269, 3273, 3274, 3275, 3276, 3279, - 3282, 3290, 3291, 3292, 3280, 3281, 3284, 3286, 3282, 3287, - 3293, 3288, 3289, 3295, 3296, 3297, 3298, 3299, 3300, 1352, - 3302, 3325, 3301, 3378, 3325, 3301, 3307, 3301, 3282, 3290, - 3291, 3292, 3301, 1321, 3378, 3301, 3282, 3302, 3293, 3308, - 3309, 3295, 3296, 3297, 3298, 3299, 3300, 3303, 3305, 3301, - - 3303, 3305, 3303, 3305, 3307, 3310, 3311, 3303, 3305, 3306, - 3303, 3305, 3306, 3314, 3306, 3302, 3316, 3308, 3309, 3306, - 3318, 3319, 3306, 3320, 3303, 3305, 3321, 3301, 3322, 3324, - 3326, 3329, 3330, 3310, 3311, 3331, 3306, 3354, 1317, 3355, - 3354, 3314, 3355, 3356, 3316, 1289, 3356, 3359, 3318, 3319, - 3359, 3320, 3303, 3305, 3321, 1281, 3322, 3324, 3326, 3329, - 3330, 3332, 1279, 3331, 3306, 3327, 3327, 3327, 3327, 3327, - 3327, 3327, 3327, 3327, 3327, 3327, 3328, 3328, 3328, 3328, - 3328, 3328, 3328, 3328, 3328, 3328, 3328, 3333, 3334, 3332, - 3327, 3335, 3336, 3337, 3339, 3341, 3343, 3345, 3346, 3347, - - 1274, 3328, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 3338, - 3338, 3342, 3348, 3349, 3342, 3333, 3334, 3350, 3351, 3335, - 3336, 3337, 3339, 3341, 3343, 3345, 3346, 3347, 3342, 3342, - 3342, 3342, 3342, 3342, 3342, 3342, 3342, 3352, 3357, 3358, - 3348, 3349, 3360, 3361, 3362, 3350, 3351, 3363, 3364, 3424, - 3363, 3364, 3424, 3633, 3367, 3369, 3365, 3371, 3375, 3365, - 3376, 3377, 3379, 3380, 3633, 3352, 3357, 3358, 3382, 3383, - 3360, 3361, 3362, 3365, 3365, 3365, 3365, 3365, 3365, 3365, - 3365, 3365, 3367, 3369, 3381, 3371, 3375, 3384, 3376, 3377, - 3379, 3380, 3381, 3381, 3385, 3386, 3382, 3383, 3387, 3388, - - 3389, 3390, 3391, 3392, 3393, 3394, 3395, 3397, 3398, 3399, - 3400, 3401, 3381, 3403, 3402, 3384, 3402, 3404, 3405, 3407, - 3381, 3381, 3385, 3386, 3408, 1269, 3387, 3388, 3389, 3390, - 3391, 3392, 3393, 3394, 3395, 3397, 3398, 3399, 3400, 3401, - 3410, 3403, 3411, 3412, 3414, 3404, 3405, 3407, 3409, 3416, - 3420, 3409, 3408, 3409, 3422, 3426, 3427, 3428, 3409, 3429, - 3430, 3409, 3431, 3432, 3434, 1212, 3448, 1211, 3410, 3448, - 3411, 3412, 3414, 1210, 3435, 3409, 3423, 3416, 3420, 3423, - 3425, 3423, 3422, 3426, 3427, 3428, 3402, 3429, 3430, 1209, - 3431, 3432, 3434, 3423, 3423, 3423, 3423, 3423, 3423, 3423, - - 3423, 3423, 3435, 3409, 3425, 3425, 3425, 3425, 3425, 3425, - 3425, 3425, 3425, 3425, 3425, 3437, 3437, 3437, 3437, 3437, - 3437, 3437, 3437, 3437, 3438, 3439, 3440, 3441, 3442, 3425, - 3443, 3442, 3444, 3445, 3446, 3449, 3450, 3451, 3449, 3450, - 3449, 3450, 3452, 3453, 3454, 3455, 3453, 3456, 3453, 1208, - 1207, 1203, 3438, 3439, 3440, 3441, 3458, 3442, 3443, 3458, - 3444, 3445, 3446, 3507, 3515, 3451, 3507, 3515, 1202, 3461, - 3452, 3459, 3454, 3455, 3459, 3456, 3460, 3460, 3460, 3460, - 3460, 3460, 3460, 3460, 3460, 3442, 3466, 3467, 3459, 3459, - 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3461, 3465, 3468, - - 3470, 3471, 3472, 3473, 3465, 3474, 3475, 3477, 3480, 3482, - 3483, 3484, 3485, 3486, 3466, 3467, 3489, 3490, 3492, 3493, - 3519, 3590, 3593, 3519, 3590, 3593, 3465, 3468, 3470, 3471, - 3472, 3473, 3465, 3474, 3475, 3477, 3480, 3482, 3483, 3484, - 3485, 3486, 3495, 3496, 3489, 3490, 3492, 3493, 3494, 3494, - 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3497, - 3500, 3501, 3502, 3503, 3505, 3506, 3727, 1201, 1187, 3727, - 3495, 3496, 1185, 3494, 3508, 3508, 3508, 3508, 3508, 3508, - 3508, 3508, 3508, 3512, 3513, 3514, 3516, 3497, 3500, 3501, - 3502, 3503, 3505, 3506, 3509, 3509, 3509, 3509, 3509, 3509, - - 3509, 3509, 3509, 3510, 3517, 3518, 3510, 3520, 3521, 3522, - 3524, 3512, 3513, 3514, 3516, 3526, 3527, 3528, 3530, 3537, - 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3634, - 3731, 3525, 3517, 3518, 3525, 3520, 3521, 3522, 3524, 3529, - 3634, 3538, 3529, 3526, 3527, 3528, 3530, 3537, 3525, 3525, - 3525, 3525, 3525, 3525, 3525, 3525, 3525, 3532, 3535, 3540, - 3532, 3535, 3532, 3535, 3541, 3542, 1180, 3547, 3529, 3538, - 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3548, - 3731, 3596, 3728, 3543, 3596, 3728, 3596, 3540, 1152, 3549, - 3551, 3544, 3541, 3542, 3544, 3547, 3529, 3543, 3543, 3543, - - 3543, 3543, 3543, 3543, 3543, 3543, 3553, 3548, 3544, 3544, - 3544, 3544, 3544, 3544, 3544, 3544, 3544, 3549, 3551, 3554, - 3555, 3556, 3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, - 3565, 3566, 3569, 3573, 3553, 3588, 3588, 3588, 3588, 3588, - 3588, 3588, 3588, 3588, 1148, 3575, 3576, 3554, 3555, 3556, - 3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, - 3569, 3573, 3574, 3574, 3574, 3574, 3574, 3574, 3574, 3574, - 3574, 3574, 3574, 3575, 3576, 3577, 3580, 3582, 3583, 3586, - 3657, 3586, 3586, 3657, 3586, 3657, 1138, 3574, 3589, 3591, - 3767, 3595, 3586, 3767, 3597, 3587, 3598, 3599, 3600, 3602, - - 3603, 3606, 3607, 3577, 3580, 3582, 3583, 3587, 3587, 3587, - 3587, 3587, 3587, 3587, 3587, 3587, 3589, 3591, 3592, 3595, - 3771, 3592, 3597, 3771, 3598, 3599, 3600, 3602, 3603, 3606, - 3607, 3610, 3615, 3616, 3617, 3592, 3592, 3592, 3592, 3592, - 3592, 3592, 3592, 3592, 3601, 3601, 3601, 3601, 3601, 3601, - 3601, 3601, 3601, 3605, 3611, 3619, 3605, 3620, 3611, 3610, - 3615, 3616, 3617, 3586, 3621, 3611, 3772, 1127, 1125, 3772, - 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3623, - 3618, 3624, 3611, 3619, 3625, 3620, 3611, 3626, 3627, 3628, - 3629, 3630, 3621, 3611, 3618, 3618, 3618, 3618, 3618, 3618, - - 3618, 3618, 3618, 3631, 3632, 3635, 3637, 3623, 3643, 3624, - 3645, 3647, 3625, 3649, 1123, 3626, 3627, 3628, 3629, 3630, - 3656, 3658, 3650, 3660, 3650, 3650, 3660, 3650, 3660, 1122, - 1108, 3631, 3632, 3635, 3637, 3650, 3643, 3665, 3645, 3647, - 3651, 3649, 3651, 3651, 3666, 3651, 3667, 3663, 3656, 3658, - 3663, 3668, 3663, 3651, 3659, 3659, 3659, 3659, 3659, 3659, - 3659, 3659, 3659, 3669, 3670, 3665, 3672, 3673, 3676, 3677, - 3678, 3679, 3666, 3683, 3667, 3684, 3685, 3686, 1107, 3668, - 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3687, - 3688, 3669, 3670, 3689, 3672, 3673, 3676, 3677, 3678, 3679, - - 3690, 3683, 3691, 3684, 3685, 3686, 3650, 3693, 3694, 3695, - 3697, 3698, 3701, 3706, 3702, 3708, 3709, 3687, 3688, 3712, - 3719, 3689, 3720, 3721, 3651, 3702, 3714, 3709, 3690, 3714, - 3691, 3714, 3722, 3723, 3724, 3693, 3694, 3695, 3697, 3698, - 3701, 3706, 3725, 3708, 3709, 3729, 3726, 3712, 3719, 3726, - 3720, 3721, 3730, 3732, 3733, 3709, 3735, 3736, 3738, 3739, - 3722, 3723, 3724, 3740, 3741, 3756, 3742, 3743, 3744, 3748, - 3725, 3749, 3750, 3729, 3751, 3753, 3758, 3760, 3761, 3763, - 3730, 3732, 3733, 3764, 3735, 3736, 3738, 3739, 3765, 3766, - 3768, 3740, 3741, 3726, 3742, 3743, 3744, 3748, 1103, 3749, - - 3750, 3773, 3751, 3753, 3774, 3760, 3761, 3763, 3775, 3769, - 3776, 3764, 3769, 3777, 3769, 3756, 3765, 3766, 3768, 3770, - 3780, 3726, 3770, 3781, 3770, 3782, 3758, 3783, 3784, 3773, - 3785, 3788, 3774, 3792, 3789, 3794, 3775, 3789, 3776, 3795, - 3796, 3777, 3798, 3799, 3801, 3802, 3825, 3801, 3780, 3803, - 3810, 3781, 3803, 3782, 3803, 3783, 3784, 3805, 3785, 3788, - 3805, 3807, 3805, 3794, 3807, 3812, 3807, 3795, 3796, 3808, - 3798, 3799, 3808, 3802, 3808, 3813, 3814, 3816, 3810, 3817, - 3818, 3819, 3820, 3792, 3821, 3824, 3826, 3828, 3824, 3827, - 3824, 3829, 3827, 3812, 3829, 3821, 3825, 3831, 3821, 3839, - - 3840, 3841, 3842, 3813, 3814, 3816, 3843, 3817, 3818, 3819, - 3820, 3844, 3821, 3834, 3826, 3828, 3834, 3836, 3834, 3845, - 3836, 3846, 3836, 3821, 3847, 3831, 3821, 3839, 3840, 3841, - 3842, 3848, 3849, 3853, 3843, 3855, 3853, 3857, 3853, 3844, - 3857, 1102, 1101, 1100, 1099, 1060, 3859, 3845, 3856, 3846, - 1008, 3856, 3847, 1007, 987, 974, 3864, 3865, 3858, 3848, - 3849, 3858, 3866, 3855, 3869, 3856, 3856, 3856, 3856, 3856, - 3856, 3856, 3856, 3856, 3859, 3858, 3858, 3858, 3858, 3858, - 3858, 3858, 3858, 3858, 3864, 3865, 3871, 3872, 3873, 3874, - 3866, 963, 3869, 3878, 3878, 3878, 3878, 3878, 3878, 3878, - - 3878, 3878, 3879, 943, 926, 3879, 901, 889, 878, 3881, - 3884, 3885, 3886, 3889, 3871, 3872, 3873, 3874, 3890, 3879, - 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3879, 3880, 3880, - 3880, 3880, 3880, 3880, 3880, 3880, 3880, 3881, 3884, 3885, - 3886, 3889, 3897, 3900, 3901, 3902, 3890, 3893, 3893, 3893, - 3893, 3893, 3893, 3893, 3893, 3893, 3903, 3904, 3906, 3907, - 3908, 876, 874, 870, 827, 816, 807, 803, 772, 771, - 3897, 3900, 3901, 3902, 769, 768, 767, 765, 760, 759, - 757, 756, 755, 749, 3903, 3904, 3906, 3907, 3908, 3911, - 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, - - 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3912, 3912, 3912, - 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, 3912, - 3912, 3912, 3912, 3912, 3912, 3913, 3913, 3913, 3913, 3913, - 3913, 3913, 3913, 3913, 3913, 3913, 3913, 3913, 3913, 3913, - 3913, 3913, 3913, 3914, 3914, 3914, 3914, 3914, 3914, 3914, - 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, 3914, - 3914, 3915, 3915, 3915, 3915, 3915, 3915, 3915, 3915, 3915, - 3915, 3915, 3915, 3915, 3915, 3915, 3915, 3915, 3915, 3916, - 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3916, - 3916, 3916, 3916, 3916, 3916, 3916, 3916, 3917, 3917, 3917, - - 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 3917, 3917, 3917, 3917, 3917, 3918, 3918, 3918, 3918, 3918, + 2339, 2344, 2126, 2347, 2349, 2345, 2351, 2349, 2041, 2349, + 2347, 2348, 2352, 2353, 2354, 2355, 2356, 2039, 2352, 2357, + 2359, 2360, 2361, 2034, 2362, 2363, 2364, 2365, 2366, 1953, + + 2341, 2347, 2368, 2370, 2351, 2368, 2343, 2368, 2347, 2371, + 2352, 2353, 2354, 2355, 2356, 2341, 2352, 2357, 2359, 2360, + 2361, 2343, 2362, 2363, 2364, 2365, 2366, 2369, 2372, 2373, + 2369, 2370, 2369, 2374, 2375, 2376, 2377, 2371, 2380, 2382, + 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2393, + 2394, 2395, 2396, 2398, 2399, 2401, 2372, 2373, 2402, 3688, + 2404, 2374, 2375, 2376, 2377, 2405, 2380, 2382, 2383, 2384, + 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2393, 2394, 2395, + 2396, 2398, 2399, 2401, 2403, 2406, 2402, 2403, 2404, 2403, + 2407, 2408, 2411, 2405, 2412, 2414, 2416, 2417, 2419, 2420, + + 2421, 2422, 2423, 2424, 2426, 2427, 2428, 2416, 2429, 3688, + 2430, 2431, 2433, 2406, 2434, 2435, 2437, 2438, 2407, 2408, + 2411, 2439, 2412, 2414, 2441, 2417, 2419, 2420, 2421, 2422, + 2423, 2424, 2426, 2427, 2428, 2442, 2429, 2416, 2430, 2431, + 2433, 2443, 2434, 2435, 2437, 2438, 2444, 2445, 2446, 2439, + 2447, 2448, 2441, 2449, 2450, 2451, 2454, 2455, 2456, 2458, + 2459, 2460, 2464, 2442, 2465, 2469, 2471, 2472, 2473, 2443, + 2474, 2475, 2476, 2477, 2444, 2445, 2446, 2478, 2447, 2448, + 2479, 2449, 2450, 2451, 2454, 2455, 2456, 2458, 2459, 2460, + 2464, 2481, 2465, 1938, 2492, 2494, 2473, 2495, 2474, 2475, + + 2476, 2477, 2485, 2484, 2483, 2478, 2496, 2483, 2479, 2483, + 2469, 2471, 2472, 2498, 2483, 1934, 2485, 2483, 2486, 2481, + 2484, 2486, 2487, 2486, 2499, 2487, 2500, 2487, 2486, 2501, + 2502, 2483, 2487, 2488, 2496, 2487, 2488, 2503, 2488, 2492, + 2494, 2498, 2495, 2488, 2485, 2486, 2488, 2504, 2484, 2487, + 2505, 2507, 2499, 2508, 2500, 2509, 2510, 2501, 2502, 2483, + 2488, 2511, 2512, 2513, 2514, 2503, 2515, 2516, 2517, 2518, + 2519, 2520, 2521, 2486, 2522, 2504, 2523, 2487, 2505, 2507, + 2524, 2508, 2525, 2509, 2510, 2526, 2527, 2528, 2488, 2511, + 2512, 2513, 2514, 2529, 2515, 2516, 2517, 2518, 2519, 2520, + + 2521, 2531, 2522, 2533, 2523, 2534, 2535, 2536, 2524, 2537, + 2525, 2538, 2539, 2526, 2527, 2528, 2540, 2542, 2542, 2547, + 2542, 2529, 2545, 2545, 2548, 2545, 2549, 2550, 2554, 2531, + 2555, 2533, 2556, 2534, 2535, 2536, 2557, 2537, 2553, 2538, + 2539, 2553, 2558, 2559, 2540, 2560, 2561, 2547, 2562, 1932, + 2563, 2562, 2548, 2562, 2549, 2550, 2554, 2564, 2555, 1904, + 2556, 2566, 2567, 2568, 2557, 2569, 2570, 2574, 2575, 2576, + 2558, 2559, 2542, 2560, 2561, 2577, 2578, 2545, 2563, 2579, + 2581, 2582, 2581, 2583, 2582, 2564, 2585, 2542, 2586, 2566, + 2567, 2568, 2545, 2569, 2570, 2574, 2575, 2576, 2587, 2588, + + 2590, 2591, 2592, 2577, 2578, 2594, 2593, 2579, 2581, 2593, + 2581, 2583, 2595, 2596, 2585, 2597, 2586, 2598, 2600, 2601, + 2602, 2603, 2603, 2602, 2594, 2602, 2587, 2588, 2590, 2591, + 2592, 2604, 2606, 2594, 2608, 2606, 2610, 2606, 2611, 2612, + 2595, 2596, 2613, 2597, 2614, 2598, 2600, 2601, 2615, 2603, + 2603, 2616, 2594, 2617, 2619, 2620, 2621, 2622, 2623, 2604, + 2624, 2625, 2608, 2626, 2610, 2627, 2611, 2612, 2628, 2629, + 2613, 2630, 2614, 2631, 2632, 2635, 2615, 2636, 2637, 2616, + 2638, 2617, 2619, 2620, 2621, 2622, 2623, 2639, 2624, 2625, + 2640, 2626, 2641, 2627, 2642, 2643, 2628, 2629, 2645, 2630, + + 2646, 2631, 2632, 2635, 2647, 2636, 2637, 2648, 2638, 2649, + 2650, 2652, 2653, 2654, 2656, 2639, 2657, 2658, 2640, 2659, + 2641, 2660, 2642, 2643, 2661, 2662, 2645, 2663, 2646, 2665, + 2666, 2667, 2647, 2668, 2669, 2648, 2670, 2649, 2650, 2652, + 2653, 2654, 2656, 2680, 2657, 2658, 2673, 2659, 2677, 2660, + 2678, 1888, 2661, 2688, 2690, 2691, 1887, 2665, 2666, 2667, + 2673, 2668, 2669, 2674, 2670, 2677, 2674, 2678, 2674, 2689, + 2662, 2680, 2663, 2674, 2675, 2679, 2674, 2675, 2679, 2675, + 2692, 2842, 2690, 2691, 2675, 1884, 2681, 2675, 2673, 2681, + 2674, 2681, 2679, 2677, 2794, 2678, 2681, 2682, 2688, 2681, + + 2682, 2675, 2682, 2694, 1850, 2794, 2683, 2682, 2692, 2683, + 2695, 2683, 2685, 2681, 2689, 2685, 2683, 2685, 2674, 2683, + 2696, 2697, 2685, 2698, 2682, 2685, 2842, 2686, 2699, 2675, + 2686, 2694, 2686, 2683, 2700, 2701, 2702, 2686, 2695, 2685, + 2686, 2681, 2703, 2704, 2705, 2706, 2707, 2708, 2696, 2697, + 2709, 2698, 2682, 2710, 2686, 2712, 2699, 2713, 2714, 2715, + 2716, 2683, 2700, 2701, 2702, 2717, 2718, 2685, 2719, 2720, + 2703, 2704, 2705, 2706, 2707, 2708, 2721, 2722, 2709, 2723, + 2724, 2710, 2686, 2712, 2726, 2713, 2714, 2715, 2716, 2727, + 2728, 2729, 2730, 2717, 2718, 2731, 2719, 2720, 2733, 2734, + + 2738, 2739, 2740, 2741, 2721, 2722, 2742, 2723, 2724, 2743, + 2744, 2745, 2726, 2748, 2749, 2750, 2751, 2727, 2728, 2729, + 2730, 2752, 2753, 2731, 2754, 2757, 2733, 2734, 2738, 2739, + 2740, 2741, 2758, 2759, 2742, 2763, 2764, 2743, 2744, 2745, + 2767, 2748, 2749, 2750, 2751, 2760, 2768, 2769, 2760, 2752, + 2753, 2761, 2754, 2757, 2761, 2766, 2771, 2772, 2766, 2770, + 2758, 2759, 2773, 2763, 2764, 2774, 2775, 2770, 2767, 2775, + 2770, 2775, 2770, 2776, 2768, 2777, 2778, 2779, 2769, 2780, + 2781, 2782, 2783, 2786, 2771, 2772, 2787, 2770, 2788, 2792, + 2773, 2793, 2795, 2774, 2798, 2770, 2799, 2800, 2770, 2801, + + 2770, 2776, 2797, 2777, 2778, 2779, 2769, 2780, 2781, 2782, + 2783, 2786, 2802, 2797, 2787, 2803, 2788, 2792, 2804, 2793, + 2795, 2807, 2798, 2808, 2799, 2800, 2809, 2801, 2810, 2811, + 2812, 2813, 2814, 2815, 2816, 2807, 2817, 2818, 2819, 2820, + 2802, 2812, 2821, 2803, 2822, 2823, 2804, 2825, 2826, 2807, + 2827, 2808, 2828, 2829, 2809, 2830, 2810, 2811, 2831, 2813, + 2814, 2815, 2816, 2832, 2817, 2818, 2819, 2820, 2833, 2834, + 2821, 2835, 2822, 2823, 2836, 2825, 2826, 2837, 2827, 2838, + 2828, 2829, 2839, 2830, 2840, 2841, 2831, 2843, 2844, 2845, + 2846, 2832, 2850, 2848, 1819, 2971, 2833, 2834, 2852, 2835, + + 1750, 2852, 2836, 2852, 1749, 2837, 2971, 2838, 2852, 2850, + 2839, 2848, 2840, 2841, 2858, 2843, 2844, 2845, 2846, 2849, + 2872, 2848, 2849, 2853, 2849, 2852, 2853, 2869, 2853, 2849, + 2869, 2858, 2849, 2853, 2859, 2854, 2853, 2850, 2854, 2848, + 2854, 2860, 1748, 2861, 2855, 2854, 2849, 2855, 2854, 2855, + 2853, 2859, 1721, 2852, 2855, 2875, 2877, 2855, 2860, 2858, + 2861, 2878, 2854, 2879, 3264, 2872, 2929, 2863, 1718, 2929, + 2863, 2855, 2863, 2880, 2849, 3264, 2881, 2863, 2853, 2859, + 2863, 1709, 2865, 2875, 2877, 2865, 2860, 2865, 2861, 2878, + 2854, 2879, 2865, 2866, 2863, 2865, 2866, 2867, 2866, 2855, + + 2867, 2880, 2867, 2866, 2881, 2868, 2866, 2867, 2868, 2865, + 2868, 2882, 1705, 2870, 2883, 2868, 2870, 2884, 2870, 2886, + 2866, 2887, 2863, 2870, 2867, 2889, 2870, 1703, 2871, 2891, + 2893, 2871, 2868, 2871, 2894, 2895, 2897, 2865, 2871, 2882, + 2870, 2871, 2883, 2898, 2899, 2884, 2900, 2886, 2866, 2887, + 2901, 2902, 2867, 2889, 2903, 2871, 2904, 2891, 2893, 2905, + 2868, 2906, 2894, 2895, 2897, 2907, 2911, 2912, 2870, 2913, + 2915, 2898, 2899, 2916, 2900, 2917, 2918, 2919, 2901, 2902, + 2920, 2922, 2903, 2871, 2904, 2924, 2925, 2905, 2926, 2906, + 2927, 2928, 2930, 2907, 2911, 2912, 2932, 2913, 2915, 2933, + + 2934, 2916, 2939, 2917, 2918, 2919, 2940, 2935, 2920, 2922, + 2935, 2942, 2936, 2924, 2925, 2936, 2926, 2936, 2927, 2928, + 2930, 2943, 2944, 2945, 2932, 2946, 2947, 2933, 2934, 2948, + 2939, 2953, 2949, 2954, 2940, 2949, 2950, 2947, 2947, 2942, + 2950, 2952, 2955, 2957, 2952, 2956, 2952, 2950, 2956, 2943, + 2944, 2945, 2958, 2946, 2947, 2959, 2960, 2948, 2962, 2953, + 2963, 2954, 2964, 2968, 2950, 2947, 2947, 2969, 2950, 2972, + 2955, 2957, 2974, 2975, 2976, 2950, 2977, 2978, 2979, 2980, + 2958, 2981, 2983, 2959, 2960, 2984, 2962, 2985, 2963, 2986, + 2964, 2968, 2982, 2982, 2987, 2969, 2988, 2972, 2990, 2991, + + 2974, 2975, 2976, 2992, 2977, 2978, 2979, 2980, 2993, 2981, + 2983, 2994, 2995, 2984, 2996, 2985, 2997, 2986, 2998, 2999, + 2982, 2982, 2987, 3000, 2988, 3001, 2990, 2991, 3003, 2998, + 3004, 2992, 3005, 3007, 3000, 3009, 2993, 3010, 3011, 2994, + 2995, 3013, 2996, 3014, 2997, 3015, 3016, 2999, 3017, 3019, + 3020, 3023, 3021, 3001, 3024, 3028, 3003, 3379, 3004, 2998, + 3005, 3007, 3030, 3009, 3000, 3010, 3011, 3021, 3379, 3013, + 1701, 3014, 3028, 3015, 3016, 1691, 3017, 3019, 3020, 3023, + 3021, 3026, 3024, 1650, 3026, 3029, 3026, 3723, 3029, 3040, + 3030, 3026, 3040, 3031, 3026, 3021, 3031, 1640, 3031, 3032, + + 3028, 3036, 3032, 3031, 3032, 1570, 3031, 1565, 3026, 3032, + 3037, 3033, 3034, 3045, 3033, 3034, 3033, 3034, 3036, 3046, + 3031, 3033, 3034, 3047, 3033, 3034, 3032, 3037, 3049, 3077, + 3039, 3089, 3077, 3039, 3089, 3039, 3026, 3723, 3033, 3034, + 3039, 3045, 3093, 3039, 1563, 3093, 3036, 3046, 3031, 3051, + 3053, 3047, 3054, 3055, 3032, 3037, 3049, 3039, 1541, 3041, + 3042, 3056, 3041, 3042, 3041, 3042, 3033, 3034, 3058, 3041, + 3042, 3059, 3041, 3042, 3060, 3061, 3062, 3051, 3053, 3063, + 3054, 3055, 3064, 3065, 3067, 3039, 3041, 3042, 3068, 3056, + 3069, 3070, 3072, 3073, 3074, 3075, 3058, 3076, 3078, 3059, + + 3079, 3080, 3060, 3061, 3062, 3082, 3083, 3063, 3084, 3085, + 3064, 3065, 3067, 3086, 3041, 3042, 3068, 1537, 3069, 3070, + 3072, 3073, 3074, 3075, 1521, 3076, 3078, 3087, 3079, 3080, + 3087, 3088, 3091, 3082, 3083, 3095, 3084, 3085, 3095, 3096, + 3095, 3086, 3097, 3099, 3087, 3087, 3087, 3087, 3087, 3087, + 3087, 3087, 3087, 3100, 3101, 3102, 3103, 3104, 3105, 3088, + 3091, 3106, 3107, 3116, 1520, 3214, 3116, 3096, 3214, 1517, + 3097, 3099, 3109, 3110, 3108, 3111, 3113, 3108, 3114, 3115, + 3117, 3100, 3101, 3102, 3103, 3104, 3105, 3118, 3119, 3106, + 3107, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, + + 3109, 3110, 3120, 3111, 3113, 3122, 3114, 3115, 3117, 3123, + 3124, 3126, 3127, 3129, 3130, 3118, 3119, 3131, 3133, 3134, + 3136, 3137, 3138, 3139, 3140, 3141, 3143, 3144, 3145, 3146, + 3120, 3148, 3149, 3122, 3150, 3151, 3153, 3123, 3124, 3126, + 3127, 3129, 3130, 3155, 3158, 3131, 3133, 3134, 3136, 3137, + 3138, 3139, 3140, 3141, 3143, 3144, 3145, 3146, 3161, 3148, + 3149, 3162, 3150, 3151, 3153, 3164, 3166, 3167, 3168, 3161, + 3169, 3155, 3158, 3170, 3171, 3172, 3174, 3175, 3176, 3177, + 3178, 3179, 3245, 3218, 1464, 3245, 3218, 3180, 3218, 3162, + 3180, 3178, 3180, 3164, 3166, 3167, 3168, 3180, 3169, 3161, + + 3180, 3170, 3171, 3172, 3174, 3175, 3176, 3177, 3178, 3179, + 3181, 3186, 3183, 3184, 3180, 3183, 3184, 3183, 3184, 3178, + 1463, 3185, 3183, 3184, 3185, 3192, 3185, 3181, 3186, 3253, + 3193, 3185, 3253, 3187, 3185, 3194, 3187, 3195, 3187, 3183, + 3184, 3384, 3180, 3187, 3188, 1456, 3187, 3188, 3185, 3188, + 3196, 3198, 3384, 3192, 3188, 3181, 3186, 3188, 3193, 3190, + 3187, 3199, 3190, 3194, 3190, 3195, 3200, 3183, 3184, 3190, + 3191, 3188, 3190, 3191, 3202, 3191, 3185, 3203, 3196, 3198, + 3191, 3204, 3205, 3191, 3206, 3207, 3190, 3210, 3187, 3199, + 3211, 3212, 3213, 3215, 3200, 3216, 3219, 3191, 3220, 3188, + + 3221, 3222, 3202, 3223, 3224, 3203, 3225, 3226, 3257, 3204, + 3205, 3257, 3206, 3207, 3190, 3210, 3640, 3228, 3211, 3212, + 3213, 3215, 1455, 3216, 3219, 3191, 3220, 3640, 3221, 3222, + 3229, 3223, 3224, 3229, 3225, 3226, 3227, 3227, 3227, 3227, + 3227, 3227, 3227, 3227, 3227, 3228, 3230, 3229, 3229, 3229, + 3229, 3229, 3229, 3229, 3229, 3229, 3232, 3233, 3235, 3236, + 3233, 3237, 3238, 3239, 3240, 3241, 3242, 3243, 3246, 3247, + 3249, 3250, 3251, 3254, 3230, 3244, 3244, 3244, 3244, 3244, + 3244, 3244, 3244, 3244, 3232, 3255, 3235, 3236, 3256, 3237, + 3238, 3239, 3240, 3241, 3242, 3243, 3246, 3247, 3249, 3250, + + 3251, 3254, 3258, 3233, 3259, 3260, 3261, 3259, 3262, 3263, + 3265, 3266, 3267, 3255, 3268, 3270, 3256, 3271, 3272, 3273, + 3274, 3278, 3279, 3280, 3281, 3284, 3285, 3286, 1454, 3289, + 3258, 3233, 3291, 3260, 3261, 3292, 3262, 3263, 3265, 3266, + 3267, 3293, 3268, 3270, 3294, 3271, 3272, 3273, 3274, 3278, + 3279, 3280, 3281, 3284, 3285, 3286, 3287, 3289, 3295, 3296, + 3291, 3297, 3298, 3292, 3287, 3300, 3301, 3302, 3303, 3293, + 3304, 3305, 3294, 3309, 3307, 3306, 3309, 1399, 3306, 3312, + 3306, 3313, 1398, 3738, 3287, 3306, 3295, 3296, 3306, 3297, + 3298, 3307, 3287, 3300, 3301, 3302, 3303, 1387, 3304, 3305, + + 3308, 3310, 3306, 3308, 3310, 3308, 3310, 3312, 3314, 3313, + 3308, 3310, 3311, 3308, 3310, 3311, 3315, 3311, 3316, 3307, + 3319, 3321, 3311, 3323, 3324, 3311, 3325, 3308, 3310, 3326, + 3306, 3327, 3329, 3738, 3331, 3332, 3314, 3331, 3335, 3311, + 3336, 3337, 3338, 3339, 3315, 3340, 3316, 3360, 3319, 3321, + 3360, 3323, 3324, 3641, 3325, 3308, 3310, 3326, 3330, 3327, + 3329, 3330, 3361, 3332, 3641, 3361, 3335, 3311, 3336, 3337, + 3338, 3339, 1363, 3340, 1362, 3330, 3330, 3330, 3330, 3330, + 3330, 3330, 3330, 3330, 3333, 3333, 3333, 3333, 3333, 3333, + 3333, 3333, 3333, 3333, 3333, 3334, 3334, 3334, 3334, 3334, + + 3334, 3334, 3334, 3334, 3334, 3334, 3341, 3342, 3343, 3333, + 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3345, + 3334, 3347, 3349, 3351, 3352, 3353, 3362, 3365, 3369, 3362, + 3365, 3369, 1358, 1357, 3341, 3342, 3343, 3348, 3354, 3355, + 3348, 3356, 3357, 3358, 3363, 3364, 3366, 3345, 3367, 3347, + 3349, 3351, 3352, 3353, 3348, 3348, 3348, 3348, 3348, 3348, + 3348, 3348, 3348, 3368, 1356, 3370, 3354, 3355, 3370, 3356, + 3357, 3358, 3363, 3364, 3366, 3371, 3367, 3373, 3371, 3375, + 3377, 3381, 3382, 3383, 3385, 3386, 1355, 1354, 3388, 3389, + 3390, 3368, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, + + 3371, 3391, 3392, 3393, 3394, 3373, 3387, 3375, 3377, 3381, + 3382, 3383, 3385, 3386, 3387, 3387, 3388, 3389, 3390, 3395, + 3396, 3397, 3398, 3399, 3400, 3401, 3403, 3404, 3405, 3391, + 3392, 3393, 3394, 3406, 3387, 3407, 3408, 3409, 3408, 3410, + 3411, 3413, 3387, 3387, 3414, 1352, 3416, 3395, 3396, 3397, + 3398, 3399, 3400, 3401, 3403, 3404, 3405, 3417, 3418, 3420, + 3422, 3406, 3426, 3407, 3428, 3409, 3433, 3410, 3411, 3413, + 3415, 1321, 3414, 3415, 3416, 3415, 3431, 1317, 3455, 3431, + 3415, 3455, 3434, 3415, 1289, 3417, 3418, 3420, 3422, 3435, + 3426, 3436, 3428, 3437, 3433, 3438, 3439, 3415, 3429, 3429, + + 3429, 3429, 3429, 3429, 3429, 3429, 3429, 1281, 3408, 3430, + 3434, 3432, 3430, 3465, 3430, 1279, 3465, 3435, 3441, 3436, + 3442, 3437, 1274, 3438, 3439, 3415, 3430, 3430, 3430, 3430, + 3430, 3430, 3430, 3430, 3430, 3432, 3432, 3432, 3432, 3432, + 3432, 3432, 3432, 3432, 3432, 3432, 3441, 3445, 3442, 3444, + 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3446, 3447, + 3432, 3448, 3449, 1269, 3450, 3449, 3451, 3452, 3453, 3456, + 3458, 3459, 3456, 3457, 3456, 3445, 3457, 3460, 3457, 3461, + 3460, 3462, 3460, 3463, 3468, 3473, 3446, 3447, 1212, 3448, + 3474, 3449, 3450, 1211, 3451, 3452, 3453, 3514, 3458, 3459, + + 3514, 3522, 3526, 3466, 3522, 3526, 3466, 3461, 1210, 3462, + 3472, 3463, 3468, 3473, 3475, 3477, 3472, 3478, 3474, 3449, + 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3467, + 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3467, 3472, 3479, + 3480, 3481, 3475, 3477, 3472, 3478, 3482, 3484, 3487, 3489, + 3490, 3491, 3492, 3493, 3496, 3497, 3499, 3500, 3515, 3515, + 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3479, 3480, 3481, + 3502, 3503, 3504, 3507, 3482, 3484, 3487, 3489, 3490, 3491, + 3492, 3493, 3496, 3497, 3499, 3500, 3501, 3501, 3501, 3501, + 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3508, 3502, 3503, + + 3504, 3507, 3509, 3510, 3512, 3513, 3519, 3520, 3521, 3523, + 1209, 3501, 3516, 3516, 3516, 3516, 3516, 3516, 3516, 3516, + 3516, 3517, 3524, 3525, 3517, 3508, 3527, 3528, 3529, 3531, + 3509, 3510, 3512, 3513, 3519, 3520, 3521, 3523, 3517, 3517, + 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3533, 3534, 3532, + 3524, 3525, 3532, 3535, 3527, 3528, 3529, 3531, 3536, 3539, + 3537, 3536, 3539, 3544, 3539, 3545, 3532, 3532, 3532, 3532, + 3532, 3532, 3532, 3532, 3532, 3533, 3534, 3542, 3547, 3548, + 3542, 3535, 3542, 3549, 1208, 3554, 3555, 3536, 3537, 3597, + 1207, 3544, 3597, 3545, 1203, 3600, 3603, 3556, 3600, 3603, + + 3664, 3603, 3550, 3664, 1202, 3664, 3547, 3548, 1201, 3551, + 1187, 3549, 3551, 3554, 3555, 3536, 3550, 3550, 3550, 3550, + 3550, 3550, 3550, 3550, 3550, 3556, 3551, 3551, 3551, 3551, + 3551, 3551, 3551, 3551, 3551, 3552, 3552, 3552, 3552, 3552, + 3552, 3552, 3552, 3552, 3558, 3560, 3561, 3562, 3563, 3564, + 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3576, + 3580, 3595, 3595, 3595, 3595, 3595, 3595, 3595, 3595, 3595, + 1185, 1180, 3558, 3560, 3561, 3562, 3563, 3564, 3565, 3566, + 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3576, 3580, 3581, + 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, 3581, + + 3582, 3583, 3584, 3587, 3589, 3590, 3593, 3667, 3593, 3593, + 3667, 3593, 3667, 1152, 3581, 3596, 3598, 3734, 3602, 3593, + 3734, 3604, 3594, 3605, 3606, 3607, 3609, 3610, 3582, 3583, + 3584, 3587, 3589, 3590, 3594, 3594, 3594, 3594, 3594, 3594, + 3594, 3594, 3594, 3596, 3598, 3599, 3602, 3735, 3599, 3604, + 3735, 3605, 3606, 3607, 3609, 3610, 3613, 3614, 3617, 3622, + 3623, 3624, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, + 3599, 3608, 3608, 3608, 3608, 3608, 3608, 3608, 3608, 3608, + 3612, 3626, 3709, 3612, 3613, 3614, 3617, 3622, 3623, 3624, + 3593, 3627, 3628, 3709, 1148, 1138, 1127, 3612, 3612, 3612, + + 3612, 3612, 3612, 3612, 3612, 3612, 3618, 3625, 3630, 3626, + 3618, 3631, 3632, 3633, 3634, 3635, 3636, 3618, 3637, 3627, + 3628, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, + 3638, 3639, 3642, 3644, 3618, 3650, 3630, 3652, 3618, 3631, + 3632, 3633, 3634, 3635, 3636, 3618, 3637, 3654, 3656, 3657, + 3663, 3657, 3657, 3665, 3657, 3763, 1125, 1123, 3638, 3639, + 3642, 3644, 3657, 3650, 3658, 3652, 3658, 3658, 3670, 3658, + 3672, 3670, 3673, 3670, 3674, 3654, 3656, 3658, 3663, 3675, + 3676, 3665, 3666, 3666, 3666, 3666, 3666, 3666, 3666, 3666, + 3666, 3677, 3679, 3680, 3683, 3684, 3685, 3686, 3672, 3690, + + 3673, 3691, 3674, 3692, 3693, 3763, 3694, 3675, 3676, 3678, + 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3695, 3677, + 3679, 3680, 3683, 3684, 3685, 3686, 3696, 3690, 3697, 3691, + 3698, 3692, 3693, 3657, 3694, 3700, 3701, 3702, 3704, 3705, + 3708, 3713, 3715, 3719, 3716, 3726, 3695, 3721, 3658, 3727, + 3721, 3728, 3721, 3729, 3696, 3716, 3697, 3730, 3698, 3731, + 3732, 3736, 3737, 3700, 3701, 3702, 3704, 3705, 3708, 3713, + 3715, 3719, 3716, 3726, 3739, 3733, 3740, 3727, 3733, 3728, + 3742, 3729, 3743, 3716, 3745, 3730, 3746, 3731, 3732, 3736, + 3737, 3747, 3748, 3749, 3765, 3750, 3751, 3755, 3756, 3757, + + 3758, 3760, 3739, 3767, 3740, 3768, 3770, 3771, 3742, 3772, + 3743, 3773, 3745, 3774, 3746, 3775, 3774, 3799, 1122, 3747, + 3748, 3749, 3733, 3750, 3751, 3755, 3756, 3757, 3758, 3760, + 3780, 3767, 3781, 3768, 3770, 3771, 3782, 3772, 3778, 3773, + 3783, 3778, 3776, 3775, 3765, 3776, 3777, 3776, 3784, 3777, + 3733, 3777, 3779, 3787, 3788, 3779, 3789, 3790, 3780, 3791, + 3781, 3792, 3795, 3796, 3782, 3801, 3796, 3799, 3783, 3802, + 3803, 3805, 3806, 3809, 3808, 3810, 3784, 3808, 3810, 3832, + 3810, 3787, 3788, 3812, 3789, 3790, 3812, 3791, 3812, 3792, + 3795, 3814, 3817, 3801, 3814, 3819, 3814, 3802, 3803, 3805, + + 3806, 3809, 3815, 3820, 3821, 3815, 3823, 3815, 3824, 3825, + 3826, 3827, 3831, 3828, 3833, 3831, 3834, 3831, 3835, 3834, + 3817, 3838, 3836, 3819, 3828, 3836, 3846, 3828, 3847, 3832, + 3841, 3820, 3821, 3841, 3823, 3841, 3824, 3825, 3826, 3827, + 3843, 3828, 3833, 3843, 3848, 3843, 3835, 3849, 3850, 3838, + 3851, 3852, 3828, 3853, 3846, 3828, 3847, 3854, 3855, 3856, + 3860, 3862, 3866, 3860, 3864, 3860, 1108, 3864, 1107, 1103, + 1102, 1101, 3848, 3871, 3863, 3849, 3850, 3863, 3851, 3852, + 3872, 3853, 3873, 3876, 3878, 3854, 3855, 3856, 3879, 3862, + 3866, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, 3863, + + 3865, 3871, 3880, 3865, 3881, 1100, 1099, 1060, 3872, 1008, + 3873, 3876, 3878, 1007, 3888, 987, 3879, 3865, 3865, 3865, + 3865, 3865, 3865, 3865, 3865, 3865, 3886, 974, 963, 3886, + 3880, 943, 3881, 3885, 3885, 3885, 3885, 3885, 3885, 3885, + 3885, 3885, 3888, 3886, 3886, 3886, 3886, 3886, 3886, 3886, + 3886, 3886, 3887, 3887, 3887, 3887, 3887, 3887, 3887, 3887, + 3887, 3891, 3892, 3893, 3896, 3897, 3900, 3900, 3900, 3900, + 3900, 3900, 3900, 3900, 3900, 3904, 3907, 3908, 3909, 3910, + 3911, 3913, 3914, 3915, 926, 901, 889, 878, 876, 3891, + 3892, 3893, 3896, 3897, 874, 870, 827, 816, 807, 803, + + 772, 771, 769, 3904, 3907, 3908, 3909, 3910, 3911, 3913, + 3914, 3915, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, - 3918, 3918, 3918, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, - 3919, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, - 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3921, + 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3920, 3920, + 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, + 3920, 3920, 3920, 3920, 3920, 3920, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, - 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3922, 3922, 3922, + 3921, 3921, 3921, 3921, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, - 3922, 3922, 3922, 3922, 3922, 3923, 3923, 3923, 3923, 3923, + 3922, 3922, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, - 3923, 3923, 3923, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, - 3924, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, - 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3926, + 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3925, 3925, + 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, + 3925, 3925, 3925, 3925, 3925, 3925, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, - 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3927, 3927, 3927, + 3926, 3926, 3926, 3926, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, - 3927, 3927, 3927, 3927, 3927, 3928, 3928, 3928, 3928, 3928, + 3927, 3927, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, - 3928, 3928, 3928, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, - 3929, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, - 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3931, + 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3930, 3930, + 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, + 3930, 3930, 3930, 3930, 3930, 3930, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, - 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3932, 3932, 3932, + 3931, 3931, 3931, 3931, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, - 3932, 3932, 3932, 3932, 3932, 3933, 3933, 3933, 3933, 3933, + 3932, 3932, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, - 3933, 3933, 3933, 3934, 3934, 742, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, - 3934, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, - 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3936, + 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3935, 3935, + 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, + 3935, 3935, 3935, 3935, 3935, 3935, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, - 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3937, 3937, 3937, + 3936, 3936, 3936, 3936, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, - 3937, 3937, 3937, 3937, 3937, 3938, 3938, 3938, 3938, 3938, + 3937, 3937, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, - 3938, 3938, 3938, 3939, 3939, 3939, 3939, 3939, 3939, 3939, - 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, - 3939, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, - 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3941, + + 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3940, 3940, + 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, + 3940, 3940, 3940, 3940, 3940, 3940, 3941, 3941, 768, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, - 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3942, 3942, 3942, + 3941, 3941, 3941, 3941, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, - 3942, 3942, 3942, 3942, 3942, 3943, 3943, 3943, 3943, 3943, + 3942, 3942, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, - 3943, 3943, 3943, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, + 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3945, 3945, - 3944, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, - 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3946, + 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, + 3945, 3945, 3945, 3945, 3945, 3945, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, - 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3947, 3947, 3947, + 3946, 3946, 3946, 3946, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, - 3947, 3947, 3947, 3947, 3947, 3948, 3948, 3948, 3948, 3948, + 3947, 3947, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, - 3948, 3948, 3948, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, - 3949, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, + 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3950, 3950, + 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, - 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3951, + 3950, 3950, 3950, 3950, 3950, 3950, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, - 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3952, 3952, 731, + 3951, 3951, 3951, 3951, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, - 3952, 3952, 3952, 3952, 3952, 3953, 3953, 730, 3953, 3953, + 3952, 3952, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, - 3953, 3953, 3953, 3954, 3954, 711, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, - 3954, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, - 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3956, + 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3955, 3955, + 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, + 3955, 3955, 3955, 3955, 3955, 3955, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, - 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3957, 3957, 3957, + 3956, 3956, 3956, 3956, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, - 3957, 3957, 3957, 3957, 3957, 3958, 3958, 3958, 3958, 3958, + 3957, 3957, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, - 3958, 3958, 3958, 3959, 3959, 700, 3959, 3959, 3959, 3959, - 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, - 3959, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, - 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3961, + 3959, 3959, 767, 3959, 3959, 3959, 3959, 3959, 3959, 3959, + 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3960, 3960, + 765, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, + 3960, 3960, 3960, 3960, 3960, 3960, 3961, 3961, 760, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, - 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3962, 3962, 3962, + 3961, 3961, 3961, 3961, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, - 3962, 3962, 3962, 689, 3962, 3963, 3963, 3963, 3963, 3963, + 3962, 3962, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, - 3963, 3963, 3963, 3964, 3964, 3964, 3964, 3964, 3964, 3964, - 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 677, - 3964, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, - 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3966, + 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, + 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3965, 3965, + 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, + 3965, 3965, 3965, 3965, 3965, 3965, 3966, 3966, 759, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, - 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3967, 3967, 3967, + 3966, 3966, 3966, 3966, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, - 3967, 3967, 3967, 3967, 3967, 3968, 3968, 3968, 3968, 3968, + 3967, 3967, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, - 3968, 3968, 3968, 3969, 676, 3969, 3969, 671, 670, 3969, - 3969, 3969, 3969, 3969, 668, 3969, 3969, 3969, 3969, 3969, + 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, + 3969, 3969, 3969, 3969, 3969, 3969, 757, 3969, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, - 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3971, 3971, + 3970, 3970, 3970, 3970, 3970, 3970, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, - 3971, 3971, 3971, 3971, 661, 3971, 3972, 3972, 3972, 3972, + 3971, 3971, 756, 3971, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, - 3972, 3972, 3972, 3972, 3973, 3973, 3973, 3973, 3973, 3973, + 3972, 3972, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, - 3973, 3973, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, - 3975, 651, 3975, 3975, 650, 648, 3975, 3975, 3975, 3975, - 3975, 644, 3975, 3975, 3975, 3975, 3975, 3976, 3976, 3976, - 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, - 3976, 3976, 3976, 3976, 3976, 3977, 3977, 3977, 3977, 3977, + 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3975, 3975, + 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, + 3975, 3975, 3975, 3975, 3975, 3975, 3976, 755, 3976, 3976, + 749, 742, 3976, 3976, 3976, 3976, 3976, 731, 3976, 3976, + 3976, 3976, 3976, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, - 3977, 634, 3977, 3978, 3978, 3978, 3978, 3978, 3978, 3978, + 3977, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, - 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, - 3978, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, - 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3980, + 3978, 3978, 3978, 3978, 3978, 3978, 3978, 730, 3978, 3979, + 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, + 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, - 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3981, 3981, 3981, + 3980, 3980, 3980, 3980, 3980, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, - 3981, 3981, 3981, 633, 3981, 3982, 3982, 631, 3982, 3982, - 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, - 3982, 3982, 3982, 3983, 3983, 628, 3983, 3983, 3983, 3983, + 3981, 3981, 3981, 3982, 711, 3982, 3982, 700, 689, 3982, + 3982, 3982, 3982, 3982, 677, 3982, 3982, 3982, 3982, 3982, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, + 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3984, 3984, - 3983, 3984, 3984, 627, 3984, 3984, 3984, 3984, 3984, 3984, - 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3985, + 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, + 3984, 3984, 3984, 3984, 676, 3984, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, - 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3986, 3986, 3986, + 3985, 3985, 3985, 3985, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, - 3986, 3986, 3986, 625, 3986, 3987, 3987, 3987, 3987, 3987, + 3986, 3986, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, - 3987, 3987, 3987, 3988, 3988, 3988, 3988, 3988, 3988, 3988, - 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 622, - 3988, 3989, 3989, 621, 3989, 3989, 3989, 3989, 3989, 3989, + 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, + 3988, 3988, 3988, 3988, 3988, 3988, 671, 3988, 3989, 3989, + 670, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, - 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3990, + 3989, 3989, 3989, 3989, 3989, 3989, 3990, 3990, 668, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, - 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3991, 3991, 3991, + 3990, 3990, 3990, 3990, 3991, 3991, 661, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, - 3991, 3991, 3991, 3991, 3991, 3992, 3992, 3992, 3992, 3992, + 3991, 3991, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, - 3992, 3992, 3992, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, - 3993, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, - 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3995, + 3993, 3993, 3993, 3993, 3993, 3993, 651, 3993, 3994, 3994, + 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, + 3994, 3994, 3994, 3994, 3994, 3994, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, - 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3996, 541, 3996, - 3996, 537, 536, 3996, 3996, 3996, 3996, 3996, 530, 3996, - 3996, 3996, 3996, 3996, 3996, 3997, 529, 3997, 3997, 513, - 512, 3997, 3997, 3997, 3997, 3997, 506, 3997, 3997, 3997, - 3997, 3997, 3997, 3998, 3998, 3998, 3998, 3998, 3998, 3998, + 3995, 3995, 650, 3995, 3996, 3996, 648, 3996, 3996, 3996, + 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, + 3996, 3996, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, + 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, - 3998, 3999, 504, 3999, 3999, 490, 478, 3999, 3999, 3999, - 3999, 3999, 475, 3999, 3999, 3999, 3999, 3999, 4000, 4000, + 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3999, 3999, + 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, + 3999, 3999, 3999, 3999, 3999, 3999, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, - 4000, 4000, 4000, 4000, 4000, 4000, 4001, 4001, 4001, 4001, + 4000, 4000, 4000, 4000, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, - 4001, 4001, 4001, 4001, 4002, 4002, 4002, 4002, 4002, 4002, + 4001, 4001, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, - 4002, 4002, 4003, 4003, 4003, 4003, 4003, 4003, 4003, 4003, - 4003, 4003, 4003, 4003, 4003, 4003, 4003, 4003, 4003, 4003, - 4004, 453, 4004, 4004, 440, 434, 4004, 4004, 4004, 4004, - 4004, 422, 4004, 4004, 4004, 4004, 4004, 4004, 4005, 4005, + 4003, 644, 4003, 4003, 634, 633, 4003, 4003, 4003, 4003, + 4003, 631, 4003, 4003, 4003, 4003, 4003, 4003, 4004, 628, + 4004, 4004, 627, 625, 4004, 4004, 4004, 4004, 4004, 622, + 4004, 4004, 4004, 4004, 4004, 4004, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, - 4005, 4005, 4005, 4005, 4005, 4005, 4006, 4006, 4006, 4006, + 4005, 4005, 4005, 4005, 4006, 621, 4006, 4006, 541, 537, - 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, 4006, - 4006, 4006, 4006, 4006, 4007, 413, 4007, 4007, 412, 393, - 4007, 4007, 4007, 4007, 4007, 392, 4007, 4007, 4007, 4007, - 4007, 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4008, - 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4009, + 4006, 4006, 4006, 4006, 4006, 536, 4006, 4006, 4006, 4006, + 4006, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, + 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4008, + 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4008, + 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, - 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4010, 4010, 4010, + 4009, 4009, 4009, 4009, 4009, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, - 4010, 4010, 4010, 4010, 4010, 4011, 4011, 4011, 4011, 4011, - 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, - - 4011, 4011, 4011, 4012, 4012, 4012, 4012, 4012, 4012, 4012, - 4012, 4012, 4012, 4012, 4012, 4012, 4012, 4012, 4012, 4012, - 4012, 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4013, - 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4014, - 4014, 4014, 4014, 4014, 4014, 4014, 4014, 4014, 4014, 4014, - 4014, 4014, 4014, 4014, 4014, 4014, 4014, 4015, 4015, 4015, + 4010, 4010, 4010, 4011, 530, 4011, 4011, 529, 513, 4011, + 4011, 4011, 4011, 4011, 512, 4011, 4011, 4011, 4011, 4011, + + 4011, 4012, 4012, 4012, 4012, 4012, 4012, 4012, 4012, 4012, + 4012, 4012, 4012, 4012, 4012, 4012, 4012, 4012, 4012, 4013, + 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4013, + 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4014, 506, 4014, + 4014, 504, 490, 4014, 4014, 4014, 4014, 4014, 478, 4014, + 4014, 4014, 4014, 4014, 4015, 4015, 4015, 4015, 4015, 4015, 4015, 4015, 4015, 4015, 4015, 4015, 4015, 4015, 4015, 4015, - 4015, 4015, 4015, 4015, 4015, 4016, 4016, 4016, 4016, 4016, + 4015, 4015, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, - 4016, 4016, 4016, 4017, 4017, 4017, 4017, 4017, 4017, 4017, - 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, - 4017, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, - 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4019, - 4019, 385, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, - 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4020, 4020, 4020, + + 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4018, 4018, + 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, + 4018, 4018, 4018, 4018, 4018, 4018, 4019, 4019, 4019, 4019, + 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, + 4019, 4019, 4019, 4019, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, 4020, - 4020, 4020, 4020, 4020, 4020, 4021, 4021, 4021, 4021, 4021, + 4020, 4020, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, - 4021, 4021, 4021, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, - - 4022, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, - 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4024, - 383, 4024, 4024, 368, 367, 4024, 4024, 4024, 4024, 4024, - 358, 4024, 4024, 4024, 4024, 4024, 4024, 4025, 357, 4025, - 4025, 347, 317, 4025, 4025, 4025, 4025, 4025, 316, 4025, - 4025, 4025, 4025, 4025, 4025, 4026, 284, 4026, 4026, 268, - 261, 4026, 4026, 4026, 4026, 4026, 259, 4026, 4026, 4026, - 4026, 4026, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, + 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4022, 4023, 4023, + + 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, + 4023, 4023, 4023, 4023, 4023, 4023, 4024, 4024, 4024, 4024, + 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, + 4024, 4024, 4024, 4024, 4025, 4025, 4025, 4025, 4025, 4025, + 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, + 4025, 4025, 4026, 4026, 475, 4026, 4026, 4026, 4026, 4026, + 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, - 4028, 252, 4028, 4028, 234, 229, 4028, 4028, 4028, 4028, + 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4028, 4028, + 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, - 4028, 216, 4028, 4028, 4028, 4028, 4028, 4028, 4029, 4029, + 4028, 4028, 4028, 4028, 4028, 4028, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, - 4029, 4029, 4029, 4029, 4029, 4029, 4030, 194, 4030, 4030, - 182, 175, 4030, 4030, 4030, 4030, 4030, 172, 4030, 4030, - 4030, 4030, 4030, 4030, 4031, 4031, 4031, 4031, 4031, 4031, - 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, - 4031, 4031, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, - 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, 4032, - 4033, 165, 4033, 4033, 164, 163, 4033, 4033, 4033, 4033, - 4033, 154, 4033, 4033, 4033, 4033, 4033, 4034, 4034, 4034, + 4029, 4029, 4029, 4029, 4030, 4030, 4030, 4030, 4030, 4030, + 4030, 4030, 4030, 4030, 4030, 4030, 4030, 4030, 4030, 4030, + 4030, 4030, 4031, 453, 4031, 4031, 440, 434, 4031, 4031, + 4031, 4031, 4031, 422, 4031, 4031, 4031, 4031, 4031, 4031, + 4032, 413, 4032, 4032, 412, 393, 4032, 4032, 4032, 4032, + 4032, 392, 4032, 4032, 4032, 4032, 4032, 4032, 4033, 385, + 4033, 4033, 383, 368, 4033, 4033, 4033, 4033, 4033, 367, + 4033, 4033, 4033, 4033, 4033, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, - 4034, 4034, 4034, 4034, 4034, 4035, 4035, 4035, 4035, 4035, - 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, - 4035, 4035, 4035, 4036, 4036, 4036, 4036, 4036, 4036, 4036, - 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, - 4036, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, - 152, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4038, + 4034, 4034, 4034, 4035, 358, 4035, 4035, 357, 347, 4035, + 4035, 4035, 4035, 4035, 317, 4035, 4035, 4035, 4035, 4035, + 4035, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, + 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4037, + 316, 4037, 4037, 284, 268, 4037, 4037, 4037, 4037, 4037, + 261, 4037, 4037, 4037, 4037, 4037, 4037, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, - 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4039, 4039, 4039, + 4038, 4038, 4038, 4038, 4038, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, - 4039, 4039, 4039, 4039, 4039, 4040, 4040, 4040, 4040, 4040, - 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, - 4040, 4040, 4040, 4041, 4041, 4041, 4041, 4041, 4041, 4041, + 4039, 4039, 4039, 4040, 259, 4040, 4040, 252, 234, 4040, + 4040, 4040, 4040, 4040, 229, 4040, 4040, 4040, 4040, 4040, 4041, 4041, 4041, 4041, 4041, 4041, 4041, 4041, 4041, 4041, - 4041, 4042, 4042, 146, 4042, 4042, 4042, 4042, 4042, 4042, - 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4043, + 4041, 4041, 4041, 4041, 4041, 4041, 4041, 4041, 4042, 4042, + 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, + 4042, 4042, 4042, 4042, 4042, 4042, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, - 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4044, 4044, 4044, - 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, - 4044, 4044, 4044, 4044, 4044, 4045, 4045, 4045, 4045, 4045, + 4043, 4043, 4043, 4043, 4044, 4044, 4044, 4044, 4044, 4044, + 4044, 4044, 4044, 216, 4044, 4044, 4044, 4044, 4044, 4044, + 4044, 4044, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, - 4045, 4045, 4045, 4046, 141, 4046, 4046, 117, 75, 4046, - 4046, 4046, 4046, 4046, 64, 4046, 4046, 4046, 4046, 4046, - 4046, 4047, 63, 4047, 4047, 58, 57, 4047, 4047, 4047, - 4047, 4047, 56, 4047, 4047, 4047, 4047, 4047, 4047, 4048, + 4046, 4046, 4046, 4046, 4046, 4046, 4046, 4046, 4046, 4046, + 4046, 4046, 4046, 4046, 4046, 4046, 4046, 4046, 4047, 4047, + 4047, 4047, 4047, 4047, 4047, 4047, 4047, 4047, 4047, 4047, + 4047, 4047, 4047, 4047, 4047, 4047, 4048, 4048, 4048, 4048, 4048, 4048, 4048, 4048, 4048, 4048, 4048, 4048, 4048, 4048, - 4048, 4048, 4048, 4048, 4048, 4048, 4048, 4049, 55, 4049, - 4049, 54, 53, 4049, 4049, 4049, 4049, 4049, 52, 4049, - 4049, 4049, 4049, 4049, 4049, 4050, 4050, 4050, 4050, 4050, + 4048, 4048, 4048, 4048, 4049, 4049, 194, 4049, 4049, 4049, + 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, 4049, + 4049, 4049, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, 4050, - 4050, 4050, 4050, 4051, 51, 4051, 4051, 26, 25, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, + 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, - 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4053, 4053, - 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, - 4053, 4053, 4053, 4053, 4053, 4053, 4054, 24, 4054, 4054, - 23, 0, 4054, 4054, 4054, 0, 4054, 4054, 4054, 4054, - 4054, 4054, 4054, 4054, 4055, 4055, 4055, 4055, 4055, 4055, - 4055, 0, 4055, 0, 4055, 4055, 4055, 4055, 4055, 4055, - 4055, 4055, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, - - 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, + 4052, 4052, 4052, 4052, 4052, 4052, 4053, 182, 4053, 4053, + 175, 172, 4053, 4053, 4053, 4053, 4053, 165, 4053, 4053, + 4053, 4053, 4053, 4053, 4054, 164, 4054, 4054, 163, 154, + 4054, 4054, 4054, 4054, 4054, 152, 4054, 4054, 4054, 4054, + 4054, 4054, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, + 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, + 4056, 146, 4056, 4056, 141, 117, 4056, 4056, 4056, 4056, + + 4056, 75, 4056, 4056, 4056, 4056, 4056, 4056, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, - 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4058, 4058, - 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, - 4058, 4058, 4058, 4058, 4058, 4058, 4059, 4059, 4059, 4059, + 4057, 4057, 4057, 4057, 4057, 4057, 4058, 64, 4058, 4058, + 63, 58, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, + 4058, 4058, 4058, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, - 4059, 4059, 4059, 4059, 4060, 4060, 0, 4060, 4060, 4060, - 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, - 4060, 4060, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, - 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, - - 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, - 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4063, 0, - 0, 4063, 0, 0, 4063, 4064, 0, 0, 0, 0, - 0, 4064, 4064, 4064, 0, 4064, 4064, 4064, 4064, 4064, - 4064, 4064, 4064, 4065, 4065, 4065, 4065, 4065, 4065, 4065, - 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, - 4065, 4066, 0, 0, 4066, 0, 4066, 4067, 4067, 4067, + 4059, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, + 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4061, + 57, 4061, 4061, 56, 55, 4061, 4061, 4061, 54, 4061, + 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4062, 4062, 4062, + + 4062, 4062, 4062, 4062, 53, 4062, 52, 4062, 4062, 4062, + 4062, 4062, 4062, 4062, 4062, 4063, 4063, 4063, 4063, 4063, + 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 4063, + 4063, 4063, 4063, 4064, 4064, 4064, 4064, 4064, 4064, 4064, + 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, + 4064, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, + 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4066, + 4066, 4066, 4066, 4066, 4066, 4066, 4066, 4066, 4066, 4066, + 4066, 4066, 4066, 4066, 4066, 4066, 4066, 4067, 4067, 51, 4067, 4067, 4067, 4067, 4067, 4067, 4067, 4067, 4067, 4067, - 4067, 4067, 4067, 4067, 4067, 4068, 0, 0, 4068, 4068, - 0, 0, 4068, 0, 4068, 0, 4068, 4068, 4068, 4068, - - 4069, 4069, 4069, 4069, 4070, 4070, 0, 4070, 4070, 4070, - 4070, 4070, 4070, 4070, 4070, 4070, 4070, 4070, 4070, 4070, - 4070, 4070, 4071, 4071, 0, 4071, 4071, 4071, 4071, 4071, - 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, - 4072, 0, 4072, 0, 4072, 4072, 4072, 4072, 4073, 4073, - 4073, 4073, 4073, 4073, 4073, 4073, 4073, 4073, 4073, 4073, - 4073, 4073, 4073, 4073, 4073, 4073, 4074, 4074, 4074, 4074, + + 4067, 4067, 4067, 4067, 4067, 4068, 4068, 4068, 4068, 4068, + 4068, 4068, 4068, 4068, 4068, 4068, 4068, 4068, 4068, 4068, + 4068, 4068, 4068, 4069, 4069, 4069, 4069, 4069, 4069, 4069, + 4069, 4069, 4069, 4069, 4069, 4069, 4069, 4069, 4069, 4069, + 4069, 4070, 26, 25, 4070, 24, 23, 4070, 4071, 0, + 0, 0, 0, 0, 4071, 4071, 4071, 0, 4071, 4071, + 4071, 4071, 4071, 4071, 4071, 4071, 4072, 4072, 4072, 4072, + 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, + 4072, 4072, 4072, 4072, 4073, 0, 0, 4073, 0, 4073, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, - 4074, 4074, 4074, 4074, 4075, 4075, 4075, 4075, 4075, 4075, - 4075, 4075, 4075, 4075, 4075, 4075, 4075, 4075, 4075, 4075, - 4075, 4075, 4076, 4076, 0, 0, 4076, 4076, 4076, 4076, - 4076, 0, 4076, 4076, 4076, 4076, 4076, 4076, 4076, 4076, - 4077, 0, 0, 4077, 4077, 0, 0, 4077, 0, 4077, - 0, 4077, 4077, 4077, 4077, 4078, 4078, 4078, 4078, 4078, + 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4075, 0, + 0, 4075, 4075, 0, 0, 4075, 0, 4075, 0, 4075, + 4075, 4075, 4075, 4076, 4076, 4076, 4076, 4077, 4077, 0, + 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, 4077, + 4077, 4077, 4077, 4077, 4077, 4078, 4078, 0, 4078, 4078, 4078, 4078, 4078, 4078, 4078, 4078, 4078, 4078, 4078, 4078, - 4078, 4078, 4078, 4079, 0, 4079, 4079, 0, 0, 4079, - 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, + 4078, 4078, 4078, 4079, 0, 4079, 0, 4079, 4079, 4079, 4079, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4080, 4081, - 0, 0, 0, 0, 0, 4081, 4081, 4081, 0, 4081, + 4081, 4081, 4081, 4081, 4081, 4081, 4081, 4081, 4081, 4081, - 4081, 4081, 4081, 4081, 4081, 4081, 4081, 4082, 4082, 0, + 4081, 4081, 4081, 4081, 4081, 4081, 4081, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, 4082, - 4082, 4082, 4082, 4082, 4082, 4083, 4083, 0, 4083, 4083, - 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, + 4082, 4082, 4082, 4082, 4082, 4083, 4083, 0, 0, 4083, + 4083, 4083, 4083, 4083, 0, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4084, 0, 0, 4084, 4084, 0, 0, - 4084, 0, 4084, 0, 4084, 4084, 4084, 4084, 4085, 0, - 0, 0, 0, 0, 4085, 4085, 4085, 0, 4085, 4085, - 4085, 4085, 4085, 4085, 4085, 4085, 4086, 4086, 0, 4086, - 4086, 0, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, - 4086, 4086, 4086, 4087, 0, 4087, 0, 4087, 4087, 4087, - - 4087, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, - 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4089, - 0, 4089, 4089, 0, 0, 4089, 4089, 4089, 4089, 4089, - 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4090, 4090, 4090, - 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, - 4090, 4090, 4090, 4090, 4090, 4091, 4091, 4091, 4091, 4091, - 4091, 4091, 4091, 4091, 4091, 4091, 4091, 4091, 4091, 4091, - 4091, 4091, 4091, 4092, 0, 0, 4092, 4092, 0, 0, - 4092, 0, 4092, 0, 4092, 4092, 4092, 4092, 4093, 0, - 4093, 0, 4093, 4093, 4093, 4093, 4094, 0, 0, 4094, - - 4094, 0, 0, 4094, 0, 4094, 0, 4094, 4094, 4094, - 4094, 4095, 4095, 0, 4095, 4095, 4095, 4095, 4095, 4095, - 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4096, 0, - 4096, 4096, 0, 0, 4096, 4096, 4096, 4096, 4096, 4096, - 4096, 4096, 4096, 4096, 4096, 4096, 4097, 4097, 4097, 4097, + 4084, 0, 4084, 0, 4084, 4084, 4084, 4084, 4085, 4085, + 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, + 4085, 4085, 4085, 4085, 4085, 4085, 4086, 0, 4086, 4086, + 0, 0, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, + 4086, 4086, 4086, 4086, 4087, 4087, 4087, 4087, 4087, 4087, + + 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, + 4087, 4087, 4088, 0, 0, 0, 0, 0, 4088, 4088, + 4088, 0, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, + 4089, 4089, 0, 4089, 4089, 4089, 4089, 4089, 4089, 4089, + 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4090, 4090, + 0, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, + 4090, 4090, 4090, 4090, 4090, 4090, 4091, 0, 0, 4091, + 4091, 0, 0, 4091, 0, 4091, 0, 4091, 4091, 4091, + 4091, 4092, 0, 0, 0, 0, 0, 4092, 4092, 4092, + 0, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4093, + + 4093, 0, 4093, 4093, 0, 4093, 4093, 4093, 4093, 4093, + 4093, 4093, 4093, 4093, 4093, 4093, 4094, 0, 4094, 0, + 4094, 4094, 4094, 4094, 4095, 4095, 4095, 4095, 4095, 4095, + 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, + 4095, 4095, 4096, 0, 4096, 4096, 0, 0, 4096, 4096, + 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, - 4097, 4097, 4097, 4097, 4098, 4098, 4098, 4098, 4098, 4098, + 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, - 4098, 4098, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, - 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, + 4098, 4098, 4098, 4098, 4098, 4098, 4099, 0, 0, 4099, - 4100, 0, 4100, 4100, 0, 0, 4100, 4100, 4100, 4100, - 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4101, 4101, - 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, - 4101, 4101, 4101, 4101, 4101, 4101, 4102, 4102, 4102, 4102, + 4099, 0, 0, 4099, 0, 4099, 0, 4099, 4099, 4099, + 4099, 4100, 0, 4100, 0, 4100, 4100, 4100, 4100, 4101, + 0, 0, 4101, 4101, 0, 0, 4101, 0, 4101, 0, + 4101, 4101, 4101, 4101, 4102, 4102, 0, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, - 4102, 4102, 4102, 4102, 4103, 4103, 0, 4103, 4103, 4103, - 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, - 4103, 4103, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, + 4102, 4103, 0, 4103, 4103, 0, 0, 4103, 4103, 4103, + 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, - 4105, 4105, 0, 4105, 4105, 4105, 4105, 4105, 4105, 4105, + 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4105, 4105, 4105, + 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, - 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4106, 4106, + 4105, 4105, 4105, 4105, 4105, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, - 4106, 4106, 4106, 4106, 4106, 4106, 4107, 0, 4107, 0, - 4107, 4107, 4107, 4107, 4108, 0, 4108, 0, 4108, 4108, - 4108, 4108, 4109, 0, 0, 4109, 0, 0, 0, 4109, - 0, 4109, 0, 4109, 4109, 4109, 4109, 4110, 0, 0, - 4110, 4110, 0, 0, 4110, 0, 4110, 0, 4110, 4110, - 4110, 4110, 4111, 0, 0, 4111, 0, 4111, 0, 4111, - 4111, 4111, 4111, 4112, 0, 4112, 0, 4112, 4112, 4112, - 4112, 4113, 0, 4113, 0, 4113, 4113, 4113, 4113, 4114, - - 4114, 0, 4114, 4114, 0, 4114, 4114, 4114, 4114, 4114, - 4114, 4114, 4114, 4114, 4114, 4114, 4115, 0, 0, 4115, - 4115, 0, 0, 4115, 0, 4115, 0, 4115, 4115, 4115, - 4115, 4116, 4116, 0, 4116, 4116, 0, 4116, 4116, 4116, - 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4117, 4117, - 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, - 4117, 4117, 4117, 4117, 4117, 4117, 4118, 4118, 4118, 4118, - 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, - 4118, 4118, 4118, 4118, 4119, 4119, 4119, 4119, 4119, 4119, - 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, - - 4119, 4119, 4120, 0, 4120, 4120, 0, 0, 4120, 4120, - 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, - 4121, 0, 4121, 4121, 0, 0, 4121, 4121, 4121, 4121, - 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4122, 4122, - 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, - 4122, 4122, 4122, 4122, 4122, 4122, 4123, 4123, 4123, 4123, + 4106, 4106, 4106, 4107, 0, 4107, 4107, 0, 0, 4107, + 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, + 4107, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, + 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4109, + 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, + 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4110, 4110, 0, + 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, + 4110, 4110, 4110, 4110, 4110, 4111, 4111, 4111, 4111, 4111, + + 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, + 4111, 4111, 4111, 4112, 4112, 0, 4112, 4112, 4112, 4112, + 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, + 4112, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, + 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4114, + 0, 4114, 0, 4114, 4114, 4114, 4114, 4115, 0, 4115, + 0, 4115, 4115, 4115, 4115, 4116, 0, 0, 4116, 0, + 0, 0, 4116, 0, 4116, 0, 4116, 4116, 4116, 4116, + 4117, 0, 0, 4117, 4117, 0, 0, 4117, 0, 4117, + 0, 4117, 4117, 4117, 4117, 4118, 0, 0, 4118, 0, + + 4118, 0, 4118, 4118, 4118, 4118, 4119, 0, 4119, 0, + 4119, 4119, 4119, 4119, 4120, 0, 4120, 0, 4120, 4120, + 4120, 4120, 4121, 4121, 0, 4121, 4121, 0, 4121, 4121, + 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4122, + 0, 0, 4122, 4122, 0, 0, 4122, 0, 4122, 0, + 4122, 4122, 4122, 4122, 4123, 4123, 0, 4123, 4123, 0, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, - 4123, 4123, 4123, 4123, 4124, 4124, 4124, 4124, 4124, 4124, - 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, - 4124, 4124, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, - + 4123, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, + 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, - 4126, 0, 4126, 4126, 0, 0, 4126, 4126, 4126, 4126, - 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4127, 4127, - 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, - 4127, 4127, 4127, 4127, 4127, 4127, 4128, 4128, 4128, 4128, + + 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4126, 4126, 4126, + 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, + 4126, 4126, 4126, 4126, 4126, 4127, 0, 4127, 4127, 0, + 0, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, + 4127, 4127, 4127, 4128, 0, 4128, 4128, 0, 0, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, - 4128, 4128, 4128, 4128, 4129, 4129, 4129, 4129, 4129, 4129, - 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, - 4129, 4129, 4130, 0, 4130, 4130, 0, 0, 4130, 4130, + 4128, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, + 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, + 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, - 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4132, 4132, + 4131, 4131, 4131, 4131, 4131, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, - 4132, 4132, 4132, 4132, 4132, 4132, 4133, 0, 0, 4133, - 0, 4133, 0, 4133, 4133, 4133, 4133, 4134, 0, 4134, - 0, 4134, 4134, 4134, 4134, 4135, 0, 4135, 0, 4135, - 4135, 4135, 4135, 4136, 0, 4136, 0, 4136, 4136, 4136, - 4136, 4137, 0, 0, 4137, 0, 4137, 0, 4137, 4137, - 4137, 4137, 4138, 4138, 0, 4138, 4138, 0, 4138, 4138, - 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4139, - - 0, 0, 4139, 4139, 0, 0, 4139, 0, 4139, 0, - 4139, 4139, 4139, 4139, 4140, 0, 4140, 0, 4140, 4140, - 4140, 4140, 4141, 0, 4141, 0, 4141, 4141, 4141, 4141, - 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, - 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4143, 4143, - 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, - 4143, 4143, 4143, 4143, 4143, 4143, 4144, 4144, 4144, 4144, - 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, - 4144, 4144, 4144, 4144, 4145, 4145, 4145, 4145, 4145, 4145, - 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, - - 4145, 4145, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, - 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, - 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, - 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4148, 0, - 4148, 4148, 0, 0, 4148, 4148, 4148, 4148, 4148, 4148, - 4148, 4148, 4148, 4148, 4148, 4148, 4149, 4149, 4149, 4149, + 4132, 4132, 4132, 4133, 0, 4133, 4133, 0, 0, 4133, + 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, + 4133, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, + 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4135, + 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, + 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4136, 4136, 4136, + 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, + + 4136, 4136, 4136, 4136, 4136, 4137, 0, 4137, 4137, 0, + 0, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, + 4137, 4137, 4137, 4138, 4138, 4138, 4138, 4138, 4138, 4138, + 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, + 4138, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, + 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4140, + 0, 0, 4140, 0, 4140, 0, 4140, 4140, 4140, 4140, + 4141, 0, 4141, 0, 4141, 4141, 4141, 4141, 4142, 0, + 4142, 0, 4142, 4142, 4142, 4142, 4143, 0, 4143, 0, + 4143, 4143, 4143, 4143, 4144, 0, 0, 4144, 0, 4144, + + 0, 4144, 4144, 4144, 4144, 4145, 4145, 0, 4145, 4145, + 0, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, + 4145, 4145, 4146, 0, 0, 4146, 4146, 0, 0, 4146, + 0, 4146, 0, 4146, 4146, 4146, 4146, 4147, 0, 4147, + 0, 4147, 4147, 4147, 4147, 4148, 0, 4148, 0, 4148, + 4148, 4148, 4148, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, - 4149, 4149, 4149, 4149, 4150, 4150, 4150, 4150, 4150, 4150, - 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, - 4150, 4150, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, - + 4149, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, + 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, + + 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, - 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4153, 4153, - 0, 4153, 4153, 0, 4153, 4153, 4153, 4153, 4153, 4153, - 4153, 4153, 4153, 4153, 4153, 4154, 0, 0, 4154, 4154, - 0, 0, 4154, 0, 4154, 0, 4154, 4154, 4154, 4154, - 4155, 4155, 4155, 4155, 0, 4155, 4155, 4155, 4155, 4155, - 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4156, 0, - 0, 0, 0, 0, 4156, 4156, 4156, 0, 4156, 4156, - 4156, 4156, 4156, 4156, 4156, 4156, 4157, 4157, 4157, 4157, + 4152, 4152, 4152, 4152, 4152, 4153, 4153, 4153, 4153, 4153, + 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, + 4153, 4153, 4153, 4154, 4154, 4154, 4154, 4154, 4154, 4154, + 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, + 4154, 4155, 0, 4155, 4155, 0, 0, 4155, 4155, 4155, + 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4156, + 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, + 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, - 4157, 4157, 4157, 4157, 4158, 0, 4158, 0, 4158, 4158, - 4158, 4158, 4159, 4159, 0, 4159, 4159, 0, 4159, 4159, - 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4160, - 0, 0, 4160, 4160, 0, 0, 0, 0, 0, 0, - 4160, 4161, 4161, 0, 0, 0, 4161, 4161, 4161, 4161, - 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4162, - 4162, 0, 4162, 4162, 0, 4162, 4162, 4162, 4162, 4162, - 4162, 4162, 4162, 4162, 4162, 4162, 4163, 4163, 0, 4163, - 4163, 0, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, - - 4163, 4163, 4163, 4164, 4164, 0, 4164, 4164, 4164, 4164, + 4157, 4157, 4157, 4157, 4157, 4158, 4158, 4158, 4158, 4158, + 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, + 4158, 4158, 4158, 4159, 4159, 4159, 4159, 4159, 4159, 4159, + 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, + 4159, 4160, 4160, 0, 4160, 4160, 0, 4160, 4160, 4160, + 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4161, 0, + 0, 4161, 4161, 0, 0, 4161, 0, 4161, 0, 4161, + 4161, 4161, 4161, 4162, 4162, 4162, 4162, 0, 4162, 4162, + 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, + + 4162, 4163, 0, 0, 0, 0, 0, 4163, 4163, 4163, + 0, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, - 4165, 4165, 0, 4165, 4165, 4165, 4165, 4165, 4165, 4165, - 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4166, 0, 4166, - 0, 4166, 0, 4166, 4166, 4166, 4166, 4167, 4167, 0, - 4167, 4167, 0, 4167, 4167, 4167, 4167, 4167, 4167, 4167, - 4167, 4167, 4167, 4167, 4168, 4168, 0, 4168, 4168, 0, + 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4165, 0, 4165, + 0, 4165, 4165, 4165, 4165, 4166, 4166, 0, 4166, 4166, + 0, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, + 4166, 4166, 4167, 0, 0, 4167, 4167, 0, 0, 0, + 0, 0, 0, 4167, 4168, 4168, 0, 0, 0, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, - 4168, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, + 4168, 4168, 4169, 4169, 0, 4169, 4169, 0, 4169, 4169, + 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4170, + 4170, 0, 4170, 4170, 0, 4170, 4170, 4170, 4170, 4170, + 4170, 4170, 4170, 4170, 4170, 4170, 4171, 4171, 0, 4171, + 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, + 4171, 4171, 4171, 4172, 4172, 0, 4172, 4172, 4172, 4172, + 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, + 4173, 0, 4173, 0, 4173, 0, 4173, 4173, 4173, 4173, + 4174, 4174, 0, 4174, 4174, 0, 4174, 4174, 4174, 4174, + 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4175, 4175, 0, + 4175, 4175, 0, 4175, 4175, 4175, 4175, 4175, 4175, 4175, + + 4175, 4175, 4175, 4175, 4176, 4176, 4176, 4176, 4176, 4176, + 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, + 4176, 4176, 4177, 0, 4177, 0, 4177, 0, 4177, 4177, + 4177, 4177, 4178, 4178, 0, 4178, 4178, 4178, 4178, 4178, + 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, + 4179, 4179, 0, 4179, 4179, 0, 4179, 4179, 4179, 4179, + 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4180, 4180, 0, + 0, 4180, 4180, 4180, 4180, 4180, 0, 4180, 4180, 4180, + 4180, 4180, 4180, 4180, 4180, 4181, 4181, 0, 4181, 4181, + 0, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, + + 4181, 4181, 4182, 0, 0, 0, 0, 0, 4182, 4182, + 4182, 0, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, + 4183, 0, 0, 0, 0, 0, 4183, 4183, 4183, 0, + 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4184, 0, + 0, 4184, 4184, 0, 0, 4184, 0, 4184, 0, 4184, + 4184, 4184, 4184, 4185, 4185, 0, 4185, 4185, 0, 4185, + 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, + 4186, 0, 0, 0, 0, 0, 4186, 4186, 4186, 0, + 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4187, 0, + 4187, 0, 4187, 4187, 4187, 4187, 4188, 4188, 0, 4188, + + 4188, 0, 4188, 4188, 4188, 4188, 4188, 4188, 4188, 4188, + 4188, 4188, 4188, 4189, 4189, 4189, 4189, 4189, 4189, 4189, + 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, + 4189, 4190, 4190, 0, 4190, 4190, 0, 4190, 4190, 4190, + 4190, 4190, 4190, 4190, 4190, 4190, 4190, 4190, 4191, 4191, + 0, 0, 4191, 4191, 4191, 4191, 4191, 0, 4191, 4191, + 4191, 4191, 4191, 4191, 4191, 4191, 4192, 4192, 0, 0, + 4192, 4192, 4192, 4192, 4192, 0, 4192, 4192, 4192, 4192, + 4192, 4192, 4192, 4192, 4193, 4193, 0, 4193, 4193, 0, + 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, + + 4193, 4194, 4194, 0, 4194, 4194, 0, 4194, 4194, 4194, + 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4195, 4195, + 0, 0, 4195, 4195, 4195, 4195, 4195, 0, 4195, 4195, + 4195, 4195, 4195, 4195, 4195, 4195, 4196, 4196, 0, 0, + 4196, 4196, 4196, 4196, 4196, 0, 4196, 4196, 4196, 4196, + 4196, 4196, 4196, 4196, 4197, 0, 4197, 0, 4197, 0, + 4197, 4197, 4197, 4197, 4198, 4198, 0, 4198, 4198, 4198, + 4198, 4198, 4198, 4198, 4198, 4198, 4198, 4198, 4198, 4198, + 4198, 4199, 4199, 0, 4199, 4199, 0, 4199, 4199, 4199, + 4199, 4199, 4199, 4199, 4199, 4199, 4199, 4199, 4200, 4200, + + 0, 4200, 4200, 0, 4200, 4200, 4200, 4200, 4200, 4200, + 4200, 4200, 4200, 4200, 4200, 4201, 0, 4201, 0, 4201, + 0, 4201, 4201, 4201, 4201, 4202, 0, 0, 0, 0, + 0, 4202, 4202, 4202, 0, 4202, 4202, 4202, 4202, 4202, + 4202, 4202, 4202, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, - 0, 4170, 0, 4170, 0, 4170, 4170, 4170, 4170, 4171, - 4171, 0, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, - 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4172, 4172, 0, - 4172, 4172, 0, 4172, 4172, 4172, 4172, 4172, 4172, 4172, - 4172, 4172, 4172, 4172, 4173, 4173, 0, 0, 4173, 4173, - 4173, 4173, 4173, 0, 4173, 4173, 4173, 4173, 4173, 4173, - 4173, 4173, 4174, 4174, 0, 4174, 4174, 0, 4174, 4174, - 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4175, - 0, 0, 0, 0, 0, 4175, 4175, 4175, 0, 4175, - 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4176, 0, 0, - - 0, 0, 0, 4176, 4176, 4176, 0, 4176, 4176, 4176, - 4176, 4176, 4176, 4176, 4176, 4177, 0, 0, 4177, 4177, - 0, 0, 4177, 0, 4177, 0, 4177, 4177, 4177, 4177, - 4178, 4178, 0, 4178, 4178, 0, 4178, 4178, 4178, 4178, - 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4179, 0, 0, - 0, 0, 0, 4179, 4179, 4179, 0, 4179, 4179, 4179, - 4179, 4179, 4179, 4179, 4179, 4180, 0, 4180, 0, 4180, - 4180, 4180, 4180, 4181, 4181, 0, 4181, 4181, 0, 4181, - 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, - 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, - - 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4183, 4183, - 0, 4183, 4183, 0, 4183, 4183, 4183, 4183, 4183, 4183, - 4183, 4183, 4183, 4183, 4183, 4184, 4184, 0, 0, 4184, - 4184, 4184, 4184, 4184, 0, 4184, 4184, 4184, 4184, 4184, - 4184, 4184, 4184, 4185, 4185, 0, 0, 4185, 4185, 4185, - 4185, 4185, 0, 4185, 4185, 4185, 4185, 4185, 4185, 4185, - 4185, 4186, 4186, 0, 4186, 4186, 0, 4186, 4186, 4186, - 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4187, 4187, - 0, 4187, 4187, 0, 4187, 4187, 4187, 4187, 4187, 4187, - 4187, 4187, 4187, 4187, 4187, 4188, 4188, 0, 0, 4188, - - 4188, 4188, 4188, 4188, 0, 4188, 4188, 4188, 4188, 4188, - 4188, 4188, 4188, 4189, 4189, 0, 0, 4189, 4189, 4189, - 4189, 4189, 0, 4189, 4189, 4189, 4189, 4189, 4189, 4189, - 4189, 4190, 0, 4190, 0, 4190, 0, 4190, 4190, 4190, - 4190, 4191, 4191, 0, 4191, 4191, 4191, 4191, 4191, 4191, - 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4192, 4192, - 0, 4192, 4192, 0, 4192, 4192, 4192, 4192, 4192, 4192, - 4192, 4192, 4192, 4192, 4192, 4193, 4193, 0, 4193, 4193, - 0, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, - 4193, 4193, 4194, 0, 4194, 0, 4194, 0, 4194, 4194, - - 4194, 4194, 4195, 0, 0, 0, 0, 0, 4195, 4195, - 4195, 0, 4195, 4195, 4195, 4195, 4195, 4195, 4195, 4195, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910, - - 3910, 3910, 3910, 3910, 3910, 3910, 3910, 3910 + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, 3917, + 3917 } ; static yy_state_type yy_last_accepting_state; @@ -4993,7 +5017,7 @@ static char *yy_last_accepting_cpos; extern int yy_flex_debug; int yy_flex_debug = 1; -static const flex_int16_t yy_rule_linenum[536] = +static yyconst flex_int16_t yy_rule_linenum[537] = { 0, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, @@ -5022,10 +5046,10 @@ static const flex_int16_t yy_rule_linenum[536] = 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, - 838, 839, 840, 841, 842, 843, 845, 846, 847, 849, - 850, 851, 852, 853, 854, 855, 856, 857, 858, 861, - 865, 866, 867, 868, 869, 873, 874, 875, 876, 877, - 878, 882, 883, 884, 885, 890, 891, 892, 893, 894, + 838, 839, 840, 841, 842, 843, 844, 846, 847, 848, + 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, + 862, 866, 867, 868, 869, 870, 874, 875, 876, 877, + 878, 879, 883, 884, 885, 886, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, @@ -5039,21 +5063,21 @@ static const flex_int16_t yy_rule_linenum[536] = 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, - 1005, 1006, 1007, 1008, 1009, 1010, 1013, 1014, 1015, 1016, - 1017, 1018, 1019, 1020, 1021, 1025, 1026, 1027, 1028, 1029, - 1030, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, - 1045, 1046, 1047, 1048, 1049, 1054, 1055, 1056, 1057, 1058, - 1060, 1061, 1063, 1064, 1070, 1071, 1072, 1073, 1074, 1075, - 1078, 1079, 1080, 1081, 1082, 1083, 1087, 1088, 1089, 1090, + 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1014, 1015, 1016, + 1017, 1018, 1019, 1020, 1021, 1022, 1026, 1027, 1028, 1029, + 1030, 1031, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, + 1044, 1046, 1047, 1048, 1049, 1050, 1055, 1056, 1057, 1058, + 1059, 1061, 1062, 1064, 1065, 1071, 1072, 1073, 1074, 1075, + 1076, 1079, 1080, 1081, 1082, 1083, 1084, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, - 1111, 1112, 1113, 1114, 1115, 1117, 1118, 1123, 1127, 1131, - 1132, 1136, 1137, 1140, 1141, 1145, 1146, 1150, 1151, 1155, + 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1124, 1128, + 1132, 1133, 1137, 1138, 1141, 1142, 1146, 1147, 1151, 1152, - 1156, 1161, 1163, 1164, 1165, 1166, 1168, 1169, 1170, 1171, - 1173, 1174, 1175, 1176, 1178, 1180, 1181, 1183, 1184, 1185, - 1186, 1188, 1193, 1194, 1195, 1199, 1200, 1201, 1206, 1208, - 1209, 1210, 1235, 1261, 1289 + 1156, 1157, 1162, 1164, 1165, 1166, 1167, 1169, 1170, 1171, + 1172, 1174, 1175, 1176, 1177, 1179, 1181, 1182, 1184, 1185, + 1186, 1187, 1189, 1194, 1195, 1196, 1200, 1201, 1202, 1207, + 1209, 1210, 1211, 1236, 1262, 1290 } ; /* The intent behind this definition is that it'll catch @@ -5139,15 +5163,38 @@ static std::stack YY_PREVIOUS_STATE; #define BEGIN_PREVIOUS() { BEGIN(YY_PREVIOUS_STATE.top()); YY_PREVIOUS_STATE.pop(); } // The location of the current token. -#line 5142 "seclang-scanner.cc" #define YY_NO_INPUT 1 -#line 489 "seclang-scanner.ll" + + + + + + + + + + + + + + + + + + + + + + + + + +#line 490 "seclang-scanner.ll" // Code run each time a pattern is matched. # define YY_USER_ACTION driver.loc.back()->columns (yyleng); -#line 5149 "seclang-scanner.cc" -#line 5150 "seclang-scanner.cc" +#line 5198 "seclang-scanner.cc" #define INITIAL 0 #define EXPECTING_ACTION_PREDICATE_VARIABLE 1 @@ -5207,7 +5254,7 @@ static std::stack YY_PREVIOUS_STATE; /* %if-reentrant */ /* %if-c-only */ -static int yy_init_globals ( void ); +static int yy_init_globals (void ); /* %endif */ /* %if-reentrant */ @@ -5217,31 +5264,31 @@ static int yy_init_globals ( void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ -int yylex_destroy ( void ); +int yylex_destroy (void ); -int yyget_debug ( void ); +int yyget_debug (void ); -void yyset_debug ( int debug_flag ); +void yyset_debug (int debug_flag ); -YY_EXTRA_TYPE yyget_extra ( void ); +YY_EXTRA_TYPE yyget_extra (void ); -void yyset_extra ( YY_EXTRA_TYPE user_defined ); +void yyset_extra (YY_EXTRA_TYPE user_defined ); -FILE *yyget_in ( void ); +FILE *yyget_in (void ); -void yyset_in ( FILE * _in_str ); +void yyset_in (FILE * _in_str ); -FILE *yyget_out ( void ); +FILE *yyget_out (void ); -void yyset_out ( FILE * _out_str ); +void yyset_out (FILE * _out_str ); - int yyget_leng ( void ); + int yyget_leng (void ); -char *yyget_text ( void ); +char *yyget_text (void ); -int yyget_lineno ( void ); +int yyget_lineno (void ); -void yyset_lineno ( int _line_number ); +void yyset_lineno (int _line_number ); /* %if-bison-bridge */ /* %endif */ @@ -5252,13 +5299,14 @@ void yyset_lineno ( int _line_number ); #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus -extern "C" int yywrap ( void ); +extern "C" int yywrap (void ); #else -extern int yywrap ( void ); +extern int yywrap (void ); #endif #endif /* %not-for-header */ + #ifndef YY_NO_UNPUT #endif @@ -5267,20 +5315,21 @@ extern int yywrap ( void ); /* %endif */ #ifndef yytext_ptr -static void yy_flex_strncpy ( char *, const char *, int ); +static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen ( const char * ); +static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT /* %if-c-only Standard (non-C++) definition */ /* %not-for-header */ + #ifdef __cplusplus -static int yyinput ( void ); +static int yyinput (void ); #else -static int input ( void ); +static int input (void ); #endif /* %ok-for-header */ @@ -5322,7 +5371,7 @@ static int input ( void ); if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ - int n; \ + size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ @@ -5335,7 +5384,7 @@ static int input ( void ); else \ { \ errno=0; \ - while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ + while ( (result = (int) fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ @@ -5376,9 +5425,11 @@ static int input ( void ); /* %if-tables-serialization structures and prototypes */ /* %not-for-header */ + /* %ok-for-header */ /* %not-for-header */ + /* %tables-yydmap generated elements */ /* %endif */ /* end tables serialization structures and prototypes */ @@ -5417,6 +5468,7 @@ extern int yylex (void); YY_USER_ACTION /* %not-for-header */ + /** The main scanner function which does all the work. */ YY_DECL @@ -5453,23 +5505,22 @@ YY_DECL if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = - yy_create_buffer( yyin, YY_BUF_SIZE ); + yy_create_buffer(yyin,YY_BUF_SIZE ); } - yy_load_buffer_state( ); + yy_load_buffer_state( ); } { /* %% [7.0] user's declarations go here */ -#line 494 "seclang-scanner.ll" +#line 495 "seclang-scanner.ll" -#line 498 "seclang-scanner.ll" // Code run each time yylex is called. driver.loc.back()->step(); -#line 5472 "seclang-scanner.cc" +#line 5524 "seclang-scanner.cc" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { @@ -5498,13 +5549,13 @@ YY_DECL while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 3911 ) - yy_c = yy_meta[yy_c]; + if ( yy_current_state >= 3918 ) + yy_c = yy_meta[(unsigned int) yy_c]; } - yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; ++yy_cp; } - while ( yy_current_state != 3910 ); + while ( yy_current_state != 3917 ); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); @@ -5523,13 +5574,13 @@ YY_DECL { if ( yy_act == 0 ) fprintf( stderr, "--scanner backing up\n" ); - else if ( yy_act < 536 ) + else if ( yy_act < 537 ) fprintf( stderr, "--accepting rule at line %ld (\"%s\")\n", (long)yy_rule_linenum[yy_act], yytext ); - else if ( yy_act == 536 ) + else if ( yy_act == 537 ) fprintf( stderr, "--accepting default rule (\"%s\")\n", yytext ); - else if ( yy_act == 537 ) + else if ( yy_act == 538 ) fprintf( stderr, "--(end of buffer or a NUL)\n" ); else fprintf( stderr, "--EOF (start condition %d)\n", YY_START ); @@ -6524,52 +6575,52 @@ YY_RULE_SETUP case 180: YY_RULE_SETUP #line 767 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_ARGS_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 181: YY_RULE_SETUP #line 768 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_REQ_BODY_LIMIT_ACTION(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 182: YY_RULE_SETUP #line 769 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_REQ_BODY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_REQ_BODY_LIMIT_ACTION(yytext, *driver.loc.back()); } YY_BREAK case 183: YY_RULE_SETUP #line 770 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_REQ_BODY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 184: YY_RULE_SETUP #line 771 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_REQ_BODY(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 185: YY_RULE_SETUP #line 772 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_RES_BODY_LIMIT_ACTION(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_REQ_BODY(yytext, *driver.loc.back()); } YY_BREAK case 186: YY_RULE_SETUP #line 773 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_RES_BODY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_RES_BODY_LIMIT_ACTION(yytext, *driver.loc.back()); } YY_BREAK case 187: YY_RULE_SETUP #line 774 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_RES_BODY(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_RES_BODY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 188: YY_RULE_SETUP #line 775 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_RULE_ENG(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_RES_BODY(yytext, *driver.loc.back()); } YY_BREAK case 189: YY_RULE_SETUP #line 776 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_SEC_MARKER(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_RULE_ENG(yytext, *driver.loc.back()); } YY_BREAK case 190: YY_RULE_SETUP @@ -6579,17 +6630,17 @@ YY_RULE_SETUP case 191: YY_RULE_SETUP #line 778 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_UNICODE_MAP_FILE(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_SEC_MARKER(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 192: YY_RULE_SETUP #line 779 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_RULE_REMOVE_BY_ID(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONFIG_DIR_UNICODE_MAP_FILE(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 193: YY_RULE_SETUP #line 780 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_RULE_REMOVE_BY_MSG(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONFIG_SEC_RULE_REMOVE_BY_ID(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 194: YY_RULE_SETUP @@ -6599,7 +6650,7 @@ YY_RULE_SETUP case 195: YY_RULE_SETUP #line 782 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_RULE_REMOVE_BY_TAG(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONFIG_SEC_RULE_REMOVE_BY_MSG(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 196: YY_RULE_SETUP @@ -6609,7 +6660,7 @@ YY_RULE_SETUP case 197: YY_RULE_SETUP #line 784 "seclang-scanner.ll" -{ state_variable_from = 1; BEGIN(TRANSACTION_TO_VARIABLE); return p::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONFIG_SEC_RULE_REMOVE_BY_TAG(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 198: YY_RULE_SETUP @@ -6619,7 +6670,7 @@ YY_RULE_SETUP case 199: YY_RULE_SETUP #line 786 "seclang-scanner.ll" -{ state_variable_from = 1; BEGIN(TRANSACTION_TO_VARIABLE); return p::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ state_variable_from = 1; BEGIN(TRANSACTION_TO_VARIABLE); return p::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_TAG(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 200: YY_RULE_SETUP @@ -6629,7 +6680,7 @@ YY_RULE_SETUP case 201: YY_RULE_SETUP #line 788 "seclang-scanner.ll" -{ state_variable_from = 1; BEGIN(TRANSACTION_TO_VARIABLE); return p::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ state_variable_from = 1; BEGIN(TRANSACTION_TO_VARIABLE); return p::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_MSG(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 202: YY_RULE_SETUP @@ -6639,7 +6690,7 @@ YY_RULE_SETUP case 203: YY_RULE_SETUP #line 790 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ state_variable_from = 1; BEGIN(TRANSACTION_TO_VARIABLE); return p::make_CONFIG_SEC_RULE_UPDATE_TARGET_BY_ID(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 204: YY_RULE_SETUP @@ -6649,17 +6700,17 @@ YY_RULE_SETUP case 205: YY_RULE_SETUP #line 792 "seclang-scanner.ll" -{ return p::make_CONFIG_UPDLOAD_KEEP_FILES(yytext, *driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_CONFIG_SEC_RULE_UPDATE_ACTION_BY_ID(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 206: YY_RULE_SETUP #line 793 "seclang-scanner.ll" -{ return p::make_CONFIG_UPDLOAD_SAVE_TMP_FILES(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_UPDLOAD_KEEP_FILES(yytext, *driver.loc.back()); } YY_BREAK case 207: YY_RULE_SETUP #line 794 "seclang-scanner.ll" -{ return p::make_CONFIG_UPLOAD_DIR(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONFIG_UPDLOAD_SAVE_TMP_FILES(yytext, *driver.loc.back()); } YY_BREAK case 208: YY_RULE_SETUP @@ -6669,97 +6720,97 @@ YY_RULE_SETUP case 209: YY_RULE_SETUP #line 796 "seclang-scanner.ll" -{ return p::make_CONFIG_UPLOAD_FILE_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_UPLOAD_DIR(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 210: YY_RULE_SETUP #line 797 "seclang-scanner.ll" -{ return p::make_CONFIG_UPLOAD_FILE_MODE(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_UPLOAD_FILE_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 211: YY_RULE_SETUP #line 798 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_ABORT(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_UPLOAD_FILE_MODE(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 212: YY_RULE_SETUP #line 799 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_DETC(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_ABORT(yytext, *driver.loc.back()); } YY_BREAK case 213: YY_RULE_SETUP #line 800 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_HTTPS(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_DETC(yytext, *driver.loc.back()); } YY_BREAK case 214: YY_RULE_SETUP #line 801 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_OFF(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_HTTPS(yytext, *driver.loc.back()); } YY_BREAK case 215: YY_RULE_SETUP #line 802 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_ON(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_OFF(yytext, *driver.loc.back()); } YY_BREAK case 216: YY_RULE_SETUP #line 803 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_PARALLEL(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_ON(yytext, *driver.loc.back()); } YY_BREAK case 217: YY_RULE_SETUP #line 804 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_PROCESS_PARTIAL(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_PARALLEL(yytext, *driver.loc.back()); } YY_BREAK case 218: YY_RULE_SETUP #line 805 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_REJECT(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_PROCESS_PARTIAL(yytext, *driver.loc.back()); } YY_BREAK case 219: YY_RULE_SETUP #line 806 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_RELEVANT_ONLY(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_REJECT(yytext, *driver.loc.back()); } YY_BREAK case 220: YY_RULE_SETUP #line 807 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_SERIAL(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_RELEVANT_ONLY(yytext, *driver.loc.back()); } YY_BREAK case 221: YY_RULE_SETUP #line 808 "seclang-scanner.ll" -{ return p::make_CONFIG_VALUE_WARN(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_SERIAL(yytext, *driver.loc.back()); } YY_BREAK case 222: YY_RULE_SETUP #line 809 "seclang-scanner.ll" -{ return p::make_CONFIG_XML_EXTERNAL_ENTITY(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_VALUE_WARN(yytext, *driver.loc.back()); } YY_BREAK case 223: YY_RULE_SETUP #line 810 "seclang-scanner.ll" -{ return p::make_CONGIG_DIR_RESPONSE_BODY_MP(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_XML_EXTERNAL_ENTITY(yytext, *driver.loc.back()); } YY_BREAK case 224: YY_RULE_SETUP #line 811 "seclang-scanner.ll" -{ return p::make_CONGIG_DIR_RESPONSE_BODY_MP_CLEAR(*driver.loc.back()); } +{ return p::make_CONGIG_DIR_RESPONSE_BODY_MP(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 225: YY_RULE_SETUP #line 812 "seclang-scanner.ll" -{ return p::make_CONGIG_DIR_SEC_ARG_SEP(yytext, *driver.loc.back()); } +{ return p::make_CONGIG_DIR_RESPONSE_BODY_MP_CLEAR(*driver.loc.back()); } YY_BREAK case 226: YY_RULE_SETUP #line 813 "seclang-scanner.ll" -{ return p::make_CONGIG_DIR_SEC_COOKIE_FORMAT(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONGIG_DIR_SEC_ARG_SEP(yytext, *driver.loc.back()); } YY_BREAK case 227: YY_RULE_SETUP #line 814 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_COOKIEV0_SEPARATOR(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONGIG_DIR_SEC_COOKIE_FORMAT(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 228: YY_RULE_SETUP @@ -6769,7 +6820,7 @@ YY_RULE_SETUP case 229: YY_RULE_SETUP #line 816 "seclang-scanner.ll" -{ return p::make_CONGIG_DIR_SEC_DATA_DIR(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONFIG_SEC_COOKIEV0_SEPARATOR(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 230: YY_RULE_SETUP @@ -6779,12 +6830,12 @@ YY_RULE_SETUP case 231: YY_RULE_SETUP #line 818 "seclang-scanner.ll" -{ return p::make_CONGIG_DIR_SEC_STATUS_ENGINE(yytext, *driver.loc.back()); } +{ return p::make_CONGIG_DIR_SEC_DATA_DIR(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 232: YY_RULE_SETUP #line 819 "seclang-scanner.ll" -{ return p::make_CONGIG_DIR_SEC_TMP_DIR(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONGIG_DIR_SEC_STATUS_ENGINE(yytext, *driver.loc.back()); } YY_BREAK case 233: YY_RULE_SETUP @@ -6794,7 +6845,7 @@ YY_RULE_SETUP case 234: YY_RULE_SETUP #line 821 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_DIRECTIVE_TO_ACTIONS); return p::make_DIRECTIVE_SECRULESCRIPT(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONGIG_DIR_SEC_TMP_DIR(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 235: YY_RULE_SETUP @@ -6804,12 +6855,12 @@ YY_RULE_SETUP case 236: YY_RULE_SETUP #line 823 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_CACHE_TRANSFORMATIONS(yytext, *driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_DIRECTIVE_TO_ACTIONS); return p::make_DIRECTIVE_SECRULESCRIPT(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 237: YY_RULE_SETUP #line 824 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_CHROOT_DIR(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONFIG_SEC_CACHE_TRANSFORMATIONS(yytext, *driver.loc.back()); } YY_BREAK case 238: YY_RULE_SETUP @@ -6819,37 +6870,37 @@ YY_RULE_SETUP case 239: YY_RULE_SETUP #line 826 "seclang-scanner.ll" -{ return p::make_CONFIG_CONN_ENGINE(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_CHROOT_DIR(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 240: YY_RULE_SETUP #line 827 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_HASH_ENGINE(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_CONN_ENGINE(yytext, *driver.loc.back()); } YY_BREAK case 241: YY_RULE_SETUP #line 828 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_HASH_KEY(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_HASH_ENGINE(yytext, *driver.loc.back()); } YY_BREAK case 242: YY_RULE_SETUP #line 829 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_HASH_PARAM(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_HASH_KEY(yytext, *driver.loc.back()); } YY_BREAK case 243: YY_RULE_SETUP #line 830 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_HASH_METHOD_RX(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_HASH_PARAM(yytext, *driver.loc.back()); } YY_BREAK case 244: YY_RULE_SETUP #line 831 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_HASH_METHOD_PM(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_HASH_METHOD_RX(yytext, *driver.loc.back()); } YY_BREAK case 245: YY_RULE_SETUP #line 832 "seclang-scanner.ll" -{ return p::make_CONFIG_DIR_GSB_DB(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } +{ return p::make_CONFIG_SEC_HASH_METHOD_PM(yytext, *driver.loc.back()); } YY_BREAK case 246: YY_RULE_SETUP @@ -6859,134 +6910,134 @@ YY_RULE_SETUP case 247: YY_RULE_SETUP #line 834 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_GUARDIAN_LOG(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_DIR_GSB_DB(parserSanitizer(strchr(yytext, ' ') + 1), *driver.loc.back()); } YY_BREAK case 248: YY_RULE_SETUP #line 835 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_INTERCEPT_ON_ERROR(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_GUARDIAN_LOG(yytext, *driver.loc.back()); } YY_BREAK case 249: YY_RULE_SETUP #line 836 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_CONN_R_STATE_LIMIT(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_INTERCEPT_ON_ERROR(yytext, *driver.loc.back()); } YY_BREAK case 250: YY_RULE_SETUP #line 837 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_CONN_W_STATE_LIMIT(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_CONN_R_STATE_LIMIT(yytext, *driver.loc.back()); } YY_BREAK case 251: YY_RULE_SETUP #line 838 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_SENSOR_ID(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_CONN_W_STATE_LIMIT(yytext, *driver.loc.back()); } YY_BREAK case 252: YY_RULE_SETUP #line 839 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_RULE_INHERITANCE(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_SENSOR_ID(yytext, *driver.loc.back()); } YY_BREAK case 253: YY_RULE_SETUP #line 840 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_RULE_PERF_TIME(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_RULE_INHERITANCE(yytext, *driver.loc.back()); } YY_BREAK case 254: YY_RULE_SETUP #line 841 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_STREAM_IN_BODY_INSPECTION(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_RULE_PERF_TIME(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 255: YY_RULE_SETUP #line 842 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_STREAM_OUT_BODY_INSPECTION(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_STREAM_IN_BODY_INSPECTION(yytext, *driver.loc.back()); } YY_BREAK case 256: YY_RULE_SETUP #line 843 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_DISABLE_BACKEND_COMPRESS(yytext, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_STREAM_OUT_BODY_INSPECTION(yytext, *driver.loc.back()); } YY_BREAK case 257: YY_RULE_SETUP -#line 845 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_TO_VARIABLE); return p::make_DIRECTIVE(yytext, *driver.loc.back()); } +#line 844 "seclang-scanner.ll" +{ return p::make_CONFIG_SEC_DISABLE_BACKEND_COMPRESS(yytext, *driver.loc.back()); } YY_BREAK case 258: YY_RULE_SETUP #line 846 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_DIRECTIVE_TO_ACTIONS); return p::make_CONFIG_DIR_SEC_DEFAULT_ACTION(yytext, *driver.loc.back()); } +{ BEGIN(TRANSACTION_TO_VARIABLE); return p::make_DIRECTIVE(yytext, *driver.loc.back()); } YY_BREAK case 259: YY_RULE_SETUP #line 847 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_DIRECTIVE_TO_ACTIONS); return p::make_CONFIG_DIR_SEC_ACTION(yytext, *driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_DIRECTIVE_TO_ACTIONS); return p::make_CONFIG_DIR_SEC_DEFAULT_ACTION(yytext, *driver.loc.back()); } YY_BREAK case 260: YY_RULE_SETUP -#line 849 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION(yytext, *driver.loc.back()); } +#line 848 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_DIRECTIVE_TO_ACTIONS); return p::make_CONFIG_DIR_SEC_ACTION(yytext, *driver.loc.back()); } YY_BREAK case 261: YY_RULE_SETUP #line 850 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_COLLECTION_TIMEOUT(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION(yytext, *driver.loc.back()); } YY_BREAK case 262: YY_RULE_SETUP #line 851 "seclang-scanner.ll" -{ return p::make_CONFIG_SEC_HTTP_BLKEY(strchr(yytext, ' ') + 1, *driver.loc.back()); } +{ return p::make_CONFIG_SEC_COLLECTION_TIMEOUT(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 263: -/* rule 263 can match eol */ YY_RULE_SETUP #line 852 "seclang-scanner.ll" -{ driver.loc.back()->lines(1); driver.loc.back()->step(); } +{ return p::make_CONFIG_SEC_HTTP_BLKEY(strchr(yytext, ' ') + 1, *driver.loc.back()); } YY_BREAK case 264: /* rule 264 can match eol */ YY_RULE_SETUP #line 853 "seclang-scanner.ll" -{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(COMMENT); } +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } YY_BREAK case 265: /* rule 265 can match eol */ YY_RULE_SETUP #line 854 "seclang-scanner.ll" -{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(COMMENT); } +{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(COMMENT); } YY_BREAK case 266: +/* rule 266 can match eol */ YY_RULE_SETUP #line 855 "seclang-scanner.ll" -{ driver.loc.back()->step(); /* comment, just ignore. */ } +{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(COMMENT); } YY_BREAK case 267: YY_RULE_SETUP #line 856 "seclang-scanner.ll" -{ driver.loc.back()->step(); /* carriage return, just ignore. */} +{ driver.loc.back()->step(); /* comment, just ignore. */ } YY_BREAK case 268: YY_RULE_SETUP #line 857 "seclang-scanner.ll" -{ return p::make_QUOTATION_MARK(yytext, *driver.loc.back()); } +{ driver.loc.back()->step(); /* carriage return, just ignore. */} YY_BREAK case 269: YY_RULE_SETUP #line 858 "seclang-scanner.ll" -{ return p::make_COMMA(*driver.loc.back()); } +{ return p::make_QUOTATION_MARK(yytext, *driver.loc.back()); } YY_BREAK - case 270: YY_RULE_SETUP -#line 861 "seclang-scanner.ll" -{ BEGIN(EXPECTING_VARIABLE); } +#line 859 "seclang-scanner.ll" +{ return p::make_COMMA(*driver.loc.back()); } YY_BREAK - case 271: YY_RULE_SETUP -#line 865 "seclang-scanner.ll" -{ return p::make_PIPE(*driver.loc.back()); } +#line 862 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VARIABLE); } YY_BREAK + + case 272: YY_RULE_SETUP #line 866 "seclang-scanner.ll" @@ -6995,68 +7046,67 @@ YY_RULE_SETUP case 273: YY_RULE_SETUP #line 867 "seclang-scanner.ll" -{ return p::make_QUOTATION_MARK(yytext, *driver.loc.back()); } +{ return p::make_PIPE(*driver.loc.back()); } YY_BREAK case 274: YY_RULE_SETUP #line 868 "seclang-scanner.ll" -{ return p::make_VAR_EXCLUSION(*driver.loc.back()); } +{ return p::make_QUOTATION_MARK(yytext, *driver.loc.back()); } YY_BREAK case 275: YY_RULE_SETUP #line 869 "seclang-scanner.ll" -{ return p::make_VAR_COUNT(*driver.loc.back()); } +{ return p::make_VAR_EXCLUSION(*driver.loc.back()); } YY_BREAK - - case 276: YY_RULE_SETUP -#line 873 "seclang-scanner.ll" -{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_SPACE); } else { state_variable_from = 0; BEGIN(INITIAL);} } +#line 870 "seclang-scanner.ll" +{ return p::make_VAR_COUNT(*driver.loc.back()); } YY_BREAK + + case 277: YY_RULE_SETUP #line 874 "seclang-scanner.ll" -{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_QUOTE); } else { state_variable_from = 0; BEGIN(INITIAL);} } +{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_SPACE); } else { state_variable_from = 0; BEGIN(INITIAL);} } YY_BREAK case 278: -/* rule 278 can match eol */ YY_RULE_SETUP #line 875 "seclang-scanner.ll" -{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_SPACE); } else { state_variable_from = 0; BEGIN(INITIAL);} } +{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_QUOTE); } else { state_variable_from = 0; BEGIN(INITIAL);} } YY_BREAK case 279: /* rule 279 can match eol */ YY_RULE_SETUP #line 876 "seclang-scanner.ll" -{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_QUOTE); } else { state_variable_from = 0; BEGIN(INITIAL);} } +{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_SPACE); } else { state_variable_from = 0; BEGIN(INITIAL);} } YY_BREAK case 280: /* rule 280 can match eol */ YY_RULE_SETUP #line 877 "seclang-scanner.ll" -{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_SPACE); } else { state_variable_from = 0; BEGIN(INITIAL);} } +{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_QUOTE); } else { state_variable_from = 0; BEGIN(INITIAL);} } YY_BREAK case 281: /* rule 281 can match eol */ YY_RULE_SETUP #line 878 "seclang-scanner.ll" -{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_QUOTE); } else { state_variable_from = 0; BEGIN(INITIAL);} } +{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_SPACE); } else { state_variable_from = 0; BEGIN(INITIAL);} } YY_BREAK - - case 282: +/* rule 282 can match eol */ YY_RULE_SETUP -#line 882 "seclang-scanner.ll" -{ } +#line 879 "seclang-scanner.ll" +{ if (state_variable_from == 0) { BEGIN(EXPECTING_OPERATOR_ENDS_WITH_QUOTE); } else { state_variable_from = 0; BEGIN(INITIAL);} } YY_BREAK + + case 283: YY_RULE_SETUP #line 883 "seclang-scanner.ll" -{ BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } +{ } YY_BREAK case 284: -/* rule 284 can match eol */ YY_RULE_SETUP #line 884 "seclang-scanner.ll" { BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } @@ -7067,127 +7117,128 @@ YY_RULE_SETUP #line 885 "seclang-scanner.ll" { BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } YY_BREAK - - case 286: +/* rule 286 can match eol */ YY_RULE_SETUP -#line 890 "seclang-scanner.ll" -{ BEGIN(LEXING_ERROR_VARIABLE); yyless(0); } +#line 886 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } YY_BREAK + + case 287: YY_RULE_SETUP #line 891 "seclang-scanner.ll" -{ return p::make_VARIABLE_ARGS_COMBINED_SIZE(*driver.loc.back()); } +{ BEGIN(LEXING_ERROR_VARIABLE); yyless(0); } YY_BREAK case 288: YY_RULE_SETUP #line 892 "seclang-scanner.ll" -{ return p::make_VARIABLE_ARGS_GET_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_ARGS_COMBINED_SIZE(*driver.loc.back()); } YY_BREAK case 289: YY_RULE_SETUP #line 893 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_GET_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_ARGS_GET_NAMES(*driver.loc.back()); } YY_BREAK case 290: YY_RULE_SETUP #line 894 "seclang-scanner.ll" -{ return p::make_VARIABLE_ARGS_NAMES(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_GET_NAMES(*driver.loc.back()); } YY_BREAK case 291: YY_RULE_SETUP #line 895 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_ARGS_NAMES(*driver.loc.back()); } YY_BREAK case 292: YY_RULE_SETUP #line 896 "seclang-scanner.ll" -{ return p::make_VARIABLE_ARGS_POST_NAMES(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_NAMES(*driver.loc.back()); } YY_BREAK case 293: YY_RULE_SETUP #line 897 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_POST_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_ARGS_POST_NAMES(*driver.loc.back()); } YY_BREAK case 294: YY_RULE_SETUP #line 898 "seclang-scanner.ll" -{ return p::make_VARIABLE_AUTH_TYPE(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_POST_NAMES(*driver.loc.back()); } YY_BREAK case 295: YY_RULE_SETUP #line 899 "seclang-scanner.ll" -{ return p::make_VARIABLE_FILES_COMBINED_SIZE(*driver.loc.back()); } +{ return p::make_VARIABLE_AUTH_TYPE(*driver.loc.back()); } YY_BREAK case 296: YY_RULE_SETUP #line 900 "seclang-scanner.ll" -{ return p::make_VARIABLE_FULL_REQUEST_LENGTH(*driver.loc.back()); } +{ return p::make_VARIABLE_FILES_COMBINED_SIZE(*driver.loc.back()); } YY_BREAK case 297: YY_RULE_SETUP #line 901 "seclang-scanner.ll" -{ return p::make_VARIABLE_FULL_REQUEST(*driver.loc.back()); } +{ return p::make_VARIABLE_FULL_REQUEST_LENGTH(*driver.loc.back()); } YY_BREAK case 298: YY_RULE_SETUP #line 902 "seclang-scanner.ll" -{ return p::make_VARIABLE_INBOUND_DATA_ERROR(*driver.loc.back()); } +{ return p::make_VARIABLE_FULL_REQUEST(*driver.loc.back()); } YY_BREAK case 299: YY_RULE_SETUP #line 903 "seclang-scanner.ll" -{ return p::make_VARIABLE_MATCHED_VAR_NAME(*driver.loc.back()); } +{ return p::make_VARIABLE_INBOUND_DATA_ERROR(*driver.loc.back()); } YY_BREAK case 300: YY_RULE_SETUP #line 904 "seclang-scanner.ll" -{ return p::make_VARIABLE_MATCHED_VAR(*driver.loc.back()); } +{ return p::make_VARIABLE_MATCHED_VAR_NAME(*driver.loc.back()); } YY_BREAK case 301: YY_RULE_SETUP #line 905 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_BOUNDARY_QUOTED(*driver.loc.back()); } +{ return p::make_VARIABLE_MATCHED_VAR(*driver.loc.back()); } YY_BREAK case 302: YY_RULE_SETUP #line 906 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_BOUNDARY_WHITESPACE(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_BOUNDARY_QUOTED(*driver.loc.back()); } YY_BREAK case 303: YY_RULE_SETUP #line 907 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_CRLF_LF_LINES(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_BOUNDARY_WHITESPACE(*driver.loc.back()); } YY_BREAK case 304: YY_RULE_SETUP #line 908 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_DATA_AFTER(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_CRLF_LF_LINES(*driver.loc.back()); } YY_BREAK case 305: YY_RULE_SETUP #line 909 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_DATA_BEFORE(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_DATA_AFTER(*driver.loc.back()); } YY_BREAK case 306: YY_RULE_SETUP #line 910 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_FILE_LIMIT_EXCEEDED(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_DATA_BEFORE(*driver.loc.back()); } YY_BREAK case 307: YY_RULE_SETUP #line 911 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MULTIPART_FILENAME(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_FILE_LIMIT_EXCEEDED(*driver.loc.back()); } YY_BREAK case 308: YY_RULE_SETUP #line 912 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_FILENAME(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MULTIPART_FILENAME(*driver.loc.back()); } YY_BREAK case 309: YY_RULE_SETUP #line 913 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_HEADER_FOLDING(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_FILENAME(*driver.loc.back()); } YY_BREAK case 310: YY_RULE_SETUP @@ -7197,582 +7248,581 @@ YY_RULE_SETUP case 311: YY_RULE_SETUP #line 915 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_INVALID_HEADER_FOLDING(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_HEADER_FOLDING(*driver.loc.back()); } YY_BREAK case 312: YY_RULE_SETUP #line 916 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_INVALID_PART(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_INVALID_HEADER_FOLDING(*driver.loc.back()); } YY_BREAK case 313: YY_RULE_SETUP #line 917 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_INVALID_QUOTING(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_INVALID_PART(*driver.loc.back()); } YY_BREAK case 314: YY_RULE_SETUP #line 918 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_LF_LINE(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_INVALID_QUOTING(*driver.loc.back()); } YY_BREAK case 315: YY_RULE_SETUP #line 919 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_MISSING_SEMICOLON(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_LF_LINE(*driver.loc.back()); } YY_BREAK case 316: YY_RULE_SETUP #line 920 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_SEMICOLON_MISSING(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_MISSING_SEMICOLON(*driver.loc.back()); } YY_BREAK case 317: YY_RULE_SETUP #line 921 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MULTIPART_NAME(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_SEMICOLON_MISSING(*driver.loc.back()); } YY_BREAK case 318: YY_RULE_SETUP #line 922 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_NAME(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MULTIPART_NAME(*driver.loc.back()); } YY_BREAK case 319: YY_RULE_SETUP #line 923 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_STRICT_ERROR(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_NAME(*driver.loc.back()); } YY_BREAK case 320: YY_RULE_SETUP #line 924 "seclang-scanner.ll" -{ return p::make_VARIABLE_MULTIPART_UNMATCHED_BOUNDARY(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_STRICT_ERROR(*driver.loc.back()); } YY_BREAK case 321: YY_RULE_SETUP #line 925 "seclang-scanner.ll" -{ return p::make_VARIABLE_OUTBOUND_DATA_ERROR(*driver.loc.back()); } +{ return p::make_VARIABLE_MULTIPART_UNMATCHED_BOUNDARY(*driver.loc.back()); } YY_BREAK case 322: YY_RULE_SETUP #line 926 "seclang-scanner.ll" -{ return p::make_VARIABLE_PATH_INFO(*driver.loc.back()); } +{ return p::make_VARIABLE_OUTBOUND_DATA_ERROR(*driver.loc.back()); } YY_BREAK case 323: YY_RULE_SETUP #line 927 "seclang-scanner.ll" -{ return p::make_VARIABLE_QUERY_STRING(*driver.loc.back()); } +{ return p::make_VARIABLE_PATH_INFO(*driver.loc.back()); } YY_BREAK case 324: YY_RULE_SETUP #line 928 "seclang-scanner.ll" -{ return p::make_VARIABLE_REMOTE_ADDR(*driver.loc.back()); } +{ return p::make_VARIABLE_QUERY_STRING(*driver.loc.back()); } YY_BREAK case 325: YY_RULE_SETUP #line 929 "seclang-scanner.ll" -{ return p::make_VARIABLE_REMOTE_HOST(*driver.loc.back()); } +{ return p::make_VARIABLE_REMOTE_ADDR(*driver.loc.back()); } YY_BREAK case 326: YY_RULE_SETUP #line 930 "seclang-scanner.ll" -{ return p::make_VARIABLE_REMOTE_PORT(*driver.loc.back()); } +{ return p::make_VARIABLE_REMOTE_HOST(*driver.loc.back()); } YY_BREAK case 327: YY_RULE_SETUP #line 931 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQBODY_ERROR_MSG(*driver.loc.back()); } +{ return p::make_VARIABLE_REMOTE_PORT(*driver.loc.back()); } YY_BREAK case 328: YY_RULE_SETUP #line 932 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQBODY_ERROR(*driver.loc.back()); } +{ return p::make_VARIABLE_REQBODY_ERROR_MSG(*driver.loc.back()); } YY_BREAK case 329: YY_RULE_SETUP #line 933 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQBODY_PROCESSOR_ERROR_MSG(*driver.loc.back()); } +{ return p::make_VARIABLE_REQBODY_ERROR(*driver.loc.back()); } YY_BREAK case 330: YY_RULE_SETUP #line 934 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQBODY_PROCESSOR_ERROR(*driver.loc.back()); } +{ return p::make_VARIABLE_REQBODY_PROCESSOR_ERROR_MSG(*driver.loc.back()); } YY_BREAK case 331: YY_RULE_SETUP #line 935 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQBODY_PROCESSOR(*driver.loc.back()); } +{ return p::make_VARIABLE_REQBODY_PROCESSOR_ERROR(*driver.loc.back()); } YY_BREAK case 332: YY_RULE_SETUP #line 936 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_BASENAME(*driver.loc.back()); } +{ return p::make_VARIABLE_REQBODY_PROCESSOR(*driver.loc.back()); } YY_BREAK case 333: YY_RULE_SETUP #line 937 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_BODY_LENGTH(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_BASENAME(*driver.loc.back()); } YY_BREAK case 334: YY_RULE_SETUP #line 938 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_BODY(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_BODY_LENGTH(*driver.loc.back()); } YY_BREAK case 335: YY_RULE_SETUP #line 939 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_FILE_NAME(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_BODY(*driver.loc.back()); } YY_BREAK case 336: YY_RULE_SETUP #line 940 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_HEADERS_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_FILE_NAME(*driver.loc.back()); } YY_BREAK case 337: YY_RULE_SETUP #line 941 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_HEADERS_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_HEADERS_NAMES(*driver.loc.back()); } YY_BREAK case 338: YY_RULE_SETUP #line 942 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_LINE(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_HEADERS_NAMES(*driver.loc.back()); } YY_BREAK case 339: YY_RULE_SETUP #line 943 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_METHOD(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_LINE(*driver.loc.back()); } YY_BREAK case 340: YY_RULE_SETUP #line 944 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_PROTOCOL(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_METHOD(*driver.loc.back()); } YY_BREAK case 341: YY_RULE_SETUP #line 945 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_URI_RAW(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_PROTOCOL(*driver.loc.back()); } YY_BREAK case 342: YY_RULE_SETUP #line 946 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_URI(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_URI_RAW(*driver.loc.back()); } YY_BREAK case 343: YY_RULE_SETUP #line 947 "seclang-scanner.ll" -{ return p::make_VARIABLE_RESPONSE_BODY(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_URI(*driver.loc.back()); } YY_BREAK case 344: YY_RULE_SETUP #line 948 "seclang-scanner.ll" -{ return p::make_VARIABLE_RESPONSE_CONTENT_LENGTH(*driver.loc.back()); } +{ return p::make_VARIABLE_RESPONSE_BODY(*driver.loc.back()); } YY_BREAK case 345: YY_RULE_SETUP #line 949 "seclang-scanner.ll" -{ return p::make_VARIABLE_RESPONSE_CONTENT_TYPE(*driver.loc.back()); } +{ return p::make_VARIABLE_RESPONSE_CONTENT_LENGTH(*driver.loc.back()); } YY_BREAK case 346: YY_RULE_SETUP #line 950 "seclang-scanner.ll" -{ return p::make_VARIABLE_RESPONSE_HEADERS_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_RESPONSE_CONTENT_TYPE(*driver.loc.back()); } YY_BREAK case 347: YY_RULE_SETUP #line 951 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_RESPONSE_HEADERS_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_RESPONSE_HEADERS_NAMES(*driver.loc.back()); } YY_BREAK case 348: YY_RULE_SETUP #line 952 "seclang-scanner.ll" -{ return p::make_VARIABLE_RESPONSE_PROTOCOL(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_RESPONSE_HEADERS_NAMES(*driver.loc.back()); } YY_BREAK case 349: YY_RULE_SETUP #line 953 "seclang-scanner.ll" -{ return p::make_VARIABLE_RESPONSE_STATUS(*driver.loc.back()); } +{ return p::make_VARIABLE_RESPONSE_PROTOCOL(*driver.loc.back()); } YY_BREAK case 350: YY_RULE_SETUP #line 954 "seclang-scanner.ll" -{ return p::make_VARIABLE_SERVER_ADDR(*driver.loc.back()); } +{ return p::make_VARIABLE_RESPONSE_STATUS(*driver.loc.back()); } YY_BREAK case 351: YY_RULE_SETUP #line 955 "seclang-scanner.ll" -{ return p::make_VARIABLE_SERVER_NAME(*driver.loc.back()); } +{ return p::make_VARIABLE_SERVER_ADDR(*driver.loc.back()); } YY_BREAK case 352: YY_RULE_SETUP #line 956 "seclang-scanner.ll" -{ return p::make_VARIABLE_SERVER_PORT(*driver.loc.back()); } +{ return p::make_VARIABLE_SERVER_NAME(*driver.loc.back()); } YY_BREAK case 353: YY_RULE_SETUP #line 957 "seclang-scanner.ll" -{ return p::make_VARIABLE_SESSION_ID(*driver.loc.back()); } +{ return p::make_VARIABLE_SERVER_PORT(*driver.loc.back()); } YY_BREAK case 354: YY_RULE_SETUP #line 958 "seclang-scanner.ll" -{ return p::make_VARIABLE_UNIQUE_ID(*driver.loc.back()); } +{ return p::make_VARIABLE_SESSION_ID(*driver.loc.back()); } YY_BREAK case 355: YY_RULE_SETUP #line 959 "seclang-scanner.ll" -{ return p::make_VARIABLE_URL_ENCODED_ERROR(*driver.loc.back()); } +{ return p::make_VARIABLE_UNIQUE_ID(*driver.loc.back()); } YY_BREAK case 356: YY_RULE_SETUP #line 960 "seclang-scanner.ll" -{ return p::make_VARIABLE_USER_ID(*driver.loc.back()); } +{ return p::make_VARIABLE_URL_ENCODED_ERROR(*driver.loc.back()); } YY_BREAK case 357: YY_RULE_SETUP #line 961 "seclang-scanner.ll" -{ return p::make_VARIABLE_WEB_APP_ID(*driver.loc.back()); } +{ return p::make_VARIABLE_USER_ID(*driver.loc.back()); } YY_BREAK case 358: YY_RULE_SETUP #line 962 "seclang-scanner.ll" -{ return p::make_VARIABLE_ARGS(*driver.loc.back()); } +{ return p::make_VARIABLE_WEB_APP_ID(*driver.loc.back()); } YY_BREAK case 359: YY_RULE_SETUP #line 963 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS(*driver.loc.back()); } +{ return p::make_VARIABLE_ARGS(*driver.loc.back()); } YY_BREAK case 360: YY_RULE_SETUP #line 964 "seclang-scanner.ll" -{ return p::make_VARIABLE_ARGS_GET(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS(*driver.loc.back()); } YY_BREAK case 361: YY_RULE_SETUP #line 965 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_GET(*driver.loc.back()); } +{ return p::make_VARIABLE_ARGS_GET(*driver.loc.back()); } YY_BREAK case 362: YY_RULE_SETUP #line 966 "seclang-scanner.ll" -{ return p::make_VARIABLE_ARGS_POST(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_GET(*driver.loc.back()); } YY_BREAK case 363: YY_RULE_SETUP #line 967 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_POST(*driver.loc.back()); } +{ return p::make_VARIABLE_ARGS_POST(*driver.loc.back()); } YY_BREAK case 364: YY_RULE_SETUP #line 968 "seclang-scanner.ll" -{ return p::make_VARIABLE_FILES_SIZES(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_POST(*driver.loc.back()); } YY_BREAK case 365: YY_RULE_SETUP #line 969 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_SIZES(*driver.loc.back()); } +{ return p::make_VARIABLE_FILES_SIZES(*driver.loc.back()); } YY_BREAK case 366: YY_RULE_SETUP #line 970 "seclang-scanner.ll" -{ return p::make_VARIABLE_FILES_NAMES(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_SIZES(*driver.loc.back()); } YY_BREAK case 367: YY_RULE_SETUP #line 971 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_FILES_NAMES(*driver.loc.back()); } YY_BREAK case 368: YY_RULE_SETUP #line 972 "seclang-scanner.ll" -{ return p::make_VARIABLE_FILES_TMP_CONTENT(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_NAMES(*driver.loc.back()); } YY_BREAK case 369: YY_RULE_SETUP #line 973 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_TMP_CONTENT(*driver.loc.back()); } +{ return p::make_VARIABLE_FILES_TMP_CONTENT(*driver.loc.back()); } YY_BREAK case 370: YY_RULE_SETUP #line 974 "seclang-scanner.ll" -{ return p::make_VARIABLE_MATCHED_VARS_NAMES(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_TMP_CONTENT(*driver.loc.back()); } YY_BREAK case 371: YY_RULE_SETUP #line 975 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MATCHED_VARS_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_MATCHED_VARS_NAMES(*driver.loc.back()); } YY_BREAK case 372: YY_RULE_SETUP #line 976 "seclang-scanner.ll" -{ return p::make_VARIABLE_MATCHED_VARS(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MATCHED_VARS_NAMES(*driver.loc.back()); } YY_BREAK case 373: YY_RULE_SETUP #line 977 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MATCHED_VARS(*driver.loc.back()); } +{ return p::make_VARIABLE_MATCHED_VARS(*driver.loc.back()); } YY_BREAK case 374: YY_RULE_SETUP #line 978 "seclang-scanner.ll" -{ return p::make_VARIABLE_FILES(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MATCHED_VARS(*driver.loc.back()); } YY_BREAK case 375: YY_RULE_SETUP #line 979 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES(*driver.loc.back()); } +{ return p::make_VARIABLE_FILES(*driver.loc.back()); } YY_BREAK case 376: YY_RULE_SETUP #line 980 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_COOKIES(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES(*driver.loc.back()); } YY_BREAK case 377: YY_RULE_SETUP #line 981 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_COOKIES(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_COOKIES(*driver.loc.back()); } YY_BREAK case 378: YY_RULE_SETUP #line 982 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_HEADERS(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_COOKIES(*driver.loc.back()); } YY_BREAK case 379: YY_RULE_SETUP #line 983 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_HEADERS(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_HEADERS(*driver.loc.back()); } YY_BREAK case 380: YY_RULE_SETUP #line 984 "seclang-scanner.ll" -{ return p::make_VARIABLE_RESPONSE_HEADERS(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_HEADERS(*driver.loc.back()); } YY_BREAK case 381: YY_RULE_SETUP #line 985 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_RESPONSE_HEADERS(*driver.loc.back()); } +{ return p::make_VARIABLE_RESPONSE_HEADERS(*driver.loc.back()); } YY_BREAK case 382: YY_RULE_SETUP #line 986 "seclang-scanner.ll" -{ return p::make_VARIABLE_GEO(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_RESPONSE_HEADERS(*driver.loc.back()); } YY_BREAK case 383: YY_RULE_SETUP #line 987 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_GEO(*driver.loc.back()); } +{ return p::make_VARIABLE_GEO(*driver.loc.back()); } YY_BREAK case 384: YY_RULE_SETUP #line 988 "seclang-scanner.ll" -{ return p::make_VARIABLE_REQUEST_COOKIES_NAMES(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_GEO(*driver.loc.back()); } YY_BREAK case 385: YY_RULE_SETUP #line 989 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_COOKIES_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_REQUEST_COOKIES_NAMES(*driver.loc.back()); } YY_BREAK case 386: YY_RULE_SETUP #line 990 "seclang-scanner.ll" -{ return p::make_VARIABLE_RULE(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_COOKIES_NAMES(*driver.loc.back()); } YY_BREAK case 387: YY_RULE_SETUP #line 991 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_RULE(*driver.loc.back()); } +{ return p::make_VARIABLE_RULE(*driver.loc.back()); } YY_BREAK case 388: YY_RULE_SETUP #line 992 "seclang-scanner.ll" -{ return p::make_VARIABLE_FILES_TMP_NAMES(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_RULE(*driver.loc.back()); } YY_BREAK case 389: YY_RULE_SETUP #line 993 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_TMP_NAMES(*driver.loc.back()); } +{ return p::make_VARIABLE_FILES_TMP_NAMES(*driver.loc.back()); } YY_BREAK case 390: YY_RULE_SETUP #line 994 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_XML(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_TMP_NAMES(*driver.loc.back()); } YY_BREAK case 391: YY_RULE_SETUP #line 995 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_RUN_TIME_VAR_XML(*driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_XML(*driver.loc.back()); } YY_BREAK case 392: YY_RULE_SETUP #line 996 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_ENV(*driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_RUN_TIME_VAR_XML(*driver.loc.back()); } YY_BREAK case 393: YY_RULE_SETUP #line 997 "seclang-scanner.ll" -{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_RUN_TIME_VAR_ENV(*driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_ENV(*driver.loc.back()); } YY_BREAK case 394: YY_RULE_SETUP #line 998 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_BLD(yytext, *driver.loc.back()); } +{ BEGINX(EXPECTING_VAR_PARAMETER); return p::make_RUN_TIME_VAR_ENV(*driver.loc.back()); } YY_BREAK case 395: YY_RULE_SETUP #line 999 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_DUR(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_BLD(yytext, *driver.loc.back()); } YY_BREAK case 396: YY_RULE_SETUP #line 1000 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_HSV(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_DUR(yytext, *driver.loc.back()); } YY_BREAK case 397: YY_RULE_SETUP #line 1001 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_REMOTE_USER(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_HSV(yytext, *driver.loc.back()); } YY_BREAK case 398: YY_RULE_SETUP #line 1002 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_TIME_DAY(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_REMOTE_USER(yytext, *driver.loc.back()); } YY_BREAK case 399: YY_RULE_SETUP #line 1003 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_TIME_EPOCH(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_TIME_DAY(yytext, *driver.loc.back()); } YY_BREAK case 400: YY_RULE_SETUP #line 1004 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_TIME_HOUR(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_TIME_EPOCH(yytext, *driver.loc.back()); } YY_BREAK case 401: YY_RULE_SETUP #line 1005 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_TIME_MIN(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_TIME_HOUR(yytext, *driver.loc.back()); } YY_BREAK case 402: YY_RULE_SETUP #line 1006 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_TIME_MON(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_TIME_MIN(yytext, *driver.loc.back()); } YY_BREAK case 403: YY_RULE_SETUP #line 1007 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_TIME_SEC(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_TIME_MON(yytext, *driver.loc.back()); } YY_BREAK case 404: YY_RULE_SETUP #line 1008 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_TIME_YEAR(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_TIME_SEC(yytext, *driver.loc.back()); } YY_BREAK case 405: YY_RULE_SETUP #line 1009 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_TIME(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_TIME_YEAR(yytext, *driver.loc.back()); } YY_BREAK case 406: YY_RULE_SETUP #line 1010 "seclang-scanner.ll" -{ return p::make_RUN_TIME_VAR_TIME_WDAY(yytext, *driver.loc.back()); } +{ return p::make_RUN_TIME_VAR_TIME(yytext, *driver.loc.back()); } YY_BREAK case 407: YY_RULE_SETUP -#line 1013 "seclang-scanner.ll" -{ driver.error (*driver.loc.back(), "Variable VARIABLE_WEBSERVER_ERROR_LOG is not supported by libModSecurity", ""); throw p::syntax_error(*driver.loc.back(), "");} +#line 1011 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_TIME_WDAY(yytext, *driver.loc.back()); } YY_BREAK case 408: YY_RULE_SETUP #line 1014 "seclang-scanner.ll" -{ return p::make_VARIABLE_GLOBAL(*driver.loc.back()); } +{ driver.error (*driver.loc.back(), "Variable VARIABLE_WEBSERVER_ERROR_LOG is not supported by libModSecurity", ""); throw p::syntax_error(*driver.loc.back(), "");} YY_BREAK case 409: YY_RULE_SETUP #line 1015 "seclang-scanner.ll" -{ return p::make_VARIABLE_IP(*driver.loc.back()); } +{ return p::make_VARIABLE_GLOBAL(*driver.loc.back()); } YY_BREAK case 410: YY_RULE_SETUP #line 1016 "seclang-scanner.ll" -{ return p::make_VARIABLE_RESOURCE(*driver.loc.back()); } +{ return p::make_VARIABLE_IP(*driver.loc.back()); } YY_BREAK case 411: YY_RULE_SETUP #line 1017 "seclang-scanner.ll" -{ return p::make_VARIABLE_SESSION(*driver.loc.back()); } +{ return p::make_VARIABLE_RESOURCE(*driver.loc.back()); } YY_BREAK case 412: YY_RULE_SETUP #line 1018 "seclang-scanner.ll" -{ return p::make_VARIABLE_STATUS(*driver.loc.back()); } +{ return p::make_VARIABLE_SESSION(*driver.loc.back()); } YY_BREAK case 413: YY_RULE_SETUP #line 1019 "seclang-scanner.ll" -{ return p::make_VARIABLE_STATUS_LINE(*driver.loc.back()); } +{ return p::make_VARIABLE_STATUS(*driver.loc.back()); } YY_BREAK case 414: YY_RULE_SETUP #line 1020 "seclang-scanner.ll" -{ return p::make_VARIABLE_TX(*driver.loc.back()); } +{ return p::make_VARIABLE_STATUS_LINE(*driver.loc.back()); } YY_BREAK case 415: YY_RULE_SETUP #line 1021 "seclang-scanner.ll" +{ return p::make_VARIABLE_TX(*driver.loc.back()); } + YY_BREAK +case 416: +YY_RULE_SETUP +#line 1022 "seclang-scanner.ll" { return p::make_VARIABLE_USER(*driver.loc.back()); } YY_BREAK -case 416: -YY_RULE_SETUP -#line 1025 "seclang-scanner.ll" -{ BEGINX_(); return p::make_VARIABLE_GLOBAL(*driver.loc.back()); } - YY_BREAK case 417: YY_RULE_SETUP #line 1026 "seclang-scanner.ll" -{ BEGINX_(); return p::make_VARIABLE_IP(*driver.loc.back()); } +{ BEGINX_(); return p::make_VARIABLE_GLOBAL(*driver.loc.back()); } YY_BREAK case 418: YY_RULE_SETUP #line 1027 "seclang-scanner.ll" -{ BEGINX_(); return p::make_VARIABLE_RESOURCE(*driver.loc.back()); } +{ BEGINX_(); return p::make_VARIABLE_IP(*driver.loc.back()); } YY_BREAK case 419: YY_RULE_SETUP #line 1028 "seclang-scanner.ll" -{ BEGINX_(); return p::make_VARIABLE_SESSION(*driver.loc.back()); } +{ BEGINX_(); return p::make_VARIABLE_RESOURCE(*driver.loc.back()); } YY_BREAK case 420: YY_RULE_SETUP #line 1029 "seclang-scanner.ll" -{ BEGINX_(); return p::make_VARIABLE_TX(*driver.loc.back()); } +{ BEGINX_(); return p::make_VARIABLE_SESSION(*driver.loc.back()); } YY_BREAK case 421: YY_RULE_SETUP #line 1030 "seclang-scanner.ll" -{ BEGINX_(); return p::make_VARIABLE_USER(*driver.loc.back()); } +{ BEGINX_(); return p::make_VARIABLE_TX(*driver.loc.back()); } YY_BREAK - - case 422: YY_RULE_SETUP -#line 1035 "seclang-scanner.ll" -{ BEGIN_ACTION_WAITING_CONTENT(); return p::make_SETVAR_OPERATION_EQUALS_PLUS(*driver.loc.back()); } +#line 1031 "seclang-scanner.ll" +{ BEGINX_(); return p::make_VARIABLE_USER(*driver.loc.back()); } YY_BREAK + + case 423: YY_RULE_SETUP #line 1036 "seclang-scanner.ll" -{ BEGIN_ACTION_WAITING_CONTENT(); return p::make_SETVAR_OPERATION_EQUALS_MINUS(*driver.loc.back()); } +{ BEGIN_ACTION_WAITING_CONTENT(); return p::make_SETVAR_OPERATION_EQUALS_PLUS(*driver.loc.back()); } YY_BREAK case 424: YY_RULE_SETUP #line 1037 "seclang-scanner.ll" -{ BEGIN_ACTION_WAITING_CONTENT(); return p::make_SETVAR_OPERATION_EQUALS(*driver.loc.back()); } +{ BEGIN_ACTION_WAITING_CONTENT(); return p::make_SETVAR_OPERATION_EQUALS_MINUS(*driver.loc.back()); } YY_BREAK case 425: -/* rule 425 can match eol */ YY_RULE_SETUP #line 1038 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 1, yyleng-2), *driver.loc.back()); } +{ BEGIN_ACTION_WAITING_CONTENT(); return p::make_SETVAR_OPERATION_EQUALS(*driver.loc.back()); } YY_BREAK case 426: /* rule 426 can match eol */ @@ -7784,42 +7834,43 @@ case 427: /* rule 427 can match eol */ YY_RULE_SETUP #line 1040 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(yyleng - 0); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } +{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 1, yyleng-2), *driver.loc.back()); } YY_BREAK case 428: /* rule 428 can match eol */ YY_RULE_SETUP #line 1041 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } +{ BEGIN_PREVIOUS(); yyless(yyleng - 0); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } YY_BREAK case 429: /* rule 429 can match eol */ YY_RULE_SETUP #line 1042 "seclang-scanner.ll" -{ yyless(yyleng - 1); BEGIN_PREVIOUS(); return p::make_FREE_TEXT_QUOTE_MACRO_EXPANSION(yytext, *driver.loc.back()); } +{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } YY_BREAK case 430: /* rule 430 can match eol */ YY_RULE_SETUP #line 1043 "seclang-scanner.ll" -{ return p::make_FREE_TEXT_QUOTE_MACRO_EXPANSION(yytext, *driver.loc.back()); } +{ yyless(yyleng - 1); BEGIN_PREVIOUS(); return p::make_FREE_TEXT_QUOTE_MACRO_EXPANSION(yytext, *driver.loc.back()); } YY_BREAK case 431: /* rule 431 can match eol */ YY_RULE_SETUP -#line 1045 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 1, yyleng-2), *driver.loc.back()); } +#line 1044 "seclang-scanner.ll" +{ return p::make_FREE_TEXT_QUOTE_MACRO_EXPANSION(yytext, *driver.loc.back()); } YY_BREAK case 432: /* rule 432 can match eol */ YY_RULE_SETUP #line 1046 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } +{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 1, yyleng-2), *driver.loc.back()); } YY_BREAK case 433: +/* rule 433 can match eol */ YY_RULE_SETUP #line 1047 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(0); } +{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } YY_BREAK case 434: YY_RULE_SETUP @@ -7829,16 +7880,15 @@ YY_RULE_SETUP case 435: YY_RULE_SETUP #line 1049 "seclang-scanner.ll" -{ BEGINX(LEXING_ERROR_ACTION); yyless(0); } +{ BEGIN_PREVIOUS(); yyless(0); } YY_BREAK - - case 436: -/* rule 436 can match eol */ YY_RULE_SETUP -#line 1054 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 1, yyleng-2), *driver.loc.back()); } +#line 1050 "seclang-scanner.ll" +{ BEGINX(LEXING_ERROR_ACTION); yyless(0); } YY_BREAK + + case 437: /* rule 437 can match eol */ YY_RULE_SETUP @@ -7849,365 +7899,365 @@ case 438: /* rule 438 can match eol */ YY_RULE_SETUP #line 1056 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(yyleng - 0); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } +{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 1, yyleng-2), *driver.loc.back()); } YY_BREAK case 439: /* rule 439 can match eol */ YY_RULE_SETUP #line 1057 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } +{ BEGIN_PREVIOUS(); yyless(yyleng - 0); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } YY_BREAK case 440: /* rule 440 can match eol */ YY_RULE_SETUP #line 1058 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); return p::make_DICT_ELEMENT(yytext, *driver.loc.back()); } +{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } YY_BREAK case 441: /* rule 441 can match eol */ YY_RULE_SETUP -#line 1060 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 1, yyleng-2), *driver.loc.back()); } +#line 1059 "seclang-scanner.ll" +{ BEGIN_PREVIOUS(); return p::make_DICT_ELEMENT(yytext, *driver.loc.back()); } YY_BREAK case 442: /* rule 442 can match eol */ YY_RULE_SETUP #line 1061 "seclang-scanner.ll" -{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } +{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 1, yyleng-2), *driver.loc.back()); } YY_BREAK case 443: +/* rule 443 can match eol */ YY_RULE_SETUP -#line 1063 "seclang-scanner.ll" -{ BEGINX(LEXING_ERROR_ACTION); yyless(0); } +#line 1062 "seclang-scanner.ll" +{ BEGIN_PREVIOUS(); yyless(yyleng - 1); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 2, yyleng-4), *driver.loc.back()); } YY_BREAK case 444: YY_RULE_SETUP #line 1064 "seclang-scanner.ll" -{ return p::make_QUOTATION_MARK(yytext, *driver.loc.back()); } +{ BEGINX(LEXING_ERROR_ACTION); yyless(0); } YY_BREAK - - case 445: YY_RULE_SETUP -#line 1070 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_GEOLOOKUP(*driver.loc.back()); } +#line 1065 "seclang-scanner.ll" +{ return p::make_QUOTATION_MARK(yytext, *driver.loc.back()); } YY_BREAK + + case 446: YY_RULE_SETUP #line 1071 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_UNCONDITIONAL_MATCH(*driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_GEOLOOKUP(*driver.loc.back()); } YY_BREAK case 447: YY_RULE_SETUP #line 1072 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_DETECT_SQLI(*driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_UNCONDITIONAL_MATCH(*driver.loc.back()); } YY_BREAK case 448: YY_RULE_SETUP #line 1073 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_DETECT_XSS(*driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_DETECT_SQLI(*driver.loc.back()); } YY_BREAK case 449: YY_RULE_SETUP #line 1074 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_VALIDATE_URL_ENCODING(*driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_DETECT_XSS(*driver.loc.back()); } YY_BREAK case 450: YY_RULE_SETUP #line 1075 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_VALIDATE_UTF8_ENCODING(*driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_VALIDATE_URL_ENCODING(*driver.loc.back()); } YY_BREAK - - case 451: YY_RULE_SETUP -#line 1078 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_GEOLOOKUP(*driver.loc.back()); } +#line 1076 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_VALIDATE_UTF8_ENCODING(*driver.loc.back()); } YY_BREAK + + case 452: YY_RULE_SETUP #line 1079 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_UNCONDITIONAL_MATCH(*driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_GEOLOOKUP(*driver.loc.back()); } YY_BREAK case 453: YY_RULE_SETUP #line 1080 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_DETECT_SQLI(*driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_UNCONDITIONAL_MATCH(*driver.loc.back()); } YY_BREAK case 454: YY_RULE_SETUP #line 1081 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_DETECT_XSS(*driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_DETECT_SQLI(*driver.loc.back()); } YY_BREAK case 455: YY_RULE_SETUP #line 1082 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_VALIDATE_URL_ENCODING(*driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_DETECT_XSS(*driver.loc.back()); } YY_BREAK case 456: YY_RULE_SETUP #line 1083 "seclang-scanner.ll" -{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_VALIDATE_UTF8_ENCODING(*driver.loc.back()); } +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_VALIDATE_URL_ENCODING(*driver.loc.back()); } YY_BREAK - - case 457: YY_RULE_SETUP -#line 1087 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_WITHIN(*driver.loc.back()); } +#line 1084 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_VALIDATE_UTF8_ENCODING(*driver.loc.back()); } YY_BREAK + + case 458: YY_RULE_SETUP #line 1088 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_CONTAINS_WORD(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_WITHIN(*driver.loc.back()); } YY_BREAK case 459: YY_RULE_SETUP #line 1089 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_CONTAINS(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_CONTAINS_WORD(*driver.loc.back()); } YY_BREAK case 460: YY_RULE_SETUP #line 1090 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_ENDS_WITH(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_CONTAINS(*driver.loc.back()); } YY_BREAK case 461: YY_RULE_SETUP #line 1091 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_EQ(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_ENDS_WITH(*driver.loc.back()); } YY_BREAK case 462: YY_RULE_SETUP #line 1092 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_GE(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_EQ(*driver.loc.back()); } YY_BREAK case 463: YY_RULE_SETUP #line 1093 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_GT(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_GE(*driver.loc.back()); } YY_BREAK case 464: YY_RULE_SETUP #line 1094 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_IP_MATCH_FROM_FILE(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_GT(*driver.loc.back()); } YY_BREAK case 465: YY_RULE_SETUP #line 1095 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_IP_MATCH(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_IP_MATCH_FROM_FILE(*driver.loc.back()); } YY_BREAK case 466: YY_RULE_SETUP #line 1096 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_LE(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_IP_MATCH(*driver.loc.back()); } YY_BREAK case 467: YY_RULE_SETUP #line 1097 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_LT(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_LE(*driver.loc.back()); } YY_BREAK case 468: YY_RULE_SETUP #line 1098 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_PM_FROM_FILE(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_LT(*driver.loc.back()); } YY_BREAK case 469: YY_RULE_SETUP #line 1099 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_PM(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_PM_FROM_FILE(*driver.loc.back()); } YY_BREAK case 470: YY_RULE_SETUP #line 1100 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_RBL( *driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_PM(*driver.loc.back()); } YY_BREAK case 471: YY_RULE_SETUP #line 1101 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_RX(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_RBL( *driver.loc.back()); } YY_BREAK case 472: YY_RULE_SETUP #line 1102 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_STR_EQ(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_RX(*driver.loc.back()); } YY_BREAK case 473: YY_RULE_SETUP #line 1103 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_STR_MATCH(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_STR_EQ(*driver.loc.back()); } YY_BREAK case 474: YY_RULE_SETUP #line 1104 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_BEGINS_WITH(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_STR_MATCH(*driver.loc.back()); } YY_BREAK case 475: YY_RULE_SETUP #line 1105 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_INSPECT_FILE(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_BEGINS_WITH(*driver.loc.back()); } YY_BREAK case 476: YY_RULE_SETUP #line 1106 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_FUZZY_HASH(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_INSPECT_FILE(*driver.loc.back()); } YY_BREAK case 477: YY_RULE_SETUP #line 1107 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_VALIDATE_BYTE_RANGE(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_FUZZY_HASH(*driver.loc.back()); } YY_BREAK case 478: YY_RULE_SETUP #line 1108 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_VALIDATE_DTD(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_VALIDATE_BYTE_RANGE(*driver.loc.back()); } YY_BREAK case 479: YY_RULE_SETUP #line 1109 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_VALIDATE_HASH(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_VALIDATE_DTD(*driver.loc.back()); } YY_BREAK case 480: YY_RULE_SETUP #line 1110 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_VALIDATE_SCHEMA(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_VALIDATE_HASH(*driver.loc.back()); } YY_BREAK case 481: YY_RULE_SETUP #line 1111 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_VERIFY_CC(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_VALIDATE_SCHEMA(*driver.loc.back()); } YY_BREAK case 482: YY_RULE_SETUP #line 1112 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_VERIFY_CPF(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_VERIFY_CC(*driver.loc.back()); } YY_BREAK case 483: YY_RULE_SETUP #line 1113 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_VERIFY_SSN(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_VERIFY_CPF(*driver.loc.back()); } YY_BREAK case 484: YY_RULE_SETUP #line 1114 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_GSB_LOOKUP(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_VERIFY_SSN(*driver.loc.back()); } YY_BREAK case 485: YY_RULE_SETUP #line 1115 "seclang-scanner.ll" -{ BEGIN_PARAMETER(); return p::make_OPERATOR_RSUB(*driver.loc.back()); } +{ BEGIN_PARAMETER(); return p::make_OPERATOR_GSB_LOOKUP(*driver.loc.back()); } YY_BREAK case 486: YY_RULE_SETUP -#line 1117 "seclang-scanner.ll" -{ return p::make_NOT(*driver.loc.back()); } +#line 1116 "seclang-scanner.ll" +{ BEGIN_PARAMETER(); return p::make_OPERATOR_RSUB(*driver.loc.back()); } YY_BREAK case 487: YY_RULE_SETUP #line 1118 "seclang-scanner.ll" +{ return p::make_NOT(*driver.loc.back()); } + YY_BREAK +case 488: +YY_RULE_SETUP +#line 1119 "seclang-scanner.ll" { BEGIN_NO_OP_INFORMED(); yyless(0); } YY_BREAK -case 488: +case 489: YY_RULE_SETUP -#line 1123 "seclang-scanner.ll" +#line 1124 "seclang-scanner.ll" { BEGIN(EXPECTING_PARAMETER_ENDS_WITH_SPACE); } YY_BREAK -case 489: +case 490: YY_RULE_SETUP -#line 1127 "seclang-scanner.ll" +#line 1128 "seclang-scanner.ll" { BEGIN(EXPECTING_PARAMETER_ENDS_WITH_QUOTE); } YY_BREAK -case 490: +case 491: YY_RULE_SETUP -#line 1131 "seclang-scanner.ll" +#line 1132 "seclang-scanner.ll" { BEGIN(TRANSACTION_FROM_OPERATOR_PARAMETERS_TO_ACTIONS); } YY_BREAK -case 491: -/* rule 491 can match eol */ +case 492: +/* rule 492 can match eol */ YY_RULE_SETUP -#line 1132 "seclang-scanner.ll" +#line 1133 "seclang-scanner.ll" { return p::make_FREE_TEXT_QUOTE_MACRO_EXPANSION(yytext, *driver.loc.back()); } YY_BREAK -case 492: +case 493: YY_RULE_SETUP -#line 1136 "seclang-scanner.ll" +#line 1137 "seclang-scanner.ll" { BEGIN(TRANSACTION_FROM_OPERATOR_PARAMETERS_TO_ACTIONS); } YY_BREAK -case 493: -/* rule 493 can match eol */ +case 494: +/* rule 494 can match eol */ YY_RULE_SETUP -#line 1137 "seclang-scanner.ll" +#line 1138 "seclang-scanner.ll" { return p::make_FREE_TEXT_QUOTE_MACRO_EXPANSION(yytext, *driver.loc.back()); } YY_BREAK -case 494: +case 495: YY_RULE_SETUP -#line 1140 "seclang-scanner.ll" +#line 1141 "seclang-scanner.ll" { BEGINX(EXPECTING_ACTION_PREDICATE_VARIABLE); } YY_BREAK -case 495: +case 496: YY_RULE_SETUP -#line 1141 "seclang-scanner.ll" +#line 1142 "seclang-scanner.ll" { BEGIN(LEXING_ERROR); yyless(0); } YY_BREAK -case 496: +case 497: YY_RULE_SETUP -#line 1145 "seclang-scanner.ll" +#line 1146 "seclang-scanner.ll" { BEGIN(TRANSACTION_FROM_OPERATOR_PARAMETERS_TO_ACTIONS); } YY_BREAK -case 497: -/* rule 497 can match eol */ +case 498: +/* rule 498 can match eol */ YY_RULE_SETUP -#line 1146 "seclang-scanner.ll" +#line 1147 "seclang-scanner.ll" { return p::make_FREE_TEXT_QUOTE_MACRO_EXPANSION(yytext, *driver.loc.back()); } YY_BREAK -case 498: +case 499: YY_RULE_SETUP -#line 1150 "seclang-scanner.ll" +#line 1151 "seclang-scanner.ll" { BEGIN(TRANSACTION_FROM_OPERATOR_PARAMETERS_TO_ACTIONS); } YY_BREAK -case 499: -/* rule 499 can match eol */ +case 500: +/* rule 500 can match eol */ YY_RULE_SETUP -#line 1151 "seclang-scanner.ll" +#line 1152 "seclang-scanner.ll" { return p::make_FREE_TEXT_QUOTE_MACRO_EXPANSION(yytext, *driver.loc.back()); } YY_BREAK -case 500: +case 501: YY_RULE_SETUP -#line 1155 "seclang-scanner.ll" +#line 1156 "seclang-scanner.ll" { BEGINX(EXPECTING_ACTION_PREDICATE_VARIABLE); } YY_BREAK -case 501: +case 502: YY_RULE_SETUP -#line 1156 "seclang-scanner.ll" +#line 1157 "seclang-scanner.ll" { BEGIN(LEXING_ERROR_VARIABLE); yyless(0); } YY_BREAK -case 502: -YY_RULE_SETUP -#line 1161 "seclang-scanner.ll" -{ BEGIN(EXPECTING_ACTIONS_ONLY_ONE); } - YY_BREAK case 503: -/* rule 503 can match eol */ YY_RULE_SETUP -#line 1163 "seclang-scanner.ll" -{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } +#line 1162 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS_ONLY_ONE); } YY_BREAK case 504: /* rule 504 can match eol */ @@ -8219,7 +8269,7 @@ case 505: /* rule 505 can match eol */ YY_RULE_SETUP #line 1165 "seclang-scanner.ll" -{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ONLY_ONE); } +{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } YY_BREAK case 506: /* rule 506 can match eol */ @@ -8230,8 +8280,8 @@ YY_RULE_SETUP case 507: /* rule 507 can match eol */ YY_RULE_SETUP -#line 1168 "seclang-scanner.ll" -{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } +#line 1167 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ONLY_ONE); } YY_BREAK case 508: /* rule 508 can match eol */ @@ -8254,8 +8304,8 @@ YY_RULE_SETUP case 511: /* rule 511 can match eol */ YY_RULE_SETUP -#line 1173 "seclang-scanner.ll" -{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ONLY_ONE); } +#line 1172 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } YY_BREAK case 512: /* rule 512 can match eol */ @@ -8276,15 +8326,15 @@ YY_RULE_SETUP { driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ONLY_ONE); } YY_BREAK case 515: +/* rule 515 can match eol */ YY_RULE_SETUP -#line 1178 "seclang-scanner.ll" -{ BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } +#line 1177 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ONLY_ONE); } YY_BREAK case 516: -/* rule 516 can match eol */ YY_RULE_SETUP -#line 1180 "seclang-scanner.ll" -{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } +#line 1179 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } YY_BREAK case 517: /* rule 517 can match eol */ @@ -8295,7 +8345,7 @@ YY_RULE_SETUP case 518: /* rule 518 can match eol */ YY_RULE_SETUP -#line 1183 "seclang-scanner.ll" +#line 1182 "seclang-scanner.ll" { driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } YY_BREAK case 519: @@ -8317,22 +8367,22 @@ YY_RULE_SETUP { driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } YY_BREAK case 522: +/* rule 522 can match eol */ YY_RULE_SETUP -#line 1188 "seclang-scanner.ll" -{ BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } +#line 1187 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } YY_BREAK - - case 523: YY_RULE_SETUP -#line 1193 "seclang-scanner.ll" -{ } +#line 1189 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS_ENDS_WITH_DOUBLE_QUOTE); } YY_BREAK + + case 524: -/* rule 524 can match eol */ YY_RULE_SETUP #line 1194 "seclang-scanner.ll" -{ driver.loc.back()->lines(1); driver.loc.back()->step(); } +{ } YY_BREAK case 525: /* rule 525 can match eol */ @@ -8340,14 +8390,14 @@ YY_RULE_SETUP #line 1195 "seclang-scanner.ll" { driver.loc.back()->lines(1); driver.loc.back()->step(); } YY_BREAK - - case 526: /* rule 526 can match eol */ YY_RULE_SETUP -#line 1199 "seclang-scanner.ll" +#line 1196 "seclang-scanner.ll" { driver.loc.back()->lines(1); driver.loc.back()->step(); } YY_BREAK + + case 527: /* rule 527 can match eol */ YY_RULE_SETUP @@ -8358,27 +8408,33 @@ case 528: /* rule 528 can match eol */ YY_RULE_SETUP #line 1201 "seclang-scanner.ll" -{ BEGIN(INITIAL); driver.loc.back()->lines(1); driver.loc.back()->step(); } +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } YY_BREAK - case 529: +/* rule 529 can match eol */ YY_RULE_SETUP -#line 1206 "seclang-scanner.ll" -{ BEGIN(LEXING_ERROR); yyless(0); } +#line 1202 "seclang-scanner.ll" +{ BEGIN(INITIAL); driver.loc.back()->lines(1); driver.loc.back()->step(); } YY_BREAK + case 530: YY_RULE_SETUP -#line 1208 "seclang-scanner.ll" -{ driver.error (*driver.loc.back(), "Invalid input: ", yytext); throw p::syntax_error(*driver.loc.back(), ""); } +#line 1207 "seclang-scanner.ll" +{ BEGIN(LEXING_ERROR); yyless(0); } YY_BREAK case 531: YY_RULE_SETUP #line 1209 "seclang-scanner.ll" -{ driver.error (*driver.loc.back(), "Expecting an action, got: ", yytext); throw p::syntax_error(*driver.loc.back(), ""); } +{ driver.error (*driver.loc.back(), "Invalid input: ", yytext); throw p::syntax_error(*driver.loc.back(), ""); } YY_BREAK case 532: YY_RULE_SETUP #line 1210 "seclang-scanner.ll" +{ driver.error (*driver.loc.back(), "Expecting an action, got: ", yytext); throw p::syntax_error(*driver.loc.back(), ""); } + YY_BREAK +case 533: +YY_RULE_SETUP +#line 1211 "seclang-scanner.ll" { driver.error (*driver.loc.back(), "Expecting a variable, got: : ", yytext); throw p::syntax_error(*driver.loc.back(), ""); } YY_BREAK case YY_STATE_EOF(INITIAL): @@ -8417,7 +8473,7 @@ case YY_STATE_EOF(SETVAR_ACTION_QUOTED): case YY_STATE_EOF(SETVAR_ACTION_QUOTED_WAITING_COLLECTION_ELEM): case YY_STATE_EOF(SETVAR_ACTION_QUOTED_WAITING_OPERATION): case YY_STATE_EOF(SETVAR_ACTION_QUOTED_WAITING_CONTENT): -#line 1213 "seclang-scanner.ll" +#line 1214 "seclang-scanner.ll" { if (driver.ref.size() > 1) { driver.ref.pop_back(); @@ -8439,9 +8495,9 @@ case YY_STATE_EOF(SETVAR_ACTION_QUOTED_WAITING_CONTENT): } } YY_BREAK -case 533: +case 534: YY_RULE_SETUP -#line 1235 "seclang-scanner.ll" +#line 1236 "seclang-scanner.ll" { std::string err; const char *file = strchr(yytext, ' ') + 1; @@ -8464,13 +8520,13 @@ YY_RULE_SETUP } driver.ref.push_back(f); driver.loc.push_back(new yy::location()); - yypush_buffer_state(yy_create_buffer( yyin, YY_BUF_SIZE )); + yypush_buffer_state(yy_create_buffer(yyin,YY_BUF_SIZE )); } } YY_BREAK -case 534: +case 535: YY_RULE_SETUP -#line 1261 "seclang-scanner.ll" +#line 1262 "seclang-scanner.ll" { std::string err; const char *file = strchr(yytext, ' ') + 1; @@ -8494,15 +8550,15 @@ YY_RULE_SETUP } driver.ref.push_back(f.c_str()); driver.loc.push_back(new yy::location()); - yypush_buffer_state(yy_create_buffer( yyin, YY_BUF_SIZE )); + yypush_buffer_state(yy_create_buffer(yyin,YY_BUF_SIZE )); } free(f); } YY_BREAK -case 535: -/* rule 535 can match eol */ +case 536: +/* rule 536 can match eol */ YY_RULE_SETUP -#line 1289 "seclang-scanner.ll" +#line 1290 "seclang-scanner.ll" { HttpsClient c; std::string key; @@ -8538,12 +8594,12 @@ YY_RULE_SETUP yy_scan_string(c.content.c_str()); } YY_BREAK -case 536: +case 537: YY_RULE_SETUP -#line 1325 "seclang-scanner.ll" +#line 1326 "seclang-scanner.ll" ECHO; YY_BREAK -#line 8546 "seclang-scanner.cc" +#line 8603 "seclang-scanner.cc" case YY_END_OF_BUFFER: { @@ -8625,7 +8681,7 @@ ECHO; { (yy_did_buffer_switch_on_eof) = 0; - if ( yywrap( ) ) + if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up @@ -8684,6 +8740,7 @@ ECHO; /* %if-c++-only */ /* %not-for-header */ + /* %ok-for-header */ /* %endif */ @@ -8768,8 +8825,7 @@ static int yy_get_next_buffer (void) b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ - yyrealloc( (void *) b->yy_ch_buf, - (yy_size_t) (b->yy_buf_size + 2) ); + yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ @@ -8801,7 +8857,7 @@ static int yy_get_next_buffer (void) if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; - yyrestart( yyin ); + yyrestart(yyin ); } else @@ -8818,12 +8874,9 @@ static int yy_get_next_buffer (void) if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc( - (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size ); + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); - /* "- 2" to take care of EOB's */ - YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); } (yy_n_chars) += number_to_move; @@ -8839,6 +8892,7 @@ static int yy_get_next_buffer (void) /* %if-c-only */ /* %not-for-header */ + static yy_state_type yy_get_previous_state (void) /* %endif */ /* %if-c++-only */ @@ -8862,10 +8916,10 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 3911 ) - yy_c = yy_meta[yy_c]; + if ( yy_current_state >= 3918 ) + yy_c = yy_meta[(unsigned int) yy_c]; } - yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; } return yy_current_state; @@ -8895,11 +8949,11 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 3911 ) - yy_c = yy_meta[yy_c]; + if ( yy_current_state >= 3918 ) + yy_c = yy_meta[(unsigned int) yy_c]; } - yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; - yy_is_jam = (yy_current_state == 3910); + yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; + yy_is_jam = (yy_current_state == 3917); return yy_is_jam ? 0 : yy_current_state; } @@ -8938,7 +8992,7 @@ static int yy_get_next_buffer (void) else { /* need more input */ - int offset = (int) ((yy_c_buf_p) - (yytext_ptr)); + int offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) @@ -8955,13 +9009,13 @@ static int yy_get_next_buffer (void) */ /* Reset buffer status. */ - yyrestart( yyin ); + yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { - if ( yywrap( ) ) + if ( yywrap( ) ) return 0; if ( ! (yy_did_buffer_switch_on_eof) ) @@ -9007,11 +9061,11 @@ static int yy_get_next_buffer (void) if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = - yy_create_buffer( yyin, YY_BUF_SIZE ); + yy_create_buffer(yyin,YY_BUF_SIZE ); } - yy_init_buffer( YY_CURRENT_BUFFER, input_file ); - yy_load_buffer_state( ); + yy_init_buffer(YY_CURRENT_BUFFER,input_file ); + yy_load_buffer_state( ); } /* %if-c++-only */ @@ -9046,7 +9100,7 @@ static int yy_get_next_buffer (void) } YY_CURRENT_BUFFER_LVALUE = new_buffer; - yy_load_buffer_state( ); + yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag @@ -9086,22 +9140,22 @@ static void yy_load_buffer_state (void) { YY_BUFFER_STATE b; - b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) ); + b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); - b->yy_buf_size = size; + b->yy_buf_size = (yy_size_t)size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ - b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) ); + b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; - yy_init_buffer( b, file ); + yy_init_buffer(b,file ); return b; } @@ -9127,9 +9181,9 @@ static void yy_load_buffer_state (void) YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) - yyfree( (void *) b->yy_ch_buf ); + yyfree((void *) b->yy_ch_buf ); - yyfree( (void *) b ); + yyfree((void *) b ); } /* Initializes or reinitializes a buffer. @@ -9145,7 +9199,7 @@ static void yy_load_buffer_state (void) { int oerrno = errno; - yy_flush_buffer( b ); + yy_flush_buffer(b ); /* %if-c-only */ b->yy_input_file = file; @@ -9201,7 +9255,7 @@ static void yy_load_buffer_state (void) b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) - yy_load_buffer_state( ); + yy_load_buffer_state( ); } /* %if-c-or-c++ */ @@ -9237,7 +9291,7 @@ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ - yy_load_buffer_state( ); + yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /* %endif */ @@ -9262,7 +9316,7 @@ void yypop_buffer_state (void) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { - yy_load_buffer_state( ); + yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } @@ -9278,7 +9332,7 @@ static void yyensure_buffer_stack (void) /* %if-c++-only */ /* %endif */ { - yy_size_t num_to_alloc; + int num_to_alloc; if (!(yy_buffer_stack)) { @@ -9337,11 +9391,11 @@ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) /* They forgot to leave room for the EOB's. */ return NULL; - b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) ); + b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); - b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ + b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = NULL; @@ -9351,7 +9405,7 @@ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; - yy_switch_to_buffer( b ); + yy_switch_to_buffer(b ); return b; } @@ -9366,10 +9420,10 @@ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ -YY_BUFFER_STATE yy_scan_string (const char * yystr ) +YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { - return yy_scan_bytes( yystr, (int) strlen(yystr) ); + return yy_scan_bytes(yystr,(int) strlen(yystr) ); } /* %endif */ @@ -9381,7 +9435,7 @@ YY_BUFFER_STATE yy_scan_string (const char * yystr ) * * @return the newly allocated buffer state object. */ -YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len ) +YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) { YY_BUFFER_STATE b; char *buf; @@ -9390,7 +9444,7 @@ YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len ) /* Get memory for full buffer, including space for trailing EOB's. */ n = (yy_size_t) (_yybytes_len + 2); - buf = (char *) yyalloc( n ); + buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); @@ -9399,7 +9453,7 @@ YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len ) buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; - b = yy_scan_buffer( buf, n ); + b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); @@ -9417,9 +9471,9 @@ YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len ) #endif /* %if-c-only */ -static void yynoreturn yy_fatal_error (const char* msg ) +static void yynoreturn yy_fatal_error (yyconst char* msg ) { - fprintf( stderr, "%s\n", msg ); + (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* %endif */ @@ -9574,7 +9628,7 @@ int yylex_destroy (void) /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ - yy_delete_buffer( YY_CURRENT_BUFFER ); + yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } @@ -9598,7 +9652,7 @@ int yylex_destroy (void) */ #ifndef yytext_ptr -static void yy_flex_strncpy (char* s1, const char * s2, int n ) +static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { int i; @@ -9608,7 +9662,7 @@ static void yy_flex_strncpy (char* s1, const char * s2, int n ) #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen (const char * s ) +static int yy_flex_strlen (yyconst char * s ) { int n; for ( n = 0; s[n]; ++n ) @@ -9648,7 +9702,8 @@ void yyfree (void * ptr ) /* %ok-for-header */ -#line 1325 "seclang-scanner.ll" +#line 1326 "seclang-scanner.ll" + namespace modsecurity { diff --git a/src/parser/stack.hh b/src/parser/stack.hh index 1ea2702225..bf8486e347 100644 --- a/src/parser/stack.hh +++ b/src/parser/stack.hh @@ -1,8 +1,157 @@ -// A Bison parser, made by GNU Bison 3.2. - -// Starting with Bison 3.2, this file is useless: the structure it -// used to define is now defined with the parser itself. -// -// To get rid of this file: -// 1. add 'require "3.2"' (or newer) to your grammar file -// 2. remove references to this file from your build system. +// A Bison parser, made by GNU Bison 3.0.4. + +// Stack handling for Bison parsers in C++ + +// Copyright (C) 2002-2015 Free Software Foundation, Inc. + +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +// As a special exception, you may create a larger work that contains +// part or all of the Bison parser skeleton and distribute that work +// under terms of your choice, so long as that work isn't itself a +// parser generator using the skeleton or a modified version thereof +// as a parser skeleton. Alternatively, if you modify or redistribute +// the parser skeleton itself, you may (at your option) remove this +// special exception, which will cause the skeleton and the resulting +// Bison output files to be licensed under the GNU General Public +// License without this special exception. + +// This special exception was added by the Free Software Foundation in +// version 2.2 of Bison. + +/** + ** \file stack.hh + ** Define the yy::stack class. + */ + +#ifndef YY_YY_STACK_HH_INCLUDED +# define YY_YY_STACK_HH_INCLUDED + +# include + + +namespace yy { +#line 46 "stack.hh" // stack.hh:132 + template > + class stack + { + public: + // Hide our reversed order. + typedef typename S::reverse_iterator iterator; + typedef typename S::const_reverse_iterator const_iterator; + + stack () + : seq_ () + { + seq_.reserve (200); + } + + stack (unsigned int n) + : seq_ (n) + {} + + inline + T& + operator[] (unsigned int i) + { + return seq_[seq_.size () - 1 - i]; + } + + inline + const T& + operator[] (unsigned int i) const + { + return seq_[seq_.size () - 1 - i]; + } + + /// Steal the contents of \a t. + /// + /// Close to move-semantics. + inline + void + push (T& t) + { + seq_.push_back (T()); + operator[](0).move (t); + } + + inline + void + pop (unsigned int n = 1) + { + for (; n; --n) + seq_.pop_back (); + } + + void + clear () + { + seq_.clear (); + } + + inline + typename S::size_type + size () const + { + return seq_.size (); + } + + inline + const_iterator + begin () const + { + return seq_.rbegin (); + } + + inline + const_iterator + end () const + { + return seq_.rend (); + } + + private: + stack (const stack&); + stack& operator= (const stack&); + /// The wrapped container. + S seq_; + }; + + /// Present a slice of the top of a stack. + template > + class slice + { + public: + slice (const S& stack, unsigned int range) + : stack_ (stack) + , range_ (range) + {} + + inline + const T& + operator [] (unsigned int i) const + { + return stack_[range_ - i]; + } + + private: + const S& stack_; + unsigned int range_; + }; + + +} // yy +#line 156 "stack.hh" // stack.hh:132 + +#endif // !YY_YY_STACK_HH_INCLUDED