From ee1f3d336c6575d6db75e6dd40afa1d4fd109165 Mon Sep 17 00:00:00 2001 From: AKash Date: Tue, 22 Aug 2023 11:08:56 +0530 Subject: [PATCH] issue fixed #1740 --- src/alasqlparser.jison | 2 +- src/alasqlparser.js | 29233 +++++++++++++++++++++++++++++++++++---- test/test238.json | 2 +- 3 files changed, 26743 insertions(+), 2494 deletions(-) diff --git a/src/alasqlparser.jison b/src/alasqlparser.jison index ec3c6973d1..8da87799db 100755 --- a/src/alasqlparser.jison +++ b/src/alasqlparser.jison @@ -354,7 +354,7 @@ Literal else $$ = $1.toLowerCase(); } | BRALITERAL - { $$ = doubleq($1.substr(1,$1.length-2)); } + { $$ = {val:doubleq($1.substr(1,$1.length-2)), wrap:$1.substr(0,1)}; } | error NonReserved { $$ = $2.toLowerCase() } ; diff --git a/src/alasqlparser.js b/src/alasqlparser.js index 0c3d31d25f..37d7823823 100755 --- a/src/alasqlparser.js +++ b/src/alasqlparser.js @@ -1,2997 +1,27246 @@ -/* parser generated by jison 0.4.18 */ + +/* parser generated by jison 0.6.1-215 */ + /* - Returns a Parser object of the following structure: + * Returns a Parser object of the following structure: + * + * Parser: { + * yy: {} The so-called "shared state" or rather the *source* of it; + * the real "shared state" `yy` passed around to + * the rule actions, etc. is a derivative/copy of this one, + * not a direct reference! + * } + * + * Parser.prototype: { + * yy: {}, + * EOF: 1, + * TERROR: 2, + * + * trace: function(errorMessage, ...), + * + * JisonParserError: function(msg, hash), + * + * quoteName: function(name), + * Helper function which can be overridden by user code later on: put suitable + * quotes around literal IDs in a description string. + * + * originalQuoteName: function(name), + * The basic quoteName handler provided by JISON. + * `cleanupAfterParse()` will clean up and reset `quoteName()` to reference this function + * at the end of the `parse()`. + * + * describeSymbol: function(symbol), + * Return a more-or-less human-readable description of the given symbol, when + * available, or the symbol itself, serving as its own 'description' for lack + * of something better to serve up. + * + * Return NULL when the symbol is unknown to the parser. + * + * symbols_: {associative list: name ==> number}, + * terminals_: {associative list: number ==> name}, + * nonterminals: {associative list: rule-name ==> {associative list: number ==> rule-alt}}, + * terminal_descriptions_: (if there are any) {associative list: number ==> description}, + * productions_: [...], + * + * performAction: function parser__performAction(yytext, yyleng, yylineno, yyloc, yystate, yysp, yyvstack, yylstack, yystack, yysstack), + * + * The function parameters and `this` have the following value/meaning: + * - `this` : reference to the `yyval` internal object, which has members (`$` and `_$`) + * to store/reference the rule value `$$` and location info `@$`. + * + * One important thing to note about `this` a.k.a. `yyval`: every *reduce* action gets + * to see the same object via the `this` reference, i.e. if you wish to carry custom + * data from one reduce action through to the next within a single parse run, then you + * may get nasty and use `yyval` a.k.a. `this` for storing you own semi-permanent data. + * + * `this.yy` is a direct reference to the `yy` shared state object. + * + * `%parse-param`-specified additional `parse()` arguments have been added to this `yy` + * object at `parse()` start and are therefore available to the action code via the + * same named `yy.xxxx` attributes (where `xxxx` represents a identifier name from + * the %parse-param` list. + * + * - `yytext` : reference to the lexer value which belongs to the last lexer token used + * to match this rule. This is *not* the look-ahead token, but the last token + * that's actually part of this rule. + * + * Formulated another way, `yytext` is the value of the token immediately preceeding + * the current look-ahead token. + * Caveats apply for rules which don't require look-ahead, such as epsilon rules. + * + * - `yyleng` : ditto as `yytext`, only now for the lexer.yyleng value. + * + * - `yylineno`: ditto as `yytext`, only now for the lexer.yylineno value. + * + * - `yyloc` : ditto as `yytext`, only now for the lexer.yylloc lexer token location info. + * + * WARNING: since jison 0.4.18-186 this entry may be NULL/UNDEFINED instead + * of an empty object when no suitable location info can be provided. + * + * - `yystate` : the current parser state number, used internally for dispatching and + * executing the action code chunk matching the rule currently being reduced. + * + * - `yysp` : the current state stack position (a.k.a. 'stack pointer') + * + * This one comes in handy when you are going to do advanced things to the parser + * stacks, all of which are accessible from your action code (see the next entries below). + * + * Also note that you can access this and other stack index values using the new double-hash + * syntax, i.e. `##$ === ##0 === yysp`, while `##1` is the stack index for all things + * related to the first rule term, just like you have `$1`, `@1` and `#1`. + * This is made available to write very advanced grammar action rules, e.g. when you want + * to investigate the parse state stack in your action code, which would, for example, + * be relevant when you wish to implement error diagnostics and reporting schemes similar + * to the work described here: + * + * + Pottier, F., 2016. Reachability and error diagnosis in LR(1) automata. + * In Journées Francophones des Languages Applicatifs. + * + * + Jeffery, C.L., 2003. Generating LR syntax error messages from examples. + * ACM Transactions on Programming Languages and Systems (TOPLAS), 25(5), pp.631–640. + * + * - `yyrulelength`: the current rule's term count, i.e. the number of entries occupied on the stack. + * + * This one comes in handy when you are going to do advanced things to the parser + * stacks, all of which are accessible from your action code (see the next entries below). + * + * - `yyvstack`: reference to the parser value stack. Also accessed via the `$1` etc. + * constructs. + * + * - `yylstack`: reference to the parser token location stack. Also accessed via + * the `@1` etc. constructs. + * + * WARNING: since jison 0.4.18-186 this array MAY contain slots which are + * UNDEFINED rather than an empty (location) object, when the lexer/parser + * action code did not provide a suitable location info object when such a + * slot was filled! + * + * - `yystack` : reference to the parser token id stack. Also accessed via the + * `#1` etc. constructs. + * + * Note: this is a bit of a **white lie** as we can statically decode any `#n` reference to + * its numeric token id value, hence that code wouldn't need the `yystack` but *you* might + * want access this array for your own purposes, such as error analysis as mentioned above! + * + * Note that this stack stores the current stack of *tokens*, that is the sequence of + * already parsed=reduced *nonterminals* (tokens representing rules) and *terminals* + * (lexer tokens *shifted* onto the stack until the rule they belong to is found and + * *reduced*. + * + * - `yysstack`: reference to the parser state stack. This one carries the internal parser + * *states* such as the one in `yystate`, which are used to represent + * the parser state machine in the *parse table*. *Very* *internal* stuff, + * what can I say? If you access this one, you're clearly doing wicked things + * + * - `...` : the extra arguments you specified in the `%parse-param` statement in your + * grammar definition file. + * + * table: [...], + * State transition table + * ---------------------- + * + * index levels are: + * - `state` --> hash table + * - `symbol` --> action (number or array) + * + * If the `action` is an array, these are the elements' meaning: + * - index [0]: 1 = shift, 2 = reduce, 3 = accept + * - index [1]: GOTO `state` + * + * If the `action` is a number, it is the GOTO `state` + * + * defaultActions: {...}, + * + * parseError: function(str, hash, ExceptionClass), + * yyError: function(str, ...), + * yyRecovering: function(), + * yyErrOk: function(), + * yyClearIn: function(), + * + * constructParseErrorInfo: function(error_message, exception_object, expected_token_set, is_recoverable), + * Helper function **which will be set up during the first invocation of the `parse()` method**. + * Produces a new errorInfo 'hash object' which can be passed into `parseError()`. + * See it's use in this parser kernel in many places; example usage: + * + * var infoObj = parser.constructParseErrorInfo('fail!', null, + * parser.collect_expected_token_set(state), true); + * var retVal = parser.parseError(infoObj.errStr, infoObj, parser.JisonParserError); + * + * originalParseError: function(str, hash, ExceptionClass), + * The basic `parseError` handler provided by JISON. + * `cleanupAfterParse()` will clean up and reset `parseError()` to reference this function + * at the end of the `parse()`. + * + * options: { ... parser %options ... }, + * + * parse: function(input[, args...]), + * Parse the given `input` and return the parsed value (or `true` when none was provided by + * the root action, in which case the parser is acting as a *matcher*). + * You MAY use the additional `args...` parameters as per `%parse-param` spec of this grammar: + * these extra `args...` are added verbatim to the `yy` object reference as member variables. + * + * WARNING: + * Parser's additional `args...` parameters (via `%parse-param`) MAY conflict with + * any attributes already added to `yy` by the jison run-time; + * when such a collision is detected an exception is thrown to prevent the generated run-time + * from silently accepting this confusing and potentially hazardous situation! + * + * The lexer MAY add its own set of additional parameters (via the `%parse-param` line in + * the lexer section of the grammar spec): these will be inserted in the `yy` shared state + * object and any collision with those will be reported by the lexer via a thrown exception. + * + * cleanupAfterParse: function(resultValue, invoke_post_methods, do_not_nuke_errorinfos), + * Helper function **which will be set up during the first invocation of the `parse()` method**. + * This helper API is invoked at the end of the `parse()` call, unless an exception was thrown + * and `%options no-try-catch` has been defined for this grammar: in that case this helper MAY + * be invoked by calling user code to ensure the `post_parse` callbacks are invoked and + * the internal parser gets properly garbage collected under these particular circumstances. + * + * yyMergeLocationInfo: function(first_index, last_index, first_yylloc, last_yylloc, dont_look_back), + * Helper function **which will be set up during the first invocation of the `parse()` method**. + * This helper API can be invoked to calculate a spanning `yylloc` location info object. + * + * Note: %epsilon rules MAY specify no `first_index` and `first_yylloc`, in which case + * this function will attempt to obtain a suitable location marker by inspecting the location stack + * backwards. + * + * For more info see the documentation comment further below, immediately above this function's + * implementation. + * + * lexer: { + * yy: {...}, A reference to the so-called "shared state" `yy` once + * received via a call to the `.setInput(input, yy)` lexer API. + * EOF: 1, + * ERROR: 2, + * JisonLexerError: function(msg, hash), + * parseError: function(str, hash, ExceptionClass), + * setInput: function(input, [yy]), + * input: function(), + * unput: function(str), + * more: function(), + * reject: function(), + * less: function(n), + * pastInput: function(n), + * upcomingInput: function(n), + * showPosition: function(), + * test_match: function(regex_match_array, rule_index, ...), + * next: function(...), + * lex: function(...), + * begin: function(condition), + * pushState: function(condition), + * popState: function(), + * topState: function(), + * _currentRules: function(), + * stateStackSize: function(), + * cleanupAfterLex: function() + * + * options: { ... lexer %options ... }, + * + * performAction: function(yy, yy_, $avoiding_name_collisions, YY_START, ...), + * rules: [...], + * conditions: {associative list: name ==> set}, + * } + * } + * + * + * token location info (@$, _$, etc.): { + * first_line: n, + * last_line: n, + * first_column: n, + * last_column: n, + * range: [start_number, end_number] + * (where the numbers are indexes into the input string, zero-based) + * } + * + * --- + * + * The `parseError` function receives a 'hash' object with these members for lexer and + * parser errors: + * + * { + * text: (matched text) + * token: (the produced terminal token, if any) + * token_id: (the produced terminal token numeric ID, if any) + * line: (yylineno) + * loc: (yylloc) + * } + * + * parser (grammar) errors will also provide these additional members: + * + * { + * expected: (array describing the set of expected tokens; + * may be UNDEFINED when we cannot easily produce such a set) + * state: (integer (or array when the table includes grammar collisions); + * represents the current internal state of the parser kernel. + * can, for example, be used to pass to the `collect_expected_token_set()` + * API to obtain the expected token set) + * action: (integer; represents the current internal action which will be executed) + * new_state: (integer; represents the next/planned internal state, once the current + * action has executed) + * recoverable: (boolean: TRUE when the parser MAY have an error recovery rule + * available for this particular error) + * state_stack: (array: the current parser LALR/LR internal state stack; this can be used, + * for instance, for advanced error analysis and reporting) + * value_stack: (array: the current parser LALR/LR internal `$$` value stack; this can be used, + * for instance, for advanced error analysis and reporting) + * location_stack: (array: the current parser LALR/LR internal location stack; this can be used, + * for instance, for advanced error analysis and reporting) + * yy: (object: the current parser internal "shared state" `yy` + * as is also available in the rule actions; this can be used, + * for instance, for advanced error analysis and reporting) + * lexer: (reference to the current lexer instance used by the parser) + * parser: (reference to the current parser instance) + * } + * + * while `this` will reference the current parser instance. + * + * When `parseError` is invoked by the lexer, `this` will still reference the related *parser* + * instance, while these additional `hash` fields will also be provided: + * + * { + * lexer: (reference to the current lexer instance which reported the error) + * } + * + * When `parseError` is invoked by the parser due to a **JavaScript exception** being fired + * from either the parser or lexer, `this` will still reference the related *parser* + * instance, while these additional `hash` fields will also be provided: + * + * { + * exception: (reference to the exception thrown) + * } + * + * Please do note that in the latter situation, the `expected` field will be omitted as + * this type of failure is assumed not to be due to *parse errors* but rather due to user + * action code in either parser or lexer failing unexpectedly. + * + * --- + * + * You can specify parser options by setting / modifying the `.yy` object of your Parser instance. + * These options are available: + * + * ### options which are global for all parser instances + * + * Parser.pre_parse: function(yy) + * optional: you can specify a pre_parse() function in the chunk following + * the grammar, i.e. after the last `%%`. + * Parser.post_parse: function(yy, retval, parseInfo) { return retval; } + * optional: you can specify a post_parse() function in the chunk following + * the grammar, i.e. after the last `%%`. When it does not return any value, + * the parser will return the original `retval`. + * + * ### options which can be set up per parser instance + * + * yy: { + * pre_parse: function(yy) + * optional: is invoked before the parse cycle starts (and before the first + * invocation of `lex()`) but immediately after the invocation of + * `parser.pre_parse()`). + * post_parse: function(yy, retval, parseInfo) { return retval; } + * optional: is invoked when the parse terminates due to success ('accept') + * or failure (even when exceptions are thrown). + * `retval` contains the return value to be produced by `Parser.parse()`; + * this function can override the return value by returning another. + * When it does not return any value, the parser will return the original + * `retval`. + * This function is invoked immediately before `parser.post_parse()`. + * + * parseError: function(str, hash, ExceptionClass) + * optional: overrides the default `parseError` function. + * quoteName: function(name), + * optional: overrides the default `quoteName` function. + * } + * + * parser.lexer.options: { + * pre_lex: function() + * optional: is invoked before the lexer is invoked to produce another token. + * `this` refers to the Lexer object. + * post_lex: function(token) { return token; } + * optional: is invoked when the lexer has produced a token `token`; + * this function can override the returned token value by returning another. + * When it does not return any (truthy) value, the lexer will return + * the original `token`. + * `this` refers to the Lexer object. + * + * ranges: boolean + * optional: `true` ==> token location info will include a .range[] member. + * flex: boolean + * optional: `true` ==> flex-like lexing behaviour where the rules are tested + * exhaustively to find the longest match. + * backtrack_lexer: boolean + * optional: `true` ==> lexer regexes are tested in order and for invoked; + * the lexer terminates the scan when a token is returned by the action code. + * xregexp: boolean + * optional: `true` ==> lexer rule regexes are "extended regex format" requiring the + * `XRegExp` library. When this `%option` has not been specified at compile time, all lexer + * rule regexes have been written as standard JavaScript RegExp expressions. + * } + */ - Parser: { - yy: {} - } + + + var alasqlparser = (function () { + + +// See also: +// http://stackoverflow.com/questions/1382107/whats-a-good-way-to-extend-error-in-javascript/#35881508 +// but we keep the prototype.constructor and prototype.name assignment lines too for compatibility +// with userland code which might access the derived class in a 'classic' way. +function JisonParserError(msg, hash) { + Object.defineProperty(this, 'name', { + enumerable: false, + writable: false, + value: 'JisonParserError' + }); + + if (msg == null) msg = '???'; + + Object.defineProperty(this, 'message', { + enumerable: false, + writable: true, + value: msg + }); + + this.hash = hash; - Parser.prototype: { - yy: {}, - trace: function(), - symbols_: {associative list: name ==> number}, - terminals_: {associative list: number ==> name}, - productions_: [...], - performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate, $$, _$), - table: [...], - defaultActions: {...}, - parseError: function(str, hash), - parse: function(input), - - lexer: { - EOF: 1, - parseError: function(str, hash), - setInput: function(input), - input: function(), - unput: function(str), - more: function(), - less: function(n), - pastInput: function(), - upcomingInput: function(), - showPosition: function(), - test_match: function(regex_match_array, rule_index), - next: function(), - lex: function(), - begin: function(condition), - popState: function(), - _currentRules: function(), - topState: function(), - pushState: function(condition), - - options: { - ranges: boolean (optional: true ==> token location info will include a .range[] member) - flex: boolean (optional: true ==> flex-like lexing behaviour where the rules are tested exhaustively to find the longest match) - backtrack_lexer: boolean (optional: true ==> lexer regexes are tested in order and for each matching regex the action code is invoked; the lexer terminates the scan when a token is returned by the action code) - }, - - performAction: function(yy, yy_, $avoiding_name_collisions, YY_START), - rules: [...], - conditions: {associative list: name ==> set}, + var stacktrace; + if (hash && hash.exception instanceof Error) { + var ex2 = hash.exception; + this.message = ex2.message || msg; + stacktrace = ex2.stack; } - } + if (!stacktrace) { + if (Error.hasOwnProperty('captureStackTrace')) { // V8/Chrome engine + Error.captureStackTrace(this, this.constructor); + } else { + stacktrace = (new Error(msg)).stack; + } + } + if (stacktrace) { + Object.defineProperty(this, 'stack', { + enumerable: false, + writable: false, + value: stacktrace + }); + } +} +if (typeof Object.setPrototypeOf === 'function') { + Object.setPrototypeOf(JisonParserError.prototype, Error.prototype); +} else { + JisonParserError.prototype = Object.create(Error.prototype); +} +JisonParserError.prototype.constructor = JisonParserError; +JisonParserError.prototype.name = 'JisonParserError'; - token location info (@$, _$, etc.): { - first_line: n, - last_line: n, - first_column: n, - last_column: n, - range: [start_number, end_number] (where the numbers are indexes into the input string, regular zero-based) - } - the parseError function receives a 'hash' object with these members for lexer and parser errors: { - text: (matched text) - token: (the produced terminal token, if any) - line: (yylineno) - } - while parser (grammar) errors will also provide these members, i.e. parser errors deliver a superset of attributes: { - loc: (yylloc) - expected: (string describing the set of expected tokens) - recoverable: (boolean: TRUE when the parser has a error recovery rule available for this particular error) - } -*/ -var alasqlparser = (function(){ -var o=function(k,v,o,l){for(o=o||{},l=k.length;l--;o[k[l]]=v);return o},$V0=[2,13],$V1=[1,104],$V2=[1,102],$V3=[1,103],$V4=[1,6],$V5=[1,42],$V6=[1,79],$V7=[1,76],$V8=[1,94],$V9=[1,93],$Va=[1,69],$Vb=[1,101],$Vc=[1,85],$Vd=[1,64],$Ve=[1,71],$Vf=[1,84],$Vg=[1,66],$Vh=[1,70],$Vi=[1,68],$Vj=[1,61],$Vk=[1,74],$Vl=[1,62],$Vm=[1,67],$Vn=[1,83],$Vo=[1,77],$Vp=[1,86],$Vq=[1,87],$Vr=[1,81],$Vs=[1,82],$Vt=[1,80],$Vu=[1,88],$Vv=[1,89],$Vw=[1,90],$Vx=[1,91],$Vy=[1,92],$Vz=[1,98],$VA=[1,65],$VB=[1,78],$VC=[1,72],$VD=[1,96],$VE=[1,97],$VF=[1,63],$VG=[1,73],$VH=[1,108],$VI=[1,107],$VJ=[10,310,606,767],$VK=[10,310,314,606,767],$VL=[1,115],$VM=[1,116],$VN=[1,117],$VO=[1,118],$VP=[1,119],$VQ=[1,120],$VR=[130,357,414],$VS=[1,128],$VT=[1,127],$VU=[1,135],$VV=[1,165],$VW=[1,176],$VX=[1,179],$VY=[1,174],$VZ=[1,182],$V_=[1,186],$V$=[1,161],$V01=[1,183],$V11=[1,170],$V21=[1,172],$V31=[1,175],$V41=[1,184],$V51=[1,201],$V61=[1,202],$V71=[1,167],$V81=[1,194],$V91=[1,189],$Va1=[1,190],$Vb1=[1,195],$Vc1=[1,196],$Vd1=[1,197],$Ve1=[1,198],$Vf1=[1,199],$Vg1=[1,200],$Vh1=[1,203],$Vi1=[1,204],$Vj1=[1,177],$Vk1=[1,178],$Vl1=[1,180],$Vm1=[1,181],$Vn1=[1,187],$Vo1=[1,193],$Vp1=[1,185],$Vq1=[1,188],$Vr1=[1,173],$Vs1=[1,171],$Vt1=[1,192],$Vu1=[1,205],$Vv1=[2,4,5],$Vw1=[2,476],$Vx1=[1,208],$Vy1=[1,213],$Vz1=[1,222],$VA1=[1,218],$VB1=[10,72,78,93,98,118,128,162,168,169,183,198,232,249,251,310,314,606,767],$VC1=[2,4,5,10,72,76,77,78,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,183,185,187,198,244,245,284,285,286,287,288,289,290,291,310,314,424,428,606,767],$VD1=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VE1=[1,251],$VF1=[1,258],$VG1=[1,267],$VH1=[1,272],$VI1=[1,271],$VJ1=[2,4,5,10,72,77,78,93,98,107,118,128,131,132,137,143,145,149,152,154,156,162,168,169,179,180,181,183,198,232,244,245,249,251,269,270,274,275,277,284,285,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,306,307,310,314,316,321,424,428,606,767],$VK1=[2,162],$VL1=[1,283],$VM1=[10,74,78,310,314,509,606,767],$VN1=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,193,198,206,208,222,223,224,225,226,227,228,229,230,231,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,306,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,348,360,372,373,374,377,378,390,393,400,404,405,406,407,408,409,410,412,413,421,422,424,428,430,437,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,518,519,520,521,606,767],$VO1=[2,4,5,10,53,72,89,124,146,156,189,270,271,293,310,339,342,343,400,404,405,408,410,412,413,421,422,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,521,606,767],$VP1=[1,564],$VQ1=[1,566],$VR1=[2,508],$VS1=[1,572],$VT1=[1,583],$VU1=[1,586],$VV1=[1,587],$VW1=[10,78,89,132,137,146,189,300,310,314,474,606,767],$VX1=[10,74,310,314,606,767],$VY1=[2,572],$VZ1=[1,605],$V_1=[2,4,5,156],$V$1=[1,643],$V02=[1,615],$V12=[1,649],$V22=[1,650],$V32=[1,623],$V42=[1,634],$V52=[1,621],$V62=[1,629],$V72=[1,622],$V82=[1,630],$V92=[1,632],$Va2=[1,624],$Vb2=[1,625],$Vc2=[1,644],$Vd2=[1,641],$Ve2=[1,642],$Vf2=[1,618],$Vg2=[1,620],$Vh2=[1,612],$Vi2=[1,613],$Vj2=[1,614],$Vk2=[1,616],$Vl2=[1,617],$Vm2=[1,619],$Vn2=[1,626],$Vo2=[1,627],$Vp2=[1,631],$Vq2=[1,633],$Vr2=[1,635],$Vs2=[1,636],$Vt2=[1,637],$Vu2=[1,638],$Vv2=[1,639],$Vw2=[1,645],$Vx2=[1,646],$Vy2=[1,647],$Vz2=[1,648],$VA2=[2,290],$VB2=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,231,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VC2=[2,364],$VD2=[1,671],$VE2=[1,681],$VF2=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,231,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VG2=[1,697],$VH2=[1,706],$VI2=[1,705],$VJ2=[2,4,5,10,72,74,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],$VK2=[10,72,74,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],$VL2=[2,202],$VM2=[1,728],$VN2=[10,72,78,93,98,118,128,162,168,169,183,232,249,251,310,314,606,767],$VO2=[2,163],$VP2=[1,731],$VQ2=[2,4,5,112],$VR2=[1,744],$VS2=[1,763],$VT2=[1,743],$VU2=[1,742],$VV2=[1,737],$VW2=[1,738],$VX2=[1,740],$VY2=[1,741],$VZ2=[1,745],$V_2=[1,746],$V$2=[1,747],$V03=[1,748],$V13=[1,749],$V23=[1,750],$V33=[1,751],$V43=[1,752],$V53=[1,753],$V63=[1,754],$V73=[1,755],$V83=[1,756],$V93=[1,757],$Va3=[1,758],$Vb3=[1,759],$Vc3=[1,760],$Vd3=[1,762],$Ve3=[1,764],$Vf3=[1,765],$Vg3=[1,766],$Vh3=[1,767],$Vi3=[1,768],$Vj3=[1,769],$Vk3=[1,770],$Vl3=[1,773],$Vm3=[1,774],$Vn3=[1,775],$Vo3=[1,776],$Vp3=[1,777],$Vq3=[1,778],$Vr3=[1,779],$Vs3=[1,780],$Vt3=[1,781],$Vu3=[1,782],$Vv3=[1,783],$Vw3=[1,784],$Vx3=[74,89,189],$Vy3=[10,74,78,154,187,230,301,310,314,347,360,372,373,377,378,606,767],$Vz3=[1,801],$VA3=[10,74,78,304,310,314,606,767],$VB3=[1,802],$VC3=[1,808],$VD3=[1,809],$VE3=[1,813],$VF3=[10,74,78,310,314,606,767],$VG3=[2,4,5,77,131,132,137,143,145,149,152,154,156,179,180,181,244,245,269,270,274,275,277,284,285,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,306,307,316,321,424,428],$VH3=[10,72,78,93,98,107,118,128,162,168,169,183,198,232,249,251,310,314,606,767],$VI3=[2,4,5,10,72,77,78,93,98,107,118,128,131,132,137,143,145,149,152,154,156,162,164,168,169,179,180,181,183,185,187,195,198,232,244,245,249,251,269,270,274,275,277,284,285,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,306,307,310,314,316,321,424,428,606,767],$VJ3=[2,4,5,132,300],$VK3=[1,848],$VL3=[10,74,76,78,310,314,606,767],$VM3=[2,743],$VN3=[10,74,76,78,132,139,141,145,152,310,314,424,428,606,767],$VO3=[2,1166],$VP3=[10,74,76,78,139,141,145,152,310,314,424,428,606,767],$VQ3=[10,74,76,78,139,141,145,310,314,424,428,606,767],$VR3=[10,74,78,139,141,310,314,606,767],$VS3=[10,78,89,132,146,189,300,310,314,474,606,767],$VT3=[339,342,343],$VU3=[2,769],$VV3=[1,873],$VW3=[1,874],$VX3=[1,875],$VY3=[1,876],$VZ3=[1,885],$V_3=[1,884],$V$3=[164,166,338],$V04=[2,449],$V14=[1,940],$V24=[2,4,5,77,131,156,293,294,295,296,297],$V34=[1,955],$V44=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,124,128,129,130,131,132,134,135,137,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,318,319,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$V54=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$V64=[2,380],$V74=[1,962],$V84=[310,312,314],$V94=[74,304],$Va4=[74,304,430],$Vb4=[1,969],$Vc4=[2,4,5,10,53,72,74,76,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$Vd4=[74,430],$Ve4=[1,982],$Vf4=[1,981],$Vg4=[1,988],$Vh4=[10,72,78,93,98,118,128,162,168,169,232,249,251,310,314,606,767],$Vi4=[1,1014],$Vj4=[10,72,78,310,314,606,767],$Vk4=[1,1020],$Vl4=[1,1021],$Vm4=[1,1022],$Vn4=[2,4,5,10,72,74,76,77,78,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,198,244,245,284,285,286,287,288,289,290,291,310,314,424,428,606,767],$Vo4=[1,1072],$Vp4=[1,1071],$Vq4=[1,1085],$Vr4=[1,1084],$Vs4=[1,1092],$Vt4=[10,72,74,78,93,98,107,118,128,162,168,169,183,198,232,249,251,310,314,606,767],$Vu4=[1,1124],$Vv4=[10,78,89,146,189,310,314,474,606,767],$Vw4=[1,1144],$Vx4=[1,1143],$Vy4=[1,1142],$Vz4=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VA4=[1,1158],$VB4=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,318,319,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VC4=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,319,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VD4=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,124,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,318,319,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VE4=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,124,128,129,130,131,132,134,135,137,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,318,319,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VF4=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,318,324,325,326,327,328,329,330,334,335,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VG4=[2,411],$VH4=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,107,118,122,128,129,130,131,132,134,135,137,143,145,146,148,149,150,152,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,318,334,335,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VI4=[2,288],$VJ4=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VK4=[10,78,310,314,606,767],$VL4=[1,1194],$VM4=[10,77,78,143,145,152,181,306,310,314,424,428,606,767],$VN4=[10,74,78,310,312,314,468,606,767],$VO4=[1,1205],$VP4=[10,72,78,118,128,162,168,169,232,249,251,310,314,606,767],$VQ4=[10,72,74,78,93,98,118,128,162,168,169,183,198,232,249,251,310,314,606,767],$VR4=[2,4,5,72,76,77,78,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,185,187,244,245,284,285,286,287,288,289,290,291,424,428],$VS4=[2,4,5,72,74,76,77,78,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,185,187,244,245,284,285,286,287,288,289,290,291,424,428],$VT4=[2,1090],$VU4=[2,4,5,72,74,76,77,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,185,187,244,245,284,285,286,287,288,289,290,291,424,428],$VV4=[1,1257],$VW4=[10,74,78,128,310,312,314,468,606,767],$VX4=[115,116,124],$VY4=[2,589],$VZ4=[1,1286],$V_4=[76,139],$V$4=[2,729],$V05=[1,1303],$V15=[1,1304],$V25=[2,4,5,10,53,72,76,89,124,146,156,189,230,270,271,293,310,314,339,342,343,400,404,405,408,410,412,413,421,422,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,521,606,767],$V35=[2,333],$V45=[1,1328],$V55=[1,1342],$V65=[1,1344],$V75=[2,492],$V85=[74,78],$V95=[10,310,312,314,468,606,767],$Va5=[10,72,78,118,162,168,169,232,249,251,310,314,606,767],$Vb5=[1,1360],$Vc5=[1,1364],$Vd5=[1,1365],$Ve5=[1,1367],$Vf5=[1,1368],$Vg5=[1,1369],$Vh5=[1,1370],$Vi5=[1,1371],$Vj5=[1,1372],$Vk5=[1,1373],$Vl5=[1,1374],$Vm5=[10,72,74,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,232,249,251,310,314,606,767],$Vn5=[1,1399],$Vo5=[10,72,78,118,162,168,169,249,251,310,314,606,767],$Vp5=[10,72,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,232,249,251,310,314,606,767],$Vq5=[1,1497],$Vr5=[1,1499],$Vs5=[2,4,5,77,143,145,152,156,181,293,294,295,296,297,306,424,428],$Vt5=[1,1513],$Vu5=[10,72,74,78,162,168,169,249,251,310,314,606,767],$Vv5=[1,1531],$Vw5=[1,1533],$Vx5=[1,1534],$Vy5=[1,1530],$Vz5=[1,1529],$VA5=[1,1528],$VB5=[1,1535],$VC5=[1,1525],$VD5=[1,1526],$VE5=[1,1527],$VF5=[1,1553],$VG5=[2,4,5,10,53,72,89,124,146,156,189,270,271,293,310,314,339,342,343,400,404,405,408,410,412,413,421,422,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,521,606,767],$VH5=[1,1564],$VI5=[1,1572],$VJ5=[1,1571],$VK5=[10,72,78,162,168,169,249,251,310,314,606,767],$VL5=[10,72,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],$VM5=[2,4,5,10,72,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],$VN5=[1,1632],$VO5=[1,1634],$VP5=[1,1631],$VQ5=[1,1633],$VR5=[187,193,372,373,374,377],$VS5=[2,520],$VT5=[1,1639],$VU5=[1,1658],$VV5=[10,72,78,162,168,169,310,314,606,767],$VW5=[1,1668],$VX5=[1,1669],$VY5=[1,1670],$VZ5=[1,1691],$V_5=[4,10,247,310,314,347,360,606,767],$V$5=[1,1739],$V06=[10,72,74,78,118,162,168,169,239,249,251,310,314,606,767],$V16=[2,4,5,77],$V26=[1,1833],$V36=[1,1845],$V46=[1,1864],$V56=[10,72,78,162,168,169,310,314,419,606,767],$V66=[10,74,78,230,310,314,606,767]; -var parser = {trace: function trace () { }, + + // helper: reconstruct the productions[] table + function bp(s) { + var rv = []; + var p = s.pop; + var r = s.rule; + for (var i = 0, l = p.length; i < l; i++) { + rv.push([ + p[i], + r[i] + ]); + } + return rv; + } + + + + // helper: reconstruct the defaultActions[] table + function bda(s) { + var rv = {}; + var d = s.idx; + var g = s.goto; + for (var i = 0, l = d.length; i < l; i++) { + var j = d[i]; + rv[j] = g[i]; + } + return rv; + } + + + + // helper: reconstruct the 'goto' table + function bt(s) { + var rv = []; + var d = s.len; + var y = s.symbol; + var t = s.type; + var a = s.state; + var m = s.mode; + var g = s.goto; + for (var i = 0, l = d.length; i < l; i++) { + var n = d[i]; + var q = {}; + for (var j = 0; j < n; j++) { + var z = y.shift(); + switch (t.shift()) { + case 2: + q[z] = [ + m.shift(), + g.shift() + ]; + break; + + case 0: + q[z] = a.shift(); + break; + + default: + // type === 1: accept + q[z] = [ + 3 + ]; + } + } + rv.push(q); + } + return rv; + } + + + + // helper: runlength encoding with increment step: code, length: step (default step = 0) + // `this` references an array + function s(c, l, a) { + a = a || 0; + for (var i = 0; i < l; i++) { + this.push(c); + c += a; + } + } + + // helper: duplicate sequence from *relative* offset and length. + // `this` references an array + function c(i, l) { + i = this.length - i; + for (l += i; i < l; i++) { + this.push(this[i]); + } + } + + // helper: unpack an array using helpers and data, all passed in an array argument 'a'. + function u(a) { + var rv = []; + for (var i = 0, l = a.length; i < l; i++) { + var e = a[i]; + // Is this entry a helper function? + if (typeof e === 'function') { + i++; + e.apply(rv, a[i]); + } else { + rv.push(e); + } + } + return rv; + } + + +var parser = { + // Code Generator Information Report + // --------------------------------- + // + // Options: + // + // default action mode: ............. ["classic","merge"] + // test-compile action mode: ........ "parser:*,lexer:*" + // try..catch: ...................... true + // default resolve on conflict: ..... true + // on-demand look-ahead: ............ false + // error recovery token skip maximum: 3 + // yyerror in parse actions is: ..... NOT recoverable, + // yyerror in lexer actions and other non-fatal lexer are: + // .................................. NOT recoverable, + // debug grammar/output: ............ false + // has partial LR conflict upgrade: true + // rudimentary token-stack support: false + // parser table compression mode: ... 2 + // export debug tables: ............. false + // export *all* tables: ............. false + // module type: ..................... commonjs + // parser engine type: .............. lalr + // output main() in the module: ..... true + // has user-specified main(): ....... false + // has user-specified require()/import modules for main(): + // .................................. false + // number of expected conflicts: .... 0 + // + // + // Parser Analysis flags: + // + // no significant actions (parser is a language matcher only): + // .................................. false + // uses yyleng: ..................... false + // uses yylineno: ................... false + // uses yytext: ..................... false + // uses yylloc: ..................... false + // uses ParseError API: ............. true + // uses YYERROR: .................... false + // uses YYRECOVERING: ............... false + // uses YYERROK: .................... false + // uses YYCLEARIN: .................. false + // tracks rule values: .............. true + // assigns rule values: ............. true + // uses location tracking: .......... false + // assigns location: ................ false + // uses yystack: .................... false + // uses yysstack: ................... false + // uses yysp: ....................... true + // uses yyrulelength: ............... false + // uses yyMergeLocationInfo API: .... false + // has error recovery: .............. true + // has error reporting: ............. true + // + // --------- END OF REPORT ----------- + +trace: function no_op_trace() { }, +JisonParserError: JisonParserError, yy: {}, -symbols_: {"error":2,"Literal":3,"LITERAL":4,"BRALITERAL":5,"NonReserved":6,"LiteralWithSpaces":7,"main":8,"Statements":9,"EOF":10,"Statements_group0":11,"AStatement":12,"ExplainStatement":13,"EXPLAIN":14,"QUERY":15,"PLAN":16,"Statement":17,"AlterTable":18,"AttachDatabase":19,"Call":20,"CreateDatabase":21,"CreateIndex":22,"CreateGraph":23,"CreateTable":24,"CreateView":25,"CreateEdge":26,"CreateVertex":27,"Declare":28,"Delete":29,"DetachDatabase":30,"DropDatabase":31,"DropIndex":32,"DropTable":33,"DropView":34,"If":35,"Insert":36,"Merge":37,"Reindex":38,"RenameTable":39,"Select":40,"ShowCreateTable":41,"ShowColumns":42,"ShowDatabases":43,"ShowIndex":44,"ShowTables":45,"TruncateTable":46,"WithSelect":47,"CreateTrigger":48,"DropTrigger":49,"BeginTransaction":50,"CommitTransaction":51,"RollbackTransaction":52,"EndTransaction":53,"UseDatabase":54,"Update":55,"JavaScript":56,"Source":57,"Assert":58,"While":59,"Continue":60,"Break":61,"BeginEnd":62,"Print":63,"Require":64,"SetVariable":65,"ExpressionStatement":66,"AddRule":67,"Query":68,"Echo":69,"CreateFunction":70,"CreateAggregate":71,"WITH":72,"WithTablesList":73,"COMMA":74,"WithTable":75,"AS":76,"LPAR":77,"RPAR":78,"SelectClause":79,"Select_option0":80,"IntoClause":81,"FromClause":82,"Select_option1":83,"WhereClause":84,"GroupClause":85,"OrderClause":86,"LimitClause":87,"UnionClause":88,"SEARCH":89,"Select_repetition0":90,"Select_option2":91,"PivotClause":92,"PIVOT":93,"Expression":94,"FOR":95,"PivotClause_option0":96,"PivotClause_option1":97,"UNPIVOT":98,"IN":99,"ColumnsList":100,"PivotClause_option2":101,"PivotClause2":102,"AsList":103,"AsLiteral":104,"AsPart":105,"RemoveClause":106,"REMOVE":107,"RemoveClause_option0":108,"RemoveColumnsList":109,"RemoveColumn":110,"Column":111,"LIKE":112,"StringValue":113,"ArrowDot":114,"ARROW":115,"DOT":116,"SearchSelector":117,"ORDER":118,"BY":119,"OrderExpressionsList":120,"SearchSelector_option0":121,"DOTDOT":122,"CARET":123,"EQ":124,"SearchSelector_repetition_plus0":125,"SearchSelector_repetition_plus1":126,"SearchSelector_option1":127,"WHERE":128,"OF":129,"CLASS":130,"NUMBER":131,"STRING":132,"SLASH":133,"VERTEX":134,"EDGE":135,"EXCLAMATION":136,"SHARP":137,"MODULO":138,"GT":139,"LT":140,"GTGT":141,"LTLT":142,"DOLLAR":143,"Json":144,"AT":145,"SET":146,"SetColumnsList":147,"TO":148,"VALUE":149,"ROW":150,"ExprList":151,"COLON":152,"PlusStar":153,"NOT":154,"SearchSelector_repetition2":155,"IF":156,"SearchSelector_repetition3":157,"Aggregator":158,"SearchSelector_repetition4":159,"SearchSelector_group0":160,"SearchSelector_repetition5":161,"UNION":162,"SearchSelectorList":163,"ALL":164,"SearchSelector_repetition6":165,"ANY":166,"SearchSelector_repetition7":167,"INTERSECT":168,"EXCEPT":169,"AND":170,"OR":171,"PATH":172,"RETURN":173,"ResultColumns":174,"REPEAT":175,"SearchSelector_repetition8":176,"SearchSelectorList_repetition0":177,"SearchSelectorList_repetition1":178,"PLUS":179,"STAR":180,"QUESTION":181,"SearchFrom":182,"FROM":183,"SelectModifier":184,"DISTINCT":185,"TopClause":186,"UNIQUE":187,"SelectClause_option0":188,"SELECT":189,"COLUMN":190,"MATRIX":191,"TEXTSTRING":192,"INDEX":193,"RECORDSET":194,"TOP":195,"NumValue":196,"TopClause_option0":197,"INTO":198,"Table":199,"FuncValue":200,"ParamValue":201,"VarValue":202,"FromTablesList":203,"JoinTablesList":204,"ApplyClause":205,"CROSS":206,"APPLY":207,"OUTER":208,"FromTable":209,"FromTable_option0":210,"FromTable_option1":211,"INDEXED":212,"INSERTED":213,"FromString":214,"JoinTable":215,"JoinMode":216,"JoinTableAs":217,"OnClause":218,"JoinTableAs_option0":219,"JoinTableAs_option1":220,"JoinModeMode":221,"NATURAL":222,"JOIN":223,"INNER":224,"LEFT":225,"RIGHT":226,"FULL":227,"SEMI":228,"ANTI":229,"ON":230,"USING":231,"GROUP":232,"GroupExpressionsList":233,"HavingClause":234,"GroupExpression":235,"GROUPING":236,"ROLLUP":237,"CUBE":238,"HAVING":239,"CORRESPONDING":240,"OrderExpression":241,"NullsOrder":242,"NULLS":243,"FIRST":244,"LAST":245,"DIRECTION":246,"COLLATE":247,"NOCASE":248,"LIMIT":249,"OffsetClause":250,"OFFSET":251,"LimitClause_option0":252,"FETCH":253,"LimitClause_option1":254,"LimitClause_option2":255,"LimitClause_option3":256,"ResultColumn":257,"Star":258,"AggrValue":259,"Op":260,"LogicValue":261,"NullValue":262,"ExistsValue":263,"CaseValue":264,"CastClause":265,"ArrayValue":266,"NewClause":267,"Expression_group0":268,"CURRENT_TIMESTAMP":269,"JAVASCRIPT":270,"CREATE":271,"FUNCTION":272,"AGGREGATE":273,"NEW":274,"CAST":275,"ColumnType":276,"CONVERT":277,"PrimitiveValue":278,"OverClause":279,"OVER":280,"OverPartitionClause":281,"OverOrderByClause":282,"PARTITION":283,"SUM":284,"TOTAL":285,"COUNT":286,"MIN":287,"MAX":288,"AVG":289,"AGGR":290,"ARRAY":291,"FuncValue_option0":292,"REPLACE":293,"DATEADD":294,"DATEDIFF":295,"TIMESTAMPDIFF":296,"INTERVAL":297,"TRUE":298,"FALSE":299,"NSTRING":300,"NULL":301,"EXISTS":302,"ARRAYLBRA":303,"RBRA":304,"ParamValue_group0":305,"BRAQUESTION":306,"CASE":307,"WhensList":308,"ElseClause":309,"END":310,"When":311,"WHEN":312,"THEN":313,"ELSE":314,"REGEXP":315,"TILDA":316,"GLOB":317,"ESCAPE":318,"NOT_LIKE":319,"BARBAR":320,"MINUS":321,"AMPERSAND":322,"BAR":323,"GE":324,"LE":325,"EQEQ":326,"EQEQEQ":327,"NE":328,"NEEQEQ":329,"NEEQEQEQ":330,"CondOp":331,"AllSome":332,"ColFunc":333,"BETWEEN":334,"NOT_BETWEEN":335,"IS":336,"DOUBLECOLON":337,"SOME":338,"UPDATE":339,"SetColumn":340,"SetColumn_group0":341,"DELETE":342,"INSERT":343,"Into":344,"Values":345,"ValuesListsList":346,"DEFAULT":347,"VALUES":348,"ValuesList":349,"Value":350,"DateValue":351,"TemporaryClause":352,"TableClass":353,"IfNotExists":354,"CreateTableDefClause":355,"CreateTableOptionsClause":356,"TABLE":357,"CreateTableOptions":358,"CreateTableOption":359,"IDENTITY":360,"TEMP":361,"ColumnDefsList":362,"ConstraintsList":363,"Constraint":364,"ConstraintName":365,"PrimaryKey":366,"ForeignKey":367,"UniqueKey":368,"IndexKey":369,"Check":370,"CONSTRAINT":371,"CHECK":372,"PRIMARY":373,"KEY":374,"PrimaryKey_option0":375,"ColsList":376,"FOREIGN":377,"REFERENCES":378,"ForeignKey_option0":379,"OnForeignKeyClause":380,"ParColsList":381,"OnDeleteClause":382,"OnUpdateClause":383,"NO":384,"ACTION":385,"UniqueKey_option0":386,"UniqueKey_option1":387,"ColumnDef":388,"ColumnConstraintsClause":389,"ColumnConstraints":390,"SingularColumnType":391,"NumberMax":392,"ENUM":393,"MAXNUM":394,"ColumnConstraintsList":395,"ColumnConstraint":396,"ParLiteral":397,"ColumnConstraint_option0":398,"ColumnConstraint_option1":399,"DROP":400,"DropTable_group0":401,"IfExists":402,"TablesList":403,"ALTER":404,"RENAME":405,"ADD":406,"MODIFY":407,"ATTACH":408,"DATABASE":409,"DETACH":410,"AsClause":411,"USE":412,"SHOW":413,"VIEW":414,"CreateView_option0":415,"CreateView_option1":416,"SubqueryRestriction":417,"READ":418,"ONLY":419,"OPTION":420,"SOURCE":421,"ASSERT":422,"JsonObject":423,"ATLBRA":424,"JsonArray":425,"JsonValue":426,"JsonPrimitiveValue":427,"LCUR":428,"JsonPropertiesList":429,"RCUR":430,"JsonElementsList":431,"JsonProperty":432,"OnOff":433,"SetPropsList":434,"AtDollar":435,"SetProp":436,"OFF":437,"COMMIT":438,"TRANSACTION":439,"ROLLBACK":440,"BEGIN":441,"ElseStatement":442,"WHILE":443,"CONTINUE":444,"BREAK":445,"PRINT":446,"REQUIRE":447,"StringValuesList":448,"PluginsList":449,"Plugin":450,"ECHO":451,"DECLARE":452,"DeclaresList":453,"DeclareItem":454,"TRUNCATE":455,"MERGE":456,"MergeInto":457,"MergeUsing":458,"MergeOn":459,"MergeMatchedList":460,"OutputClause":461,"MergeMatched":462,"MergeNotMatched":463,"MATCHED":464,"MergeMatchedAction":465,"MergeNotMatchedAction":466,"TARGET":467,"OUTPUT":468,"CreateVertex_option0":469,"CreateVertex_option1":470,"CreateVertex_option2":471,"CreateVertexSet":472,"SharpValue":473,"CONTENT":474,"CreateEdge_option0":475,"GRAPH":476,"GraphList":477,"GraphVertexEdge":478,"GraphElement":479,"GraphVertexEdge_option0":480,"GraphVertexEdge_option1":481,"GraphElementVar":482,"GraphVertexEdge_option2":483,"GraphVertexEdge_option3":484,"GraphVertexEdge_option4":485,"GraphVar":486,"GraphAsClause":487,"GraphAtClause":488,"GraphElement2":489,"GraphElement2_option0":490,"GraphElement2_option1":491,"GraphElement2_option2":492,"GraphElement2_option3":493,"GraphElement_option0":494,"GraphElement_option1":495,"GraphElement_option2":496,"SharpLiteral":497,"GraphElement_option3":498,"GraphElement_option4":499,"GraphElement_option5":500,"ColonLiteral":501,"DeleteVertex":502,"DeleteVertex_option0":503,"DeleteEdge":504,"DeleteEdge_option0":505,"DeleteEdge_option1":506,"DeleteEdge_option2":507,"Term":508,"COLONDASH":509,"TermsList":510,"QUESTIONDASH":511,"CALL":512,"TRIGGER":513,"BeforeAfter":514,"InsertDeleteUpdate":515,"CreateTrigger_option0":516,"CreateTrigger_option1":517,"BEFORE":518,"AFTER":519,"INSTEAD":520,"REINDEX":521,"A":522,"ABSENT":523,"ABSOLUTE":524,"ACCORDING":525,"ADA":526,"ADMIN":527,"ALWAYS":528,"ASC":529,"ASSERTION":530,"ASSIGNMENT":531,"ATTRIBUTE":532,"ATTRIBUTES":533,"BASE64":534,"BERNOULLI":535,"BLOCKED":536,"BOM":537,"BREADTH":538,"C":539,"CASCADE":540,"CATALOG":541,"CATALOG_NAME":542,"CHAIN":543,"CHARACTERISTICS":544,"CHARACTERS":545,"CHARACTER_SET_CATALOG":546,"CHARACTER_SET_NAME":547,"CHARACTER_SET_SCHEMA":548,"CLASS_ORIGIN":549,"COBOL":550,"COLLATION":551,"COLLATION_CATALOG":552,"COLLATION_NAME":553,"COLLATION_SCHEMA":554,"COLUMNS":555,"COLUMN_NAME":556,"COMMAND_FUNCTION":557,"COMMAND_FUNCTION_CODE":558,"COMMITTED":559,"CONDITION_NUMBER":560,"CONNECTION":561,"CONNECTION_NAME":562,"CONSTRAINTS":563,"CONSTRAINT_CATALOG":564,"CONSTRAINT_NAME":565,"CONSTRAINT_SCHEMA":566,"CONSTRUCTOR":567,"CONTROL":568,"CURSOR_NAME":569,"DATA":570,"DATETIME_INTERVAL_CODE":571,"DATETIME_INTERVAL_PRECISION":572,"DB":573,"DEFAULTS":574,"DEFERRABLE":575,"DEFERRED":576,"DEFINED":577,"DEFINER":578,"DEGREE":579,"DEPTH":580,"DERIVED":581,"DESC":582,"DESCRIPTOR":583,"DIAGNOSTICS":584,"DISPATCH":585,"DOCUMENT":586,"DOMAIN":587,"DYNAMIC_FUNCTION":588,"DYNAMIC_FUNCTION_CODE":589,"EMPTY":590,"ENCODING":591,"ENFORCED":592,"EXCLUDE":593,"EXCLUDING":594,"EXPRESSION":595,"FILE":596,"FINAL":597,"FLAG":598,"FOLLOWING":599,"FORTRAN":600,"FOUND":601,"FS":602,"G":603,"GENERAL":604,"GENERATED":605,"GO":606,"GOTO":607,"GRANTED":608,"HEX":609,"HIERARCHY":610,"ID":611,"IGNORE":612,"IMMEDIATE":613,"IMMEDIATELY":614,"IMPLEMENTATION":615,"INCLUDING":616,"INCREMENT":617,"INDENT":618,"INITIALLY":619,"INPUT":620,"INSTANCE":621,"INSTANTIABLE":622,"INTEGRITY":623,"INVOKER":624,"ISOLATION":625,"K":626,"KEY_MEMBER":627,"KEY_TYPE":628,"LENGTH":629,"LEVEL":630,"LIBRARY":631,"LINK":632,"LOCATION":633,"LOCATOR":634,"M":635,"MAP":636,"MAPPING":637,"MAXVALUE":638,"MESSAGE_LENGTH":639,"MESSAGE_OCTET_LENGTH":640,"MESSAGE_TEXT":641,"MINVALUE":642,"MORE":643,"MUMPS":644,"NAME":645,"NAMES":646,"NAMESPACE":647,"NESTING":648,"NEXT":649,"NFC":650,"NFD":651,"NFKC":652,"NFKD":653,"NIL":654,"NORMALIZED":655,"NULLABLE":656,"OBJECT":657,"OCTETS":658,"OPTIONS":659,"ORDERING":660,"ORDINALITY":661,"OTHERS":662,"OVERRIDING":663,"P":664,"PAD":665,"PARAMETER_MODE":666,"PARAMETER_NAME":667,"PARAMETER_ORDINAL_POSITION":668,"PARAMETER_SPECIFIC_CATALOG":669,"PARAMETER_SPECIFIC_NAME":670,"PARAMETER_SPECIFIC_SCHEMA":671,"PARTIAL":672,"PASCAL":673,"PASSING":674,"PASSTHROUGH":675,"PERMISSION":676,"PLACING":677,"PLI":678,"PRECEDING":679,"PRESERVE":680,"PRIOR":681,"PRIVILEGES":682,"PUBLIC":683,"RECOVERY":684,"RELATIVE":685,"REPEATABLE":686,"REQUIRING":687,"RESPECT":688,"RESTART":689,"RESTORE":690,"RESTRICT":691,"RETURNED_CARDINALITY":692,"RETURNED_LENGTH":693,"RETURNED_OCTET_LENGTH":694,"RETURNED_SQLSTATE":695,"RETURNING":696,"ROLE":697,"ROUTINE":698,"ROUTINE_CATALOG":699,"ROUTINE_NAME":700,"ROUTINE_SCHEMA":701,"ROW_COUNT":702,"SCALE":703,"SCHEMA":704,"SCHEMA_NAME":705,"SCOPE_CATALOG":706,"SCOPE_NAME":707,"SCOPE_SCHEMA":708,"SECTION":709,"SECURITY":710,"SELECTIVE":711,"SELF":712,"SEQUENCE":713,"SERIALIZABLE":714,"SERVER":715,"SERVER_NAME":716,"SESSION":717,"SETS":718,"SIMPLE":719,"SIZE":720,"SPACE":721,"SPECIFIC_NAME":722,"STANDALONE":723,"STATE":724,"STATEMENT":725,"STRIP":726,"STRUCTURE":727,"STYLE":728,"SUBCLASS_ORIGIN":729,"T":730,"TABLE_NAME":731,"TEMPORARY":732,"TIES":733,"TOKEN":734,"TOP_LEVEL_COUNT":735,"TRANSACTIONS_COMMITTED":736,"TRANSACTIONS_ROLLED_BACK":737,"TRANSACTION_ACTIVE":738,"TRANSFORM":739,"TRANSFORMS":740,"TRIGGER_CATALOG":741,"TRIGGER_NAME":742,"TRIGGER_SCHEMA":743,"TYPE":744,"UNBOUNDED":745,"UNCOMMITTED":746,"UNDER":747,"UNLINK":748,"UNNAMED":749,"UNTYPED":750,"URI":751,"USAGE":752,"USER_DEFINED_TYPE_CATALOG":753,"USER_DEFINED_TYPE_CODE":754,"USER_DEFINED_TYPE_NAME":755,"USER_DEFINED_TYPE_SCHEMA":756,"VALID":757,"VERSION":758,"WHITESPACE":759,"WORK":760,"WRAPPER":761,"WRITE":762,"XMLDECLARATION":763,"XMLSCHEMA":764,"YES":765,"ZONE":766,"SEMICOLON":767,"PERCENT":768,"ROWS":769,"FuncValue_option0_group0":770,"$accept":0,"$end":1}, -terminals_: {2:"error",4:"LITERAL",5:"BRALITERAL",10:"EOF",14:"EXPLAIN",15:"QUERY",16:"PLAN",53:"EndTransaction",72:"WITH",74:"COMMA",76:"AS",77:"LPAR",78:"RPAR",89:"SEARCH",93:"PIVOT",95:"FOR",98:"UNPIVOT",99:"IN",107:"REMOVE",112:"LIKE",115:"ARROW",116:"DOT",118:"ORDER",119:"BY",122:"DOTDOT",123:"CARET",124:"EQ",128:"WHERE",129:"OF",130:"CLASS",131:"NUMBER",132:"STRING",133:"SLASH",134:"VERTEX",135:"EDGE",136:"EXCLAMATION",137:"SHARP",138:"MODULO",139:"GT",140:"LT",141:"GTGT",142:"LTLT",143:"DOLLAR",145:"AT",146:"SET",148:"TO",149:"VALUE",150:"ROW",152:"COLON",154:"NOT",156:"IF",162:"UNION",164:"ALL",166:"ANY",168:"INTERSECT",169:"EXCEPT",170:"AND",171:"OR",172:"PATH",173:"RETURN",175:"REPEAT",179:"PLUS",180:"STAR",181:"QUESTION",183:"FROM",185:"DISTINCT",187:"UNIQUE",189:"SELECT",190:"COLUMN",191:"MATRIX",192:"TEXTSTRING",193:"INDEX",194:"RECORDSET",195:"TOP",198:"INTO",206:"CROSS",207:"APPLY",208:"OUTER",212:"INDEXED",213:"INSERTED",222:"NATURAL",223:"JOIN",224:"INNER",225:"LEFT",226:"RIGHT",227:"FULL",228:"SEMI",229:"ANTI",230:"ON",231:"USING",232:"GROUP",236:"GROUPING",237:"ROLLUP",238:"CUBE",239:"HAVING",240:"CORRESPONDING",243:"NULLS",244:"FIRST",245:"LAST",246:"DIRECTION",247:"COLLATE",248:"NOCASE",249:"LIMIT",251:"OFFSET",253:"FETCH",269:"CURRENT_TIMESTAMP",270:"JAVASCRIPT",271:"CREATE",272:"FUNCTION",273:"AGGREGATE",274:"NEW",275:"CAST",277:"CONVERT",280:"OVER",283:"PARTITION",284:"SUM",285:"TOTAL",286:"COUNT",287:"MIN",288:"MAX",289:"AVG",290:"AGGR",291:"ARRAY",293:"REPLACE",294:"DATEADD",295:"DATEDIFF",296:"TIMESTAMPDIFF",297:"INTERVAL",298:"TRUE",299:"FALSE",300:"NSTRING",301:"NULL",302:"EXISTS",303:"ARRAYLBRA",304:"RBRA",306:"BRAQUESTION",307:"CASE",310:"END",312:"WHEN",313:"THEN",314:"ELSE",315:"REGEXP",316:"TILDA",317:"GLOB",318:"ESCAPE",319:"NOT_LIKE",320:"BARBAR",321:"MINUS",322:"AMPERSAND",323:"BAR",324:"GE",325:"LE",326:"EQEQ",327:"EQEQEQ",328:"NE",329:"NEEQEQ",330:"NEEQEQEQ",334:"BETWEEN",335:"NOT_BETWEEN",336:"IS",337:"DOUBLECOLON",338:"SOME",339:"UPDATE",342:"DELETE",343:"INSERT",347:"DEFAULT",348:"VALUES",351:"DateValue",357:"TABLE",360:"IDENTITY",361:"TEMP",371:"CONSTRAINT",372:"CHECK",373:"PRIMARY",374:"KEY",377:"FOREIGN",378:"REFERENCES",384:"NO",385:"ACTION",390:"ColumnConstraints",393:"ENUM",394:"MAXNUM",400:"DROP",404:"ALTER",405:"RENAME",406:"ADD",407:"MODIFY",408:"ATTACH",409:"DATABASE",410:"DETACH",412:"USE",413:"SHOW",414:"VIEW",418:"READ",419:"ONLY",420:"OPTION",421:"SOURCE",422:"ASSERT",424:"ATLBRA",428:"LCUR",430:"RCUR",437:"OFF",438:"COMMIT",439:"TRANSACTION",440:"ROLLBACK",441:"BEGIN",443:"WHILE",444:"CONTINUE",445:"BREAK",446:"PRINT",447:"REQUIRE",451:"ECHO",452:"DECLARE",455:"TRUNCATE",456:"MERGE",464:"MATCHED",467:"TARGET",468:"OUTPUT",474:"CONTENT",476:"GRAPH",509:"COLONDASH",511:"QUESTIONDASH",512:"CALL",513:"TRIGGER",518:"BEFORE",519:"AFTER",520:"INSTEAD",521:"REINDEX",522:"A",523:"ABSENT",524:"ABSOLUTE",525:"ACCORDING",526:"ADA",527:"ADMIN",528:"ALWAYS",529:"ASC",530:"ASSERTION",531:"ASSIGNMENT",532:"ATTRIBUTE",533:"ATTRIBUTES",534:"BASE64",535:"BERNOULLI",536:"BLOCKED",537:"BOM",538:"BREADTH",539:"C",540:"CASCADE",541:"CATALOG",542:"CATALOG_NAME",543:"CHAIN",544:"CHARACTERISTICS",545:"CHARACTERS",546:"CHARACTER_SET_CATALOG",547:"CHARACTER_SET_NAME",548:"CHARACTER_SET_SCHEMA",549:"CLASS_ORIGIN",550:"COBOL",551:"COLLATION",552:"COLLATION_CATALOG",553:"COLLATION_NAME",554:"COLLATION_SCHEMA",555:"COLUMNS",556:"COLUMN_NAME",557:"COMMAND_FUNCTION",558:"COMMAND_FUNCTION_CODE",559:"COMMITTED",560:"CONDITION_NUMBER",561:"CONNECTION",562:"CONNECTION_NAME",563:"CONSTRAINTS",564:"CONSTRAINT_CATALOG",565:"CONSTRAINT_NAME",566:"CONSTRAINT_SCHEMA",567:"CONSTRUCTOR",568:"CONTROL",569:"CURSOR_NAME",570:"DATA",571:"DATETIME_INTERVAL_CODE",572:"DATETIME_INTERVAL_PRECISION",573:"DB",574:"DEFAULTS",575:"DEFERRABLE",576:"DEFERRED",577:"DEFINED",578:"DEFINER",579:"DEGREE",580:"DEPTH",581:"DERIVED",582:"DESC",583:"DESCRIPTOR",584:"DIAGNOSTICS",585:"DISPATCH",586:"DOCUMENT",587:"DOMAIN",588:"DYNAMIC_FUNCTION",589:"DYNAMIC_FUNCTION_CODE",590:"EMPTY",591:"ENCODING",592:"ENFORCED",593:"EXCLUDE",594:"EXCLUDING",595:"EXPRESSION",596:"FILE",597:"FINAL",598:"FLAG",599:"FOLLOWING",600:"FORTRAN",601:"FOUND",602:"FS",603:"G",604:"GENERAL",605:"GENERATED",606:"GO",607:"GOTO",608:"GRANTED",609:"HEX",610:"HIERARCHY",611:"ID",612:"IGNORE",613:"IMMEDIATE",614:"IMMEDIATELY",615:"IMPLEMENTATION",616:"INCLUDING",617:"INCREMENT",618:"INDENT",619:"INITIALLY",620:"INPUT",621:"INSTANCE",622:"INSTANTIABLE",623:"INTEGRITY",624:"INVOKER",625:"ISOLATION",626:"K",627:"KEY_MEMBER",628:"KEY_TYPE",629:"LENGTH",630:"LEVEL",631:"LIBRARY",632:"LINK",633:"LOCATION",634:"LOCATOR",635:"M",636:"MAP",637:"MAPPING",638:"MAXVALUE",639:"MESSAGE_LENGTH",640:"MESSAGE_OCTET_LENGTH",641:"MESSAGE_TEXT",642:"MINVALUE",643:"MORE",644:"MUMPS",645:"NAME",646:"NAMES",647:"NAMESPACE",648:"NESTING",649:"NEXT",650:"NFC",651:"NFD",652:"NFKC",653:"NFKD",654:"NIL",655:"NORMALIZED",656:"NULLABLE",657:"OBJECT",658:"OCTETS",659:"OPTIONS",660:"ORDERING",661:"ORDINALITY",662:"OTHERS",663:"OVERRIDING",664:"P",665:"PAD",666:"PARAMETER_MODE",667:"PARAMETER_NAME",668:"PARAMETER_ORDINAL_POSITION",669:"PARAMETER_SPECIFIC_CATALOG",670:"PARAMETER_SPECIFIC_NAME",671:"PARAMETER_SPECIFIC_SCHEMA",672:"PARTIAL",673:"PASCAL",674:"PASSING",675:"PASSTHROUGH",676:"PERMISSION",677:"PLACING",678:"PLI",679:"PRECEDING",680:"PRESERVE",681:"PRIOR",682:"PRIVILEGES",683:"PUBLIC",684:"RECOVERY",685:"RELATIVE",686:"REPEATABLE",687:"REQUIRING",688:"RESPECT",689:"RESTART",690:"RESTORE",691:"RESTRICT",692:"RETURNED_CARDINALITY",693:"RETURNED_LENGTH",694:"RETURNED_OCTET_LENGTH",695:"RETURNED_SQLSTATE",696:"RETURNING",697:"ROLE",698:"ROUTINE",699:"ROUTINE_CATALOG",700:"ROUTINE_NAME",701:"ROUTINE_SCHEMA",702:"ROW_COUNT",703:"SCALE",704:"SCHEMA",705:"SCHEMA_NAME",706:"SCOPE_CATALOG",707:"SCOPE_NAME",708:"SCOPE_SCHEMA",709:"SECTION",710:"SECURITY",711:"SELECTIVE",712:"SELF",713:"SEQUENCE",714:"SERIALIZABLE",715:"SERVER",716:"SERVER_NAME",717:"SESSION",718:"SETS",719:"SIMPLE",720:"SIZE",721:"SPACE",722:"SPECIFIC_NAME",723:"STANDALONE",724:"STATE",725:"STATEMENT",726:"STRIP",727:"STRUCTURE",728:"STYLE",729:"SUBCLASS_ORIGIN",730:"T",731:"TABLE_NAME",732:"TEMPORARY",733:"TIES",734:"TOKEN",735:"TOP_LEVEL_COUNT",736:"TRANSACTIONS_COMMITTED",737:"TRANSACTIONS_ROLLED_BACK",738:"TRANSACTION_ACTIVE",739:"TRANSFORM",740:"TRANSFORMS",741:"TRIGGER_CATALOG",742:"TRIGGER_NAME",743:"TRIGGER_SCHEMA",744:"TYPE",745:"UNBOUNDED",746:"UNCOMMITTED",747:"UNDER",748:"UNLINK",749:"UNNAMED",750:"UNTYPED",751:"URI",752:"USAGE",753:"USER_DEFINED_TYPE_CATALOG",754:"USER_DEFINED_TYPE_CODE",755:"USER_DEFINED_TYPE_NAME",756:"USER_DEFINED_TYPE_SCHEMA",757:"VALID",758:"VERSION",759:"WHITESPACE",760:"WORK",761:"WRAPPER",762:"WRITE",763:"XMLDECLARATION",764:"XMLSCHEMA",765:"YES",766:"ZONE",767:"SEMICOLON",768:"PERCENT",769:"ROWS"}, -productions_: [0,[3,1],[3,1],[3,2],[7,1],[7,2],[8,2],[9,3],[9,1],[9,1],[13,2],[13,4],[12,1],[17,0],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[47,3],[73,3],[73,1],[75,5],[40,10],[40,4],[92,8],[92,11],[102,4],[104,2],[104,1],[103,3],[103,1],[105,1],[105,3],[106,3],[109,3],[109,1],[110,1],[110,2],[114,1],[114,1],[117,1],[117,5],[117,5],[117,1],[117,2],[117,1],[117,2],[117,2],[117,3],[117,4],[117,4],[117,4],[117,4],[117,4],[117,1],[117,1],[117,1],[117,1],[117,1],[117,1],[117,2],[117,2],[117,2],[117,1],[117,1],[117,1],[117,1],[117,1],[117,1],[117,2],[117,3],[117,4],[117,3],[117,1],[117,4],[117,2],[117,2],[117,4],[117,4],[117,4],[117,4],[117,4],[117,5],[117,4],[117,4],[117,4],[117,4],[117,4],[117,4],[117,4],[117,4],[117,6],[163,3],[163,1],[153,1],[153,1],[153,1],[182,2],[79,4],[79,4],[79,4],[79,3],[184,1],[184,2],[184,2],[184,2],[184,2],[184,2],[184,2],[184,2],[186,3],[186,4],[186,0],[81,0],[81,2],[81,2],[81,2],[81,2],[81,2],[82,2],[82,3],[82,5],[82,0],[205,6],[205,7],[205,6],[205,7],[203,1],[203,3],[209,4],[209,5],[209,3],[209,3],[209,2],[209,3],[209,1],[209,3],[209,2],[209,3],[209,1],[209,1],[209,2],[209,3],[209,1],[209,1],[209,2],[209,3],[209,1],[209,2],[209,3],[214,1],[199,3],[199,1],[204,2],[204,2],[204,1],[204,1],[215,3],[217,1],[217,2],[217,3],[217,3],[217,2],[217,3],[217,4],[217,5],[217,1],[217,2],[217,3],[217,1],[217,2],[217,3],[216,1],[216,2],[221,1],[221,2],[221,2],[221,3],[221,2],[221,3],[221,2],[221,3],[221,2],[221,2],[221,2],[218,2],[218,2],[218,0],[84,0],[84,2],[85,0],[85,4],[233,1],[233,3],[235,5],[235,4],[235,4],[235,1],[234,0],[234,2],[88,0],[88,2],[88,3],[88,2],[88,2],[88,3],[88,4],[88,3],[88,3],[86,0],[86,3],[120,1],[120,3],[242,2],[242,2],[241,1],[241,2],[241,3],[241,3],[241,4],[87,0],[87,3],[87,8],[250,0],[250,2],[174,3],[174,1],[257,3],[257,2],[257,3],[257,2],[257,3],[257,2],[257,1],[258,5],[258,3],[258,1],[111,5],[111,3],[111,3],[111,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,3],[94,3],[94,3],[94,1],[94,1],[56,1],[70,5],[71,5],[267,2],[267,2],[265,6],[265,8],[265,6],[265,8],[278,1],[278,1],[278,1],[278,1],[278,1],[278,1],[278,1],[259,5],[259,6],[259,6],[279,0],[279,4],[279,4],[279,5],[281,3],[282,3],[158,1],[158,1],[158,1],[158,1],[158,1],[158,1],[158,1],[158,1],[158,1],[158,1],[200,5],[200,3],[200,4],[200,4],[200,8],[200,8],[200,8],[200,8],[200,8],[200,3],[151,1],[151,3],[196,1],[261,1],[261,1],[113,1],[113,1],[262,1],[202,2],[263,4],[266,3],[201,2],[201,2],[201,1],[201,1],[264,5],[264,4],[308,2],[308,1],[311,4],[309,2],[309,0],[260,3],[260,3],[260,3],[260,3],[260,5],[260,3],[260,5],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,5],[260,3],[260,3],[260,3],[260,5],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,6],[260,6],[260,3],[260,3],[260,2],[260,2],[260,2],[260,2],[260,2],[260,3],[260,5],[260,6],[260,5],[260,6],[260,4],[260,5],[260,3],[260,4],[260,3],[260,4],[260,3],[260,3],[260,3],[260,3],[260,3],[333,1],[333,1],[333,4],[331,1],[331,1],[331,1],[331,1],[331,1],[331,1],[332,1],[332,1],[332,1],[55,6],[55,4],[147,1],[147,3],[340,3],[340,4],[29,5],[29,3],[36,5],[36,4],[36,7],[36,6],[36,5],[36,4],[36,5],[36,8],[36,7],[36,4],[36,6],[36,7],[345,1],[345,1],[344,0],[344,1],[346,3],[346,1],[346,1],[346,5],[346,3],[346,3],[349,1],[349,3],[350,1],[350,1],[350,1],[350,1],[350,1],[350,1],[100,1],[100,3],[24,9],[24,5],[353,1],[353,1],[356,0],[356,1],[358,2],[358,1],[359,1],[359,3],[359,3],[359,3],[352,0],[352,1],[354,0],[354,3],[355,3],[355,1],[355,2],[363,1],[363,3],[364,2],[364,2],[364,2],[364,2],[364,2],[365,0],[365,2],[370,4],[366,6],[367,9],[381,3],[380,0],[380,2],[382,4],[383,4],[368,6],[369,5],[369,5],[376,1],[376,1],[376,3],[376,3],[362,1],[362,3],[388,3],[388,2],[388,1],[391,6],[391,4],[391,1],[391,4],[276,2],[276,1],[392,1],[392,1],[389,0],[389,1],[395,2],[395,1],[397,3],[396,2],[396,5],[396,3],[396,6],[396,1],[396,2],[396,4],[396,2],[396,1],[396,2],[396,1],[396,1],[396,3],[396,5],[33,4],[403,3],[403,1],[402,0],[402,2],[18,6],[18,6],[18,6],[18,8],[18,6],[39,5],[19,4],[19,7],[19,6],[19,9],[30,3],[21,4],[21,6],[21,9],[21,6],[411,0],[411,2],[54,3],[54,2],[31,4],[31,5],[31,5],[22,8],[22,9],[32,3],[43,2],[43,4],[43,3],[43,5],[45,2],[45,4],[45,4],[45,6],[42,4],[42,6],[44,4],[44,6],[41,4],[41,6],[25,11],[25,8],[417,3],[417,3],[417,5],[34,4],[66,2],[57,2],[58,2],[58,2],[58,4],[144,4],[144,2],[144,2],[144,2],[144,2],[144,1],[144,2],[144,2],[426,1],[426,1],[427,1],[427,1],[427,1],[427,1],[427,1],[427,1],[427,1],[427,3],[423,3],[423,4],[423,2],[425,2],[425,3],[425,1],[429,3],[429,1],[432,3],[432,3],[432,3],[431,3],[431,1],[65,4],[65,3],[65,4],[65,5],[65,5],[65,6],[435,1],[435,1],[434,3],[434,2],[436,1],[436,1],[436,3],[433,1],[433,1],[51,2],[52,2],[50,2],[35,4],[35,3],[442,2],[59,3],[60,1],[61,1],[62,3],[63,2],[63,2],[64,2],[64,2],[450,1],[450,1],[69,2],[448,3],[448,1],[449,3],[449,1],[28,2],[453,1],[453,3],[454,3],[454,4],[454,5],[454,6],[46,3],[37,6],[457,1],[457,2],[458,2],[459,2],[460,2],[460,2],[460,1],[460,1],[462,4],[462,6],[465,1],[465,3],[463,5],[463,7],[463,7],[463,9],[463,7],[463,9],[466,3],[466,6],[466,3],[466,6],[461,0],[461,2],[461,5],[461,4],[461,7],[27,6],[473,2],[472,0],[472,2],[472,2],[472,1],[26,8],[23,3],[23,4],[477,3],[477,1],[478,3],[478,7],[478,6],[478,3],[478,4],[482,1],[482,1],[486,2],[487,3],[488,2],[489,4],[479,4],[479,3],[479,2],[479,1],[501,2],[497,2],[497,2],[502,4],[504,6],[67,3],[67,2],[510,3],[510,1],[508,1],[508,4],[68,2],[20,2],[48,9],[48,8],[48,9],[514,0],[514,1],[514,1],[514,1],[514,2],[515,1],[515,1],[515,1],[49,3],[38,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[11,1],[11,1],[80,0],[80,1],[83,0],[83,1],[90,0],[90,2],[91,0],[91,1],[96,0],[96,1],[97,0],[97,1],[101,0],[101,1],[108,0],[108,1],[121,0],[121,1],[125,1],[125,2],[126,1],[126,2],[127,0],[127,1],[155,0],[155,2],[157,0],[157,2],[159,0],[159,2],[160,1],[160,1],[161,0],[161,2],[165,0],[165,2],[167,0],[167,2],[176,0],[176,2],[177,0],[177,2],[178,0],[178,2],[188,0],[188,1],[197,0],[197,1],[210,0],[210,1],[211,0],[211,1],[219,0],[219,1],[220,0],[220,1],[252,0],[252,1],[254,0],[254,1],[255,0],[255,1],[256,0],[256,1],[268,1],[268,1],[770,1],[770,1],[292,0],[292,1],[305,1],[305,1],[341,1],[341,1],[375,0],[375,1],[379,0],[379,1],[386,0],[386,1],[387,0],[387,1],[398,0],[398,1],[399,0],[399,1],[401,1],[401,1],[415,0],[415,1],[416,0],[416,1],[469,0],[469,1],[470,0],[470,1],[471,0],[471,1],[475,0],[475,1],[480,0],[480,1],[481,0],[481,1],[483,0],[483,1],[484,0],[484,1],[485,0],[485,1],[490,0],[490,1],[491,0],[491,1],[492,0],[492,1],[493,0],[493,1],[494,0],[494,1],[495,0],[495,1],[496,0],[496,1],[498,0],[498,1],[499,0],[499,1],[500,0],[500,1],[503,0],[503,2],[505,0],[505,2],[506,0],[506,2],[507,0],[507,2],[516,0],[516,1],[517,0],[517,1]], -performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate /* action[1] */, $$ /* vstack */, _$ /* lstack */) { -/* this == yyval */ - -var $0 = $$.length - 1; -switch (yystate) { +options: { + type: "lalr", + hasPartialLrUpgradeOnConflict: true, + errorRecoveryTokenDiscardCount: 3, + ebnf: true +}, +symbols_: { + "$accept": 0, + "$end": 1, + "A": 3, + "ABSENT": 236, + "ABSOLUTE": 237, + "ACCORDING": 238, + "ACTION": 186, + "ADA": 239, + "ADD": 193, + "ADMIN": 240, + "AFTER": 233, + "AGGR": 129, + "AGGREGATE": 117, + "ALL": 60, + "ALTER": 191, + "ALWAYS": 241, + "AMPERSAND": 156, + "AND": 64, + "ANTI": 95, + "ANY": 61, + "APPLY": 84, + "ARRAY": 130, + "ARRAYLBRA": 141, + "ARROW": 28, + "AS": 18, + "ASC": 242, + "ASSERT": 205, + "ASSERTION": 243, + "ASSIGNMENT": 244, + "AStatement": 482, + "AT": 51, + "ATLBRA": 206, + "ATTACH": 195, + "ATTRIBUTE": 245, + "ATTRIBUTES": 246, + "AVG": 128, + "AddRule": 687, + "AggrValue": 540, + "Aggregator": 544, + "AllSome": 562, + "AlterTable": 607, + "ApplyClause": 506, + "ArrayValue": 553, + "ArrowDot": 496, + "AsClause": 612, + "AsList": 491, + "AsLiteral": 490, + "AsPart": 492, + "Assert": 627, + "AtDollar": 637, + "AttachDatabase": 609, + "BAR": 157, + "BARBAR": 154, + "BASE64": 247, + "BEFORE": 232, + "BEGIN": 213, + "BERNOULLI": 248, + "BETWEEN": 165, + "BLOCKED": 249, + "BOM": 250, + "BRALITERAL": 11, + "BRAQUESTION": 143, + "BREADTH": 251, + "BREAK": 216, + "BY": 31, + "BeforeAfter": 693, + "BeginEnd": 649, + "BeginTransaction": 643, + "Break": 648, + "C": 4, + "CALL": 230, + "CARET": 33, + "CASCADE": 252, + "CASE": 144, + "CAST": 119, + "CATALOG": 253, + "CATALOG_NAME": 254, + "CHAIN": 255, + "CHARACTERISTICS": 256, + "CHARACTERS": 257, + "CHARACTER_SET_CATALOG": 258, + "CHARACTER_SET_NAME": 259, + "CHARACTER_SET_SCHEMA": 260, + "CHECK": 180, + "CLASS": 37, + "CLASS_ORIGIN": 261, + "COBOL": 262, + "COLLATE": 108, + "COLLATION": 263, + "COLLATION_CATALOG": 264, + "COLLATION_NAME": 265, + "COLLATION_SCHEMA": 266, + "COLON": 56, + "COLONDASH": 228, + "COLUMN": 76, + "COLUMNS": 267, + "COLUMN_NAME": 268, + "COMMA": 17, + "COMMAND_FUNCTION": 269, + "COMMAND_FUNCTION_CODE": 270, + "COMMIT": 210, + "COMMITTED": 271, + "CONDITION_NUMBER": 272, + "CONNECTION": 273, + "CONNECTION_NAME": 274, + "CONSTRAINT": 179, + "CONSTRAINTS": 275, + "CONSTRAINT_CATALOG": 276, + "CONSTRAINT_NAME": 277, + "CONSTRAINT_SCHEMA": 278, + "CONSTRUCTOR": 279, + "CONTENT": 226, + "CONTINUE": 215, + "CONTROL": 280, + "CONVERT": 120, + "CORRESPONDING": 103, + "COUNT": 125, + "CREATE": 115, + "CROSS": 83, + "CUBE": 101, + "CURRENT_TIMESTAMP": 113, + "CURSOR_NAME": 281, + "Call": 691, + "CaseValue": 555, + "CastClause": 538, + "Check": 585, + "ColFunc": 560, + "ColonLiteral": 683, + "ColsList": 594, + "Column": 532, + "ColumnConstraint": 603, + "ColumnConstraint_option": 740, + "ColumnConstraint_option2": 741, + "ColumnConstraints": 187, + "ColumnConstraintsClause": 600, + "ColumnConstraintsList": 601, + "ColumnDef": 596, + "ColumnDefsList": 595, + "ColumnType": 598, + "ColumnsList": 573, + "CommitTransaction": 641, + "CondOp": 561, + "Constraint": 583, + "ConstraintName": 584, + "ConstraintsList": 582, + "Continue": 647, + "CreateAggregate": 536, + "CreateDatabase": 611, + "CreateEdge": 673, + "CreateEdge_option": 748, + "CreateFunction": 535, + "CreateGraph": 674, + "CreateIndex": 615, + "CreateTable": 574, + "CreateTableDefClause": 581, + "CreateTableOption": 578, + "CreateTableOptions": 577, + "CreateTableOptionsClause": 576, + "CreateTrigger": 692, + "CreateTrigger_option": 768, + "CreateTrigger_option2": 769, + "CreateVertex": 670, + "CreateVertexSet": 672, + "CreateVertex_option": 745, + "CreateVertex_option2": 746, + "CreateVertex_option3": 747, + "CreateView": 622, + "CreateView_option": 743, + "CreateView_option2": 744, + "DATA": 282, + "DATABASE": 196, + "DATEADD": 132, + "DATEDIFF": 133, + "DATETIME_INTERVAL_CODE": 283, + "DATETIME_INTERVAL_PRECISION": 284, + "DB": 285, + "DECLARE": 220, + "DEFAULT": 173, + "DEFAULTS": 286, + "DEFERRABLE": 287, + "DEFERRED": 288, + "DEFINED": 289, + "DEFINER": 290, + "DEGREE": 291, + "DELETE": 171, + "DEPTH": 292, + "DERIVED": 293, + "DESC": 294, + "DESCRIPTOR": 295, + "DETACH": 197, + "DIAGNOSTICS": 296, + "DIRECTION": 107, + "DISPATCH": 297, + "DISTINCT": 73, + "DOCUMENT": 298, + "DOLLAR": 50, + "DOMAIN": 299, + "DOT": 29, + "DOTDOT": 32, + "DOUBLECOLON": 168, + "DROP": 190, + "DYNAMIC_FUNCTION": 300, + "DYNAMIC_FUNCTION_CODE": 301, + "DateValue": 175, + "Declare": 656, + "DeclareItem": 658, + "DeclaresList": 657, + "Delete": 566, + "DeleteEdge": 686, + "DeleteEdge_option": 765, + "DeleteEdge_option2": 766, + "DeleteEdge_option3": 767, + "DeleteVertex": 685, + "DeleteVertex_option": 764, + "DetachDatabase": 610, + "DropDatabase": 614, + "DropIndex": 616, + "DropTable": 604, + "DropTable_group": 742, + "DropTrigger": 695, + "DropView": 624, + "ECHO": 219, + "EDGE": 42, + "ELSE": 148, + "EMPTY": 302, + "ENCODING": 303, + "END": 145, + "ENFORCED": 304, + "ENUM": 188, + "EOF": 1, + "EQ": 34, + "EQEQ": 160, + "EQEQEQ": 161, + "ESCAPE": 152, + "EXCEPT": 63, + "EXCLAMATION": 43, + "EXCLUDE": 305, + "EXCLUDING": 306, + "EXISTS": 140, + "EXPLAIN": 12, + "EXPRESSION": 307, + "Echo": 653, + "ElseClause": 558, + "ElseStatement": 645, + "EndTransaction": 15, + "ExistsValue": 552, + "ExplainStatement": 481, + "ExprList": 546, + "Expression": 533, + "ExpressionStatement": 625, + "Expression_group": 731, + "FALSE": 137, + "FETCH": 112, + "FILE": 308, + "FINAL": 309, + "FIRST": 105, + "FLAG": 310, + "FOLLOWING": 311, + "FOR": 23, + "FOREIGN": 183, + "FORTRAN": 312, + "FOUND": 313, + "FROM": 72, + "FS": 314, + "FULL": 93, + "FUNCTION": 116, + "ForeignKey": 587, + "ForeignKey_option": 737, + "FromClause": 505, + "FromString": 509, + "FromTable": 508, + "FromTable_option": 723, + "FromTable_option2": 724, + "FromTablesList": 507, + "FuncValue": 545, + "FuncValue_option": 733, + "FuncValue_option_group": 732, + "G": 5, + "GE": 158, + "GENERAL": 315, + "GENERATED": 316, + "GLOB": 151, + "GO": 317, + "GOTO": 318, + "GRANTED": 319, + "GRAPH": 227, + "GROUP": 98, + "GROUPING": 99, + "GT": 46, + "GTGT": 48, + "GraphAsClause": 679, + "GraphAtClause": 680, + "GraphElement": 682, + "GraphElement2": 681, + "GraphElement2_option": 754, + "GraphElement2_option2": 755, + "GraphElement2_option3": 756, + "GraphElement2_option4": 757, + "GraphElementVar": 677, + "GraphElement_option": 758, + "GraphElement_option2": 759, + "GraphElement_option3": 760, + "GraphElement_option4": 761, + "GraphElement_option5": 762, + "GraphElement_option6": 763, + "GraphList": 675, + "GraphVar": 678, + "GraphVertexEdge": 676, + "GraphVertexEdge_option": 749, + "GraphVertexEdge_option2": 750, + "GraphVertexEdge_option3": 751, + "GraphVertexEdge_option4": 752, + "GraphVertexEdge_option5": 753, + "GroupClause": 518, + "GroupExpression": 520, + "GroupExpressionsList": 519, + "HAVING": 102, + "HEX": 320, + "HIERARCHY": 321, + "HavingClause": 521, + "ID": 322, + "IDENTITY": 177, + "IF": 58, + "IGNORE": 323, + "IMMEDIATE": 324, + "IMMEDIATELY": 325, + "IMPLEMENTATION": 326, + "IN": 25, + "INCLUDING": 327, + "INCREMENT": 328, + "INDENT": 329, + "INDEX": 79, + "INDEXED": 86, + "INITIALLY": 330, + "INNER": 90, + "INPUT": 331, + "INSERT": 172, + "INSERTED": 87, + "INSTANCE": 332, + "INSTANTIABLE": 333, + "INSTEAD": 234, + "INTEGRITY": 334, + "INTERSECT": 62, + "INTERVAL": 135, + "INTO": 82, + "INVOKER": 335, + "IS": 167, + "ISOLATION": 336, + "If": 644, + "IfExists": 606, + "IfNotExists": 580, + "IndexKey": 593, + "Insert": 567, + "InsertDeleteUpdate": 694, + "Into": 569, + "IntoClause": 504, + "JAVASCRIPT": 114, + "JOIN": 89, + "JavaScript": 534, + "JoinMode": 514, + "JoinModeMode": 515, + "JoinTable": 512, + "JoinTableAs": 513, + "JoinTableAs_option": 725, + "JoinTableAs_option2": 726, + "JoinTablesList": 511, + "Json": 628, + "JsonArray": 632, + "JsonElementsList": 635, + "JsonObject": 631, + "JsonPrimitiveValue": 630, + "JsonPropertiesList": 633, + "JsonProperty": 634, + "JsonValue": 629, + "K": 6, + "KEY": 182, + "KEY_MEMBER": 337, + "KEY_TYPE": 338, + "LAST": 106, + "LCUR": 207, + "LE": 159, + "LEFT": 91, + "LENGTH": 339, + "LEVEL": 340, + "LIBRARY": 341, + "LIKE": 27, + "LIMIT": 110, + "LINK": 342, + "LITERAL": 10, + "LOCATION": 343, + "LOCATOR": 344, + "LPAR": 19, + "LT": 47, + "LTLT": 49, + "LimitClause": 527, + "LimitClause_option": 727, + "LimitClause_option2": 728, + "LimitClause_option3": 729, + "LimitClause_option4": 730, + "Literal": 477, + "LiteralWithSpaces": 478, + "LogicValue": 548, + "M": 7, + "MAP": 345, + "MAPPING": 346, + "MATCHED": 223, + "MATRIX": 77, + "MAX": 127, + "MAXNUM": 189, + "MAXVALUE": 347, + "MERGE": 222, + "MESSAGE_LENGTH": 348, + "MESSAGE_OCTET_LENGTH": 349, + "MESSAGE_TEXT": 350, + "MIN": 126, + "MINUS": 155, + "MINVALUE": 351, + "MODIFY": 194, + "MODULO": 45, + "MORE": 352, + "MUMPS": 353, + "Merge": 660, + "MergeInto": 661, + "MergeMatched": 665, + "MergeMatchedAction": 666, + "MergeMatchedList": 664, + "MergeNotMatched": 667, + "MergeNotMatchedAction": 668, + "MergeOn": 663, + "MergeUsing": 662, + "NAME": 354, + "NAMES": 355, + "NAMESPACE": 356, + "NATURAL": 88, + "NE": 162, + "NEEQEQ": 163, + "NEEQEQEQ": 164, + "NESTING": 357, + "NEW": 118, + "NEXT": 358, + "NFC": 359, + "NFD": 360, + "NFKC": 361, + "NFKD": 362, + "NIL": 363, + "NO": 185, + "NOCASE": 109, + "NORMALIZED": 364, + "NOT": 57, + "NOT_BETWEEN": 166, + "NOT_LIKE": 153, + "NSTRING": 138, + "NULL": 139, + "NULLABLE": 365, + "NULLS": 104, + "NUMBER": 38, + "NewClause": 537, + "NonReserved": 697, + "NullValue": 550, + "NullsOrder": 525, + "NumValue": 547, + "NumberMax": 599, + "OBJECT": 366, + "OCTETS": 367, + "OF": 36, + "OFF": 209, + "OFFSET": 111, + "ON": 96, + "ONLY": 202, + "OPTION": 203, + "OPTIONS": 368, + "OR": 65, + "ORDER": 30, + "ORDERING": 369, + "ORDINALITY": 370, + "OTHERS": 371, + "OUTER": 85, + "OUTPUT": 225, + "OVER": 121, + "OVERRIDING": 372, + "OffsetClause": 528, + "OnClause": 516, + "OnDeleteClause": 590, + "OnForeignKeyClause": 589, + "OnOff": 640, + "OnUpdateClause": 591, + "Op": 559, + "OrderClause": 523, + "OrderExpression": 526, + "OrderExpressionsList": 524, + "OutputClause": 669, + "OverClause": 541, + "OverOrderByClause": 543, + "OverPartitionClause": 542, + "P": 8, + "PAD": 373, + "PARAMETER_MODE": 374, + "PARAMETER_NAME": 375, + "PARAMETER_ORDINAL_POSITION": 376, + "PARAMETER_SPECIFIC_CATALOG": 377, + "PARAMETER_SPECIFIC_NAME": 378, + "PARAMETER_SPECIFIC_SCHEMA": 379, + "PARTIAL": 380, + "PARTITION": 122, + "PASCAL": 381, + "PASSING": 382, + "PASSTHROUGH": 383, + "PATH": 66, + "PERCENT": 475, + "PERMISSION": 384, + "PIVOT": 22, + "PLACING": 385, + "PLAN": 14, + "PLI": 386, + "PLUS": 69, + "PRECEDING": 387, + "PRESERVE": 388, + "PRIMARY": 181, + "PRINT": 217, + "PRIOR": 389, + "PRIVILEGES": 390, + "PUBLIC": 391, + "ParColsList": 588, + "ParLiteral": 602, + "ParamValue": 554, + "ParamValue_group": 734, + "PivotClause": 488, + "PivotClause2": 489, + "PivotClause_option": 703, + "PivotClause_option2": 704, + "PivotClause_option3": 705, + "Plugin": 652, + "PluginsList": 655, + "PlusStar": 499, + "PrimaryKey": 586, + "PrimaryKey_option": 736, + "PrimitiveValue": 539, + "Print": 650, + "QUERY": 13, + "QUESTION": 71, + "QUESTIONDASH": 229, + "Query": 690, + "RBRA": 142, + "RCUR": 208, + "READ": 201, + "RECORDSET": 80, + "RECOVERY": 392, + "REFERENCES": 184, + "REGEXP": 149, + "REINDEX": 235, + "RELATIVE": 393, + "REMOVE": 26, + "RENAME": 192, + "REPEAT": 68, + "REPEATABLE": 394, + "REPLACE": 131, + "REQUIRE": 218, + "REQUIRING": 395, + "RESPECT": 396, + "RESTART": 397, + "RESTORE": 398, + "RESTRICT": 399, + "RETURN": 67, + "RETURNED_CARDINALITY": 400, + "RETURNED_LENGTH": 401, + "RETURNED_OCTET_LENGTH": 402, + "RETURNED_SQLSTATE": 403, + "RETURNING": 404, + "RIGHT": 92, + "ROLE": 405, + "ROLLBACK": 212, + "ROLLUP": 100, + "ROUTINE": 406, + "ROUTINE_CATALOG": 407, + "ROUTINE_NAME": 408, + "ROUTINE_SCHEMA": 409, + "ROW": 55, + "ROWS": 476, + "ROW_COUNT": 410, + "RPAR": 20, + "Reindex": 696, + "RemoveClause": 493, + "RemoveClause_option": 706, + "RemoveColumn": 495, + "RemoveColumnsList": 494, + "RenameTable": 608, + "Require": 651, + "ResultColumn": 530, + "ResultColumns": 529, + "RollbackTransaction": 642, + "SCALE": 411, + "SCHEMA": 412, + "SCHEMA_NAME": 413, + "SCOPE_CATALOG": 414, + "SCOPE_NAME": 415, + "SCOPE_SCHEMA": 416, + "SEARCH": 21, + "SECTION": 417, + "SECURITY": 418, + "SELECT": 75, + "SELECTIVE": 419, + "SELF": 420, + "SEMI": 94, + "SEMICOLON": 474, + "SEQUENCE": 421, + "SERIALIZABLE": 422, + "SERVER": 423, + "SERVER_NAME": 424, + "SESSION": 425, + "SET": 52, + "SETS": 426, + "SHARP": 44, + "SHOW": 199, + "SIMPLE": 427, + "SIZE": 428, + "SLASH": 40, + "SOME": 169, + "SOURCE": 204, + "SPACE": 429, + "SPECIFIC_NAME": 430, + "STANDALONE": 431, + "STAR": 70, + "STATE": 432, + "STATEMENT": 433, + "STRING": 39, + "STRIP": 434, + "STRUCTURE": 435, + "STYLE": 436, + "SUBCLASS_ORIGIN": 437, + "SUM": 123, + "SearchFrom": 500, + "SearchSelector": 497, + "SearchSelectorList": 498, + "SearchSelectorList_repetition": 719, + "SearchSelectorList_repetition2": 720, + "SearchSelector_group": 714, + "SearchSelector_option": 707, + "SearchSelector_option2": 710, + "SearchSelector_repetition": 711, + "SearchSelector_repetition2": 712, + "SearchSelector_repetition3": 713, + "SearchSelector_repetition4": 715, + "SearchSelector_repetition5": 716, + "SearchSelector_repetition6": 717, + "SearchSelector_repetition7": 718, + "SearchSelector_repetition_plus": 708, + "SearchSelector_repetition_plus2": 709, + "Select": 487, + "SelectClause": 501, + "SelectClause_option": 721, + "SelectModifier": 502, + "Select_option": 699, + "Select_option2": 700, + "Select_option3": 702, + "Select_repetition": 701, + "SetColumn": 565, + "SetColumn_group": 735, + "SetColumnsList": 564, + "SetProp": 639, + "SetPropsList": 638, + "SetVariable": 636, + "SharpLiteral": 684, + "SharpValue": 671, + "ShowColumns": 619, + "ShowCreateTable": 621, + "ShowDatabases": 617, + "ShowIndex": 620, + "ShowTables": 618, + "SingularColumnType": 597, + "Source": 626, + "Star": 531, + "Statement": 483, + "Statements": 480, + "Statements_group": 698, + "StringValue": 549, + "StringValuesList": 654, + "SubqueryRestriction": 623, + "T": 9, + "TABLE": 176, + "TABLE_NAME": 438, + "TARGET": 224, + "TEMP": 178, + "TEMPORARY": 439, + "TEXTSTRING": 78, + "THEN": 147, + "TIES": 440, + "TILDA": 150, + "TIMESTAMPDIFF": 134, + "TO": 53, + "TOKEN": 441, + "TOP": 81, + "TOP_LEVEL_COUNT": 442, + "TOTAL": 124, + "TRANSACTION": 211, + "TRANSACTIONS_COMMITTED": 443, + "TRANSACTIONS_ROLLED_BACK": 444, + "TRANSACTION_ACTIVE": 445, + "TRANSFORM": 446, + "TRANSFORMS": 447, + "TRIGGER": 231, + "TRIGGER_CATALOG": 448, + "TRIGGER_NAME": 449, + "TRIGGER_SCHEMA": 450, + "TRUE": 136, + "TRUNCATE": 221, + "TYPE": 451, + "Table": 510, + "TableClass": 575, + "TablesList": 605, + "TemporaryClause": 579, + "Term": 689, + "TermsList": 688, + "TopClause": 503, + "TopClause_option": 722, + "TruncateTable": 659, + "UNBOUNDED": 452, + "UNCOMMITTED": 453, + "UNDER": 454, + "UNION": 59, + "UNIQUE": 74, + "UNLINK": 455, + "UNNAMED": 456, + "UNPIVOT": 24, + "UNTYPED": 457, + "UPDATE": 170, + "URI": 458, + "USAGE": 459, + "USE": 198, + "USER_DEFINED_TYPE_CATALOG": 460, + "USER_DEFINED_TYPE_CODE": 461, + "USER_DEFINED_TYPE_NAME": 462, + "USER_DEFINED_TYPE_SCHEMA": 463, + "USING": 97, + "UnionClause": 522, + "UniqueKey": 592, + "UniqueKey_option": 738, + "UniqueKey_option2": 739, + "Update": 563, + "UseDatabase": 613, + "VALID": 464, + "VALUE": 54, + "VALUES": 174, + "VERSION": 465, + "VERTEX": 41, + "VIEW": 200, + "Value": 572, + "Values": 568, + "ValuesList": 571, + "ValuesListsList": 570, + "VarValue": 551, + "WHEN": 146, + "WHERE": 35, + "WHILE": 214, + "WHITESPACE": 466, + "WITH": 16, + "WORK": 467, + "WRAPPER": 468, + "WRITE": 469, + "When": 557, + "WhensList": 556, + "WhereClause": 517, + "While": 646, + "WithSelect": 484, + "WithTable": 486, + "WithTablesList": 485, + "XMLDECLARATION": 470, + "XMLSCHEMA": 471, + "YES": 472, + "ZONE": 473, + "error": 2, + "main": 479 +}, +terminals_: { + 1: "EOF", + 2: "error", + 3: "A", + 4: "C", + 5: "G", + 6: "K", + 7: "M", + 8: "P", + 9: "T", + 10: "LITERAL", + 11: "BRALITERAL", + 12: "EXPLAIN", + 13: "QUERY", + 14: "PLAN", + 15: "EndTransaction", + 16: "WITH", + 17: "COMMA", + 18: "AS", + 19: "LPAR", + 20: "RPAR", + 21: "SEARCH", + 22: "PIVOT", + 23: "FOR", + 24: "UNPIVOT", + 25: "IN", + 26: "REMOVE", + 27: "LIKE", + 28: "ARROW", + 29: "DOT", + 30: "ORDER", + 31: "BY", + 32: "DOTDOT", + 33: "CARET", + 34: "EQ", + 35: "WHERE", + 36: "OF", + 37: "CLASS", + 38: "NUMBER", + 39: "STRING", + 40: "SLASH", + 41: "VERTEX", + 42: "EDGE", + 43: "EXCLAMATION", + 44: "SHARP", + 45: "MODULO", + 46: "GT", + 47: "LT", + 48: "GTGT", + 49: "LTLT", + 50: "DOLLAR", + 51: "AT", + 52: "SET", + 53: "TO", + 54: "VALUE", + 55: "ROW", + 56: "COLON", + 57: "NOT", + 58: "IF", + 59: "UNION", + 60: "ALL", + 61: "ANY", + 62: "INTERSECT", + 63: "EXCEPT", + 64: "AND", + 65: "OR", + 66: "PATH", + 67: "RETURN", + 68: "REPEAT", + 69: "PLUS", + 70: "STAR", + 71: "QUESTION", + 72: "FROM", + 73: "DISTINCT", + 74: "UNIQUE", + 75: "SELECT", + 76: "COLUMN", + 77: "MATRIX", + 78: "TEXTSTRING", + 79: "INDEX", + 80: "RECORDSET", + 81: "TOP", + 82: "INTO", + 83: "CROSS", + 84: "APPLY", + 85: "OUTER", + 86: "INDEXED", + 87: "INSERTED", + 88: "NATURAL", + 89: "JOIN", + 90: "INNER", + 91: "LEFT", + 92: "RIGHT", + 93: "FULL", + 94: "SEMI", + 95: "ANTI", + 96: "ON", + 97: "USING", + 98: "GROUP", + 99: "GROUPING", + 100: "ROLLUP", + 101: "CUBE", + 102: "HAVING", + 103: "CORRESPONDING", + 104: "NULLS", + 105: "FIRST", + 106: "LAST", + 107: "DIRECTION", + 108: "COLLATE", + 109: "NOCASE", + 110: "LIMIT", + 111: "OFFSET", + 112: "FETCH", + 113: "CURRENT_TIMESTAMP", + 114: "JAVASCRIPT", + 115: "CREATE", + 116: "FUNCTION", + 117: "AGGREGATE", + 118: "NEW", + 119: "CAST", + 120: "CONVERT", + 121: "OVER", + 122: "PARTITION", + 123: "SUM", + 124: "TOTAL", + 125: "COUNT", + 126: "MIN", + 127: "MAX", + 128: "AVG", + 129: "AGGR", + 130: "ARRAY", + 131: "REPLACE", + 132: "DATEADD", + 133: "DATEDIFF", + 134: "TIMESTAMPDIFF", + 135: "INTERVAL", + 136: "TRUE", + 137: "FALSE", + 138: "NSTRING", + 139: "NULL", + 140: "EXISTS", + 141: "ARRAYLBRA", + 142: "RBRA", + 143: "BRAQUESTION", + 144: "CASE", + 145: "END", + 146: "WHEN", + 147: "THEN", + 148: "ELSE", + 149: "REGEXP", + 150: "TILDA", + 151: "GLOB", + 152: "ESCAPE", + 153: "NOT_LIKE", + 154: "BARBAR", + 155: "MINUS", + 156: "AMPERSAND", + 157: "BAR", + 158: "GE", + 159: "LE", + 160: "EQEQ", + 161: "EQEQEQ", + 162: "NE", + 163: "NEEQEQ", + 164: "NEEQEQEQ", + 165: "BETWEEN", + 166: "NOT_BETWEEN", + 167: "IS", + 168: "DOUBLECOLON", + 169: "SOME", + 170: "UPDATE", + 171: "DELETE", + 172: "INSERT", + 173: "DEFAULT", + 174: "VALUES", + 175: "DateValue", + 176: "TABLE", + 177: "IDENTITY", + 178: "TEMP", + 179: "CONSTRAINT", + 180: "CHECK", + 181: "PRIMARY", + 182: "KEY", + 183: "FOREIGN", + 184: "REFERENCES", + 185: "NO", + 186: "ACTION", + 187: "ColumnConstraints", + 188: "ENUM", + 189: "MAXNUM", + 190: "DROP", + 191: "ALTER", + 192: "RENAME", + 193: "ADD", + 194: "MODIFY", + 195: "ATTACH", + 196: "DATABASE", + 197: "DETACH", + 198: "USE", + 199: "SHOW", + 200: "VIEW", + 201: "READ", + 202: "ONLY", + 203: "OPTION", + 204: "SOURCE", + 205: "ASSERT", + 206: "ATLBRA", + 207: "LCUR", + 208: "RCUR", + 209: "OFF", + 210: "COMMIT", + 211: "TRANSACTION", + 212: "ROLLBACK", + 213: "BEGIN", + 214: "WHILE", + 215: "CONTINUE", + 216: "BREAK", + 217: "PRINT", + 218: "REQUIRE", + 219: "ECHO", + 220: "DECLARE", + 221: "TRUNCATE", + 222: "MERGE", + 223: "MATCHED", + 224: "TARGET", + 225: "OUTPUT", + 226: "CONTENT", + 227: "GRAPH", + 228: "COLONDASH", + 229: "QUESTIONDASH", + 230: "CALL", + 231: "TRIGGER", + 232: "BEFORE", + 233: "AFTER", + 234: "INSTEAD", + 235: "REINDEX", + 236: "ABSENT", + 237: "ABSOLUTE", + 238: "ACCORDING", + 239: "ADA", + 240: "ADMIN", + 241: "ALWAYS", + 242: "ASC", + 243: "ASSERTION", + 244: "ASSIGNMENT", + 245: "ATTRIBUTE", + 246: "ATTRIBUTES", + 247: "BASE64", + 248: "BERNOULLI", + 249: "BLOCKED", + 250: "BOM", + 251: "BREADTH", + 252: "CASCADE", + 253: "CATALOG", + 254: "CATALOG_NAME", + 255: "CHAIN", + 256: "CHARACTERISTICS", + 257: "CHARACTERS", + 258: "CHARACTER_SET_CATALOG", + 259: "CHARACTER_SET_NAME", + 260: "CHARACTER_SET_SCHEMA", + 261: "CLASS_ORIGIN", + 262: "COBOL", + 263: "COLLATION", + 264: "COLLATION_CATALOG", + 265: "COLLATION_NAME", + 266: "COLLATION_SCHEMA", + 267: "COLUMNS", + 268: "COLUMN_NAME", + 269: "COMMAND_FUNCTION", + 270: "COMMAND_FUNCTION_CODE", + 271: "COMMITTED", + 272: "CONDITION_NUMBER", + 273: "CONNECTION", + 274: "CONNECTION_NAME", + 275: "CONSTRAINTS", + 276: "CONSTRAINT_CATALOG", + 277: "CONSTRAINT_NAME", + 278: "CONSTRAINT_SCHEMA", + 279: "CONSTRUCTOR", + 280: "CONTROL", + 281: "CURSOR_NAME", + 282: "DATA", + 283: "DATETIME_INTERVAL_CODE", + 284: "DATETIME_INTERVAL_PRECISION", + 285: "DB", + 286: "DEFAULTS", + 287: "DEFERRABLE", + 288: "DEFERRED", + 289: "DEFINED", + 290: "DEFINER", + 291: "DEGREE", + 292: "DEPTH", + 293: "DERIVED", + 294: "DESC", + 295: "DESCRIPTOR", + 296: "DIAGNOSTICS", + 297: "DISPATCH", + 298: "DOCUMENT", + 299: "DOMAIN", + 300: "DYNAMIC_FUNCTION", + 301: "DYNAMIC_FUNCTION_CODE", + 302: "EMPTY", + 303: "ENCODING", + 304: "ENFORCED", + 305: "EXCLUDE", + 306: "EXCLUDING", + 307: "EXPRESSION", + 308: "FILE", + 309: "FINAL", + 310: "FLAG", + 311: "FOLLOWING", + 312: "FORTRAN", + 313: "FOUND", + 314: "FS", + 315: "GENERAL", + 316: "GENERATED", + 317: "GO", + 318: "GOTO", + 319: "GRANTED", + 320: "HEX", + 321: "HIERARCHY", + 322: "ID", + 323: "IGNORE", + 324: "IMMEDIATE", + 325: "IMMEDIATELY", + 326: "IMPLEMENTATION", + 327: "INCLUDING", + 328: "INCREMENT", + 329: "INDENT", + 330: "INITIALLY", + 331: "INPUT", + 332: "INSTANCE", + 333: "INSTANTIABLE", + 334: "INTEGRITY", + 335: "INVOKER", + 336: "ISOLATION", + 337: "KEY_MEMBER", + 338: "KEY_TYPE", + 339: "LENGTH", + 340: "LEVEL", + 341: "LIBRARY", + 342: "LINK", + 343: "LOCATION", + 344: "LOCATOR", + 345: "MAP", + 346: "MAPPING", + 347: "MAXVALUE", + 348: "MESSAGE_LENGTH", + 349: "MESSAGE_OCTET_LENGTH", + 350: "MESSAGE_TEXT", + 351: "MINVALUE", + 352: "MORE", + 353: "MUMPS", + 354: "NAME", + 355: "NAMES", + 356: "NAMESPACE", + 357: "NESTING", + 358: "NEXT", + 359: "NFC", + 360: "NFD", + 361: "NFKC", + 362: "NFKD", + 363: "NIL", + 364: "NORMALIZED", + 365: "NULLABLE", + 366: "OBJECT", + 367: "OCTETS", + 368: "OPTIONS", + 369: "ORDERING", + 370: "ORDINALITY", + 371: "OTHERS", + 372: "OVERRIDING", + 373: "PAD", + 374: "PARAMETER_MODE", + 375: "PARAMETER_NAME", + 376: "PARAMETER_ORDINAL_POSITION", + 377: "PARAMETER_SPECIFIC_CATALOG", + 378: "PARAMETER_SPECIFIC_NAME", + 379: "PARAMETER_SPECIFIC_SCHEMA", + 380: "PARTIAL", + 381: "PASCAL", + 382: "PASSING", + 383: "PASSTHROUGH", + 384: "PERMISSION", + 385: "PLACING", + 386: "PLI", + 387: "PRECEDING", + 388: "PRESERVE", + 389: "PRIOR", + 390: "PRIVILEGES", + 391: "PUBLIC", + 392: "RECOVERY", + 393: "RELATIVE", + 394: "REPEATABLE", + 395: "REQUIRING", + 396: "RESPECT", + 397: "RESTART", + 398: "RESTORE", + 399: "RESTRICT", + 400: "RETURNED_CARDINALITY", + 401: "RETURNED_LENGTH", + 402: "RETURNED_OCTET_LENGTH", + 403: "RETURNED_SQLSTATE", + 404: "RETURNING", + 405: "ROLE", + 406: "ROUTINE", + 407: "ROUTINE_CATALOG", + 408: "ROUTINE_NAME", + 409: "ROUTINE_SCHEMA", + 410: "ROW_COUNT", + 411: "SCALE", + 412: "SCHEMA", + 413: "SCHEMA_NAME", + 414: "SCOPE_CATALOG", + 415: "SCOPE_NAME", + 416: "SCOPE_SCHEMA", + 417: "SECTION", + 418: "SECURITY", + 419: "SELECTIVE", + 420: "SELF", + 421: "SEQUENCE", + 422: "SERIALIZABLE", + 423: "SERVER", + 424: "SERVER_NAME", + 425: "SESSION", + 426: "SETS", + 427: "SIMPLE", + 428: "SIZE", + 429: "SPACE", + 430: "SPECIFIC_NAME", + 431: "STANDALONE", + 432: "STATE", + 433: "STATEMENT", + 434: "STRIP", + 435: "STRUCTURE", + 436: "STYLE", + 437: "SUBCLASS_ORIGIN", + 438: "TABLE_NAME", + 439: "TEMPORARY", + 440: "TIES", + 441: "TOKEN", + 442: "TOP_LEVEL_COUNT", + 443: "TRANSACTIONS_COMMITTED", + 444: "TRANSACTIONS_ROLLED_BACK", + 445: "TRANSACTION_ACTIVE", + 446: "TRANSFORM", + 447: "TRANSFORMS", + 448: "TRIGGER_CATALOG", + 449: "TRIGGER_NAME", + 450: "TRIGGER_SCHEMA", + 451: "TYPE", + 452: "UNBOUNDED", + 453: "UNCOMMITTED", + 454: "UNDER", + 455: "UNLINK", + 456: "UNNAMED", + 457: "UNTYPED", + 458: "URI", + 459: "USAGE", + 460: "USER_DEFINED_TYPE_CATALOG", + 461: "USER_DEFINED_TYPE_CODE", + 462: "USER_DEFINED_TYPE_NAME", + 463: "USER_DEFINED_TYPE_SCHEMA", + 464: "VALID", + 465: "VERSION", + 466: "WHITESPACE", + 467: "WORK", + 468: "WRAPPER", + 469: "WRITE", + 470: "XMLDECLARATION", + 471: "XMLSCHEMA", + 472: "YES", + 473: "ZONE", + 474: "SEMICOLON", + 475: "PERCENT", + 476: "ROWS" +}, +TERROR: 2, + EOF: 1, + + // internals: defined here so the object *structure* doesn't get modified by parse() et al, + // thus helping JIT compilers like Chrome V8. + originalQuoteName: null, + originalParseError: null, + cleanupAfterParse: null, + constructParseErrorInfo: null, + yyMergeLocationInfo: null, + + __reentrant_call_depth: 0, // INTERNAL USE ONLY + __error_infos: [], // INTERNAL USE ONLY: the set of parseErrorInfo objects created since the last cleanup + __error_recovery_infos: [], // INTERNAL USE ONLY: the set of parseErrorInfo objects created since the last cleanup + + // APIs which will be set up depending on user action code analysis: + //yyRecovering: 0, + //yyErrOk: 0, + //yyClearIn: 0, + + // Helper APIs + // ----------- + + // Helper function which can be overridden by user code later on: put suitable quotes around + // literal IDs in a description string. + quoteName: function parser_quoteName(id_str) { + return '"' + id_str + '"'; + }, + + // Return the name of the given symbol (terminal or non-terminal) as a string, when available. + // + // Return NULL when the symbol is unknown to the parser. + getSymbolName: function parser_getSymbolName(symbol) { + if (this.terminals_[symbol]) { + return this.terminals_[symbol]; + } + + // Otherwise... this might refer to a RULE token i.e. a non-terminal: see if we can dig that one up. + // + // An example of this may be where a rule's action code contains a call like this: + // + // parser.getSymbolName(#$) + // + // to obtain a human-readable name of the current grammar rule. + var s = this.symbols_; + for (var key in s) { + if (s[key] === symbol) { + return key; + } + } + return null; + }, + + // Return a more-or-less human-readable description of the given symbol, when available, + // or the symbol itself, serving as its own 'description' for lack of something better to serve up. + // + // Return NULL when the symbol is unknown to the parser. + describeSymbol: function parser_describeSymbol(symbol) { + if (symbol !== this.EOF && this.terminal_descriptions_ && this.terminal_descriptions_[symbol]) { + return this.terminal_descriptions_[symbol]; + } + else if (symbol === this.EOF) { + return 'end of input'; + } + var id = this.getSymbolName(symbol); + if (id) { + return this.quoteName(id); + } + return null; + }, + + // Produce a (more or less) human-readable list of expected tokens at the point of failure. + // + // The produced list may contain token or token set descriptions instead of the tokens + // themselves to help turning this output into something that easier to read by humans + // unless `do_not_describe` parameter is set, in which case a list of the raw, *numeric*, + // expected terminals and nonterminals is produced. + // + // The returned list (array) will not contain any duplicate entries. + collect_expected_token_set: function parser_collect_expected_token_set(state, do_not_describe) { + var TERROR = this.TERROR; + var tokenset = []; + var check = {}; + // Has this (error?) state been outfitted with a custom expectations description text for human consumption? + // If so, use that one instead of the less palatable token set. + if (!do_not_describe && this.state_descriptions_ && this.state_descriptions_[state]) { + return [ + this.state_descriptions_[state] + ]; + } + for (var p in this.table[state]) { + p = +p; + if (p !== TERROR) { + var d = do_not_describe ? p : this.describeSymbol(p); + if (d && !check[d]) { + tokenset.push(d); + check[d] = true; // Mark this token description as already mentioned to prevent outputting duplicate entries. + } + } + } + return tokenset; + }, +productions_: bp({ + pop: u([ + s, + [477, 3], + 478, + 478, + 479, + s, + [480, 3], + 481, + 481, + 482, + s, + [483, 55], + 484, + 485, + 485, + 486, + 487, + 487, + 488, + 488, + 489, + 490, + 490, + 491, + 491, + 492, + 492, + 493, + 494, + 494, + 495, + 495, + 496, + 496, + s, + [497, 52], + 498, + 498, + s, + [499, 3], + 500, + s, + [501, 4], + s, + [502, 8], + s, + [503, 3], + s, + [504, 6], + s, + [505, 4], + s, + [506, 4], + 507, + 507, + s, + [508, 21], + 509, + 510, + 510, + s, + [511, 4], + 512, + s, + [513, 14], + 514, + 514, + s, + [515, 11], + s, + [516, 3], + 517, + 517, + 518, + 518, + 519, + 519, + s, + [520, 4], + 521, + 521, + s, + [522, 9], + 523, + 523, + 524, + 524, + 525, + 525, + s, + [526, 5], + s, + [527, 3], + 528, + 528, + 529, + 529, + s, + [530, 7], + s, + [531, 3], + s, + [532, 4], + s, + [533, 23], + s, + [534, 4, 1], + 537, + s, + [538, 4], + s, + [539, 7], + s, + [540, 3], + s, + [541, 4], + 542, + 543, + s, + [544, 10], + s, + [545, 10], + 546, + 546, + 547, + 548, + 548, + 549, + s, + [549, 6, 1], + s, + [554, 3], + 555, + 555, + 556, + 556, + 557, + 558, + 558, + s, + [559, 61], + s, + [560, 3], + s, + [561, 6], + s, + [562, 3], + 563, + 563, + 564, + 564, + 565, + 565, + 566, + 566, + s, + [567, 12], + 568, + 568, + 569, + 569, + s, + [570, 6], + 571, + 571, + s, + [572, 6], + 573, + 573, + 574, + 574, + 575, + 575, + 576, + 576, + 577, + 577, + s, + [578, 4], + 579, + 579, + 580, + 580, + s, + [581, 3], + 582, + 582, + s, + [583, 5], + 584, + s, + [584, 6, 1], + s, + [589, 5, 1], + 593, + s, + [594, 4], + 595, + 595, + s, + [596, 3], + s, + [597, 4], + 598, + 598, + 599, + 599, + 600, + 600, + 601, + 601, + 602, + s, + [603, 14], + 604, + 605, + 605, + 606, + 606, + s, + [607, 5], + 608, + s, + [609, 4], + 610, + s, + [611, 4], + 612, + 612, + 613, + 613, + s, + [614, 3], + 615, + 615, + 616, + s, + [617, 4], + s, + [618, 4], + 619, + 619, + 620, + 620, + 621, + 621, + 622, + 622, + s, + [623, 3], + s, + [624, 4, 1], + 627, + 627, + s, + [628, 8], + 629, + 629, + s, + [630, 8], + s, + [631, 3], + s, + [632, 3], + 633, + 633, + s, + [634, 3], + 635, + 635, + s, + [636, 6], + 637, + 637, + 638, + 638, + s, + [639, 3], + 640, + s, + [640, 5, 1], + s, + [644, 7, 1], + 650, + 651, + 651, + 652, + 652, + 653, + 654, + 654, + 655, + 655, + 656, + 657, + 657, + s, + [658, 4], + 659, + 660, + 661, + s, + [661, 4, 1], + s, + [664, 3], + 665, + 665, + 666, + 666, + s, + [667, 6], + s, + [668, 4], + s, + [669, 5], + 670, + 671, + s, + [672, 4], + 673, + 674, + 674, + 675, + 675, + s, + [676, 5], + 677, + s, + [677, 6, 1], + s, + [682, 3], + 683, + 684, + s, + [684, 4, 1], + 687, + 688, + 688, + 689, + s, + [689, 4, 1], + 692, + 692, + s, + [693, 5], + s, + [694, 3], + 695, + 696, + s, + [697, 267], + 698, + 698, + 699, + 699, + 700, + 700, + 701, + 701, + 702, + 702, + 703, + 703, + 704, + 704, + 705, + 705, + 706, + 706, + 707, + 707, + 708, + 708, + 709, + 709, + 710, + 710, + 711, + 711, + 712, + 712, + 713, + 713, + 714, + 714, + 715, + 715, + 716, + 716, + 717, + 717, + 718, + 718, + 719, + 719, + 720, + 720, + 721, + 721, + 722, + 722, + 723, + 723, + 724, + 724, + 725, + 725, + 726, + 726, + 727, + 727, + 728, + 728, + 729, + 729, + 730, + 730, + 731, + 731, + 732, + 732, + 733, + 733, + 734, + 734, + 735, + 735, + 736, + 736, + 737, + 737, + 738, + 738, + 739, + 739, + 740, + 740, + 741, + 741, + 742, + 742, + 743, + 743, + 744, + 744, + 745, + 745, + 746, + 746, + 747, + 747, + 748, + 748, + 749, + 749, + 750, + 750, + 751, + 751, + 752, + 752, + 753, + 753, + 754, + 754, + 755, + 755, + 756, + 756, + 757, + 757, + 758, + 758, + 759, + 759, + 760, + 760, + 761, + 761, + 762, + 762, + 763, + 763, + 764, + 764, + 765, + 765, + 766, + 766, + 767, + 767, + 768, + 768, + 769, + 769 +]), + rule: u([ + 1, + 1, + 2, + 1, + 2, + 2, + 3, + c, + [7, 3], + 4, + 1, + 0, + s, + [1, 54], + 3, + 3, + 1, + 5, + 10, + 4, + 8, + 11, + 4, + 2, + 1, + c, + [72, 3], + s, + [3, 3], + c, + [84, 4], + 1, + 1, + 5, + 5, + c, + [91, 6], + s, + [4, 5], + s, + [1, 6], + s, + [2, 3], + c, + [9, 7], + 3, + 4, + 3, + 1, + 4, + 2, + 2, + s, + [4, 5], + 5, + s, + [4, 8], + 6, + c, + [58, 3], + c, + [137, 4], + 4, + c, + [29, 3], + s, + [2, 7], + 3, + 4, + 0, + 0, + c, + [10, 7], + 5, + 0, + 6, + 7, + 6, + 7, + 1, + 3, + 4, + 5, + 3, + 3, + c, + [177, 3], + c, + [4, 4], + c, + [72, 3], + c, + [4, 5], + c, + [15, 4], + c, + [50, 3], + c, + [125, 3], + c, + [11, 3], + c, + [25, 3], + 4, + c, + [123, 3], + c, + [22, 5], + c, + [129, 5], + 2, + c, + [18, 3], + s, + [2, 5], + c, + [75, 3], + 0, + 4, + 1, + 3, + c, + [112, 3], + 1, + c, + [10, 3], + c, + [21, 4], + c, + [135, 3], + 3, + 0, + c, + [76, 4], + c, + [41, 3], + 3, + c, + [108, 3], + 3, + 8, + c, + [23, 3], + c, + [91, 4], + c, + [29, 3], + 1, + 5, + c, + [216, 3], + c, + [205, 4], + c, + [241, 19], + c, + [22, 4], + 5, + 5, + 2, + 2, + 6, + 8, + 6, + 8, + s, + [1, 7], + 5, + 6, + 6, + 0, + c, + [204, 3], + c, + [49, 12], + 5, + c, + [252, 3], + s, + [8, 5], + c, + [159, 4], + c, + [248, 6], + 4, + c, + [107, 4], + 1, + 5, + c, + [299, 3], + 4, + 2, + 0, + s, + [3, 4], + 5, + 3, + c, + [51, 3], + s, + [3, 11], + c, + [14, 4], + c, + [18, 12], + 6, + 6, + c, + [209, 3], + c, + [256, 6], + 6, + 5, + 6, + c, + [96, 3], + 4, + c, + [180, 4], + c, + [130, 5], + c, + [341, 7], + s, + [1, 3], + 6, + c, + [214, 3], + c, + [280, 4], + 5, + 4, + s, + [7, 4, -1], + 5, + 8, + 7, + 4, + c, + [297, 3], + c, + [463, 3], + c, + [37, 3], + c, + [145, 4], + c, + [147, 8], + 3, + 9, + 5, + c, + [22, 4], + c, + [296, 4], + c, + [247, 3], + 1, + c, + [128, 3], + c, + [12, 3], + c, + [283, 7], + 2, + 4, + 6, + 9, + 3, + c, + [6, 3], + 4, + 6, + c, + [440, 3], + c, + [467, 4], + c, + [119, 3], + c, + [88, 4], + c, + [170, 3], + c, + [52, 6], + 3, + 2, + 5, + 3, + 6, + c, + [193, 3], + c, + [298, 3], + c, + [32, 3], + 5, + c, + [419, 3], + 0, + 2, + s, + [6, 3], + 8, + c, + [113, 3], + 7, + c, + [59, 3], + c, + [63, 3], + 6, + c, + [339, 4], + 4, + 5, + 5, + 8, + 9, + c, + [7, 3], + 3, + 5, + c, + [76, 4], + 4, + 6, + c, + [4, 4], + 11, + 8, + c, + [212, 3], + c, + [494, 3], + c, + [496, 4], + s, + [2, 4], + c, + [427, 5], + c, + [332, 9], + c, + [19, 3], + c, + [163, 4], + c, + [212, 5], + c, + [221, 3], + 5, + 5, + 6, + c, + [22, 3], + c, + [460, 5], + c, + [517, 4], + c, + [305, 3], + c, + [597, 4], + c, + [55, 5], + c, + [488, 7], + c, + [236, 5], + 6, + c, + [141, 4], + c, + [22, 6], + 4, + 6, + s, + [1, 4, 2], + 7, + 9, + 7, + 9, + 3, + c, + [22, 3], + 0, + 2, + c, + [145, 4], + c, + [209, 3], + 2, + 1, + 8, + c, + [614, 4], + 3, + 7, + 6, + 3, + c, + [298, 3], + c, + [155, 4], + s, + [4, 4, -1], + c, + [83, 4], + 6, + c, + [84, 5], + c, + [120, 3], + 9, + 8, + 9, + c, + [756, 4], + c, + [142, 4], + c, + [114, 4], + s, + [1, 267], + c, + [542, 3], + c, + [804, 4], + c, + [8, 6], + c, + [4, 5], + c, + [844, 4], + c, + [20, 5], + c, + [347, 3], + c, + [32, 3], + c, + [8, 5], + c, + [4, 7], + c, + [38, 11], + c, + [46, 9], + c, + [68, 5], + c, + [74, 9], + c, + [22, 9], + c, + [44, 20], + c, + [4, 23], + c, + [94, 11] +]) +}), +performAction: function parser__PerformAction(yystate /* action[1] */, yysp, yyvstack) { + + /* this == yyval */ + + // the JS engine itself can go and remove these statements when `yy` turns out to be unused in any action code! + var yy = this.yy; + var yyparser = yy.parser; + var yylexer = yy.lexer; + + + + switch (yystate) { +case 0: + /*! Production:: $accept : main $end */ + + // default action (generated by JISON mode classic/merge :: 1,VT,VA,-,-,-,-,-,-): + this.$ = yyvstack[yysp - 1]; + // END of default action (generated by JISON mode classic/merge :: 1,VT,VA,-,-,-,-,-,-) + break; + case 1: - - if (alasql.options.casesensitive) this.$ = $$[$0]; - else this.$ = $$[$0].toLowerCase(); - -break; + /*! Production:: Literal : LITERAL */ + + if (alasql.options.casesensitive) this.$ = yyvstack[yysp]; + else this.$ = yyvstack[yysp].toLowerCase(); + break; + case 2: - this.$ = doubleq($$[$0].substr(1,$$[$0].length-2)); -break; + /*! Production:: Literal : BRALITERAL */ + + this.$ = {val:doubleq(yyvstack[yysp].substr(1,yyvstack[yysp].length-2)), wrap:yyvstack[yysp].substr(0,1)}; + break; + case 3: - this.$ = $$[$0].toLowerCase() -break; + /*! Production:: Literal : error NonReserved */ + + this.$ = yyvstack[yysp].toLowerCase() + break; + case 4: - this.$ = $$[$0] -break; + /*! Production:: LiteralWithSpaces : LITERAL */ +case 312: + /*! Production:: Expression : JavaScript */ + + this.$ = yyvstack[yysp] + break; + case 5: - this.$ = $$[$0] ? $$[$0-1] + ' ' + $$[$0] : $$[$0-1] -break; + /*! Production:: LiteralWithSpaces : LiteralWithSpaces LITERAL */ + + this.$ = yyvstack[yysp] ? yyvstack[yysp - 1] + ' ' + yyvstack[yysp] : yyvstack[yysp - 1] + break; + case 6: - return new yy.Statements({statements:$$[$0-1]}); -break; + /*! Production:: main : Statements EOF */ + + // default action (generated by JISON mode classic/merge :: 2,VT,VA,-,-,-,-,-,-): + this.$ = yyvstack[yysp - 1]; + // END of default action (generated by JISON mode classic/merge :: 2,VT,VA,-,-,-,-,-,-) + + + return new yy.Statements({statements:yyvstack[yysp - 1]}); + break; + case 7: - this.$ = $$[$0-2]; if($$[$0]) $$[$0-2].push($$[$0]); -break; -case 8: case 9: case 70: case 80: case 85: case 143: case 177: case 205: case 206: case 242: case 261: case 276: case 359: case 377: case 456: case 479: case 480: case 484: case 492: case 533: case 534: case 571: case 654: case 664: case 688: case 690: case 692: case 706: case 707: case 737: case 761: - this.$ = [$$[$0]]; -break; + /*! Production:: Statements : Statements Statements_group AStatement */ + + this.$ = yyvstack[yysp - 2]; if(yyvstack[yysp]) yyvstack[yysp - 2].push(yyvstack[yysp]); + break; + +case 8: + /*! Production:: Statements : AStatement */ +case 9: + /*! Production:: Statements : ExplainStatement */ +case 70: + /*! Production:: WithTablesList : WithTable */ +case 80: + /*! Production:: AsList : AsPart */ +case 85: + /*! Production:: RemoveColumnsList : RemoveColumn */ +case 143: + /*! Production:: SearchSelectorList : SearchSelectorList_repetition2 */ +case 177: + /*! Production:: FromTablesList : FromTable */ +case 205: + /*! Production:: JoinTablesList : JoinTable */ +case 206: + /*! Production:: JoinTablesList : ApplyClause */ +case 242: + /*! Production:: GroupExpressionsList : GroupExpression */ +case 261: + /*! Production:: OrderExpressionsList : OrderExpression */ +case 276: + /*! Production:: ResultColumns : ResultColumn */ +case 359: + /*! Production:: ExprList : Expression */ +case 377: + /*! Production:: WhensList : When */ +case 456: + /*! Production:: SetColumnsList : SetColumn */ +case 479: + /*! Production:: ValuesListsList : Json */ +case 480: + /*! Production:: ValuesListsList : ParamValue */ +case 484: + /*! Production:: ValuesList : Expression */ +case 492: + /*! Production:: ColumnsList : Column */ +case 513: + /*! Production:: ConstraintsList : Constraint */ +case 533: + /*! Production:: ColsList : Literal */ +case 534: + /*! Production:: ColsList : STRING */ +case 537: + /*! Production:: ColumnDefsList : ColumnDef */ +case 571: + /*! Production:: TablesList : Table */ +case 654: + /*! Production:: JsonElementsList : JsonValue */ +case 664: + /*! Production:: SetPropsList : ArrowDot SetProp */ +case 688: + /*! Production:: StringValuesList : StringValue */ +case 690: + /*! Production:: PluginsList : Plugin */ +case 692: + /*! Production:: DeclaresList : DeclareItem */ +case 706: + /*! Production:: MergeMatchedList : MergeMatched */ +case 707: + /*! Production:: MergeMatchedList : MergeNotMatched */ +case 737: + /*! Production:: GraphList : GraphVertexEdge */ +case 761: + /*! Production:: TermsList : Term */ +case 1066: + /*! Production:: SearchSelector_repetition_plus : SearchSelector */ +case 1068: + /*! Production:: SearchSelector_repetition_plus2 : SearchSelector */ + + this.$ = [yyvstack[yysp]]; + break; + case 10: - this.$ = $$[$0]; $$[$0].explain = true; -break; + /*! Production:: ExplainStatement : EXPLAIN AStatement */ + + this.$ = yyvstack[yysp]; yyvstack[yysp].explain = true; + break; + case 11: - this.$ = $$[$0]; $$[$0].explain = true; -break; + /*! Production:: ExplainStatement : EXPLAIN QUERY PLAN AStatement */ + + this.$ = yyvstack[yysp]; yyvstack[yysp].explain = true; + break; + case 12: - - this.$ = $$[$0]; - - // TODO combine exists and queries - if(yy.exists) this.$.exists = yy.exists; - delete yy.exists; - if(yy.queries) this.$.queries = yy.queries; - delete yy.queries; - -break; -case 13: case 162: case 172: case 237: case 238: case 240: case 248: case 250: case 259: case 270: case 273: case 380: case 496: case 506: case 508: case 520: case 526: case 527: case 572: - this.$ = undefined; -break; + /*! Production:: AStatement : Statement */ + + this.$ = yyvstack[yysp]; + + // TODO combine exists and queries + if(yy.exists) this.$.exists = yy.exists; + delete yy.exists; + if(yy.queries) this.$.queries = yy.queries; + delete yy.queries; + break; + +case 13: + /*! Production:: Statement : %epsilon */ +case 162: + /*! Production:: TopClause : %epsilon */ +case 163: + /*! Production:: IntoClause : %epsilon */ +case 172: + /*! Production:: FromClause : %epsilon */ +case 237: + /*! Production:: OnClause : %epsilon */ +case 238: + /*! Production:: WhereClause : %epsilon */ +case 240: + /*! Production:: GroupClause : %epsilon */ +case 248: + /*! Production:: HavingClause : %epsilon */ +case 250: + /*! Production:: UnionClause : %epsilon */ +case 259: + /*! Production:: OrderClause : %epsilon */ +case 270: + /*! Production:: LimitClause : %epsilon */ +case 273: + /*! Production:: OffsetClause : %epsilon */ +case 333: + /*! Production:: OverClause : %epsilon */ +case 380: + /*! Production:: ElseClause : %epsilon */ +case 496: + /*! Production:: TableClass : TABLE */ +case 506: + /*! Production:: TemporaryClause : %epsilon */ +case 508: + /*! Production:: IfNotExists : %epsilon */ +case 520: + /*! Production:: ConstraintName : %epsilon */ +case 526: + /*! Production:: OnForeignKeyClause : %epsilon */ +case 527: + /*! Production:: OnForeignKeyClause : OnDeleteClause OnUpdateClause */ +case 528: + /*! Production:: OnDeleteClause : ON DELETE NO ACTION */ +case 529: + /*! Production:: OnUpdateClause : ON UPDATE NO ACTION */ +case 572: + /*! Production:: IfExists : %epsilon */ +case 589: + /*! Production:: AsClause : %epsilon */ +case 729: + /*! Production:: CreateVertexSet : %epsilon */ +case 1048: + /*! Production:: Select_option : %epsilon */ +case 1050: + /*! Production:: Select_option2 : %epsilon */ +case 1054: + /*! Production:: Select_option3 : %epsilon */ +case 1056: + /*! Production:: PivotClause_option : %epsilon */ +case 1058: + /*! Production:: PivotClause_option2 : %epsilon */ +case 1060: + /*! Production:: PivotClause_option3 : %epsilon */ +case 1062: + /*! Production:: RemoveClause_option : %epsilon */ +case 1064: + /*! Production:: SearchSelector_option : %epsilon */ +case 1070: + /*! Production:: SearchSelector_option2 : %epsilon */ +case 1092: + /*! Production:: SelectClause_option : %epsilon */ +case 1094: + /*! Production:: TopClause_option : %epsilon */ +case 1096: + /*! Production:: FromTable_option : %epsilon */ +case 1098: + /*! Production:: FromTable_option2 : %epsilon */ +case 1100: + /*! Production:: JoinTableAs_option : %epsilon */ +case 1102: + /*! Production:: JoinTableAs_option2 : %epsilon */ +case 1104: + /*! Production:: LimitClause_option : %epsilon */ +case 1106: + /*! Production:: LimitClause_option2 : %epsilon */ +case 1108: + /*! Production:: LimitClause_option3 : %epsilon */ +case 1110: + /*! Production:: LimitClause_option4 : %epsilon */ +case 1116: + /*! Production:: FuncValue_option : %epsilon */ +case 1122: + /*! Production:: PrimaryKey_option : %epsilon */ +case 1124: + /*! Production:: ForeignKey_option : %epsilon */ +case 1126: + /*! Production:: UniqueKey_option : %epsilon */ +case 1128: + /*! Production:: UniqueKey_option2 : %epsilon */ +case 1130: + /*! Production:: ColumnConstraint_option : %epsilon */ +case 1132: + /*! Production:: ColumnConstraint_option2 : %epsilon */ +case 1136: + /*! Production:: CreateView_option : %epsilon */ +case 1138: + /*! Production:: CreateView_option2 : %epsilon */ +case 1140: + /*! Production:: CreateVertex_option : %epsilon */ +case 1142: + /*! Production:: CreateVertex_option2 : %epsilon */ +case 1144: + /*! Production:: CreateVertex_option3 : %epsilon */ +case 1146: + /*! Production:: CreateEdge_option : %epsilon */ +case 1148: + /*! Production:: GraphVertexEdge_option : %epsilon */ +case 1150: + /*! Production:: GraphVertexEdge_option2 : %epsilon */ +case 1152: + /*! Production:: GraphVertexEdge_option3 : %epsilon */ +case 1154: + /*! Production:: GraphVertexEdge_option4 : %epsilon */ +case 1156: + /*! Production:: GraphVertexEdge_option5 : %epsilon */ +case 1166: + /*! Production:: GraphElement_option : %epsilon */ +case 1168: + /*! Production:: GraphElement_option2 : %epsilon */ +case 1170: + /*! Production:: GraphElement_option3 : %epsilon */ +case 1172: + /*! Production:: GraphElement_option4 : %epsilon */ +case 1174: + /*! Production:: GraphElement_option5 : %epsilon */ +case 1176: + /*! Production:: GraphElement_option6 : %epsilon */ +case 1186: + /*! Production:: CreateTrigger_option : %epsilon */ +case 1188: + /*! Production:: CreateTrigger_option2 : %epsilon */ + + this.$ = undefined; + break; + +case 14: + /*! Production:: Statement : AlterTable */ +case 15: + /*! Production:: Statement : AttachDatabase */ +case 16: + /*! Production:: Statement : Call */ +case 17: + /*! Production:: Statement : CreateDatabase */ +case 18: + /*! Production:: Statement : CreateIndex */ +case 19: + /*! Production:: Statement : CreateGraph */ +case 20: + /*! Production:: Statement : CreateTable */ +case 21: + /*! Production:: Statement : CreateView */ +case 22: + /*! Production:: Statement : CreateEdge */ +case 23: + /*! Production:: Statement : CreateVertex */ +case 24: + /*! Production:: Statement : Declare */ +case 25: + /*! Production:: Statement : Delete */ +case 26: + /*! Production:: Statement : DetachDatabase */ +case 27: + /*! Production:: Statement : DropDatabase */ +case 28: + /*! Production:: Statement : DropIndex */ +case 29: + /*! Production:: Statement : DropTable */ +case 30: + /*! Production:: Statement : DropView */ +case 31: + /*! Production:: Statement : If */ +case 32: + /*! Production:: Statement : Insert */ +case 33: + /*! Production:: Statement : Merge */ +case 34: + /*! Production:: Statement : Reindex */ +case 35: + /*! Production:: Statement : RenameTable */ +case 36: + /*! Production:: Statement : Select */ +case 37: + /*! Production:: Statement : ShowCreateTable */ +case 38: + /*! Production:: Statement : ShowColumns */ +case 39: + /*! Production:: Statement : ShowDatabases */ +case 40: + /*! Production:: Statement : ShowIndex */ +case 41: + /*! Production:: Statement : ShowTables */ +case 42: + /*! Production:: Statement : TruncateTable */ +case 43: + /*! Production:: Statement : WithSelect */ +case 44: + /*! Production:: Statement : CreateTrigger */ +case 45: + /*! Production:: Statement : DropTrigger */ +case 46: + /*! Production:: Statement : BeginTransaction */ +case 47: + /*! Production:: Statement : CommitTransaction */ +case 48: + /*! Production:: Statement : RollbackTransaction */ +case 49: + /*! Production:: Statement : EndTransaction */ +case 50: + /*! Production:: Statement : UseDatabase */ +case 51: + /*! Production:: Statement : Update */ +case 52: + /*! Production:: Statement : JavaScript */ +case 53: + /*! Production:: Statement : Source */ +case 54: + /*! Production:: Statement : Assert */ +case 55: + /*! Production:: Statement : While */ +case 56: + /*! Production:: Statement : Continue */ +case 57: + /*! Production:: Statement : Break */ +case 58: + /*! Production:: Statement : BeginEnd */ +case 59: + /*! Production:: Statement : Print */ +case 60: + /*! Production:: Statement : Require */ +case 61: + /*! Production:: Statement : SetVariable */ +case 62: + /*! Production:: Statement : ExpressionStatement */ +case 63: + /*! Production:: Statement : AddRule */ +case 64: + /*! Production:: Statement : Query */ +case 65: + /*! Production:: Statement : Echo */ +case 66: + /*! Production:: Statement : CreateFunction */ +case 67: + /*! Production:: Statement : CreateAggregate */ +case 88: + /*! Production:: ArrowDot : ARROW */ +case 89: + /*! Production:: ArrowDot : DOT */ +case 474: + /*! Production:: Values : VALUES */ +case 475: + /*! Production:: Values : VALUE */ +case 477: + /*! Production:: Into : INTO */ +case 499: + /*! Production:: CreateTableOptionsClause : CreateTableOptions */ +case 501: + /*! Production:: CreateTableOptions : CreateTableOption */ +case 502: + /*! Production:: CreateTableOption : DEFAULT */ +case 779: + /*! Production:: NonReserved : A */ +case 780: + /*! Production:: NonReserved : ABSENT */ +case 781: + /*! Production:: NonReserved : ABSOLUTE */ +case 782: + /*! Production:: NonReserved : ACCORDING */ +case 783: + /*! Production:: NonReserved : ACTION */ +case 784: + /*! Production:: NonReserved : ADA */ +case 785: + /*! Production:: NonReserved : ADD */ +case 786: + /*! Production:: NonReserved : ADMIN */ +case 787: + /*! Production:: NonReserved : AFTER */ +case 788: + /*! Production:: NonReserved : ALWAYS */ +case 789: + /*! Production:: NonReserved : ASC */ +case 790: + /*! Production:: NonReserved : ASSERTION */ +case 791: + /*! Production:: NonReserved : ASSIGNMENT */ +case 792: + /*! Production:: NonReserved : ATTRIBUTE */ +case 793: + /*! Production:: NonReserved : ATTRIBUTES */ +case 794: + /*! Production:: NonReserved : BASE64 */ +case 795: + /*! Production:: NonReserved : BEFORE */ +case 796: + /*! Production:: NonReserved : BERNOULLI */ +case 797: + /*! Production:: NonReserved : BLOCKED */ +case 798: + /*! Production:: NonReserved : BOM */ +case 799: + /*! Production:: NonReserved : BREADTH */ +case 800: + /*! Production:: NonReserved : C */ +case 801: + /*! Production:: NonReserved : CASCADE */ +case 802: + /*! Production:: NonReserved : CATALOG */ +case 803: + /*! Production:: NonReserved : CATALOG_NAME */ +case 804: + /*! Production:: NonReserved : CHAIN */ +case 805: + /*! Production:: NonReserved : CHARACTERISTICS */ +case 806: + /*! Production:: NonReserved : CHARACTERS */ +case 807: + /*! Production:: NonReserved : CHARACTER_SET_CATALOG */ +case 808: + /*! Production:: NonReserved : CHARACTER_SET_NAME */ +case 809: + /*! Production:: NonReserved : CHARACTER_SET_SCHEMA */ +case 810: + /*! Production:: NonReserved : CLASS_ORIGIN */ +case 811: + /*! Production:: NonReserved : COBOL */ +case 812: + /*! Production:: NonReserved : COLLATION */ +case 813: + /*! Production:: NonReserved : COLLATION_CATALOG */ +case 814: + /*! Production:: NonReserved : COLLATION_NAME */ +case 815: + /*! Production:: NonReserved : COLLATION_SCHEMA */ +case 816: + /*! Production:: NonReserved : COLUMNS */ +case 817: + /*! Production:: NonReserved : COLUMN_NAME */ +case 818: + /*! Production:: NonReserved : COMMAND_FUNCTION */ +case 819: + /*! Production:: NonReserved : COMMAND_FUNCTION_CODE */ +case 820: + /*! Production:: NonReserved : COMMITTED */ +case 821: + /*! Production:: NonReserved : CONDITION_NUMBER */ +case 822: + /*! Production:: NonReserved : CONNECTION */ +case 823: + /*! Production:: NonReserved : CONNECTION_NAME */ +case 824: + /*! Production:: NonReserved : CONSTRAINTS */ +case 825: + /*! Production:: NonReserved : CONSTRAINT_CATALOG */ +case 826: + /*! Production:: NonReserved : CONSTRAINT_NAME */ +case 827: + /*! Production:: NonReserved : CONSTRAINT_SCHEMA */ +case 828: + /*! Production:: NonReserved : CONSTRUCTOR */ +case 829: + /*! Production:: NonReserved : CONTENT */ +case 830: + /*! Production:: NonReserved : CONTINUE */ +case 831: + /*! Production:: NonReserved : CONTROL */ +case 832: + /*! Production:: NonReserved : CURSOR_NAME */ +case 833: + /*! Production:: NonReserved : DATA */ +case 834: + /*! Production:: NonReserved : DATETIME_INTERVAL_CODE */ +case 835: + /*! Production:: NonReserved : DATETIME_INTERVAL_PRECISION */ +case 836: + /*! Production:: NonReserved : DB */ +case 837: + /*! Production:: NonReserved : DEFAULTS */ +case 838: + /*! Production:: NonReserved : DEFERRABLE */ +case 839: + /*! Production:: NonReserved : DEFERRED */ +case 840: + /*! Production:: NonReserved : DEFINED */ +case 841: + /*! Production:: NonReserved : DEFINER */ +case 842: + /*! Production:: NonReserved : DEGREE */ +case 843: + /*! Production:: NonReserved : DEPTH */ +case 844: + /*! Production:: NonReserved : DERIVED */ +case 845: + /*! Production:: NonReserved : DESC */ +case 846: + /*! Production:: NonReserved : DESCRIPTOR */ +case 847: + /*! Production:: NonReserved : DIAGNOSTICS */ +case 848: + /*! Production:: NonReserved : DISPATCH */ +case 849: + /*! Production:: NonReserved : DOCUMENT */ +case 850: + /*! Production:: NonReserved : DOMAIN */ +case 851: + /*! Production:: NonReserved : DYNAMIC_FUNCTION */ +case 852: + /*! Production:: NonReserved : DYNAMIC_FUNCTION_CODE */ +case 853: + /*! Production:: NonReserved : EMPTY */ +case 854: + /*! Production:: NonReserved : ENCODING */ +case 855: + /*! Production:: NonReserved : ENFORCED */ +case 856: + /*! Production:: NonReserved : EXCLUDE */ +case 857: + /*! Production:: NonReserved : EXCLUDING */ +case 858: + /*! Production:: NonReserved : EXPRESSION */ +case 859: + /*! Production:: NonReserved : FILE */ +case 860: + /*! Production:: NonReserved : FINAL */ +case 861: + /*! Production:: NonReserved : FIRST */ +case 862: + /*! Production:: NonReserved : FLAG */ +case 863: + /*! Production:: NonReserved : FOLLOWING */ +case 864: + /*! Production:: NonReserved : FORTRAN */ +case 865: + /*! Production:: NonReserved : FOUND */ +case 866: + /*! Production:: NonReserved : FS */ +case 867: + /*! Production:: NonReserved : G */ +case 868: + /*! Production:: NonReserved : GENERAL */ +case 869: + /*! Production:: NonReserved : GENERATED */ +case 870: + /*! Production:: NonReserved : GO */ +case 871: + /*! Production:: NonReserved : GOTO */ +case 872: + /*! Production:: NonReserved : GRANTED */ +case 873: + /*! Production:: NonReserved : HEX */ +case 874: + /*! Production:: NonReserved : HIERARCHY */ +case 875: + /*! Production:: NonReserved : ID */ +case 876: + /*! Production:: NonReserved : IGNORE */ +case 877: + /*! Production:: NonReserved : IMMEDIATE */ +case 878: + /*! Production:: NonReserved : IMMEDIATELY */ +case 879: + /*! Production:: NonReserved : IMPLEMENTATION */ +case 880: + /*! Production:: NonReserved : INCLUDING */ +case 881: + /*! Production:: NonReserved : INCREMENT */ +case 882: + /*! Production:: NonReserved : INDENT */ +case 883: + /*! Production:: NonReserved : INITIALLY */ +case 884: + /*! Production:: NonReserved : INPUT */ +case 885: + /*! Production:: NonReserved : INSTANCE */ +case 886: + /*! Production:: NonReserved : INSTANTIABLE */ +case 887: + /*! Production:: NonReserved : INSTEAD */ +case 888: + /*! Production:: NonReserved : INTEGRITY */ +case 889: + /*! Production:: NonReserved : INVOKER */ +case 890: + /*! Production:: NonReserved : ISOLATION */ +case 891: + /*! Production:: NonReserved : K */ +case 892: + /*! Production:: NonReserved : KEY */ +case 893: + /*! Production:: NonReserved : KEY_MEMBER */ +case 894: + /*! Production:: NonReserved : KEY_TYPE */ +case 895: + /*! Production:: NonReserved : LAST */ +case 896: + /*! Production:: NonReserved : LENGTH */ +case 897: + /*! Production:: NonReserved : LEVEL */ +case 898: + /*! Production:: NonReserved : LIBRARY */ +case 899: + /*! Production:: NonReserved : LIMIT */ +case 900: + /*! Production:: NonReserved : LINK */ +case 901: + /*! Production:: NonReserved : LOCATION */ +case 902: + /*! Production:: NonReserved : LOCATOR */ +case 903: + /*! Production:: NonReserved : M */ +case 904: + /*! Production:: NonReserved : MAP */ +case 905: + /*! Production:: NonReserved : MAPPING */ +case 906: + /*! Production:: NonReserved : MATCHED */ +case 907: + /*! Production:: NonReserved : MAXVALUE */ +case 908: + /*! Production:: NonReserved : MESSAGE_LENGTH */ +case 909: + /*! Production:: NonReserved : MESSAGE_OCTET_LENGTH */ +case 910: + /*! Production:: NonReserved : MESSAGE_TEXT */ +case 911: + /*! Production:: NonReserved : MINVALUE */ +case 912: + /*! Production:: NonReserved : MORE */ +case 913: + /*! Production:: NonReserved : MUMPS */ +case 914: + /*! Production:: NonReserved : NAME */ +case 915: + /*! Production:: NonReserved : NAMES */ +case 916: + /*! Production:: NonReserved : NAMESPACE */ +case 917: + /*! Production:: NonReserved : NESTING */ +case 918: + /*! Production:: NonReserved : NEXT */ +case 919: + /*! Production:: NonReserved : NFC */ +case 920: + /*! Production:: NonReserved : NFD */ +case 921: + /*! Production:: NonReserved : NFKC */ +case 922: + /*! Production:: NonReserved : NFKD */ +case 923: + /*! Production:: NonReserved : NIL */ +case 924: + /*! Production:: NonReserved : NORMALIZED */ +case 925: + /*! Production:: NonReserved : NULLABLE */ +case 926: + /*! Production:: NonReserved : NULLS */ +case 927: + /*! Production:: NonReserved : NUMBER */ +case 928: + /*! Production:: NonReserved : OBJECT */ +case 929: + /*! Production:: NonReserved : OCTETS */ +case 930: + /*! Production:: NonReserved : OFF */ +case 931: + /*! Production:: NonReserved : OPTION */ +case 932: + /*! Production:: NonReserved : OPTIONS */ +case 933: + /*! Production:: NonReserved : ORDERING */ +case 934: + /*! Production:: NonReserved : ORDINALITY */ +case 935: + /*! Production:: NonReserved : OTHERS */ +case 936: + /*! Production:: NonReserved : OUTPUT */ +case 937: + /*! Production:: NonReserved : OVERRIDING */ +case 938: + /*! Production:: NonReserved : P */ +case 939: + /*! Production:: NonReserved : PAD */ +case 940: + /*! Production:: NonReserved : PARAMETER_MODE */ +case 941: + /*! Production:: NonReserved : PARAMETER_NAME */ +case 942: + /*! Production:: NonReserved : PARAMETER_ORDINAL_POSITION */ +case 943: + /*! Production:: NonReserved : PARAMETER_SPECIFIC_CATALOG */ +case 944: + /*! Production:: NonReserved : PARAMETER_SPECIFIC_NAME */ +case 945: + /*! Production:: NonReserved : PARAMETER_SPECIFIC_SCHEMA */ +case 946: + /*! Production:: NonReserved : PARTIAL */ +case 947: + /*! Production:: NonReserved : PASCAL */ +case 948: + /*! Production:: NonReserved : PASSING */ +case 949: + /*! Production:: NonReserved : PASSTHROUGH */ +case 950: + /*! Production:: NonReserved : PATH */ +case 951: + /*! Production:: NonReserved : PERMISSION */ +case 952: + /*! Production:: NonReserved : PLACING */ +case 953: + /*! Production:: NonReserved : PLI */ +case 954: + /*! Production:: NonReserved : PRECEDING */ +case 955: + /*! Production:: NonReserved : PRESERVE */ +case 956: + /*! Production:: NonReserved : PRIOR */ +case 957: + /*! Production:: NonReserved : PRIVILEGES */ +case 958: + /*! Production:: NonReserved : PUBLIC */ +case 959: + /*! Production:: NonReserved : READ */ +case 960: + /*! Production:: NonReserved : RECOVERY */ +case 961: + /*! Production:: NonReserved : RELATIVE */ +case 962: + /*! Production:: NonReserved : REPEATABLE */ +case 963: + /*! Production:: NonReserved : REQUIRING */ +case 964: + /*! Production:: NonReserved : RESPECT */ +case 965: + /*! Production:: NonReserved : RESTART */ +case 966: + /*! Production:: NonReserved : RESTORE */ +case 967: + /*! Production:: NonReserved : RESTRICT */ +case 968: + /*! Production:: NonReserved : RETURNED_CARDINALITY */ +case 969: + /*! Production:: NonReserved : RETURNED_LENGTH */ +case 970: + /*! Production:: NonReserved : RETURNED_OCTET_LENGTH */ +case 971: + /*! Production:: NonReserved : RETURNED_SQLSTATE */ +case 972: + /*! Production:: NonReserved : RETURNING */ +case 973: + /*! Production:: NonReserved : ROLE */ +case 974: + /*! Production:: NonReserved : ROUTINE */ +case 975: + /*! Production:: NonReserved : ROUTINE_CATALOG */ +case 976: + /*! Production:: NonReserved : ROUTINE_NAME */ +case 977: + /*! Production:: NonReserved : ROUTINE_SCHEMA */ +case 978: + /*! Production:: NonReserved : ROW_COUNT */ +case 979: + /*! Production:: NonReserved : SCALE */ +case 980: + /*! Production:: NonReserved : SCHEMA */ +case 981: + /*! Production:: NonReserved : SCHEMA_NAME */ +case 982: + /*! Production:: NonReserved : SCOPE_CATALOG */ +case 983: + /*! Production:: NonReserved : SCOPE_NAME */ +case 984: + /*! Production:: NonReserved : SCOPE_SCHEMA */ +case 985: + /*! Production:: NonReserved : SECTION */ +case 986: + /*! Production:: NonReserved : SECURITY */ +case 987: + /*! Production:: NonReserved : SELECTIVE */ +case 988: + /*! Production:: NonReserved : SELF */ +case 989: + /*! Production:: NonReserved : SEQUENCE */ +case 990: + /*! Production:: NonReserved : SERIALIZABLE */ +case 991: + /*! Production:: NonReserved : SERVER */ +case 992: + /*! Production:: NonReserved : SERVER_NAME */ +case 993: + /*! Production:: NonReserved : SESSION */ +case 994: + /*! Production:: NonReserved : SETS */ +case 995: + /*! Production:: NonReserved : SIMPLE */ +case 996: + /*! Production:: NonReserved : SIZE */ +case 997: + /*! Production:: NonReserved : SOURCE */ +case 998: + /*! Production:: NonReserved : SPACE */ +case 999: + /*! Production:: NonReserved : SPECIFIC_NAME */ +case 1000: + /*! Production:: NonReserved : STANDALONE */ +case 1001: + /*! Production:: NonReserved : STATE */ +case 1002: + /*! Production:: NonReserved : STATEMENT */ +case 1003: + /*! Production:: NonReserved : STRIP */ +case 1004: + /*! Production:: NonReserved : STRUCTURE */ +case 1005: + /*! Production:: NonReserved : STYLE */ +case 1006: + /*! Production:: NonReserved : SUBCLASS_ORIGIN */ +case 1007: + /*! Production:: NonReserved : T */ +case 1008: + /*! Production:: NonReserved : TABLE_NAME */ +case 1009: + /*! Production:: NonReserved : TEMPORARY */ +case 1010: + /*! Production:: NonReserved : TIES */ +case 1011: + /*! Production:: NonReserved : TOKEN */ +case 1012: + /*! Production:: NonReserved : TOP_LEVEL_COUNT */ +case 1013: + /*! Production:: NonReserved : TRANSACTION */ +case 1014: + /*! Production:: NonReserved : TRANSACTIONS_COMMITTED */ +case 1015: + /*! Production:: NonReserved : TRANSACTIONS_ROLLED_BACK */ +case 1016: + /*! Production:: NonReserved : TRANSACTION_ACTIVE */ +case 1017: + /*! Production:: NonReserved : TRANSFORM */ +case 1018: + /*! Production:: NonReserved : TRANSFORMS */ +case 1019: + /*! Production:: NonReserved : TRIGGER_CATALOG */ +case 1020: + /*! Production:: NonReserved : TRIGGER_NAME */ +case 1021: + /*! Production:: NonReserved : TRIGGER_SCHEMA */ +case 1022: + /*! Production:: NonReserved : TYPE */ +case 1023: + /*! Production:: NonReserved : UNBOUNDED */ +case 1024: + /*! Production:: NonReserved : UNCOMMITTED */ +case 1025: + /*! Production:: NonReserved : UNDER */ +case 1026: + /*! Production:: NonReserved : UNLINK */ +case 1027: + /*! Production:: NonReserved : UNNAMED */ +case 1028: + /*! Production:: NonReserved : UNTYPED */ +case 1029: + /*! Production:: NonReserved : URI */ +case 1030: + /*! Production:: NonReserved : USAGE */ +case 1031: + /*! Production:: NonReserved : USER_DEFINED_TYPE_CATALOG */ +case 1032: + /*! Production:: NonReserved : USER_DEFINED_TYPE_CODE */ +case 1033: + /*! Production:: NonReserved : USER_DEFINED_TYPE_NAME */ +case 1034: + /*! Production:: NonReserved : USER_DEFINED_TYPE_SCHEMA */ +case 1035: + /*! Production:: NonReserved : VALID */ +case 1036: + /*! Production:: NonReserved : VERSION */ +case 1037: + /*! Production:: NonReserved : VIEW */ +case 1038: + /*! Production:: NonReserved : WHITESPACE */ +case 1039: + /*! Production:: NonReserved : WORK */ +case 1040: + /*! Production:: NonReserved : WRAPPER */ +case 1041: + /*! Production:: NonReserved : WRITE */ +case 1042: + /*! Production:: NonReserved : XMLDECLARATION */ +case 1043: + /*! Production:: NonReserved : XMLSCHEMA */ +case 1044: + /*! Production:: NonReserved : YES */ +case 1045: + /*! Production:: NonReserved : ZONE */ + + // default action (generated by JISON mode classic/merge :: 1,VT,VA,-,-,-,-,-,-): + this.$ = yyvstack[yysp]; + // END of default action (generated by JISON mode classic/merge :: 1,VT,VA,-,-,-,-,-,-) + break; + case 68: - this.$ = new yy.WithSelect({withs: $$[$0-1], select:$$[$0]}); -break; -case 69: case 570: - $$[$0-2].push($$[$0]); this.$=$$[$0-2]; -break; + /*! Production:: WithSelect : WITH WithTablesList Select */ + + this.$ = new yy.WithSelect({withs: yyvstack[yysp - 1], select:yyvstack[yysp]}); + break; + +case 69: + /*! Production:: WithTablesList : WithTablesList COMMA WithTable */ +case 570: + /*! Production:: TablesList : TablesList COMMA Table */ + + yyvstack[yysp - 2].push(yyvstack[yysp]); this.$=yyvstack[yysp - 2]; + break; + case 71: - this.$ = {name:$$[$0-4], select:$$[$0-1]}; -break; + /*! Production:: WithTable : Literal AS LPAR Select RPAR */ + + this.$ = {name:yyvstack[yysp - 4], select:yyvstack[yysp - 1]}; + break; + case 72: - - yy.extend(this.$,$$[$0-9]); yy.extend(this.$,$$[$0-8]); yy.extend(this.$,$$[$0-7]); yy.extend(this.$,$$[$0-6]); - yy.extend(this.$,$$[$0-5]); yy.extend(this.$,$$[$0-4]);yy.extend(this.$,$$[$0-3]); - yy.extend(this.$,$$[$0-2]); yy.extend(this.$,$$[$0-1]); yy.extend(this.$,$$[$0]); - this.$ = $$[$0-9]; -/* if(yy.exists) this.$.exists = yy.exists; - delete yy.exists; - if(yy.queries) this.$.queries = yy.queries; - delete yy.queries; -*/ -break; + /*! Production:: Select : SelectClause Select_option IntoClause FromClause Select_option2 WhereClause GroupClause OrderClause LimitClause UnionClause */ + + // default action (generated by JISON mode classic/merge :: 10,VT,VA,VU,VUbA,-,-,-,-): + this.$ = yyvstack[yysp - 9]; + // END of default action (generated by JISON mode classic/merge :: 10,VT,VA,VU,VUbA,-,-,-,-) + + + yy.extend(this.$,yyvstack[yysp - 9]); yy.extend(this.$,yyvstack[yysp - 8]); yy.extend(this.$,yyvstack[yysp - 7]); yy.extend(this.$,yyvstack[yysp - 6]); + yy.extend(this.$,yyvstack[yysp - 5]); yy.extend(this.$,yyvstack[yysp - 4]);yy.extend(this.$,yyvstack[yysp - 3]); + yy.extend(this.$,yyvstack[yysp - 2]); yy.extend(this.$,yyvstack[yysp - 1]); yy.extend(this.$,yyvstack[yysp]); + this.$ = yyvstack[yysp - 9]; + /* if(yy.exists) $$.exists = yy.exists; + delete yy.exists; + if(yy.queries) $$.queries = yy.queries; + delete yy.queries; + */ + break; + case 73: - - this.$ = new yy.Search({selectors:$$[$0-2], from:$$[$0]}); - yy.extend(this.$,$$[$0-1]); - -break; + /*! Production:: Select : SEARCH Select_repetition IntoClause Select_option3 */ + + this.$ = new yy.Search({selectors:yyvstack[yysp - 2], from:yyvstack[yysp]}); + yy.extend(this.$,yyvstack[yysp - 1]); + break; + case 74: - this.$ = {pivot:{expr:$$[$0-5], columnid:$$[$0-3], inlist:$$[$0-2], as:$$[$0]}}; -break; + /*! Production:: PivotClause : PIVOT LPAR Expression FOR Literal PivotClause_option RPAR PivotClause_option2 */ + + this.$ = {pivot:{expr:yyvstack[yysp - 5], columnid:yyvstack[yysp - 3], inlist:yyvstack[yysp - 2], as:yyvstack[yysp]}}; + break; + case 75: - this.$ = {unpivot:{tocolumnid:$$[$0-8], forcolumnid:$$[$0-6], inlist:$$[$0-3], as:$$[$0]}}; -break; -case 76: case 525: case 554: case 590: case 624: case 641: case 642: case 645: case 667: - this.$ = $$[$0-1]; -break; -case 77: case 78: case 86: case 147: case 185: case 247: case 283: case 291: case 292: case 293: case 294: case 295: case 296: case 297: case 298: case 299: case 300: case 301: case 302: case 303: case 304: case 307: case 308: case 323: case 324: case 325: case 326: case 327: case 328: case 379: case 445: case 446: case 447: case 448: case 449: case 450: case 521: case 547: case 551: case 553: case 628: case 629: case 630: case 631: case 632: case 633: case 637: case 639: case 640: case 649: case 665: case 666: case 728: case 743: case 744: case 746: case 747: case 753: case 754: - this.$ = $$[$0]; -break; -case 79: case 84: case 736: case 760: - this.$ = $$[$0-2]; this.$.push($$[$0]); -break; + /*! Production:: PivotClause : UNPIVOT LPAR Literal FOR Literal IN LPAR ColumnsList RPAR RPAR PivotClause_option3 */ + + this.$ = {unpivot:{tocolumnid:yyvstack[yysp - 8], forcolumnid:yyvstack[yysp - 6], inlist:yyvstack[yysp - 3], as:yyvstack[yysp]}}; + break; + +case 76: + /*! Production:: PivotClause2 : IN LPAR AsList RPAR */ +case 444: + /*! Production:: ColFunc : AT LPAR Expression RPAR */ +case 525: + /*! Production:: ParColsList : LPAR ColsList RPAR */ +case 554: + /*! Production:: ParLiteral : LPAR Literal RPAR */ +case 590: + /*! Production:: AsClause : AS Literal */ +case 624: + /*! Production:: Json : AT LPAR Expression RPAR */ +case 641: + /*! Production:: JsonPrimitiveValue : LPAR Expression RPAR */ +case 642: + /*! Production:: JsonObject : LCUR JsonPropertiesList RCUR */ +case 645: + /*! Production:: JsonArray : JsonElementsList RBRA */ +case 667: + /*! Production:: SetProp : LPAR Expression RPAR */ + + this.$ = yyvstack[yysp - 1]; + break; + +case 77: + /*! Production:: AsLiteral : AS Literal */ +case 78: + /*! Production:: AsLiteral : Literal */ +case 86: + /*! Production:: RemoveColumn : Column */ +case 147: + /*! Production:: SearchFrom : FROM Expression */ +case 185: + /*! Production:: FromTable : Table */ +case 247: + /*! Production:: GroupExpression : Expression */ +case 283: + /*! Production:: ResultColumn : Expression */ +case 291: + /*! Production:: Expression : AggrValue */ +case 292: + /*! Production:: Expression : FuncValue */ +case 293: + /*! Production:: Expression : Op */ +case 294: + /*! Production:: Expression : Column */ +case 295: + /*! Production:: Expression : Star */ +case 296: + /*! Production:: Expression : NumValue */ +case 297: + /*! Production:: Expression : LogicValue */ +case 298: + /*! Production:: Expression : StringValue */ +case 299: + /*! Production:: Expression : NullValue */ +case 300: + /*! Production:: Expression : ParamValue */ +case 301: + /*! Production:: Expression : VarValue */ +case 302: + /*! Production:: Expression : ExistsValue */ +case 303: + /*! Production:: Expression : CaseValue */ +case 304: + /*! Production:: Expression : CastClause */ +case 307: + /*! Production:: Expression : ArrayValue */ +case 308: + /*! Production:: Expression : NewClause */ +case 323: + /*! Production:: PrimitiveValue : NumValue */ +case 324: + /*! Production:: PrimitiveValue : StringValue */ +case 325: + /*! Production:: PrimitiveValue : LogicValue */ +case 326: + /*! Production:: PrimitiveValue : NullValue */ +case 327: + /*! Production:: PrimitiveValue : ParamValue */ +case 328: + /*! Production:: PrimitiveValue : FuncValue */ +case 379: + /*! Production:: ElseClause : ELSE Expression */ +case 442: + /*! Production:: ColFunc : Column */ +case 443: + /*! Production:: ColFunc : FuncValue */ +case 445: + /*! Production:: CondOp : GT */ +case 446: + /*! Production:: CondOp : GE */ +case 447: + /*! Production:: CondOp : LT */ +case 448: + /*! Production:: CondOp : LE */ +case 449: + /*! Production:: CondOp : EQ */ +case 450: + /*! Production:: CondOp : NE */ +case 521: + /*! Production:: ConstraintName : CONSTRAINT Literal */ +case 547: + /*! Production:: ColumnType : SingularColumnType */ +case 551: + /*! Production:: ColumnConstraintsClause : ColumnConstraintsList */ +case 553: + /*! Production:: ColumnConstraintsList : ColumnConstraint */ +case 628: + /*! Production:: Json : AT ParamValue */ +case 629: + /*! Production:: Json : JsonObject */ +case 630: + /*! Production:: Json : AT JsonObject */ +case 631: + /*! Production:: Json : ATLBRA JsonArray */ +case 632: + /*! Production:: JsonValue : Json */ +case 633: + /*! Production:: JsonValue : JsonPrimitiveValue */ +case 637: + /*! Production:: JsonPrimitiveValue : Column */ +case 639: + /*! Production:: JsonPrimitiveValue : ParamValue */ +case 640: + /*! Production:: JsonPrimitiveValue : FuncValue */ +case 649: + /*! Production:: JsonPropertiesList : JsonProperty */ +case 665: + /*! Production:: SetProp : Literal */ +case 666: + /*! Production:: SetProp : NUMBER */ +case 675: + /*! Production:: ElseStatement : ELSE AStatement */ +case 728: + /*! Production:: SharpValue : SHARP Literal */ +case 743: + /*! Production:: GraphElementVar : GraphElement */ +case 744: + /*! Production:: GraphElementVar : GraphVar */ +case 746: + /*! Production:: GraphAsClause : AS AtDollar Literal */ +case 753: + /*! Production:: ColonLiteral : COLON Literal */ +case 754: + /*! Production:: SharpLiteral : SHARP Literal */ +case 1046: + /*! Production:: Statements_group : SEMICOLON */ +case 1047: + /*! Production:: Statements_group : GO */ +case 1049: + /*! Production:: Select_option : RemoveClause */ +case 1051: + /*! Production:: Select_option2 : PivotClause */ +case 1055: + /*! Production:: Select_option3 : SearchFrom */ +case 1057: + /*! Production:: PivotClause_option : PivotClause2 */ +case 1059: + /*! Production:: PivotClause_option2 : AsLiteral */ +case 1061: + /*! Production:: PivotClause_option3 : AsLiteral */ +case 1063: + /*! Production:: RemoveClause_option : COLUMN */ +case 1065: + /*! Production:: SearchSelector_option : DIRECTION */ +case 1071: + /*! Production:: SearchSelector_option2 : ExprList */ +case 1078: + /*! Production:: SearchSelector_group : DISTINCT */ +case 1079: + /*! Production:: SearchSelector_group : UNIQUE */ +case 1093: + /*! Production:: SelectClause_option : ResultColumns */ +case 1095: + /*! Production:: TopClause_option : PERCENT */ +case 1097: + /*! Production:: FromTable_option : AS */ +case 1099: + /*! Production:: FromTable_option2 : Literal */ +case 1101: + /*! Production:: JoinTableAs_option : AS */ +case 1103: + /*! Production:: JoinTableAs_option2 : Literal */ +case 1105: + /*! Production:: LimitClause_option : ROWS */ +case 1107: + /*! Production:: LimitClause_option2 : NEXT */ +case 1109: + /*! Production:: LimitClause_option3 : ROWS */ +case 1111: + /*! Production:: LimitClause_option4 : ONLY */ +case 1112: + /*! Production:: Expression_group : CreateVertex */ +case 1113: + /*! Production:: Expression_group : CreateEdge */ +case 1114: + /*! Production:: FuncValue_option_group : DISTINCT */ +case 1115: + /*! Production:: FuncValue_option_group : ALL */ +case 1117: + /*! Production:: FuncValue_option : FuncValue_option_group */ +case 1118: + /*! Production:: ParamValue_group : Literal */ +case 1119: + /*! Production:: ParamValue_group : NUMBER */ +case 1120: + /*! Production:: SetColumn_group : AT */ +case 1121: + /*! Production:: SetColumn_group : DOLLAR */ +case 1123: + /*! Production:: PrimaryKey_option : Literal */ +case 1125: + /*! Production:: ForeignKey_option : ParColsList */ +case 1127: + /*! Production:: UniqueKey_option : KEY */ +case 1129: + /*! Production:: UniqueKey_option2 : Literal */ +case 1131: + /*! Production:: ColumnConstraint_option : ParLiteral */ +case 1133: + /*! Production:: ColumnConstraint_option2 : ParLiteral */ +case 1134: + /*! Production:: DropTable_group : TABLE */ +case 1135: + /*! Production:: DropTable_group : CLASS */ +case 1137: + /*! Production:: CreateView_option : SubqueryRestriction */ +case 1139: + /*! Production:: CreateView_option2 : SubqueryRestriction */ +case 1141: + /*! Production:: CreateVertex_option : Literal */ +case 1143: + /*! Production:: CreateVertex_option2 : SharpValue */ +case 1145: + /*! Production:: CreateVertex_option3 : StringValue */ +case 1147: + /*! Production:: CreateEdge_option : StringValue */ +case 1149: + /*! Production:: GraphVertexEdge_option : Json */ +case 1151: + /*! Production:: GraphVertexEdge_option2 : GraphAsClause */ +case 1153: + /*! Production:: GraphVertexEdge_option3 : Json */ +case 1155: + /*! Production:: GraphVertexEdge_option4 : GraphAsClause */ +case 1157: + /*! Production:: GraphVertexEdge_option5 : GraphAsClause */ +case 1167: + /*! Production:: GraphElement_option : SharpLiteral */ +case 1169: + /*! Production:: GraphElement_option2 : STRING */ +case 1171: + /*! Production:: GraphElement_option3 : ColonLiteral */ +case 1173: + /*! Production:: GraphElement_option4 : STRING */ +case 1175: + /*! Production:: GraphElement_option5 : ColonLiteral */ +case 1177: + /*! Production:: GraphElement_option6 : ColonLiteral */ +case 1187: + /*! Production:: CreateTrigger_option : AS */ +case 1189: + /*! Production:: CreateTrigger_option2 : AS */ + + this.$ = yyvstack[yysp]; + break; + +case 79: + /*! Production:: AsList : AsList COMMA AsPart */ +case 84: + /*! Production:: RemoveColumnsList : RemoveColumnsList COMMA RemoveColumn */ +case 142: + /*! Production:: SearchSelectorList : SearchSelectorList COMMA SearchSelectorList_repetition */ +case 736: + /*! Production:: GraphList : GraphList COMMA GraphVertexEdge */ +case 760: + /*! Production:: TermsList : TermsList COMMA Term */ + + this.$ = yyvstack[yysp - 2]; this.$.push(yyvstack[yysp]); + break; + case 81: - this.$ = {expr:$$[$0]}; -break; + /*! Production:: AsPart : Expression */ + + this.$ = {expr:yyvstack[yysp]}; + break; + case 82: - this.$ = {expr:$$[$0-2],as:$$[$0]}; -break; + /*! Production:: AsPart : Expression AS Literal */ + + this.$ = {expr:yyvstack[yysp - 2],as:yyvstack[yysp]}; + break; + case 83: - this.$ = {removecolumns:$$[$0]}; -break; + /*! Production:: RemoveClause : REMOVE RemoveClause_option RemoveColumnsList */ + + this.$ = {removecolumns:yyvstack[yysp]}; + break; + case 87: - this.$ = {like:$$[$0]}; -break; -case 90: case 104: - this.$ = {srchid:"PROP", args: [$$[$0]]}; -break; + /*! Production:: RemoveColumn : LIKE StringValue */ + + this.$ = {like:yyvstack[yysp]}; + break; + +case 90: + /*! Production:: SearchSelector : Literal */ +case 104: + /*! Production:: SearchSelector : NUMBER */ + + this.$ = {srchid:"PROP", args: [yyvstack[yysp]]}; + break; + case 91: - this.$ = {srchid:"ORDERBY", args: $$[$0-1]}; -break; + /*! Production:: SearchSelector : ORDER BY LPAR OrderExpressionsList RPAR */ + + this.$ = {srchid:"ORDERBY", args: yyvstack[yysp - 1]}; + break; + case 92: - - var dir = $$[$0-1]; - if(!dir) dir = 'ASC'; - this.$ = {srchid:"ORDERBY", args: [{expression: new yy.Column({columnid:'_'}), direction:dir}]}; - -break; + /*! Production:: SearchSelector : ORDER BY LPAR SearchSelector_option RPAR */ + + var dir = yyvstack[yysp - 1]; + if(!dir) dir = 'ASC'; + this.$ = {srchid:"ORDERBY", args: [{expression: new yy.Column({columnid:'_'}), direction:dir}]}; + break; + case 93: - this.$ = {srchid:"PARENT"}; -break; + /*! Production:: SearchSelector : DOTDOT */ + + this.$ = {srchid:"PARENT"}; + break; + case 94: - this.$ = {srchid:"APROP", args: [$$[$0]]}; -break; + /*! Production:: SearchSelector : ArrowDot Literal */ + + this.$ = {srchid:"APROP", args: [yyvstack[yysp]]}; + break; + case 95: - this.$ = {selid:"ROOT"}; -break; + /*! Production:: SearchSelector : CARET */ + + this.$ = {selid:"ROOT"}; + break; + case 96: - this.$ = {srchid:"EQ", args: [$$[$0]]}; -break; + /*! Production:: SearchSelector : EQ Expression */ + + this.$ = {srchid:"EQ", args: [yyvstack[yysp]]}; + break; + case 97: - this.$ = {srchid:"LIKE", args: [$$[$0]]}; -break; -case 98: case 99: - this.$ = {selid:"WITH", args: $$[$0-1]}; -break; + /*! Production:: SearchSelector : LIKE Expression */ + + this.$ = {srchid:"LIKE", args: [yyvstack[yysp]]}; + break; + +case 98: + /*! Production:: SearchSelector : LPAR SearchSelector_repetition_plus RPAR */ +case 99: + /*! Production:: SearchSelector : WITH LPAR SearchSelector_repetition_plus2 RPAR */ + + this.$ = {selid:"WITH", args: yyvstack[yysp - 1]}; + break; + case 100: - this.$ = {srchid:$$[$0-3].toUpperCase(), args:$$[$0-1]}; -break; + /*! Production:: SearchSelector : Literal LPAR SearchSelector_option2 RPAR */ + + this.$ = {srchid:yyvstack[yysp - 3].toUpperCase(), args:yyvstack[yysp - 1]}; + break; + case 101: - this.$ = {srchid:"WHERE", args:[$$[$0-1]]}; -break; + /*! Production:: SearchSelector : WHERE LPAR Expression RPAR */ + + this.$ = {srchid:"WHERE", args:[yyvstack[yysp - 1]]}; + break; + case 102: - this.$ = {selid:"OF", args:[$$[$0-1]]}; -break; + /*! Production:: SearchSelector : OF LPAR Expression RPAR */ + + this.$ = {selid:"OF", args:[yyvstack[yysp - 1]]}; + break; + case 103: - this.$ = {srchid:"CLASS", args:[$$[$0-1]]}; -break; + /*! Production:: SearchSelector : CLASS LPAR Literal RPAR */ + + this.$ = {srchid:"CLASS", args:[yyvstack[yysp - 1]]}; + break; + case 105: - this.$ = {srchid:"NAME", args: [$$[$0].substr(1,$$[$0].length-2)]}; -break; + /*! Production:: SearchSelector : STRING */ + + this.$ = {srchid:"NAME", args: [yyvstack[yysp].substr(1,yyvstack[yysp].length-2)]}; + break; + case 106: - this.$ = {srchid:"CHILD"}; -break; + /*! Production:: SearchSelector : SLASH */ + + this.$ = {srchid:"CHILD"}; + break; + case 107: - this.$ = {srchid:"VERTEX"}; -break; + /*! Production:: SearchSelector : VERTEX */ + + this.$ = {srchid:"VERTEX"}; + break; + case 108: - this.$ = {srchid:"EDGE"}; -break; + /*! Production:: SearchSelector : EDGE */ + + this.$ = {srchid:"EDGE"}; + break; + case 109: - this.$ = {srchid:"REF"}; -break; + /*! Production:: SearchSelector : EXCLAMATION */ + + this.$ = {srchid:"REF"}; + break; + case 110: - this.$ = {srchid:"SHARP", args:[$$[$0]]}; -break; + /*! Production:: SearchSelector : SHARP Literal */ + + this.$ = {srchid:"SHARP", args:[yyvstack[yysp]]}; + break; + case 111: - this.$ = {srchid:"ATTR", args:((typeof $$[$0] == 'undefined')?undefined:[$$[$0]])}; -break; + /*! Production:: SearchSelector : MODULO Literal */ + + this.$ = {srchid:"ATTR", args:((typeof yyvstack[yysp] == 'undefined')?undefined:[yyvstack[yysp]])}; + break; + case 112: - this.$ = {srchid:"ATTR"}; -break; + /*! Production:: SearchSelector : MODULO SLASH */ + + this.$ = {srchid:"ATTR"}; + break; + case 113: - this.$ = {srchid:"OUT"}; -break; + /*! Production:: SearchSelector : GT */ + + this.$ = {srchid:"OUT"}; + break; + case 114: - this.$ = {srchid:"IN"}; -break; + /*! Production:: SearchSelector : LT */ + + this.$ = {srchid:"IN"}; + break; + case 115: - this.$ = {srchid:"OUTOUT"}; -break; + /*! Production:: SearchSelector : GTGT */ + + this.$ = {srchid:"OUTOUT"}; + break; + case 116: - this.$ = {srchid:"ININ"}; -break; + /*! Production:: SearchSelector : LTLT */ + + this.$ = {srchid:"ININ"}; + break; + case 117: - this.$ = {srchid:"CONTENT"}; -break; + /*! Production:: SearchSelector : DOLLAR */ + + this.$ = {srchid:"CONTENT"}; + break; + case 118: - this.$ = {srchid:"EX",args:[new yy.Json({value:$$[$0]})]}; -break; + /*! Production:: SearchSelector : Json */ + + this.$ = {srchid:"EX",args:[new yy.Json({value:yyvstack[yysp]})]}; + break; + case 119: - this.$ = {srchid:"AT", args:[$$[$0]]}; -break; + /*! Production:: SearchSelector : AT Literal */ + + this.$ = {srchid:"AT", args:[yyvstack[yysp]]}; + break; + case 120: - this.$ = {srchid:"AS", args:[$$[$0]]}; -break; + /*! Production:: SearchSelector : AS AT Literal */ + + this.$ = {srchid:"AS", args:[yyvstack[yysp]]}; + break; + case 121: - this.$ = {srchid:"SET", args:$$[$0-1]}; -break; + /*! Production:: SearchSelector : SET LPAR SetColumnsList RPAR */ + + this.$ = {srchid:"SET", args:yyvstack[yysp - 1]}; + break; + case 122: - this.$ = {selid:"TO", args:[$$[$0]]}; -break; + /*! Production:: SearchSelector : TO AT Literal */ + + this.$ = {selid:"TO", args:[yyvstack[yysp]]}; + break; + case 123: - this.$ = {srchid:"VALUE"}; -break; + /*! Production:: SearchSelector : VALUE */ + + this.$ = {srchid:"VALUE"}; + break; + case 124: - this.$ = {srchid:"ROW", args:$$[$0-1]}; -break; + /*! Production:: SearchSelector : ROW LPAR ExprList RPAR */ + + this.$ = {srchid:"ROW", args:yyvstack[yysp - 1]}; + break; + case 125: - this.$ = {srchid:"CLASS", args:[$$[$0]]}; -break; + /*! Production:: SearchSelector : COLON Literal */ + + this.$ = {srchid:"CLASS", args:[yyvstack[yysp]]}; + break; + case 126: - this.$ = {selid:$$[$0],args:[$$[$0-1]] }; -break; + /*! Production:: SearchSelector : SearchSelector PlusStar */ + + this.$ = {selid:yyvstack[yysp],args:[yyvstack[yysp - 1]] }; + break; + case 127: - this.$ = {selid:"NOT",args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : NOT LPAR SearchSelector_repetition RPAR */ + + this.$ = {selid:"NOT",args:yyvstack[yysp - 1] }; + break; + case 128: - this.$ = {selid:"IF",args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : IF LPAR SearchSelector_repetition2 RPAR */ + + this.$ = {selid:"IF",args:yyvstack[yysp - 1] }; + break; + case 129: - this.$ = {selid:$$[$0-3],args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : Aggregator LPAR SearchSelector_repetition3 RPAR */ + + this.$ = {selid:yyvstack[yysp - 3],args:yyvstack[yysp - 1] }; + break; + case 130: - this.$ = {selid:'DISTINCT',args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : SearchSelector_group LPAR SearchSelector_repetition4 RPAR */ + + this.$ = {selid:'DISTINCT',args:yyvstack[yysp - 1] }; + break; + case 131: - this.$ = {selid:'UNION',args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : UNION LPAR SearchSelectorList RPAR */ + + this.$ = {selid:'UNION',args:yyvstack[yysp - 1] }; + break; + case 132: - this.$ = {selid:'UNIONALL',args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : UNION ALL LPAR SearchSelectorList RPAR */ + + this.$ = {selid:'UNIONALL',args:yyvstack[yysp - 1] }; + break; + case 133: - this.$ = {selid:'ALL',args:[$$[$0-1]] }; -break; + /*! Production:: SearchSelector : ALL LPAR SearchSelector_repetition5 RPAR */ + + this.$ = {selid:'ALL',args:[yyvstack[yysp - 1]] }; + break; + case 134: - this.$ = {selid:'ANY',args:[$$[$0-1]] }; -break; + /*! Production:: SearchSelector : ANY LPAR SearchSelector_repetition6 RPAR */ + + this.$ = {selid:'ANY',args:[yyvstack[yysp - 1]] }; + break; + case 135: - this.$ = {selid:'INTERSECT',args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : INTERSECT LPAR SearchSelectorList RPAR */ + + this.$ = {selid:'INTERSECT',args:yyvstack[yysp - 1] }; + break; + case 136: - this.$ = {selid:'EXCEPT',args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : EXCEPT LPAR SearchSelectorList RPAR */ + + this.$ = {selid:'EXCEPT',args:yyvstack[yysp - 1] }; + break; + case 137: - this.$ = {selid:'AND',args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : AND LPAR SearchSelectorList RPAR */ + + this.$ = {selid:'AND',args:yyvstack[yysp - 1] }; + break; + case 138: - this.$ = {selid:'OR',args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : OR LPAR SearchSelectorList RPAR */ + + this.$ = {selid:'OR',args:yyvstack[yysp - 1] }; + break; + case 139: - this.$ = {selid:'PATH',args:[$$[$0-1]] }; -break; + /*! Production:: SearchSelector : PATH LPAR SearchSelector RPAR */ + + this.$ = {selid:'PATH',args:[yyvstack[yysp - 1]] }; + break; + case 140: - this.$ = {srchid:'RETURN',args:$$[$0-1] }; -break; + /*! Production:: SearchSelector : RETURN LPAR ResultColumns RPAR */ + + this.$ = {srchid:'RETURN',args:yyvstack[yysp - 1] }; + break; + case 141: - this.$ = {selid:'REPEAT',sels:$$[$0-3], args:$$[$0-1] }; -break; -case 142: - this.$ = $$[$0-2]; this.$.push($$[$0]); -break; + /*! Production:: SearchSelector : REPEAT LPAR SearchSelector_repetition7 COMMA ExprList RPAR */ + + this.$ = {selid:'REPEAT',sels:yyvstack[yysp - 3], args:yyvstack[yysp - 1] }; + break; + case 144: - this.$ = "PLUS"; -break; + /*! Production:: PlusStar : PLUS */ + + this.$ = "PLUS"; + break; + case 145: - this.$ = "STAR"; -break; + /*! Production:: PlusStar : STAR */ + + this.$ = "STAR"; + break; + case 146: - this.$ = "QUESTION"; -break; + /*! Production:: PlusStar : QUESTION */ + + this.$ = "QUESTION"; + break; + case 148: - this.$ = new yy.Select({ columns:$$[$0], distinct: true }); yy.extend(this.$, $$[$0-3]); yy.extend(this.$, $$[$0-1]); -break; + /*! Production:: SelectClause : SelectModifier DISTINCT TopClause ResultColumns */ + + this.$ = new yy.Select({ columns:yyvstack[yysp], distinct: true }); yy.extend(this.$, yyvstack[yysp - 3]); yy.extend(this.$, yyvstack[yysp - 1]); + break; + case 149: - this.$ = new yy.Select({ columns:$$[$0], distinct: true }); yy.extend(this.$, $$[$0-3]);yy.extend(this.$, $$[$0-1]); -break; + /*! Production:: SelectClause : SelectModifier UNIQUE TopClause ResultColumns */ + + this.$ = new yy.Select({ columns:yyvstack[yysp], distinct: true }); yy.extend(this.$, yyvstack[yysp - 3]);yy.extend(this.$, yyvstack[yysp - 1]); + break; + case 150: - this.$ = new yy.Select({ columns:$$[$0], all:true }); yy.extend(this.$, $$[$0-3]);yy.extend(this.$, $$[$0-1]); -break; + /*! Production:: SelectClause : SelectModifier ALL TopClause ResultColumns */ + + this.$ = new yy.Select({ columns:yyvstack[yysp], all:true }); yy.extend(this.$, yyvstack[yysp - 3]);yy.extend(this.$, yyvstack[yysp - 1]); + break; + case 151: - - if(!$$[$0]) { - this.$ = new yy.Select({columns:[new yy.Column({columnid:'_',})], modifier:'COLUMN'}); - } else { - this.$ = new yy.Select({ columns:$$[$0] }); yy.extend(this.$, $$[$0-2]);yy.extend(this.$, $$[$0-1]); - } - -break; + /*! Production:: SelectClause : SelectModifier TopClause SelectClause_option */ + + if(!yyvstack[yysp]) { + this.$ = new yy.Select({columns:[new yy.Column({columnid:'_',})], modifier:'COLUMN'}); + } else { + this.$ = new yy.Select({ columns:yyvstack[yysp] }); yy.extend(this.$, yyvstack[yysp - 2]);yy.extend(this.$, yyvstack[yysp - 1]); + } + break; + case 152: - if($$[$0]=='SELECT') this.$ = undefined; else this.$ = {modifier: $$[$0]}; -break; -case 153: - this.$ = {modifier:'VALUE'} -break; + /*! Production:: SelectModifier : SELECT */ + + if(yyvstack[yysp]=='SELECT') this.$ = undefined; else this.$ = {modifier: yyvstack[yysp]}; + break; + +case 153: + /*! Production:: SelectModifier : SELECT VALUE */ + + this.$ = {modifier:'VALUE'} + break; + case 154: - this.$ = {modifier:'ROW'} -break; + /*! Production:: SelectModifier : SELECT ROW */ + + this.$ = {modifier:'ROW'} + break; + case 155: - this.$ = {modifier:'COLUMN'} -break; + /*! Production:: SelectModifier : SELECT COLUMN */ + + this.$ = {modifier:'COLUMN'} + break; + case 156: - this.$ = {modifier:'MATRIX'} -break; + /*! Production:: SelectModifier : SELECT MATRIX */ + + this.$ = {modifier:'MATRIX'} + break; + case 157: - this.$ = {modifier:'TEXTSTRING'} -break; + /*! Production:: SelectModifier : SELECT TEXTSTRING */ + + this.$ = {modifier:'TEXTSTRING'} + break; + case 158: - this.$ = {modifier:'INDEX'} -break; + /*! Production:: SelectModifier : SELECT INDEX */ + + this.$ = {modifier:'INDEX'} + break; + case 159: - this.$ = {modifier:'RECORDSET'} -break; + /*! Production:: SelectModifier : SELECT RECORDSET */ + + this.$ = {modifier:'RECORDSET'} + break; + case 160: - this.$ = {top: $$[$0-1], percent:(typeof $$[$0] != 'undefined'?true:undefined)}; -break; + /*! Production:: TopClause : TOP NumValue TopClause_option */ + + this.$ = {top: yyvstack[yysp - 1], percent:(typeof yyvstack[yysp] != 'undefined'?true:undefined)}; + break; + case 161: - this.$ = {top: $$[$0-1]}; -break; -case 163: case 333: case 528: case 529: case 729: -this.$ = undefined; -break; -case 164: case 165: case 166: case 167: -this.$ = {into: $$[$0]} -break; + /*! Production:: TopClause : TOP LPAR NumValue RPAR */ + + this.$ = {top: yyvstack[yysp - 1]}; + break; + +case 164: + /*! Production:: IntoClause : INTO Table */ +case 165: + /*! Production:: IntoClause : INTO FuncValue */ +case 166: + /*! Production:: IntoClause : INTO ParamValue */ +case 167: + /*! Production:: IntoClause : INTO VarValue */ + + this.$ = {into: yyvstack[yysp]} + break; + case 168: - - var s = $$[$0]; - s = s.substr(1,s.length-2); - var x3 = s.substr(-3).toUpperCase(); - var x4 = s.substr(-4).toUpperCase(); - if(s[0] == '#') { - this.$ = {into: new yy.FuncValue({funcid: 'HTML', args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]})}; - } else if(x3=='XLS' || x3 == 'CSV' || x3=='TAB') { - this.$ = {into: new yy.FuncValue({funcid: x3, args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]})}; - } else if(x4=='XLSX' || x4 == 'JSON') { - this.$ = {into: new yy.FuncValue({funcid: x4, args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]})}; - } - -break; + /*! Production:: IntoClause : INTO STRING */ + + var s = yyvstack[yysp]; + s = s.substr(1,s.length-2); + var x3 = s.substr(-3).toUpperCase(); + var x4 = s.substr(-4).toUpperCase(); + if(s[0] == '#') { + this.$ = {into: new yy.FuncValue({funcid: 'HTML', args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]})}; + } else if(x3=='XLS' || x3 == 'CSV' || x3=='TAB') { + this.$ = {into: new yy.FuncValue({funcid: x3, args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]})}; + } else if(x4=='XLSX' || x4 == 'JSON') { + this.$ = {into: new yy.FuncValue({funcid: x4, args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]})}; + } + break; + case 169: - this.$ = { from: $$[$0] }; -break; + /*! Production:: FromClause : FROM FromTablesList */ + + this.$ = { from: yyvstack[yysp] }; + break; + case 170: - this.$ = { from: $$[$0-1], joins: $$[$0] }; -break; + /*! Production:: FromClause : FROM FromTablesList JoinTablesList */ + + this.$ = { from: yyvstack[yysp - 1], joins: yyvstack[yysp] }; + break; + case 171: - this.$ = { from: $$[$0-2], joins: $$[$0-1] }; -break; + /*! Production:: FromClause : FROM LPAR FromTablesList JoinTablesList RPAR */ + + this.$ = { from: yyvstack[yysp - 2], joins: yyvstack[yysp - 1] }; + break; + case 173: - this.$ = new yy.Apply({select: $$[$0-2], applymode:'CROSS', as:$$[$0]}); -break; + /*! Production:: ApplyClause : CROSS APPLY LPAR Select RPAR Literal */ + + this.$ = new yy.Apply({select: yyvstack[yysp - 2], applymode:'CROSS', as:yyvstack[yysp]}); + break; + case 174: - this.$ = new yy.Apply({select: $$[$0-3], applymode:'CROSS', as:$$[$0]}); -break; + /*! Production:: ApplyClause : CROSS APPLY LPAR Select RPAR AS Literal */ + + this.$ = new yy.Apply({select: yyvstack[yysp - 3], applymode:'CROSS', as:yyvstack[yysp]}); + break; + case 175: - this.$ = new yy.Apply({select: $$[$0-2], applymode:'OUTER', as:$$[$0]}); -break; + /*! Production:: ApplyClause : OUTER APPLY LPAR Select RPAR Literal */ + + this.$ = new yy.Apply({select: yyvstack[yysp - 2], applymode:'OUTER', as:yyvstack[yysp]}); + break; + case 176: - this.$ = new yy.Apply({select: $$[$0-3], applymode:'OUTER', as:$$[$0]}); -break; -case 178: case 243: case 457: case 535: case 536: - this.$ = $$[$0-2]; $$[$0-2].push($$[$0]); -break; + /*! Production:: ApplyClause : OUTER APPLY LPAR Select RPAR AS Literal */ + + this.$ = new yy.Apply({select: yyvstack[yysp - 3], applymode:'OUTER', as:yyvstack[yysp]}); + break; + +case 178: + /*! Production:: FromTablesList : FromTablesList COMMA FromTable */ +case 243: + /*! Production:: GroupExpressionsList : GroupExpressionsList COMMA GroupExpression */ +case 457: + /*! Production:: SetColumnsList : SetColumnsList COMMA SetColumn */ +case 535: + /*! Production:: ColsList : ColsList COMMA Literal */ +case 536: + /*! Production:: ColsList : ColsList COMMA STRING */ + + this.$ = yyvstack[yysp - 2]; yyvstack[yysp - 2].push(yyvstack[yysp]); + break; + case 179: - this.$ = $$[$0-2]; this.$.as = $$[$0] -break; + /*! Production:: FromTable : LPAR Select RPAR Literal */ + + this.$ = yyvstack[yysp - 2]; this.$.as = yyvstack[yysp] + break; + case 180: - this.$ = $$[$0-3]; this.$.as = $$[$0] -break; + /*! Production:: FromTable : LPAR Select RPAR AS Literal */ + + this.$ = yyvstack[yysp - 3]; this.$.as = yyvstack[yysp] + break; + case 181: - this.$ = $$[$0-1]; this.$.as = 'default' -break; + /*! Production:: FromTable : LPAR Select RPAR */ + + this.$ = yyvstack[yysp - 1]; this.$.as = 'default' + break; + case 182: - this.$ = new yy.Json({value:$$[$0-2]}); $$[$0-2].as = $$[$0] -break; + /*! Production:: FromTable : Json FromTable_option FromTable_option2 */ + + this.$ = new yy.Json({value:yyvstack[yysp - 2]}); yyvstack[yysp - 2].as = yyvstack[yysp] + break; + case 183: - this.$ = $$[$0-1]; $$[$0-1].as = $$[$0] -break; + /*! Production:: FromTable : Table Literal */ + + this.$ = yyvstack[yysp - 1]; yyvstack[yysp - 1].as = yyvstack[yysp] + break; + case 184: - this.$ = $$[$0-2]; $$[$0-2].as = $$[$0] -break; -case 186: case 643: case 646: - this.$ = $$[$0-2]; -break; -case 187: case 191: case 195: case 198: - this.$ = $$[$0-1]; $$[$0-1].as = $$[$0]; -break; -case 188: case 192: case 196: case 199: - this.$ = $$[$0-2]; $$[$0-2].as = $$[$0]; -break; -case 189: case 190: case 194: case 197: - this.$ = $$[$0]; $$[$0].as = 'default'; -break; + /*! Production:: FromTable : Table AS Literal */ + + this.$ = yyvstack[yysp - 2]; yyvstack[yysp - 2].as = yyvstack[yysp] + break; + +case 186: + /*! Production:: FromTable : Table NOT INDEXED */ +case 643: + /*! Production:: JsonObject : LCUR JsonPropertiesList COMMA RCUR */ +case 646: + /*! Production:: JsonArray : JsonElementsList COMMA RBRA */ + + this.$ = yyvstack[yysp - 2]; + break; + +case 187: + /*! Production:: FromTable : ParamValue Literal */ +case 191: + /*! Production:: FromTable : FuncValue Literal */ +case 195: + /*! Production:: FromTable : VarValue Literal */ +case 198: + /*! Production:: FromTable : FromString Literal */ + + this.$ = yyvstack[yysp - 1]; yyvstack[yysp - 1].as = yyvstack[yysp]; + break; + +case 188: + /*! Production:: FromTable : ParamValue AS Literal */ +case 192: + /*! Production:: FromTable : FuncValue AS Literal */ +case 196: + /*! Production:: FromTable : VarValue AS Literal */ +case 199: + /*! Production:: FromTable : FromString AS Literal */ + + this.$ = yyvstack[yysp - 2]; yyvstack[yysp - 2].as = yyvstack[yysp]; + break; + +case 189: + /*! Production:: FromTable : ParamValue */ +case 190: + /*! Production:: FromTable : FuncValue */ +case 194: + /*! Production:: FromTable : VarValue */ +case 197: + /*! Production:: FromTable : FromString */ + + this.$ = yyvstack[yysp]; yyvstack[yysp].as = 'default'; + break; + case 193: - this.$ = {inserted:true}; -break; + /*! Production:: FromTable : INSERTED */ + + this.$ = {inserted:true}; + break; + case 200: - - var s = $$[$0]; - s = s.substr(1,s.length-2); - var x3 = s.substr(-3).toUpperCase(); - var x4 = s.substr(-4).toUpperCase(); - var r; - if(s[0] == '#') { - r = new yy.FuncValue({funcid: 'HTML', args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]}); - } else if(x3=='XLS' || x3 == 'CSV' || x3=='TAB') { - r = new yy.FuncValue({funcid: x3, args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]}); - } else if(x4=='XLSX' || x4 == 'JSON') { - r = new yy.FuncValue({funcid: x4, args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]}); - } else { - throw new Error('Unknown string in FROM clause'); - }; - this.$ = r; - -break; + /*! Production:: FromString : STRING */ + + var s = yyvstack[yysp]; + s = s.substr(1,s.length-2); + var x3 = s.substr(-3).toUpperCase(); + var x4 = s.substr(-4).toUpperCase(); + var r; + if(s[0] == '#') { + r = new yy.FuncValue({funcid: 'HTML', args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]}); + } else if(x3=='XLS' || x3 == 'CSV' || x3=='TAB') { + r = new yy.FuncValue({funcid: x3, args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]}); + } else if(x4=='XLSX' || x4 == 'JSON') { + r = new yy.FuncValue({funcid: x4, args:[new yy.StringValue({value: s}), new yy.Json({value:{headers:true}})]}); + } else { + throw new Error('Unknown string in FROM clause'); + }; + this.$ = r; + break; + case 201: - - if($$[$0-2] == 'INFORMATION_SCHEMA') { - this.$ = new yy.FuncValue({funcid: $$[$0-2], args:[new yy.StringValue({value:$$[$0]})]}); - } else { - this.$ = new yy.Table({databaseid: $$[$0-2], tableid:$$[$0]}); - } - -break; + /*! Production:: Table : Literal DOT Literal */ + + if(yyvstack[yysp - 2] == 'INFORMATION_SCHEMA') { + this.$ = new yy.FuncValue({funcid: yyvstack[yysp - 2], args:[new yy.StringValue({value:yyvstack[yysp]})]}); + } else { + this.$ = new yy.Table({databaseid: yyvstack[yysp - 2], tableid:yyvstack[yysp]}); + } + break; + case 202: - this.$ = new yy.Table({tableid: $$[$0]}); -break; -case 203: case 204: - this.$ = $$[$0-1]; $$[$0-1].push($$[$0]); -break; + /*! Production:: Table : Literal */ + + this.$ = new yy.Table({tableid: yyvstack[yysp]}); + break; + +case 203: + /*! Production:: JoinTablesList : JoinTablesList JoinTable */ +case 204: + /*! Production:: JoinTablesList : JoinTablesList ApplyClause */ + + this.$ = yyvstack[yysp - 1]; yyvstack[yysp - 1].push(yyvstack[yysp]); + break; + case 207: - this.$ = new yy.Join($$[$0-2]); yy.extend(this.$, $$[$0-1]); yy.extend(this.$, $$[$0]); -break; + /*! Production:: JoinTable : JoinMode JoinTableAs OnClause */ + + this.$ = new yy.Join(yyvstack[yysp - 2]); yy.extend(this.$, yyvstack[yysp - 1]); yy.extend(this.$, yyvstack[yysp]); + break; + case 208: - this.$ = {table: $$[$0]}; -break; + /*! Production:: JoinTableAs : Table */ + + this.$ = {table: yyvstack[yysp]}; + break; + case 209: - this.$ = {table: $$[$0-1], as: $$[$0] } ; -break; + /*! Production:: JoinTableAs : Table Literal */ + + this.$ = {table: yyvstack[yysp - 1], as: yyvstack[yysp] } ; + break; + case 210: - this.$ = {table: $$[$0-2], as: $$[$0] } ; -break; + /*! Production:: JoinTableAs : Table AS Literal */ + + this.$ = {table: yyvstack[yysp - 2], as: yyvstack[yysp] } ; + break; + case 211: - this.$ = {json:new yy.Json({value:$$[$0-2],as:$$[$0]})}; -break; + /*! Production:: JoinTableAs : Json JoinTableAs_option JoinTableAs_option2 */ + + this.$ = {json:new yy.Json({value:yyvstack[yysp - 2],as:yyvstack[yysp]})}; + break; + case 212: - this.$ = {param: $$[$0-1], as: $$[$0] } ; -break; + /*! Production:: JoinTableAs : ParamValue Literal */ + + this.$ = {param: yyvstack[yysp - 1], as: yyvstack[yysp] } ; + break; + case 213: - this.$ = {param: $$[$0-2], as: $$[$0] } ; -break; + /*! Production:: JoinTableAs : ParamValue AS Literal */ + + this.$ = {param: yyvstack[yysp - 2], as: yyvstack[yysp] } ; + break; + case 214: - this.$ = {select: $$[$0-2], as: $$[$0]} ; -break; + /*! Production:: JoinTableAs : LPAR Select RPAR Literal */ + + this.$ = {select: yyvstack[yysp - 2], as: yyvstack[yysp]} ; + break; + case 215: - this.$ = {select: $$[$0-3], as: $$[$0] } ; -break; + /*! Production:: JoinTableAs : LPAR Select RPAR AS Literal */ + + this.$ = {select: yyvstack[yysp - 3], as: yyvstack[yysp] } ; + break; + case 216: - this.$ = {func:$$[$0], as:'default'}; -break; + /*! Production:: JoinTableAs : FuncValue */ + + this.$ = {func:yyvstack[yysp], as:'default'}; + break; + case 217: - this.$ = {func:$$[$0-1], as: $$[$0]}; -break; + /*! Production:: JoinTableAs : FuncValue Literal */ + + this.$ = {func:yyvstack[yysp - 1], as: yyvstack[yysp]}; + break; + case 218: - this.$ = {func:$$[$0-2], as: $$[$0]}; -break; + /*! Production:: JoinTableAs : FuncValue AS Literal */ + + this.$ = {func:yyvstack[yysp - 2], as: yyvstack[yysp]}; + break; + case 219: - this.$ = {variable:$$[$0],as:'default'}; -break; + /*! Production:: JoinTableAs : VarValue */ + + this.$ = {variable:yyvstack[yysp],as:'default'}; + break; + case 220: - this.$ = {variable:$$[$0-1],as:$$[$0]}; -break; + /*! Production:: JoinTableAs : VarValue Literal */ + + this.$ = {variable:yyvstack[yysp - 1],as:yyvstack[yysp]}; + break; + case 221: - this.$ = {variable:$$[$0-2],as:$$[$0]} -break; + /*! Production:: JoinTableAs : VarValue AS Literal */ + + this.$ = {variable:yyvstack[yysp - 2],as:yyvstack[yysp]} + break; + case 222: - this.$ = { joinmode: $$[$0] } ; -break; + /*! Production:: JoinMode : JoinModeMode */ + + this.$ = { joinmode: yyvstack[yysp] } ; + break; + case 223: - this.$ = {joinmode: $$[$0-1], natural:true} ; -break; -case 224: case 225: - this.$ = "INNER"; -break; -case 226: case 227: - this.$ = "LEFT"; -break; -case 228: case 229: - this.$ = "RIGHT"; -break; -case 230: case 231: - this.$ = "OUTER"; -break; + /*! Production:: JoinMode : NATURAL JoinModeMode */ + + this.$ = {joinmode: yyvstack[yysp - 1], natural:true} ; + break; + +case 224: + /*! Production:: JoinModeMode : JOIN */ +case 225: + /*! Production:: JoinModeMode : INNER JOIN */ + + this.$ = "INNER"; + break; + +case 226: + /*! Production:: JoinModeMode : LEFT JOIN */ +case 227: + /*! Production:: JoinModeMode : LEFT OUTER JOIN */ + + this.$ = "LEFT"; + break; + +case 228: + /*! Production:: JoinModeMode : RIGHT JOIN */ +case 229: + /*! Production:: JoinModeMode : RIGHT OUTER JOIN */ + + this.$ = "RIGHT"; + break; + +case 230: + /*! Production:: JoinModeMode : OUTER JOIN */ +case 231: + /*! Production:: JoinModeMode : FULL OUTER JOIN */ + + this.$ = "OUTER"; + break; + case 232: - this.$ = "SEMI"; -break; + /*! Production:: JoinModeMode : SEMI JOIN */ + + this.$ = "SEMI"; + break; + case 233: - this.$ = "ANTI"; -break; + /*! Production:: JoinModeMode : ANTI JOIN */ + + this.$ = "ANTI"; + break; + case 234: - this.$ = "CROSS"; -break; + /*! Production:: JoinModeMode : CROSS JOIN */ + + this.$ = "CROSS"; + break; + case 235: - this.$ = {on: $$[$0]}; -break; -case 236: case 702: - this.$ = {using: $$[$0]}; -break; + /*! Production:: OnClause : ON Expression */ + + this.$ = {on: yyvstack[yysp]}; + break; + +case 236: + /*! Production:: OnClause : USING ColumnsList */ +case 702: + /*! Production:: MergeUsing : USING FromTable */ + + this.$ = {using: yyvstack[yysp]}; + break; + case 239: - this.$ = {where: new yy.Expression({expression:$$[$0]})}; -break; + /*! Production:: WhereClause : WHERE Expression */ + + this.$ = {where: new yy.Expression({expression:yyvstack[yysp]})}; + break; + case 241: - this.$ = {group:$$[$0-1]}; yy.extend(this.$,$$[$0]); -break; + /*! Production:: GroupClause : GROUP BY GroupExpressionsList HavingClause */ + + this.$ = {group:yyvstack[yysp - 1]}; yy.extend(this.$,yyvstack[yysp]); + break; + case 244: - this.$ = new yy.GroupExpression({type:'GROUPING SETS', group: $$[$0-1]}); -break; + /*! Production:: GroupExpression : GROUPING SET LPAR GroupExpressionsList RPAR */ + + this.$ = new yy.GroupExpression({type:'GROUPING SETS', group: yyvstack[yysp - 1]}); + break; + case 245: - this.$ = new yy.GroupExpression({type:'ROLLUP', group: $$[$0-1]}); -break; + /*! Production:: GroupExpression : ROLLUP LPAR GroupExpressionsList RPAR */ + + this.$ = new yy.GroupExpression({type:'ROLLUP', group: yyvstack[yysp - 1]}); + break; + case 246: - this.$ = new yy.GroupExpression({type:'CUBE', group: $$[$0-1]}); -break; + /*! Production:: GroupExpression : CUBE LPAR GroupExpressionsList RPAR */ + + this.$ = new yy.GroupExpression({type:'CUBE', group: yyvstack[yysp - 1]}); + break; + case 249: - this.$ = {having:$$[$0]} -break; + /*! Production:: HavingClause : HAVING Expression */ + + this.$ = {having:yyvstack[yysp]} + break; + case 251: - this.$ = {union: $$[$0]} ; -break; + /*! Production:: UnionClause : UNION Select */ + + this.$ = {union: yyvstack[yysp]} ; + break; + case 252: - this.$ = {unionall: $$[$0]} ; -break; + /*! Production:: UnionClause : UNION ALL Select */ + + this.$ = {unionall: yyvstack[yysp]} ; + break; + case 253: - this.$ = {except: $$[$0]} ; -break; + /*! Production:: UnionClause : EXCEPT Select */ + + this.$ = {except: yyvstack[yysp]} ; + break; + case 254: - this.$ = {intersect: $$[$0]} ; -break; + /*! Production:: UnionClause : INTERSECT Select */ + + this.$ = {intersect: yyvstack[yysp]} ; + break; + case 255: - this.$ = {union: $$[$0], corresponding:true} ; -break; + /*! Production:: UnionClause : UNION CORRESPONDING Select */ + + this.$ = {union: yyvstack[yysp], corresponding:true} ; + break; + case 256: - this.$ = {unionall: $$[$0], corresponding:true} ; -break; + /*! Production:: UnionClause : UNION ALL CORRESPONDING Select */ + + this.$ = {unionall: yyvstack[yysp], corresponding:true} ; + break; + case 257: - this.$ = {except: $$[$0], corresponding:true} ; -break; + /*! Production:: UnionClause : EXCEPT CORRESPONDING Select */ + + this.$ = {except: yyvstack[yysp], corresponding:true} ; + break; + case 258: - this.$ = {intersect: $$[$0], corresponding:true} ; -break; + /*! Production:: UnionClause : INTERSECT CORRESPONDING Select */ + + this.$ = {intersect: yyvstack[yysp], corresponding:true} ; + break; + case 260: - this.$ = {order:$$[$0]} -break; + /*! Production:: OrderClause : ORDER BY OrderExpressionsList */ + + this.$ = {order:yyvstack[yysp]} + break; + case 262: - this.$ = $$[$0-2]; $$[$0-2].push($$[$0]) -break; + /*! Production:: OrderExpressionsList : OrderExpressionsList COMMA OrderExpression */ +case 482: + /*! Production:: ValuesListsList : ValuesListsList COMMA Json */ +case 483: + /*! Production:: ValuesListsList : ValuesListsList COMMA ParamValue */ +case 485: + /*! Production:: ValuesList : ValuesList COMMA Expression */ +case 493: + /*! Production:: ColumnsList : ColumnsList COMMA Column */ + + this.$ = yyvstack[yysp - 2]; yyvstack[yysp - 2].push(yyvstack[yysp]) + break; + case 263: - this.$ = {nullsOrder: 'FIRST'}; -break; + /*! Production:: NullsOrder : NULLS FIRST */ + + this.$ = {nullsOrder: 'FIRST'}; + break; + case 264: - this.$ = {nullsOrder: 'LAST'}; -break; + /*! Production:: NullsOrder : NULLS LAST */ + + this.$ = {nullsOrder: 'LAST'}; + break; + case 265: - this.$ = new yy.Expression({expression: $$[$0], direction:'ASC'}) -break; + /*! Production:: OrderExpression : Expression */ + + this.$ = new yy.Expression({expression: yyvstack[yysp], direction:'ASC'}) + break; + case 266: - this.$ = new yy.Expression({expression: $$[$0-1], direction:$$[$0].toUpperCase()}) -break; + /*! Production:: OrderExpression : Expression DIRECTION */ + + this.$ = new yy.Expression({expression: yyvstack[yysp - 1], direction:yyvstack[yysp].toUpperCase()}) + break; + case 267: - this.$ = new yy.Expression({expression: $$[$0-2], direction:$$[$0-1].toUpperCase()}); yy.extend(this.$, $$[$0]) -break; + /*! Production:: OrderExpression : Expression DIRECTION NullsOrder */ + + this.$ = new yy.Expression({expression: yyvstack[yysp - 2], direction:yyvstack[yysp - 1].toUpperCase()}); yy.extend(this.$, yyvstack[yysp]) + break; + case 268: - this.$ = new yy.Expression({expression: $$[$0-2], direction:'ASC', nocase:true}) -break; + /*! Production:: OrderExpression : Expression COLLATE NOCASE */ + + this.$ = new yy.Expression({expression: yyvstack[yysp - 2], direction:'ASC', nocase:true}) + break; + case 269: - this.$ = new yy.Expression({expression: $$[$0-3], direction:$$[$0].toUpperCase(), nocase:true}) -break; + /*! Production:: OrderExpression : Expression COLLATE NOCASE DIRECTION */ + + this.$ = new yy.Expression({expression: yyvstack[yysp - 3], direction:yyvstack[yysp].toUpperCase(), nocase:true}) + break; + case 271: - this.$ = {limit:$$[$0-1]}; yy.extend(this.$, $$[$0]); -break; + /*! Production:: LimitClause : LIMIT NumValue OffsetClause */ + + this.$ = {limit:yyvstack[yysp - 1]}; yy.extend(this.$, yyvstack[yysp]); + break; + case 272: - this.$ = {limit:$$[$0-2],offset:$$[$0-6]}; -break; + /*! Production:: LimitClause : OFFSET NumValue LimitClause_option FETCH LimitClause_option2 NumValue LimitClause_option3 LimitClause_option4 */ + + this.$ = {limit:yyvstack[yysp - 2],offset:yyvstack[yysp - 6]}; + break; + case 274: - this.$ = {offset:$$[$0]}; -break; -case 275: case 514: case 538: case 653: case 663: case 687: case 689: case 693: - $$[$0-2].push($$[$0]); this.$ = $$[$0-2]; -break; -case 277: case 279: case 281: - $$[$0-2].as = $$[$0]; this.$ = $$[$0-2]; -break; -case 278: case 280: case 282: - $$[$0-1].as = $$[$0]; this.$ = $$[$0-1]; -break; + /*! Production:: OffsetClause : OFFSET NumValue */ + + this.$ = {offset:yyvstack[yysp]}; + break; + +case 275: + /*! Production:: ResultColumns : ResultColumns COMMA ResultColumn */ +case 514: + /*! Production:: ConstraintsList : ConstraintsList COMMA Constraint */ +case 538: + /*! Production:: ColumnDefsList : ColumnDefsList COMMA ColumnDef */ +case 653: + /*! Production:: JsonElementsList : JsonElementsList COMMA JsonValue */ +case 663: + /*! Production:: SetPropsList : SetPropsList ArrowDot SetProp */ +case 687: + /*! Production:: StringValuesList : StringValuesList COMMA StringValue */ +case 689: + /*! Production:: PluginsList : PluginsList COMMA Plugin */ +case 693: + /*! Production:: DeclaresList : DeclaresList COMMA DeclareItem */ + + yyvstack[yysp - 2].push(yyvstack[yysp]); this.$ = yyvstack[yysp - 2]; + break; + +case 277: + /*! Production:: ResultColumn : Expression AS Literal */ +case 279: + /*! Production:: ResultColumn : Expression AS NUMBER */ +case 281: + /*! Production:: ResultColumn : Expression AS StringValue */ + + yyvstack[yysp - 2].as = yyvstack[yysp]; this.$ = yyvstack[yysp - 2]; + break; + +case 278: + /*! Production:: ResultColumn : Expression Literal */ +case 280: + /*! Production:: ResultColumn : Expression NUMBER */ +case 282: + /*! Production:: ResultColumn : Expression StringValue */ + + yyvstack[yysp - 1].as = yyvstack[yysp]; this.$ = yyvstack[yysp - 1]; + break; + case 284: - this.$ = new yy.Column({columid: $$[$0], tableid: $$[$0-2], databaseid:$$[$0-4]}); -break; + /*! Production:: Star : Literal DOT Literal DOT STAR */ + + this.$ = new yy.Column({columid: yyvstack[yysp], tableid: yyvstack[yysp - 2], databaseid:yyvstack[yysp - 4]}); + break; + case 285: - this.$ = new yy.Column({columnid: $$[$0], tableid: $$[$0-2]}); -break; + /*! Production:: Star : Literal DOT STAR */ +case 288: + /*! Production:: Column : Literal DOT Literal */ +case 289: + /*! Production:: Column : Literal DOT VALUE */ + + this.$ = new yy.Column({columnid: yyvstack[yysp], tableid: yyvstack[yysp - 2]}); + break; + case 286: - this.$ = new yy.Column({columnid:$$[$0]}); -break; + /*! Production:: Star : STAR */ + + this.$ = new yy.Column({columnid:yyvstack[yysp]}); + break; + case 287: - this.$ = new yy.Column({columnid: $$[$0], tableid: $$[$0-2], databaseid:$$[$0-4]}); -break; -case 288: case 289: - this.$ = new yy.Column({columnid: $$[$0], tableid: $$[$0-2]}); -break; + /*! Production:: Column : Literal DOT Literal DOT Literal */ + + this.$ = new yy.Column({columnid: yyvstack[yysp], tableid: yyvstack[yysp - 2], databaseid:yyvstack[yysp - 4]}); + break; + case 290: - this.$ = new yy.Column({columnid: $$[$0]}); -break; + /*! Production:: Column : Literal */ + + this.$ = new yy.Column({columnid: yyvstack[yysp]}); + break; + case 305: - this.$ = new yy.DomainValueValue(); -break; + /*! Production:: Expression : VALUE */ + + this.$ = new yy.DomainValueValue(); + break; + case 306: - this.$ = new yy.Json({value:$$[$0]}); -break; -case 309: case 310: case 311: - - if(!yy.queries) yy.queries = []; - yy.queries.push($$[$0-1]); - $$[$0-1].queriesidx = yy.queries.length; - this.$ = $$[$0-1]; - -break; -case 312: -this.$ = $$[$0] -break; + /*! Production:: Expression : Json */ + + this.$ = new yy.Json({value:yyvstack[yysp]}); + break; + +case 309: + /*! Production:: Expression : LPAR Select RPAR */ +case 310: + /*! Production:: Expression : LPAR Insert RPAR */ +case 311: + /*! Production:: Expression : LPAR Expression_group RPAR */ + + if(!yy.queries) yy.queries = []; + yy.queries.push(yyvstack[yysp - 1]); + yyvstack[yysp - 1].queriesidx = yy.queries.length; + this.$ = yyvstack[yysp - 1]; + break; + case 313: - this.$ = new yy.FuncValue({funcid:'CURRENT_TIMESTAMP'}); -break; + /*! Production:: Expression : CURRENT_TIMESTAMP */ +case 329: + /*! Production:: PrimitiveValue : CURRENT_TIMESTAMP */ + + this.$ = new yy.FuncValue({funcid:'CURRENT_TIMESTAMP'}); + break; + case 314: - this.$ = new yy.JavaScript({value:$$[$0].substr(2,$$[$0].length-4)}); -break; + /*! Production:: JavaScript : JAVASCRIPT */ + + this.$ = new yy.JavaScript({value:yyvstack[yysp].substr(2,yyvstack[yysp].length-4)}); + break; + case 315: - this.$ = new yy.JavaScript({value:'alasql.fn["'+$$[$0-2]+'"] = '+$$[$0].substr(2,$$[$0].length-4)}); -break; + /*! Production:: CreateFunction : CREATE FUNCTION LITERAL AS JAVASCRIPT */ + + this.$ = new yy.JavaScript({value:'alasql.fn["'+yyvstack[yysp - 2]+'"] = '+yyvstack[yysp].substr(2,yyvstack[yysp].length-4)}); + break; + case 316: - this.$ = new yy.JavaScript({value:'alasql.aggr["'+$$[$0-2]+'"] = '+$$[$0].substr(2,$$[$0].length-4)}); -break; + /*! Production:: CreateAggregate : CREATE AGGREGATE LITERAL AS JAVASCRIPT */ + + this.$ = new yy.JavaScript({value:'alasql.aggr["'+yyvstack[yysp - 2]+'"] = '+yyvstack[yysp].substr(2,yyvstack[yysp].length-4)}); + break; + case 317: - this.$ = new yy.FuncValue({funcid:$$[$0], newid:true}); -break; + /*! Production:: NewClause : NEW Literal */ + + this.$ = new yy.FuncValue({funcid:yyvstack[yysp], newid:true}); + break; + case 318: - this.$ = $$[$0]; yy.extend(this.$,{newid:true}); -break; + /*! Production:: NewClause : NEW FuncValue */ + + this.$ = yyvstack[yysp]; yy.extend(this.$,{newid:true}); + break; + case 319: - this.$ = new yy.Convert({expression:$$[$0-3]}) ; yy.extend(this.$,$$[$0-1]) ; -break; + /*! Production:: CastClause : CAST LPAR Expression AS ColumnType RPAR */ + + this.$ = new yy.Convert({expression:yyvstack[yysp - 3]}) ; yy.extend(this.$,yyvstack[yysp - 1]) ; + break; + case 320: - this.$ = new yy.Convert({expression:$$[$0-5], style:$$[$0-1]}) ; yy.extend(this.$,$$[$0-3]) ; -break; + /*! Production:: CastClause : CAST LPAR Expression AS ColumnType COMMA NUMBER RPAR */ + + this.$ = new yy.Convert({expression:yyvstack[yysp - 5], style:yyvstack[yysp - 1]}) ; yy.extend(this.$,yyvstack[yysp - 3]) ; + break; + case 321: - this.$ = new yy.Convert({expression:$$[$0-1]}) ; yy.extend(this.$,$$[$0-3]) ; -break; + /*! Production:: CastClause : CONVERT LPAR ColumnType COMMA Expression RPAR */ + + this.$ = new yy.Convert({expression:yyvstack[yysp - 1]}) ; yy.extend(this.$,yyvstack[yysp - 3]) ; + break; + case 322: - this.$ = new yy.Convert({expression:$$[$0-3], style:$$[$0-1]}) ; yy.extend(this.$,$$[$0-5]) ; -break; -case 329: - this.$ = new yy.FuncValue({funcid:'CURRENT_TIMESTAMP'}); -break; + /*! Production:: CastClause : CONVERT LPAR ColumnType COMMA Expression COMMA NUMBER RPAR */ + + this.$ = new yy.Convert({expression:yyvstack[yysp - 3], style:yyvstack[yysp - 1]}) ; yy.extend(this.$,yyvstack[yysp - 5]) ; + break; + case 330: - - if($$[$0-2].length > 1 && ($$[$0-4].toUpperCase() == 'MAX' || $$[$0-4].toUpperCase() == 'MIN')) { - this.$ = new yy.FuncValue({funcid:$$[$0-4],args:$$[$0-2]}); - } else { - this.$ = new yy.AggrValue({aggregatorid: $$[$0-4].toUpperCase(), expression: $$[$0-2].pop(), over:$$[$0]}); - } - -break; + /*! Production:: AggrValue : Aggregator LPAR ExprList RPAR OverClause */ + + if(yyvstack[yysp - 2].length > 1 && (yyvstack[yysp - 4].toUpperCase() == 'MAX' || yyvstack[yysp - 4].toUpperCase() == 'MIN')) { + this.$ = new yy.FuncValue({funcid:yyvstack[yysp - 4],args:yyvstack[yysp - 2]}); + } else { + this.$ = new yy.AggrValue({aggregatorid: yyvstack[yysp - 4].toUpperCase(), expression: yyvstack[yysp - 2].pop(), over:yyvstack[yysp]}); + } + break; + case 331: - this.$ = new yy.AggrValue({aggregatorid: $$[$0-5].toUpperCase(), expression: $$[$0-2], distinct:true, over:$$[$0]}); -break; + /*! Production:: AggrValue : Aggregator LPAR DISTINCT Expression RPAR OverClause */ + + this.$ = new yy.AggrValue({aggregatorid: yyvstack[yysp - 5].toUpperCase(), expression: yyvstack[yysp - 2], distinct:true, over:yyvstack[yysp]}); + break; + case 332: - this.$ = new yy.AggrValue({aggregatorid: $$[$0-5].toUpperCase(), expression: $$[$0-2], - over:$$[$0]}); -break; -case 334: case 335: - this.$ = new yy.Over(); yy.extend(this.$,$$[$0-1]); -break; + /*! Production:: AggrValue : Aggregator LPAR ALL Expression RPAR OverClause */ + + this.$ = new yy.AggrValue({aggregatorid: yyvstack[yysp - 5].toUpperCase(), expression: yyvstack[yysp - 2], + over:yyvstack[yysp]}); + break; + +case 334: + /*! Production:: OverClause : OVER LPAR OverPartitionClause RPAR */ +case 335: + /*! Production:: OverClause : OVER LPAR OverOrderByClause RPAR */ + + this.$ = new yy.Over(); yy.extend(this.$,yyvstack[yysp - 1]); + break; + case 336: - this.$ = new yy.Over(); yy.extend(this.$,$$[$0-2]); yy.extend(this.$,$$[$0-1]); -break; + /*! Production:: OverClause : OVER LPAR OverPartitionClause OverOrderByClause RPAR */ + + this.$ = new yy.Over(); yy.extend(this.$,yyvstack[yysp - 2]); yy.extend(this.$,yyvstack[yysp - 1]); + break; + case 337: - this.$ = {partition:$$[$0]}; -break; + /*! Production:: OverPartitionClause : PARTITION BY GroupExpressionsList */ + + this.$ = {partition:yyvstack[yysp]}; + break; + case 338: - this.$ = {order:$$[$0]}; -break; + /*! Production:: OverOrderByClause : ORDER BY OrderExpressionsList */ + + this.$ = {order:yyvstack[yysp]}; + break; + case 339: - this.$ = "SUM"; -break; + /*! Production:: Aggregator : SUM */ + + this.$ = "SUM"; + break; + case 340: - this.$ = "TOTAL"; -break; + /*! Production:: Aggregator : TOTAL */ + + this.$ = "TOTAL"; + break; + case 341: - this.$ = "COUNT"; -break; + /*! Production:: Aggregator : COUNT */ + + this.$ = "COUNT"; + break; + case 342: - this.$ = "MIN"; -break; -case 343: case 549: - this.$ = "MAX"; -break; + /*! Production:: Aggregator : MIN */ + + this.$ = "MIN"; + break; + +case 343: + /*! Production:: Aggregator : MAX */ +case 549: + /*! Production:: NumberMax : MAXNUM */ + + this.$ = "MAX"; + break; + case 344: - this.$ = "AVG"; -break; + /*! Production:: Aggregator : AVG */ + + this.$ = "AVG"; + break; + case 345: - this.$ = "FIRST"; -break; + /*! Production:: Aggregator : FIRST */ + + this.$ = "FIRST"; + break; + case 346: - this.$ = "LAST"; -break; + /*! Production:: Aggregator : LAST */ + + this.$ = "LAST"; + break; + case 347: - this.$ = "AGGR"; -break; + /*! Production:: Aggregator : AGGR */ + + this.$ = "AGGR"; + break; + case 348: - this.$ = "ARRAY"; -break; + /*! Production:: Aggregator : ARRAY */ + + this.$ = "ARRAY"; + break; + case 349: - - var funcid = $$[$0-4]; - var exprlist = $$[$0-1]; - if(exprlist.length > 1 && (funcid.toUpperCase() == 'MIN' || funcid.toUpperCase() == 'MAX')) { - this.$ = new yy.FuncValue({funcid: funcid, args: exprlist}); - } else if(alasql.aggr[$$[$0-4]]) { - this.$ = new yy.AggrValue({aggregatorid: 'REDUCE', - funcid: funcid, expression: exprlist.pop(),distinct:($$[$0-2]=='DISTINCT') }); - } else { - this.$ = new yy.FuncValue({funcid: funcid, args: exprlist}); - }; - -break; + /*! Production:: FuncValue : Literal LPAR FuncValue_option ExprList RPAR */ + + var funcid = yyvstack[yysp - 4]; + var exprlist = yyvstack[yysp - 1]; + if(exprlist.length > 1 && (funcid.toUpperCase() == 'MIN' || funcid.toUpperCase() == 'MAX')) { + this.$ = new yy.FuncValue({funcid: funcid, args: exprlist}); + } else if(alasql.aggr[yyvstack[yysp - 4]]) { + this.$ = new yy.AggrValue({aggregatorid: 'REDUCE', + funcid: funcid, expression: exprlist.pop(),distinct:(yyvstack[yysp - 2]=='DISTINCT') }); + } else { + this.$ = new yy.FuncValue({funcid: funcid, args: exprlist}); + }; + break; + case 350: - this.$ = new yy.FuncValue({ funcid: $$[$0-2] }) -break; + /*! Production:: FuncValue : Literal LPAR RPAR */ + + this.$ = new yy.FuncValue({ funcid: yyvstack[yysp - 2] }) + break; + case 351: - this.$ = new yy.FuncValue({ funcid: 'IIF', args:$$[$0-1] }) -break; + /*! Production:: FuncValue : IF LPAR ExprList RPAR */ + + this.$ = new yy.FuncValue({ funcid: 'IIF', args:yyvstack[yysp - 1] }) + break; + case 352: - this.$ = new yy.FuncValue({ funcid: 'REPLACE', args:$$[$0-1] }) -break; + /*! Production:: FuncValue : REPLACE LPAR ExprList RPAR */ + + this.$ = new yy.FuncValue({ funcid: 'REPLACE', args:yyvstack[yysp - 1] }) + break; + case 353: - this.$ = new yy.FuncValue({ funcid: 'DATEADD', args:[new yy.StringValue({value:$$[$0-5]}),$$[$0-3],$$[$0-1]]}) -break; + /*! Production:: FuncValue : DATEADD LPAR Literal COMMA Expression COMMA Expression RPAR */ + + this.$ = new yy.FuncValue({ funcid: 'DATEADD', args:[new yy.StringValue({value:yyvstack[yysp - 5]}),yyvstack[yysp - 3],yyvstack[yysp - 1]]}) + break; + case 354: - this.$ = new yy.FuncValue({ funcid: 'DATEADD', args:[$$[$0-5],$$[$0-3],$$[$0-1]]}) -break; + /*! Production:: FuncValue : DATEADD LPAR STRING COMMA Expression COMMA Expression RPAR */ + + this.$ = new yy.FuncValue({ funcid: 'DATEADD', args:[yyvstack[yysp - 5],yyvstack[yysp - 3],yyvstack[yysp - 1]]}) + break; + case 355: - this.$ = new yy.FuncValue({ funcid: 'DATEDIFF', args:[new yy.StringValue({value:$$[$0-5]}),$$[$0-3],$$[$0-1]]}) -break; + /*! Production:: FuncValue : DATEDIFF LPAR Literal COMMA Expression COMMA Expression RPAR */ + + this.$ = new yy.FuncValue({ funcid: 'DATEDIFF', args:[new yy.StringValue({value:yyvstack[yysp - 5]}),yyvstack[yysp - 3],yyvstack[yysp - 1]]}) + break; + case 356: - this.$ = new yy.FuncValue({ funcid: 'DATEDIFF', args:[$$[$0-5],$$[$0-3],$$[$0-1]]}) -break; + /*! Production:: FuncValue : DATEDIFF LPAR STRING COMMA Expression COMMA Expression RPAR */ + + this.$ = new yy.FuncValue({ funcid: 'DATEDIFF', args:[yyvstack[yysp - 5],yyvstack[yysp - 3],yyvstack[yysp - 1]]}) + break; + case 357: - this.$ = new yy.FuncValue({ funcid: 'TIMESTAMPDIFF', args:[new yy.StringValue({value:$$[$0-5]}),$$[$0-3],$$[$0-1]]}) -break; + /*! Production:: FuncValue : TIMESTAMPDIFF LPAR Expression COMMA Expression COMMA Expression RPAR */ + + this.$ = new yy.FuncValue({ funcid: 'TIMESTAMPDIFF', args:[new yy.StringValue({value:yyvstack[yysp - 5]}),yyvstack[yysp - 3],yyvstack[yysp - 1]]}) + break; + case 358: - this.$ = new yy.FuncValue({ funcid: 'INTERVAL', args:[$$[$0-1],new yy.StringValue({value:($$[$0]).toLowerCase()})]}); -break; + /*! Production:: FuncValue : INTERVAL Expression Literal */ + + this.$ = new yy.FuncValue({ funcid: 'INTERVAL', args:[yyvstack[yysp - 1],new yy.StringValue({value:(yyvstack[yysp]).toLowerCase()})]}); + break; + case 360: - $$[$0-2].push($$[$0]); this.$ = $$[$0-2] -break; + /*! Production:: ExprList : ExprList COMMA Expression */ + + yyvstack[yysp - 2].push(yyvstack[yysp]); this.$ = yyvstack[yysp - 2] + break; + case 361: - this.$ = new yy.NumValue({value:+$$[$0]}); -break; + /*! Production:: NumValue : NUMBER */ + + this.$ = new yy.NumValue({value:+yyvstack[yysp]}); + break; + case 362: - this.$ = new yy.LogicValue({value:true}); -break; + /*! Production:: LogicValue : TRUE */ + + this.$ = new yy.LogicValue({value:true}); + break; + case 363: - this.$ = new yy.LogicValue({value:false}); -break; + /*! Production:: LogicValue : FALSE */ + + this.$ = new yy.LogicValue({value:false}); + break; + case 364: - this.$ = new yy.StringValue({value: $$[$0].substr(1,$$[$0].length-2).replace(/(\\\')/g,"'").replace(/(\'\')/g,"'")}); -break; + /*! Production:: StringValue : STRING */ + + this.$ = new yy.StringValue({value: yyvstack[yysp].substr(1,yyvstack[yysp].length-2).replace(/(\\\')/g,"'").replace(/(\'\')/g,"'")}); + break; + case 365: - this.$ = new yy.StringValue({value: $$[$0].substr(2,$$[$0].length-3).replace(/(\\\')/g,"'").replace(/(\'\')/g,"'")}); -break; + /*! Production:: StringValue : NSTRING */ + + this.$ = new yy.StringValue({value: yyvstack[yysp].substr(2,yyvstack[yysp].length-3).replace(/(\\\')/g,"'").replace(/(\'\')/g,"'")}); + break; + case 366: - this.$ = new yy.NullValue({value:undefined}); -break; + /*! Production:: NullValue : NULL */ + + this.$ = new yy.NullValue({value:undefined}); + break; + case 367: - this.$ = new yy.VarValue({variable:$$[$0]}); -break; + /*! Production:: VarValue : AT Literal */ + + this.$ = new yy.VarValue({variable:yyvstack[yysp]}); + break; + case 368: - - if(!yy.exists) yy.exists = []; - this.$ = new yy.ExistsValue({value:$$[$0-1], existsidx:yy.exists.length}); - yy.exists.push($$[$0-1]); - -break; + /*! Production:: ExistsValue : EXISTS LPAR Select RPAR */ + + if(!yy.exists) yy.exists = []; + this.$ = new yy.ExistsValue({value:yyvstack[yysp - 1], existsidx:yy.exists.length}); + yy.exists.push(yyvstack[yysp - 1]); + break; + case 369: - this.$ = new yy.ArrayValue({value:$$[$0-1]}); -break; -case 370: case 371: - this.$ = new yy.ParamValue({param: $$[$0]}); -break; + /*! Production:: ArrayValue : ARRAYLBRA ExprList RBRA */ + + this.$ = new yy.ArrayValue({value:yyvstack[yysp - 1]}); + break; + +case 370: + /*! Production:: ParamValue : DOLLAR ParamValue_group */ +case 371: + /*! Production:: ParamValue : COLON Literal */ + + this.$ = new yy.ParamValue({param: yyvstack[yysp]}); + break; + case 372: - - if(typeof yy.question == 'undefined') yy.question = 0; - this.$ = new yy.ParamValue({param: yy.question++}); - -break; + /*! Production:: ParamValue : QUESTION */ + + if(typeof yy.question == 'undefined') yy.question = 0; + this.$ = new yy.ParamValue({param: yy.question++}); + break; + case 373: - - if(typeof yy.question == 'undefined') yy.question = 0; - this.$ = new yy.ParamValue({param: yy.question++, array:true}); - -break; + /*! Production:: ParamValue : BRAQUESTION */ + + if(typeof yy.question == 'undefined') yy.question = 0; + this.$ = new yy.ParamValue({param: yy.question++, array:true}); + break; + case 374: - this.$ = new yy.CaseValue({expression:$$[$0-3], whens: $$[$0-2], elses: $$[$0-1]}); -break; + /*! Production:: CaseValue : CASE Expression WhensList ElseClause END */ + + this.$ = new yy.CaseValue({expression:yyvstack[yysp - 3], whens: yyvstack[yysp - 2], elses: yyvstack[yysp - 1]}); + break; + case 375: - this.$ = new yy.CaseValue({whens: $$[$0-2], elses: $$[$0-1]}); -break; -case 376: case 704: case 705: - this.$ = $$[$0-1]; this.$.push($$[$0]); -break; + /*! Production:: CaseValue : CASE WhensList ElseClause END */ + + this.$ = new yy.CaseValue({whens: yyvstack[yysp - 2], elses: yyvstack[yysp - 1]}); + break; + +case 376: + /*! Production:: WhensList : WhensList When */ +case 704: + /*! Production:: MergeMatchedList : MergeMatchedList MergeMatched */ +case 705: + /*! Production:: MergeMatchedList : MergeMatchedList MergeNotMatched */ + + this.$ = yyvstack[yysp - 1]; this.$.push(yyvstack[yysp]); + break; + case 378: - this.$ = {when: $$[$0-2], then: $$[$0] }; -break; -case 381: case 382: - this.$ = new yy.Op({left:$$[$0-2], op:'REGEXP', right:$$[$0]}); -break; + /*! Production:: When : WHEN Expression THEN Expression */ + + this.$ = {when: yyvstack[yysp - 2], then: yyvstack[yysp] }; + break; + +case 381: + /*! Production:: Op : Expression REGEXP Expression */ +case 382: + /*! Production:: Op : Expression TILDA Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'REGEXP', right:yyvstack[yysp]}); + break; + case 383: - this.$ = new yy.Op({left:$$[$0-2], op:'GLOB', right:$$[$0]}); -break; + /*! Production:: Op : Expression GLOB Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'GLOB', right:yyvstack[yysp]}); + break; + case 384: - this.$ = new yy.Op({left:$$[$0-2], op:'LIKE', right:$$[$0]}); -break; + /*! Production:: Op : Expression LIKE Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'LIKE', right:yyvstack[yysp]}); + break; + case 385: - this.$ = new yy.Op({left:$$[$0-4], op:'LIKE', right:$$[$0-2], escape:$$[$0]}); -break; + /*! Production:: Op : Expression LIKE Expression ESCAPE Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 4], op:'LIKE', right:yyvstack[yysp - 2], escape:yyvstack[yysp]}); + break; + case 386: - this.$ = new yy.Op({left:$$[$0-2], op:'NOT LIKE', right:$$[$0] }); -break; + /*! Production:: Op : Expression NOT_LIKE Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'NOT LIKE', right:yyvstack[yysp] }); + break; + case 387: - this.$ = new yy.Op({left:$$[$0-4], op:'NOT LIKE', right:$$[$0-2], escape:$$[$0] }); -break; + /*! Production:: Op : Expression NOT_LIKE Expression ESCAPE Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 4], op:'NOT LIKE', right:yyvstack[yysp - 2], escape:yyvstack[yysp] }); + break; + case 388: - this.$ = new yy.Op({left:$$[$0-2], op:'||', right:$$[$0]}); -break; + /*! Production:: Op : Expression BARBAR Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'||', right:yyvstack[yysp]}); + break; + case 389: - this.$ = new yy.Op({left:$$[$0-2], op:'+', right:$$[$0]}); -break; + /*! Production:: Op : Expression PLUS Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'+', right:yyvstack[yysp]}); + break; + case 390: - this.$ = new yy.Op({left:$$[$0-2], op:'-', right:$$[$0]}); -break; + /*! Production:: Op : Expression MINUS Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'-', right:yyvstack[yysp]}); + break; + case 391: - this.$ = new yy.Op({left:$$[$0-2], op:'*', right:$$[$0]}); -break; + /*! Production:: Op : Expression STAR Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'*', right:yyvstack[yysp]}); + break; + case 392: - this.$ = new yy.Op({left:$$[$0-2], op:'/', right:$$[$0]}); -break; + /*! Production:: Op : Expression SLASH Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'/', right:yyvstack[yysp]}); + break; + case 393: - this.$ = new yy.Op({left:$$[$0-2], op:'%', right:$$[$0]}); -break; + /*! Production:: Op : Expression MODULO Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'%', right:yyvstack[yysp]}); + break; + case 394: - this.$ = new yy.Op({left:$$[$0-2], op:'^', right:$$[$0]}); -break; + /*! Production:: Op : Expression CARET Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'^', right:yyvstack[yysp]}); + break; + case 395: - this.$ = new yy.Op({left:$$[$0-2], op:'>>', right:$$[$0]}); -break; + /*! Production:: Op : Expression GTGT Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'>>', right:yyvstack[yysp]}); + break; + case 396: - this.$ = new yy.Op({left:$$[$0-2], op:'<<', right:$$[$0]}); -break; + /*! Production:: Op : Expression LTLT Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'<<', right:yyvstack[yysp]}); + break; + case 397: - this.$ = new yy.Op({left:$$[$0-2], op:'&', right:$$[$0]}); -break; + /*! Production:: Op : Expression AMPERSAND Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'&', right:yyvstack[yysp]}); + break; + case 398: - this.$ = new yy.Op({left:$$[$0-2], op:'|', right:$$[$0]}); -break; -case 399: case 400: case 402: - this.$ = new yy.Op({left:$$[$0-2], op:'->' , right:$$[$0]}); -break; + /*! Production:: Op : Expression BAR Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'|', right:yyvstack[yysp]}); + break; + +case 399: + /*! Production:: Op : Expression ArrowDot Literal */ +case 400: + /*! Production:: Op : Expression ArrowDot NumValue */ +case 402: + /*! Production:: Op : Expression ArrowDot FuncValue */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'->' , right:yyvstack[yysp]}); + break; + case 401: - this.$ = new yy.Op({left:$$[$0-4], op:'->' , right:$$[$0-1]}); -break; -case 403: case 404: case 406: - this.$ = new yy.Op({left:$$[$0-2], op:'!' , right:$$[$0]}); -break; + /*! Production:: Op : Expression ArrowDot LPAR Expression RPAR */ + + this.$ = new yy.Op({left:yyvstack[yysp - 4], op:'->' , right:yyvstack[yysp - 1]}); + break; + +case 403: + /*! Production:: Op : Expression EXCLAMATION Literal */ +case 404: + /*! Production:: Op : Expression EXCLAMATION NumValue */ +case 406: + /*! Production:: Op : Expression EXCLAMATION FuncValue */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'!' , right:yyvstack[yysp]}); + break; + case 405: - this.$ = new yy.Op({left:$$[$0-4], op:'!' , right:$$[$0-1]}); -break; + /*! Production:: Op : Expression EXCLAMATION LPAR Expression RPAR */ + + this.$ = new yy.Op({left:yyvstack[yysp - 4], op:'!' , right:yyvstack[yysp - 1]}); + break; + case 407: - this.$ = new yy.Op({left:$$[$0-2], op:'>' , right:$$[$0]}); -break; + /*! Production:: Op : Expression GT Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'>' , right:yyvstack[yysp]}); + break; + case 408: - this.$ = new yy.Op({left:$$[$0-2], op:'>=' , right:$$[$0]}); -break; + /*! Production:: Op : Expression GE Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'>=' , right:yyvstack[yysp]}); + break; + case 409: - this.$ = new yy.Op({left:$$[$0-2], op:'<' , right:$$[$0]}); -break; + /*! Production:: Op : Expression LT Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'<' , right:yyvstack[yysp]}); + break; + case 410: - this.$ = new yy.Op({left:$$[$0-2], op:'<=' , right:$$[$0]}); -break; + /*! Production:: Op : Expression LE Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'<=' , right:yyvstack[yysp]}); + break; + case 411: - this.$ = new yy.Op({left:$$[$0-2], op:'=' , right:$$[$0]}); -break; + /*! Production:: Op : Expression EQ Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'=' , right:yyvstack[yysp]}); + break; + case 412: - this.$ = new yy.Op({left:$$[$0-2], op:'==' , right:$$[$0]}); -break; + /*! Production:: Op : Expression EQEQ Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'==' , right:yyvstack[yysp]}); + break; + case 413: - this.$ = new yy.Op({left:$$[$0-2], op:'===' , right:$$[$0]}); -break; + /*! Production:: Op : Expression EQEQEQ Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'===' , right:yyvstack[yysp]}); + break; + case 414: - this.$ = new yy.Op({left:$$[$0-2], op:'!=' , right:$$[$0]}); -break; + /*! Production:: Op : Expression NE Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'!=' , right:yyvstack[yysp]}); + break; + case 415: - this.$ = new yy.Op({left:$$[$0-2], op:'!==' , right:$$[$0]}); -break; + /*! Production:: Op : Expression NEEQEQ Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'!==' , right:yyvstack[yysp]}); + break; + case 416: - this.$ = new yy.Op({left:$$[$0-2], op:'!===' , right:$$[$0]}); -break; + /*! Production:: Op : Expression NEEQEQEQ Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'!===' , right:yyvstack[yysp]}); + break; + case 417: - - if(!yy.queries) yy.queries = []; - this.$ = new yy.Op({left:$$[$0-5], op:$$[$0-4] , allsome:$$[$0-3], right:$$[$0-1], queriesidx: yy.queries.length}); - yy.queries.push($$[$0-1]); - -break; + /*! Production:: Op : Expression CondOp AllSome LPAR Select RPAR */ + + if(!yy.queries) yy.queries = []; + this.$ = new yy.Op({left:yyvstack[yysp - 5], op:yyvstack[yysp - 4] , allsome:yyvstack[yysp - 3], right:yyvstack[yysp - 1], queriesidx: yy.queries.length}); + yy.queries.push(yyvstack[yysp - 1]); + break; + case 418: - - this.$ = new yy.Op({left:$$[$0-5], op:$$[$0-4] , allsome:$$[$0-3], right:$$[$0-1]}); - -break; + /*! Production:: Op : Expression CondOp AllSome LPAR ExprList RPAR */ + + this.$ = new yy.Op({left:yyvstack[yysp - 5], op:yyvstack[yysp - 4] , allsome:yyvstack[yysp - 3], right:yyvstack[yysp - 1]}); + break; + case 419: - - if($$[$0-2].op == 'BETWEEN1') { - - if($$[$0-2].left.op == 'AND') { - this.$ = new yy.Op({left:$$[$0-2].left.left,op:'AND',right: - new yy.Op({left:$$[$0-2].left.right, op:'BETWEEN', - right1:$$[$0-2].right, right2:$$[$0]}) - }); - } else { - this.$ = new yy.Op({left:$$[$0-2].left, op:'BETWEEN', - right1:$$[$0-2].right, right2:$$[$0]}); - } - - } else if($$[$0-2].op == 'NOT BETWEEN1') { - if($$[$0-2].left.op == 'AND') { - this.$ = new yy.Op({left:$$[$0-2].left.left,op:'AND',right: - new yy.Op({left:$$[$0-2].left.right, op:'NOT BETWEEN', - right1:$$[$0-2].right, right2:$$[$0]}) - }); - } else { - this.$ = new yy.Op({left:$$[$0-2].left, op:'NOT BETWEEN', - right1:$$[$0-2].right, right2:$$[$0]}); - } - } else { - this.$ = new yy.Op({left:$$[$0-2], op:'AND', right:$$[$0]}); - } - - - -break; + /*! Production:: Op : Expression AND Expression */ + + if(yyvstack[yysp - 2].op == 'BETWEEN1') { + + if(yyvstack[yysp - 2].left.op == 'AND') { + this.$ = new yy.Op({left:yyvstack[yysp - 2].left.left,op:'AND',right: + new yy.Op({left:yyvstack[yysp - 2].left.right, op:'BETWEEN', + right1:yyvstack[yysp - 2].right, right2:yyvstack[yysp]}) + }); + } else { + this.$ = new yy.Op({left:yyvstack[yysp - 2].left, op:'BETWEEN', + right1:yyvstack[yysp - 2].right, right2:yyvstack[yysp]}); + } + + } else if(yyvstack[yysp - 2].op == 'NOT BETWEEN1') { + if(yyvstack[yysp - 2].left.op == 'AND') { + this.$ = new yy.Op({left:yyvstack[yysp - 2].left.left,op:'AND',right: + new yy.Op({left:yyvstack[yysp - 2].left.right, op:'NOT BETWEEN', + right1:yyvstack[yysp - 2].right, right2:yyvstack[yysp]}) + }); + } else { + this.$ = new yy.Op({left:yyvstack[yysp - 2].left, op:'NOT BETWEEN', + right1:yyvstack[yysp - 2].right, right2:yyvstack[yysp]}); + } + } else { + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'AND', right:yyvstack[yysp]}); + } + break; + case 420: - this.$ = new yy.Op({left:$$[$0-2], op:'OR' , right:$$[$0]}); -break; + /*! Production:: Op : Expression OR Expression */ + + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'OR' , right:yyvstack[yysp]}); + break; + case 421: - this.$ = new yy.UniOp({op:'NOT' , right:$$[$0]}); -break; + /*! Production:: Op : NOT Expression */ + + this.$ = new yy.UniOp({op:'NOT' , right:yyvstack[yysp]}); + break; + case 422: - this.$ = new yy.UniOp({op:'-' , right:$$[$0]}); -break; + /*! Production:: Op : MINUS Expression */ + + this.$ = new yy.UniOp({op:'-' , right:yyvstack[yysp]}); + break; + case 423: - this.$ = new yy.UniOp({op:'+' , right:$$[$0]}); -break; + /*! Production:: Op : PLUS Expression */ + + this.$ = new yy.UniOp({op:'+' , right:yyvstack[yysp]}); + break; + case 424: - this.$ = new yy.UniOp({op:'~' , right:$$[$0]}); -break; + /*! Production:: Op : TILDA Expression */ + + this.$ = new yy.UniOp({op:'~' , right:yyvstack[yysp]}); + break; + case 425: - this.$ = new yy.UniOp({op:'#' , right:$$[$0]}); -break; + /*! Production:: Op : SHARP Expression */ + + this.$ = new yy.UniOp({op:'#' , right:yyvstack[yysp]}); + break; + case 426: - this.$ = new yy.UniOp({right: $$[$0-1]}); -break; + /*! Production:: Op : LPAR Expression RPAR */ + + this.$ = new yy.UniOp({right: yyvstack[yysp - 1]}); + break; + case 427: - - if(!yy.queries) yy.queries = []; - this.$ = new yy.Op({left: $$[$0-4], op:'IN', right:$$[$0-1], queriesidx: yy.queries.length}); - yy.queries.push($$[$0-1]); - -break; + /*! Production:: Op : Expression IN LPAR Select RPAR */ + + if(!yy.queries) yy.queries = []; + this.$ = new yy.Op({left: yyvstack[yysp - 4], op:'IN', right:yyvstack[yysp - 1], queriesidx: yy.queries.length}); + yy.queries.push(yyvstack[yysp - 1]); + break; + case 428: - - if(!yy.queries) yy.queries = []; - this.$ = new yy.Op({left: $$[$0-5], op:'NOT IN', right:$$[$0-1], queriesidx: yy.queries.length}); - yy.queries.push($$[$0-1]); - -break; + /*! Production:: Op : Expression NOT IN LPAR Select RPAR */ + + if(!yy.queries) yy.queries = []; + this.$ = new yy.Op({left: yyvstack[yysp - 5], op:'NOT IN', right:yyvstack[yysp - 1], queriesidx: yy.queries.length}); + yy.queries.push(yyvstack[yysp - 1]); + break; + case 429: - this.$ = new yy.Op({left: $$[$0-4], op:'IN', right:$$[$0-1]}); -break; + /*! Production:: Op : Expression IN LPAR ExprList RPAR */ + + this.$ = new yy.Op({left: yyvstack[yysp - 4], op:'IN', right:yyvstack[yysp - 1]}); + break; + case 430: - this.$ = new yy.Op({left: $$[$0-5], op:'NOT IN', right:$$[$0-1]}); -break; + /*! Production:: Op : Expression NOT IN LPAR ExprList RPAR */ + + this.$ = new yy.Op({left: yyvstack[yysp - 5], op:'NOT IN', right:yyvstack[yysp - 1]}); + break; + case 431: - this.$ = new yy.Op({left: $$[$0-3], op:'IN', right:[]}); -break; + /*! Production:: Op : Expression IN LPAR RPAR */ + + this.$ = new yy.Op({left: yyvstack[yysp - 3], op:'IN', right:[]}); + break; + case 432: - this.$ = new yy.Op({left: $$[$0-4], op:'NOT IN', right:[]}); -break; -case 433: case 435: - this.$ = new yy.Op({left: $$[$0-2], op:'IN', right:$$[$0]}); -break; -case 434: case 436: - this.$ = new yy.Op({left: $$[$0-3], op:'NOT IN', right:$$[$0]}); -break; + /*! Production:: Op : Expression NOT IN LPAR RPAR */ + + this.$ = new yy.Op({left: yyvstack[yysp - 4], op:'NOT IN', right:[]}); + break; + +case 433: + /*! Production:: Op : Expression IN ColFunc */ +case 435: + /*! Production:: Op : Expression IN VarValue */ + + this.$ = new yy.Op({left: yyvstack[yysp - 2], op:'IN', right:yyvstack[yysp]}); + break; + +case 434: + /*! Production:: Op : Expression NOT IN ColFunc */ +case 436: + /*! Production:: Op : Expression NOT IN VarValue */ + + this.$ = new yy.Op({left: yyvstack[yysp - 3], op:'NOT IN', right:yyvstack[yysp]}); + break; + case 437: - -/* var expr = $$[$0]; - if(expr.left && expr.left.op == 'AND') { - this.$ = new yy.Op({left:new yy.Op({left:$$[$0-2], op:'BETWEEN', right:expr.left}), op:'AND', right:expr.right }); - } else { -*/ - this.$ = new yy.Op({left:$$[$0-2], op:'BETWEEN1', right:$$[$0] }); -// } - -break; + /*! Production:: Op : Expression BETWEEN Expression */ + + /* var expr = $3; + if(expr.left && expr.left.op == 'AND') { + $$ = new yy.Op({left:new yy.Op({left:$1, op:'BETWEEN', right:expr.left}), op:'AND', right:expr.right }); + } else { + */ + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'BETWEEN1', right:yyvstack[yysp] }); + // } + break; + case 438: - -// var expr = $$[$0]; -// if(expr.left && expr.left.op == 'AND') { -// this.$ = new yy.Op({left:new yy.Op({left:$$[$0-2], op:'NOT BETWEEN', right:expr.left}), op:'AND', right:expr.right }); -// } else { - this.$ = new yy.Op({left:$$[$0-2], op:'NOT BETWEEN1', right:$$[$0] }); -// } - -break; + /*! Production:: Op : Expression NOT_BETWEEN Expression */ + + // var expr = $3; + // if(expr.left && expr.left.op == 'AND') { + // $$ = new yy.Op({left:new yy.Op({left:$1, op:'NOT BETWEEN', right:expr.left}), op:'AND', right:expr.right }); + // } else { + this.$ = new yy.Op({left:yyvstack[yysp - 2], op:'NOT BETWEEN1', right:yyvstack[yysp] }); + // } + break; + case 439: - this.$ = new yy.Op({op:'IS' , left:$$[$0-2], right:$$[$0]}); -break; + /*! Production:: Op : Expression IS Expression */ + + this.$ = new yy.Op({op:'IS' , left:yyvstack[yysp - 2], right:yyvstack[yysp]}); + break; + case 440: - - this.$ = new yy.Op({ - op:'IS', - left:$$[$0-2], - right: new yy.UniOp({ - op:'NOT', - right:new yy.NullValue({value:undefined}) - }) - }); - -break; + /*! Production:: Op : Expression NOT NULL */ + + this.$ = new yy.Op({ + op:'IS', + left:yyvstack[yysp - 2], + right: new yy.UniOp({ + op:'NOT', + right:new yy.NullValue({value:undefined}) + }) + }); + break; + case 441: - this.$ = new yy.Convert({expression:$$[$0-2]}) ; yy.extend(this.$,$$[$0]) ; -break; -case 442: case 443: - this.$ = $$[$0]; -break; -case 444: - this.$ = $$[$0-1]; -break; + /*! Production:: Op : Expression DOUBLECOLON ColumnType */ + + this.$ = new yy.Convert({expression:yyvstack[yysp - 2]}) ; yy.extend(this.$,yyvstack[yysp]) ; + break; + case 451: - this.$ = 'ALL'; -break; + /*! Production:: AllSome : ALL */ + + this.$ = 'ALL'; + break; + case 452: - this.$ = 'SOME'; -break; + /*! Production:: AllSome : SOME */ + + this.$ = 'SOME'; + break; + case 453: - this.$ = 'ANY'; -break; + /*! Production:: AllSome : ANY */ + + this.$ = 'ANY'; + break; + case 454: - this.$ = new yy.Update({table:$$[$0-4], columns:$$[$0-2], where:$$[$0]}); -break; + /*! Production:: Update : UPDATE Table SET SetColumnsList WHERE Expression */ + + this.$ = new yy.Update({table:yyvstack[yysp - 4], columns:yyvstack[yysp - 2], where:yyvstack[yysp]}); + break; + case 455: - this.$ = new yy.Update({table:$$[$0-2], columns:$$[$0]}); -break; + /*! Production:: Update : UPDATE Table SET SetColumnsList */ + + this.$ = new yy.Update({table:yyvstack[yysp - 2], columns:yyvstack[yysp]}); + break; + case 458: - this.$ = new yy.SetColumn({column:$$[$0-2], expression:$$[$0]}) -break; + /*! Production:: SetColumn : Column EQ Expression */ + + this.$ = new yy.SetColumn({column:yyvstack[yysp - 2], expression:yyvstack[yysp]}) + break; + case 459: - this.$ = new yy.SetColumn({variable:$$[$0-2], expression:$$[$0], method:$$[$0-3]}) -break; + /*! Production:: SetColumn : SetColumn_group Literal EQ Expression */ + + this.$ = new yy.SetColumn({variable:yyvstack[yysp - 2], expression:yyvstack[yysp], method:yyvstack[yysp - 3]}) + break; + case 460: - this.$ = new yy.Delete({table:$$[$0-2], where:$$[$0]}); -break; + /*! Production:: Delete : DELETE FROM Table WHERE Expression */ + + this.$ = new yy.Delete({table:yyvstack[yysp - 2], where:yyvstack[yysp]}); + break; + case 461: - this.$ = new yy.Delete({table:$$[$0]}); -break; + /*! Production:: Delete : DELETE FROM Table */ + + this.$ = new yy.Delete({table:yyvstack[yysp]}); + break; + case 462: - this.$ = new yy.Insert({into:$$[$0-2], values: $$[$0]}); -break; + /*! Production:: Insert : INSERT Into Table Values ValuesListsList */ + + this.$ = new yy.Insert({into:yyvstack[yysp - 2], values: yyvstack[yysp]}); + break; + case 463: - this.$ = new yy.Insert({into:$$[$0-1], values: $$[$0]}); -break; -case 464: case 466: - this.$ = new yy.Insert({into:$$[$0-2], values: $$[$0], orreplace:true}); -break; -case 465: case 467: - this.$ = new yy.Insert({into:$$[$0-1], values: $$[$0], orreplace:true}); -break; + /*! Production:: Insert : INSERT Into Table ValuesListsList */ + + this.$ = new yy.Insert({into:yyvstack[yysp - 1], values: yyvstack[yysp]}); + break; + +case 464: + /*! Production:: Insert : INSERT OR REPLACE Into Table Values ValuesListsList */ +case 466: + /*! Production:: Insert : REPLACE Into Table Values ValuesListsList */ + + this.$ = new yy.Insert({into:yyvstack[yysp - 2], values: yyvstack[yysp], orreplace:true}); + break; + +case 465: + /*! Production:: Insert : INSERT OR REPLACE Into Table ValuesListsList */ +case 467: + /*! Production:: Insert : REPLACE Into Table ValuesListsList */ + + this.$ = new yy.Insert({into:yyvstack[yysp - 1], values: yyvstack[yysp], orreplace:true}); + break; + case 468: - this.$ = new yy.Insert({into:$$[$0-2], "default": true}) ; -break; + /*! Production:: Insert : INSERT Into Table DEFAULT Values */ + + this.$ = new yy.Insert({into:yyvstack[yysp - 2], "default": true}) ; + break; + case 469: - this.$ = new yy.Insert({into:$$[$0-5], columns: $$[$0-3], values: $$[$0]}); -break; + /*! Production:: Insert : INSERT Into Table LPAR ColumnsList RPAR Values ValuesListsList */ + + this.$ = new yy.Insert({into:yyvstack[yysp - 5], columns: yyvstack[yysp - 3], values: yyvstack[yysp]}); + break; + case 470: - this.$ = new yy.Insert({into:$$[$0-4], columns: $$[$0-2], values: $$[$0]}); -break; + /*! Production:: Insert : INSERT Into Table LPAR ColumnsList RPAR ValuesListsList */ + + this.$ = new yy.Insert({into:yyvstack[yysp - 4], columns: yyvstack[yysp - 2], values: yyvstack[yysp]}); + break; + case 471: - this.$ = new yy.Insert({into:$$[$0-1], select: $$[$0]}); -break; + /*! Production:: Insert : INSERT Into Table Select */ + + this.$ = new yy.Insert({into:yyvstack[yysp - 1], select: yyvstack[yysp]}); + break; + case 472: - this.$ = new yy.Insert({into:$$[$0-1], select: $$[$0], orreplace:true}); -break; + /*! Production:: Insert : INSERT OR REPLACE Into Table Select */ + + this.$ = new yy.Insert({into:yyvstack[yysp - 1], select: yyvstack[yysp], orreplace:true}); + break; + case 473: - this.$ = new yy.Insert({into:$$[$0-4], columns: $$[$0-2], select: $$[$0]}); -break; + /*! Production:: Insert : INSERT Into Table LPAR ColumnsList RPAR Select */ + + this.$ = new yy.Insert({into:yyvstack[yysp - 4], columns: yyvstack[yysp - 2], select: yyvstack[yysp]}); + break; + +case 476: + /*! Production:: Into : %epsilon */ +case 498: + /*! Production:: CreateTableOptionsClause : %epsilon */ +case 722: + /*! Production:: OutputClause : %epsilon */ + + // default action (generated by JISON mode classic/merge :: 0,VT,VA,-,-,-,-,-,-): + this.$ = undefined; + // END of default action (generated by JISON mode classic/merge :: 0,VT,VA,-,-,-,-,-,-) + break; + case 478: - this.$ = [$$[$0-1]]; -break; + /*! Production:: ValuesListsList : LPAR ValuesList RPAR */ + + this.$ = [yyvstack[yysp - 1]]; + break; + case 481: -this.$ = $$[$0-4]; $$[$0-4].push($$[$0-1]) -break; -case 482: case 483: case 485: case 493: -this.$ = $$[$0-2]; $$[$0-2].push($$[$0]) -break; + /*! Production:: ValuesListsList : ValuesListsList COMMA LPAR ValuesList RPAR */ + + this.$ = yyvstack[yysp - 4]; yyvstack[yysp - 4].push(yyvstack[yysp - 1]) + break; + case 494: - - this.$ = new yy.CreateTable({table:$$[$0-4]}); - yy.extend(this.$,$$[$0-7]); - yy.extend(this.$,$$[$0-6]); - yy.extend(this.$,$$[$0-5]); - yy.extend(this.$,$$[$0-2]); - yy.extend(this.$,$$[$0]); - -break; + /*! Production:: CreateTable : CREATE TemporaryClause TableClass IfNotExists Table LPAR CreateTableDefClause RPAR CreateTableOptionsClause */ + + this.$ = new yy.CreateTable({table:yyvstack[yysp - 4]}); + yy.extend(this.$,yyvstack[yysp - 7]); + yy.extend(this.$,yyvstack[yysp - 6]); + yy.extend(this.$,yyvstack[yysp - 5]); + yy.extend(this.$,yyvstack[yysp - 2]); + yy.extend(this.$,yyvstack[yysp]); + break; + case 495: - - this.$ = new yy.CreateTable({table:$$[$0]}); - yy.extend(this.$,$$[$0-3]); - yy.extend(this.$,$$[$0-2]); - yy.extend(this.$,$$[$0-1]); - -break; + /*! Production:: CreateTable : CREATE TemporaryClause TableClass IfNotExists Table */ + + this.$ = new yy.CreateTable({table:yyvstack[yysp]}); + yy.extend(this.$,yyvstack[yysp - 3]); + yy.extend(this.$,yyvstack[yysp - 2]); + yy.extend(this.$,yyvstack[yysp - 1]); + break; + case 497: - this.$ = {class:true}; -break; + /*! Production:: TableClass : CLASS */ + + this.$ = {class:true}; + break; + +case 500: + /*! Production:: CreateTableOptions : CreateTableOptions CreateTableOption */ +case 764: + /*! Production:: Query : QUESTIONDASH FuncValue */ + + // default action (generated by JISON mode classic/merge :: 2,VT,VA,-,-,-,-,-,-): + this.$ = yyvstack[yysp - 1]; + // END of default action (generated by JISON mode classic/merge :: 2,VT,VA,-,-,-,-,-,-) + break; + +case 503: + /*! Production:: CreateTableOption : LITERAL EQ Literal */ +case 504: + /*! Production:: CreateTableOption : IDENTITY EQ NumValue */ +case 505: + /*! Production:: CreateTableOption : COLLATE EQ Literal */ +case 615: + /*! Production:: SubqueryRestriction : WITH READ ONLY */ +case 616: + /*! Production:: SubqueryRestriction : WITH CHECK OPTION */ + + // default action (generated by JISON mode classic/merge :: 3,VT,VA,-,-,-,-,-,-): + this.$ = yyvstack[yysp - 2]; + // END of default action (generated by JISON mode classic/merge :: 3,VT,VA,-,-,-,-,-,-) + break; + case 507: - this.$ = {temporary:true}; -break; + /*! Production:: TemporaryClause : TEMP */ + + this.$ = {temporary:true}; + break; + case 509: - this.$ = {ifnotexists: true}; -break; + /*! Production:: IfNotExists : IF NOT EXISTS */ + + this.$ = {ifnotexists: true}; + break; + case 510: - this.$ = {columns: $$[$0-2], constraints: $$[$0]}; -break; + /*! Production:: CreateTableDefClause : ColumnDefsList COMMA ConstraintsList */ + + this.$ = {columns: yyvstack[yysp - 2], constraints: yyvstack[yysp]}; + break; + case 511: - this.$ = {columns: $$[$0]}; -break; + /*! Production:: CreateTableDefClause : ColumnDefsList */ + + this.$ = {columns: yyvstack[yysp]}; + break; + case 512: - this.$ = {as: $$[$0]} -break; -case 513: case 537: - this.$ = [$$[$0]]; -break; -case 515: case 516: case 517: case 518: case 519: - $$[$0].constraintid = $$[$0-1]; this.$ = $$[$0]; -break; + /*! Production:: CreateTableDefClause : AS Select */ + + this.$ = {as: yyvstack[yysp]} + break; + +case 515: + /*! Production:: Constraint : ConstraintName PrimaryKey */ +case 516: + /*! Production:: Constraint : ConstraintName ForeignKey */ +case 517: + /*! Production:: Constraint : ConstraintName UniqueKey */ +case 518: + /*! Production:: Constraint : ConstraintName IndexKey */ +case 519: + /*! Production:: Constraint : ConstraintName Check */ + + yyvstack[yysp].constraintid = yyvstack[yysp - 1]; this.$ = yyvstack[yysp]; + break; + case 522: - this.$ = {type: 'CHECK', expression: $$[$0-1]}; -break; + /*! Production:: Check : CHECK LPAR Expression RPAR */ + + this.$ = {type: 'CHECK', expression: yyvstack[yysp - 1]}; + break; + case 523: - this.$ = {type: 'PRIMARY KEY', columns: $$[$0-1], clustered:($$[$0-3]+'').toUpperCase()}; -break; + /*! Production:: PrimaryKey : PRIMARY KEY PrimaryKey_option LPAR ColsList RPAR */ + + this.$ = {type: 'PRIMARY KEY', columns: yyvstack[yysp - 1], clustered:(yyvstack[yysp - 3]+'').toUpperCase()}; + break; + case 524: - this.$ = {type: 'FOREIGN KEY', columns: $$[$0-5], fktable: $$[$0-2], fkcolumns: $$[$0-1]}; -break; + /*! Production:: ForeignKey : FOREIGN KEY LPAR ColsList RPAR REFERENCES Table ForeignKey_option OnForeignKeyClause */ + + this.$ = {type: 'FOREIGN KEY', columns: yyvstack[yysp - 5], fktable: yyvstack[yysp - 2], fkcolumns: yyvstack[yysp - 1]}; + break; + case 530: - - this.$ = {type: 'UNIQUE', columns: $$[$0-1], clustered:($$[$0-3]+'').toUpperCase()}; - -break; + /*! Production:: UniqueKey : UNIQUE UniqueKey_option UniqueKey_option2 LPAR ColumnsList RPAR */ + + this.$ = {type: 'UNIQUE', columns: yyvstack[yysp - 1], clustered:(yyvstack[yysp - 3]+'').toUpperCase()}; + break; + +case 531: + /*! Production:: IndexKey : INDEX Literal LPAR ColumnsList RPAR */ +case 532: + /*! Production:: IndexKey : KEY Literal LPAR ColumnsList RPAR */ +case 617: + /*! Production:: SubqueryRestriction : WITH CHECK OPTION CONSTRAINT Constraint */ + + // default action (generated by JISON mode classic/merge :: 5,VT,VA,-,-,-,-,-,-): + this.$ = yyvstack[yysp - 4]; + // END of default action (generated by JISON mode classic/merge :: 5,VT,VA,-,-,-,-,-,-) + break; + case 539: - this.$ = new yy.ColumnDef({columnid:$$[$0-2]}); yy.extend(this.$,$$[$0-1]); yy.extend(this.$,$$[$0]); -break; + /*! Production:: ColumnDef : Literal ColumnType ColumnConstraintsClause */ + + this.$ = new yy.ColumnDef({columnid:yyvstack[yysp - 2]}); yy.extend(this.$,yyvstack[yysp - 1]); yy.extend(this.$,yyvstack[yysp]); + break; + case 540: - this.$ = new yy.ColumnDef({columnid:$$[$0-1]}); yy.extend(this.$,$$[$0]); -break; -case 541: - this.$ = new yy.ColumnDef({columnid:$$[$0], dbtypeid: ''}); -break; + /*! Production:: ColumnDef : Literal ColumnConstraints */ + + this.$ = new yy.ColumnDef({columnid:yyvstack[yysp - 1]}); yy.extend(this.$,yyvstack[yysp]); + break; + +case 541: + /*! Production:: ColumnDef : Literal */ + + this.$ = new yy.ColumnDef({columnid:yyvstack[yysp], dbtypeid: ''}); + break; + case 542: - this.$ = {dbtypeid: $$[$0-5], dbsize: $$[$0-3], dbprecision: +$$[$0-1]} -break; + /*! Production:: SingularColumnType : LiteralWithSpaces LPAR NumberMax COMMA NUMBER RPAR */ + + this.$ = {dbtypeid: yyvstack[yysp - 5], dbsize: yyvstack[yysp - 3], dbprecision: +yyvstack[yysp - 1]} + break; + case 543: - this.$ = {dbtypeid: $$[$0-3], dbsize: $$[$0-1]} -break; + /*! Production:: SingularColumnType : LiteralWithSpaces LPAR NumberMax RPAR */ + + this.$ = {dbtypeid: yyvstack[yysp - 3], dbsize: yyvstack[yysp - 1]} + break; + case 544: - this.$ = {dbtypeid: $$[$0]} -break; + /*! Production:: SingularColumnType : LiteralWithSpaces */ + + this.$ = {dbtypeid: yyvstack[yysp]} + break; + case 545: - this.$ = {dbtypeid: 'ENUM', enumvalues: $$[$0-1]} -break; + /*! Production:: SingularColumnType : ENUM LPAR ValuesList RPAR */ + + this.$ = {dbtypeid: 'ENUM', enumvalues: yyvstack[yysp - 1]} + break; + case 546: - this.$ = $$[$0-1]; $$[$0-1].dbtypeid += '[' + $$[$0] + ']'; -break; -case 548: case 755: - this.$ = +$$[$0]; -break; + /*! Production:: ColumnType : SingularColumnType BRALITERAL */ + + this.$ = yyvstack[yysp - 1]; yyvstack[yysp - 1].dbtypeid += '[' + yyvstack[yysp] + ']'; + break; + +case 548: + /*! Production:: NumberMax : NUMBER */ +case 755: + /*! Production:: SharpLiteral : SHARP NUMBER */ + + this.$ = +yyvstack[yysp]; + break; + case 550: -this.$ = undefined -break; + /*! Production:: ColumnConstraintsClause : %epsilon */ + + this.$ = undefined + break; + case 552: - - yy.extend($$[$0-1],$$[$0]); this.$ = $$[$0-1]; - -break; + /*! Production:: ColumnConstraintsList : ColumnConstraintsList ColumnConstraint */ + + yy.extend(yyvstack[yysp - 1],yyvstack[yysp]); this.$ = yyvstack[yysp - 1]; + break; + case 555: -this.$ = {primarykey:true}; -break; -case 556: case 557: -this.$ = {foreignkey:{table:$$[$0-1], columnid: $$[$0]}}; -break; + /*! Production:: ColumnConstraint : PRIMARY KEY */ + + this.$ = {primarykey:true}; + break; + +case 556: + /*! Production:: ColumnConstraint : FOREIGN KEY REFERENCES Table ColumnConstraint_option */ +case 557: + /*! Production:: ColumnConstraint : REFERENCES Table ColumnConstraint_option2 */ + + this.$ = {foreignkey:{table:yyvstack[yysp - 1], columnid: yyvstack[yysp]}}; + break; + case 558: - this.$ = {identity: {value:$$[$0-3],step:$$[$0-1]}} -break; + /*! Production:: ColumnConstraint : IDENTITY LPAR NumValue COMMA NumValue RPAR */ + + this.$ = {identity: {value:yyvstack[yysp - 3],step:yyvstack[yysp - 1]}} + break; + case 559: - this.$ = {identity: {value:1,step:1}} -break; -case 560: case 562: -this.$ = {"default":$$[$0]}; -break; + /*! Production:: ColumnConstraint : IDENTITY */ + + this.$ = {identity: {value:1,step:1}} + break; + +case 560: + /*! Production:: ColumnConstraint : DEFAULT PrimitiveValue */ +case 562: + /*! Production:: ColumnConstraint : DEFAULT FuncValue */ + + this.$ = {"default":yyvstack[yysp]}; + break; + case 561: -this.$ = {"default":$$[$0-1]}; -break; + /*! Production:: ColumnConstraint : DEFAULT LPAR Expression RPAR */ + + this.$ = {"default":yyvstack[yysp - 1]}; + break; + case 563: -this.$ = {null:true}; -break; + /*! Production:: ColumnConstraint : NULL */ + + this.$ = {null:true}; + break; + case 564: -this.$ = {notnull:true}; -break; + /*! Production:: ColumnConstraint : NOT NULL */ + + this.$ = {notnull:true}; + break; + case 565: -this.$ = {check:$$[$0]}; -break; + /*! Production:: ColumnConstraint : Check */ + + this.$ = {check:yyvstack[yysp]}; + break; + case 566: -this.$ = {unique:true}; -break; + /*! Production:: ColumnConstraint : UNIQUE */ + + this.$ = {unique:true}; + break; + case 567: -this.$ = {"onupdate":$$[$0]}; -break; + /*! Production:: ColumnConstraint : ON UPDATE PrimitiveValue */ + + this.$ = {"onupdate":yyvstack[yysp]}; + break; + case 568: -this.$ = {"onupdate":$$[$0-1]}; -break; + /*! Production:: ColumnConstraint : ON UPDATE LPAR Expression RPAR */ + + this.$ = {"onupdate":yyvstack[yysp - 1]}; + break; + case 569: - this.$ = new yy.DropTable({tables:$$[$0],type:$$[$0-2]}); yy.extend(this.$, $$[$0-1]); -break; + /*! Production:: DropTable : DROP DropTable_group IfExists TablesList */ + + this.$ = new yy.DropTable({tables:yyvstack[yysp],type:yyvstack[yysp - 2]}); yy.extend(this.$, yyvstack[yysp - 1]); + break; + case 573: - this.$ = {ifexists: true}; -break; + /*! Production:: IfExists : IF EXISTS */ + + this.$ = {ifexists: true}; + break; + case 574: - this.$ = new yy.AlterTable({table:$$[$0-3], renameto: $$[$0]}); -break; + /*! Production:: AlterTable : ALTER TABLE Table RENAME TO Literal */ + + this.$ = new yy.AlterTable({table:yyvstack[yysp - 3], renameto: yyvstack[yysp]}); + break; + case 575: - this.$ = new yy.AlterTable({table:$$[$0-3], addcolumn: $$[$0]}); -break; + /*! Production:: AlterTable : ALTER TABLE Table ADD COLUMN ColumnDef */ + + this.$ = new yy.AlterTable({table:yyvstack[yysp - 3], addcolumn: yyvstack[yysp]}); + break; + case 576: - this.$ = new yy.AlterTable({table:$$[$0-3], modifycolumn: $$[$0]}); -break; + /*! Production:: AlterTable : ALTER TABLE Table MODIFY COLUMN ColumnDef */ + + this.$ = new yy.AlterTable({table:yyvstack[yysp - 3], modifycolumn: yyvstack[yysp]}); + break; + case 577: - this.$ = new yy.AlterTable({table:$$[$0-5], renamecolumn: $$[$0-2], to: $$[$0]}); -break; + /*! Production:: AlterTable : ALTER TABLE Table RENAME COLUMN Literal TO Literal */ + + this.$ = new yy.AlterTable({table:yyvstack[yysp - 5], renamecolumn: yyvstack[yysp - 2], to: yyvstack[yysp]}); + break; + case 578: - this.$ = new yy.AlterTable({table:$$[$0-3], dropcolumn: $$[$0]}); -break; + /*! Production:: AlterTable : ALTER TABLE Table DROP COLUMN Literal */ + + this.$ = new yy.AlterTable({table:yyvstack[yysp - 3], dropcolumn: yyvstack[yysp]}); + break; + case 579: - this.$ = new yy.AlterTable({table:$$[$0-2], renameto: $$[$0]}); -break; + /*! Production:: RenameTable : RENAME TABLE Table TO Literal */ + + this.$ = new yy.AlterTable({table:yyvstack[yysp - 2], renameto: yyvstack[yysp]}); + break; + case 580: - this.$ = new yy.AttachDatabase({databaseid:$$[$0], engineid:$$[$0-2].toUpperCase() }); -break; + /*! Production:: AttachDatabase : ATTACH Literal DATABASE Literal */ + + this.$ = new yy.AttachDatabase({databaseid:yyvstack[yysp], engineid:yyvstack[yysp - 2].toUpperCase() }); + break; + case 581: - this.$ = new yy.AttachDatabase({databaseid:$$[$0-3], engineid:$$[$0-5].toUpperCase(), args:$$[$0-1] }); -break; + /*! Production:: AttachDatabase : ATTACH Literal DATABASE Literal LPAR ExprList RPAR */ + + this.$ = new yy.AttachDatabase({databaseid:yyvstack[yysp - 3], engineid:yyvstack[yysp - 5].toUpperCase(), args:yyvstack[yysp - 1] }); + break; + case 582: - this.$ = new yy.AttachDatabase({databaseid:$$[$0-2], engineid:$$[$0-4].toUpperCase(), as:$$[$0] }); -break; + /*! Production:: AttachDatabase : ATTACH Literal DATABASE Literal AS Literal */ + + this.$ = new yy.AttachDatabase({databaseid:yyvstack[yysp - 2], engineid:yyvstack[yysp - 4].toUpperCase(), as:yyvstack[yysp] }); + break; + case 583: - this.$ = new yy.AttachDatabase({databaseid:$$[$0-5], engineid:$$[$0-7].toUpperCase(), as:$$[$0], args:$$[$0-3]}); -break; + /*! Production:: AttachDatabase : ATTACH Literal DATABASE Literal LPAR ExprList RPAR AS Literal */ + + this.$ = new yy.AttachDatabase({databaseid:yyvstack[yysp - 5], engineid:yyvstack[yysp - 7].toUpperCase(), as:yyvstack[yysp], args:yyvstack[yysp - 3]}); + break; + case 584: - this.$ = new yy.DetachDatabase({databaseid:$$[$0]}); -break; + /*! Production:: DetachDatabase : DETACH DATABASE Literal */ + + this.$ = new yy.DetachDatabase({databaseid:yyvstack[yysp]}); + break; + case 585: - this.$ = new yy.CreateDatabase({databaseid:$$[$0] }); yy.extend(this.$,$$[$0]); -break; + /*! Production:: CreateDatabase : CREATE DATABASE IfNotExists Literal */ + + this.$ = new yy.CreateDatabase({databaseid:yyvstack[yysp] }); yy.extend(this.$,yyvstack[yysp]); + break; + case 586: - this.$ = new yy.CreateDatabase({engineid:$$[$0-4].toUpperCase(), databaseid:$$[$0-1], as:$$[$0] }); yy.extend(this.$,$$[$0-2]); -break; + /*! Production:: CreateDatabase : CREATE Literal DATABASE IfNotExists Literal AsClause */ + + this.$ = new yy.CreateDatabase({engineid:yyvstack[yysp - 4].toUpperCase(), databaseid:yyvstack[yysp - 1], as:yyvstack[yysp] }); yy.extend(this.$,yyvstack[yysp - 2]); + break; + case 587: - this.$ = new yy.CreateDatabase({engineid:$$[$0-7].toUpperCase(), databaseid:$$[$0-4], args:$$[$0-2], as:$$[$0] }); yy.extend(this.$,$$[$0-5]); -break; + /*! Production:: CreateDatabase : CREATE Literal DATABASE IfNotExists Literal LPAR ExprList RPAR AsClause */ + + this.$ = new yy.CreateDatabase({engineid:yyvstack[yysp - 7].toUpperCase(), databaseid:yyvstack[yysp - 4], args:yyvstack[yysp - 2], as:yyvstack[yysp] }); yy.extend(this.$,yyvstack[yysp - 5]); + break; + case 588: - this.$ = new yy.CreateDatabase({engineid:$$[$0-4].toUpperCase(), - as:$$[$0], args:[$$[$0-1]] }); yy.extend(this.$,$$[$0-2]); -break; -case 589: -this.$ = undefined; -break; -case 591: case 592: - this.$ = new yy.UseDatabase({databaseid: $$[$0] }); -break; + /*! Production:: CreateDatabase : CREATE Literal DATABASE IfNotExists StringValue AsClause */ + + this.$ = new yy.CreateDatabase({engineid:yyvstack[yysp - 4].toUpperCase(), + as:yyvstack[yysp], args:[yyvstack[yysp - 1]] }); yy.extend(this.$,yyvstack[yysp - 2]); + break; + +case 591: + /*! Production:: UseDatabase : USE DATABASE Literal */ +case 592: + /*! Production:: UseDatabase : USE Literal */ + + this.$ = new yy.UseDatabase({databaseid: yyvstack[yysp] }); + break; + case 593: - this.$ = new yy.DropDatabase({databaseid: $$[$0] }); yy.extend(this.$,$$[$0-1]); -break; -case 594: case 595: - this.$ = new yy.DropDatabase({databaseid: $$[$0], engineid:$$[$0-3].toUpperCase() }); yy.extend(this.$,$$[$0-1]); -break; + /*! Production:: DropDatabase : DROP DATABASE IfExists Literal */ + + this.$ = new yy.DropDatabase({databaseid: yyvstack[yysp] }); yy.extend(this.$,yyvstack[yysp - 1]); + break; + +case 594: + /*! Production:: DropDatabase : DROP Literal DATABASE IfExists Literal */ +case 595: + /*! Production:: DropDatabase : DROP Literal DATABASE IfExists StringValue */ + + this.$ = new yy.DropDatabase({databaseid: yyvstack[yysp], engineid:yyvstack[yysp - 3].toUpperCase() }); yy.extend(this.$,yyvstack[yysp - 1]); + break; + case 596: - this.$ = new yy.CreateIndex({indexid:$$[$0-5], table:$$[$0-3], columns:$$[$0-1]}) -break; + /*! Production:: CreateIndex : CREATE INDEX Literal ON Table LPAR OrderExpressionsList RPAR */ + + this.$ = new yy.CreateIndex({indexid:yyvstack[yysp - 5], table:yyvstack[yysp - 3], columns:yyvstack[yysp - 1]}) + break; + case 597: - this.$ = new yy.CreateIndex({indexid:$$[$0-5], table:$$[$0-3], columns:$$[$0-1], unique:true}) -break; + /*! Production:: CreateIndex : CREATE UNIQUE INDEX Literal ON Table LPAR OrderExpressionsList RPAR */ + + this.$ = new yy.CreateIndex({indexid:yyvstack[yysp - 5], table:yyvstack[yysp - 3], columns:yyvstack[yysp - 1], unique:true}) + break; + case 598: - this.$ = new yy.DropIndex({indexid:$$[$0]}); -break; + /*! Production:: DropIndex : DROP INDEX Literal */ + + this.$ = new yy.DropIndex({indexid:yyvstack[yysp]}); + break; + case 599: - this.$ = new yy.ShowDatabases(); -break; + /*! Production:: ShowDatabases : SHOW DATABASE */ + + this.$ = new yy.ShowDatabases(); + break; + case 600: - this.$ = new yy.ShowDatabases({like:$$[$0]}); -break; + /*! Production:: ShowDatabases : SHOW DATABASE LIKE StringValue */ + + this.$ = new yy.ShowDatabases({like:yyvstack[yysp]}); + break; + case 601: - this.$ = new yy.ShowDatabases({engineid:$$[$0-1].toUpperCase() }); -break; + /*! Production:: ShowDatabases : SHOW Literal DATABASE */ + + this.$ = new yy.ShowDatabases({engineid:yyvstack[yysp - 1].toUpperCase() }); + break; + case 602: - this.$ = new yy.ShowDatabases({engineid:$$[$0-3].toUpperCase() , like:$$[$0]}); -break; + /*! Production:: ShowDatabases : SHOW Literal DATABASE LIKE StringValue */ + + this.$ = new yy.ShowDatabases({engineid:yyvstack[yysp - 3].toUpperCase() , like:yyvstack[yysp]}); + break; + case 603: - this.$ = new yy.ShowTables(); -break; + /*! Production:: ShowTables : SHOW TABLE */ + + this.$ = new yy.ShowTables(); + break; + case 604: - this.$ = new yy.ShowTables({like:$$[$0]}); -break; + /*! Production:: ShowTables : SHOW TABLE LIKE StringValue */ + + this.$ = new yy.ShowTables({like:yyvstack[yysp]}); + break; + case 605: - this.$ = new yy.ShowTables({databaseid: $$[$0]}); -break; + /*! Production:: ShowTables : SHOW TABLE FROM Literal */ + + this.$ = new yy.ShowTables({databaseid: yyvstack[yysp]}); + break; + case 606: - this.$ = new yy.ShowTables({like:$$[$0], databaseid: $$[$0-2]}); -break; + /*! Production:: ShowTables : SHOW TABLE FROM Literal LIKE StringValue */ + + this.$ = new yy.ShowTables({like:yyvstack[yysp], databaseid: yyvstack[yysp - 2]}); + break; + case 607: - this.$ = new yy.ShowColumns({table: $$[$0]}); -break; + /*! Production:: ShowColumns : SHOW COLUMN FROM Table */ + + this.$ = new yy.ShowColumns({table: yyvstack[yysp]}); + break; + case 608: - this.$ = new yy.ShowColumns({table: $$[$0-2], databaseid:$$[$0]}); -break; + /*! Production:: ShowColumns : SHOW COLUMN FROM Table FROM Literal */ + + this.$ = new yy.ShowColumns({table: yyvstack[yysp - 2], databaseid:yyvstack[yysp]}); + break; + case 609: - this.$ = new yy.ShowIndex({table: $$[$0]}); -break; + /*! Production:: ShowIndex : SHOW INDEX FROM Table */ + + this.$ = new yy.ShowIndex({table: yyvstack[yysp]}); + break; + case 610: - this.$ = new yy.ShowIndex({table: $$[$0-2], databaseid: $$[$0]}); -break; + /*! Production:: ShowIndex : SHOW INDEX FROM Table FROM Literal */ + + this.$ = new yy.ShowIndex({table: yyvstack[yysp - 2], databaseid: yyvstack[yysp]}); + break; + case 611: - this.$ = new yy.ShowCreateTable({table: $$[$0]}); -break; + /*! Production:: ShowCreateTable : SHOW CREATE TABLE Table */ + + this.$ = new yy.ShowCreateTable({table: yyvstack[yysp]}); + break; + case 612: - this.$ = new yy.ShowCreateTable({table: $$[$0-2], databaseid:$$[$0]}); -break; + /*! Production:: ShowCreateTable : SHOW CREATE TABLE Table FROM Literal */ + + this.$ = new yy.ShowCreateTable({table: yyvstack[yysp - 2], databaseid:yyvstack[yysp]}); + break; + case 613: - - this.$ = new yy.CreateTable({table:$$[$0-6],view:true,select:$$[$0-1],viewcolumns:$$[$0-4]}); - yy.extend(this.$,$$[$0-9]); - yy.extend(this.$,$$[$0-7]); - -break; + /*! Production:: CreateView : CREATE TemporaryClause VIEW IfNotExists Table LPAR ColumnsList RPAR AS Select CreateView_option */ + + this.$ = new yy.CreateTable({table:yyvstack[yysp - 6],view:true,select:yyvstack[yysp - 1],viewcolumns:yyvstack[yysp - 4]}); + yy.extend(this.$,yyvstack[yysp - 9]); + yy.extend(this.$,yyvstack[yysp - 7]); + break; + case 614: - - this.$ = new yy.CreateTable({table:$$[$0-3],view:true,select:$$[$0-1]}); - yy.extend(this.$,$$[$0-6]); - yy.extend(this.$,$$[$0-4]); - -break; + /*! Production:: CreateView : CREATE TemporaryClause VIEW IfNotExists Table AS Select CreateView_option2 */ + + this.$ = new yy.CreateTable({table:yyvstack[yysp - 3],view:true,select:yyvstack[yysp - 1]}); + yy.extend(this.$,yyvstack[yysp - 6]); + yy.extend(this.$,yyvstack[yysp - 4]); + break; + case 618: - this.$ = new yy.DropTable({tables:$$[$0], view:true}); yy.extend(this.$, $$[$0-1]); -break; -case 619: case 765: - this.$ = new yy.ExpressionStatement({expression:$$[$0]}); -break; + /*! Production:: DropView : DROP VIEW IfExists TablesList */ + + this.$ = new yy.DropTable({tables:yyvstack[yysp], view:true}); yy.extend(this.$, yyvstack[yysp - 1]); + break; + +case 619: + /*! Production:: ExpressionStatement : EQ Expression */ +case 765: + /*! Production:: Call : CALL FuncValue */ + + this.$ = new yy.ExpressionStatement({expression:yyvstack[yysp]}); + break; + case 620: - this.$ = new yy.Source({url:$$[$0].value}); -break; + /*! Production:: Source : SOURCE StringValue */ + + this.$ = new yy.Source({url:yyvstack[yysp].value}); + break; + case 621: - this.$ = new yy.Assert({value:$$[$0]}); -break; + /*! Production:: Assert : ASSERT Json */ + + this.$ = new yy.Assert({value:yyvstack[yysp]}); + break; + case 622: - this.$ = new yy.Assert({value:$$[$0].value}); -break; + /*! Production:: Assert : ASSERT PrimitiveValue */ + + this.$ = new yy.Assert({value:yyvstack[yysp].value}); + break; + case 623: - this.$ = new yy.Assert({value:$$[$0], message:$$[$0-2]}); -break; -case 625: case 636: case 638: - this.$ = $$[$0].value; -break; -case 626: case 634: - this.$ = +$$[$0].value; -break; + /*! Production:: Assert : ASSERT STRING COMMA Json */ + + this.$ = new yy.Assert({value:yyvstack[yysp], message:yyvstack[yysp - 2]}); + break; + +case 625: + /*! Production:: Json : AT StringValue */ +case 636: + /*! Production:: JsonPrimitiveValue : LogicValue */ +case 638: + /*! Production:: JsonPrimitiveValue : NullValue */ + + this.$ = yyvstack[yysp].value; + break; + +case 626: + /*! Production:: Json : AT NumValue */ +case 634: + /*! Production:: JsonPrimitiveValue : NumValue */ + + this.$ = +yyvstack[yysp].value; + break; + case 627: - this.$ = (!!$$[$0].value); -break; + /*! Production:: Json : AT LogicValue */ + + this.$ = (!!yyvstack[yysp].value); + break; + case 635: - this.$ = ""+$$[$0].value; -break; + /*! Production:: JsonPrimitiveValue : StringValue */ + + this.$ = ""+yyvstack[yysp].value; + break; + case 644: - this.$ = {}; -break; + /*! Production:: JsonObject : LCUR RCUR */ + + this.$ = {}; + break; + case 647: - this.$ = []; -break; + /*! Production:: JsonArray : RBRA */ +case 1052: + /*! Production:: Select_repetition : %epsilon */ +case 1072: + /*! Production:: SearchSelector_repetition : %epsilon */ +case 1074: + /*! Production:: SearchSelector_repetition2 : %epsilon */ +case 1076: + /*! Production:: SearchSelector_repetition3 : %epsilon */ +case 1080: + /*! Production:: SearchSelector_repetition4 : %epsilon */ +case 1082: + /*! Production:: SearchSelector_repetition5 : %epsilon */ +case 1084: + /*! Production:: SearchSelector_repetition6 : %epsilon */ +case 1086: + /*! Production:: SearchSelector_repetition7 : %epsilon */ +case 1088: + /*! Production:: SearchSelectorList_repetition : %epsilon */ +case 1090: + /*! Production:: SearchSelectorList_repetition2 : %epsilon */ + + this.$ = []; + break; + case 648: - yy.extend($$[$0-2],$$[$0]); this.$ = $$[$0-2]; -break; + /*! Production:: JsonPropertiesList : JsonPropertiesList COMMA JsonProperty */ + + yy.extend(yyvstack[yysp - 2],yyvstack[yysp]); this.$ = yyvstack[yysp - 2]; + break; + case 650: - this.$ = {}; this.$[$$[$0-2].substr(1,$$[$0-2].length-2)] = $$[$0]; -break; -case 651: case 652: - this.$ = {}; this.$[$$[$0-2]] = $$[$0]; -break; + /*! Production:: JsonProperty : STRING COLON JsonValue */ + + this.$ = {}; this.$[yyvstack[yysp - 2].substr(1,yyvstack[yysp - 2].length-2)] = yyvstack[yysp]; + break; + +case 651: + /*! Production:: JsonProperty : NUMBER COLON JsonValue */ +case 652: + /*! Production:: JsonProperty : Literal COLON JsonValue */ + + this.$ = {}; this.$[yyvstack[yysp - 2]] = yyvstack[yysp]; + break; + case 655: - this.$ = new yy.SetVariable({variable:$$[$0-2].toLowerCase(), value:$$[$0]}); -break; + /*! Production:: SetVariable : SET Literal EQ OnOff */ + + this.$ = new yy.SetVariable({variable:yyvstack[yysp - 2].toLowerCase(), value:yyvstack[yysp]}); + break; + case 656: - this.$ = new yy.SetVariable({variable:$$[$0-1].toLowerCase(), value:$$[$0]}); -break; + /*! Production:: SetVariable : SET Literal OnOff */ + + this.$ = new yy.SetVariable({variable:yyvstack[yysp - 1].toLowerCase(), value:yyvstack[yysp]}); + break; + case 657: - this.$ = new yy.SetVariable({variable:$$[$0-2], expression:$$[$0]}); -break; + /*! Production:: SetVariable : SET Literal EQ Expression */ + + this.$ = new yy.SetVariable({variable:yyvstack[yysp - 2], expression:yyvstack[yysp]}); + break; + case 658: - this.$ = new yy.SetVariable({variable:$$[$0-3], props: $$[$0-2], expression:$$[$0]}); -break; + /*! Production:: SetVariable : SET Literal SetPropsList EQ Expression */ + + this.$ = new yy.SetVariable({variable:yyvstack[yysp - 3], props: yyvstack[yysp - 2], expression:yyvstack[yysp]}); + break; + case 659: - this.$ = new yy.SetVariable({variable:$$[$0-2], expression:$$[$0], method:$$[$0-3]}); -break; + /*! Production:: SetVariable : SET AtDollar Literal EQ Expression */ + + this.$ = new yy.SetVariable({variable:yyvstack[yysp - 2], expression:yyvstack[yysp], method:yyvstack[yysp - 3]}); + break; + case 660: - this.$ = new yy.SetVariable({variable:$$[$0-3], props: $$[$0-2], expression:$$[$0], method:$$[$0-4]}); -break; + /*! Production:: SetVariable : SET AtDollar Literal SetPropsList EQ Expression */ + + this.$ = new yy.SetVariable({variable:yyvstack[yysp - 3], props: yyvstack[yysp - 2], expression:yyvstack[yysp], method:yyvstack[yysp - 4]}); + break; + case 661: -this.$ = '@'; -break; + /*! Production:: AtDollar : AT */ + + this.$ = '@'; + break; + case 662: -this.$ = '$'; -break; + /*! Production:: AtDollar : DOLLAR */ + + this.$ = '$'; + break; + case 668: - this.$ = true; -break; + /*! Production:: OnOff : ON */ + + this.$ = true; + break; + case 669: - this.$ = false; -break; + /*! Production:: OnOff : OFF */ + + this.$ = false; + break; + case 670: - this.$ = new yy.CommitTransaction(); -break; + /*! Production:: CommitTransaction : COMMIT TRANSACTION */ + + this.$ = new yy.CommitTransaction(); + break; + case 671: - this.$ = new yy.RollbackTransaction(); -break; + /*! Production:: RollbackTransaction : ROLLBACK TRANSACTION */ + + this.$ = new yy.RollbackTransaction(); + break; + case 672: - this.$ = new yy.BeginTransaction(); -break; + /*! Production:: BeginTransaction : BEGIN TRANSACTION */ + + this.$ = new yy.BeginTransaction(); + break; + case 673: - this.$ = new yy.If({expression:$$[$0-2],thenstat:$$[$0-1], elsestat:$$[$0]}); - if($$[$0-1].exists) this.$.exists = $$[$0-1].exists; - if($$[$0-1].queries) this.$.queries = $$[$0-1].queries; - -break; + /*! Production:: If : IF Expression AStatement ElseStatement */ + + this.$ = new yy.If({expression:yyvstack[yysp - 2],thenstat:yyvstack[yysp - 1], elsestat:yyvstack[yysp]}); + if(yyvstack[yysp - 1].exists) this.$.exists = yyvstack[yysp - 1].exists; + if(yyvstack[yysp - 1].queries) this.$.queries = yyvstack[yysp - 1].queries; + break; + case 674: - - this.$ = new yy.If({expression:$$[$0-1],thenstat:$$[$0]}); - if($$[$0].exists) this.$.exists = $$[$0].exists; - if($$[$0].queries) this.$.queries = $$[$0].queries; - -break; -case 675: -this.$ = $$[$0]; -break; + /*! Production:: If : IF Expression AStatement */ + + this.$ = new yy.If({expression:yyvstack[yysp - 1],thenstat:yyvstack[yysp]}); + if(yyvstack[yysp].exists) this.$.exists = yyvstack[yysp].exists; + if(yyvstack[yysp].queries) this.$.queries = yyvstack[yysp].queries; + break; + case 676: - this.$ = new yy.While({expression:$$[$0-1],loopstat:$$[$0]}); - if($$[$0].exists) this.$.exists = $$[$0].exists; - if($$[$0].queries) this.$.queries = $$[$0].queries; - -break; + /*! Production:: While : WHILE Expression AStatement */ + + this.$ = new yy.While({expression:yyvstack[yysp - 1],loopstat:yyvstack[yysp]}); + if(yyvstack[yysp].exists) this.$.exists = yyvstack[yysp].exists; + if(yyvstack[yysp].queries) this.$.queries = yyvstack[yysp].queries; + break; + case 677: - this.$ = new yy.Continue(); -break; + /*! Production:: Continue : CONTINUE */ + + this.$ = new yy.Continue(); + break; + case 678: - this.$ = new yy.Break(); -break; + /*! Production:: Break : BREAK */ + + this.$ = new yy.Break(); + break; + case 679: - this.$ = new yy.BeginEnd({statements:$$[$0-1]}); -break; + /*! Production:: BeginEnd : BEGIN Statements END */ + + this.$ = new yy.BeginEnd({statements:yyvstack[yysp - 1]}); + break; + case 680: - this.$ = new yy.Print({exprs:$$[$0]}); -break; + /*! Production:: Print : PRINT ExprList */ + + this.$ = new yy.Print({exprs:yyvstack[yysp]}); + break; + case 681: - this.$ = new yy.Print({select:$$[$0]}); -break; + /*! Production:: Print : PRINT Select */ + + this.$ = new yy.Print({select:yyvstack[yysp]}); + break; + case 682: - this.$ = new yy.Require({paths:$$[$0]}); -break; + /*! Production:: Require : REQUIRE StringValuesList */ + + this.$ = new yy.Require({paths:yyvstack[yysp]}); + break; + case 683: - this.$ = new yy.Require({plugins:$$[$0]}); -break; -case 684: case 685: -this.$ = $$[$0].toUpperCase(); -break; + /*! Production:: Require : REQUIRE PluginsList */ + + this.$ = new yy.Require({plugins:yyvstack[yysp]}); + break; + +case 684: + /*! Production:: Plugin : ECHO */ +case 685: + /*! Production:: Plugin : Literal */ + + this.$ = yyvstack[yysp].toUpperCase(); + break; + case 686: - this.$ = new yy.Echo({expr:$$[$0]}); -break; + /*! Production:: Echo : ECHO Expression */ + + this.$ = new yy.Echo({expr:yyvstack[yysp]}); + break; + case 691: - this.$ = new yy.Declare({declares:$$[$0]}); -break; + /*! Production:: Declare : DECLARE DeclaresList */ + + this.$ = new yy.Declare({declares:yyvstack[yysp]}); + break; + case 694: - this.$ = {variable: $$[$0-1]}; yy.extend(this.$,$$[$0]); -break; + /*! Production:: DeclareItem : AT Literal ColumnType */ + + this.$ = {variable: yyvstack[yysp - 1]}; yy.extend(this.$,yyvstack[yysp]); + break; + case 695: - this.$ = {variable: $$[$0-2]}; yy.extend(this.$,$$[$0]); -break; + /*! Production:: DeclareItem : AT Literal AS ColumnType */ + + this.$ = {variable: yyvstack[yysp - 2]}; yy.extend(this.$,yyvstack[yysp]); + break; + case 696: - this.$ = {variable: $$[$0-3], expression:$$[$0]}; yy.extend(this.$,$$[$0-2]); -break; + /*! Production:: DeclareItem : AT Literal ColumnType EQ Expression */ + + this.$ = {variable: yyvstack[yysp - 3], expression:yyvstack[yysp]}; yy.extend(this.$,yyvstack[yysp - 2]); + break; + case 697: - this.$ = {variable: $$[$0-4], expression:$$[$0]}; yy.extend(this.$,$$[$0-2]); -break; + /*! Production:: DeclareItem : AT Literal AS ColumnType EQ Expression */ + + this.$ = {variable: yyvstack[yysp - 4], expression:yyvstack[yysp]}; yy.extend(this.$,yyvstack[yysp - 2]); + break; + case 698: - this.$ = new yy.TruncateTable({table:$$[$0]}); -break; + /*! Production:: TruncateTable : TRUNCATE TABLE Table */ + + this.$ = new yy.TruncateTable({table:yyvstack[yysp]}); + break; + case 699: - - this.$ = new yy.Merge(); yy.extend(this.$,$$[$0-4]); yy.extend(this.$,$$[$0-3]); - yy.extend(this.$,$$[$0-2]); - yy.extend(this.$,{matches:$$[$0-1]});yy.extend(this.$,$$[$0]); - -break; -case 700: case 701: - this.$ = {into: $$[$0]}; -break; + /*! Production:: Merge : MERGE MergeInto MergeUsing MergeOn MergeMatchedList OutputClause */ + + this.$ = new yy.Merge(); yy.extend(this.$,yyvstack[yysp - 4]); yy.extend(this.$,yyvstack[yysp - 3]); + yy.extend(this.$,yyvstack[yysp - 2]); + yy.extend(this.$,{matches:yyvstack[yysp - 1]});yy.extend(this.$,yyvstack[yysp]); + break; + +case 700: + /*! Production:: MergeInto : FromTable */ +case 701: + /*! Production:: MergeInto : INTO FromTable */ + + this.$ = {into: yyvstack[yysp]}; + break; + case 703: - this.$ = {on:$$[$0]}; -break; + /*! Production:: MergeOn : ON Expression */ + + this.$ = {on:yyvstack[yysp]}; + break; + case 708: - this.$ = {matched:true, action:$$[$0]} -break; + /*! Production:: MergeMatched : WHEN MATCHED THEN MergeMatchedAction */ + + this.$ = {matched:true, action:yyvstack[yysp]} + break; + case 709: - this.$ = {matched:true, expr: $$[$0-2], action:$$[$0]} -break; + /*! Production:: MergeMatched : WHEN MATCHED AND Expression THEN MergeMatchedAction */ + + this.$ = {matched:true, expr: yyvstack[yysp - 2], action:yyvstack[yysp]} + break; + case 710: - this.$ = {delete:true}; -break; + /*! Production:: MergeMatchedAction : DELETE */ + + this.$ = {delete:true}; + break; + case 711: - this.$ = {update:$$[$0]}; -break; -case 712: case 713: - this.$ = {matched:false, bytarget: true, action:$$[$0]} -break; -case 714: case 715: - this.$ = {matched:false, bytarget: true, expr:$$[$0-2], action:$$[$0]} -break; + /*! Production:: MergeMatchedAction : UPDATE SET SetColumnsList */ + + this.$ = {update:yyvstack[yysp]}; + break; + +case 712: + /*! Production:: MergeNotMatched : WHEN NOT MATCHED THEN MergeNotMatchedAction */ +case 713: + /*! Production:: MergeNotMatched : WHEN NOT MATCHED BY TARGET THEN MergeNotMatchedAction */ + + this.$ = {matched:false, bytarget: true, action:yyvstack[yysp]} + break; + +case 714: + /*! Production:: MergeNotMatched : WHEN NOT MATCHED AND Expression THEN MergeNotMatchedAction */ +case 715: + /*! Production:: MergeNotMatched : WHEN NOT MATCHED BY TARGET AND Expression THEN MergeNotMatchedAction */ + + this.$ = {matched:false, bytarget: true, expr:yyvstack[yysp - 2], action:yyvstack[yysp]} + break; + case 716: - this.$ = {matched:false, bysource: true, action:$$[$0]} -break; + /*! Production:: MergeNotMatched : WHEN NOT MATCHED BY SOURCE THEN MergeNotMatchedAction */ + + this.$ = {matched:false, bysource: true, action:yyvstack[yysp]} + break; + case 717: - this.$ = {matched:false, bysource: true, expr:$$[$0-2], action:$$[$0]} -break; + /*! Production:: MergeNotMatched : WHEN NOT MATCHED BY SOURCE AND Expression THEN MergeMatchedAction */ + + this.$ = {matched:false, bysource: true, expr:yyvstack[yysp - 2], action:yyvstack[yysp]} + break; + case 718: - this.$ = {insert:true, values:$$[$0]}; -break; + /*! Production:: MergeNotMatchedAction : INSERT VALUES ValuesListsList */ + + this.$ = {insert:true, values:yyvstack[yysp]}; + break; + case 719: - this.$ = {insert:true, values:$$[$0], columns:$$[$0-3]}; -break; + /*! Production:: MergeNotMatchedAction : INSERT LPAR ColumnsList RPAR VALUES ValuesListsList */ + + this.$ = {insert:true, values:yyvstack[yysp], columns:yyvstack[yysp - 3]}; + break; + case 720: - this.$ = {insert:true, defaultvalues:true}; -break; + /*! Production:: MergeNotMatchedAction : INSERT DEFAULT VALUES */ + + this.$ = {insert:true, defaultvalues:true}; + break; + case 721: - this.$ = {insert:true, defaultvalues:true, columns:$$[$0-3]}; -break; + /*! Production:: MergeNotMatchedAction : INSERT LPAR ColumnsList RPAR DEFAULT VALUES */ + + this.$ = {insert:true, defaultvalues:true, columns:yyvstack[yysp - 3]}; + break; + case 723: - this.$ = {output:{columns:$$[$0]}} -break; + /*! Production:: OutputClause : OUTPUT ResultColumns */ + + this.$ = {output:{columns:yyvstack[yysp]}} + break; + case 724: - this.$ = {output:{columns:$$[$0-3], intovar: $$[$0], method:$$[$0-1]}} -break; + /*! Production:: OutputClause : OUTPUT ResultColumns INTO AtDollar Literal */ + + this.$ = {output:{columns:yyvstack[yysp - 3], intovar: yyvstack[yysp], method:yyvstack[yysp - 1]}} + break; + case 725: - this.$ = {output:{columns:$$[$0-2], intotable: $$[$0]}} -break; + /*! Production:: OutputClause : OUTPUT ResultColumns INTO Table */ + + this.$ = {output:{columns:yyvstack[yysp - 2], intotable: yyvstack[yysp]}} + break; + case 726: - this.$ = {output:{columns:$$[$0-5], intotable: $$[$0-3], intocolumns:$$[$0-1]}} -break; + /*! Production:: OutputClause : OUTPUT ResultColumns INTO Table LPAR ColumnsList RPAR */ + + this.$ = {output:{columns:yyvstack[yysp - 5], intotable: yyvstack[yysp - 3], intocolumns:yyvstack[yysp - 1]}} + break; + case 727: - - this.$ = new yy.CreateVertex({class:$$[$0-3],sharp:$$[$0-2], name:$$[$0-1]}); - yy.extend(this.$,$$[$0]); - -break; -case 730: - this.$ = {sets:$$[$0]}; -break; + /*! Production:: CreateVertex : CREATE VERTEX CreateVertex_option CreateVertex_option2 CreateVertex_option3 CreateVertexSet */ + + this.$ = new yy.CreateVertex({class:yyvstack[yysp - 3],sharp:yyvstack[yysp - 2], name:yyvstack[yysp - 1]}); + yy.extend(this.$,yyvstack[yysp]); + break; + +case 730: + /*! Production:: CreateVertexSet : SET SetColumnsList */ + + this.$ = {sets:yyvstack[yysp]}; + break; + case 731: - this.$ = {content:$$[$0]}; -break; + /*! Production:: CreateVertexSet : CONTENT ExprList */ + + this.$ = {content:yyvstack[yysp]}; + break; + case 732: - this.$ = {select:$$[$0]}; -break; + /*! Production:: CreateVertexSet : Select */ + + this.$ = {select:yyvstack[yysp]}; + break; + case 733: - - this.$ = new yy.CreateEdge({from:$$[$0-3],to:$$[$0-1],name:$$[$0-5]}); - yy.extend(this.$,$$[$0]); - -break; + /*! Production:: CreateEdge : CREATE EDGE CreateEdge_option FROM Expression TO Expression CreateVertexSet */ + + this.$ = new yy.CreateEdge({from:yyvstack[yysp - 3],to:yyvstack[yysp - 1],name:yyvstack[yysp - 5]}); + yy.extend(this.$,yyvstack[yysp]); + break; + case 734: - this.$ = new yy.CreateGraph({graph:$$[$0]}); -break; + /*! Production:: CreateGraph : CREATE GRAPH GraphList */ + + this.$ = new yy.CreateGraph({graph:yyvstack[yysp]}); + break; + case 735: - this.$ = new yy.CreateGraph({from:$$[$0]}); -break; + /*! Production:: CreateGraph : CREATE GRAPH FROM Expression */ + + this.$ = new yy.CreateGraph({from:yyvstack[yysp]}); + break; + case 738: - - this.$ = $$[$0-2]; - if($$[$0-1]) this.$.json = new yy.Json({value:$$[$0-1]}); - if($$[$0]) this.$.as = $$[$0]; - -break; + /*! Production:: GraphVertexEdge : GraphElement GraphVertexEdge_option GraphVertexEdge_option2 */ + + this.$ = yyvstack[yysp - 2]; + if(yyvstack[yysp - 1]) this.$.json = new yy.Json({value:yyvstack[yysp - 1]}); + if(yyvstack[yysp]) this.$.as = yyvstack[yysp]; + break; + case 739: - - this.$ = {source:$$[$0-6], target: $$[$0]}; - if($$[$0-3]) this.$.json = new yy.Json({value:$$[$0-3]}); - if($$[$0-2]) this.$.as = $$[$0-2]; - yy.extend(this.$,$$[$0-4]); - -break; + /*! Production:: GraphVertexEdge : GraphElementVar GT GraphElement GraphVertexEdge_option3 GraphVertexEdge_option4 GT GraphElementVar */ + + this.$ = {source:yyvstack[yysp - 6], target: yyvstack[yysp]}; + if(yyvstack[yysp - 3]) this.$.json = new yy.Json({value:yyvstack[yysp - 3]}); + if(yyvstack[yysp - 2]) this.$.as = yyvstack[yysp - 2]; + yy.extend(this.$,yyvstack[yysp - 4]); + break; + case 740: - - this.$ = {source:$$[$0-5], target: $$[$0]}; - if($$[$0-2]) this.$.json = new yy.Json({value:$$[$0-3]}); - if($$[$0-1]) this.$.as = $$[$0-2]; - -break; + /*! Production:: GraphVertexEdge : GraphElementVar GT Json GraphVertexEdge_option5 GT GraphElementVar */ + + this.$ = {source:yyvstack[yysp - 5], target: yyvstack[yysp]}; + if(yyvstack[yysp - 2]) this.$.json = new yy.Json({value:yyvstack[yysp - 3]}); + if(yyvstack[yysp - 1]) this.$.as = yyvstack[yysp - 2]; + break; + case 741: - - this.$ = {source:$$[$0-2], target: $$[$0]}; - -break; + /*! Production:: GraphVertexEdge : GraphElementVar GTGT GraphElementVar */ + + this.$ = {source:yyvstack[yysp - 2], target: yyvstack[yysp]}; + break; + +case 742: + /*! Production:: GraphVertexEdge : Literal LPAR GraphList RPAR */ + + // default action (generated by JISON mode classic/merge :: 4,VT,VA,-,-,-,-,-,-): + this.$ = yyvstack[yysp - 3]; + // END of default action (generated by JISON mode classic/merge :: 4,VT,VA,-,-,-,-,-,-) + break; + case 745: - this.$ = {vars:$$[$0], method:$$[$0-1]}; -break; -case 748: case 749: - - var s3 = $$[$0-1]; - this.$ = {prop:$$[$0-3], sharp:$$[$0-2], name:(typeof s3 == 'undefined')?undefined:s3.substr(1,s3.length-2), class:$$[$0]}; - -break; + /*! Production:: GraphVar : AtDollar Literal */ + + this.$ = {vars:yyvstack[yysp], method:yyvstack[yysp - 1]}; + break; + +case 749: + /*! Production:: GraphElement : Literal GraphElement_option GraphElement_option2 GraphElement_option3 */ + + var s3 = yyvstack[yysp - 1]; + this.$ = {prop:yyvstack[yysp - 3], sharp:yyvstack[yysp - 2], name:(typeof s3 == 'undefined')?undefined:s3.substr(1,s3.length-2), class:yyvstack[yysp]}; + break; + case 750: - - var s2 = $$[$0-1]; - this.$ = {sharp:$$[$0-2], name:(typeof s2 == 'undefined')?undefined:s2.substr(1,s2.length-2), class:$$[$0]}; - -break; + /*! Production:: GraphElement : SharpLiteral GraphElement_option4 GraphElement_option5 */ + + var s2 = yyvstack[yysp - 1]; + this.$ = {sharp:yyvstack[yysp - 2], name:(typeof s2 == 'undefined')?undefined:s2.substr(1,s2.length-2), class:yyvstack[yysp]}; + break; + case 751: - - var s1 = $$[$0-1]; - this.$ = {name:(typeof s1 == 'undefined')?undefined:s1.substr(1,s1.length-2), class:$$[$0]}; - -break; + /*! Production:: GraphElement : STRING GraphElement_option6 */ + + var s1 = yyvstack[yysp - 1]; + this.$ = {name:(typeof s1 == 'undefined')?undefined:s1.substr(1,s1.length-2), class:yyvstack[yysp]}; + break; + case 752: - - this.$ = {class:$$[$0]}; - -break; + /*! Production:: GraphElement : ColonLiteral */ + + this.$ = {class:yyvstack[yysp]}; + break; + case 758: - this.$ = new yy.AddRule({left:$$[$0-2], right:$$[$0]}); -break; + /*! Production:: AddRule : Term COLONDASH TermsList */ + + this.$ = new yy.AddRule({left:yyvstack[yysp - 2], right:yyvstack[yysp]}); + break; + case 759: - this.$ = new yy.AddRule({right:$$[$0]}); -break; + /*! Production:: AddRule : COLONDASH TermsList */ + + this.$ = new yy.AddRule({right:yyvstack[yysp]}); + break; + case 762: - this.$ = new yy.Term({termid:$$[$0]}); -break; + /*! Production:: Term : Literal */ + + this.$ = new yy.Term({termid:yyvstack[yysp]}); + break; + case 763: - this.$ = new yy.Term({termid:$$[$0-3],args:$$[$0-1]}); -break; + /*! Production:: Term : Literal LPAR TermsList RPAR */ + + this.$ = new yy.Term({termid:yyvstack[yysp - 3],args:yyvstack[yysp - 1]}); + break; + case 766: - - this.$ = new yy.CreateTrigger({trigger:$$[$0-6], when:$$[$0-5], action:$$[$0-4], table:$$[$0-2], statement:$$[$0]}); - if($$[$0].exists) this.$.exists = $$[$0].exists; - if($$[$0].queries) this.$.queries = $$[$0].queries; - -break; + /*! Production:: CreateTrigger : CREATE TRIGGER Literal BeforeAfter InsertDeleteUpdate ON Table CreateTrigger_option AStatement */ + + this.$ = new yy.CreateTrigger({trigger:yyvstack[yysp - 6], when:yyvstack[yysp - 5], action:yyvstack[yysp - 4], table:yyvstack[yysp - 2], statement:yyvstack[yysp]}); + if(yyvstack[yysp].exists) this.$.exists = yyvstack[yysp].exists; + if(yyvstack[yysp].queries) this.$.queries = yyvstack[yysp].queries; + break; + case 767: - - this.$ = new yy.CreateTrigger({trigger:$$[$0-5], when:$$[$0-4], action:$$[$0-3], table:$$[$0-1], funcid:$$[$0]}); - -break; + /*! Production:: CreateTrigger : CREATE TRIGGER Literal BeforeAfter InsertDeleteUpdate ON Table Literal */ + + this.$ = new yy.CreateTrigger({trigger:yyvstack[yysp - 5], when:yyvstack[yysp - 4], action:yyvstack[yysp - 3], table:yyvstack[yysp - 1], funcid:yyvstack[yysp]}); + break; + case 768: - - this.$ = new yy.CreateTrigger({trigger:$$[$0-6], when:$$[$0-4], action:$$[$0-3], table:$$[$0-5], statement:$$[$0]}); - if($$[$0].exists) this.$.exists = $$[$0].exists; - if($$[$0].queries) this.$.queries = $$[$0].queries; - -break; -case 769: case 770: case 772: - this.$ = 'AFTER'; -break; + /*! Production:: CreateTrigger : CREATE TRIGGER Literal ON Table BeforeAfter InsertDeleteUpdate CreateTrigger_option2 AStatement */ + + this.$ = new yy.CreateTrigger({trigger:yyvstack[yysp - 6], when:yyvstack[yysp - 4], action:yyvstack[yysp - 3], table:yyvstack[yysp - 5], statement:yyvstack[yysp]}); + if(yyvstack[yysp].exists) this.$.exists = yyvstack[yysp].exists; + if(yyvstack[yysp].queries) this.$.queries = yyvstack[yysp].queries; + break; + +case 769: + /*! Production:: BeforeAfter : %epsilon */ +case 770: + /*! Production:: BeforeAfter : FOR */ +case 772: + /*! Production:: BeforeAfter : AFTER */ + + this.$ = 'AFTER'; + break; + case 771: - this.$ = 'BEFORE'; -break; + /*! Production:: BeforeAfter : BEFORE */ + + this.$ = 'BEFORE'; + break; + case 773: - this.$ = 'INSTEADOF'; -break; + /*! Production:: BeforeAfter : INSTEAD OF */ + + this.$ = 'INSTEADOF'; + break; + case 774: - this.$ = 'INSERT'; -break; + /*! Production:: InsertDeleteUpdate : INSERT */ + + this.$ = 'INSERT'; + break; + case 775: - this.$ = 'DELETE'; -break; + /*! Production:: InsertDeleteUpdate : DELETE */ + + this.$ = 'DELETE'; + break; + case 776: - this.$ = 'UPDATE'; -break; + /*! Production:: InsertDeleteUpdate : UPDATE */ + + this.$ = 'UPDATE'; + break; + case 777: - this.$ = new yy.DropTrigger({trigger:$$[$0]}); -break; + /*! Production:: DropTrigger : DROP TRIGGER Literal */ + + this.$ = new yy.DropTrigger({trigger:yyvstack[yysp]}); + break; + case 778: - this.$ = new yy.Reindex({indexid:$$[$0]}); -break; -case 1052: case 1072: case 1074: case 1076: case 1080: case 1082: case 1084: case 1086: case 1088: case 1090: -this.$ = []; -break; -case 1053: case 1067: case 1069: case 1073: case 1075: case 1077: case 1081: case 1083: case 1085: case 1087: case 1089: case 1091: -$$[$0-1].push($$[$0]); -break; -case 1066: case 1068: -this.$ = [$$[$0]]; -break; + /*! Production:: Reindex : REINDEX Literal */ + + this.$ = new yy.Reindex({indexid:yyvstack[yysp]}); + break; + +case 1053: + /*! Production:: Select_repetition : Select_repetition SearchSelector */ +case 1067: + /*! Production:: SearchSelector_repetition_plus : SearchSelector_repetition_plus SearchSelector */ +case 1069: + /*! Production:: SearchSelector_repetition_plus2 : SearchSelector_repetition_plus2 SearchSelector */ +case 1073: + /*! Production:: SearchSelector_repetition : SearchSelector_repetition SearchSelector */ +case 1075: + /*! Production:: SearchSelector_repetition2 : SearchSelector_repetition2 SearchSelector */ +case 1077: + /*! Production:: SearchSelector_repetition3 : SearchSelector_repetition3 SearchSelector */ +case 1081: + /*! Production:: SearchSelector_repetition4 : SearchSelector_repetition4 SearchSelector */ +case 1083: + /*! Production:: SearchSelector_repetition5 : SearchSelector_repetition5 SearchSelector */ +case 1085: + /*! Production:: SearchSelector_repetition6 : SearchSelector_repetition6 SearchSelector */ +case 1087: + /*! Production:: SearchSelector_repetition7 : SearchSelector_repetition7 SearchSelector */ +case 1089: + /*! Production:: SearchSelectorList_repetition : SearchSelectorList_repetition SearchSelector */ +case 1091: + /*! Production:: SearchSelectorList_repetition2 : SearchSelectorList_repetition2 SearchSelector */ + + yyvstack[yysp - 1].push(yyvstack[yysp]); + this.$ = yyvstack[yysp - 1]; + break; + +case 1902: // === NO_ACTION[1] :: ensures that anyone (but us) using this new state will fail dramatically! + // error recovery reduction action (action generated by jison, + // using the user-specified `%code error_recovery_reduction` %{...%} + // code chunk below. + + + break; + +default: + // default action for all unlisted resolve states: 486, 487, 488, 489, 490, 491, 747, 748, 756, 757, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185 + + // When we hit this entry, it's always a non-recoverable issue as this is a severe internal parser state failure: + function __b0rk_on_internal_failure(str) { + var hash = yyparser.constructParseErrorInfo(str, null, null, false); + + return yyparser.parseError(str, hash, yyparser.JisonParserError); + } + + return __b0rk_on_internal_failure("internal parser failure: resolving unlisted state: " + yystate); } }, -table: [o([10,606,767],$V0,{8:1,9:2,12:3,13:4,17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,2:$V1,4:$V2,5:$V3,14:$V4,53:$V5,72:$V6,89:$V7,124:$V8,146:$V9,156:$Va,189:$Vb,270:$Vc,271:$Vd,293:$Ve,339:$Vf,342:$Vg,343:$Vh,400:$Vi,404:$Vj,405:$Vk,408:$Vl,410:$Vm,412:$Vn,413:$Vo,421:$Vp,422:$Vq,438:$Vr,440:$Vs,441:$Vt,443:$Vu,444:$Vv,445:$Vw,446:$Vx,447:$Vy,451:$Vz,452:$VA,455:$VB,456:$VC,509:$VD,511:$VE,512:$VF,521:$VG}),{1:[3]},{10:[1,105],11:106,606:$VH,767:$VI},o($VJ,[2,8]),o($VJ,[2,9]),o($VK,[2,12]),o($VJ,$V0,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:109,2:$V1,4:$V2,5:$V3,15:[1,110],53:$V5,72:$V6,89:$V7,124:$V8,146:$V9,156:$Va,189:$Vb,270:$Vc,271:$Vd,293:$Ve,339:$Vf,342:$Vg,343:$Vh,400:$Vi,404:$Vj,405:$Vk,408:$Vl,410:$Vm,412:$Vn,413:$Vo,421:$Vp,422:$Vq,438:$Vr,440:$Vs,441:$Vt,443:$Vu,444:$Vv,445:$Vw,446:$Vx,447:$Vy,451:$Vz,452:$VA,455:$VB,456:$VC,509:$VD,511:$VE,512:$VF,521:$VG}),o($VK,[2,14]),o($VK,[2,15]),o($VK,[2,16]),o($VK,[2,17]),o($VK,[2,18]),o($VK,[2,19]),o($VK,[2,20]),o($VK,[2,21]),o($VK,[2,22]),o($VK,[2,23]),o($VK,[2,24]),o($VK,[2,25]),o($VK,[2,26]),o($VK,[2,27]),o($VK,[2,28]),o($VK,[2,29]),o($VK,[2,30]),o($VK,[2,31]),o($VK,[2,32]),o($VK,[2,33]),o($VK,[2,34]),o($VK,[2,35]),o($VK,[2,36]),o($VK,[2,37]),o($VK,[2,38]),o($VK,[2,39]),o($VK,[2,40]),o($VK,[2,41]),o($VK,[2,42]),o($VK,[2,43]),o($VK,[2,44]),o($VK,[2,45]),o($VK,[2,46]),o($VK,[2,47]),o($VK,[2,48]),o($VK,[2,49]),o($VK,[2,50]),o($VK,[2,51]),o($VK,[2,52]),o($VK,[2,53]),o($VK,[2,54]),o($VK,[2,55]),o($VK,[2,56]),o($VK,[2,57]),o($VK,[2,58]),o($VK,[2,59]),o($VK,[2,60]),o($VK,[2,61]),o($VK,[2,62]),o($VK,[2,63]),o($VK,[2,64]),o($VK,[2,65]),o($VK,[2,66]),o($VK,[2,67]),{357:[1,111]},{2:$V1,3:112,4:$V2,5:$V3},{2:$V1,3:114,4:$V2,5:$V3,156:$VL,200:113,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ},o($VR,[2,506],{3:122,352:126,2:$V1,4:$V2,5:$V3,134:$VS,135:$VT,187:[1,124],193:[1,123],272:[1,130],273:[1,131],361:[1,132],409:[1,121],476:[1,125],513:[1,129]}),{145:$VU,453:133,454:134},{183:[1,136]},{409:[1,137]},{2:$V1,3:139,4:$V2,5:$V3,130:[1,145],193:[1,140],357:[1,144],401:141,409:[1,138],414:[1,142],513:[1,143]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:146,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($Vv1,$Vw1,{344:206,171:[1,207],198:$Vx1}),o($Vv1,$Vw1,{344:209,198:$Vx1}),{2:$V1,3:221,4:$V2,5:$V3,77:$Vy1,132:$Vz1,143:$VZ,144:214,145:$V_,152:$V01,156:$VL,181:$V41,198:[1,212],199:215,200:217,201:216,202:219,209:211,213:$VA1,214:220,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,306:$Vp1,423:191,424:$Vt1,428:$Vu1,457:210},{2:$V1,3:223,4:$V2,5:$V3},{357:[1,224]},o($VB1,[2,1048],{80:225,106:226,107:[1,227]}),o($VC1,[2,1052],{90:228}),{2:$V1,3:232,4:$V2,5:$V3,190:[1,230],193:[1,233],271:[1,229],357:[1,234],409:[1,231]},{357:[1,235]},{2:$V1,3:238,4:$V2,5:$V3,73:236,75:237},o([310,606,767],$V0,{12:3,13:4,17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,9:240,2:$V1,4:$V2,5:$V3,14:$V4,53:$V5,72:$V6,89:$V7,124:$V8,146:$V9,156:$Va,189:$Vb,270:$Vc,271:$Vd,293:$Ve,339:$Vf,342:$Vg,343:$Vh,400:$Vi,404:$Vj,405:$Vk,408:$Vl,410:$Vm,412:$Vn,413:$Vo,421:$Vp,422:$Vq,438:$Vr,439:[1,239],440:$Vs,441:$Vt,443:$Vu,444:$Vv,445:$Vw,446:$Vx,447:$Vy,451:$Vz,452:$VA,455:$VB,456:$VC,509:$VD,511:$VE,512:$VF,521:$VG}),{439:[1,241]},{439:[1,242]},{2:$V1,3:244,4:$V2,5:$V3,409:[1,243]},{2:$V1,3:246,4:$V2,5:$V3,199:245},o($VD1,[2,314]),{113:247,132:$VX,300:$Vl1},{2:$V1,3:114,4:$V2,5:$V3,113:253,131:$VW,132:[1,250],143:$VZ,144:248,145:$VE1,152:$V01,156:$VL,181:$V41,196:252,200:257,201:256,261:254,262:255,269:$VF1,278:249,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,306:$Vp1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:259,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VK,[2,677]),o($VK,[2,678]),{2:$V1,3:169,4:$V2,5:$V3,40:261,56:166,77:$VV,79:75,89:$V7,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:260,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,184:99,189:$Vb,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:268,4:$V2,5:$V3,113:265,132:$VX,300:$Vl1,448:263,449:264,450:266,451:$VG1},{2:$V1,3:269,4:$V2,5:$V3,143:$VH1,145:$VI1,435:270},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:273,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{509:[1,274]},{2:$V1,3:100,4:$V2,5:$V3,508:276,510:275},{2:$V1,3:114,4:$V2,5:$V3,156:$VL,200:277,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:278,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VJ1,$VK1,{186:282,164:[1,281],185:[1,279],187:[1,280],195:$VL1}),o($VM1,[2,762],{77:[1,284]}),o([2,4,5,10,72,77,78,93,98,107,118,128,131,132,137,143,145,152,154,156,162,164,168,169,179,180,181,183,185,187,195,198,232,244,245,249,251,269,270,274,275,277,284,285,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,306,307,310,314,316,321,424,428,606,767],[2,152],{149:[1,285],150:[1,286],190:[1,287],191:[1,288],192:[1,289],193:[1,290],194:[1,291]}),o($VN1,[2,1]),o($VN1,[2,2]),{6:292,131:[1,441],172:[1,464],243:[1,440],244:[1,375],245:[1,409],249:[1,413],374:[1,406],385:[1,297],406:[1,299],414:[1,551],418:[1,473],420:[1,445],421:[1,511],437:[1,444],439:[1,527],444:[1,344],464:[1,420],468:[1,450],474:[1,343],518:[1,309],519:[1,301],520:[1,401],522:[1,293],523:[1,294],524:[1,295],525:[1,296],526:[1,298],527:[1,300],528:[1,302],529:[1,303],530:[1,304],531:[1,305],532:[1,306],533:[1,307],534:[1,308],535:[1,310],536:[1,311],537:[1,312],538:[1,313],539:[1,314],540:[1,315],541:[1,316],542:[1,317],543:[1,318],544:[1,319],545:[1,320],546:[1,321],547:[1,322],548:[1,323],549:[1,324],550:[1,325],551:[1,326],552:[1,327],553:[1,328],554:[1,329],555:[1,330],556:[1,331],557:[1,332],558:[1,333],559:[1,334],560:[1,335],561:[1,336],562:[1,337],563:[1,338],564:[1,339],565:[1,340],566:[1,341],567:[1,342],568:[1,345],569:[1,346],570:[1,347],571:[1,348],572:[1,349],573:[1,350],574:[1,351],575:[1,352],576:[1,353],577:[1,354],578:[1,355],579:[1,356],580:[1,357],581:[1,358],582:[1,359],583:[1,360],584:[1,361],585:[1,362],586:[1,363],587:[1,364],588:[1,365],589:[1,366],590:[1,367],591:[1,368],592:[1,369],593:[1,370],594:[1,371],595:[1,372],596:[1,373],597:[1,374],598:[1,376],599:[1,377],600:[1,378],601:[1,379],602:[1,380],603:[1,381],604:[1,382],605:[1,383],606:[1,384],607:[1,385],608:[1,386],609:[1,387],610:[1,388],611:[1,389],612:[1,390],613:[1,391],614:[1,392],615:[1,393],616:[1,394],617:[1,395],618:[1,396],619:[1,397],620:[1,398],621:[1,399],622:[1,400],623:[1,402],624:[1,403],625:[1,404],626:[1,405],627:[1,407],628:[1,408],629:[1,410],630:[1,411],631:[1,412],632:[1,414],633:[1,415],634:[1,416],635:[1,417],636:[1,418],637:[1,419],638:[1,421],639:[1,422],640:[1,423],641:[1,424],642:[1,425],643:[1,426],644:[1,427],645:[1,428],646:[1,429],647:[1,430],648:[1,431],649:[1,432],650:[1,433],651:[1,434],652:[1,435],653:[1,436],654:[1,437],655:[1,438],656:[1,439],657:[1,442],658:[1,443],659:[1,446],660:[1,447],661:[1,448],662:[1,449],663:[1,451],664:[1,452],665:[1,453],666:[1,454],667:[1,455],668:[1,456],669:[1,457],670:[1,458],671:[1,459],672:[1,460],673:[1,461],674:[1,462],675:[1,463],676:[1,465],677:[1,466],678:[1,467],679:[1,468],680:[1,469],681:[1,470],682:[1,471],683:[1,472],684:[1,474],685:[1,475],686:[1,476],687:[1,477],688:[1,478],689:[1,479],690:[1,480],691:[1,481],692:[1,482],693:[1,483],694:[1,484],695:[1,485],696:[1,486],697:[1,487],698:[1,488],699:[1,489],700:[1,490],701:[1,491],702:[1,492],703:[1,493],704:[1,494],705:[1,495],706:[1,496],707:[1,497],708:[1,498],709:[1,499],710:[1,500],711:[1,501],712:[1,502],713:[1,503],714:[1,504],715:[1,505],716:[1,506],717:[1,507],718:[1,508],719:[1,509],720:[1,510],721:[1,512],722:[1,513],723:[1,514],724:[1,515],725:[1,516],726:[1,517],727:[1,518],728:[1,519],729:[1,520],730:[1,521],731:[1,522],732:[1,523],733:[1,524],734:[1,525],735:[1,526],736:[1,528],737:[1,529],738:[1,530],739:[1,531],740:[1,532],741:[1,533],742:[1,534],743:[1,535],744:[1,536],745:[1,537],746:[1,538],747:[1,539],748:[1,540],749:[1,541],750:[1,542],751:[1,543],752:[1,544],753:[1,545],754:[1,546],755:[1,547],756:[1,548],757:[1,549],758:[1,550],759:[1,552],760:[1,553],761:[1,554],762:[1,555],763:[1,556],764:[1,557],765:[1,558],766:[1,559]},{1:[2,6]},o($VJ,$V0,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:560,2:$V1,4:$V2,5:$V3,53:$V5,72:$V6,89:$V7,124:$V8,146:$V9,156:$Va,189:$Vb,270:$Vc,271:$Vd,293:$Ve,339:$Vf,342:$Vg,343:$Vh,400:$Vi,404:$Vj,405:$Vk,408:$Vl,410:$Vm,412:$Vn,413:$Vo,421:$Vp,422:$Vq,438:$Vr,440:$Vs,441:$Vt,443:$Vu,444:$Vv,445:$Vw,446:$Vx,447:$Vy,451:$Vz,452:$VA,455:$VB,456:$VC,509:$VD,511:$VE,512:$VF,521:$VG}),o($VO1,[2,1046]),o($VO1,[2,1047]),o($VJ,[2,10]),{16:[1,561]},{2:$V1,3:246,4:$V2,5:$V3,199:562},{409:[1,563]},o($VK,[2,765]),{77:$VP1},{77:[1,565]},{77:$VQ1},{77:[1,567]},{77:[1,568]},{77:[1,569]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:570,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($Vv1,$VR1,{354:571,156:$VS1}),{409:[1,573]},{2:$V1,3:574,4:$V2,5:$V3},{193:[1,575]},{2:$V1,3:581,4:$V2,5:$V3,132:$VT1,137:$VU1,143:$VH1,145:$VI1,152:$VV1,183:[1,577],435:588,477:576,478:578,479:579,482:580,486:585,497:582,501:584},{130:[1,592],353:589,357:[1,591],414:[1,590]},{113:594,132:$VX,183:[2,1146],300:$Vl1,475:593},o($VW1,[2,1140],{469:595,3:596,2:$V1,4:$V2,5:$V3}),{2:$V1,3:597,4:$V2,5:$V3},{4:[1,598]},{4:[1,599]},o($VR,[2,507]),o($VK,[2,691],{74:[1,600]}),o($VX1,[2,692]),{2:$V1,3:601,4:$V2,5:$V3},{2:$V1,3:246,4:$V2,5:$V3,199:602},{2:$V1,3:603,4:$V2,5:$V3},o($Vv1,$VY1,{402:604,156:$VZ1}),{409:[1,606]},{2:$V1,3:607,4:$V2,5:$V3},o($Vv1,$VY1,{402:608,156:$VZ1}),o($Vv1,$VY1,{402:609,156:$VZ1}),{2:$V1,3:610,4:$V2,5:$V3},o($V_1,[2,1134]),o($V_1,[2,1135]),o($VK,$V0,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:611,114:628,331:640,2:$V1,4:$V2,5:$V3,53:$V5,72:$V6,89:$V7,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$V42,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,146:$V9,154:$Vc2,156:$Va,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,189:$Vb,270:$Vc,271:$Vd,293:$Ve,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2,339:$Vf,342:$Vg,343:$Vh,400:$Vi,404:$Vj,405:$Vk,408:$Vl,410:$Vm,412:$Vn,413:$Vo,421:$Vp,422:$Vq,438:$Vr,440:$Vs,441:$Vt,443:$Vu,444:$Vv,445:$Vw,446:$Vx,447:$Vy,451:$Vz,452:$VA,455:$VB,456:$VC,509:$VD,511:$VE,512:$VF,521:$VG}),o($VD1,[2,291]),o($VD1,[2,292]),o($VD1,[2,293]),o($VD1,[2,294]),o($VD1,[2,295]),o($VD1,[2,296]),o($VD1,[2,297]),o($VD1,[2,298]),o($VD1,[2,299]),o($VD1,[2,300]),o($VD1,[2,301]),o($VD1,[2,302]),o($VD1,[2,303]),o($VD1,[2,304]),o($VD1,[2,305]),o($VD1,[2,306]),o($VD1,[2,307]),o($VD1,[2,308]),{2:$V1,3:169,4:$V2,5:$V3,26:657,27:656,36:652,40:651,56:166,77:$VV,79:75,89:$V7,94:654,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,184:99,189:$Vb,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,268:653,269:$V71,270:$Vc,271:[1,658],274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:[1,655],294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,343:$Vh,423:191,424:$Vt1,428:$Vu1},o($VD1,[2,312]),o($VD1,[2,313]),{77:[1,659]},o([2,4,5,10,53,72,74,76,78,89,93,95,98,99,107,112,115,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VA2,{77:$VP1,116:[1,660]}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:661,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:662,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:663,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:664,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:665,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VD1,[2,286]),o([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,231,232,239,244,245,246,247,249,251,253,269,270,271,274,275,277,284,285,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,304,306,307,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,419,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767,768,769],[2,361]),o($VB2,[2,362]),o($VB2,[2,363]),o($VB2,$VC2),o($VB2,[2,365]),o([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,366]),{2:$V1,3:667,4:$V2,5:$V3,131:[1,668],305:666},{2:$V1,3:669,4:$V2,5:$V3},o($VB2,[2,372]),o($VB2,[2,373]),{2:$V1,3:670,4:$V2,5:$V3,77:$VD2,113:672,131:$VW,132:$VX,143:$VZ,152:$V01,181:$V41,196:673,201:675,261:674,298:$Vj1,299:$Vk1,300:$Vl1,306:$Vp1,423:676,428:$Vu1},{77:[1,677]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:678,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,308:679,311:680,312:$VE2,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{77:[1,682]},{77:[1,683]},o($VF2,[2,629]),{2:$V1,3:698,4:$V2,5:$V3,77:$VG2,111:693,113:691,131:$VW,132:$VX,143:$VZ,144:688,145:$VE1,152:$V01,156:$VL,181:$V41,196:690,200:696,201:695,261:692,262:694,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,304:[1,686],306:$Vp1,423:191,424:$Vt1,425:684,426:687,427:689,428:$Vu1,431:685},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:699,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:700,4:$V2,5:$V3,156:$VL,200:701,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ},{77:[2,339]},{77:[2,340]},{77:[2,341]},{77:[2,342]},{77:[2,343]},{77:[2,344]},{77:[2,345]},{77:[2,346]},{77:[2,347]},{77:[2,348]},{2:$V1,3:707,4:$V2,5:$V3,131:$VH2,132:$VI2,429:702,430:[1,703],432:704},{2:$V1,3:246,4:$V2,5:$V3,199:708},{293:[1,709]},o($Vv1,[2,477]),{2:$V1,3:246,4:$V2,5:$V3,199:710},{231:[1,712],458:711},{231:[2,700]},{2:$V1,3:221,4:$V2,5:$V3,77:$Vy1,132:$Vz1,143:$VZ,144:214,145:$V_,152:$V01,156:$VL,181:$V41,199:215,200:217,201:216,202:219,209:713,213:$VA1,214:220,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,306:$Vp1,423:191,424:$Vt1,428:$Vu1},{40:714,79:75,89:$V7,184:99,189:$Vb},o($VJ2,[2,1096],{210:715,76:[1,716]}),o($VK2,[2,185],{3:717,2:$V1,4:$V2,5:$V3,76:[1,718],154:[1,719]}),o($VK2,[2,189],{3:720,2:$V1,4:$V2,5:$V3,76:[1,721]}),o($VK2,[2,190],{3:722,2:$V1,4:$V2,5:$V3,76:[1,723]}),o($VK2,[2,193]),o($VK2,[2,194],{3:724,2:$V1,4:$V2,5:$V3,76:[1,725]}),o($VK2,[2,197],{3:726,2:$V1,4:$V2,5:$V3,76:[1,727]}),o([2,4,5,10,72,74,76,78,93,98,118,128,154,162,168,169,183,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],$VL2,{77:$VP1,116:$VM2}),o([2,4,5,10,72,74,76,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],[2,200]),o($VK,[2,778]),{2:$V1,3:246,4:$V2,5:$V3,199:729},o($VN2,$VO2,{81:730,198:$VP2}),o($VB1,[2,1049]),o($VQ2,[2,1062],{108:732,190:[1,733]}),o([10,78,183,310,314,606,767],$VO2,{423:191,81:734,117:735,3:736,114:739,144:761,158:771,160:772,2:$V1,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,112:$VU2,115:$V12,116:$V22,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,198:$VP2,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,424:$Vt1,428:$Vu1}),{357:[1,785]},{183:[1,786]},o($VK,[2,599],{112:[1,787]}),{409:[1,788]},{183:[1,789]},o($VK,[2,603],{112:[1,790],183:[1,791]}),{2:$V1,3:246,4:$V2,5:$V3,199:792},{40:793,74:[1,794],79:75,89:$V7,184:99,189:$Vb},o($Vx3,[2,70]),{76:[1,795]},o($VK,[2,672]),{11:106,310:[1,796],606:$VH,767:$VI},o($VK,[2,670]),o($VK,[2,671]),{2:$V1,3:797,4:$V2,5:$V3},o($VK,[2,592]),{146:[1,798]},o([2,4,5,10,53,72,74,76,77,78,89,95,124,128,143,145,146,148,149,152,154,156,181,183,187,189,230,270,271,293,301,306,310,314,339,342,343,347,348,360,372,373,377,378,400,404,405,406,407,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,518,519,520,521,606,767],$VL2,{116:$VM2}),o($VK,[2,620]),o($VK,[2,621]),o($VK,[2,622]),o($VK,$VC2,{74:[1,799]}),{77:$VD2,113:672,131:$VW,132:$VX,143:$VZ,152:$V01,181:$V41,196:673,201:675,261:674,298:$Vj1,299:$Vk1,300:$Vl1,306:$Vp1,423:676,428:$Vu1},o($Vy3,[2,323]),o($Vy3,[2,324]),o($Vy3,[2,325]),o($Vy3,[2,326]),o($Vy3,[2,327]),o($Vy3,[2,328]),o($Vy3,[2,329]),o($VK,$V0,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,114:628,331:640,12:800,2:$V1,4:$V2,5:$V3,53:$V5,72:$V6,89:$V7,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$V42,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,146:$V9,154:$Vc2,156:$Va,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,189:$Vb,270:$Vc,271:$Vd,293:$Ve,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2,339:$Vf,342:$Vg,343:$Vh,400:$Vi,404:$Vj,405:$Vk,408:$Vl,410:$Vm,412:$Vn,413:$Vo,421:$Vp,422:$Vq,438:$Vr,440:$Vs,441:$Vt,443:$Vu,444:$Vv,445:$Vw,446:$Vx,447:$Vy,451:$Vz,452:$VA,455:$VB,456:$VC,509:$VD,511:$VE,512:$VF,521:$VG}),o($VK,[2,680],{74:$Vz3}),o($VK,[2,681]),o($VA3,[2,359],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($VK,[2,682],{74:[1,803]}),o($VK,[2,683],{74:[1,804]}),o($VX1,[2,688]),o($VX1,[2,690]),o($VX1,[2,684]),o($VX1,[2,685]),{114:810,115:$V12,116:$V22,124:[1,805],230:$VC3,433:806,434:807,437:$VD3},{2:$V1,3:811,4:$V2,5:$V3},o($Vv1,[2,661]),o($Vv1,[2,662]),o($VK,[2,619],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{2:$V1,3:100,4:$V2,5:$V3,508:276,510:812},o($VK,[2,759],{74:$VE3}),o($VF3,[2,761]),o($VK,[2,764]),o($VK,[2,686],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($VG3,$VK1,{186:814,195:$VL1}),o($VG3,$VK1,{186:815,195:$VL1}),o($VG3,$VK1,{186:816,195:$VL1}),o($VH3,[2,1092],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,188:817,174:818,257:819,94:820,2:$V1,4:$V2,5:$V3,77:$VV,131:$VW,132:$VX,137:$VY,143:$VZ,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,179:$V21,180:$V31,181:$V41,244:$V51,245:$V61,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,424:$Vt1,428:$Vu1}),{77:[1,822],131:$VW,196:821},{2:$V1,3:100,4:$V2,5:$V3,508:276,510:823},o($VI3,[2,153]),o($VI3,[2,154]),o($VI3,[2,155]),o($VI3,[2,156]),o($VI3,[2,157]),o($VI3,[2,158]),o($VI3,[2,159]),o($VN1,[2,3]),o($VN1,[2,779]),o($VN1,[2,780]),o($VN1,[2,781]),o($VN1,[2,782]),o($VN1,[2,783]),o($VN1,[2,784]),o($VN1,[2,785]),o($VN1,[2,786]),o($VN1,[2,787]),o($VN1,[2,788]),o($VN1,[2,789]),o($VN1,[2,790]),o($VN1,[2,791]),o($VN1,[2,792]),o($VN1,[2,793]),o($VN1,[2,794]),o($VN1,[2,795]),o($VN1,[2,796]),o($VN1,[2,797]),o($VN1,[2,798]),o($VN1,[2,799]),o($VN1,[2,800]),o($VN1,[2,801]),o($VN1,[2,802]),o($VN1,[2,803]),o($VN1,[2,804]),o($VN1,[2,805]),o($VN1,[2,806]),o($VN1,[2,807]),o($VN1,[2,808]),o($VN1,[2,809]),o($VN1,[2,810]),o($VN1,[2,811]),o($VN1,[2,812]),o($VN1,[2,813]),o($VN1,[2,814]),o($VN1,[2,815]),o($VN1,[2,816]),o($VN1,[2,817]),o($VN1,[2,818]),o($VN1,[2,819]),o($VN1,[2,820]),o($VN1,[2,821]),o($VN1,[2,822]),o($VN1,[2,823]),o($VN1,[2,824]),o($VN1,[2,825]),o($VN1,[2,826]),o($VN1,[2,827]),o($VN1,[2,828]),o($VN1,[2,829]),o($VN1,[2,830]),o($VN1,[2,831]),o($VN1,[2,832]),o($VN1,[2,833]),o($VN1,[2,834]),o($VN1,[2,835]),o($VN1,[2,836]),o($VN1,[2,837]),o($VN1,[2,838]),o($VN1,[2,839]),o($VN1,[2,840]),o($VN1,[2,841]),o($VN1,[2,842]),o($VN1,[2,843]),o($VN1,[2,844]),o($VN1,[2,845]),o($VN1,[2,846]),o($VN1,[2,847]),o($VN1,[2,848]),o($VN1,[2,849]),o($VN1,[2,850]),o($VN1,[2,851]),o($VN1,[2,852]),o($VN1,[2,853]),o($VN1,[2,854]),o($VN1,[2,855]),o($VN1,[2,856]),o($VN1,[2,857]),o($VN1,[2,858]),o($VN1,[2,859]),o($VN1,[2,860]),o($VN1,[2,861]),o($VN1,[2,862]),o($VN1,[2,863]),o($VN1,[2,864]),o($VN1,[2,865]),o($VN1,[2,866]),o($VN1,[2,867]),o($VN1,[2,868]),o($VN1,[2,869]),o($VN1,[2,870]),o($VN1,[2,871]),o($VN1,[2,872]),o($VN1,[2,873]),o($VN1,[2,874]),o($VN1,[2,875]),o($VN1,[2,876]),o($VN1,[2,877]),o($VN1,[2,878]),o($VN1,[2,879]),o($VN1,[2,880]),o($VN1,[2,881]),o($VN1,[2,882]),o($VN1,[2,883]),o($VN1,[2,884]),o($VN1,[2,885]),o($VN1,[2,886]),o($VN1,[2,887]),o($VN1,[2,888]),o($VN1,[2,889]),o($VN1,[2,890]),o($VN1,[2,891]),o($VN1,[2,892]),o($VN1,[2,893]),o($VN1,[2,894]),o($VN1,[2,895]),o($VN1,[2,896]),o($VN1,[2,897]),o($VN1,[2,898]),o($VN1,[2,899]),o($VN1,[2,900]),o($VN1,[2,901]),o($VN1,[2,902]),o($VN1,[2,903]),o($VN1,[2,904]),o($VN1,[2,905]),o($VN1,[2,906]),o($VN1,[2,907]),o($VN1,[2,908]),o($VN1,[2,909]),o($VN1,[2,910]),o($VN1,[2,911]),o($VN1,[2,912]),o($VN1,[2,913]),o($VN1,[2,914]),o($VN1,[2,915]),o($VN1,[2,916]),o($VN1,[2,917]),o($VN1,[2,918]),o($VN1,[2,919]),o($VN1,[2,920]),o($VN1,[2,921]),o($VN1,[2,922]),o($VN1,[2,923]),o($VN1,[2,924]),o($VN1,[2,925]),o($VN1,[2,926]),o($VN1,[2,927]),o($VN1,[2,928]),o($VN1,[2,929]),o($VN1,[2,930]),o($VN1,[2,931]),o($VN1,[2,932]),o($VN1,[2,933]),o($VN1,[2,934]),o($VN1,[2,935]),o($VN1,[2,936]),o($VN1,[2,937]),o($VN1,[2,938]),o($VN1,[2,939]),o($VN1,[2,940]),o($VN1,[2,941]),o($VN1,[2,942]),o($VN1,[2,943]),o($VN1,[2,944]),o($VN1,[2,945]),o($VN1,[2,946]),o($VN1,[2,947]),o($VN1,[2,948]),o($VN1,[2,949]),o($VN1,[2,950]),o($VN1,[2,951]),o($VN1,[2,952]),o($VN1,[2,953]),o($VN1,[2,954]),o($VN1,[2,955]),o($VN1,[2,956]),o($VN1,[2,957]),o($VN1,[2,958]),o($VN1,[2,959]),o($VN1,[2,960]),o($VN1,[2,961]),o($VN1,[2,962]),o($VN1,[2,963]),o($VN1,[2,964]),o($VN1,[2,965]),o($VN1,[2,966]),o($VN1,[2,967]),o($VN1,[2,968]),o($VN1,[2,969]),o($VN1,[2,970]),o($VN1,[2,971]),o($VN1,[2,972]),o($VN1,[2,973]),o($VN1,[2,974]),o($VN1,[2,975]),o($VN1,[2,976]),o($VN1,[2,977]),o($VN1,[2,978]),o($VN1,[2,979]),o($VN1,[2,980]),o($VN1,[2,981]),o($VN1,[2,982]),o($VN1,[2,983]),o($VN1,[2,984]),o($VN1,[2,985]),o($VN1,[2,986]),o($VN1,[2,987]),o($VN1,[2,988]),o($VN1,[2,989]),o($VN1,[2,990]),o($VN1,[2,991]),o($VN1,[2,992]),o($VN1,[2,993]),o($VN1,[2,994]),o($VN1,[2,995]),o($VN1,[2,996]),o($VN1,[2,997]),o($VN1,[2,998]),o($VN1,[2,999]),o($VN1,[2,1000]),o($VN1,[2,1001]),o($VN1,[2,1002]),o($VN1,[2,1003]),o($VN1,[2,1004]),o($VN1,[2,1005]),o($VN1,[2,1006]),o($VN1,[2,1007]),o($VN1,[2,1008]),o($VN1,[2,1009]),o($VN1,[2,1010]),o($VN1,[2,1011]),o($VN1,[2,1012]),o($VN1,[2,1013]),o($VN1,[2,1014]),o($VN1,[2,1015]),o($VN1,[2,1016]),o($VN1,[2,1017]),o($VN1,[2,1018]),o($VN1,[2,1019]),o($VN1,[2,1020]),o($VN1,[2,1021]),o($VN1,[2,1022]),o($VN1,[2,1023]),o($VN1,[2,1024]),o($VN1,[2,1025]),o($VN1,[2,1026]),o($VN1,[2,1027]),o($VN1,[2,1028]),o($VN1,[2,1029]),o($VN1,[2,1030]),o($VN1,[2,1031]),o($VN1,[2,1032]),o($VN1,[2,1033]),o($VN1,[2,1034]),o($VN1,[2,1035]),o($VN1,[2,1036]),o($VN1,[2,1037]),o($VN1,[2,1038]),o($VN1,[2,1039]),o($VN1,[2,1040]),o($VN1,[2,1041]),o($VN1,[2,1042]),o($VN1,[2,1043]),o($VN1,[2,1044]),o($VN1,[2,1045]),o($VJ,[2,7]),o($VJ,$V0,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:824,2:$V1,4:$V2,5:$V3,53:$V5,72:$V6,89:$V7,124:$V8,146:$V9,156:$Va,189:$Vb,270:$Vc,271:$Vd,293:$Ve,339:$Vf,342:$Vg,343:$Vh,400:$Vi,404:$Vj,405:$Vk,408:$Vl,410:$Vm,412:$Vn,413:$Vo,421:$Vp,422:$Vq,438:$Vr,440:$Vs,441:$Vt,443:$Vu,444:$Vv,445:$Vw,446:$Vx,447:$Vy,451:$Vz,452:$VA,455:$VB,456:$VC,509:$VD,511:$VE,512:$VF,521:$VG}),{400:[1,828],405:[1,825],406:[1,826],407:[1,827]},{2:$V1,3:829,4:$V2,5:$V3},o($VG3,[2,1116],{292:830,770:832,78:[1,831],164:[1,834],185:[1,833]}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:835,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:836,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:837,4:$V2,5:$V3,132:[1,838]},{2:$V1,3:839,4:$V2,5:$V3,132:[1,840]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:841,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:842,4:$V2,5:$V3,99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{2:$V1,3:843,4:$V2,5:$V3},{154:[1,844]},o($VJ3,$VR1,{354:845,156:$VS1}),{230:[1,846]},{2:$V1,3:847,4:$V2,5:$V3},o($VK,[2,734],{74:$VK3}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:849,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VF3,[2,737]),o($VL3,[2,1148],{423:191,480:850,144:851,139:$VM3,141:$VM3,145:$VE1,424:$Vt1,428:$Vu1}),{139:[1,852],141:[1,853]},o($VN3,$VO3,{494:855,497:856,77:[1,854],137:$VU1}),o($VP3,[2,1172],{498:857,132:[1,858]}),o($VQ3,[2,1176],{500:859,501:860,152:$VV1}),o($VQ3,[2,752]),o($VR3,[2,744]),{2:$V1,3:861,4:$V2,5:$V3,131:[1,862]},{2:$V1,3:863,4:$V2,5:$V3},{2:$V1,3:864,4:$V2,5:$V3},o($Vv1,$VR1,{354:865,156:$VS1}),o($Vv1,$VR1,{354:866,156:$VS1}),o($V_1,[2,496]),o($V_1,[2,497]),{183:[1,867]},{183:[2,1147]},o($VS3,[2,1142],{470:868,473:869,137:[1,870]}),o($VW1,[2,1141]),o($VT3,$VU3,{514:871,95:$VV3,230:[1,872],518:$VW3,519:$VX3,520:$VY3}),{76:[1,877]},{76:[1,878]},{145:$VU,454:879},{4:$VZ3,7:883,76:[1,881],276:880,391:882,393:$V_3},o($VK,[2,461],{128:[1,886]}),o($VK,[2,584]),{2:$V1,3:887,4:$V2,5:$V3},{302:[1,888]},o($VJ3,$VY1,{402:889,156:$VZ1}),o($VK,[2,598]),{2:$V1,3:246,4:$V2,5:$V3,199:891,403:890},{2:$V1,3:246,4:$V2,5:$V3,199:891,403:892},o($VK,[2,777]),o($VJ,[2,674],{442:893,314:[1,894]}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:895,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:896,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:897,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:898,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:899,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:900,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:901,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:902,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:903,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:904,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:905,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:906,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:907,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:908,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:909,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:910,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:911,4:$V2,5:$V3,77:[1,913],131:$VW,156:$VL,196:912,200:914,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ},{2:$V1,3:915,4:$V2,5:$V3,77:[1,917],131:$VW,156:$VL,196:916,200:918,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ},o($V$3,[2,445],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:919,2:$V1,4:$V2,5:$V3,77:$VV,131:$VW,132:$VX,137:$VY,143:$VZ,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,179:$V21,180:$V31,181:$V41,244:$V51,245:$V61,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,424:$Vt1,428:$Vu1}),o($V$3,[2,446],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:920,2:$V1,4:$V2,5:$V3,77:$VV,131:$VW,132:$VX,137:$VY,143:$VZ,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,179:$V21,180:$V31,181:$V41,244:$V51,245:$V61,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,424:$Vt1,428:$Vu1}),o($V$3,[2,447],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:921,2:$V1,4:$V2,5:$V3,77:$VV,131:$VW,132:$VX,137:$VY,143:$VZ,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,179:$V21,180:$V31,181:$V41,244:$V51,245:$V61,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,424:$Vt1,428:$Vu1}),o($V$3,[2,448],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:922,2:$V1,4:$V2,5:$V3,77:$VV,131:$VW,132:$VX,137:$VY,143:$VZ,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,179:$V21,180:$V31,181:$V41,244:$V51,245:$V61,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,424:$Vt1,428:$Vu1}),o($V$3,$V04,{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:923,2:$V1,4:$V2,5:$V3,77:$VV,131:$VW,132:$VX,137:$VY,143:$VZ,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,179:$V21,180:$V31,181:$V41,244:$V51,245:$V61,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,424:$Vt1,428:$Vu1}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:924,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:925,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($V$3,[2,450],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:926,2:$V1,4:$V2,5:$V3,77:$VV,131:$VW,132:$VX,137:$VY,143:$VZ,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,179:$V21,180:$V31,181:$V41,244:$V51,245:$V61,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,424:$Vt1,428:$Vu1}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:927,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:928,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{164:[1,930],166:[1,932],332:929,338:[1,931]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:933,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:934,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:698,4:$V2,5:$V3,77:[1,935],111:938,145:$V14,156:$VL,200:939,202:937,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,333:936},{99:[1,941],301:[1,942]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:943,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:944,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:945,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{4:$VZ3,7:883,276:946,391:882,393:$V_3},o($V24,[2,88]),o($V24,[2,89]),{78:[1,947]},{78:[1,948]},{78:[1,949]},{78:[1,950],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($Vv1,$Vw1,{344:209,77:$VQ1,198:$Vx1}),{78:[2,1112]},{78:[2,1113]},{134:$VS,135:$VT},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:951,152:$V01,154:$V11,156:$VL,158:168,164:[1,953],179:$V21,180:$V31,181:$V41,185:[1,952],196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:954,4:$V2,5:$V3,149:$V34,180:[1,956]},o([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,118,122,128,129,130,131,132,134,135,137,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,318,334,335,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,421],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,336:$Vy2}),o($V44,[2,422],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,180:$Vg2,316:$Vi2,320:$Vl2}),o($V44,[2,423],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,180:$Vg2,316:$Vi2,320:$Vl2}),o($V54,[2,424],{114:628,331:640,320:$Vl2}),o($V54,[2,425],{114:628,331:640,320:$Vl2}),o($VB2,[2,370]),o($VB2,[2,1118]),o($VB2,[2,1119]),o($VB2,[2,371]),o([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,231,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,367]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:957,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VF2,[2,625]),o($VF2,[2,626]),o($VF2,[2,627]),o($VF2,[2,628]),o($VF2,[2,630]),{40:958,79:75,89:$V7,184:99,189:$Vb},{99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,308:959,311:680,312:$VE2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{309:960,310:$V64,311:961,312:$VE2,314:$V74},o($V84,[2,377]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:963,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:964,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{4:$VZ3,7:883,276:965,391:882,393:$V_3},o($VF2,[2,631]),{74:[1,967],304:[1,966]},o($VF2,[2,647]),o($V94,[2,654]),o($Va4,[2,632]),o($Va4,[2,633]),o($Va4,[2,634]),o($Va4,[2,635]),o($Va4,[2,636]),o($Va4,[2,637]),o($Va4,[2,638]),o($Va4,[2,639]),o($Va4,[2,640]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:968,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o([2,4,5,10,53,72,74,76,78,89,93,95,98,99,107,112,115,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],$VA2,{77:$VP1,116:$Vb4}),{74:$Vz3,304:[1,970]},o($Vc4,[2,317],{77:$VP1}),o($VD1,[2,318]),{74:[1,972],430:[1,971]},o($VF2,[2,644]),o($Vd4,[2,649]),{152:[1,973]},{152:[1,974]},{152:[1,975]},{40:980,77:[1,979],79:75,89:$V7,143:$VZ,144:983,145:$VE1,149:$Ve4,152:$V01,181:$V41,184:99,189:$Vb,201:984,306:$Vp1,345:976,346:977,347:[1,978],348:$Vf4,423:191,424:$Vt1,428:$Vu1},o($Vv1,$Vw1,{344:985,198:$Vx1}),{77:$Vg4,143:$VZ,144:983,145:$VE1,149:$Ve4,152:$V01,181:$V41,201:984,306:$Vp1,345:986,346:987,348:$Vf4,423:191,424:$Vt1,428:$Vu1},{230:[1,990],459:989},{2:$V1,3:221,4:$V2,5:$V3,77:$Vy1,132:$Vz1,143:$VZ,144:214,145:$V_,152:$V01,156:$VL,181:$V41,199:215,200:217,201:216,202:219,209:991,213:$VA1,214:220,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,306:$Vp1,423:191,424:$Vt1,428:$Vu1},{231:[2,701]},{78:[1,992]},o($VK2,[2,1098],{211:993,3:994,2:$V1,4:$V2,5:$V3}),o($VJ2,[2,1097]),o($VK2,[2,183]),{2:$V1,3:995,4:$V2,5:$V3},{212:[1,996]},o($VK2,[2,187]),{2:$V1,3:997,4:$V2,5:$V3},o($VK2,[2,191]),{2:$V1,3:998,4:$V2,5:$V3},o($VK2,[2,195]),{2:$V1,3:999,4:$V2,5:$V3},o($VK2,[2,198]),{2:$V1,3:1000,4:$V2,5:$V3},{2:$V1,3:1001,4:$V2,5:$V3},{148:[1,1002]},o($Vh4,[2,172],{82:1003,183:[1,1004]}),{2:$V1,3:221,4:$V2,5:$V3,132:[1,1009],143:$VZ,145:[1,1010],152:$V01,156:$VL,181:$V41,199:1005,200:1006,201:1007,202:1008,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,306:$Vp1},{2:$V1,3:1015,4:$V2,5:$V3,109:1011,110:1012,111:1013,112:$Vi4},o($VQ2,[2,1063]),o($Vj4,[2,1054],{91:1016,182:1017,183:[1,1018]}),o($VC1,[2,1053],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),o([2,4,5,10,72,74,76,78,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,198,244,245,284,285,286,287,288,289,290,291,310,314,424,428,606,767],[2,90],{77:[1,1023]}),{119:[1,1024]},o($Vn4,[2,93]),{2:$V1,3:1025,4:$V2,5:$V3},o($Vn4,[2,95]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1026,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1027,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,112:$VU2,114:739,115:$V12,116:$V22,117:1029,118:$VV2,122:$VW2,123:$VX2,124:$VY2,125:1028,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},{77:[1,1030]},{77:[1,1031]},{77:[1,1032]},{77:[1,1033]},o($Vn4,[2,104]),o($Vn4,[2,105]),o($Vn4,[2,106]),o($Vn4,[2,107]),o($Vn4,[2,108]),o($Vn4,[2,109]),{2:$V1,3:1034,4:$V2,5:$V3},{2:$V1,3:1035,4:$V2,5:$V3,133:[1,1036]},o($Vn4,[2,113]),o($Vn4,[2,114]),o($Vn4,[2,115]),o($Vn4,[2,116]),o($Vn4,[2,117]),o($Vn4,[2,118]),{2:$V1,3:1037,4:$V2,5:$V3,77:$VD2,113:672,131:$VW,132:$VX,143:$VZ,152:$V01,181:$V41,196:673,201:675,261:674,298:$Vj1,299:$Vk1,300:$Vl1,306:$Vp1,423:676,428:$Vu1},{145:[1,1038]},{77:[1,1039]},{145:[1,1040]},o($Vn4,[2,123]),{77:[1,1041]},{2:$V1,3:1042,4:$V2,5:$V3},{77:[1,1043]},{77:[1,1044]},{77:[1,1045]},{77:[1,1046]},{77:[1,1047],164:[1,1048]},{77:[1,1049]},{77:[1,1050]},{77:[1,1051]},{77:[1,1052]},{77:[1,1053]},{77:[1,1054]},{77:[1,1055]},{77:[1,1056]},{77:[1,1057]},{77:[2,1078]},{77:[2,1079]},{2:$V1,3:246,4:$V2,5:$V3,199:1058},{2:$V1,3:246,4:$V2,5:$V3,199:1059},{113:1060,132:$VX,300:$Vl1},o($VK,[2,601],{112:[1,1061]}),{2:$V1,3:246,4:$V2,5:$V3,199:1062},{113:1063,132:$VX,300:$Vl1},{2:$V1,3:1064,4:$V2,5:$V3},o($VK,[2,698]),o($VK,[2,68]),{2:$V1,3:238,4:$V2,5:$V3,75:1065},{77:[1,1066]},o($VK,[2,679]),o($VK,[2,591]),{2:$V1,3:1015,4:$V2,5:$V3,111:1069,143:$Vo4,145:$Vp4,147:1067,340:1068,341:1070},{144:1073,145:$VE1,423:191,424:$Vt1,428:$Vu1},o($VK,[2,676]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1074,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($V$3,$V04,{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:1075,2:$V1,4:$V2,5:$V3,77:$VV,131:$VW,132:$VX,137:$VY,143:$VZ,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,179:$V21,180:$V31,181:$V41,244:$V51,245:$V61,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,424:$Vt1,428:$Vu1}),{113:1076,132:$VX,300:$Vl1},{2:$V1,3:268,4:$V2,5:$V3,450:1077,451:$VG1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1079,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,230:$VC3,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1,433:1078,437:$VD3},o($VK,[2,656]),{114:1081,115:$V12,116:$V22,124:[1,1080]},o($VK,[2,668]),o($VK,[2,669]),{2:$V1,3:1083,4:$V2,5:$V3,77:$Vq4,131:$Vr4,436:1082},{114:810,115:$V12,116:$V22,124:[1,1086],434:1087},o($VK,[2,758],{74:$VE3}),{2:$V1,3:100,4:$V2,5:$V3,508:1088},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:820,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,174:1089,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,257:819,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:820,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,174:1090,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,257:819,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:820,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,174:1091,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,257:819,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VH3,[2,151]),o($VH3,[2,1093],{74:$Vs4}),o($Vt4,[2,276]),o($Vt4,[2,283],{114:628,331:640,3:1094,113:1096,2:$V1,4:$V2,5:$V3,76:[1,1093],99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,131:[1,1095],132:$VX,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,300:$Vl1,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($VJ1,[2,1094],{197:1097,768:[1,1098]}),{131:$VW,196:1099},{74:$VE3,78:[1,1100]},o($VJ,[2,11]),{148:[1,1101],190:[1,1102]},{190:[1,1103]},{190:[1,1104]},{190:[1,1105]},o($VK,[2,580],{76:[1,1107],77:[1,1106]}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:1108,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VB2,[2,350]),o($VG3,[2,1117]),o($VG3,[2,1114]),o($VG3,[2,1115]),{74:$Vz3,78:[1,1109]},{74:$Vz3,78:[1,1110]},{74:[1,1111]},{74:[1,1112]},{74:[1,1113]},{74:[1,1114]},{74:[1,1115],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($VB2,[2,358]),o($VK,[2,585]),{302:[1,1116]},{2:$V1,3:1117,4:$V2,5:$V3,113:1118,132:$VX,300:$Vl1},{2:$V1,3:246,4:$V2,5:$V3,199:1119},{230:[1,1120]},{2:$V1,3:581,4:$V2,5:$V3,132:$VT1,137:$VU1,143:$VH1,145:$VI1,152:$VV1,435:588,478:1121,479:579,482:580,486:585,497:582,501:584},o($VK,[2,735],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($VF3,[2,1150],{481:1122,487:1123,76:$Vu4}),o($VL3,[2,1149]),{2:$V1,3:1127,4:$V2,5:$V3,132:$VT1,137:$VU1,144:1126,145:$VE1,152:$VV1,423:191,424:$Vt1,428:$Vu1,479:1125,497:582,501:584},{2:$V1,3:1127,4:$V2,5:$V3,132:$VT1,137:$VU1,143:$VH1,145:$VI1,152:$VV1,435:588,479:1129,482:1128,486:585,497:582,501:584},{2:$V1,3:581,4:$V2,5:$V3,132:$VT1,137:$VU1,143:$VH1,145:$VI1,152:$VV1,435:588,477:1130,478:578,479:579,482:580,486:585,497:582,501:584},o($VP3,[2,1168],{495:1131,132:[1,1132]}),o($VN3,[2,1167]),o($VQ3,[2,1174],{499:1133,501:1134,152:$VV1}),o($VP3,[2,1173]),o($VQ3,[2,751]),o($VQ3,[2,1177]),o($VN3,[2,754]),o($VN3,[2,755]),o($VQ3,[2,753]),o($VR3,[2,745]),{2:$V1,3:246,4:$V2,5:$V3,199:1135},{2:$V1,3:246,4:$V2,5:$V3,199:1136},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1137,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($Vv4,[2,1144],{471:1138,113:1139,132:$VX,300:$Vl1}),o($VS3,[2,1143]),{2:$V1,3:1140,4:$V2,5:$V3},{339:$Vw4,342:$Vx4,343:$Vy4,515:1141},{2:$V1,3:246,4:$V2,5:$V3,199:1145},o($VT3,[2,770]),o($VT3,[2,771]),o($VT3,[2,772]),{129:[1,1146]},{270:[1,1147]},{270:[1,1148]},o($VX1,[2,693]),o($VX1,[2,694],{124:[1,1149]}),{4:$VZ3,7:883,276:1150,391:882,393:$V_3},o([2,4,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,547],{5:[1,1151]}),o([2,5,10,53,72,74,76,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,544],{4:[1,1153],77:[1,1152]}),{77:[1,1154]},o($Vz4,[2,4]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1155,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VK,[2,593]),o($VJ3,[2,573]),{2:$V1,3:1156,4:$V2,5:$V3,113:1157,132:$VX,300:$Vl1},o($VK,[2,569],{74:$VA4}),o($VX1,[2,571]),o($VK,[2,618],{74:$VA4}),o($VK,[2,673]),o($VK,$V0,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:1159,2:$V1,4:$V2,5:$V3,53:$V5,72:$V6,89:$V7,124:$V8,146:$V9,156:$Va,189:$Vb,270:$Vc,271:$Vd,293:$Ve,339:$Vf,342:$Vg,343:$Vh,400:$Vi,404:$Vj,405:$Vk,408:$Vl,410:$Vm,412:$Vn,413:$Vo,421:$Vp,422:$Vq,438:$Vr,440:$Vs,441:$Vt,443:$Vu,444:$Vv,445:$Vw,446:$Vx,447:$Vy,451:$Vz,452:$VA,455:$VB,456:$VC,509:$VD,511:$VE,512:$VF,521:$VG}),o($VB4,[2,381],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,316:$Vi2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2}),o($V54,[2,382],{114:628,331:640,320:$Vl2}),o($VB4,[2,383],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,316:$Vi2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2}),o($VC4,[2,384],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,316:$Vi2,318:[1,1160],320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2}),o($VC4,[2,386],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,316:$Vi2,318:[1,1161],320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2}),o($VD1,[2,388],{114:628,331:640}),o($V44,[2,389],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,180:$Vg2,316:$Vi2,320:$Vl2}),o($V44,[2,390],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,180:$Vg2,316:$Vi2,320:$Vl2}),o($VD4,[2,391],{114:628,331:640,115:$V12,116:$V22,123:$V32,136:$V62,316:$Vi2,320:$Vl2}),o($VD4,[2,392],{114:628,331:640,115:$V12,116:$V22,123:$V32,136:$V62,316:$Vi2,320:$Vl2}),o($VD4,[2,393],{114:628,331:640,115:$V12,116:$V22,123:$V32,136:$V62,316:$Vi2,320:$Vl2}),o([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,123,124,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,318,319,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,394],{114:628,331:640,115:$V12,116:$V22,136:$V62,316:$Vi2,320:$Vl2}),o($VE4,[2,395],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,179:$Vf2,180:$Vg2,316:$Vi2,320:$Vl2,321:$Vm2}),o($VE4,[2,396],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,179:$Vf2,180:$Vg2,316:$Vi2,320:$Vl2,321:$Vm2}),o($VE4,[2,397],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,179:$Vf2,180:$Vg2,316:$Vi2,320:$Vl2,321:$Vm2}),o($VE4,[2,398],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,179:$Vf2,180:$Vg2,316:$Vi2,320:$Vl2,321:$Vm2}),o($Vc4,[2,399],{77:$VP1}),o($VD1,[2,400]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1162,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VD1,[2,402]),o($Vc4,[2,403],{77:$VP1}),o($VD1,[2,404]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1163,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VD1,[2,406]),o($VF4,[2,407],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),o($VF4,[2,408],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),o($VF4,[2,409],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),o($VF4,[2,410],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),o([2,4,5,10,53,72,89,99,124,139,140,146,154,156,170,171,189,270,271,293,310,314,324,325,326,327,328,329,330,334,335,337,339,342,343,400,404,405,408,410,412,413,421,422,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,521,606,767],$VG4,{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),o($VF4,[2,412],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),o($VF4,[2,413],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),o($VF4,[2,414],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),o($VF4,[2,415],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),o($VF4,[2,416],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),{77:[1,1164]},{77:[2,451]},{77:[2,452]},{77:[2,453]},o($VH4,[2,419],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,336:$Vy2}),o([2,4,5,10,53,72,74,76,77,78,89,93,95,98,107,118,122,128,129,130,131,132,134,135,137,143,145,146,148,149,150,152,156,162,164,166,168,169,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,318,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,420],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2}),{2:$V1,3:169,4:$V2,5:$V3,40:1165,56:166,77:$VV,78:[1,1167],79:75,89:$V7,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:1166,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,184:99,189:$Vb,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VD1,[2,433]),o($VD1,[2,435]),o($VD1,[2,442]),o($VD1,[2,443]),{2:$V1,3:670,4:$V2,5:$V3,77:[1,1168]},{2:$V1,3:698,4:$V2,5:$V3,77:[1,1169],111:938,145:$V14,156:$VL,200:939,202:1171,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,333:1170},o($VD1,[2,440]),o($VH4,[2,437],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,336:$Vy2}),o($VH4,[2,438],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,336:$Vy2}),o([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,318,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,439],{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2}),o($VD1,[2,441]),o($VD1,[2,309]),o($VD1,[2,310]),o($VD1,[2,311]),o($VD1,[2,426]),{74:$Vz3,78:[1,1172]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1173,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1174,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VD1,$VI4),o($VJ4,[2,289]),o($VD1,[2,285]),{78:[1,1176],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{78:[1,1177]},{309:1178,310:$V64,311:961,312:$VE2,314:$V74},{310:[1,1179]},o($V84,[2,376]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1180,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,313:[1,1181],315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{76:[1,1182],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{74:[1,1183]},o($VF2,[2,645]),{2:$V1,3:698,4:$V2,5:$V3,77:$VG2,111:693,113:691,131:$VW,132:$VX,143:$VZ,144:688,145:$VE1,152:$V01,156:$VL,181:$V41,196:690,200:696,201:695,261:692,262:694,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,304:[1,1184],306:$Vp1,423:191,424:$Vt1,426:1185,427:689,428:$Vu1},{78:[1,1186],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{2:$V1,3:1187,4:$V2,5:$V3,149:$V34},o($VD1,[2,369]),o($VF2,[2,642]),{2:$V1,3:707,4:$V2,5:$V3,131:$VH2,132:$VI2,430:[1,1188],432:1189},{2:$V1,3:698,4:$V2,5:$V3,77:$VG2,111:693,113:691,131:$VW,132:$VX,143:$VZ,144:688,145:$VE1,152:$V01,156:$VL,181:$V41,196:690,200:696,201:695,261:692,262:694,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,306:$Vp1,423:191,424:$Vt1,426:1190,427:689,428:$Vu1},{2:$V1,3:698,4:$V2,5:$V3,77:$VG2,111:693,113:691,131:$VW,132:$VX,143:$VZ,144:688,145:$VE1,152:$V01,156:$VL,181:$V41,196:690,200:696,201:695,261:692,262:694,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,306:$Vp1,423:191,424:$Vt1,426:1191,427:689,428:$Vu1},{2:$V1,3:698,4:$V2,5:$V3,77:$VG2,111:693,113:691,131:$VW,132:$VX,143:$VZ,144:688,145:$VE1,152:$V01,156:$VL,181:$V41,196:690,200:696,201:695,261:692,262:694,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,306:$Vp1,423:191,424:$Vt1,426:1192,427:689,428:$Vu1},{77:$Vg4,143:$VZ,144:983,145:$VE1,152:$V01,181:$V41,201:984,306:$Vp1,346:1193,423:191,424:$Vt1,428:$Vu1},o($VK4,[2,463],{74:$VL4}),{149:$Ve4,345:1195,348:$Vf4},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1199,100:1196,111:1198,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,349:1197,423:191,424:$Vt1,428:$Vu1},o($VK4,[2,471]),o($VM4,[2,474]),o($VM4,[2,475]),o($VN4,[2,479]),o($VN4,[2,480]),{2:$V1,3:246,4:$V2,5:$V3,199:1200},{77:$Vg4,143:$VZ,144:983,145:$VE1,152:$V01,181:$V41,201:984,306:$Vp1,346:1201,423:191,424:$Vt1,428:$Vu1},o($VK4,[2,467],{74:$VL4}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1199,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,349:1197,423:191,424:$Vt1,428:$Vu1},{312:$VO4,460:1202,462:1203,463:1204},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1206,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{230:[2,702]},o($VK2,[2,181],{3:1207,2:$V1,4:$V2,5:$V3,76:[1,1208]}),o($VK2,[2,182]),o($VK2,[2,1099]),o($VK2,[2,184]),o($VK2,[2,186]),o($VK2,[2,188]),o($VK2,[2,192]),o($VK2,[2,196]),o($VK2,[2,199]),o([2,4,5,10,53,72,74,76,77,78,89,93,95,98,118,124,128,143,145,146,148,149,152,154,156,162,168,169,181,183,187,189,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,270,271,293,301,306,310,314,339,342,343,347,348,360,372,373,377,378,400,404,405,406,407,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,518,519,520,521,606,767],[2,201]),{2:$V1,3:1209,4:$V2,5:$V3},o($VP4,[2,1050],{83:1210,92:1211,93:[1,1212],98:[1,1213]}),{2:$V1,3:221,4:$V2,5:$V3,77:[1,1215],132:$Vz1,143:$VZ,144:214,145:$V_,152:$V01,156:$VL,181:$V41,199:215,200:217,201:216,202:219,203:1214,209:1216,213:$VA1,214:220,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,306:$Vp1,423:191,424:$Vt1,428:$Vu1},o($VN2,[2,164]),o($VN2,[2,165]),o($VN2,[2,166]),o($VN2,[2,167]),o($VN2,[2,168]),{2:$V1,3:670,4:$V2,5:$V3},o($VB1,[2,83],{74:[1,1217]}),o($VQ4,[2,85]),o($VQ4,[2,86]),{113:1218,132:$VX,300:$Vl1},o([10,72,74,78,93,98,118,124,128,162,168,169,183,198,206,208,222,223,224,225,226,227,228,229,232,249,251,310,314,606,767],$VA2,{116:$Vb4}),o($Vj4,[2,73]),o($Vj4,[2,1055]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1219,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($Vn4,[2,126]),o($Vn4,[2,144]),o($Vn4,[2,145]),o($Vn4,[2,146]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,78:[2,1070],94:262,111:150,113:154,127:1220,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:1221,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{77:[1,1222]},o($Vn4,[2,94]),o([2,4,5,10,72,74,76,77,78,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,198,244,245,284,285,286,287,288,289,290,291,310,314,424,428,606,767],[2,96],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o([2,4,5,10,72,74,76,77,78,112,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,198,244,245,284,285,286,287,288,289,290,291,310,314,424,428,606,767],[2,97],{114:628,331:640,99:$V$1,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,78:[1,1223],112:$VU2,114:739,115:$V12,116:$V22,117:1224,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},o($VR4,[2,1066],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,112:$VU2,114:739,115:$V12,116:$V22,117:1226,118:$VV2,122:$VW2,123:$VX2,124:$VY2,126:1225,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1227,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1228,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1229,4:$V2,5:$V3},o($Vn4,[2,110]),o($Vn4,[2,111]),o($Vn4,[2,112]),o($Vn4,[2,119]),{2:$V1,3:1230,4:$V2,5:$V3},{2:$V1,3:1015,4:$V2,5:$V3,111:1069,143:$Vo4,145:$Vp4,147:1231,340:1068,341:1070},{2:$V1,3:1232,4:$V2,5:$V3},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:1233,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($Vn4,[2,125]),o($VR4,[2,1072],{155:1234}),o($VR4,[2,1074],{157:1235}),o($VR4,[2,1076],{159:1236}),o($VR4,[2,1080],{161:1237}),o($VS4,$VT4,{163:1238,178:1239}),{77:[1,1240]},o($VR4,[2,1082],{165:1241}),o($VR4,[2,1084],{167:1242}),o($VS4,$VT4,{178:1239,163:1243}),o($VS4,$VT4,{178:1239,163:1244}),o($VS4,$VT4,{178:1239,163:1245}),o($VS4,$VT4,{178:1239,163:1246}),{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,112:$VU2,114:739,115:$V12,116:$V22,117:1247,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:820,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,174:1248,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,257:819,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VU4,[2,1086],{176:1249}),o($VK,[2,611],{183:[1,1250]}),o($VK,[2,607],{183:[1,1251]}),o($VK,[2,600]),{113:1252,132:$VX,300:$Vl1},o($VK,[2,609],{183:[1,1253]}),o($VK,[2,604]),o($VK,[2,605],{112:[1,1254]}),o($Vx3,[2,69]),{40:1255,79:75,89:$V7,184:99,189:$Vb},o($VK,[2,455],{74:$VV4,128:[1,1256]}),o($VW4,[2,456]),{124:[1,1258]},{2:$V1,3:1259,4:$V2,5:$V3},o($Vv1,[2,1120]),o($Vv1,[2,1121]),o($VK,[2,623]),o($VA3,[2,360],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($VF4,$VG4,{114:628,331:640,112:$V02,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,336:$Vy2}),o($VX1,[2,687]),o($VX1,[2,689]),o($VK,[2,655]),o($VK,[2,657],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1260,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1083,4:$V2,5:$V3,77:$Vq4,131:$Vr4,436:1261},o($VX4,[2,664]),o($VX4,[2,665]),o($VX4,[2,666]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1263,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{114:1081,115:$V12,116:$V22,124:[1,1264]},o($VF3,[2,760]),o($VH3,[2,148],{74:$Vs4}),o($VH3,[2,149],{74:$Vs4}),o($VH3,[2,150],{74:$Vs4}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:820,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,257:1265,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1266,4:$V2,5:$V3,113:1268,131:[1,1267],132:$VX,300:$Vl1},o($Vt4,[2,278]),o($Vt4,[2,280]),o($Vt4,[2,282]),o($VJ1,[2,160]),o($VJ1,[2,1095]),{78:[1,1269]},o($VM1,[2,763]),{2:$V1,3:1270,4:$V2,5:$V3},{2:$V1,3:1271,4:$V2,5:$V3},{2:$V1,3:1273,4:$V2,5:$V3,388:1272},{2:$V1,3:1273,4:$V2,5:$V3,388:1274},{2:$V1,3:1275,4:$V2,5:$V3},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:1276,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1277,4:$V2,5:$V3},{74:$Vz3,78:[1,1278]},o($VB2,[2,351]),o($VB2,[2,352]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1279,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1280,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1281,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1282,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1283,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VJ3,[2,509]),o($VK,$VY4,{411:1284,76:$VZ4,77:[1,1285]}),o($VK,$VY4,{411:1287,76:$VZ4}),{77:[1,1288]},{2:$V1,3:246,4:$V2,5:$V3,199:1289},o($VF3,[2,736]),o($VF3,[2,738]),o($VF3,[2,1151]),{143:$VH1,145:$VI1,435:1290},o($V_4,[2,1152],{423:191,483:1291,144:1292,145:$VE1,424:$Vt1,428:$Vu1}),{76:$Vu4,139:[2,1156],485:1293,487:1294},o([10,74,76,78,132,139,145,152,310,314,424,428,606,767],$VO3,{494:855,497:856,137:$VU1}),o($VF3,[2,741]),o($VF3,$VM3),{74:$VK3,78:[1,1295]},o($VQ3,[2,1170],{496:1296,501:1297,152:$VV1}),o($VP3,[2,1169]),o($VQ3,[2,750]),o($VQ3,[2,1175]),o($VK,[2,495],{77:[1,1298]}),{76:[1,1300],77:[1,1299]},{99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,148:[1,1301],154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($VK4,$V$4,{79:75,184:99,472:1302,40:1305,89:$V7,146:$V05,189:$Vb,474:$V15}),o($Vv4,[2,1145]),o($VS3,[2,728]),{230:[1,1306]},o($V25,[2,774]),o($V25,[2,775]),o($V25,[2,776]),o($VT3,$VU3,{514:1307,95:$VV3,518:$VW3,519:$VX3,520:$VY3}),o($VT3,[2,773]),o($VK,[2,315]),o($VK,[2,316]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1308,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VX1,[2,695],{124:[1,1309]}),o($Vz4,[2,546]),{131:[1,1311],392:1310,394:[1,1312]},o($Vz4,[2,5]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1199,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,349:1313,423:191,424:$Vt1,428:$Vu1},o($VK,[2,460],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($VK,[2,594]),o($VK,[2,595]),{2:$V1,3:246,4:$V2,5:$V3,199:1314},o($VK,[2,675]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1315,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1316,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{78:[1,1317],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{78:[1,1318],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{2:$V1,3:169,4:$V2,5:$V3,40:1319,56:166,77:$VV,79:75,89:$V7,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:1320,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,184:99,189:$Vb,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{78:[1,1321]},{74:$Vz3,78:[1,1322]},o($VD1,[2,431]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1323,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,40:1324,56:166,77:$VV,78:[1,1326],79:75,89:$V7,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:1325,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,184:99,189:$Vb,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VD1,[2,434]),o($VD1,[2,436]),o($VD1,$V35,{279:1327,280:$V45}),{78:[1,1329],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{78:[1,1330],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{2:$V1,3:1331,4:$V2,5:$V3,180:[1,1332]},o($VF2,[2,624]),o($VD1,[2,368]),{310:[1,1333]},o($VD1,[2,375]),{99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,310:[2,379],315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1334,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{4:$VZ3,7:883,276:1335,391:882,393:$V_3},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1336,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VF2,[2,646]),o($V94,[2,653]),o($Va4,[2,641]),o($VJ4,$VI4),o($VF2,[2,643]),o($Vd4,[2,648]),o($Vd4,[2,650]),o($Vd4,[2,651]),o($Vd4,[2,652]),o($VK4,[2,462],{74:$VL4}),{77:[1,1338],143:$VZ,144:1339,145:$VE1,152:$V01,181:$V41,201:1340,306:$Vp1,423:191,424:$Vt1,428:$Vu1},o($VK4,[2,468]),{74:$V55,78:[1,1341]},{74:$V65,78:[1,1343]},o([74,78,99,112,115,116,123,124,133,136,138,139,140,141,142,154,170,171,179,180,315,316,317,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337],$V75),o($V85,[2,484],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{40:1347,77:$Vg4,79:75,89:$V7,143:$VZ,144:983,145:$VE1,149:$Ve4,152:$V01,181:$V41,184:99,189:$Vb,201:984,306:$Vp1,345:1345,346:1346,348:$Vf4,423:191,424:$Vt1,428:$Vu1},o($VK4,[2,466],{74:$VL4}),o($VK,[2,722],{461:1348,462:1349,463:1350,312:$VO4,468:[1,1351]}),o($V95,[2,706]),o($V95,[2,707]),{154:[1,1353],464:[1,1352]},{99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,312:[2,703],315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($VK2,[2,179]),{2:$V1,3:1354,4:$V2,5:$V3},o($VK,[2,579]),o($Va5,[2,238],{84:1355,128:[1,1356]}),o($VP4,[2,1051]),{77:[1,1357]},{77:[1,1358]},o($Vh4,[2,169],{204:1359,215:1361,205:1362,216:1363,221:1366,74:$Vb5,206:$Vc5,208:$Vd5,222:$Ve5,223:$Vf5,224:$Vg5,225:$Vh5,226:$Vi5,227:$Vj5,228:$Vk5,229:$Vl5}),{2:$V1,3:221,4:$V2,5:$V3,40:714,77:$Vy1,79:75,89:$V7,132:$Vz1,143:$VZ,144:214,145:$V_,152:$V01,156:$VL,181:$V41,184:99,189:$Vb,199:215,200:217,201:216,202:219,203:1375,209:1216,213:$VA1,214:220,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,306:$Vp1,423:191,424:$Vt1,428:$Vu1},o($Vm5,[2,177]),{2:$V1,3:1015,4:$V2,5:$V3,110:1376,111:1013,112:$Vi4},o($VQ4,[2,87]),o($Vj4,[2,147],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{78:[1,1377]},{74:$Vz3,78:[2,1071]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,78:[2,1064],94:1382,111:150,113:154,120:1378,121:1379,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,241:1380,244:$V51,245:$V61,246:[1,1381],258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($Vn4,[2,98]),o($VR4,[2,1067],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,78:[1,1383],112:$VU2,114:739,115:$V12,116:$V22,117:1384,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},o($VR4,[2,1068],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),{78:[1,1385],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{78:[1,1386],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{78:[1,1387]},o($Vn4,[2,120]),{74:$VV4,78:[1,1388]},o($Vn4,[2,122]),{74:$Vz3,78:[1,1389]},{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,78:[1,1390],112:$VU2,114:739,115:$V12,116:$V22,117:1391,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,78:[1,1392],112:$VU2,114:739,115:$V12,116:$V22,117:1393,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,78:[1,1394],112:$VU2,114:739,115:$V12,116:$V22,117:1395,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,78:[1,1396],112:$VU2,114:739,115:$V12,116:$V22,117:1397,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},{74:$Vn5,78:[1,1398]},o($V85,[2,143],{423:191,3:736,114:739,144:761,158:771,160:772,117:1400,2:$V1,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,112:$VU2,115:$V12,116:$V22,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,424:$Vt1,428:$Vu1}),o($VS4,$VT4,{178:1239,163:1401}),{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,78:[1,1402],112:$VU2,114:739,115:$V12,116:$V22,117:1403,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,78:[1,1404],112:$VU2,114:739,115:$V12,116:$V22,117:1405,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},{74:$Vn5,78:[1,1406]},{74:$Vn5,78:[1,1407]},{74:$Vn5,78:[1,1408]},{74:$Vn5,78:[1,1409]},{78:[1,1410],153:1019,179:$Vk4,180:$Vl4,181:$Vm4},{74:$Vs4,78:[1,1411]},{2:$V1,3:736,4:$V2,5:$V3,72:$VR2,74:[1,1412],76:$VS2,77:$VT2,112:$VU2,114:739,115:$V12,116:$V22,117:1413,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,144:761,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,158:771,160:772,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1414,4:$V2,5:$V3},{2:$V1,3:1415,4:$V2,5:$V3},o($VK,[2,602]),{2:$V1,3:1416,4:$V2,5:$V3},{113:1417,132:$VX,300:$Vl1},{78:[1,1418]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1419,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1015,4:$V2,5:$V3,111:1069,143:$Vo4,145:$Vp4,340:1420,341:1070},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1421,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{124:[1,1422]},o($VK,[2,658],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($VX4,[2,663]),{78:[1,1423],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($VK,[2,659],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1424,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($Vt4,[2,275]),o($Vt4,[2,277]),o($Vt4,[2,279]),o($Vt4,[2,281]),o($VJ1,[2,161]),o($VK,[2,574]),{148:[1,1425]},o($VK,[2,575]),o($VF3,[2,541],{391:882,7:883,276:1426,4:$VZ3,390:[1,1427],393:$V_3}),o($VK,[2,576]),o($VK,[2,578]),{74:$Vz3,78:[1,1428]},o($VK,[2,582]),o($VB2,[2,349]),{74:[1,1429],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{74:[1,1430],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{74:[1,1431],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{74:[1,1432],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{74:[1,1433],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($VK,[2,586]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:1434,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1435,4:$V2,5:$V3},o($VK,[2,588]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1382,111:150,113:154,120:1436,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,241:1380,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{77:[1,1437]},{2:$V1,3:1438,4:$V2,5:$V3},{76:$Vu4,139:[2,1154],484:1439,487:1440},o($V_4,[2,1153]),{139:[1,1441]},{139:[2,1157]},o($VF3,[2,742]),o($VQ3,[2,749]),o($VQ3,[2,1171]),{2:$V1,3:1273,4:$V2,5:$V3,76:[1,1444],355:1442,362:1443,388:1445},{2:$V1,3:1015,4:$V2,5:$V3,100:1446,111:1447},{40:1448,79:75,89:$V7,184:99,189:$Vb},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1449,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VK4,[2,727]),{2:$V1,3:1015,4:$V2,5:$V3,111:1069,143:$Vo4,145:$Vp4,147:1450,340:1068,341:1070},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:1451,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VK4,[2,732]),{2:$V1,3:246,4:$V2,5:$V3,199:1452},{339:$Vw4,342:$Vx4,343:$Vy4,515:1453},o($VX1,[2,696],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1454,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{74:[1,1455],78:[1,1456]},o($V85,[2,548]),o($V85,[2,549]),{74:$V65,78:[1,1457]},o($VX1,[2,570]),o($VB4,[2,385],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,316:$Vi2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2}),o($VB4,[2,387],{114:628,331:640,115:$V12,116:$V22,123:$V32,133:$V52,136:$V62,138:$V72,141:$Va2,142:$Vb2,179:$Vf2,180:$Vg2,316:$Vi2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2}),o($VD1,[2,401]),o($VD1,[2,405]),{78:[1,1458]},{74:$Vz3,78:[1,1459]},o($VD1,[2,427]),o($VD1,[2,429]),{78:[1,1460],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{78:[1,1461]},{74:$Vz3,78:[1,1462]},o($VD1,[2,432]),o($VD1,[2,330]),{77:[1,1463]},o($VD1,$V35,{279:1464,280:$V45}),o($VD1,$V35,{279:1465,280:$V45}),o($VJ4,[2,287]),o($VD1,[2,284]),o($VD1,[2,374]),o($V84,[2,378],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{74:[1,1467],78:[1,1466]},{74:[1,1469],78:[1,1468],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{2:$V1,3:1331,4:$V2,5:$V3},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1199,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,349:1470,423:191,424:$Vt1,428:$Vu1},o($VN4,[2,482]),o($VN4,[2,483]),{40:1473,77:$Vg4,79:75,89:$V7,143:$VZ,144:983,145:$VE1,149:$Ve4,152:$V01,181:$V41,184:99,189:$Vb,201:984,306:$Vp1,345:1471,346:1472,348:$Vf4,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1015,4:$V2,5:$V3,111:1474},o($VN4,[2,478]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1475,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{77:$Vg4,143:$VZ,144:983,145:$VE1,152:$V01,181:$V41,201:984,306:$Vp1,346:1476,423:191,424:$Vt1,428:$Vu1},o($VK4,[2,465],{74:$VL4}),o($VK4,[2,472]),o($VK,[2,699]),o($V95,[2,704]),o($V95,[2,705]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:820,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,174:1477,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,257:819,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{170:[1,1479],313:[1,1478]},{464:[1,1480]},o($VK2,[2,180]),o($Vo5,[2,240],{85:1481,232:[1,1482]}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1483,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1484,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1485,4:$V2,5:$V3},o($Vh4,[2,170],{216:1363,221:1366,215:1486,205:1487,206:$Vc5,208:$Vd5,222:$Ve5,223:$Vf5,224:$Vg5,225:$Vh5,226:$Vi5,227:$Vj5,228:$Vk5,229:$Vl5}),{2:$V1,3:221,4:$V2,5:$V3,77:$Vy1,132:$Vz1,143:$VZ,144:214,145:$V_,152:$V01,156:$VL,181:$V41,199:215,200:217,201:216,202:219,209:1488,213:$VA1,214:220,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,306:$Vp1,423:191,424:$Vt1,428:$Vu1},o($Vp5,[2,205]),o($Vp5,[2,206]),{2:$V1,3:221,4:$V2,5:$V3,77:[1,1493],143:$VZ,144:1491,145:$V_,152:$V01,156:$VL,181:$V41,199:1490,200:1494,201:1492,202:1495,217:1489,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,306:$Vp1,423:191,424:$Vt1,428:$Vu1},{207:[1,1496],223:$Vq5},{207:[1,1498],223:$Vr5},o($Vs5,[2,222]),{206:[1,1502],208:[1,1501],221:1500,223:$Vf5,224:$Vg5,225:$Vh5,226:$Vi5,227:$Vj5,228:$Vk5,229:$Vl5},o($Vs5,[2,224]),{223:[1,1503]},{208:[1,1505],223:[1,1504]},{208:[1,1507],223:[1,1506]},{208:[1,1508]},{223:[1,1509]},{223:[1,1510]},{74:$Vb5,204:1511,205:1362,206:$Vc5,208:$Vd5,215:1361,216:1363,221:1366,222:$Ve5,223:$Vf5,224:$Vg5,225:$Vh5,226:$Vi5,227:$Vj5,228:$Vk5,229:$Vl5},o($VQ4,[2,84]),o($Vn4,[2,100]),{74:$Vt5,78:[1,1512]},{78:[1,1514]},o($Vu5,[2,261]),{78:[2,1065]},o($Vu5,[2,265],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,246:[1,1515],247:[1,1516],315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($Vn4,[2,99]),o($VR4,[2,1069],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),o($Vn4,[2,101]),o($Vn4,[2,102]),o($Vn4,[2,103]),o($Vn4,[2,121]),o($Vn4,[2,124]),o($Vn4,[2,127]),o($VR4,[2,1073],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),o($Vn4,[2,128]),o($VR4,[2,1075],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),o($Vn4,[2,129]),o($VR4,[2,1077],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),o($Vn4,[2,130]),o($VR4,[2,1081],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),o($Vn4,[2,131]),o($VS4,[2,1088],{177:1517}),o($VS4,[2,1091],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),{74:$Vn5,78:[1,1518]},o($Vn4,[2,133]),o($VR4,[2,1083],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),o($Vn4,[2,134]),o($VR4,[2,1085],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),o($Vn4,[2,135]),o($Vn4,[2,136]),o($Vn4,[2,137]),o($Vn4,[2,138]),o($Vn4,[2,139]),o($Vn4,[2,140]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:262,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,151:1519,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VU4,[2,1087],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),o($VK,[2,612]),o($VK,[2,608]),o($VK,[2,610]),o($VK,[2,606]),o($Vx3,[2,71]),o($VK,[2,454],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($VW4,[2,457]),o($VW4,[2,458],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1520,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VX4,[2,667]),o($VK,[2,660],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{2:$V1,3:1521,4:$V2,5:$V3},o($VF3,[2,550],{389:1522,395:1523,396:1524,370:1532,154:$Vv5,187:$Vw5,230:$Vx5,301:$Vy5,347:$Vz5,360:$VA5,372:$VB5,373:$VC5,377:$VD5,378:$VE5}),o($VF3,[2,540]),o($VK,[2,581],{76:[1,1536]}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1537,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1538,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1539,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1540,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1541,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{74:$Vz3,78:[1,1542]},o($VK,[2,590]),{74:$Vt5,78:[1,1543]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1382,111:150,113:154,120:1544,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,241:1380,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o([10,74,78,139,310,314,606,767],[2,746]),{139:[1,1545]},{139:[2,1155]},{2:$V1,3:1127,4:$V2,5:$V3,132:$VT1,137:$VU1,143:$VH1,145:$VI1,152:$VV1,435:588,479:1129,482:1546,486:585,497:582,501:584},{78:[1,1547]},{74:[1,1548],78:[2,511]},{40:1549,79:75,89:$V7,184:99,189:$Vb},o($V85,[2,537]),{74:$V55,78:[1,1550]},o($Vm5,$V75),o($VK,[2,1138],{416:1551,417:1552,72:$VF5}),o($VK4,$V$4,{79:75,184:99,114:628,331:640,40:1305,472:1554,89:$V7,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,146:$V05,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,189:$Vb,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2,474:$V15}),o($VK4,[2,730],{74:$VV4}),o($VK4,[2,731],{74:$Vz3}),o([10,53,72,89,124,146,156,189,270,271,293,310,314,339,342,343,400,404,405,408,410,412,413,421,422,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,521,606,767],[2,1186],{516:1555,3:1556,2:$V1,4:$V2,5:$V3,76:[1,1557]}),o($VG5,[2,1188],{517:1558,76:[1,1559]}),o($VX1,[2,697],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{131:[1,1560]},o($Vz4,[2,543]),o($Vz4,[2,545]),o($VD1,[2,417]),o($VD1,[2,418]),o($VD1,[2,444]),o($VD1,[2,428]),o($VD1,[2,430]),{118:$VH5,281:1561,282:1562,283:[1,1563]},o($VD1,[2,331]),o($VD1,[2,332]),o($VD1,[2,319]),{131:[1,1565]},o($VD1,[2,321]),{131:[1,1566]},{74:$V65,78:[1,1567]},{77:$Vg4,143:$VZ,144:983,145:$VE1,152:$V01,181:$V41,201:984,306:$Vp1,346:1568,423:191,424:$Vt1,428:$Vu1},o($VK4,[2,470],{74:$VL4}),o($VK4,[2,473]),o($Vm5,[2,493]),o($V85,[2,485],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($VK4,[2,464],{74:$VL4}),o($VK,[2,723],{74:$Vs4,198:[1,1569]}),{339:$VI5,342:$VJ5,465:1570},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1573,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{119:[1,1575],170:[1,1576],313:[1,1574]},o($VK5,[2,259],{86:1577,118:[1,1578]}),{119:[1,1579]},o($Va5,[2,239],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{95:[1,1580],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{95:[1,1581]},o($Vp5,[2,203]),o($Vp5,[2,204]),o($Vm5,[2,178]),o($Vp5,[2,237],{218:1582,230:[1,1583],231:[1,1584]}),o($VL5,[2,208],{3:1585,2:$V1,4:$V2,5:$V3,76:[1,1586]}),o($VM5,[2,1100],{219:1587,76:[1,1588]}),{2:$V1,3:1589,4:$V2,5:$V3,76:[1,1590]},{40:1591,79:75,89:$V7,184:99,189:$Vb},o($VL5,[2,216],{3:1592,2:$V1,4:$V2,5:$V3,76:[1,1593]}),o($VL5,[2,219],{3:1594,2:$V1,4:$V2,5:$V3,76:[1,1595]}),{77:[1,1596]},o($Vs5,[2,234]),{77:[1,1597]},o($Vs5,[2,230]),o($Vs5,[2,223]),{223:$Vr5},{223:$Vq5},o($Vs5,[2,225]),o($Vs5,[2,226]),{223:[1,1598]},o($Vs5,[2,228]),{223:[1,1599]},{223:[1,1600]},o($Vs5,[2,232]),o($Vs5,[2,233]),{78:[1,1601],205:1487,206:$Vc5,208:$Vd5,215:1486,216:1363,221:1366,222:$Ve5,223:$Vf5,224:$Vg5,225:$Vh5,226:$Vi5,227:$Vj5,228:$Vk5,229:$Vl5},o($Vn4,[2,91]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1382,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,241:1602,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($Vn4,[2,92]),o($Vu5,[2,266],{242:1603,243:[1,1604]}),{248:[1,1605]},o($V85,[2,142],{423:191,3:736,114:739,144:761,158:771,160:772,117:1606,2:$V1,4:$V2,5:$V3,72:$VR2,76:$VS2,77:$VT2,112:$VU2,115:$V12,116:$V22,118:$VV2,122:$VW2,123:$VX2,124:$VY2,128:$VZ2,129:$V_2,130:$V$2,131:$V03,132:$V13,133:$V23,134:$V33,135:$V43,136:$V53,137:$V63,138:$V73,139:$V83,140:$V93,141:$Va3,142:$Vb3,143:$Vc3,145:$Vd3,146:$Ve3,148:$Vf3,149:$Vg3,150:$Vh3,152:$Vi3,154:$Vj3,156:$Vk3,162:$Vl3,164:$Vm3,166:$Vn3,168:$Vo3,169:$Vp3,170:$Vq3,171:$Vr3,172:$Vs3,173:$Vt3,175:$Vu3,185:$Vv3,187:$Vw3,244:$V51,245:$V61,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,424:$Vt1,428:$Vu1}),o($Vn4,[2,132]),{74:$Vz3,78:[1,1607]},o($VW4,[2,459],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($VK,[2,577]),o($VF3,[2,539]),o($VF3,[2,551],{370:1532,396:1608,154:$Vv5,187:$Vw5,230:$Vx5,301:$Vy5,347:$Vz5,360:$VA5,372:$VB5,373:$VC5,377:$VD5,378:$VE5}),o($Vy3,[2,553]),{374:[1,1609]},{374:[1,1610]},{2:$V1,3:246,4:$V2,5:$V3,199:1611},o($Vy3,[2,559],{77:[1,1612]}),{2:$V1,3:114,4:$V2,5:$V3,77:[1,1614],113:253,131:$VW,132:$VX,143:$VZ,152:$V01,156:$VL,181:$V41,196:252,200:1615,201:256,261:254,262:255,269:$VF1,278:1613,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,306:$Vp1},o($Vy3,[2,563]),{301:[1,1616]},o($Vy3,[2,565]),o($Vy3,[2,566]),{339:[1,1617]},{77:[1,1618]},{2:$V1,3:1619,4:$V2,5:$V3},{78:[1,1620],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{78:[1,1621],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{78:[1,1622],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{78:[1,1623],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{78:[1,1624],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($VK,$VY4,{411:1625,76:$VZ4}),o($VK,[2,596]),{74:$Vt5,78:[1,1626]},{2:$V1,3:1127,4:$V2,5:$V3,132:$VT1,137:$VU1,143:$VH1,145:$VI1,152:$VV1,435:588,479:1129,482:1627,486:585,497:582,501:584},o($VF3,[2,740]),o($VK,[2,498],{356:1628,358:1629,359:1630,4:$VN5,247:$VO5,347:$VP5,360:$VQ5}),o($VR5,$VS5,{3:1273,363:1635,388:1636,364:1637,365:1638,2:$V1,4:$V2,5:$V3,371:$VT5}),{78:[2,512]},{76:[1,1640]},o($VK,[2,614]),o($VK,[2,1139]),{372:[1,1642],418:[1,1641]},o($VK4,[2,733]),o($VK,$V0,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:1643,2:$V1,4:$V2,5:$V3,53:$V5,72:$V6,89:$V7,124:$V8,146:$V9,156:$Va,189:$Vb,270:$Vc,271:$Vd,293:$Ve,339:$Vf,342:$Vg,343:$Vh,400:$Vi,404:$Vj,405:$Vk,408:$Vl,410:$Vm,412:$Vn,413:$Vo,421:$Vp,422:$Vq,438:$Vr,440:$Vs,441:$Vt,443:$Vu,444:$Vv,445:$Vw,446:$Vx,447:$Vy,451:$Vz,452:$VA,455:$VB,456:$VC,509:$VD,511:$VE,512:$VF,521:$VG}),o($VK,[2,767]),o($VG5,[2,1187]),o($VK,$V0,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:1644,2:$V1,4:$V2,5:$V3,53:$V5,72:$V6,89:$V7,124:$V8,146:$V9,156:$Va,189:$Vb,270:$Vc,271:$Vd,293:$Ve,339:$Vf,342:$Vg,343:$Vh,400:$Vi,404:$Vj,405:$Vk,408:$Vl,410:$Vm,412:$Vn,413:$Vo,421:$Vp,422:$Vq,438:$Vr,440:$Vs,441:$Vt,443:$Vu,444:$Vv,445:$Vw,446:$Vx,447:$Vy,451:$Vz,452:$VA,455:$VB,456:$VC,509:$VD,511:$VE,512:$VF,521:$VG}),o($VG5,[2,1189]),{78:[1,1645]},{78:[1,1646],118:$VH5,282:1647},{78:[1,1648]},{119:[1,1649]},{119:[1,1650]},{78:[1,1651]},{78:[1,1652]},o($VN4,[2,481]),o($VK4,[2,469],{74:$VL4}),{2:$V1,3:246,4:$V2,5:$V3,143:$VH1,145:$VI1,199:1654,435:1653},o($V95,[2,708]),o($V95,[2,710]),{146:[1,1655]},{99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,313:[1,1656],315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},{343:$VU5,466:1657},{421:[1,1660],467:[1,1659]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1661,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VV5,[2,270],{87:1662,249:[1,1663],251:[1,1664]}),{119:[1,1665]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1671,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,233:1666,235:1667,236:$VW5,237:$VX5,238:$VY5,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1672,4:$V2,5:$V3},{2:$V1,3:1673,4:$V2,5:$V3},o($Vp5,[2,207]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1674,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1015,4:$V2,5:$V3,100:1675,111:1447},o($VL5,[2,209]),{2:$V1,3:1676,4:$V2,5:$V3},o($VL5,[2,1102],{220:1677,3:1678,2:$V1,4:$V2,5:$V3}),o($VM5,[2,1101]),o($VL5,[2,212]),{2:$V1,3:1679,4:$V2,5:$V3},{78:[1,1680]},o($VL5,[2,217]),{2:$V1,3:1681,4:$V2,5:$V3},o($VL5,[2,220]),{2:$V1,3:1682,4:$V2,5:$V3},{40:1683,79:75,89:$V7,184:99,189:$Vb},{40:1684,79:75,89:$V7,184:99,189:$Vb},o($Vs5,[2,227]),o($Vs5,[2,229]),o($Vs5,[2,231]),o($Vh4,[2,171]),o($Vu5,[2,262]),o($Vu5,[2,267]),{244:[1,1685],245:[1,1686]},o($Vu5,[2,268],{246:[1,1687]}),o($VS4,[2,1089],{153:1019,179:$Vk4,180:$Vl4,181:$Vm4}),o($Vn4,[2,141]),o($Vy3,[2,552]),o($Vy3,[2,555]),{378:[1,1688]},o($Vy3,[2,1132],{399:1689,397:1690,77:$VZ5}),{131:$VW,196:1692},o($Vy3,[2,560]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1693,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($Vy3,[2,562]),o($Vy3,[2,564]),{2:$V1,3:114,4:$V2,5:$V3,77:[1,1695],113:253,131:$VW,132:$VX,143:$VZ,152:$V01,156:$VL,181:$V41,196:252,200:257,201:256,261:254,262:255,269:$VF1,278:1694,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,306:$Vp1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1696,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VK,[2,583]),o($VB2,[2,353]),o($VB2,[2,354]),o($VB2,[2,355]),o($VB2,[2,356]),o($VB2,[2,357]),o($VK,[2,587]),o($VK,[2,597]),o($VF3,[2,739]),o($VK,[2,494]),o($VK,[2,499],{359:1697,4:$VN5,247:$VO5,347:$VP5,360:$VQ5}),o($V_5,[2,501]),o($V_5,[2,502]),{124:[1,1698]},{124:[1,1699]},{124:[1,1700]},{74:[1,1701],78:[2,510]},o($V85,[2,538]),o($V85,[2,513]),{187:[1,1709],193:[1,1710],366:1702,367:1703,368:1704,369:1705,370:1706,372:$VB5,373:[1,1707],374:[1,1711],377:[1,1708]},{2:$V1,3:1712,4:$V2,5:$V3},{40:1713,79:75,89:$V7,184:99,189:$Vb},{419:[1,1714]},{420:[1,1715]},o($VK,[2,766]),o($VK,[2,768]),o($Vz4,[2,542]),o($VD1,[2,334]),{78:[1,1716]},o($VD1,[2,335]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1671,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,233:1717,235:1667,236:$VW5,237:$VX5,238:$VY5,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1382,111:150,113:154,120:1718,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,241:1380,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($VD1,[2,320]),o($VD1,[2,322]),{2:$V1,3:1719,4:$V2,5:$V3},o($VK,[2,725],{77:[1,1720]}),{2:$V1,3:1015,4:$V2,5:$V3,111:1069,143:$Vo4,145:$Vp4,147:1721,340:1068,341:1070},{339:$VI5,342:$VJ5,465:1722},o($V95,[2,712]),{77:[1,1724],347:[1,1725],348:[1,1723]},{170:[1,1727],313:[1,1726]},{170:[1,1729],313:[1,1728]},{99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,313:[1,1730],315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($Vj4,[2,250],{88:1731,162:[1,1732],168:[1,1734],169:[1,1733]}),{131:$VW,196:1735},{131:$VW,196:1736},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1382,111:150,113:154,120:1737,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,241:1380,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},o($Vo5,[2,248],{234:1738,74:$V$5,239:[1,1740]}),o($V06,[2,242]),{146:[1,1741]},{77:[1,1742]},{77:[1,1743]},o($V06,[2,247],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{78:[2,1056],96:1744,99:[1,1746],102:1745},{99:[1,1747]},o($Vp5,[2,235],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),o($Vp5,[2,236],{74:$V55}),o($VL5,[2,210]),o($VL5,[2,211]),o($VL5,[2,1103]),o($VL5,[2,213]),{2:$V1,3:1748,4:$V2,5:$V3,76:[1,1749]},o($VL5,[2,218]),o($VL5,[2,221]),{78:[1,1750]},{78:[1,1751]},o($Vu5,[2,263]),o($Vu5,[2,264]),o($Vu5,[2,269]),{2:$V1,3:246,4:$V2,5:$V3,199:1752},o($Vy3,[2,557]),o($Vy3,[2,1133]),{2:$V1,3:1753,4:$V2,5:$V3},{74:[1,1754]},{78:[1,1755],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($Vy3,[2,567]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1756,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{78:[1,1757],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($V_5,[2,500]),{2:$V1,3:1758,4:$V2,5:$V3},{131:$VW,196:1759},{2:$V1,3:1760,4:$V2,5:$V3},o($VR5,$VS5,{365:1638,364:1761,371:$VT5}),o($VF3,[2,515]),o($VF3,[2,516]),o($VF3,[2,517]),o($VF3,[2,518]),o($VF3,[2,519]),{374:[1,1762]},{374:[1,1763]},o($V16,[2,1126],{386:1764,374:[1,1765]}),{2:$V1,3:1766,4:$V2,5:$V3},{2:$V1,3:1767,4:$V2,5:$V3},o($VR5,[2,521]),o($VK,[2,1136],{415:1768,417:1769,72:$VF5}),o($VK,[2,615]),o($VK,[2,616],{371:[1,1770]}),o($VD1,[2,336]),o([78,118],[2,337],{74:$V$5}),{74:$Vt5,78:[2,338]},o($VK,[2,724]),{2:$V1,3:1015,4:$V2,5:$V3,100:1771,111:1447},o($V95,[2,711],{74:$VV4}),o($V95,[2,709]),{77:$Vg4,143:$VZ,144:983,145:$VE1,152:$V01,181:$V41,201:984,306:$Vp1,346:1772,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1015,4:$V2,5:$V3,100:1773,111:1447},{348:[1,1774]},{343:$VU5,466:1775},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1776,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{343:$VU5,466:1777},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1778,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{343:$VU5,466:1779},o($Vj4,[2,72]),{40:1780,79:75,89:$V7,164:[1,1781],184:99,189:$Vb,240:[1,1782]},{40:1783,79:75,89:$V7,184:99,189:$Vb,240:[1,1784]},{40:1785,79:75,89:$V7,184:99,189:$Vb,240:[1,1786]},o($VV5,[2,273],{250:1787,251:[1,1788]}),{252:1789,253:[2,1104],769:[1,1790]},o($VK5,[2,260],{74:$Vt5}),o($Vo5,[2,241]),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1671,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,235:1791,236:$VW5,237:$VX5,238:$VY5,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1792,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{77:[1,1793]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1671,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,233:1794,235:1667,236:$VW5,237:$VX5,238:$VY5,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1671,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,233:1795,235:1667,236:$VW5,237:$VX5,238:$VY5,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{78:[1,1796]},{78:[2,1057]},{77:[1,1797]},{77:[1,1798]},o($VL5,[2,214]),{2:$V1,3:1799,4:$V2,5:$V3},{2:$V1,3:1800,4:$V2,5:$V3,76:[1,1801]},{2:$V1,3:1802,4:$V2,5:$V3,76:[1,1803]},o($Vy3,[2,1130],{398:1804,397:1805,77:$VZ5}),{78:[1,1806]},{131:$VW,196:1807},o($Vy3,[2,561]),{78:[1,1808],99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($Vy3,[2,522]),o($V_5,[2,503]),o($V_5,[2,504]),o($V_5,[2,505]),o($V85,[2,514]),{2:$V1,3:1810,4:$V2,5:$V3,77:[2,1122],375:1809},{77:[1,1811]},{2:$V1,3:1813,4:$V2,5:$V3,77:[2,1128],387:1812},o($V16,[2,1127]),{77:[1,1814]},{77:[1,1815]},o($VK,[2,613]),o($VK,[2,1137]),o($VR5,$VS5,{365:1638,364:1816,371:$VT5}),{74:$V55,78:[1,1817]},o($V95,[2,718],{74:$VL4}),{74:$V55,78:[1,1818]},o($V95,[2,720]),o($V95,[2,713]),{99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,313:[1,1819],315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($V95,[2,716]),{99:$V$1,112:$V02,114:628,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,313:[1,1820],315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,331:640,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2},o($V95,[2,714]),o($Vj4,[2,251]),{40:1821,79:75,89:$V7,184:99,189:$Vb,240:[1,1822]},{40:1823,79:75,89:$V7,184:99,189:$Vb},o($Vj4,[2,253]),{40:1824,79:75,89:$V7,184:99,189:$Vb},o($Vj4,[2,254]),{40:1825,79:75,89:$V7,184:99,189:$Vb},o($VV5,[2,271]),{131:$VW,196:1826},{253:[1,1827]},{253:[2,1105]},o($V06,[2,243]),o($Vo5,[2,249],{114:628,331:640,99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1671,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,233:1828,235:1667,236:$VW5,237:$VX5,238:$VY5,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{74:$V$5,78:[1,1829]},{74:$V$5,78:[1,1830]},o($VP4,[2,1058],{97:1831,104:1832,3:1834,2:$V1,4:$V2,5:$V3,76:$V26}),{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1837,103:1835,105:1836,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1015,4:$V2,5:$V3,100:1838,111:1447},o($VL5,[2,215]),o($Vp5,[2,173]),{2:$V1,3:1839,4:$V2,5:$V3},o($Vp5,[2,175]),{2:$V1,3:1840,4:$V2,5:$V3},o($Vy3,[2,556]),o($Vy3,[2,1131]),o($Vy3,[2,554]),{78:[1,1841]},o($Vy3,[2,568]),{77:[1,1842]},{77:[2,1123]},{2:$V1,3:1844,4:$V2,5:$V3,132:$V36,376:1843},{77:[1,1846]},{77:[2,1129]},{2:$V1,3:1015,4:$V2,5:$V3,100:1847,111:1447},{2:$V1,3:1015,4:$V2,5:$V3,100:1848,111:1447},o($VK,[2,617]),o($VK,[2,726]),{347:[1,1850],348:[1,1849]},{343:$VU5,466:1851},{339:$VI5,342:$VJ5,465:1852},o($Vj4,[2,252]),{40:1853,79:75,89:$V7,184:99,189:$Vb},o($Vj4,[2,255]),o($Vj4,[2,257]),o($Vj4,[2,258]),o($VV5,[2,274]),{131:[2,1106],254:1854,649:[1,1855]},{74:$V$5,78:[1,1856]},o($V06,[2,245]),o($V06,[2,246]),o($VP4,[2,74]),o($VP4,[2,1059]),{2:$V1,3:1857,4:$V2,5:$V3},o($VP4,[2,78]),{74:[1,1859],78:[1,1858]},o($V85,[2,80]),o($V85,[2,81],{114:628,331:640,76:[1,1860],99:$V$1,112:$V02,115:$V12,116:$V22,123:$V32,124:$VB3,133:$V52,136:$V62,138:$V72,139:$V82,140:$V92,141:$Va2,142:$Vb2,154:$Vc2,170:$Vd2,171:$Ve2,179:$Vf2,180:$Vg2,315:$Vh2,316:$Vi2,317:$Vj2,319:$Vk2,320:$Vl2,321:$Vm2,322:$Vn2,323:$Vo2,324:$Vp2,325:$Vq2,326:$Vr2,327:$Vs2,328:$Vt2,329:$Vu2,330:$Vv2,334:$Vw2,335:$Vx2,336:$Vy2,337:$Vz2}),{74:$V55,78:[1,1861]},o($Vp5,[2,174]),o($Vp5,[2,176]),o($Vy3,[2,558]),{2:$V1,3:1844,4:$V2,5:$V3,132:$V36,376:1862},{74:$V46,78:[1,1863]},o($V85,[2,533]),o($V85,[2,534]),{2:$V1,3:1015,4:$V2,5:$V3,100:1865,111:1447},{74:$V55,78:[1,1866]},{74:$V55,78:[1,1867]},{77:$Vg4,143:$VZ,144:983,145:$VE1,152:$V01,181:$V41,201:984,306:$Vp1,346:1868,423:191,424:$Vt1,428:$Vu1},{348:[1,1869]},o($V95,[2,715]),o($V95,[2,717]),o($Vj4,[2,256]),{131:$VW,196:1870},{131:[2,1107]},o($V06,[2,244]),o($VP4,[2,77]),{78:[2,76]},{2:$V1,3:169,4:$V2,5:$V3,56:166,77:$VV,94:1837,105:1871,111:150,113:154,131:$VW,132:$VX,137:$VY,143:$VZ,144:162,145:$V_,149:$V$,152:$V01,154:$V11,156:$VL,158:168,179:$V21,180:$V31,181:$V41,196:152,200:148,201:156,202:157,244:$V51,245:$V61,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:$V71,270:$Vc,274:$V81,275:$V91,277:$Va1,284:$Vb1,285:$Vc1,286:$Vd1,287:$Ve1,288:$Vf1,289:$Vg1,290:$Vh1,291:$Vi1,293:$VM,294:$VN,295:$VO,296:$VP,297:$VQ,298:$Vj1,299:$Vk1,300:$Vl1,301:$Vm1,302:$Vn1,303:$Vo1,306:$Vp1,307:$Vq1,316:$Vr1,321:$Vs1,423:191,424:$Vt1,428:$Vu1},{2:$V1,3:1872,4:$V2,5:$V3},{78:[1,1873]},{74:$V46,78:[1,1874]},{378:[1,1875]},{2:$V1,3:1876,4:$V2,5:$V3,132:[1,1877]},{74:$V55,78:[1,1878]},o($VF3,[2,531]),o($VF3,[2,532]),o($V95,[2,719],{74:$VL4}),o($V95,[2,721]),o($V56,[2,1108],{255:1879,769:[1,1880]}),o($V85,[2,79]),o($V85,[2,82]),o($VP4,[2,1060],{3:1834,101:1881,104:1882,2:$V1,4:$V2,5:$V3,76:$V26}),o($VF3,[2,523]),{2:$V1,3:246,4:$V2,5:$V3,199:1883},o($V85,[2,535]),o($V85,[2,536]),o($VF3,[2,530]),o($VV5,[2,1110],{256:1884,419:[1,1885]}),o($V56,[2,1109]),o($VP4,[2,75]),o($VP4,[2,1061]),o($V66,[2,1124],{379:1886,381:1887,77:[1,1888]}),o($VV5,[2,272]),o($VV5,[2,1111]),o($VF3,[2,526],{380:1889,382:1890,230:[1,1891]}),o($V66,[2,1125]),{2:$V1,3:1844,4:$V2,5:$V3,132:$V36,376:1892},o($VF3,[2,524]),{230:[1,1894],383:1893},{342:[1,1895]},{74:$V46,78:[1,1896]},o($VF3,[2,527]),{339:[1,1897]},{384:[1,1898]},o($V66,[2,525]),{384:[1,1899]},{385:[1,1900]},{385:[1,1901]},{230:[2,528]},o($VF3,[2,529])], -defaultActions: {105:[2,6],195:[2,339],196:[2,340],197:[2,341],198:[2,342],199:[2,343],200:[2,344],201:[2,345],202:[2,346],203:[2,347],204:[2,348],211:[2,700],594:[2,1147],656:[2,1112],657:[2,1113],713:[2,701],783:[2,1078],784:[2,1079],930:[2,451],931:[2,452],932:[2,453],991:[2,702],1294:[2,1157],1381:[2,1065],1440:[2,1155],1549:[2,512],1745:[2,1057],1790:[2,1105],1810:[2,1123],1813:[2,1129],1855:[2,1107],1858:[2,76],1900:[2,528]}, -parseError: function parseError (str, hash) { +table: bt({ + len: u([ + 107, + 1, + s, + [4, 3], + 5, + 105, + s, + [5, 54], + 1, + 4, + 11, + 18, + 3, + 1, + 1, + 11, + 70, + 6, + 5, + 30, + 4, + 1, + 22, + 70, + 9, + 1, + 6, + 107, + 1, + 1, + 5, + 5, + 154, + 3, + 33, + 70, + 5, + 5, + 76, + 11, + 7, + 70, + 1, + 6, + 11, + 70, + 73, + 9, + 78, + 177, + 177, + 268, + 1, + 104, + 45, + 45, + 4, + 1, + 5, + 1, + 5, + s, + [1, 6], + 70, + c, + [61, 3], + 1, + 18, + 4, + 5, + 18, + 4, + 1, + 1, + 3, + 6, + 6, + 4, + 5, + 4, + c, + [17, 3], + 5, + 5, + s, + [4, 3], + 143, + s, + [154, 18], + 81, + 154, + 154, + 1, + 154, + s, + [70, 5], + 154, + 182, + s, + [164, 4], + 163, + 6, + 4, + 164, + 164, + 20, + 1, + 73, + 1, + 1, + 157, + 38, + 71, + 11, + s, + [1, 10], + 9, + 5, + 1, + 3, + 5, + 2, + 1, + 28, + 5, + 35, + 36, + 35, + 35, + 30, + 35, + 35, + 38, + 34, + 5, + 5, + 20, + 19, + 6, + 77, + 1, + 1, + 6, + 1, + 1, + 7, + 5, + 6, + 3, + 1, + c, + [103, 3], + c, + [106, 4], + 79, + s, + [5, 3], + 6, + 16, + s, + [17, 7], + 143, + 6, + 5, + 47, + s, + [6, 6], + 8, + 4, + 3, + 3, + 44, + 6, + 6, + 7, + 5, + 44, + s, + [50, 3], + 93, + 3, + 6, + s, + [72, 7], + s, + [177, 268], + 4, + 104, + 4, + 4, + 53, + 71, + 71, + 5, + 5, + 70, + 43, + 4, + 1, + 7, + 1, + 4, + 6, + 70, + 7, + 16, + 2, + 19, + 16, + 16, + 13, + 9, + c, + [444, 3], + c, + [448, 4], + 1, + 1, + 15, + 13, + 9, + 1, + 1, + 2, + 6, + 6, + 5, + c, + [33, 3], + 5, + c, + [7, 3], + 6, + s, + [70, 16], + 14, + 14, + s, + [73, 5], + 70, + 70, + c, + [3, 3], + 4, + 70, + 70, + 16, + 2, + s, + [70, 3], + 5, + 11, + c, + [456, 4], + 40, + c, + [424, 3], + 2, + 73, + 6, + s, + [156, 5], + s, + [164, 4], + 156, + 70, + s, + [157, 5], + 5, + 42, + 5, + 3, + c, + [35, 3], + 157, + 2, + 157, + 2, + s, + [3, 9], + 70, + 155, + 2, + 154, + 154, + c, + [17, 3], + s, + [1, 3], + 21, + 5, + 15, + 2, + 28, + 1, + 1, + 35, + 33, + c, + [645, 3], + 30, + 4, + 30, + 4, + c, + [4, 4], + 4, + 1, + 19, + 20, + 8, + 4, + 10, + 73, + 73, + 1, + 73, + 4, + c, + [103, 3], + 69, + s, + [1, 4], + s, + [73, 6], + 4, + 5, + s, + [73, 6], + 20, + c, + [18, 4], + c, + [645, 3], + s, + [1, 3], + c, + [69, 4], + s, + [1, 8], + 5, + 5, + 3, + 6, + 5, + 3, + c, + [203, 3], + c, + [683, 3], + 5, + 10, + c, + [232, 3], + 73, + 3, + 6, + 73, + c, + [567, 4], + c, + [204, 3], + 5, + s, + [72, 3], + 20, + 21, + 21, + 69, + 70, + 2, + 2, + 4, + c, + [52, 4], + 7, + 71, + 164, + s, + [48, 3], + 2, + c, + [63, 5], + 40, + 164, + 5, + c, + [239, 3], + 1, + 16, + 44, + 10, + 8, + 15, + 15, + 17, + 16, + 15, + 16, + 14, + 13, + 13, + 15, + c, + [267, 3], + c, + [66, 3], + 14, + 12, + c, + [283, 3], + s, + [3, 3], + s, + [1, 3], + c, + [604, 3], + 162, + 162, + 1, + 162, + c, + [798, 3], + 7, + s, + [6, 3], + 5, + 105, + s, + [156, 16], + 154, + 154, + 70, + s, + [154, 3], + 70, + 154, + s, + [156, 4], + 84, + s, + [156, 5], + s, + [1, 4], + 156, + 156, + 77, + s, + [154, 4], + 5, + 16, + c, + [24, 4], + s, + [154, 5], + c, + [307, 3], + 154, + 155, + 154, + 40, + c, + [846, 3], + 3, + 70, + 40, + 40, + 1, + 157, + 36, + 40, + 5, + 154, + 157, + 8, + s, + [35, 3], + 12, + 7, + 3, + 72, + 6, + 14, + 14, + 9, + 9, + 5, + 12, + 7, + 71, + 4, + 70, + 1, + 35, + s, + [30, 8], + 98, + 4, + 19, + 29, + s, + [18, 5], + 4, + s, + [20, 3], + 3, + 32, + 7, + 7, + 70, + s, + [73, 5], + 1, + 73, + 95, + 95, + 69, + 66, + 69, + c, + [393, 3], + c, + [284, 5], + 10, + 4, + 71, + 73, + s, + [63, 4], + 65, + 1, + c, + [4, 3], + s, + [65, 3], + 68, + 72, + 63, + c, + [167, 3], + c, + [274, 3], + 6, + 3, + 5, + 7, + 10, + 1, + c, + [800, 3], + 5, + 47, + 156, + c, + [18, 3], + 44, + 70, + 7, + c, + [388, 4], + 70, + 4, + 7, + s, + [21, 3], + 71, + 8, + s, + [21, 3], + 68, + 68, + 1, + 8, + c, + [514, 5], + 71, + 4, + 2, + 164, + 164, + s, + [70, 5], + 5, + 8, + 7, + 1, + 5, + s, + [7, 3], + 3, + 8, + 4, + 17, + 7, + 7, + 2, + c, + [274, 4], + 6, + 2, + 40, + 14, + 10, + 12, + 1, + s, + [48, 3], + 8, + 3, + c, + [282, 3], + 7, + 162, + 3, + 162, + 71, + 44, + s, + [5, 4], + 70, + c, + [199, 3], + 76, + 1, + 2, + 154, + 70, + c, + [234, 3], + 156, + 40, + 40, + 5, + 157, + c, + [1010, 3], + 40, + 70, + 5, + 70, + c, + [498, 3], + 155, + 157, + s, + [2, 4], + 7, + 11, + 6, + 2, + 2, + 39, + 41, + 20, + 7, + 10, + c, + [75, 3], + 40, + 30, + 4, + 5, + 16, + 15, + 1, + 1, + 33, + 34, + 28, + 7, + 20, + 46, + 1, + 2, + 75, + 73, + 66, + 69, + 66, + c, + [264, 3], + 73, + 2, + 73, + 2, + s, + [69, 4], + 2, + 70, + 65, + c, + [5, 3], + s, + [2, 3], + 5, + 2, + 69, + c, + [149, 3], + 4, + 3, + 1, + 70, + 9, + 70, + 1, + 44, + 3, + 40, + 44, + 70, + s, + [21, 4], + 68, + c, + [476, 3], + 13, + 5, + 5, + 2, + 5, + 164, + s, + [40, 5], + 5, + 71, + 4, + 5, + 72, + c, + [1288, 3], + c, + [456, 3], + 7, + 13, + 13, + 8, + 6, + 5, + 70, + 6, + 10, + 71, + c, + [703, 3], + 45, + c, + [488, 3], + 2, + 2, + c, + [654, 3], + c, + [1151, 3], + c, + [621, 3], + 40, + c, + [5, 4], + c, + [396, 3], + 155, + 154, + 154, + 42, + 2, + 41, + 4, + 71, + 9, + 9, + 20, + 5, + 9, + 70, + 12, + 7, + 6, + c, + [228, 3], + 72, + 2, + 1, + 30, + 15, + c, + [271, 3], + 31, + 28, + 27, + 27, + 25, + 2, + 2, + 17, + 10, + 17, + 1, + c, + [535, 5], + 16, + 20, + 73, + 2, + 1, + 13, + 1, + 54, + 73, + 66, + s, + [73, 6], + 66, + c, + [9, 3], + c, + [4, 4], + 64, + 67, + 2, + c, + [8, 5], + s, + [73, 5], + 71, + 66, + s, + [5, 4], + 3, + 44, + 10, + 49, + 70, + 3, + 44, + 4, + 21, + 7, + c, + [817, 6], + c, + [188, 3], + 72, + 8, + c, + [846, 3], + 1, + c, + [9, 3], + 2, + 28, + 8, + 53, + 7, + 7, + 49, + 48, + 45, + 1, + 162, + 162, + s, + [154, 5], + 4, + s, + [154, 3], + 1, + c, + [150, 3], + c, + [126, 3], + 28, + 41, + c, + [354, 3], + 70, + 3, + 14, + 1, + 53, + 40, + 1, + 27, + 27, + 28, + 30, + 34, + c, + [1269, 3], + 34, + 34, + 1, + 17, + 1, + 17, + 17, + 1, + c, + [4, 4], + c, + [6, 5], + 15, + 73, + 71, + 73, + 15, + 1, + 70, + 73, + 2, + 49, + 5, + 7, + 19, + c, + [18, 3], + 5, + 18, + 29, + c, + [33, 6], + 4, + s, + [40, 5], + 7, + 5, + 2, + 15, + 7, + 12, + c, + [337, 3], + c, + [277, 3], + 6, + 105, + 5, + 46, + 105, + 46, + 1, + c, + [686, 4], + c, + [1362, 3], + 7, + 8, + 7, + 7, + 1, + 40, + 2, + 2, + 70, + 13, + 1, + 75, + 4, + 4, + 27, + 70, + 6, + 29, + 4, + 34, + 32, + 29, + 4, + 1, + 29, + 4, + 29, + c, + [493, 3], + s, + [17, 4], + 13, + 13, + 2, + 14, + 67, + 73, + c, + [76, 3], + 20, + 2, + 17, + 70, + 17, + 17, + 29, + 70, + 5, + s, + [164, 5], + c, + [817, 4], + 10, + 9, + c, + [1034, 3], + c, + [265, 3], + 2, + 11, + c, + [1396, 3], + c, + [92, 3], + 162, + c, + [180, 3], + 75, + 72, + c, + [190, 3], + 6, + 10, + 3, + 7, + 3, + 2, + 2, + 40, + 11, + 2, + 2, + 72, + c, + [456, 4], + 1, + 54, + 4, + 1, + 66, + 28, + s, + [29, 4], + 5, + 29, + 29, + 1, + 1, + s, + [13, 3], + c, + [91, 3], + 4, + 1, + 40, + 17, + 70, + 40, + 9, + 4, + 2, + 4, + 9, + s, + [7, 5], + c, + [830, 3], + 4, + 4, + 6, + 8, + 5, + 6, + 154, + 3, + 2, + 5, + 6, + 8, + 7, + 12, + 6, + 1, + 2, + 70, + 2, + 70, + 2, + 7, + c, + [843, 3], + 12, + 3, + 13, + 13, + 74, + 70, + 1, + 75, + 75, + s, + [1, 4], + c, + [154, 4], + 20, + 1, + 2, + 17, + 40, + 17, + s, + [9, 3], + 2, + 6, + c, + [55, 3], + c, + [125, 4], + 9, + 2, + 8, + c, + [43, 3], + 40, + 7, + 40, + c, + [48, 3], + c, + [156, 3], + c, + [158, 3], + c, + [417, 3], + 15, + 52, + 75, + 2, + 2, + 22, + 72, + 6, + 29, + 27, + 4, + 27, + 4, + s, + [17, 3], + c, + [302, 4], + c, + [1156, 3], + c, + [738, 3], + c, + [373, 3], + 3, + c, + [38, 3], + 7, + 7, + 10, + 3, + 2, + s, + [15, 4], + 4, + 15, + 2, + 2, + 42, + 2, + 27, + 27, + 17, + c, + [647, 3], + 2, + c, + [4, 3], + 12, + 1, + s, + [7, 3], + 2, + 1, + 15, + 15, + 1, + 71, + 4, + c, + [1089, 3], + 5, + c, + [92, 3], + 8, + 7, + 13, + c, + [77, 3], + c, + [332, 3], + 2, + 7, + 12, + 11, + 15, + 15, + 11, + s, + [10, 3], + 8, + 6, + c, + [36, 3], + 2, + c, + [187, 3], + c, + [458, 3], + c, + [606, 3] +]), + symbol: u([ + 1, + 2, + 10, + 11, + 12, + 15, + 16, + 21, + 34, + 52, + 58, + 75, + 114, + 115, + 131, + 170, + 171, + 172, + 190, + 191, + 192, + 195, + 197, + 198, + 199, + 204, + 205, + 210, + s, + [212, 11, 1], + 228, + 229, + 230, + 235, + 317, + 474, + 477, + s, + [479, 6, 1], + 487, + 501, + 502, + 534, + 535, + 536, + 563, + 566, + 567, + 574, + 604, + s, + [607, 5, 1], + s, + [613, 10, 1], + s, + [624, 4, 1], + 636, + s, + [641, 4, 1], + s, + [646, 6, 1], + 653, + 656, + 659, + 660, + 670, + 673, + 674, + 687, + s, + [689, 4, 1], + 695, + 696, + 1, + 1, + 317, + 474, + 698, + 1, + 145, + 317, + 474, + c, + [4, 6], + 148, + c, + [5, 3], + c, + [125, 3], + 13, + c, + [125, 10], + 145, + c, + [126, 31], + c, + [123, 59], + c, + [110, 5], + c, + [5, 264], + 176, + c, + [375, 3], + 477, + c, + [4, 3], + 58, + s, + [131, 5, 1], + 477, + 545, + c, + [11, 3], + 37, + 41, + 42, + 74, + 79, + 116, + 117, + 176, + 178, + 196, + 200, + 227, + 231, + 477, + 579, + 51, + 657, + 658, + 72, + 196, + c, + [23, 4], + 79, + 176, + 196, + 200, + 231, + 477, + 742, + c, + [11, 3], + 19, + 38, + 39, + 44, + 50, + 51, + 54, + 56, + 57, + 58, + 69, + 70, + 71, + 105, + 106, + 113, + 114, + 118, + 119, + 120, + s, + [123, 19, 1], + 143, + 144, + 150, + 155, + 206, + 207, + 477, + s, + [531, 4, 1], + 537, + 538, + 540, + 544, + 545, + s, + [547, 9, 1], + 559, + 628, + 631, + c, + [70, 3], + 65, + 82, + 569, + c, + [6, 3], + c, + [5, 5], + 19, + 39, + 50, + 51, + 56, + 58, + 71, + 82, + 87, + c, + [62, 5], + 143, + c, + [53, 3], + 508, + 509, + 510, + 545, + 551, + 554, + 628, + 631, + 661, + c, + [160, 4], + 176, + 1, + 16, + s, + [20, 4, 2], + 30, + 35, + 59, + 62, + 63, + 72, + 82, + 98, + 110, + 111, + c, + [186, 4], + 493, + 699, + c, + [563, 4], + 16, + 18, + 19, + 20, + s, + [27, 4, 1], + s, + [32, 37, 1], + 72, + 73, + 74, + 82, + 105, + 106, + c, + [170, 8], + 145, + 148, + 206, + 207, + 317, + 474, + 701, + c, + [69, 3], + 76, + 79, + 115, + 176, + 196, + 477, + c, + [267, 5], + 485, + 486, + c, + [773, 14], + c, + [648, 14], + s, + [211, 12, 1], + c, + [649, 7], + c, + [774, 60], + 211, + 211, + c, + [109, 3], + 196, + c, + [383, 4], + 477, + 510, + c, + [205, 4], + s, + [15, 16, 1], + s, + [32, 44, 1], + 82, + 83, + 85, + s, + [88, 8, 1], + 98, + 102, + s, + [105, 4, 1], + 110, + 111, + 114, + 115, + c, + [405, 9], + 138, + 142, + s, + [145, 24, 1], + c, + [224, 12], + 206, + 207, + c, + [874, 12], + 225, + 226, + c, + [227, 6], + 39, + 138, + 549, + c, + [156, 3], + 38, + c, + [419, 6], + 113, + c, + [480, 9], + c, + [422, 4], + 539, + c, + [468, 5], + c, + [423, 3], + c, + [533, 70], + c, + [663, 10], + c, + [80, 4], + 21, + c, + [81, 12], + 75, + c, + [82, 33], + c, + [388, 3], + c, + [85, 9], + s, + [546, 10, 1], + c, + [619, 6], + 39, + 138, + 219, + 477, + 549, + 652, + 654, + 655, + c, + [11, 3], + 50, + 51, + 477, + 637, + c, + [174, 70], + 228, + c, + [440, 4], + 688, + 689, + c, + [829, 14], + c, + [262, 68], + c, + [727, 4], + 19, + c, + [753, 6], + c, + [78, 9], + 59, + 60, + 62, + 63, + c, + [490, 6], + 81, + 82, + 98, + 105, + 106, + 110, + 111, + c, + [90, 26], + 145, + 148, + c, + [92, 4], + 317, + 474, + 503, + 1, + 17, + 19, + 20, + 145, + 148, + 228, + c, + [1372, 6], + c, + [82, 14], + c, + [579, 6], + c, + [83, 8], + s, + [76, 7, 1], + c, + [88, 39], + c, + [682, 64], + 79, + c, + [683, 11], + 96, + 97, + c, + [685, 20], + 139, + 142, + 143, + c, + [687, 27], + 173, + 174, + 177, + s, + [180, 5, 1], + 187, + 188, + s, + [190, 10, 1], + s, + [204, 7, 1], + c, + [702, 16], + s, + [232, 4, 1], + c, + [177, 179], + s, + [3, 7, 1], + 38, + 66, + 104, + c, + [402, 3], + 182, + 186, + 193, + 200, + 201, + 203, + 204, + 209, + 211, + 215, + 223, + 225, + 226, + c, + [32, 3], + s, + [236, 238, 1], + 697, + 1, + c, + [446, 6], + c, + [2072, 99], + c, + [104, 44], + c, + [45, 46], + c, + [2276, 3], + 14, + c, + [1509, 5], + 196, + c, + [1245, 5], + s, + [19, 6], + c, + [1864, 73], + 58, + 580, + c, + [1951, 4], + 477, + 79, + c, + [1256, 4], + c, + [79, 3], + 56, + 72, + 477, + 637, + s, + [675, 4, 1], + 682, + 683, + 684, + 37, + 176, + 200, + 575, + 39, + 72, + 138, + 549, + 748, + c, + [175, 4], + 20, + 21, + 39, + 44, + 52, + 75, + 138, + 145, + 148, + 226, + c, + [295, 3], + 745, + c, + [50, 4], + 10, + 10, + c, + [33, 3], + 1, + 17, + c, + [1397, 5], + c, + [6, 5], + c, + [2060, 7], + 477, + 510, + c, + [2069, 8], + 606, + c, + [90, 5], + c, + [10, 5], + c, + [5, 8], + c, + [14, 5], + c, + [4, 4], + c, + [259, 7], + 25, + c, + [846, 3], + 33, + 34, + 40, + 43, + c, + [836, 5], + 52, + 57, + 58, + 64, + 65, + 69, + 70, + c, + [276, 5], + c, + [782, 4], + c, + [1645, 28], + c, + [445, 23], + 496, + c, + [446, 5], + 561, + c, + [447, 55], + c, + [1856, 148], + c, + [154, 2618], + c, + [4358, 22], + 115, + c, + [3110, 26], + 172, + c, + [4360, 15], + c, + [3114, 10], + 567, + 628, + 631, + 670, + 673, + 731, + c, + [389, 308], + 19, + c, + [544, 158], + c, + [3651, 69], + c, + [70, 277], + c, + [813, 229], + c, + [4816, 10], + s, + [112, 4, 1], + c, + [293, 22], + s, + [142, 27, 1], + c, + [4830, 4], + c, + [4829, 3], + 183, + 184, + c, + [178, 7], + 202, + c, + [4824, 5], + c, + [180, 20], + 475, + 476, + c, + [182, 85], + c, + [4998, 14], + c, + [167, 40], + c, + [166, 25], + c, + [164, 568], + c, + [163, 87], + c, + [6520, 4], + 477, + 734, + c, + [4982, 4], + c, + [501, 328], + c, + [1563, 6], + 50, + 56, + 71, + c, + [1243, 3], + 143, + 207, + 477, + c, + [1520, 3], + 554, + 631, + c, + [5515, 45], + 146, + c, + [1585, 23], + 556, + 557, + c, + [1587, 3], + 19, + c, + [2093, 76], + c, + [260, 22], + c, + [1591, 39], + c, + [253, 28], + c, + [7112, 4], + c, + [212, 9], + 142, + c, + [7112, 4], + 532, + c, + [7112, 7], + s, + [629, 4, 1], + 635, + c, + [1854, 58], + c, + [7031, 16], + c, + [6936, 8], + s, + [19, 10], + c, + [7241, 5], + 208, + 477, + 633, + 634, + c, + [5735, 5], + 131, + c, + [6, 3], + c, + [9, 5], + 97, + 662, + 97, + c, + [7686, 10], + c, + [7685, 18], + 21, + 75, + c, + [2773, 3], + c, + [6853, 5], + 17, + s, + [18, 4, 2], + c, + [7688, 5], + c, + [296, 13], + c, + [7698, 6], + 723, + c, + [35, 12], + 57, + c, + [36, 22], + c, + [841, 5], + c, + [71, 30], + c, + [35, 37], + 16, + 17, + c, + [31, 27], + c, + [100, 71], + c, + [35, 6], + c, + [7096, 4], + 29, + c, + [208, 6], + 72, + c, + [108, 53], + c, + [7505, 8], + c, + [7780, 3], + c, + [8007, 4], + c, + [8006, 14], + 504, + c, + [20, 19], + c, + [44, 3], + 27, + 76, + 706, + c, + [8030, 69], + 477, + 496, + 497, + 504, + 544, + 628, + 631, + 714, + 176, + 72, + 1, + 27, + c, + [91, 4], + 196, + c, + [8, 3], + 72, + c, + [144, 9], + 17, + c, + [473, 5], + c, + [6, 3], + 18, + c, + [164, 5], + c, + [6439, 3], + c, + [8724, 3], + c, + [178, 12], + c, + [9, 5], + 52, + c, + [852, 11], + 23, + 29, + 34, + 35, + c, + [123, 5], + c, + [122, 3], + 71, + 72, + 74, + 75, + 96, + c, + [6250, 3], + 139, + 143, + 145, + 148, + c, + [7014, 8], + c, + [1025, 5], + c, + [7011, 3], + c, + [2365, 19], + c, + [7183, 10], + c, + [8455, 15], + c, + [6395, 5], + c, + [1045, 11], + c, + [1044, 5], + 1, + 17, + 20, + 57, + 74, + 96, + 139, + 145, + 148, + c, + [1111, 6], + c, + [39, 4], + c, + [17, 101], + c, + [6485, 143], + c, + [6685, 6], + c, + [295, 6], + 20, + c, + [150, 13], + 57, + c, + [148, 4], + 142, + c, + [145, 21], + 317, + 474, + 496, + 561, + c, + [6743, 12], + c, + [6, 24], + 28, + 29, + 34, + 96, + 209, + 496, + 638, + 640, + c, + [6742, 7], + c, + [3, 3], + 1, + c, + [99, 18], + c, + [98, 25], + c, + [8062, 6], + c, + [80, 8], + c, + [7913, 3], + c, + [169, 8], + c, + [68, 46], + c, + [1259, 13], + 81, + c, + [1260, 32], + 503, + c, + [50, 100], + c, + [8193, 22], + c, + [8109, 6], + c, + [8101, 40], + 477, + s, + [529, 6, 1], + c, + [3285, 17], + 721, + 19, + 38, + 547, + c, + [314, 7], + c, + [8295, 71], + c, + [72, 436], + c, + [8639, 350], + c, + [177, 47083], + c, + [57534, 4], + c, + [55456, 103], + 190, + c, + [146, 3], + c, + [48426, 7], + 19, + 20, + c, + [47617, 9], + 60, + c, + [251, 3], + 73, + c, + [48210, 32], + 732, + 733, + c, + [49620, 74], + c, + [71, 71], + 39, + c, + [200, 4], + c, + [5, 5], + c, + [51696, 70], + c, + [48629, 18], + c, + [48627, 19], + 477, + c, + [48694, 6], + 57, + c, + [123, 4], + 58, + 138, + 580, + 96, + c, + [49251, 5], + c, + [55546, 8], + c, + [51762, 68], + c, + [48775, 7], + c, + [49551, 3], + 46, + 48, + 51, + c, + [49410, 6], + 628, + 631, + 749, + 46, + 48, + c, + [18, 3], + 19, + 20, + 39, + 44, + c, + [21, 3], + 56, + c, + [22, 6], + 684, + 758, + c, + [37, 4], + 39, + c, + [17, 10], + 761, + c, + [53, 7], + c, + [15, 7], + 683, + 763, + c, + [69, 13], + c, + [89, 3], + 46, + 48, + c, + [168, 7], + 38, + c, + [55715, 5], + c, + [55690, 8], + 580, + c, + [5, 9], + c, + [4, 4], + 72, + 72, + 1, + c, + [55783, 12], + 671, + 746, + c, + [15, 13], + 23, + 96, + c, + [669, 3], + c, + [697, 3], + 693, + 18, + 18, + 51, + 658, + 10, + 18, + 188, + 478, + 597, + 598, + 1, + 35, + c, + [49520, 13], + 140, + c, + [282, 6], + 606, + c, + [49715, 10], + 605, + c, + [6, 6], + c, + [49455, 10], + 645, + c, + [52341, 350], + c, + [70, 775], + c, + [51258, 8], + c, + [49836, 4], + c, + [14, 16], + c, + [1787, 9], + 61, + c, + [100, 33], + 169, + c, + [171, 37], + c, + [73, 292], + c, + [603, 140], + c, + [213, 200], + 60, + 61, + 169, + 562, + c, + [357, 144], + 51, + c, + [876, 7], + 532, + 545, + 551, + 560, + 25, + 139, + c, + [1118, 210], + 10, + c, + [2294, 4], + c, + [1109, 11], + c, + [11, 11], + s, + [20, 4], + c, + [2631, 37], + c, + [51256, 6], + 82, + 569, + 20, + 20, + 41, + 42, + c, + [665, 14], + c, + [2957, 36], + c, + [2836, 26], + 54, + 70, + c, + [53223, 76], + c, + [54388, 79], + c, + [51667, 3], + c, + [156, 698], + c, + [54832, 657], + c, + [54235, 60], + c, + [56330, 90], + c, + [54461, 157], + c, + [157, 628], + c, + [54432, 5], + c, + [2580, 18], + 146, + c, + [2581, 20], + 556, + 557, + 561, + 145, + 146, + 148, + 557, + 558, + c, + [5, 3], + c, + [2801, 145], + c, + [357, 157], + 17, + 142, + c, + [159, 159], + 17, + 142, + 208, + c, + [3, 24], + c, + [57450, 204], + c, + [413, 98], + c, + [58420, 233], + 17, + 208, + c, + [723, 158], + 208, + s, + [56, 3], + 19, + 21, + c, + [694, 4], + 71, + 75, + 143, + 173, + 174, + 206, + 207, + c, + [1255, 3], + 554, + 568, + 570, + c, + [1140, 5], + 82, + 569, + 19, + c, + [25, 5], + 143, + c, + [23, 3], + c, + [20, 5], + 96, + 663, + c, + [56220, 28], + 97, + 20, + c, + [55938, 6], + c, + [56010, 28], + 724, + c, + [35, 33], + c, + [56144, 30], + c, + [6276, 4], + 86, + c, + [35, 34], + c, + [34, 102], + c, + [4, 4], + 53, + c, + [56118, 11], + c, + [27, 7], + 505, + c, + [6459, 4], + c, + [56667, 10], + 143, + 477, + c, + [287, 4], + c, + [56138, 4], + 477, + 494, + 495, + 532, + c, + [8, 4], + c, + [51, 3], + c, + [56058, 5], + 500, + 702, + c, + [56154, 49], + c, + [532, 6], + c, + [56157, 17], + 499, + c, + [56354, 9], + c, + [74, 64], + 31, + c, + [74, 73], + c, + [57516, 8], + c, + [77, 72], + c, + [4735, 140], + c, + [436, 3], + c, + [210, 41], + 73, + 74, + c, + [205, 10], + c, + [83, 3], + 496, + 497, + c, + [56582, 3], + 708, + 714, + s, + [19, 4], + c, + [286, 73], + c, + [73, 365], + c, + [1018, 7], + 40, + c, + [733, 74], + c, + [447, 368], + c, + [58359, 17], + 51, + 19, + 51, + c, + [96, 73], + c, + [58073, 4], + 477, + s, + [19, 5], + 60, + s, + [19, 11], + c, + [63820, 9], + 510, + c, + [65348, 3], + c, + [57601, 6], + c, + [14, 8], + c, + [57566, 9], + c, + [8043, 9], + 486, + 19, + c, + [16, 13], + c, + [65192, 3], + 532, + 564, + 565, + 735, + 51, + 206, + 207, + c, + [65304, 7], + c, + [6473, 143], + c, + [196, 6], + 219, + 477, + 652, + c, + [152, 16], + 96, + c, + [153, 32], + 209, + c, + [81, 22], + 640, + c, + [230, 5], + c, + [57364, 3], + 496, + c, + [65543, 14], + 38, + 477, + 639, + c, + [21, 4], + 638, + c, + [64163, 10], + c, + [65395, 4], + c, + [267, 46], + c, + [57101, 23], + c, + [72, 144], + c, + [66279, 20], + c, + [2193, 6], + c, + [21, 37], + c, + [58378, 9], + c, + [2671, 6], + c, + [719, 3], + c, + [717, 3], + c, + [3767, 7], + c, + [41, 3], + c, + [3770, 4], + c, + [45, 5], + c, + [8718, 3], + c, + [57616, 21], + 477, + 496, + 549, + c, + [5493, 5], + c, + [57468, 64], + 475, + 722, + 38, + 547, + 17, + 20, + c, + [9500, 4], + 53, + s, + [76, 4], + 1, + 18, + 19, + c, + [704, 62], + c, + [6440, 13], + c, + [59493, 170], + c, + [235, 42], + c, + [48, 96], + 17, + 20, + 17, + 20, + s, + [17, 5], + c, + [6879, 39], + c, + [5518, 165], + c, + [596, 4], + c, + [9392, 5], + 138, + 477, + c, + [1358, 5], + 510, + c, + [9679, 4], + c, + [65281, 5], + 477, + 637, + c, + [65279, 6], + c, + [58378, 44], + c, + [9583, 4], + c, + [82, 4], + 679, + 750, + c, + [10, 8], + c, + [78, 5], + 51, + 56, + c, + [649, 3], + 628, + 631, + c, + [77, 3], + c, + [93, 10], + c, + [92, 5], + c, + [15, 10], + c, + [65388, 7], + c, + [9680, 15], + 759, + c, + [16, 15], + c, + [9695, 15], + 762, + c, + [16, 14], + c, + [9709, 15], + c, + [13, 15], + c, + [71, 15], + c, + [86, 18], + c, + [9765, 18], + c, + [1655, 7], + c, + [4255, 71], + c, + [9797, 3], + c, + [9796, 8], + 549, + 747, + c, + [14, 12], + c, + [101, 4], + c, + [434, 3], + 694, + c, + [109, 5], + c, + [9, 3], + c, + [3, 6], + 36, + 114, + 114, + c, + [58775, 8], + 34, + c, + [7, 4], + c, + [4739, 81], + c, + [595, 66], + c, + [60944, 162], + c, + [62603, 96], + c, + [163, 87], + c, + [67593, 75], + c, + [988, 5], + c, + [993, 7], + c, + [59459, 19], + c, + [1779, 8], + c, + [11132, 11], + c, + [59911, 4], + c, + [66589, 92], + c, + [8088, 849], + c, + [156, 1795], + c, + [65630, 224], + c, + [66706, 466], + c, + [532, 374], + c, + [1688, 476], + c, + [63984, 76], + c, + [2552, 782], + c, + [8561, 8], + c, + [316, 308], + c, + [16489, 5], + c, + [73093, 72], + c, + [69427, 620], + c, + [16982, 5], + c, + [14537, 12], + c, + [2672, 776], + c, + [154, 616], + 17, + 20, + c, + [70088, 369], + c, + [13719, 155], + c, + [309, 79], + c, + [16292, 40], + 20, + c, + [13710, 6], + c, + [13711, 73], + c, + [119, 18], + 147, + c, + [120, 21], + 18, + c, + [160, 39], + 17, + c, + [69163, 193], + c, + [16686, 43], + 54, + c, + [16602, 155], + c, + [392, 160], + c, + [69425, 4], + c, + [69424, 4], + c, + [400, 17], + c, + [399, 15], + c, + [35, 70], + c, + [13309, 3], + c, + [13308, 3], + c, + [13307, 3], + c, + [13306, 3], + c, + [19664, 7], + 54, + 174, + 568, + c, + [835, 68], + 571, + 573, + c, + [9803, 4], + c, + [9143, 5], + 19, + 20, + c, + [102, 5], + c, + [9912, 7], + c, + [14, 14], + c, + [116, 3], + 146, + 148, + 225, + c, + [9, 11], + c, + [9821, 5], + c, + [151, 19], + c, + [148, 69], + 628, + 631, + 146, + 664, + 665, + 667, + c, + [1058, 70], + 96, + c, + [69689, 66], + c, + [30, 210], + c, + [861, 13], + 30, + c, + [69566, 10], + c, + [47, 3], + c, + [69569, 4], + c, + [51, 15], + c, + [69583, 51], + c, + [13750, 6], + c, + [131, 8], + c, + [119, 7], + 488, + 700, + c, + [14004, 20], + s, + [507, 4, 1], + c, + [14005, 5], + c, + [13759, 18], + c, + [18, 72], + c, + [13892, 15], + c, + [11698, 15], + c, + [20, 34], + c, + [12329, 4], + c, + [23, 5], + 29, + c, + [300, 3], + c, + [25, 5], + c, + [1272, 11], + c, + [117, 9], + c, + [7, 11], + c, + [77428, 75], + c, + [12868, 291], + c, + [21369, 10], + c, + [11970, 58], + 710, + c, + [13827, 83], + c, + [1930, 4], + c, + [74, 57], + c, + [1973, 19], + c, + [93, 4], + c, + [3786, 6], + c, + [95, 91], + c, + [14599, 48], + c, + [14164, 20], + 714, + c, + [14668, 51], + c, + [72, 14], + 499, + c, + [14298, 67], + 709, + c, + [135, 4], + c, + [14507, 140], + c, + [13991, 293], + c, + [14292, 7], + c, + [13674, 7], + c, + [22364, 8], + c, + [12964, 71], + c, + [162, 72], + c, + [802, 59], + 711, + c, + [63, 62], + 712, + c, + [63, 62], + 713, + c, + [63, 62], + 715, + c, + [324, 49], + c, + [64, 14], + 498, + 720, + c, + [14207, 4], + c, + [129, 59], + 716, + c, + [63, 62], + 717, + c, + [192, 65], + c, + [65, 199], + c, + [1371, 63], + c, + [1370, 50], + c, + [14245, 26], + c, + [205, 4], + c, + [141, 55], + 718, + 1, + c, + [16317, 5], + c, + [6, 7], + c, + [2474, 8], + c, + [14, 10], + c, + [14814, 6], + c, + [72395, 3], + c, + [72876, 6], + 17, + c, + [22872, 6], + 17, + 20, + 35, + c, + [3268, 6], + 34, + c, + [71908, 11], + c, + [72014, 52], + c, + [5871, 156], + c, + [12693, 17], + c, + [72065, 59], + c, + [1847, 59], + c, + [14887, 5], + c, + [3, 6], + c, + [1933, 140], + c, + [15057, 5], + c, + [23576, 7], + c, + [14795, 42], + c, + [21, 20], + c, + [144, 49], + c, + [776, 25], + 38, + c, + [13139, 5], + c, + [142, 62], + c, + [14889, 68], + c, + [68, 68], + 20, + c, + [349, 5], + c, + [80613, 3], + c, + [23830, 11], + 477, + 596, + c, + [5, 9], + c, + [24242, 74], + 477, + c, + [15059, 3], + c, + [74629, 333], + c, + [23361, 347], + 39, + 138, + c, + [15733, 7], + 612, + 1, + 18, + c, + [7, 5], + c, + [16523, 6], + c, + [24736, 9], + c, + [7, 12], + 50, + 51, + 637, + 18, + 46, + c, + [16487, 5], + 751, + 18, + 46, + 679, + 753, + c, + [14946, 5], + 44, + 46, + c, + [24745, 12], + c, + [46, 12], + c, + [773, 3], + c, + [15050, 14], + 760, + c, + [15050, 41], + c, + [145, 5], + 18, + 19, + c, + [1566, 13], + 53, + c, + [15493, 27], + 20, + 21, + 52, + 75, + c, + [14950, 5], + c, + [1873, 3], + 672, + c, + [14, 10], + c, + [14976, 12], + c, + [4978, 5], + 15, + 16, + 18, + c, + [14338, 5], + c, + [74252, 4], + c, + [14339, 32], + c, + [48, 96], + 23, + c, + [24930, 7], + c, + [7, 3], + c, + [16582, 15], + c, + [25181, 67], + c, + [15181, 5], + c, + [14851, 162], + 38, + 189, + 599, + c, + [15016, 230], + c, + [5693, 3], + c, + [15971, 45], + c, + [75149, 15], + c, + [17365, 87], + c, + [70, 57], + c, + [7001, 41], + c, + [23333, 43], + c, + [9791, 72], + c, + [16577, 3], + c, + [78215, 228], + c, + [10095, 466], + 121, + c, + [155, 69], + 541, + c, + [924, 83], + c, + [24173, 77], + c, + [22040, 157], + c, + [552, 79], + 145, + c, + [155, 154], + c, + [1678, 19], + c, + [1435, 25], + c, + [24908, 76], + c, + [23162, 222], + c, + [22018, 5], + c, + [9132, 230], + c, + [21612, 84], + 17, + 208, + c, + [4, 4], + c, + [3136, 7], + c, + [8136, 9], + c, + [8204, 8], + c, + [18588, 5], + c, + [1207, 38], + c, + [39, 39], + c, + [12278, 3], + c, + [21723, 8], + c, + [21722, 11], + c, + [76835, 9], + c, + [5008, 5], + 665, + 667, + 669, + c, + [10, 7], + c, + [7, 7], + 57, + 223, + c, + [23015, 39], + 561, + c, + [21572, 35], + c, + [7583, 7], + c, + [7825, 12], + 517, + c, + [16, 15], + c, + [12439, 3], + c, + [72, 20], + c, + [30, 7], + 506, + 511, + 512, + 514, + 515, + c, + [2368, 5], + c, + [7875, 6], + 75, + c, + [7876, 10], + c, + [208, 3], + c, + [7879, 11], + c, + [67, 26], + c, + [21627, 5], + 495, + 532, + c, + [7800, 22], + c, + [329, 19], + c, + [2743, 25], + c, + [414, 3], + c, + [7418, 19], + 107, + c, + [998, 31], + 524, + 526, + c, + [1000, 21], + 707, + c, + [6427, 121], + c, + [7160, 24], + c, + [7295, 129], + c, + [2011, 80], + c, + [22416, 7], + c, + [355, 67], + c, + [2932, 6], + c, + [75, 71], + c, + [366, 117], + c, + [69, 159], + c, + [278, 6], + c, + [6498, 59], + c, + [141, 11], + c, + [6568, 67], + c, + [275, 134], + c, + [1553, 6], + 20, + c, + [585, 3], + 499, + c, + [288, 9], + c, + [153, 65], + c, + [5654, 5], + c, + [3964, 9], + c, + [6587, 3], + c, + [11426, 74], + c, + [7743, 4], + c, + [7742, 5], + c, + [79, 67], + 34, + c, + [4176, 44], + c, + [6234, 3], + c, + [1044, 40], + c, + [6547, 114], + c, + [6238, 64], + c, + [6259, 89], + c, + [73, 4], + 53, + c, + [1954, 6], + 10, + c, + [2067, 4], + 187, + 188, + 317, + 474, + c, + [20127, 4], + c, + [4509, 9], + c, + [21178, 4], + c, + [4968, 79], + c, + [5960, 88], + c, + [20944, 40], + c, + [40, 160], + c, + [4875, 63], + c, + [6570, 17], + c, + [80, 54], + c, + [2227, 23], + c, + [5947, 5], + c, + [5914, 3], + 752, + 18, + s, + [46, 3], + c, + [30690, 20], + c, + [13, 13], + c, + [45, 3], + 18, + 477, + 581, + 595, + c, + [6780, 5], + 532, + 573, + c, + [7693, 5], + c, + [20869, 72], + c, + [22553, 14], + c, + [8875, 72], + c, + [87, 8], + c, + [20928, 5], + 694, + 1, + c, + [435, 19], + c, + [1066, 95], + c, + [1522, 8], + c, + [7746, 7], + c, + [13941, 619], + c, + [5717, 157], + c, + [13185, 195], + c, + [351, 310], + c, + [16560, 86], + c, + [5768, 71], + c, + [156, 241], + c, + [5837, 224], + c, + [5836, 173], + 146, + c, + [2186, 20], + c, + [2663, 3], + c, + [5185, 40], + c, + [33279, 6], + c, + [7675, 72], + c, + [13481, 17], + c, + [5239, 20], + c, + [2568, 5], + c, + [13515, 12], + c, + [2354, 67], + c, + [13580, 19], + c, + [13656, 7], + c, + [5346, 11], + c, + [7, 7], + c, + [10558, 72], + 64, + 147, + 223, + c, + [13319, 32], + 20, + 30, + c, + [5343, 10], + 518, + c, + [12048, 145], + c, + [13226, 9], + c, + [5485, 18], + c, + [5484, 7], + c, + [27362, 24], + c, + [59, 27], + c, + [27, 27], + c, + [82, 4], + c, + [27151, 11], + c, + [80, 3], + 510, + 513, + c, + [79, 5], + 84, + 89, + 84, + 89, + c, + [29, 17], + 83, + 85, + c, + [62, 7], + c, + [138, 5], + c, + [27, 13], + 89, + 85, + 89, + 85, + c, + [4, 3], + 89, + 17, + c, + [99, 10], + c, + [5663, 5], + c, + [5594, 21], + c, + [5040, 74], + 20, + c, + [96, 4], + c, + [92, 3], + c, + [89, 6], + c, + [14, 5], + c, + [868, 14], + c, + [25170, 7], + c, + [1010, 4], + c, + [10936, 29], + c, + [5614, 135], + c, + [26552, 441], + c, + [504, 136], + c, + [139, 421], + c, + [5894, 59], + 719, + c, + [136, 52], + c, + [204, 15], + c, + [6450, 75], + c, + [484, 278], + c, + [27957, 371], + c, + [5522, 68], + c, + [6596, 45], + c, + [575, 19], + c, + [93881, 19], + c, + [13163, 3], + c, + [26592, 46], + c, + [13195, 8], + c, + [13179, 9], + 35, + c, + [3164, 34], + c, + [47, 3], + c, + [5351, 72], + c, + [6574, 3], + c, + [85214, 48], + c, + [85534, 17], + 585, + 600, + 601, + 603, + c, + [3057, 8], + c, + [11736, 5], + c, + [12105, 350], + c, + [6666, 7], + c, + [18638, 51], + c, + [6219, 23], + c, + [27042, 4], + c, + [82, 4], + 46, + 46, + c, + [27214, 15], + c, + [3777, 3], + c, + [86283, 6], + c, + [4916, 4], + c, + [8661, 27], + 1, + 16, + c, + [6, 4], + 623, + 744, + c, + [12036, 3], + c, + [22067, 15], + c, + [22066, 5], + c, + [590, 21], + c, + [12097, 4], + c, + [86016, 3], + 561, + 672, + c, + [12286, 15], + c, + [11994, 11], + c, + [26428, 36], + 768, + c, + [49, 47], + 769, + c, + [6219, 45], + 38, + c, + [27167, 324], + c, + [20089, 770], + 30, + 122, + 542, + 543, + c, + [466, 462], + c, + [1561, 76], + c, + [155, 80], + 17, + 20, + c, + [5514, 26], + c, + [1989, 27], + c, + [5805, 41], + c, + [1969, 9], + 82, + c, + [7, 4], + 170, + 171, + 666, + c, + [2263, 70], + 31, + 64, + 147, + c, + [5549, 7], + c, + [144, 6], + 523, + 31, + c, + [10769, 7], + c, + [30258, 3], + c, + [5085, 15], + c, + [178, 5], + c, + [1971, 23], + 23, + c, + [198, 39], + 23, + c, + [5440, 54], + c, + [2311, 30], + c, + [5769, 27], + 516, + c, + [32607, 6], + c, + [88922, 33], + c, + [34, 28], + 725, + c, + [8647, 5], + c, + [89207, 10], + c, + [78, 62], + 477, + c, + [89697, 5], + c, + [5589, 13], + c, + [18, 18], + c, + [5624, 18], + c, + [5670, 18], + c, + [36, 18], + c, + [54, 53], + 20, + c, + [5706, 11], + c, + [5705, 4], + c, + [3632, 121], + c, + [2854, 23], + c, + [3849, 73], + c, + [5826, 6], + 104, + c, + [390, 6], + 525, + 109, + c, + [10605, 70], + c, + [11103, 76], + c, + [3723, 48], + c, + [16956, 8], + c, + [7, 7], + c, + [3614, 15], + c, + [3612, 4], + c, + [19, 14], + 182, + 182, + c, + [15352, 7], + 19, + c, + [25, 15], + c, + [32016, 8], + c, + [97233, 13], + c, + [97231, 8], + c, + [71, 17], + 139, + c, + [89273, 34], + 170, + c, + [9511, 5], + c, + [11468, 81], + c, + [40, 119], + c, + [15670, 7], + c, + [3583, 10], + c, + [3501, 12], + c, + [384, 8], + 10, + 108, + c, + [255, 4], + 317, + 474, + 576, + 577, + 578, + c, + [34, 3], + 74, + 79, + s, + [179, 5, 1], + 477, + 582, + 583, + 584, + 596, + 20, + c, + [89808, 6], + c, + [5, 5], + 180, + 201, + c, + [1554, 7], + c, + [29867, 105], + c, + [110, 50], + c, + [30023, 111], + c, + [105, 40], + 20, + 20, + 30, + 543, + 20, + 31, + 31, + c, + [6795, 3], + c, + [7531, 12], + c, + [9990, 9], + 510, + 637, + c, + [7403, 14], + 52, + c, + [21922, 40], + 172, + 668, + 204, + 224, + c, + [10982, 72], + c, + [6947, 10], + 527, + 31, + c, + [84, 16], + 99, + 100, + 101, + c, + [87, 33], + 519, + 520, + c, + [7347, 25], + c, + [7351, 31], + c, + [7452, 74], + 532, + 573, + c, + [1873, 29], + c, + [19535, 9], + c, + [1763, 28], + 726, + c, + [34, 32], + c, + [99, 33], + c, + [4345, 3], + c, + [34716, 33], + c, + [33, 31], + c, + [1969, 5], + c, + [10612, 9], + c, + [1797, 30], + c, + [17, 17], + c, + [21060, 17], + c, + [7425, 13], + c, + [13, 13], + 105, + 106, + c, + [15, 7], + 107, + c, + [124, 9], + c, + [6202, 64], + c, + [1781, 74], + c, + [1451, 33], + 184, + c, + [1551, 18], + 602, + 741, + 38, + 547, + c, + [40, 17], + c, + [41748, 73], + c, + [144, 31], + c, + [1676, 29], + c, + [98905, 76], + c, + [38480, 752], + c, + [33126, 72], + c, + [2678, 13], + c, + [2299, 13], + 578, + c, + [10, 9], + c, + [9, 9], + s, + [34, 3], + c, + [11728, 6], + 74, + 79, + c, + [2320, 4], + 585, + 586, + 587, + 592, + 593, + c, + [1436, 9], + 202, + 203, + c, + [81, 11], + c, + [5456, 315], + c, + [17165, 171], + c, + [2309, 62], + c, + [6519, 70], + c, + [26952, 310], + 477, + c, + [18866, 6], + c, + [12915, 10], + c, + [4738, 3], + c, + [2923, 7], + 19, + 173, + 174, + 64, + 147, + 64, + 147, + c, + [2929, 40], + c, + [2855, 6], + c, + [77, 4], + 522, + 38, + 547, + c, + [92288, 5], + c, + [472, 70], + c, + [2437, 3], + c, + [4807, 4], + 102, + c, + [2438, 6], + 521, + c, + [16, 15], + 52, + c, + [15716, 6], + c, + [4826, 22], + c, + [36, 5], + c, + [15602, 24], + 25, + 489, + 703, + 25, + c, + [2575, 5], + c, + [60, 7], + c, + [3999, 9], + c, + [61, 7], + c, + [2956, 15], + c, + [7795, 24], + c, + [4802, 56], + c, + [29, 87], + c, + [4820, 5], + c, + [63, 58], + c, + [10258, 15], + c, + [13, 26], + c, + [19563, 8], + c, + [2551, 34], + c, + [20307, 3], + c, + [5387, 42], + c, + [2717, 84], + c, + [127, 41], + c, + [1758, 8], + c, + [181, 4], + c, + [92993, 6], + c, + [4080, 7], + 583, + 584, + c, + [19797, 21], + c, + [7, 14], + c, + [4487, 5], + 19, + 182, + 738, + c, + [3542, 8], + c, + [1819, 6], + c, + [7629, 7], + 743, + c, + [1811, 8], + 179, + c, + [26579, 158], + 30, + c, + [7951, 7], + c, + [3634, 7], + 17, + c, + [3964, 13], + c, + [5897, 12], + c, + [33, 6], + 174, + 172, + 668, + c, + [420, 70], + c, + [72, 74], + c, + [24370, 7], + 21, + 60, + 75, + 103, + c, + [3624, 5], + c, + [6, 10], + c, + [1185, 6], + c, + [702, 5], + 528, + 112, + 476, + 727, + c, + [732, 15], + c, + [5932, 11], + c, + [1758, 52], + c, + [1757, 71], + c, + [14493, 25], + c, + [1903, 88], + c, + [75, 59], + 20, + 20, + c, + [1404, 4], + c, + [38729, 34], + 18, + c, + [5, 6], + c, + [3729, 19], + 740, + 20, + c, + [3730, 19], + c, + [1070, 57], + c, + [2727, 18], + c, + [9, 9], + c, + [8670, 6], + 477, + 736, + c, + [330, 5], + 477, + 739, + c, + [6, 4], + c, + [188, 3], + c, + [2726, 9], + c, + [999, 9], + c, + [14497, 5], + c, + [748, 5], + c, + [776, 4], + c, + [764, 12], + c, + [1798, 41], + c, + [47, 53], + c, + [693, 8], + c, + [686, 7], + c, + [685, 6], + c, + [18, 6], + c, + [12, 18], + c, + [1894, 7], + 38, + 547, + 112, + 112, + c, + [1805, 15], + c, + [6627, 25], + c, + [1729, 27], + c, + [529, 75], + c, + [8921, 5], + c, + [6440, 6], + c, + [4451, 12], + 477, + 490, + 704, + c, + [776, 49], + 491, + 492, + c, + [4809, 56], + c, + [4941, 30], + c, + [4972, 31], + c, + [9614, 18], + c, + [17, 34], + c, + [5305, 4], + c, + [18, 14], + c, + [37908, 5], + 39, + 477, + 594, + c, + [37916, 6], + 532, + 573, + c, + [182, 7], + c, + [623, 9], + 173, + c, + [1335, 3], + c, + [2407, 4], + c, + [483, 18], + c, + [7, 17], + c, + [492, 8], + 358, + 728, + c, + [9268, 6], + c, + [493, 13], + c, + [508, 16], + c, + [4824, 14], + c, + [15, 13], + c, + [251, 7], + c, + [19, 12], + c, + [3521, 5], + 18, + c, + [878, 40], + c, + [127, 4], + c, + [7138, 53], + c, + [2004, 19], + c, + [283, 3], + c, + [3646, 6], + c, + [281, 6], + c, + [10, 4], + c, + [1627, 12], + 174, + c, + [890, 14], + c, + [269, 7], + c, + [2644, 3], + c, + [242, 30], + c, + [9665, 50], + c, + [612, 26], + c, + [146, 3], + 184, + c, + [169, 5], + c, + [6591, 5], + c, + [2028, 13], + c, + [156, 16], + c, + [418, 5], + 202, + 317, + 474, + 476, + 729, + c, + [767, 25], + 705, + c, + [5842, 10], + c, + [96015, 3], + c, + [15622, 5], + c, + [480, 13], + c, + [62, 3], + 730, + c, + [12, 11], + c, + [458, 30], + c, + [1351, 4], + 96, + c, + [9, 4], + 588, + 737, + c, + [544, 10], + c, + [10, 11], + 17, + c, + [30, 6], + 589, + 590, + c, + [10, 8], + c, + [369, 6], + c, + [115, 7], + 96, + 591, + 171, + c, + [127, 9], + 170, + 185, + c, + [35, 8], + 185, + 186, + 186, + 96, + c, + [21, 7] +]), + type: u([ + s, + [2, 45], + s, + [0, 62], + 1, + c, + [66, 4], + s, + [2, 59], + s, + [0, 59], + s, + [2, 274], + c, + [275, 10], + c, + [286, 18], + c, + [18, 3], + c, + [21, 13], + c, + [320, 50], + c, + [390, 27], + c, + [6, 5], + c, + [81, 21], + c, + [41, 13], + c, + [115, 22], + c, + [458, 71], + c, + [70, 9], + c, + [141, 6], + c, + [86, 48], + s, + [0, 61], + c, + [121, 10], + c, + [663, 158], + c, + [157, 24], + c, + [853, 58], + c, + [923, 82], + c, + [358, 33], + c, + [630, 10], + c, + [174, 75], + c, + [181, 12], + c, + [262, 132], + c, + [438, 36], + s, + [2, 685], + c, + [1423, 106], + c, + [204, 99], + c, + [1249, 83], + c, + [1863, 20], + c, + [1852, 16], + c, + [2006, 21], + c, + [1913, 24], + c, + [30, 13], + c, + [5, 19], + c, + [296, 91], + c, + [1868, 67], + s, + [2, 2818], + c, + [2853, 540], + c, + [533, 70], + c, + [70, 280], + c, + [2001, 1113], + c, + [6092, 346], + c, + [1513, 56], + c, + [2400, 207], + c, + [1854, 84], + c, + [7765, 30], + c, + [5783, 13], + c, + [7780, 4], + c, + [89, 29], + c, + [7576, 39], + c, + [186, 36], + c, + [71, 70], + c, + [489, 65], + c, + [100, 100], + c, + [6271, 37], + c, + [102, 25], + c, + [8030, 71], + c, + [596, 27], + c, + [517, 7], + c, + [28, 13], + c, + [41, 14], + c, + [848, 118], + c, + [2557, 206], + c, + [6485, 117], + c, + [58, 43], + c, + [8675, 28], + c, + [1814, 33], + c, + [6994, 64], + c, + [8020, 99], + c, + [50, 100], + c, + [503, 44], + c, + [7139, 8], + c, + [6961, 2825], + s, + [2, 45165], + c, + [48524, 66], + c, + [48056, 52], + c, + [49620, 82], + c, + [71, 66], + c, + [57340, 26], + c, + [51626, 90], + c, + [48748, 14], + c, + [130, 54], + c, + [136, 48], + c, + [23, 22], + c, + [21, 17], + c, + [16, 15], + c, + [212, 28], + c, + [55767, 9], + c, + [197, 33], + c, + [70, 23], + c, + [55832, 10], + c, + [118, 16], + c, + [57620, 17], + c, + [48999, 18], + c, + [52271, 329], + c, + [70, 803], + c, + [14, 28], + c, + [53212, 113], + c, + [73, 289], + c, + [53644, 143], + c, + [213, 165], + c, + [890, 155], + c, + [52504, 74], + c, + [70, 142], + c, + [50939, 66], + c, + [60094, 12], + c, + [3075, 73], + c, + [59315, 160], + c, + [51249, 156], + c, + [156, 624], + c, + [4744, 728], + c, + [809, 790], + c, + [850, 42], + c, + [1719, 56], + c, + [2801, 160], + c, + [1400, 994], + c, + [6554, 17], + c, + [4103, 12], + c, + [6337, 22], + c, + [700, 42], + c, + [737, 68], + c, + [56113, 69], + c, + [34, 72], + c, + [56137, 36], + c, + [63523, 12], + c, + [56035, 14], + c, + [63457, 224], + c, + [151, 122], + c, + [58894, 153], + c, + [1513, 453], + c, + [7728, 60], + c, + [1774, 404], + c, + [1272, 101], + c, + [3093, 9], + c, + [58128, 14], + c, + [1606, 18], + c, + [58150, 21], + c, + [3155, 58], + c, + [6473, 99], + c, + [1758, 7], + c, + [5890, 78], + c, + [1866, 21], + c, + [104, 14], + c, + [8839, 73], + c, + [72, 193], + c, + [791, 83], + c, + [778, 71], + c, + [2546, 68], + c, + [3372, 376], + c, + [356, 177], + c, + [1057, 18], + c, + [555, 48], + c, + [1149, 11], + c, + [54, 18], + c, + [1182, 15], + c, + [15, 21], + c, + [9680, 32], + c, + [355, 112], + c, + [1593, 55], + c, + [883, 34], + c, + [233, 21], + c, + [109, 33], + c, + [4324, 538], + c, + [1509, 37], + c, + [1687, 72], + c, + [66142, 212], + c, + [156, 2496], + c, + [7900, 734], + c, + [532, 330], + c, + [1688, 552], + c, + [2552, 940], + c, + [316, 209], + c, + [71583, 646], + c, + [14537, 67], + c, + [2672, 726], + c, + [13968, 736], + c, + [2171, 523], + c, + [12156, 8], + c, + [653, 112], + c, + [40, 80], + c, + [937, 156], + c, + [394, 45], + c, + [10131, 342], + c, + [399, 35], + c, + [35, 55], + c, + [69571, 14], + c, + [10978, 127], + c, + [151, 23], + c, + [10833, 70], + c, + [1641, 108], + c, + [1677, 342], + c, + [10676, 20], + c, + [77487, 77], + c, + [13568, 108], + c, + [547, 95], + c, + [2340, 363], + c, + [4876, 191], + c, + [807, 96], + c, + [808, 64], + c, + [333, 71], + c, + [14298, 118], + c, + [19544, 144], + c, + [1594, 253], + c, + [19854, 79], + c, + [381, 136], + c, + [1673, 126], + c, + [1799, 127], + c, + [19942, 66], + c, + [192, 192], + c, + [65, 192], + c, + [14173, 141], + c, + [72508, 43], + c, + [108, 24], + c, + [72014, 100], + c, + [2085, 174], + c, + [80973, 78], + c, + [138, 58], + c, + [1933, 214], + c, + [80655, 31], + c, + [1998, 215], + c, + [79553, 10], + c, + [2002, 79], + c, + [5704, 379], + c, + [23431, 314], + c, + [82019, 11], + c, + [5189, 27], + c, + [1719, 10], + c, + [14203, 49], + c, + [1096, 88], + c, + [24691, 13], + c, + [4257, 177], + c, + [3668, 70], + c, + [4515, 185], + c, + [1323, 211], + c, + [2645, 65], + c, + [44, 15], + c, + [17365, 125], + c, + [6881, 152], + c, + [9791, 231], + c, + [17818, 95], + c, + [7924, 467], + c, + [924, 85], + c, + [9385, 505], + c, + [22107, 125], + c, + [9124, 519], + c, + [500, 91], + c, + [18097, 16], + c, + [610, 20], + c, + [127, 57], + c, + [56, 35], + c, + [83800, 25], + c, + [77443, 68], + c, + [822, 45], + c, + [357, 67], + c, + [2728, 77], + c, + [1001, 141], + c, + [7295, 174], + c, + [9816, 224], + c, + [366, 100], + c, + [69, 207], + c, + [72, 73], + c, + [275, 152], + c, + [1213, 67], + c, + [85255, 13], + c, + [88, 11], + c, + [78230, 51], + c, + [6266, 28], + c, + [2311, 115], + c, + [78691, 45], + c, + [6547, 119], + c, + [2189, 259], + c, + [3055, 171], + c, + [40, 160], + c, + [6570, 95], + c, + [2226, 28], + c, + [5914, 20], + c, + [25611, 35], + c, + [3362, 87], + c, + [80806, 90], + c, + [1153, 87], + c, + [1066, 197], + c, + [13941, 815], + c, + [659, 469], + c, + [468, 156], + c, + [1283, 504], + c, + [3337, 48], + c, + [11237, 102], + c, + [2703, 12], + c, + [9881, 88], + c, + [25285, 85], + c, + [5048, 70], + c, + [12048, 172], + c, + [105, 23], + c, + [2721, 80], + c, + [568, 39], + c, + [83106, 203], + c, + [5614, 203], + c, + [2226, 580], + c, + [139, 415], + c, + [28837, 102], + c, + [623, 384], + c, + [36573, 371], + c, + [575, 131], + c, + [2947, 61], + c, + [2763, 115], + c, + [2740, 23], + c, + [29320, 73], + c, + [88577, 351], + c, + [3397, 42], + c, + [7239, 15], + c, + [659, 87], + c, + [29890, 69], + c, + [949, 91], + c, + [85645, 1099], + c, + [1099, 630], + c, + [5514, 86], + c, + [5461, 103], + c, + [20260, 55], + c, + [912, 152], + c, + [32775, 73], + c, + [8638, 39], + c, + [34, 68], + c, + [697, 205], + c, + [17726, 151], + c, + [10318, 75], + c, + [1756, 150], + c, + [31, 24], + c, + [179, 41], + c, + [3320, 66], + c, + [9873, 206], + c, + [33747, 21], + c, + [90318, 24], + c, + [6555, 78], + c, + [29867, 156], + c, + [156, 108], + c, + [40711, 28], + c, + [10296, 57], + c, + [1035, 52], + c, + [16235, 41], + c, + [4138, 73], + c, + [17012, 80], + c, + [105, 26], + c, + [12873, 35], + c, + [2023, 98], + c, + [1863, 67], + c, + [1969, 8], + c, + [11215, 179], + c, + [177, 127], + c, + [788, 54], + c, + [4933, 92], + c, + [93643, 934], + c, + [1461, 35], + c, + [1742, 10], + c, + [904, 537], + c, + [34647, 223], + c, + [26951, 203], + c, + [4651, 65], + c, + [2152, 4], + c, + [472, 88], + c, + [488, 71], + c, + [19207, 21], + c, + [5769, 200], + c, + [149, 103], + c, + [253, 39], + c, + [4249, 42], + c, + [2717, 125], + c, + [3560, 16], + c, + [44613, 13], + c, + [14684, 44], + c, + [3542, 20], + c, + [1183, 180], + c, + [25162, 30], + c, + [14075, 9], + c, + [420, 71], + c, + [72, 84], + c, + [3834, 12], + c, + [14173, 15], + c, + [805, 80], + c, + [1757, 93], + c, + [24215, 127], + c, + [75, 60], + c, + [45247, 29], + c, + [1645, 57], + c, + [19578, 57], + c, + [25960, 32], + c, + [1552, 111], + c, + [35976, 22], + c, + [102513, 16], + c, + [12, 22], + c, + [706, 70], + c, + [529, 100], + c, + [2533, 78], + c, + [2539, 62], + c, + [12185, 68], + c, + [622, 48], + c, + [182, 20], + c, + [37932, 15], + c, + [6751, 100], + c, + [22980, 110], + c, + [79, 40], + c, + [36474, 17], + c, + [21697, 31], + c, + [1460, 101], + c, + [38054, 25], + c, + [103744, 55], + c, + [6591, 35], + c, + [404, 80], + c, + [36817, 24], + c, + [105, 32] +]), + state: u([ + 100, + 1, + 2, + 4, + 3, + 5, + 36, + 29, + 75, + 99, + 45, + 59, + 60, + 44, + 18, + 25, + 13, + 22, + 7, + 28, + 8, + 19, + 10, + 43, + 20, + 11, + 21, + 32, + 34, + 31, + 33, + 30, + 14, + 23, + 55, + 46, + 47, + 54, + 40, + 41, + 39, + 24, + s, + [48, 6, 1], + 58, + 17, + 35, + 26, + 16, + 15, + 12, + 56, + 95, + 57, + 9, + 37, + 38, + 27, + 106, + 100, + 109, + c, + [60, 57], + 112, + 114, + 113, + 122, + 126, + 133, + 134, + 139, + 141, + 169, + 151, + 150, + 146, + 166, + 164, + 160, + 147, + 168, + 148, + s, + [152, 4, 1], + 157, + 158, + 163, + 156, + 159, + 149, + 162, + 191, + 206, + 209, + 221, + 211, + 220, + 215, + 217, + 219, + 216, + 214, + 191, + 210, + 223, + 226, + 225, + 228, + 232, + 238, + 236, + 237, + 100, + 240, + c, + [172, 59], + 244, + 246, + 245, + 247, + 114, + 249, + 257, + 252, + 254, + 253, + 255, + 256, + 248, + 191, + c, + [117, 3], + 259, + c, + [117, 18], + 169, + 261, + 75, + 99, + 151, + 150, + 262, + c, + [25, 6], + 260, + c, + [26, 12], + 268, + 265, + 266, + 263, + 264, + 269, + 270, + c, + [55, 3], + 273, + c, + [55, 18], + 100, + 275, + 276, + 114, + 277, + c, + [27, 3], + 278, + c, + [27, 18], + 282, + 292, + 100, + 560, + c, + [179, 57], + 246, + 562, + c, + [85, 3], + 570, + c, + [85, 18], + 571, + 574, + 581, + 588, + 576, + 578, + 580, + 585, + 579, + 584, + 582, + 589, + 594, + 593, + 596, + 595, + 597, + 601, + 246, + 602, + 603, + 604, + s, + [607, 4, 1], + 100, + 611, + c, + [109, 3], + 628, + c, + [110, 5], + 640, + c, + [111, 49], + 169, + 651, + c, + [254, 4], + 654, + c, + [112, 16], + 652, + 162, + 191, + 656, + 657, + 653, + c, + [138, 3], + 661, + c, + [305, 19], + 151, + 150, + 662, + c, + [22, 21], + 663, + c, + [22, 21], + 664, + c, + [22, 21], + 665, + c, + [22, 18], + 667, + 666, + 669, + 670, + 673, + 674, + 672, + 675, + 676, + c, + [31, 3], + 678, + c, + [31, 15], + 679, + 680, + c, + [33, 3], + 698, + 693, + 696, + 690, + 692, + 691, + 694, + 695, + 688, + 687, + 689, + 191, + 684, + 685, + c, + [38, 3], + c, + [437, 7], + 699, + c, + [70, 12], + 700, + 701, + 707, + 702, + 704, + 246, + 708, + 246, + 710, + 711, + 221, + 713, + c, + [588, 7], + 714, + 75, + 99, + 715, + 717, + s, + [720, 4, 2], + 246, + 729, + 730, + 732, + 736, + 739, + 735, + 734, + 771, + 761, + 191, + 772, + 246, + 792, + 793, + 75, + 99, + 106, + 797, + c, + [113, 5], + 100, + 800, + c, + [322, 59], + 628, + 640, + 810, + 807, + 806, + 811, + 628, + 640, + 100, + 812, + 276, + 628, + 640, + 814, + 815, + 816, + 169, + 818, + 819, + 151, + 150, + 820, + c, + [223, 18], + 817, + 821, + 100, + 823, + 276, + 100, + 824, + c, + [537, 57], + 829, + 832, + 830, + c, + [243, 10], + 835, + c, + [335, 15], + c, + [23, 7], + 836, + c, + [23, 12], + 837, + 839, + c, + [25, 3], + 841, + c, + [137, 18], + 842, + 628, + 640, + 843, + 845, + 847, + c, + [28, 3], + 849, + c, + [28, 18], + 851, + 191, + 850, + 856, + 855, + 857, + 860, + 859, + 861, + s, + [863, 4, 1], + 869, + 868, + 871, + 879, + 883, + 882, + 880, + 887, + 889, + 246, + 891, + 890, + 246, + 891, + 892, + 893, + c, + [51, 3], + 895, + c, + [461, 21], + 896, + c, + [22, 21], + 897, + c, + [22, 21], + 898, + c, + [22, 21], + 899, + c, + [22, 21], + 900, + c, + [22, 21], + 901, + c, + [22, 21], + 902, + c, + [22, 21], + 903, + c, + [22, 21], + 904, + c, + [22, 21], + 905, + c, + [22, 21], + 906, + c, + [22, 21], + 907, + c, + [22, 21], + 908, + c, + [22, 21], + 909, + c, + [22, 21], + 910, + c, + [22, 18], + 911, + 914, + 912, + 915, + 918, + 916, + c, + [28, 3], + 919, + c, + [50, 21], + 920, + c, + [22, 21], + 921, + c, + [22, 21], + 922, + c, + [22, 21], + 923, + c, + [22, 21], + 924, + c, + [22, 21], + 925, + c, + [22, 21], + 926, + c, + [22, 21], + 927, + c, + [22, 21], + 928, + c, + [22, 18], + 929, + c, + [23, 3], + 933, + c, + [45, 21], + 934, + c, + [22, 18], + 698, + 938, + 939, + 937, + 936, + c, + [27, 3], + 943, + c, + [49, 21], + 944, + c, + [22, 21], + 945, + c, + [22, 18], + 883, + 882, + 946, + 628, + 640, + 209, + c, + [804, 10], + 951, + c, + [29, 12], + 954, + 628, + 640, + 628, + 640, + c, + [4, 6], + c, + [34, 3], + 957, + c, + [62, 18], + 958, + 75, + 99, + 628, + 959, + 680, + 640, + 961, + 960, + c, + [31, 3], + 963, + c, + [115, 21], + 964, + c, + [115, 20], + 965, + c, + [25, 3], + 968, + c, + [25, 18], + 980, + 75, + 99, + 984, + 976, + 977, + 983, + 191, + 985, + 984, + 986, + 987, + 983, + 191, + 989, + 221, + 991, + c, + [1186, 7], + 994, + 993, + 995, + s, + [997, 5, 1], + 1003, + 221, + 1005, + 1006, + 1008, + 1007, + 1015, + 1011, + 1012, + 1013, + 1017, + 1016, + 1019, + 1025, + c, + [68, 3], + 1026, + c, + [115, 21], + 1027, + c, + [22, 18], + 736, + 739, + 1029, + c, + [1238, 3], + 1028, + 772, + 1034, + 1035, + 1037, + c, + [1235, 5], + 1042, + 246, + 1058, + 246, + 1059, + 1060, + 246, + 1062, + 1063, + 1064, + 238, + 1065, + 1015, + 1069, + 1067, + 1068, + 1070, + 1073, + c, + [57, 4], + 1074, + c, + [79, 21], + 1075, + c, + [22, 18], + 1076, + 268, + 1077, + c, + [25, 3], + 1079, + c, + [25, 18], + 1078, + 1081, + 1083, + 1082, + 810, + 1087, + 100, + 1088, + 169, + 1089, + c, + [1254, 22], + 169, + 1090, + c, + [24, 23], + 1091, + c, + [24, 22], + 1094, + 628, + 1096, + 640, + 1097, + 1099, + c, + [414, 10], + 1108, + c, + [29, 12], + 628, + 640, + 1117, + 1118, + 246, + 1119, + 581, + 588, + 1121, + c, + [1783, 5], + 628, + 640, + 1123, + 1122, + 1127, + 1126, + 191, + 1125, + 584, + 582, + 1127, + 588, + 1128, + 585, + 1129, + 584, + 582, + 581, + 588, + 1130, + c, + [1809, 6], + 1131, + 1134, + 1133, + 246, + 1135, + 246, + 1136, + c, + [70, 3], + 1137, + c, + [98, 18], + 1139, + 1138, + 1140, + 1141, + 246, + 1145, + 883, + 882, + 1150, + c, + [31, 3], + 1155, + c, + [31, 18], + 1156, + 1157, + 100, + 1159, + c, + [1428, 57], + c, + [574, 10], + c, + [4, 22], + c, + [115, 3], + 1162, + c, + [371, 21], + 1163, + c, + [22, 18], + c, + [68, 25], + 1165, + c, + [2208, 11], + 1166, + c, + [50, 12], + 670, + c, + [802, 3], + 1171, + 1170, + c, + [106, 9], + 1173, + c, + [106, 21], + 1174, + c, + [106, 20], + 961, + 1178, + c, + [26, 3], + 1180, + c, + [132, 22], + c, + [1894, 9], + 1185, + 689, + c, + [16, 3], + 1187, + 707, + 1189, + c, + [17, 9], + 1190, + 689, + c, + [1923, 10], + 1191, + c, + [12, 11], + 1192, + 689, + 191, + 984, + 1193, + 983, + 191, + 1195, + 169, + 151, + 1198, + 1199, + c, + [84, 16], + 1197, + 1196, + 162, + 191, + 246, + 1200, + 984, + 1201, + 983, + c, + [140, 4], + c, + [30, 18], + 162, + 191, + 1202, + 1203, + 1204, + c, + [26, 3], + 1206, + c, + [140, 18], + 1207, + 1209, + 1211, + 1210, + 221, + 1214, + 1216, + c, + [802, 7], + 670, + 1218, + c, + [38, 3], + 1219, + c, + [226, 21], + c, + [283, 7], + 1221, + c, + [23, 12], + 1220, + c, + [202, 4], + 736, + 739, + 1224, + c, + [2026, 4], + 1019, + 736, + 739, + 1226, + c, + [8, 3], + 1225, + 772, + c, + [44, 3], + 1227, + c, + [66, 21], + 1228, + c, + [22, 18], + 1229, + 1230, + 1015, + 1069, + 1231, + 1068, + 1070, + 1232, + c, + [96, 10], + 1233, + c, + [31, 12], + s, + [1234, 6, 1], + 1241, + 1242, + 1243, + 1239, + 1244, + 1239, + 1245, + 1239, + 1246, + 1239, + 736, + 739, + 1247, + c, + [107, 4], + 169, + 1248, + c, + [742, 22], + 1249, + 1252, + 1255, + 75, + 99, + 1259, + c, + [426, 9], + 1260, + c, + [34, 18], + 1083, + 1261, + c, + [24, 3], + 1262, + c, + [158, 21], + 1263, + c, + [22, 18], + 1081, + 169, + 1265, + c, + [104, 21], + 1266, + 1268, + 1270, + 1271, + 1273, + s, + [1272, 4, 1], + c, + [183, 10], + 1276, + c, + [32, 12], + 1277, + c, + [24, 3], + 1279, + c, + [101, 21], + 1280, + c, + [22, 21], + 1281, + c, + [22, 21], + 1282, + c, + [22, 21], + 1283, + c, + [22, 18], + 1284, + 1287, + 246, + 1289, + 1290, + 1292, + 191, + 1291, + 1294, + 1293, + 856, + 855, + 1297, + 1296, + 628, + 640, + 1305, + 75, + 99, + 1302, + 1307, + c, + [43, 3], + 1308, + c, + [43, 18], + 1310, + c, + [543, 20], + 1313, + c, + [658, 4], + 246, + 1314, + c, + [27, 3], + 1315, + c, + [115, 21], + 1316, + c, + [706, 22], + 169, + 1319, + c, + [818, 11], + 1320, + c, + [52, 15], + 1323, + c, + [74, 19], + 1324, + c, + [48, 11], + 1325, + c, + [26, 12], + 1327, + c, + [79, 4], + 1331, + c, + [436, 5], + 1334, + c, + [1511, 20], + 1335, + c, + [25, 3], + 1336, + c, + [25, 18], + 1340, + 1339, + c, + [136, 3], + 1347, + c, + [1516, 3], + 1345, + 1346, + 983, + 191, + 1349, + 1350, + 1348, + 628, + 640, + 1354, + 1355, + 1362, + 1359, + 1361, + 1363, + 1366, + 221, + c, + [2699, 3], + 1375, + c, + [723, 8], + 1015, + 1376, + 1013, + c, + [90, 3], + 1378, + 1380, + 151, + 150, + 1382, + c, + [67, 18], + 1379, + c, + [694, 3], + 1384, + c, + [702, 5], + c, + [714, 6], + 1391, + c, + [12, 4], + 736, + 739, + 1393, + c, + [7, 6], + 1395, + c, + [7, 6], + 1397, + c, + [7, 6], + 1400, + c, + [7, 4], + 1401, + c, + [644, 3], + 1403, + c, + [16, 6], + 1405, + c, + [758, 7], + 1413, + c, + [8, 4], + s, + [1414, 4, 1], + c, + [166, 3], + 1419, + c, + [99, 18], + 1015, + 1069, + 1420, + 1070, + c, + [26, 3], + 1421, + c, + [1163, 24], + c, + [28, 3], + 1424, + c, + [245, 20], + 1426, + c, + [1248, 13], + c, + [311, 7], + 1434, + c, + [36, 12], + 1435, + 169, + 1436, + c, + [214, 22], + 1438, + 1440, + 1439, + 1273, + 1442, + 1443, + 1445, + 1015, + 1447, + 1446, + 1448, + 75, + 99, + c, + [61, 3], + 1449, + c, + [150, 20], + 1450, + 1068, + c, + [151, 4], + c, + [88, 7], + 1451, + c, + [28, 12], + 246, + 1452, + 1453, + c, + [116, 5], + 1454, + c, + [179, 24], + 1464, + 1465, + c, + [433, 5], + c, + [588, 20], + 1470, + 162, + 191, + 1473, + c, + [402, 3], + 1471, + 1472, + 983, + 191, + 1015, + 1474, + c, + [33, 3], + 1475, + c, + [68, 18], + 984, + 1476, + c, + [1190, 3], + 1477, + c, + [962, 22], + 1481, + c, + [51, 3], + 1483, + c, + [645, 21], + 1484, + c, + [22, 18], + 1485, + 1487, + 1486, + c, + [492, 3], + 1488, + c, + [488, 7], + 221, + 1490, + 1489, + 1494, + 1495, + 1492, + 1491, + 191, + 1500, + 1362, + 1511, + c, + [515, 3], + 628, + 640, + s, + [1019, 5], + 1517, + s, + [1019, 3], + c, + [230, 10], + 1519, + c, + [62, 12], + c, + [498, 5], + c, + [28, 3], + 1520, + c, + [230, 20], + 1521, + 1532, + 1522, + 1523, + 1524, + c, + [29, 3], + 1537, + c, + [140, 21], + 1538, + c, + [22, 21], + 1539, + c, + [22, 21], + 1540, + c, + [22, 21], + 1541, + c, + [22, 19], + 1544, + c, + [461, 22], + 1127, + 588, + 1546, + c, + [1926, 4], + 1549, + 75, + 99, + 1552, + 1551, + 1305, + c, + [3390, 3], + 640, + 1554, + 1556, + 1555, + 1558, + 628, + 640, + 1561, + 1562, + 984, + 1568, + 983, + c, + [170, 3], + 1570, + c, + [78, 3], + 1573, + c, + [54, 18], + 1577, + c, + [222, 4], + 1582, + s, + [1585, 4, 2], + 75, + 99, + 1592, + 1594, + c, + [297, 4], + 169, + 1602, + c, + [95, 21], + 1603, + 736, + 739, + 1606, + c, + [705, 4], + 628, + 640, + 1532, + 1608, + 246, + 1611, + 114, + 1613, + 1615, + c, + [4038, 5], + 1619, + c, + [637, 10], + 1625, + 1127, + 588, + 1627, + c, + [129, 4], + 1628, + 1629, + 1630, + 1273, + 1635, + 1637, + 1638, + 1636, + 100, + 1643, + c, + [1992, 57], + 100, + 1644, + c, + [59, 57], + 1647, + 246, + 1654, + 1653, + 628, + 640, + 1657, + c, + [237, 3], + 1661, + c, + [196, 18], + 1662, + 169, + 1666, + 1667, + 151, + 150, + 1671, + c, + [25, 18], + 1672, + 1673, + c, + [49, 3], + 1674, + c, + [766, 19], + 1447, + 1675, + 1676, + 1678, + 1677, + 1679, + 1681, + 1682, + 1683, + 75, + 99, + 1684, + 75, + 99, + 1019, + 1690, + 1689, + 1692, + c, + [41, 3], + 1693, + c, + [41, 18], + 114, + 1694, + c, + [4310, 6], + c, + [30, 3], + 1696, + c, + [30, 18], + 1697, + 1706, + s, + [1702, 4, 1], + 1712, + 1713, + c, + [869, 3], + 1717, + c, + [129, 22], + 169, + 1718, + c, + [469, 22], + 1719, + 1015, + 1069, + 1721, + 1068, + 1070, + 1722, + 628, + 640, + 1731, + 1735, + 1736, + 169, + 1737, + c, + [36, 22], + 1738, + 628, + 640, + 1745, + 1744, + 628, + 640, + 1748, + 246, + 1752, + 1753, + c, + [681, 5], + 1756, + c, + [681, 20], + s, + [1758, 4, 1], + 1638, + 1764, + 1766, + 1767, + 1769, + 1768, + 1015, + 1447, + 1771, + 984, + 1772, + c, + [886, 3], + 1447, + 1773, + 1775, + c, + [45, 3], + 1776, + c, + [45, 18], + 1777, + c, + [23, 3], + 1778, + c, + [23, 18], + 1779, + 1780, + 75, + 99, + 1783, + 75, + 99, + 1785, + 75, + 99, + 1787, + 1789, + 169, + 1791, + c, + [198, 22], + 151, + 150, + 1792, + c, + [22, 19], + 1794, + c, + [244, 23], + 1795, + c, + [24, 22], + 1799, + 1800, + 1802, + 1805, + 1804, + 1807, + 628, + 640, + 1810, + 1809, + 1813, + 1812, + 1816, + 1638, + c, + [603, 4], + 1821, + 75, + 99, + 1823, + 75, + 99, + 1824, + 75, + 99, + 1825, + 75, + 99, + 1826, + c, + [228, 3], + 1828, + c, + [57, 22], + 1834, + 1832, + 1831, + 169, + 1835, + 1836, + 151, + 150, + 1837, + c, + [457, 20], + 1838, + 1839, + 1840, + 1844, + 1843, + 1015, + 1447, + 1847, + 1015, + 1447, + 1848, + 1851, + 1852, + 1853, + 75, + 99, + 1854, + 1857, + 628, + 640, + 1844, + 1862, + 1015, + 1447, + 1865, + 984, + 1868, + 983, + 191, + 1870, + 169, + 1871, + c, + [55, 21], + 1872, + 1876, + 1879, + 1834, + 1882, + 1881, + 246, + 1883, + 1884, + 1887, + 1886, + 1889, + 1890, + 1844, + 1892, + 1893 +]), + mode: u([ + 2, + s, + [1, 42], + 2, + c, + [44, 4], + s, + [2, 14], + c, + [33, 15], + c, + [62, 30], + s, + [2, 270], + c, + [288, 17], + c, + [7, 9], + c, + [403, 43], + c, + [361, 23], + c, + [5, 7], + c, + [394, 28], + c, + [400, 84], + c, + [148, 27], + c, + [601, 34], + c, + [550, 160], + s, + [1, 73], + c, + [83, 83], + s, + [1, 97], + c, + [275, 23], + c, + [199, 9], + c, + [327, 43], + c, + [351, 25], + c, + [366, 18], + s, + [2, 395], + s, + [1, 267], + c, + [269, 15], + c, + [1781, 125], + c, + [1488, 11], + c, + [1580, 58], + c, + [1454, 19], + c, + [980, 16], + c, + [104, 9], + c, + [1214, 20], + c, + [32, 11], + c, + [12, 8], + c, + [568, 39], + c, + [183, 49], + s, + [2, 2774], + c, + [3986, 74], + c, + [360, 287], + c, + [4229, 18], + c, + [328, 136], + c, + [3909, 242], + c, + [1910, 1160], + c, + [5666, 394], + c, + [5889, 238], + c, + [91, 20], + c, + [5438, 8], + c, + [49, 27], + c, + [294, 29], + c, + [5459, 6], + c, + [6504, 31], + c, + [35, 9], + c, + [34, 57], + c, + [298, 33], + c, + [98, 71], + c, + [5714, 8], + c, + [442, 65], + c, + [6784, 35], + c, + [31, 9], + c, + [7345, 36], + c, + [6144, 26], + c, + [6857, 6], + c, + [5955, 5], + c, + [6869, 6], + c, + [5943, 7], + c, + [5921, 12], + c, + [147, 15], + c, + [7570, 21], + c, + [781, 83], + c, + [137, 11], + c, + [879, 125], + c, + [6163, 82], + c, + [6315, 18], + c, + [6373, 36], + c, + [810, 32], + c, + [78, 13], + c, + [93, 27], + c, + [8490, 25], + c, + [89, 18], + c, + [63, 41], + c, + [7478, 40], + c, + [7527, 49], + c, + [49, 59], + c, + [211, 11], + c, + [347, 15], + c, + [7615, 7], + c, + [469, 32], + c, + [7638, 402], + s, + [2, 47550], + c, + [54919, 44], + c, + [48218, 11], + c, + [51453, 14], + c, + [48015, 33], + c, + [51310, 200], + c, + [290, 6], + c, + [48902, 17], + c, + [49818, 50], + c, + [49124, 10], + c, + [12, 6], + c, + [48456, 32], + c, + [48736, 37], + c, + [55102, 10], + c, + [55, 14], + c, + [61, 22], + c, + [48852, 14], + c, + [466, 12], + c, + [484, 14], + c, + [48828, 14], + c, + [55750, 269], + s, + [1, 536], + c, + [805, 35], + c, + [34, 16], + c, + [51, 204], + c, + [351, 147], + c, + [743, 343], + c, + [2028, 61], + c, + [50162, 33], + c, + [127, 47], + c, + [51002, 9], + c, + [1876, 8], + c, + [165, 24], + c, + [50239, 43], + c, + [587, 16], + c, + [51029, 55], + c, + [57, 11], + c, + [154, 6], + c, + [50547, 67], + c, + [51417, 72], + c, + [154, 152], + c, + [54209, 97], + c, + [154, 299], + c, + [55584, 755], + c, + [833, 825], + c, + [60985, 31], + c, + [55806, 230], + c, + [1088, 188], + c, + [393, 56], + c, + [56593, 146], + c, + [391, 11], + c, + [1488, 300], + c, + [701, 161], + c, + [54173, 38], + c, + [60558, 30], + c, + [148, 84], + c, + [54852, 44], + c, + [33, 88], + c, + [55319, 15], + c, + [980, 26], + c, + [793, 61], + c, + [138, 30], + c, + [3735, 67], + c, + [408, 76], + c, + [57697, 234], + c, + [56901, 773], + c, + [2350, 127], + c, + [1134, 92], + c, + [55884, 11], + c, + [7300, 13], + c, + [1671, 24], + c, + [63918, 14], + c, + [6004, 154], + c, + [56529, 21], + c, + [232, 19], + c, + [63694, 168], + c, + [57057, 43], + c, + [2201, 6], + c, + [318, 13], + c, + [455, 12], + c, + [56285, 40], + c, + [2227, 60], + c, + [3511, 11], + c, + [4391, 357], + c, + [354, 215], + c, + [1042, 37], + c, + [719, 25], + c, + [64443, 19], + c, + [8582, 26], + c, + [5961, 130], + c, + [63787, 58], + c, + [8671, 21], + c, + [493, 17], + c, + [3928, 16], + c, + [57508, 18], + c, + [6338, 154], + c, + [6498, 317], + c, + [58883, 63], + c, + [227, 13], + c, + [65575, 24], + c, + [102, 30], + c, + [7206, 38], + c, + [7514, 64], + c, + [64487, 18], + c, + [554, 207], + c, + [308, 154], + c, + [154, 86], + c, + [10012, 7], + c, + [154, 215], + c, + [5038, 158], + c, + [8284, 304], + c, + [8649, 14], + c, + [539, 70], + c, + [154, 382], + c, + [2020, 80], + c, + [770, 110], + c, + [1540, 50], + c, + [154, 517], + c, + [6869, 302], + c, + [3959, 208], + c, + [510, 510], + c, + [62216, 20], + c, + [2868, 72], + c, + [4539, 9], + c, + [620, 61], + c, + [154, 454], + c, + [5064, 8], + c, + [11611, 10], + c, + [61888, 15], + c, + [240, 57], + c, + [698, 608], + c, + [154, 146], + c, + [14296, 20], + c, + [12470, 29], + c, + [5069, 13], + c, + [12470, 110], + c, + [154, 38], + c, + [5788, 10], + c, + [154, 54], + c, + [1899, 38], + c, + [66076, 667], + c, + [631, 183], + c, + [1144, 192], + c, + [13768, 118], + c, + [1610, 102], + c, + [68848, 858], + c, + [2115, 509], + c, + [66443, 43], + c, + [9842, 128], + c, + [67492, 380], + c, + [1266, 237], + c, + [67147, 10], + c, + [451, 99], + c, + [120, 68], + c, + [10934, 52], + c, + [15705, 368], + c, + [75327, 11], + c, + [11468, 30], + c, + [5907, 100], + c, + [7759, 59], + c, + [66, 40], + c, + [1279, 340], + c, + [11856, 50], + c, + [13778, 88], + c, + [3567, 55], + c, + [19457, 34], + c, + [93, 82], + c, + [1942, 110], + c, + [76744, 31], + c, + [13597, 438], + c, + [3375, 443], + c, + [385, 377], + c, + [1221, 172], + c, + [12193, 16], + c, + [11825, 14], + c, + [15406, 10], + c, + [1654, 17], + c, + [124, 18], + c, + [69924, 43], + c, + [7211, 169], + c, + [70045, 46], + c, + [446, 59], + c, + [554, 108], + c, + [265, 21], + c, + [21, 40], + c, + [1548, 253], + c, + [13187, 10], + c, + [5199, 395], + c, + [20838, 246], + c, + [71648, 12], + c, + [590, 25], + c, + [70949, 10], + c, + [78630, 37], + c, + [9137, 49], + c, + [18439, 45], + c, + [3975, 31], + c, + [784, 145], + c, + [71304, 10], + c, + [4059, 60], + c, + [999, 167], + c, + [10976, 165], + c, + [5325, 49], + c, + [71962, 50], + c, + [16156, 69], + c, + [75052, 318], + c, + [17687, 492], + c, + [13212, 71], + c, + [543, 390], + c, + [1108, 173], + c, + [1506, 118], + c, + [8840, 484], + c, + [12045, 19], + c, + [507, 45], + c, + [7605, 56], + c, + [13954, 21], + c, + [18328, 40], + c, + [6107, 42], + c, + [43, 26], + c, + [2799, 13], + c, + [20056, 18], + c, + [784, 48], + c, + [32, 27], + c, + [4501, 43], + c, + [6714, 133], + c, + [6466, 118], + c, + [6593, 142], + c, + [3243, 148], + c, + [25009, 257], + c, + [1800, 58], + c, + [378, 269], + c, + [211, 113], + c, + [3803, 45], + c, + [83, 80], + c, + [9918, 206], + c, + [12984, 25], + c, + [19306, 189], + c, + [830, 228], + c, + [251, 58], + c, + [3245, 38], + c, + [5538, 65], + c, + [59, 63], + c, + [6781, 93], + c, + [738, 29], + c, + [18603, 240], + c, + [19065, 156], + c, + [10249, 209], + c, + [6881, 346], + c, + [4789, 394], + c, + [4875, 156], + c, + [13629, 550], + c, + [2646, 114], + c, + [15180, 42], + c, + [12510, 63], + c, + [15959, 113], + c, + [2577, 60], + c, + [80384, 69], + c, + [12146, 77], + c, + [264, 38], + c, + [26, 35], + c, + [1721, 103], + c, + [603, 35], + c, + [30934, 13], + c, + [1881, 142], + c, + [15369, 503], + c, + [503, 138], + c, + [138, 414], + c, + [6259, 83], + c, + [480, 461], + c, + [20453, 349], + c, + [51, 41], + c, + [81827, 54], + c, + [6040, 19], + c, + [82038, 26], + c, + [5119, 53], + c, + [82040, 43], + c, + [81774, 13], + c, + [12323, 16], + c, + [31979, 247], + c, + [2976, 58], + c, + [26078, 13], + c, + [18143, 11], + c, + [3138, 52], + c, + [8165, 23], + c, + [6363, 14], + c, + [15109, 54], + c, + [5445, 44], + c, + [589, 41], + c, + [35496, 1096], + c, + [10039, 468], + c, + [2631, 160], + c, + [167, 43], + c, + [5266, 45], + c, + [16304, 59], + c, + [36221, 18], + c, + [2613, 14], + c, + [28221, 13], + c, + [7740, 59], + c, + [31137, 113], + c, + [366, 36], + c, + [30325, 29], + c, + [18879, 10], + c, + [85561, 33], + c, + [30397, 46], + c, + [8252, 37], + c, + [22014, 53], + c, + [8342, 46], + c, + [23822, 201], + c, + [2783, 12], + c, + [9876, 122], + c, + [36619, 21], + c, + [3455, 38], + c, + [17450, 22], + c, + [27454, 26], + c, + [2826, 21], + c, + [5977, 39], + c, + [10077, 229], + c, + [36991, 15], + c, + [3390, 15], + c, + [37166, 9], + c, + [86682, 20], + c, + [6386, 22], + c, + [27875, 49], + c, + [37676, 49], + c, + [97, 77], + c, + [6609, 19], + c, + [93379, 24], + c, + [14954, 102], + c, + [11257, 85], + c, + [996, 80], + c, + [20399, 10], + c, + [32212, 119], + c, + [32, 35], + c, + [1868, 98], + c, + [32203, 63], + c, + [5375, 126], + c, + [1304, 20], + c, + [1712, 99], + c, + [89728, 917], + c, + [5401, 26], + c, + [3282, 22], + c, + [3978, 492], + c, + [14754, 396], + c, + [32663, 16], + c, + [430, 52], + c, + [2167, 10], + c, + [21974, 53], + c, + [40152, 29], + c, + [17701, 10], + c, + [4375, 43], + c, + [26847, 10], + c, + [3732, 14], + c, + [2567, 22], + c, + [31898, 56], + c, + [21317, 114], + c, + [5490, 98], + c, + [2417, 79], + c, + [1030, 103], + c, + [2980, 18], + c, + [240, 42], + c, + [764, 19], + c, + [11123, 169], + c, + [12625, 11], + c, + [4873, 17], + c, + [10754, 118], + c, + [90782, 22], + c, + [401, 27], + c, + [14738, 207], + c, + [5118, 41], + c, + [1157, 18], + c, + [283, 55], + c, + [1519, 51], + c, + [1340, 10], + c, + [18962, 19], + c, + [5847, 14], + c, + [142, 55], + c, + [187, 52], + c, + [64, 14], + c, + [279, 19], + c, + [5008, 25], + c, + [1563, 22], + c, + [20458, 74], + c, + [5770, 21], + c, + [2208, 107], + c, + [4489, 33], + c, + [2602, 69], + c, + [20852, 8], + c, + [32907, 22], + c, + [1608, 40], + c, + [2439, 63], + c, + [1950, 20], + c, + [8564, 15], + c, + [2563, 100], + c, + [9065, 26], + c, + [2935, 54], + c, + [2775, 76], + c, + [19846, 31], + c, + [6419, 25], + c, + [5840, 23], + c, + [3168, 75], + c, + [24102, 17], + c, + [11, 20], + c, + [143, 19] +]), + goto: u([ + 13, + 104, + 102, + 103, + 6, + 42, + 79, + 76, + 94, + 93, + 69, + 101, + 85, + 64, + 71, + 84, + 66, + 70, + 68, + 61, + 74, + 62, + 67, + 83, + 77, + 86, + 87, + 81, + 82, + 80, + s, + [88, 5, 1], + 98, + 65, + 78, + 72, + 96, + 97, + 63, + 73, + 13, + 13, + 105, + 108, + 107, + s, + [8, 4], + s, + [9, 4], + s, + [12, 5], + c, + [61, 4], + 110, + c, + [61, 10], + 13, + c, + [62, 30], + s, + [14, 5], + s, + [15, 5], + s, + [16, 5], + s, + [17, 5], + s, + [18, 5], + s, + [19, 5], + s, + [20, 5], + s, + [21, 5], + s, + [22, 5], + s, + [23, 5], + s, + [24, 5], + s, + [25, 5], + s, + [26, 5], + s, + [27, 5], + s, + [28, 5], + s, + [29, 5], + s, + [30, 5], + s, + [31, 5], + s, + [32, 5], + s, + [33, 5], + s, + [34, 5], + s, + [35, 5], + s, + [36, 5], + s, + [37, 5], + s, + [38, 5], + s, + [39, 5], + s, + [40, 5], + s, + [41, 5], + s, + [42, 5], + s, + [43, 5], + s, + [44, 5], + s, + [45, 5], + s, + [46, 5], + s, + [47, 5], + s, + [48, 5], + s, + [49, 5], + s, + [50, 5], + s, + [51, 5], + s, + [52, 5], + s, + [53, 5], + s, + [54, 5], + s, + [55, 5], + s, + [56, 5], + s, + [57, 5], + s, + [58, 5], + s, + [59, 5], + s, + [60, 5], + s, + [61, 5], + s, + [62, 5], + s, + [63, 5], + s, + [64, 5], + s, + [65, 5], + s, + [66, 5], + s, + [67, 5], + 111, + c, + [316, 3], + c, + [3, 3], + s, + [115, 6, 1], + c, + [9, 3], + 506, + 128, + 127, + 124, + 123, + 130, + 131, + 506, + 132, + 121, + 506, + 125, + 129, + 135, + 136, + 137, + c, + [19, 3], + 145, + 140, + 144, + 138, + 142, + 143, + c, + [9, 3], + 165, + 176, + 179, + 174, + 182, + 186, + 161, + 183, + 170, + 115, + 172, + 175, + 184, + 201, + 202, + 167, + 85, + 194, + 189, + 190, + s, + [195, 6, 1], + 203, + 204, + c, + [64, 5], + 177, + 178, + 180, + 181, + 187, + 193, + 185, + 188, + 173, + 171, + 192, + 205, + s, + [476, 3], + 207, + 208, + s, + [476, 3], + 208, + c, + [57, 3], + 213, + 222, + 182, + 186, + 183, + 115, + 184, + 212, + 218, + c, + [38, 5], + 185, + 192, + 205, + c, + [20, 3], + 224, + s, + [1048, 5], + 227, + s, + [1048, 14], + s, + [1052, 69], + c, + [93, 3], + 230, + 233, + 229, + 234, + 231, + 235, + c, + [219, 6], + c, + [599, 11], + c, + [538, 14], + 239, + c, + [539, 17], + 241, + 242, + c, + [48, 3], + 243, + c, + [4, 3], + s, + [314, 154], + 179, + 180, + c, + [159, 3], + 176, + 250, + 182, + 251, + c, + [336, 3], + 258, + c, + [373, 9], + c, + [339, 6], + c, + [416, 45], + s, + [677, 5], + s, + [678, 5], + c, + [58, 4], + 76, + c, + [59, 12], + 101, + c, + [60, 32], + c, + [50, 3], + 179, + 180, + 267, + c, + [6, 3], + 272, + 271, + c, + [119, 48], + 274, + c, + [624, 15], + c, + [61, 45], + s, + [162, 22], + 281, + s, + [162, 6], + 279, + 280, + 283, + s, + [162, 40], + 762, + 762, + 284, + s, + [762, 6], + s, + [152, 17], + 285, + 286, + s, + [152, 13], + s, + [287, 5, 1], + s, + [152, 41], + s, + [1, 177], + s, + [2, 177], + 293, + 314, + 381, + 405, + 417, + 452, + 521, + 441, + 464, + 440, + 375, + 409, + 413, + 406, + 297, + 299, + 551, + 473, + 445, + 511, + 444, + 527, + 344, + 420, + 450, + 343, + 309, + 301, + 401, + 294, + 295, + s, + [296, 4, 2], + s, + [303, 6, 1], + s, + [310, 4, 1], + s, + [315, 28, 1], + s, + [345, 30, 1], + s, + [376, 5, 1], + s, + [382, 19, 1], + 402, + 403, + 404, + 407, + 408, + 410, + 411, + 412, + 414, + 415, + 416, + 418, + 419, + s, + [421, 19, 1], + 442, + 443, + s, + [446, 4, 1], + 451, + s, + [453, 11, 1], + s, + [465, 8, 1], + s, + [474, 37, 1], + s, + [512, 9, 1], + s, + [522, 5, 1], + s, + [528, 23, 1], + s, + [552, 8, 1], + 6, + c, + [1782, 4], + c, + [1781, 41], + s, + [1046, 45], + s, + [1047, 45], + s, + [10, 4], + 561, + c, + [139, 3], + 563, + s, + [765, 5], + s, + [564, 6, 1], + c, + [984, 48], + s, + [508, 3], + 572, + 573, + c, + [53, 3], + 575, + c, + [4, 3], + 583, + 586, + 272, + 271, + 587, + 577, + 592, + 591, + 590, + 179, + 1146, + 180, + 1140, + c, + [16, 3], + s, + [1140, 12], + c, + [15, 3], + 598, + 599, + s, + [507, 3], + 691, + 600, + s, + [691, 4], + s, + [692, 6], + c, + [1104, 6], + c, + [3, 3], + s, + [572, 3], + 605, + 606, + c, + [8, 7], + c, + [4, 4], + c, + [11, 3], + s, + [1134, 4], + s, + [1135, 4], + c, + [299, 7], + 643, + 615, + 649, + 650, + 623, + 634, + 621, + 629, + 622, + 630, + 632, + 624, + 625, + 93, + 644, + 69, + 641, + 642, + 618, + 620, + c, + [316, 5], + 13, + 612, + 613, + 614, + 616, + 617, + 619, + 626, + 627, + 631, + 633, + s, + [635, 5, 1], + s, + [645, 4, 1], + c, + [336, 30], + s, + [291, 154], + s, + [292, 154], + s, + [293, 154], + s, + [294, 154], + s, + [295, 154], + s, + [296, 154], + s, + [297, 154], + s, + [298, 154], + s, + [299, 154], + s, + [300, 154], + s, + [301, 154], + s, + [302, 154], + s, + [303, 154], + s, + [304, 154], + s, + [305, 154], + s, + [306, 154], + s, + [307, 154], + s, + [308, 154], + c, + [4104, 22], + 658, + c, + [3001, 11], + 655, + c, + [3001, 14], + 70, + 192, + 205, + s, + [312, 154], + s, + [313, 154], + 659, + s, + [290, 8], + 564, + s, + [290, 9], + 660, + s, + [290, 135], + c, + [3513, 48], + c, + [48, 192], + s, + [286, 154], + s, + [361, 182], + s, + [362, 164], + s, + [363, 164], + s, + [364, 164], + s, + [365, 164], + s, + [366, 163], + c, + [1203, 3], + 668, + c, + [4, 3], + s, + [372, 164], + s, + [373, 164], + c, + [331, 3], + 671, + 176, + 179, + 182, + 183, + 184, + c, + [1511, 3], + 185, + 205, + 677, + c, + [1553, 44], + 681, + c, + [1554, 4], + 682, + 683, + s, + [629, 157], + c, + [208, 3], + 697, + c, + [223, 3], + c, + [6654, 4], + c, + [188, 9], + 686, + c, + [6654, 51], + c, + [6531, 9], + s, + [339, 10, 1], + c, + [19, 3], + 706, + 705, + 703, + c, + [6, 3], + 709, + s, + [477, 3], + c, + [7, 3], + 712, + 700, + c, + [7098, 10], + c, + [7097, 9], + 76, + 101, + s, + [1096, 6], + 716, + s, + [1096, 27], + 185, + c, + [56, 3], + 185, + 185, + 718, + s, + [185, 5], + 719, + s, + [185, 22], + 189, + c, + [35, 3], + 189, + 189, + 721, + s, + [189, 27], + 190, + c, + [34, 3], + 190, + 190, + 723, + s, + [190, 27], + s, + [193, 30], + 194, + c, + [64, 3], + 194, + 194, + 725, + s, + [194, 27], + 197, + c, + [34, 3], + 197, + 197, + 727, + s, + [197, 27], + s, + [202, 7], + 564, + s, + [202, 3], + 728, + s, + [202, 26], + s, + [200, 34], + s, + [778, 5], + c, + [110, 3], + s, + [163, 11], + 731, + s, + [163, 7], + s, + [1049, 19], + s, + [1062, 4], + 733, + 163, + c, + [47, 3], + 744, + 763, + 743, + 163, + 742, + 649, + 650, + 737, + 738, + 740, + 741, + s, + [745, 16, 1], + 762, + s, + [764, 7, 1], + s, + [773, 10, 1], + 163, + 783, + 784, + 731, + 201, + 202, + c, + [496, 8], + 163, + 163, + 192, + 205, + 163, + 163, + 785, + 786, + 599, + 787, + s, + [599, 4], + 788, + 789, + 603, + 790, + 791, + s, + [603, 4], + c, + [85, 3], + 794, + 76, + 101, + s, + [70, 3], + 795, + s, + [672, 5], + 796, + 108, + 107, + s, + [670, 5], + s, + [671, 5], + c, + [28, 3], + s, + [592, 5], + 798, + s, + [202, 12], + c, + [247, 27], + s, + [202, 40], + s, + [620, 5], + s, + [621, 5], + s, + [622, 5], + 364, + 799, + s, + [364, 4], + c, + [931, 11], + s, + [323, 17], + s, + [324, 17], + s, + [325, 17], + s, + [326, 17], + s, + [327, 17], + s, + [328, 17], + s, + [329, 17], + c, + [6163, 82], + 680, + 801, + s, + [680, 4], + s, + [681, 5], + s, + [359, 3], + c, + [89, 5], + 802, + c, + [89, 7], + 644, + c, + [87, 4], + s, + [359, 3], + c, + [84, 19], + 359, + 359, + 682, + 803, + s, + [682, 4], + 683, + 804, + s, + [683, 4], + s, + [688, 6], + s, + [690, 6], + s, + [684, 6], + s, + [685, 6], + 649, + 650, + 805, + 808, + 809, + c, + [178, 3], + s, + [661, 3], + s, + [662, 3], + 619, + c, + [93, 18], + 619, + 619, + c, + [92, 19], + 619, + 619, + c, + [51, 3], + 759, + 813, + s, + [759, 4], + s, + [761, 7], + s, + [764, 5], + 686, + c, + [63, 18], + 686, + 686, + c, + [63, 19], + 686, + 686, + s, + [162, 16], + c, + [7521, 41], + c, + [49, 90], + 1092, + c, + [211, 3], + 1092, + 165, + s, + [1092, 6], + c, + [1265, 9], + s, + [1092, 3], + c, + [1268, 3], + s, + [1092, 3], + 201, + 202, + 1092, + 1092, + c, + [1273, 26], + 1092, + 1092, + c, + [1275, 4], + 1092, + 1092, + 822, + 176, + c, + [69, 3], + s, + [153, 72], + s, + [154, 72], + s, + [155, 72], + s, + [156, 72], + s, + [157, 72], + s, + [158, 72], + s, + [159, 72], + s, + [3, 177], + s, + [779, 177], + s, + [780, 177], + s, + [781, 177], + s, + [782, 177], + s, + [783, 177], + s, + [784, 177], + s, + [785, 177], + s, + [786, 177], + s, + [787, 177], + s, + [788, 177], + s, + [789, 177], + s, + [790, 177], + s, + [791, 177], + s, + [792, 177], + s, + [793, 177], + s, + [794, 177], + s, + [795, 177], + s, + [796, 177], + s, + [797, 177], + s, + [798, 177], + s, + [799, 177], + s, + [800, 177], + s, + [801, 177], + s, + [802, 177], + s, + [803, 177], + s, + [804, 177], + s, + [805, 177], + s, + [806, 177], + s, + [807, 177], + s, + [808, 177], + s, + [809, 177], + s, + [810, 177], + s, + [811, 177], + s, + [812, 177], + s, + [813, 177], + s, + [814, 177], + s, + [815, 177], + s, + [816, 177], + s, + [817, 177], + s, + [818, 177], + s, + [819, 177], + s, + [820, 177], + s, + [821, 177], + s, + [822, 177], + s, + [823, 177], + s, + [824, 177], + s, + [825, 177], + s, + [826, 177], + s, + [827, 177], + s, + [828, 177], + s, + [829, 177], + s, + [830, 177], + s, + [831, 177], + s, + [832, 177], + s, + [833, 177], + s, + [834, 177], + s, + [835, 177], + s, + [836, 177], + s, + [837, 177], + s, + [838, 177], + s, + [839, 177], + s, + [840, 177], + s, + [841, 177], + s, + [842, 177], + s, + [843, 177], + s, + [844, 177], + s, + [845, 177], + s, + [846, 177], + s, + [847, 177], + s, + [848, 177], + s, + [849, 177], + s, + [850, 177], + s, + [851, 177], + s, + [852, 177], + s, + [853, 177], + s, + [854, 177], + s, + [855, 177], + s, + [856, 177], + s, + [857, 177], + s, + [858, 177], + s, + [859, 177], + s, + [860, 177], + s, + [861, 177], + s, + [862, 177], + s, + [863, 177], + s, + [864, 177], + s, + [865, 177], + s, + [866, 177], + s, + [867, 177], + s, + [868, 177], + s, + [869, 177], + s, + [870, 177], + s, + [871, 177], + s, + [872, 177], + s, + [873, 177], + s, + [874, 177], + s, + [875, 177], + s, + [876, 177], + s, + [877, 177], + s, + [878, 177], + s, + [879, 177], + s, + [880, 177], + s, + [881, 177], + s, + [882, 177], + s, + [883, 177], + s, + [884, 177], + s, + [885, 177], + s, + [886, 177], + s, + [887, 177], + s, + [888, 177], + s, + [889, 177], + s, + [890, 177], + s, + [891, 177], + s, + [892, 177], + s, + [893, 177], + s, + [894, 177], + s, + [895, 177], + s, + [896, 177], + s, + [897, 177], + s, + [898, 177], + s, + [899, 177], + s, + [900, 177], + s, + [901, 177], + s, + [902, 177], + s, + [903, 177], + s, + [904, 177], + s, + [905, 177], + s, + [906, 177], + s, + [907, 177], + s, + [908, 177], + s, + [909, 177], + s, + [910, 177], + s, + [911, 177], + s, + [912, 177], + s, + [913, 177], + s, + [914, 177], + s, + [915, 177], + s, + [916, 177], + s, + [917, 177], + s, + [918, 177], + s, + [919, 177], + s, + [920, 177], + s, + [921, 177], + s, + [922, 177], + s, + [923, 177], + s, + [924, 177], + s, + [925, 177], + s, + [926, 177], + s, + [927, 177], + s, + [928, 177], + s, + [929, 177], + s, + [930, 177], + s, + [931, 177], + s, + [932, 177], + s, + [933, 177], + s, + [934, 177], + s, + [935, 177], + s, + [936, 177], + s, + [937, 177], + s, + [938, 177], + s, + [939, 177], + s, + [940, 177], + s, + [941, 177], + s, + [942, 177], + s, + [943, 177], + s, + [944, 177], + s, + [945, 177], + s, + [946, 177], + s, + [947, 177], + s, + [948, 177], + s, + [949, 177], + s, + [950, 177], + s, + [951, 177], + s, + [952, 177], + s, + [953, 177], + s, + [954, 177], + s, + [955, 177], + s, + [956, 177], + s, + [957, 177], + s, + [958, 177], + s, + [959, 177], + s, + [960, 177], + s, + [961, 177], + s, + [962, 177], + s, + [963, 177], + s, + [964, 177], + s, + [965, 177], + s, + [966, 177], + s, + [967, 177], + s, + [968, 177], + s, + [969, 177], + s, + [970, 177], + s, + [971, 177], + s, + [972, 177], + s, + [973, 177], + s, + [974, 177], + s, + [975, 177], + s, + [976, 177], + s, + [977, 177], + s, + [978, 177], + s, + [979, 177], + s, + [980, 177], + s, + [981, 177], + s, + [982, 177], + s, + [983, 177], + s, + [984, 177], + s, + [985, 177], + s, + [986, 177], + s, + [987, 177], + s, + [988, 177], + s, + [989, 177], + s, + [990, 177], + s, + [991, 177], + s, + [992, 177], + s, + [993, 177], + s, + [994, 177], + s, + [995, 177], + s, + [996, 177], + s, + [997, 177], + s, + [998, 177], + s, + [999, 177], + s, + [1000, 177], + s, + [1001, 177], + s, + [1002, 177], + s, + [1003, 177], + s, + [1004, 177], + s, + [1005, 177], + s, + [1006, 177], + s, + [1007, 177], + s, + [1008, 177], + s, + [1009, 177], + s, + [1010, 177], + s, + [1011, 177], + s, + [1012, 177], + s, + [1013, 177], + s, + [1014, 177], + s, + [1015, 177], + s, + [1016, 177], + s, + [1017, 177], + s, + [1018, 177], + s, + [1019, 177], + s, + [1020, 177], + s, + [1021, 177], + s, + [1022, 177], + s, + [1023, 177], + s, + [1024, 177], + s, + [1025, 177], + s, + [1026, 177], + s, + [1027, 177], + s, + [1028, 177], + s, + [1029, 177], + s, + [1030, 177], + s, + [1031, 177], + s, + [1032, 177], + s, + [1033, 177], + s, + [1034, 177], + s, + [1035, 177], + s, + [1036, 177], + s, + [1037, 177], + s, + [1038, 177], + s, + [1039, 177], + s, + [1040, 177], + s, + [1041, 177], + s, + [1042, 177], + s, + [1043, 177], + s, + [1044, 177], + s, + [1045, 177], + s, + [7, 4], + c, + [54919, 45], + 828, + 825, + 826, + 827, + c, + [48, 3], + s, + [1116, 4], + 831, + s, + [1116, 9], + 834, + s, + [1116, 3], + 833, + s, + [1116, 32], + c, + [51258, 99], + 838, + c, + [4, 3], + 840, + c, + [56, 51], + c, + [48463, 18], + c, + [48461, 19], + c, + [40, 3], + 844, + s, + [508, 4], + 572, + 508, + 846, + c, + [11, 3], + 734, + 848, + s, + [734, 4], + c, + [108, 48], + s, + [737, 7], + s, + [1148, 4], + 743, + 743, + 251, + 1148, + 1148, + 192, + 205, + 1148, + 1148, + 852, + 853, + s, + [1166, 3], + 854, + 1166, + 1166, + 586, + s, + [1166, 10], + s, + [1172, 4], + 858, + s, + [1172, 10], + s, + [1176, 7], + 587, + s, + [1176, 6], + s, + [752, 13], + s, + [744, 9], + c, + [138, 3], + 862, + c, + [55110, 6], + c, + [163, 5], + c, + [4, 3], + s, + [496, 4], + s, + [497, 4], + 867, + 1147, + s, + [1142, 4], + 870, + s, + [1142, 8], + s, + [1141, 13], + 873, + 872, + s, + [769, 3], + s, + [874, 5, 1], + 135, + 885, + 881, + 884, + 461, + 886, + s, + [461, 4], + s, + [584, 5], + c, + [72, 3], + 888, + s, + [572, 4], + 605, + 572, + s, + [598, 5], + c, + [90, 6], + s, + [777, 5], + 674, + 674, + 894, + 674, + 674, + c, + [51814, 240], + c, + [48, 531], + 913, + 176, + c, + [57090, 9], + 917, + c, + [11, 10], + c, + [70, 10], + 445, + 445, + c, + [72, 33], + 445, + c, + [121, 15], + 446, + 446, + c, + [51, 33], + 446, + c, + [51, 15], + 447, + 447, + c, + [51, 33], + 447, + c, + [51, 15], + 448, + 448, + c, + [51, 33], + 448, + c, + [51, 15], + 449, + 449, + c, + [51, 33], + 449, + c, + [421, 111], + 450, + 450, + c, + [50, 33], + 450, + c, + [147, 98], + 930, + 932, + 931, + c, + [246, 99], + 935, + 940, + c, + [608, 6], + 941, + 942, + c, + [776, 144], + 885, + 884, + s, + [88, 11], + s, + [89, 11], + s, + [947, 4, 1], + c, + [1877, 37], + s, + [476, 3], + 566, + 208, + 1112, + 1113, + 128, + 127, + c, + [122, 13], + 953, + c, + [123, 3], + 952, + c, + [172, 35], + 955, + 956, + s, + [421, 16], + c, + [116, 3], + 421, + 421, + 623, + 802, + s, + [421, 5], + 621, + 421, + 421, + 629, + 421, + c, + [126, 5], + s, + [421, 19], + 618, + 620, + s, + [421, 41], + c, + [183, 3], + 421, + c, + [184, 12], + 421, + 421, + 647, + s, + [421, 35], + s, + [422, 17], + 649, + 650, + 422, + 422, + 623, + s, + [422, 6], + 621, + 422, + 422, + 629, + 422, + 622, + s, + [422, 24], + 620, + s, + [422, 42], + 613, + s, + [422, 3], + 617, + s, + [422, 48], + s, + [423, 17], + 649, + 650, + 423, + 423, + 623, + s, + [423, 6], + 621, + 423, + 423, + 629, + 423, + 622, + s, + [423, 24], + 620, + s, + [423, 42], + 613, + s, + [423, 3], + 617, + s, + [423, 48], + s, + [424, 105], + 617, + s, + [424, 48], + s, + [425, 105], + 617, + s, + [425, 48], + s, + [370, 164], + s, + [1118, 164], + s, + [1119, 164], + s, + [371, 164], + s, + [367, 156], + c, + [1759, 48], + s, + [625, 157], + s, + [626, 157], + s, + [627, 157], + s, + [628, 157], + s, + [630, 157], + 76, + 101, + c, + [2518, 18], + 681, + c, + [2519, 19], + 380, + 681, + 962, + s, + [377, 3], + c, + [2686, 98], + s, + [631, 157], + 967, + 966, + s, + [647, 157], + 654, + 654, + s, + [632, 3], + s, + [633, 3], + s, + [634, 3], + s, + [635, 3], + s, + [636, 3], + s, + [637, 3], + s, + [638, 3], + s, + [639, 3], + s, + [640, 3], + c, + [395, 48], + c, + [56593, 18], + 969, + s, + [290, 136], + 801, + 970, + s, + [317, 8], + 564, + s, + [317, 145], + s, + [318, 154], + 972, + 971, + s, + [644, 157], + 649, + 649, + 973, + 974, + 975, + 979, + 76, + 182, + 251, + 982, + 183, + 184, + 101, + 185, + 978, + 981, + c, + [62126, 5], + 208, + 988, + c, + [16, 5], + 185, + c, + [14, 3], + 990, + c, + [55034, 19], + 701, + 992, + 1098, + c, + [22, 3], + s, + [1098, 29], + s, + [1097, 33], + s, + [183, 30], + c, + [95, 3], + 996, + s, + [187, 30], + c, + [34, 3], + s, + [191, 30], + c, + [33, 3], + s, + [195, 30], + c, + [33, 3], + s, + [198, 30], + c, + [5548, 6], + 1002, + s, + [172, 10], + 1004, + s, + [172, 7], + c, + [22, 3], + 1009, + 182, + 1010, + c, + [55416, 8], + c, + [55268, 4], + 1014, + s, + [1063, 4], + s, + [1054, 3], + 1018, + s, + [1054, 4], + s, + [1053, 49], + 1020, + 1021, + 1022, + s, + [1053, 20], + s, + [90, 7], + 1023, + s, + [90, 65], + 1024, + s, + [93, 73], + c, + [235, 3], + s, + [95, 73], + c, + [4483, 99], + c, + [55351, 3], + c, + [55350, 41], + 783, + 784, + c, + [55348, 10], + 192, + 205, + s, + [1030, 4, 1], + s, + [104, 73], + s, + [105, 73], + s, + [106, 73], + s, + [107, 73], + s, + [108, 73], + s, + [109, 73], + c, + [950, 6], + 1036, + s, + [113, 73], + s, + [114, 73], + s, + [115, 73], + s, + [116, 73], + s, + [117, 73], + s, + [118, 73], + c, + [57011, 14], + 1038, + 1039, + 1040, + s, + [123, 73], + 1041, + c, + [91, 3], + s, + [1043, 15, 1], + 1078, + 1079, + c, + [556, 6], + 179, + 180, + 601, + 1061, + s, + [601, 4], + c, + [11, 5], + c, + [5, 3], + s, + [698, 5], + s, + [68, 5], + c, + [13, 3], + 1066, + s, + [679, 5], + s, + [591, 5], + c, + [14, 3], + 1072, + 1071, + 251, + 192, + 205, + s, + [676, 5], + c, + [1214, 61], + c, + [6151, 38], + c, + [141, 5], + c, + [63579, 4], + c, + [105, 13], + 808, + c, + [106, 32], + 809, + s, + [656, 5], + 649, + 650, + 1080, + s, + [668, 5], + s, + [669, 5], + c, + [68, 3], + 1085, + 1084, + 649, + 650, + 1086, + 758, + 813, + s, + [758, 4], + c, + [246, 6], + c, + [5887, 141], + s, + [151, 20], + 1093, + 1093, + 1092, + s, + [1093, 18], + s, + [276, 21], + 283, + c, + [111, 3], + 283, + 283, + 1093, + s, + [283, 3], + 643, + 283, + c, + [3414, 3], + 283, + 623, + 802, + 283, + 1095, + 179, + c, + [3418, 8], + s, + [283, 3], + c, + [3421, 4], + s, + [283, 5], + 180, + 283, + 283, + c, + [3428, 19], + 283, + 283, + s, + [1094, 68], + 1098, + 176, + 813, + 1100, + s, + [11, 4], + s, + [1101, 5, 1], + 580, + 1107, + 1106, + s, + [580, 4], + c, + [263, 48], + s, + [350, 164], + s, + [1117, 48], + s, + [1114, 48], + s, + [1115, 48], + 801, + 1109, + 801, + s, + [1110, 6, 1], + c, + [6439, 37], + s, + [358, 164], + s, + [585, 5], + c, + [8678, 4], + c, + [1025, 5], + 1120, + c, + [63497, 8], + 735, + c, + [225, 18], + 735, + 735, + c, + [227, 19], + 735, + 735, + 1150, + 1150, + 1124, + s, + [1150, 5], + s, + [1149, 8], + c, + [66, 5], + 251, + 587, + c, + [919, 5], + c, + [75, 5], + c, + [8, 8], + s, + [1168, 4], + 1132, + s, + [1168, 10], + s, + [1167, 15], + s, + [1174, 7], + 587, + s, + [1174, 6], + s, + [1173, 14], + s, + [751, 13], + s, + [1177, 13], + s, + [754, 15], + s, + [755, 15], + s, + [753, 13], + s, + [745, 9], + c, + [63673, 9], + c, + [814, 45], + s, + [1144, 3], + 179, + 1144, + 1144, + 180, + s, + [1144, 5], + s, + [1143, 12], + c, + [72, 3], + 1144, + 1143, + 1142, + c, + [6, 3], + s, + [770, 3], + s, + [771, 3], + s, + [772, 3], + 1146, + 1147, + 1148, + s, + [693, 6], + 694, + 694, + 1149, + s, + [694, 4], + 885, + 884, + s, + [547, 3], + 1151, + s, + [547, 158], + 544, + 544, + 1153, + s, + [544, 5], + 1152, + s, + [544, 153], + 1154, + s, + [4, 162], + c, + [595, 48], + s, + [593, 5], + s, + [573, 5], + c, + [895, 5], + 569, + 1158, + s, + [569, 4], + s, + [571, 6], + 618, + 1158, + s, + [618, 4], + s, + [673, 5], + c, + [9704, 15], + c, + [9705, 31], + s, + [381, 17], + 649, + 650, + 381, + 381, + 623, + s, + [381, 6], + 621, + 381, + 381, + 629, + 381, + 622, + 381, + 381, + 624, + 625, + s, + [381, 19], + 618, + 620, + s, + [381, 42], + 613, + s, + [381, 3], + c, + [1032, 4], + s, + [381, 45], + s, + [382, 105], + 617, + s, + [382, 48], + s, + [383, 17], + 649, + 650, + 383, + 383, + 623, + s, + [383, 6], + 621, + 383, + 383, + 629, + 383, + 622, + 383, + 383, + 624, + 625, + s, + [383, 19], + 618, + 620, + s, + [383, 42], + 613, + s, + [383, 3], + c, + [308, 4], + s, + [383, 45], + s, + [384, 17], + 649, + 650, + 384, + 384, + 623, + s, + [384, 6], + 621, + 384, + 384, + 629, + 384, + 622, + 384, + 384, + 624, + 625, + s, + [384, 19], + 618, + 620, + s, + [384, 42], + 613, + 384, + 1160, + 384, + c, + [154, 4], + s, + [384, 45], + s, + [386, 17], + 649, + 650, + 386, + 386, + 623, + s, + [386, 6], + 621, + 386, + 386, + 629, + 386, + 622, + 386, + 386, + 624, + 625, + s, + [386, 19], + 618, + 620, + s, + [386, 42], + 613, + 386, + 1161, + 386, + c, + [154, 4], + s, + [386, 45], + s, + [388, 154], + s, + [389, 17], + 649, + 650, + 389, + 389, + 623, + s, + [389, 6], + 621, + 389, + 389, + 629, + 389, + 622, + s, + [389, 24], + 620, + s, + [389, 42], + 613, + s, + [389, 3], + 617, + s, + [389, 48], + s, + [390, 17], + 649, + 650, + 390, + 390, + 623, + s, + [390, 6], + 621, + 390, + 390, + 629, + 390, + 622, + s, + [390, 24], + 620, + s, + [390, 42], + 613, + s, + [390, 3], + 617, + s, + [390, 48], + s, + [391, 17], + 649, + 650, + 391, + 391, + 623, + s, + [391, 9], + 629, + s, + [391, 69], + 613, + s, + [391, 3], + 617, + s, + [391, 48], + s, + [392, 17], + 649, + 650, + 392, + 392, + 623, + s, + [392, 9], + 629, + s, + [392, 69], + 613, + s, + [392, 3], + 617, + s, + [392, 48], + s, + [393, 17], + 649, + 650, + 393, + 393, + 623, + s, + [393, 9], + 629, + s, + [393, 69], + 613, + s, + [393, 3], + 617, + s, + [393, 48], + s, + [394, 17], + 649, + 650, + s, + [394, 12], + 629, + s, + [394, 69], + 613, + s, + [394, 3], + 617, + s, + [394, 48], + s, + [395, 17], + 649, + 650, + 395, + 395, + 623, + s, + [395, 6], + 621, + 395, + 395, + 629, + 395, + 622, + s, + [395, 23], + 618, + 620, + s, + [395, 42], + 613, + s, + [395, 3], + 617, + 619, + s, + [395, 47], + s, + [396, 17], + 649, + 650, + 396, + 396, + 623, + s, + [396, 6], + 621, + 396, + 396, + 629, + 396, + 622, + s, + [396, 23], + 618, + 620, + s, + [396, 42], + 613, + s, + [396, 3], + 617, + 619, + s, + [396, 47], + s, + [397, 17], + 649, + 650, + 397, + 397, + 623, + s, + [397, 6], + 621, + 397, + 397, + 629, + 397, + 622, + s, + [397, 23], + 618, + 620, + s, + [397, 42], + 613, + s, + [397, 3], + 617, + 619, + s, + [397, 47], + s, + [398, 17], + 649, + 650, + 398, + 398, + 623, + s, + [398, 6], + 621, + 398, + 398, + 629, + 398, + 622, + s, + [398, 23], + 618, + 620, + s, + [398, 42], + 613, + s, + [398, 3], + 617, + 619, + s, + [398, 47], + s, + [399, 8], + 564, + s, + [399, 145], + s, + [400, 154], + c, + [2904, 48], + s, + [402, 154], + s, + [403, 8], + 564, + s, + [403, 145], + s, + [404, 154], + c, + [510, 48], + s, + [406, 154], + s, + [407, 16], + c, + [4450, 3], + 407, + 407, + 623, + s, + [407, 6], + 621, + 407, + 407, + 629, + 407, + 622, + 407, + 407, + 624, + 625, + s, + [407, 19], + 618, + 620, + s, + [407, 41], + c, + [4515, 3], + 407, + c, + [4516, 5], + s, + [407, 9], + 647, + s, + [407, 35], + s, + [408, 16], + c, + [154, 3], + 408, + 408, + 623, + s, + [408, 6], + 621, + 408, + 408, + 629, + 408, + 622, + 408, + 408, + 624, + 625, + s, + [408, 19], + 618, + 620, + s, + [408, 41], + c, + [154, 3], + 408, + c, + [154, 5], + s, + [408, 9], + 647, + s, + [408, 35], + s, + [409, 16], + c, + [154, 3], + 409, + 409, + 623, + s, + [409, 6], + 621, + 409, + 409, + 629, + 409, + 622, + 409, + 409, + 624, + 625, + s, + [409, 19], + 618, + 620, + s, + [409, 41], + c, + [154, 3], + 409, + c, + [154, 5], + s, + [409, 9], + 647, + s, + [409, 35], + s, + [410, 16], + c, + [154, 3], + 410, + 410, + 623, + s, + [410, 6], + 621, + 410, + 410, + 629, + 410, + 622, + 410, + 410, + 624, + 625, + s, + [410, 19], + 618, + 620, + s, + [410, 41], + c, + [154, 3], + 410, + c, + [154, 5], + s, + [410, 9], + 647, + s, + [410, 35], + s, + [411, 8], + c, + [5058, 4], + 411, + c, + [5058, 3], + 411, + 411, + 624, + 625, + s, + [411, 5], + 618, + 620, + s, + [411, 6], + c, + [5064, 8], + s, + [411, 9], + 647, + s, + [411, 31], + s, + [412, 16], + c, + [90, 3], + 412, + 412, + 623, + s, + [412, 6], + 621, + 412, + 412, + 629, + 412, + 622, + 412, + 412, + 624, + 625, + s, + [412, 19], + 618, + 620, + s, + [412, 41], + c, + [149, 3], + 412, + c, + [150, 5], + s, + [412, 9], + 647, + s, + [412, 35], + s, + [413, 16], + c, + [154, 3], + 413, + 413, + 623, + s, + [413, 6], + 621, + 413, + 413, + 629, + 413, + 622, + 413, + 413, + 624, + 625, + s, + [413, 19], + 618, + 620, + s, + [413, 41], + c, + [154, 3], + 413, + c, + [154, 5], + s, + [413, 9], + 647, + s, + [413, 35], + s, + [414, 16], + c, + [154, 3], + 414, + 414, + 623, + s, + [414, 6], + 621, + 414, + 414, + 629, + 414, + 622, + 414, + 414, + 624, + 625, + s, + [414, 19], + 618, + 620, + s, + [414, 41], + c, + [154, 3], + 414, + c, + [154, 5], + s, + [414, 9], + 647, + s, + [414, 35], + s, + [415, 16], + c, + [154, 3], + 415, + 415, + 623, + s, + [415, 6], + 621, + 415, + 415, + 629, + 415, + 622, + 415, + 415, + 624, + 625, + s, + [415, 19], + 618, + 620, + s, + [415, 41], + c, + [154, 3], + 415, + c, + [154, 5], + s, + [415, 9], + 647, + s, + [415, 35], + s, + [416, 16], + c, + [154, 3], + 416, + 416, + 623, + s, + [416, 6], + 621, + 416, + 416, + 629, + 416, + 622, + 416, + 416, + 624, + 625, + s, + [416, 19], + 618, + 620, + s, + [416, 41], + c, + [154, 3], + 416, + c, + [154, 5], + s, + [416, 9], + 647, + s, + [416, 35], + 1164, + 451, + 452, + 453, + s, + [419, 14], + 643, + 419, + c, + [158, 3], + 419, + 419, + 623, + 802, + s, + [419, 5], + 621, + 419, + 419, + 629, + 419, + c, + [5932, 5], + s, + [419, 7], + 644, + s, + [419, 11], + 618, + 620, + s, + [419, 41], + c, + [158, 3], + 419, + c, + [5988, 12], + 419, + 419, + 647, + s, + [419, 35], + s, + [420, 14], + 643, + 420, + c, + [154, 3], + 420, + 420, + 623, + 802, + s, + [420, 5], + 621, + 420, + 420, + 629, + 420, + c, + [154, 5], + s, + [420, 7], + 644, + s, + [420, 6], + 641, + s, + [420, 4], + 618, + 620, + s, + [420, 41], + c, + [154, 3], + 420, + c, + [6142, 15], + s, + [420, 35], + c, + [1982, 4], + 1167, + c, + [70885, 46], + s, + [433, 154], + s, + [435, 154], + s, + [442, 154], + s, + [443, 154], + c, + [667, 3], + 1168, + c, + [4, 3], + 1169, + c, + [13735, 7], + s, + [440, 154], + s, + [437, 14], + 643, + 437, + c, + [990, 3], + 437, + 437, + 623, + 802, + s, + [437, 5], + 621, + 437, + 437, + 629, + 437, + c, + [990, 5], + s, + [437, 7], + 644, + s, + [437, 11], + 618, + 620, + s, + [437, 41], + c, + [990, 3], + 437, + c, + [990, 12], + 437, + 437, + 647, + s, + [437, 35], + s, + [438, 14], + 643, + 438, + c, + [154, 3], + 438, + 438, + 623, + 802, + s, + [438, 5], + 621, + 438, + 438, + 629, + 438, + c, + [154, 5], + s, + [438, 7], + 644, + s, + [438, 11], + 618, + 620, + s, + [438, 41], + c, + [154, 3], + 438, + c, + [154, 12], + 438, + 438, + 647, + s, + [438, 35], + s, + [439, 16], + c, + [154, 3], + 439, + 439, + 623, + s, + [439, 6], + 621, + 439, + 439, + 629, + 439, + 622, + 439, + 439, + 624, + 625, + s, + [439, 19], + 618, + 620, + s, + [439, 41], + c, + [154, 3], + 439, + c, + [154, 5], + s, + [439, 45], + s, + [441, 154], + s, + [309, 154], + s, + [310, 154], + s, + [311, 154], + s, + [426, 154], + 801, + 1172, + c, + [9186, 96], + s, + [288, 154], + s, + [289, 155], + s, + [285, 154], + 1176, + c, + [9070, 37], + 1177, + c, + [12991, 3], + 1179, + s, + [376, 3], + c, + [557, 48], + c, + [93, 18], + 1181, + c, + [94, 19], + 1182, + c, + [132, 37], + 1183, + s, + [645, 157], + c, + [67269, 20], + 1184, + c, + [12131, 3], + 1186, + c, + [17738, 40], + 955, + s, + [369, 154], + s, + [642, 157], + c, + [67555, 5], + 1188, + c, + [383, 20], + c, + [67651, 6], + c, + [23, 43], + c, + [12589, 3], + c, + [12588, 3], + 192, + 205, + 463, + 1194, + s, + [463, 5], + 982, + 981, + c, + [751, 48], + s, + [471, 6], + s, + [474, 14], + s, + [475, 14], + s, + [479, 9], + s, + [480, 9], + c, + [100, 3], + c, + [120, 8], + 467, + 1194, + s, + [467, 5], + c, + [118, 48], + 1205, + c, + [49, 48], + 702, + 181, + c, + [50, 3], + 181, + 181, + 1208, + s, + [181, 27], + s, + [182, 30], + s, + [1099, 30], + s, + [184, 30], + s, + [186, 30], + s, + [188, 30], + s, + [192, 30], + s, + [196, 30], + s, + [199, 30], + s, + [201, 98], + c, + [371, 3], + s, + [1050, 3], + 1212, + 1213, + s, + [1050, 12], + c, + [20, 3], + 1215, + c, + [13203, 15], + s, + [164, 18], + s, + [165, 18], + s, + [166, 18], + s, + [167, 18], + s, + [168, 18], + c, + [109, 3], + 83, + 83, + 1217, + s, + [83, 17], + s, + [85, 20], + s, + [86, 20], + 179, + 180, + c, + [14022, 32], + s, + [73, 7], + s, + [1055, 7], + c, + [661, 48], + s, + [126, 73], + s, + [144, 73], + s, + [145, 73], + s, + [146, 73], + c, + [340, 4], + 1070, + c, + [341, 44], + 1222, + s, + [94, 73], + s, + [96, 9], + c, + [1744, 4], + 96, + 96, + 623, + s, + [96, 6], + 621, + 96, + 96, + 629, + 96, + 622, + 96, + 96, + 624, + 625, + s, + [96, 19], + 618, + 620, + s, + [96, 17], + c, + [1787, 19], + s, + [96, 4], + s, + [97, 9], + 643, + 97, + 649, + 650, + 97, + 97, + 623, + s, + [97, 6], + 621, + 97, + 97, + 629, + 97, + 622, + 97, + 97, + 624, + 625, + s, + [97, 19], + 618, + 620, + s, + [97, 17], + c, + [93, 19], + s, + [97, 4], + c, + [13375, 6], + 1223, + c, + [13376, 55], + s, + [1066, 48], + c, + [13827, 3], + s, + [1066, 14], + c, + [13502, 61], + c, + [12255, 99], + s, + [110, 73], + s, + [111, 73], + s, + [112, 73], + s, + [119, 73], + c, + [11476, 6], + 1072, + 1071, + c, + [11484, 51], + s, + [125, 73], + s, + [1072, 62], + s, + [1074, 62], + s, + [1076, 62], + s, + [1080, 62], + s, + [1090, 63], + 1240, + s, + [1082, 62], + s, + [1084, 62], + s, + [1090, 252], + c, + [1272, 109], + s, + [1086, 62], + 611, + 1250, + s, + [611, 4], + 607, + 1251, + s, + [607, 4], + s, + [600, 5], + 179, + 180, + 609, + 1253, + s, + [609, 4], + s, + [604, 5], + 605, + 1254, + s, + [605, 4], + s, + [69, 3], + 76, + 101, + 455, + 1257, + 1256, + s, + [455, 4], + s, + [456, 10], + 1258, + c, + [12760, 4], + 1120, + 1120, + s, + [1121, 3], + s, + [623, 5], + s, + [360, 3], + c, + [3567, 18], + s, + [360, 3], + c, + [1690, 19], + 360, + 360, + s, + [411, 16], + c, + [57, 3], + 411, + 411, + 623, + s, + [411, 6], + 621, + 411, + 411, + 629, + 411, + c, + [7773, 10], + s, + [411, 14], + c, + [7787, 8], + s, + [411, 35], + c, + [121, 3], + 411, + c, + [7823, 46], + s, + [411, 4], + s, + [687, 6], + s, + [689, 6], + s, + [655, 5], + 657, + c, + [214, 18], + 657, + 657, + c, + [213, 19], + 657, + 657, + c, + [1665, 51], + 1085, + 1084, + s, + [664, 3], + s, + [665, 3], + s, + [666, 3], + c, + [1775, 96], + 649, + 650, + 1264, + s, + [760, 7], + 148, + 148, + 1092, + s, + [148, 18], + 149, + 149, + 1092, + s, + [149, 18], + 150, + 150, + 1092, + s, + [150, 18], + c, + [169, 51], + 1267, + 179, + 180, + s, + [278, 21], + s, + [280, 21], + s, + [282, 21], + s, + [160, 68], + s, + [1095, 68], + 1269, + s, + [763, 8], + c, + [13294, 9], + c, + [13303, 54], + c, + [48, 3], + 801, + 1278, + s, + [351, 164], + s, + [352, 164], + c, + [21616, 240], + s, + [509, 5], + 589, + 1286, + 1285, + s, + [589, 5], + 1286, + s, + [589, 4], + 1288, + c, + [67, 3], + s, + [736, 7], + s, + [738, 7], + s, + [1151, 7], + 272, + 271, + 1152, + 1152, + c, + [15342, 3], + 1124, + 1156, + s, + [1166, 5], + c, + [22613, 10], + s, + [741, 7], + s, + [743, 7], + 848, + 1295, + s, + [1170, 7], + 587, + s, + [1170, 6], + s, + [1169, 14], + s, + [750, 13], + s, + [1175, 13], + 495, + 1298, + s, + [495, 4], + 1300, + 1299, + c, + [1315, 13], + 1301, + c, + [5097, 24], + 729, + 729, + 76, + 1303, + 101, + 729, + 729, + 1304, + 729, + 729, + s, + [1145, 10], + s, + [728, 12], + 1306, + s, + [774, 48], + s, + [775, 48], + s, + [776, 48], + 873, + c, + [22799, 6], + s, + [773, 3], + s, + [315, 5], + s, + [316, 5], + c, + [428, 48], + 695, + 695, + 1309, + s, + [695, 4], + s, + [546, 162], + 1311, + 1312, + s, + [5, 162], + c, + [381, 48], + 460, + c, + [1980, 18], + 460, + 460, + c, + [666, 19], + 460, + 460, + s, + [594, 5], + s, + [595, 5], + c, + [100, 3], + s, + [675, 5], + c, + [965, 96], + 1317, + c, + [5917, 37], + 1318, + c, + [5955, 40], + c, + [79858, 47], + 1321, + 801, + 1322, + s, + [431, 154], + c, + [379, 52], + 1326, + c, + [256, 46], + s, + [434, 154], + s, + [436, 154], + s, + [333, 85], + 1328, + s, + [333, 69], + 1329, + c, + [807, 37], + 1330, + c, + [845, 40], + 1332, + s, + [624, 157], + s, + [368, 154], + 1333, + s, + [375, 154], + c, + [507, 18], + 379, + c, + [1353, 23], + c, + [20596, 46], + c, + [50, 48], + s, + [646, 157], + 653, + 653, + s, + [641, 3], + s, + [288, 155], + s, + [643, 157], + 648, + 648, + 650, + 650, + 651, + 651, + 652, + 652, + 462, + 1194, + s, + [462, 5], + 1338, + c, + [7385, 7], + s, + [468, 6], + 1342, + 1341, + 1344, + 1343, + 492, + 492, + s, + [294, 37], + 484, + 484, + c, + [1191, 37], + 988, + c, + [20207, 8], + c, + [20192, 3], + 466, + 1194, + s, + [466, 5], + 722, + 722, + 1205, + 722, + 1351, + 722, + 722, + s, + [706, 7], + s, + [707, 7], + 1353, + 1352, + c, + [79, 18], + 703, + c, + [80, 19], + s, + [179, 30], + c, + [743, 3], + s, + [579, 5], + s, + [238, 4], + 1356, + s, + [238, 10], + s, + [1051, 15], + 1357, + 1358, + 169, + 169, + 1360, + s, + [169, 8], + 1364, + 1365, + s, + [1367, 8, 1], + s, + [169, 7], + c, + [20357, 4], + 76, + c, + [7155, 6], + 101, + c, + [7156, 9], + s, + [177, 28], + c, + [20116, 4], + s, + [87, 20], + s, + [147, 3], + c, + [212, 18], + 147, + 147, + c, + [213, 19], + 147, + 147, + 1377, + 801, + c, + [5818, 4], + 165, + 1064, + c, + [932, 14], + 1381, + c, + [933, 30], + s, + [98, 73], + s, + [1067, 48], + c, + [6466, 3], + s, + [1067, 14], + c, + [5194, 6], + 1383, + c, + [5195, 55], + s, + [1068, 48], + c, + [127, 3], + s, + [1068, 14], + 1385, + c, + [651, 37], + 1386, + c, + [38, 37], + 1387, + s, + [120, 73], + 1257, + 1388, + s, + [122, 73], + 801, + 1389, + c, + [354, 6], + 1390, + c, + [5549, 58], + c, + [62, 3], + 1392, + c, + [62, 61], + 1394, + c, + [62, 61], + 1396, + c, + [62, 55], + 1399, + 1398, + c, + [64, 4], + 143, + 763, + 743, + 143, + c, + [65, 55], + c, + [5924, 69], + 1402, + c, + [252, 61], + 1404, + c, + [252, 56], + 1406, + 1399, + 1407, + 1399, + 1408, + 1399, + 1409, + 1410, + c, + [753, 3], + 1092, + 1411, + c, + [76, 4], + 1412, + c, + [6063, 60], + c, + [3, 3], + s, + [602, 5], + c, + [17775, 5], + 1418, + c, + [3262, 51], + c, + [7006, 5], + c, + [53, 45], + 1422, + 658, + c, + [884, 18], + 658, + 658, + c, + [886, 19], + 658, + 658, + s, + [663, 3], + 1423, + c, + [929, 37], + 659, + c, + [38, 18], + 659, + 659, + c, + [40, 20], + 659, + c, + [174, 48], + s, + [275, 21], + s, + [277, 21], + s, + [279, 21], + s, + [281, 21], + s, + [161, 68], + s, + [574, 5], + 1425, + s, + [575, 5], + 541, + 885, + s, + [541, 4], + 1427, + 884, + 541, + 541, + s, + [576, 5], + s, + [578, 5], + 801, + 1428, + s, + [582, 5], + s, + [349, 164], + 1429, + c, + [482, 37], + 1430, + c, + [38, 37], + 1431, + c, + [38, 37], + 1432, + c, + [38, 37], + 1433, + c, + [38, 37], + s, + [586, 5], + c, + [824, 51], + s, + [588, 5], + c, + [56, 48], + 1437, + c, + [49, 3], + 1124, + 1154, + 1153, + 1153, + 1441, + 1157, + s, + [742, 7], + s, + [749, 13], + s, + [1171, 13], + c, + [42, 3], + 1444, + c, + [4, 3], + 76, + 101, + c, + [100, 48], + s, + [727, 6], + c, + [986, 53], + s, + [732, 6], + c, + [19455, 6], + 696, + 696, + c, + [319, 18], + 696, + 696, + c, + [321, 19], + 696, + 696, + c, + [103, 48], + 1455, + 1456, + 548, + 548, + 549, + 549, + 1344, + 1457, + s, + [570, 6], + s, + [385, 17], + 649, + 650, + 385, + 385, + 623, + s, + [385, 6], + 621, + 385, + 385, + 629, + 385, + 622, + 385, + 385, + 624, + 625, + s, + [385, 19], + 618, + 620, + s, + [385, 42], + 613, + s, + [385, 3], + c, + [184, 4], + s, + [385, 45], + s, + [387, 17], + 649, + 650, + 387, + 387, + 623, + s, + [387, 6], + 621, + 387, + 387, + 629, + 387, + 622, + 387, + 387, + 624, + 625, + s, + [387, 19], + 618, + 620, + s, + [387, 42], + 613, + s, + [387, 3], + c, + [154, 4], + s, + [387, 45], + s, + [401, 154], + s, + [405, 154], + 1458, + 801, + 1459, + s, + [427, 154], + s, + [429, 154], + 1460, + c, + [1350, 37], + 1461, + 801, + 1462, + s, + [432, 154], + s, + [330, 154], + 1463, + c, + [5336, 155], + c, + [155, 155], + s, + [287, 155], + s, + [284, 154], + s, + [374, 154], + c, + [1122, 18], + s, + [378, 3], + c, + [1125, 19], + 1467, + 1466, + 1469, + 1468, + c, + [5959, 40], + c, + [2196, 48], + s, + [482, 9], + s, + [483, 9], + c, + [4837, 12], + c, + [78, 3], + s, + [478, 9], + c, + [90, 48], + c, + [12390, 8], + 465, + 1194, + s, + [465, 5], + s, + [472, 6], + s, + [699, 5], + s, + [704, 7], + s, + [705, 7], + c, + [88, 48], + 1479, + 1478, + 1480, + s, + [180, 30], + s, + [240, 7], + 1482, + s, + [240, 6], + c, + [8265, 99], + s, + [170, 10], + c, + [4992, 10], + s, + [170, 7], + c, + [25349, 19], + s, + [205, 27], + s, + [206, 27], + c, + [73, 3], + 1493, + c, + [72, 5], + c, + [71, 8], + s, + [1496, 4, 1], + s, + [222, 17], + 1502, + 1501, + c, + [127, 7], + s, + [224, 17], + 1503, + 1505, + 1504, + 1507, + 1506, + 1508, + 1509, + 1510, + 1360, + c, + [163, 10], + s, + [84, 20], + s, + [100, 73], + 1513, + 1512, + 1514, + s, + [261, 13], + 1065, + s, + [265, 4], + c, + [709, 14], + s, + [265, 3], + c, + [712, 4], + 1515, + 1516, + s, + [265, 4], + c, + [718, 19], + 265, + 265, + s, + [99, 73], + s, + [1069, 48], + c, + [4260, 3], + s, + [1069, 14], + s, + [101, 73], + s, + [102, 73], + s, + [103, 73], + s, + [121, 73], + s, + [124, 73], + s, + [127, 73], + s, + [1073, 48], + c, + [503, 3], + s, + [1073, 14], + s, + [128, 73], + s, + [1075, 48], + c, + [138, 3], + s, + [1075, 14], + s, + [129, 73], + s, + [1077, 48], + c, + [138, 3], + s, + [1077, 14], + s, + [130, 73], + s, + [1081, 48], + c, + [138, 3], + s, + [1081, 14], + s, + [131, 73], + s, + [1088, 63], + s, + [1091, 49], + c, + [202, 3], + s, + [1091, 14], + 1399, + 1518, + s, + [133, 73], + s, + [1083, 48], + c, + [140, 3], + s, + [1083, 14], + s, + [134, 73], + s, + [1085, 48], + c, + [138, 3], + s, + [1085, 14], + s, + [135, 73], + s, + [136, 73], + s, + [137, 73], + s, + [138, 73], + s, + [139, 73], + s, + [140, 73], + c, + [2369, 48], + s, + [1087, 48], + c, + [551, 3], + s, + [1087, 14], + s, + [612, 5], + s, + [608, 5], + s, + [610, 5], + s, + [606, 5], + s, + [71, 3], + 454, + c, + [2867, 18], + 454, + 454, + c, + [2151, 19], + 454, + 454, + s, + [457, 10], + s, + [458, 3], + c, + [54, 6], + 458, + c, + [55, 12], + s, + [458, 3], + c, + [56, 19], + s, + [458, 3], + c, + [235, 48], + s, + [667, 3], + 660, + c, + [150, 18], + 660, + 660, + c, + [94, 19], + 660, + 660, + c, + [93, 3], + s, + [550, 3], + 1531, + 1533, + 1534, + 1530, + 550, + 550, + 1529, + 1528, + 1535, + 1525, + 1526, + 1527, + 550, + 550, + s, + [540, 7], + 581, + 1536, + s, + [581, 4], + c, + [11139, 240], + 801, + 1542, + s, + [590, 5], + 1513, + 1543, + c, + [57, 48], + s, + [746, 8], + 1545, + 1155, + c, + [25280, 8], + 1547, + 1548, + 511, + 76, + 101, + 537, + 537, + 1342, + 1550, + s, + [492, 28], + 1138, + 1553, + s, + [1138, 4], + c, + [11074, 3], + c, + [435, 13], + 1303, + c, + [436, 5], + c, + [11092, 3], + c, + [437, 19], + c, + [11111, 3], + 730, + 1257, + s, + [730, 5], + 731, + 801, + s, + [731, 5], + 1186, + c, + [113, 3], + 1186, + 1186, + 1557, + s, + [1186, 40], + s, + [1188, 6], + 1559, + s, + [1188, 40], + 697, + 697, + c, + [589, 18], + 697, + 697, + c, + [152, 19], + 697, + 697, + 1560, + s, + [543, 162], + s, + [545, 162], + s, + [417, 154], + s, + [418, 154], + s, + [444, 154], + s, + [428, 154], + s, + [430, 154], + 1564, + 1563, + s, + [331, 154], + s, + [332, 154], + s, + [319, 154], + 1565, + s, + [321, 154], + 1566, + 1344, + 1567, + c, + [5186, 8], + 470, + 1194, + s, + [470, 5], + s, + [473, 6], + s, + [493, 28], + 485, + 485, + c, + [5415, 37], + 464, + 1194, + s, + [464, 5], + 723, + 1092, + 1569, + s, + [723, 4], + 1572, + 1571, + c, + [2128, 48], + 1575, + 1576, + 1574, + s, + [259, 3], + 1578, + s, + [259, 9], + 1579, + s, + [239, 3], + c, + [121, 4], + 239, + c, + [122, 10], + s, + [239, 3], + c, + [125, 4], + s, + [239, 5], + c, + [130, 19], + 239, + 239, + 1580, + c, + [170, 37], + 1581, + s, + [203, 27], + s, + [204, 27], + s, + [178, 28], + s, + [237, 20], + 1583, + 1584, + s, + [237, 7], + c, + [92777, 4], + 208, + 1586, + s, + [208, 27], + s, + [1100, 5], + 1588, + s, + [1100, 27], + c, + [65, 3], + 1590, + 76, + 101, + 216, + c, + [7, 3], + 216, + 1593, + s, + [216, 27], + 219, + c, + [33, 3], + 219, + 1595, + s, + [219, 27], + 1596, + s, + [234, 17], + 1597, + s, + [230, 17], + s, + [223, 17], + 1499, + 1497, + s, + [225, 17], + s, + [226, 17], + 1598, + s, + [228, 17], + 1599, + 1600, + s, + [232, 17], + s, + [233, 17], + 1601, + c, + [5431, 10], + s, + [91, 73], + c, + [631, 48], + s, + [92, 73], + s, + [266, 7], + 1604, + s, + [266, 6], + 1605, + c, + [9612, 4], + 142, + 763, + 743, + 142, + c, + [9613, 55], + s, + [132, 73], + 801, + 1607, + s, + [459, 3], + c, + [791, 6], + 459, + c, + [792, 12], + s, + [459, 3], + c, + [795, 19], + s, + [459, 3], + s, + [577, 5], + s, + [539, 7], + s, + [551, 3], + c, + [3371, 4], + 551, + 551, + c, + [3371, 6], + 551, + 551, + s, + [553, 17], + 1609, + 1610, + c, + [233, 3], + 559, + 559, + 1612, + s, + [559, 15], + c, + [21, 3], + 1614, + c, + [29754, 4], + c, + [93195, 13], + s, + [563, 17], + 1616, + s, + [565, 17], + s, + [566, 17], + 1617, + 1618, + c, + [75, 3], + 1620, + c, + [983, 37], + 1621, + c, + [38, 37], + 1622, + c, + [38, 37], + 1623, + c, + [38, 37], + 1624, + c, + [38, 37], + c, + [14553, 6], + s, + [596, 5], + 1513, + 1626, + c, + [3372, 8], + s, + [740, 7], + 498, + 1632, + 1634, + 498, + 498, + 1631, + 1633, + 498, + 498, + c, + [24, 3], + 520, + 520, + 1639, + s, + [520, 4], + 512, + 1640, + s, + [614, 5], + s, + [1139, 5], + 1642, + 1641, + s, + [733, 6], + c, + [27875, 46], + s, + [767, 5], + s, + [1187, 46], + c, + [97, 46], + s, + [1189, 46], + 1645, + 1646, + 1564, + s, + [1648, 5, 1], + s, + [481, 9], + 469, + 1194, + s, + [469, 5], + c, + [93606, 5], + s, + [708, 7], + s, + [710, 7], + 1655, + c, + [337, 18], + 1656, + c, + [338, 19], + 1658, + 1660, + 1659, + c, + [999, 48], + s, + [270, 6], + 1663, + 1664, + s, + [270, 4], + 1665, + c, + [61, 16], + 1668, + 1669, + 1670, + c, + [3927, 35], + c, + [3, 3], + s, + [207, 27], + c, + [4008, 51], + s, + [209, 29], + c, + [32, 3], + 1102, + c, + [4, 4], + s, + [1102, 27], + s, + [1101, 32], + s, + [212, 29], + c, + [92, 3], + 1680, + s, + [217, 29], + c, + [33, 3], + s, + [220, 29], + c, + [9807, 5], + 76, + 101, + s, + [227, 17], + s, + [229, 17], + s, + [231, 17], + s, + [171, 17], + s, + [262, 13], + s, + [267, 13], + 1685, + 1686, + s, + [268, 7], + 1687, + s, + [268, 6], + s, + [1089, 49], + c, + [4824, 3], + s, + [1089, 14], + s, + [141, 73], + s, + [552, 17], + s, + [555, 17], + 1688, + 1132, + 1132, + 1691, + s, + [1132, 15], + 176, + s, + [560, 17], + c, + [568, 48], + s, + [562, 17], + s, + [564, 17], + c, + [82, 3], + 1695, + c, + [1404, 17], + c, + [103, 48], + s, + [583, 5], + s, + [353, 164], + s, + [354, 164], + s, + [355, 164], + s, + [356, 164], + s, + [357, 164], + s, + [587, 5], + s, + [597, 5], + s, + [739, 7], + s, + [494, 5], + 499, + 1632, + 1634, + 499, + 499, + 1631, + 1633, + 499, + 499, + s, + [501, 9], + s, + [502, 9], + s, + [1698, 4, 1], + 510, + 538, + 538, + 513, + 513, + 1709, + 1710, + 1535, + 1707, + 1711, + 1708, + c, + [1367, 5], + 1714, + 1715, + s, + [766, 5], + s, + [768, 5], + s, + [542, 162], + s, + [334, 154], + 1716, + s, + [335, 154], + c, + [2180, 54], + c, + [1476, 45], + s, + [320, 154], + s, + [322, 154], + c, + [356, 3], + 725, + 1720, + s, + [725, 4], + c, + [12019, 5], + 1572, + 1571, + s, + [712, 7], + 1724, + 1725, + 1723, + 1727, + 1726, + 1729, + 1728, + c, + [2719, 18], + 1730, + c, + [2719, 19], + s, + [250, 3], + 1732, + 1734, + 1733, + s, + [250, 4], + 176, + c, + [88528, 4], + c, + [436, 45], + 248, + 248, + 1739, + s, + [248, 5], + 1740, + s, + [248, 6], + s, + [242, 15], + 1741, + 1742, + 1743, + s, + [247, 4], + c, + [135, 4], + 247, + c, + [136, 10], + s, + [247, 3], + c, + [139, 4], + s, + [247, 5], + c, + [143, 19], + 247, + 247, + 1056, + 1746, + 1747, + s, + [235, 5], + c, + [56, 4], + 235, + 623, + 802, + 235, + c, + [57, 8], + s, + [235, 3], + c, + [57, 4], + s, + [235, 15], + c, + [67, 19], + 235, + 235, + 236, + 236, + 1342, + s, + [236, 25], + s, + [210, 29], + s, + [211, 29], + s, + [1103, 29], + s, + [213, 29], + c, + [344, 3], + 1749, + s, + [218, 29], + s, + [221, 29], + 1750, + 1751, + s, + [263, 13], + s, + [264, 13], + s, + [269, 13], + c, + [103, 3], + s, + [557, 17], + s, + [1133, 17], + c, + [37, 3], + 1754, + 1755, + c, + [3595, 37], + s, + [567, 17], + c, + [543, 48], + 1757, + c, + [103, 37], + s, + [500, 9], + c, + [97170, 4], + c, + [3674, 10], + s, + [515, 7], + s, + [516, 7], + s, + [517, 7], + s, + [518, 7], + s, + [519, 7], + 1762, + 1763, + s, + [1126, 4], + 1765, + c, + [3310, 6], + s, + [521, 6], + 1136, + 1553, + s, + [1136, 4], + s, + [615, 5], + s, + [616, 3], + 1770, + 616, + 616, + s, + [336, 154], + 1739, + 337, + 337, + 1513, + 338, + s, + [724, 5], + c, + [190, 3], + 711, + 1257, + s, + [711, 6], + s, + [709, 7], + c, + [5367, 8], + c, + [26, 3], + 1774, + 1658, + c, + [375, 48], + c, + [49, 50], + s, + [72, 7], + 76, + 1781, + 101, + 1782, + 76, + 101, + 1784, + 76, + 101, + 1786, + s, + [273, 6], + 1788, + s, + [273, 4], + 1104, + 1790, + 260, + 260, + 1513, + s, + [260, 10], + s, + [241, 13], + c, + [1559, 99], + 1793, + c, + [100, 67], + c, + [51, 35], + 1796, + 1057, + 1797, + 1798, + s, + [214, 29], + c, + [613, 6], + 1801, + c, + [4, 3], + 1803, + 1130, + 1130, + 1691, + s, + [1130, 15], + 1806, + 176, + s, + [561, 17], + 1808, + c, + [764, 37], + s, + [522, 17], + s, + [503, 9], + s, + [504, 9], + s, + [505, 9], + 514, + 514, + c, + [125, 3], + 1122, + 1811, + c, + [5, 3], + 1128, + s, + [1127, 4], + 1814, + 1815, + s, + [613, 5], + s, + [1137, 5], + c, + [819, 7], + 1342, + 1817, + 718, + 1194, + s, + [718, 6], + 1342, + 1818, + s, + [720, 7], + s, + [713, 7], + c, + [141, 18], + 1819, + c, + [142, 19], + s, + [716, 7], + c, + [45, 18], + 1820, + c, + [45, 19], + s, + [714, 7], + s, + [251, 7], + 76, + 101, + 1822, + 76, + 101, + s, + [253, 7], + 76, + 101, + s, + [254, 7], + 76, + 101, + s, + [271, 10], + 176, + 1827, + 1105, + s, + [243, 15], + s, + [249, 3], + c, + [106, 4], + 249, + c, + [107, 10], + s, + [249, 3], + c, + [110, 4], + s, + [249, 4], + c, + [113, 19], + 249, + 249, + c, + [472, 51], + 1739, + 1829, + 1739, + 1830, + 1058, + c, + [56, 3], + 1058, + 1833, + s, + [1058, 13], + c, + [4352, 51], + s, + [215, 29], + s, + [173, 27], + c, + [59, 3], + s, + [175, 27], + c, + [30, 3], + s, + [556, 17], + s, + [1131, 17], + s, + [554, 17], + 1841, + s, + [568, 17], + 1842, + 1123, + c, + [74, 3], + 1845, + 1846, + 1129, + c, + [679, 6], + s, + [617, 5], + s, + [726, 5], + 1850, + 1849, + 1658, + 1572, + 1571, + s, + [252, 7], + 76, + 101, + s, + [255, 7], + s, + [257, 7], + s, + [258, 7], + s, + [274, 10], + 1106, + 1855, + 1739, + 1856, + s, + [245, 15], + s, + [246, 15], + s, + [74, 15], + s, + [1059, 15], + c, + [122, 3], + s, + [78, 15], + 1859, + 1858, + 80, + 80, + 81, + 1860, + 81, + c, + [780, 37], + 1342, + 1861, + s, + [174, 27], + s, + [176, 27], + s, + [558, 17], + c, + [266, 4], + 1864, + 1863, + 533, + 533, + 534, + 534, + c, + [10, 3], + 1342, + 1866, + 1342, + 1867, + c, + [1358, 8], + 1869, + s, + [715, 7], + s, + [717, 7], + s, + [256, 7], + 176, + 1107, + s, + [244, 15], + s, + [77, 15], + 76, + c, + [557, 51], + 1873, + 1864, + 1874, + 1875, + c, + [7, 3], + 1877, + 1342, + 1878, + s, + [531, 7], + s, + [532, 7], + 719, + 1194, + s, + [719, 6], + s, + [721, 7], + s, + [1108, 11], + 1880, + 79, + 79, + 82, + 82, + 1060, + c, + [52, 3], + 1060, + 1833, + s, + [1060, 13], + s, + [523, 7], + c, + [25, 3], + 535, + 535, + 536, + 536, + s, + [530, 7], + s, + [1110, 8], + 1885, + 1110, + 1110, + s, + [1109, 11], + s, + [75, 15], + s, + [1061, 15], + 1124, + 1124, + 1888, + s, + [1124, 6], + s, + [272, 10], + s, + [1111, 10], + s, + [526, 3], + 1891, + s, + [526, 4], + s, + [1125, 8], + c, + [323, 4], + s, + [524, 7], + 1894, + 1895, + 1864, + 1896, + s, + [527, 7], + 1897, + 1898, + s, + [525, 8], + 1899, + 1900, + 1901, + 528, + s, + [529, 7] +]) +}), +defaultActions: bda({ + idx: u([ + 3, + 4, + 5, + s, + [7, 54, 1], + 76, + 85, + 89, + 90, + 102, + 103, + 105, + 107, + 108, + 109, + 113, + 132, + 134, + 144, + 145, + s, + [147, 18, 1], + 166, + 167, + s, + [175, 7, 1], + 184, + 185, + 191, + s, + [195, 10, 1], + 208, + 211, + 218, + 222, + 223, + 226, + 237, + 239, + 241, + 242, + 244, + 247, + 248, + 249, + s, + [252, 7, 1], + 261, + s, + [265, 4, 1], + 271, + 272, + 276, + 277, + s, + [285, 276, 1], + 578, + 584, + 585, + 591, + 592, + 594, + 596, + 603, + 607, + 610, + 649, + 650, + 656, + 657, + s, + [666, 5, 1], + s, + [672, 5, 1], + 680, + 684, + s, + [686, 11, 1], + 701, + 703, + 704, + 713, + 716, + 717, + s, + [720, 4, 2], + 733, + 738, + 740, + s, + [748, 6, 1], + s, + [756, 6, 1], + 766, + 783, + 784, + 792, + 793, + 796, + 797, + 800, + 806, + 808, + 809, + 817, + 819, + 824, + s, + [831, 4, 1], + 842, + 843, + 851, + 856, + s, + [858, 7, 1], + 869, + 873, + 874, + 875, + 879, + 885, + 887, + 888, + 891, + 893, + 900, + s, + [912, 4, 2], + 930, + 931, + 932, + s, + [936, 4, 1], + 942, + s, + [946, 5, 1], + 954, + 955, + 956, + 961, + 966, + 970, + 971, + s, + [980, 5, 1], + 991, + s, + [993, 9, 1], + s, + [1005, 5, 1], + 1012, + 1013, + 1016, + 1017, + s, + [1019, 4, 1], + 1025, + s, + [1034, 4, 1], + s, + [1042, 6, 1], + s, + [1049, 6, 1], + 1057, + 1060, + 1063, + 1065, + 1068, + 1071, + 1072, + 1073, + 1076, + 1077, + 1078, + 1082, + 1083, + 1084, + 1088, + s, + [1094, 5, 1], + 1100, + 1109, + 1110, + 1116, + 1121, + 1122, + 1123, + 1128, + 1129, + 1132, + 1133, + 1134, + 1139, + 1140, + 1142, + 1143, + 1144, + 1146, + 1147, + 1148, + 1151, + 1153, + 1156, + 1157, + 1159, + 1167, + 1170, + 1171, + 1176, + 1177, + 1179, + s, + [1184, 9, 1], + 1195, + 1203, + 1204, + 1207, + 1209, + 1211, + 1216, + 1218, + 1223, + 1230, + 1232, + 1240, + 1252, + 1261, + s, + [1265, 6, 1], + 1272, + 1274, + 1275, + 1277, + 1278, + 1284, + 1287, + 1292, + s, + [1294, 4, 1], + 1302, + 1305, + 1311, + 1312, + 1314, + 1317, + 1318, + 1321, + 1322, + 1326, + 1327, + 1331, + 1332, + 1333, + 1339, + 1340, + 1343, + s, + [1347, 4, 1], + 1354, + 1361, + 1362, + 1366, + 1368, + 1376, + 1377, + 1380, + 1381, + 1383, + s, + [1385, 6, 1], + s, + [1392, 4, 2], + 1399, + 1402, + 1404, + s, + [1406, 6, 1], + s, + [1414, 5, 1], + 1420, + 1423, + 1427, + 1435, + 1438, + 1440, + 1445, + 1447, + s, + [1456, 7, 1], + 1464, + 1465, + 1466, + 1468, + 1473, + 1474, + 1486, + 1487, + 1488, + 1497, + 1499, + 1500, + 1503, + 1504, + 1506, + 1509, + 1510, + 1512, + 1514, + 1518, + 1521, + 1522, + 1524, + 1530, + 1532, + 1533, + 1543, + 1546, + 1549, + 1551, + 1552, + 1554, + 1556, + 1557, + 1559, + 1567, + 1570, + 1571, + 1582, + 1585, + 1588, + 1589, + 1592, + 1594, + s, + [1598, 6, 1], + 1607, + 1608, + 1609, + 1613, + 1615, + 1616, + s, + [1619, 10, 1], + 1630, + 1631, + 1636, + 1637, + s, + [1643, 4, 1], + 1648, + 1651, + 1652, + 1657, + 1667, + s, + [1676, 4, 1], + 1681, + 1682, + 1685, + 1686, + 1687, + 1689, + 1690, + 1694, + 1697, + s, + [1702, 5, 1], + 1712, + 1714, + 1716, + 1719, + 1722, + 1731, + 1738, + 1745, + 1748, + 1755, + s, + [1757, 5, 1], + 1765, + 1768, + 1769, + 1774, + 1775, + 1777, + 1779, + 1780, + 1783, + 1785, + 1787, + 1790, + 1791, + 1799, + 1800, + 1802, + 1804, + 1805, + 1806, + 1808, + 1810, + 1813, + 1816, + 1817, + 1821, + s, + [1823, 4, 1], + s, + [1829, 4, 1], + 1834, + 1836, + 1839, + 1840, + 1841, + 1844, + 1845, + 1851, + 1852, + 1853, + s, + [1855, 4, 1], + 1866, + 1867, + 1869, + 1871, + 1872, + 1874, + 1876, + 1877, + 1878, + 1880, + 1881, + 1882, + 1884, + 1885, + 1887, + 1889, + 1893, + 1896, + 1900, + 1901 +]), + goto: u([ + 8, + 9, + 12, + s, + [14, 54, 1], + 1052, + 314, + 677, + 678, + 1, + 2, + 6, + 1046, + 1047, + 10, + 765, + 507, + 692, + 1134, + 1135, + s, + [291, 18, 1], + 312, + 313, + 286, + s, + [361, 6, 1], + 372, + 373, + 629, + s, + [339, 10, 1], + 477, + 700, + 193, + 200, + 778, + 1049, + 70, + 672, + 670, + 671, + 592, + 620, + 621, + 622, + s, + [323, 7, 1], + 681, + 688, + 690, + 684, + 685, + 661, + 662, + 761, + 764, + s, + [153, 7, 1], + 3, + s, + [779, 267, 1], + 7, + 737, + 752, + 744, + 496, + 497, + 1147, + 1141, + 584, + 598, + 777, + 88, + 89, + 1112, + 1113, + 370, + 1118, + 1119, + 371, + 367, + s, + [625, 4, 1], + 630, + 377, + 631, + 647, + 654, + s, + [632, 9, 1], + 318, + 644, + 649, + 701, + 1097, + s, + [183, 4, 4], + 198, + 1063, + 93, + 95, + s, + [104, 6, 1], + s, + [113, 6, 1], + 123, + 1078, + 1079, + 698, + 68, + 679, + 591, + 676, + 656, + 668, + 669, + 151, + 276, + 11, + 350, + 1117, + 1114, + 1115, + 358, + 585, + 1149, + 1167, + 1173, + 751, + 1177, + 754, + 755, + 753, + 745, + 1143, + 770, + 771, + 772, + 693, + 4, + 593, + 573, + 571, + 673, + 388, + s, + [400, 4, 2], + 451, + 452, + 453, + 433, + 435, + 442, + 443, + 440, + 441, + 309, + 310, + 311, + 426, + 288, + 289, + 285, + 376, + 645, + 369, + 642, + 471, + 474, + 475, + 479, + 480, + 702, + 182, + 1099, + 184, + 186, + 188, + 192, + 196, + 199, + 201, + s, + [164, 5, 1], + 85, + 86, + 73, + 1055, + 126, + 144, + 145, + 146, + 94, + 110, + 111, + 112, + 119, + 125, + 1072, + 1074, + 1076, + 1080, + 1090, + 1082, + 1084, + s, + [1090, 4], + 1086, + 600, + 604, + 69, + 456, + 1120, + 1121, + 623, + 687, + 689, + 655, + 664, + 665, + 666, + 760, + 278, + 280, + 282, + 160, + 1095, + 763, + 351, + 352, + 509, + 736, + 738, + 1151, + 741, + 743, + 1169, + 750, + 1175, + 1145, + 728, + 774, + 775, + 776, + 773, + 315, + 316, + 546, + 5, + 594, + 595, + 675, + 431, + 434, + 436, + 624, + 368, + 375, + 646, + 653, + 641, + 288, + 643, + 648, + 650, + 651, + 652, + 468, + 706, + 707, + 179, + 579, + 1051, + 177, + 87, + 98, + 120, + 122, + 1090, + 602, + 663, + s, + [275, 4, 2], + 161, + 574, + 575, + 576, + 578, + 582, + 349, + 586, + 588, + 1153, + 1157, + 742, + 749, + 1171, + 727, + 732, + 548, + 549, + 570, + 401, + 405, + 427, + 429, + 432, + 330, + 287, + 284, + 374, + 482, + 483, + 478, + 472, + 699, + 704, + 705, + 180, + 205, + 206, + 222, + 224, + 84, + 100, + 261, + 1065, + 99, + 101, + 102, + 103, + 121, + 124, + s, + [127, 5, 1], + 1088, + s, + [133, 8, 1], + 612, + 608, + 610, + 606, + 71, + 457, + 667, + 540, + 590, + 746, + 1155, + 537, + 492, + 543, + 545, + 417, + 418, + 444, + 428, + 430, + 331, + 332, + 319, + 321, + 473, + 493, + 203, + 204, + 178, + 234, + 230, + 223, + 225, + 226, + 228, + 232, + 233, + 91, + 92, + 132, + 577, + 539, + 553, + 563, + 565, + 566, + 596, + 740, + 512, + 614, + 1139, + 733, + 767, + 1187, + 1189, + 481, + 708, + 710, + 207, + 209, + 1101, + 212, + 217, + 220, + 227, + 229, + 231, + 171, + 262, + 267, + 141, + 552, + 555, + 560, + 562, + 564, + 583, + s, + [353, 5, 1], + 587, + 597, + 739, + 494, + 501, + 502, + 538, + 513, + 766, + 768, + 542, + 334, + 335, + 320, + 322, + 712, + 242, + 210, + 211, + 1103, + 213, + 218, + 221, + 263, + 264, + 269, + 557, + 1133, + 567, + 500, + s, + [515, 5, 1], + 521, + 615, + 336, + 724, + 709, + 72, + 241, + 1057, + 214, + 561, + 522, + 503, + 504, + 505, + 514, + 1127, + 613, + 1137, + 720, + 713, + 716, + 714, + 251, + 253, + 254, + 271, + 1105, + 243, + 215, + 173, + 175, + 556, + 1131, + 554, + 568, + 1123, + 1129, + 617, + 726, + 252, + 255, + 257, + 258, + 274, + 245, + 246, + 74, + 1059, + 78, + 80, + 174, + 176, + 558, + 533, + 534, + 715, + 717, + 256, + 1107, + 244, + 77, + 76, + 531, + 532, + 721, + 79, + 82, + 523, + 535, + 536, + 530, + 1109, + 75, + 1061, + 272, + 1111, + 1125, + 524, + 527, + 525, + 528, + 529 +]) +}), +parseError: function parseError(str, hash, ExceptionClass) { if (hash.recoverable) { - this.trace(str); + if (typeof this.trace === 'function') { + this.trace(str); + } + hash.destroy(); // destroy... well, *almost*! } else { - var error = new Error(str); - error.hash = hash; - throw error; + if (typeof this.trace === 'function') { + this.trace(str); + } + if (!ExceptionClass) { + ExceptionClass = this.JisonParserError; + } + throw new ExceptionClass(str, hash); } }, -parse: function parse (input) { - var self = this, - stack = [0], - tstack = [], // token stack - vstack = [null], // semantic value stack - lstack = [], // location stack - table = this.table, - yytext = '', - yylineno = 0, - yyleng = 0, - recovering = 0, - TERROR = 2, - EOF = 1; - - var args = lstack.slice.call(arguments, 1); - - //this.reductionCount = this.shiftCount = 0; - - var lexer = Object.create(this.lexer); - var sharedState = { yy: {} }; - // copy state - for (var k in this.yy) { - if (Object.prototype.hasOwnProperty.call(this.yy, k)) { - sharedState.yy[k] = this.yy[k]; - } - } +parse: function parse(input) { + var self = this; + var stack = new Array(128); // token stack: stores token which leads to state at the same index (column storage) + var sstack = new Array(128); // state stack: stores states (column storage) - lexer.setInput(input, sharedState.yy); - sharedState.yy.lexer = lexer; - sharedState.yy.parser = this; - if (typeof lexer.yylloc == 'undefined') { - lexer.yylloc = {}; - } - var yyloc = lexer.yylloc; - lstack.push(yyloc); + var vstack = new Array(128); // semantic value stack - var ranges = lexer.options && lexer.options.ranges; + var table = this.table; + var sp = 0; // 'stack pointer': index into the stacks - if (typeof sharedState.yy.parseError === 'function') { - this.parseError = sharedState.yy.parseError; + + + + + var symbol = 0; + var preErrorSymbol = 0; + var lastEofErrorStateDepth = Infinity; + var recoveringErrorInfo = null; + var recovering = 0; // (only used when the grammar contains error recovery rules) + var TERROR = this.TERROR; + var EOF = this.EOF; + var ERROR_RECOVERY_TOKEN_DISCARD_COUNT = (this.options.errorRecoveryTokenDiscardCount | 0) || 3; + var NO_ACTION = [0, 1902 /* === table.length :: ensures that anyone using this new state will fail dramatically! */]; + + var lexer; + if (this.__lexer__) { + lexer = this.__lexer__; } else { - this.parseError = Object.getPrototypeOf(this).parseError; + lexer = this.__lexer__ = Object.create(this.lexer); } - function popStack (n) { - stack.length = stack.length - 2 * n; - vstack.length = vstack.length - n; - lstack.length = lstack.length - n; - } + var sharedState_yy = { + parseError: undefined, + quoteName: undefined, + lexer: undefined, + parser: undefined, + pre_parse: undefined, + post_parse: undefined, + pre_lex: undefined, + post_lex: undefined // WARNING: must be written this way for the code expanders to work correctly in both ES5 and ES6 modes! + }; -_token_stack: - var lex = function () { - var token; - token = lexer.lex() || EOF; - // if token isn't its numeric value, convert - if (typeof token !== 'number') { - token = self.symbols_[token] || token; - } - return token; + var ASSERT; + if (typeof assert !== 'function') { + ASSERT = function JisonAssert(cond, msg) { + if (!cond) { + throw new Error('assertion failed: ' + (msg || '***')); + } + }; + } else { + ASSERT = assert; } - var symbol, preErrorSymbol, state, action, a, r, yyval = {}, p, len, newState, expected; - while (true) { - // retreive state number from top of stack - state = stack[stack.length - 1]; + this.yyGetSharedState = function yyGetSharedState() { + return sharedState_yy; + }; - // use default actions if available - if (this.defaultActions[state]) { - action = this.defaultActions[state]; - } else { - if (symbol === null || typeof symbol == 'undefined') { - symbol = lex(); - } - // read action for current state and first input - action = table[state] && table[state][symbol]; - } -_handle_error: - // handle parse error - if (typeof action === 'undefined' || !action.length || !action[0]) { - var error_rule_depth; - var errStr = ''; - - // Return the rule stack depth where the nearest error rule can be found. - // Return FALSE when no error recovery rule was found. - function locateNearestErrorRecoveryRule(state) { - var stack_probe = stack.length - 1; - var depth = 0; - - // try to recover from error - for(;;) { - // check for error recovery rule in this state - if ((TERROR.toString()) in table[state]) { - return depth; - } - if (state === 0 || stack_probe < 2) { - return false; // No suitable error recovery rule available. - } - stack_probe -= 2; // popStack(1): [symbol, action] - state = stack[stack_probe]; - ++depth; + this.yyGetErrorInfoTrack = function yyGetErrorInfoTrack() { + return recoveringErrorInfo; + }; + + + // shallow clone objects, straight copy of simple `src` values + // e.g. `lexer.yytext` MAY be a complex value object, + // rather than a simple string/value. + function shallow_copy(src) { + if (typeof src === 'object') { + var dst = {}; + for (var k in src) { + if (Object.prototype.hasOwnProperty.call(src, k)) { + dst[k] = src[k]; } } + return dst; + } + return src; + } + function shallow_copy_noclobber(dst, src) { + for (var k in src) { + if (typeof dst[k] === 'undefined' && Object.prototype.hasOwnProperty.call(src, k)) { + dst[k] = src[k]; + } + } + } - if (!recovering) { - // first see if there's any chance at hitting an error recovery rule: - error_rule_depth = locateNearestErrorRecoveryRule(state); + // copy state + shallow_copy_noclobber(sharedState_yy, this.yy); - // Report error - expected = []; - for (p in table[state]) { - if (this.terminals_[p] && p > TERROR) { - expected.push("'"+this.terminals_[p]+"'"); - } - } - if (lexer.showPosition) { - errStr = 'Parse error on line '+(yylineno+1)+":\n"+lexer.showPosition()+"\nExpecting "+expected.join(', ') + ", got '" + (this.terminals_[symbol] || symbol)+ "'"; - } else { - errStr = 'Parse error on line '+(yylineno+1)+": Unexpected " + - (symbol == EOF ? "end of input" : - ("'"+(this.terminals_[symbol] || symbol)+"'")); - } - this.parseError(errStr, { - text: lexer.match, - token: this.terminals_[symbol] || symbol, - line: lexer.yylineno, - loc: yyloc, - expected: expected, - recoverable: (error_rule_depth !== false) - }); - } else if (preErrorSymbol !== EOF) { - error_rule_depth = locateNearestErrorRecoveryRule(state); + sharedState_yy.lexer = lexer; + sharedState_yy.parser = this; + + + + + + + + // Does the shared state override the default `parseError` that already comes with this instance? + if (typeof sharedState_yy.parseError === 'function') { + this.parseError = function parseErrorAlt(str, hash, ExceptionClass) { + if (!ExceptionClass) { + ExceptionClass = this.JisonParserError; } + return sharedState_yy.parseError.call(this, str, hash, ExceptionClass); + }; + } else { + this.parseError = this.originalParseError; + } - // just recovered from another error - if (recovering == 3) { - if (symbol === EOF || preErrorSymbol === EOF) { - throw new Error(errStr || 'Parsing halted while starting to recover from another error.'); - } + // Does the shared state override the default `quoteName` that already comes with this instance? + if (typeof sharedState_yy.quoteName === 'function') { + this.quoteName = function quoteNameAlt(id_str) { + return sharedState_yy.quoteName.call(this, id_str); + }; + } else { + this.quoteName = this.originalQuoteName; + } + + // set up the cleanup function; make it an API so that external code can re-use this one in case of + // calamities or when the `%options no-try-catch` option has been specified for the grammar, in which + // case this parse() API method doesn't come with a `finally { ... }` block any more! + // + // NOTE: as this API uses parse() as a closure, it MUST be set again on every parse() invocation, + // or else your `sharedState`, etc. references will be *wrong*! + this.cleanupAfterParse = function parser_cleanupAfterParse(resultValue, invoke_post_methods, do_not_nuke_errorinfos) { + var rv; + + if (invoke_post_methods) { + var hash; + + if (sharedState_yy.post_parse || this.post_parse) { + // create an error hash info instance: we re-use this API in a **non-error situation** + // as this one delivers all parser internals ready for access by userland code. + hash = this.constructParseErrorInfo(null /* no error! */, null /* no exception! */, null, false); + } - // discard current lookahead and grab another - yyleng = lexer.yyleng; - yytext = lexer.yytext; - yylineno = lexer.yylineno; - yyloc = lexer.yylloc; - symbol = lex(); + if (sharedState_yy.post_parse) { + rv = sharedState_yy.post_parse.call(this, sharedState_yy, resultValue, hash); + if (typeof rv !== 'undefined') resultValue = rv; + } + if (this.post_parse) { + rv = this.post_parse.call(this, sharedState_yy, resultValue, hash); + if (typeof rv !== 'undefined') resultValue = rv; } - // try to recover from error - if (error_rule_depth === false) { - throw new Error(errStr || 'Parsing halted. No suitable error recovery rule available.'); + // cleanup: + if (hash && hash.destroy) { + hash.destroy(); } - popStack(error_rule_depth); + } - preErrorSymbol = (symbol == TERROR ? null : symbol); // save the lookahead token - symbol = TERROR; // insert generic error symbol as new lookahead - state = stack[stack.length-1]; - action = table[state] && table[state][TERROR]; - recovering = 3; // allow 3 real symbols to be shifted before reporting a new error + if (this.__reentrant_call_depth > 1) return resultValue; // do not (yet) kill the sharedState when this is a reentrant run. + + // clean up the lingering lexer structures as well: + if (lexer.cleanupAfterLex) { + lexer.cleanupAfterLex(do_not_nuke_errorinfos); } - // this shouldn't happen, unless resolve defaults are off - if (action[0] instanceof Array && action.length > 1) { - throw new Error('Parse Error: multiple actions possible at state: '+state+', token: '+symbol); + // prevent lingering circular references from causing memory leaks: + if (sharedState_yy) { + sharedState_yy.lexer = undefined; + sharedState_yy.parser = undefined; + if (lexer.yy === sharedState_yy) { + lexer.yy = undefined; + } } + sharedState_yy = undefined; + this.parseError = this.originalParseError; + this.quoteName = this.originalQuoteName; - switch (action[0]) { - case 1: // shift - //this.shiftCount++; - - stack.push(symbol); - vstack.push(lexer.yytext); - lstack.push(lexer.yylloc); - stack.push(action[1]); // push state - symbol = null; - if (!preErrorSymbol) { // normal execution/no error - yyleng = lexer.yyleng; - yytext = lexer.yytext; - yylineno = lexer.yylineno; - yyloc = lexer.yylloc; - if (recovering > 0) { - recovering--; - } - } else { - // error just occurred, resume old lookahead f/ before error - symbol = preErrorSymbol; - preErrorSymbol = null; - } - break; + // nuke the vstack[] array at least as that one will still reference obsoleted user values. + // To be safe, we nuke the other internal stack columns as well... + stack.length = 0; // fastest way to nuke an array without overly bothering the GC + sstack.length = 0; - case 2: - // reduce - //this.reductionCount++; - - len = this.productions_[action[1]][1]; - - // perform semantic action - yyval.$ = vstack[vstack.length-len]; // default to $$ = $1 - // default location, uses first token for firsts, last for lasts - yyval._$ = { - first_line: lstack[lstack.length-(len||1)].first_line, - last_line: lstack[lstack.length-1].last_line, - first_column: lstack[lstack.length-(len||1)].first_column, - last_column: lstack[lstack.length-1].last_column - }; - if (ranges) { - yyval._$.range = [lstack[lstack.length-(len||1)].range[0], lstack[lstack.length-1].range[1]]; - } - r = this.performAction.apply(yyval, [yytext, yyleng, yylineno, sharedState.yy, action[1], vstack, lstack].concat(args)); + vstack.length = 0; + sp = 0; - if (typeof r !== 'undefined') { - return r; + // nuke the error hash info instances created during this run. + // Userland code must COPY any data/references + // in the error hash instance(s) it is more permanently interested in. + if (!do_not_nuke_errorinfos) { + for (var i = this.__error_infos.length - 1; i >= 0; i--) { + var el = this.__error_infos[i]; + if (el && typeof el.destroy === 'function') { + el.destroy(); } + } + this.__error_infos.length = 0; - // pop off stack - if (len) { - stack = stack.slice(0,-1*len*2); - vstack = vstack.slice(0, -1*len); - lstack = lstack.slice(0, -1*len); + + for (var i = this.__error_recovery_infos.length - 1; i >= 0; i--) { + var el = this.__error_recovery_infos[i]; + if (el && typeof el.destroy === 'function') { + el.destroy(); } + } + this.__error_recovery_infos.length = 0; + + // `recoveringErrorInfo` is also part of the `__error_recovery_infos` array, + // hence has been destroyed already: no need to do that *twice*. + if (recoveringErrorInfo) { + recoveringErrorInfo = undefined; + } - stack.push(this.productions_[action[1]][0]); // push nonterminal (reduce) - vstack.push(yyval.$); - lstack.push(yyval._$); - // goto new state = table[STATE][NONTERMINAL] - newState = table[stack[stack.length-2]][stack[stack.length-1]]; - stack.push(newState); - break; - case 3: - // accept - return true; } - } + return resultValue; + }; - return true; -}}; - - -// from https://www.postgresql.org/docs/current/static/sql-keywords-appendix.html -// JSON.stringify([].slice.call(document.querySelectorAll('tr')).filter(x => x.children.length == 5 && x.children[2].innerText == 'reserved').map(x => x.children[0].innerText)) - -var nonReserved = ["A","ABSENT","ABSOLUTE","ACCORDING","ACTION","ADA","ADD","ADMIN","AFTER","ALWAYS","ASC","ASSERTION","ASSIGNMENT","ATTRIBUTE","ATTRIBUTES","BASE64","BEFORE","BERNOULLI","BLOCKED","BOM","BREADTH","C","CASCADE","CATALOG","CATALOG_NAME","CHAIN","CHARACTERISTICS","CHARACTERS","CHARACTER_SET_CATALOG","CHARACTER_SET_NAME","CHARACTER_SET_SCHEMA","CLASS_ORIGIN","COBOL","COLLATION","COLLATION_CATALOG","COLLATION_NAME","COLLATION_SCHEMA","COLUMNS","COLUMN_NAME","COMMAND_FUNCTION","COMMAND_FUNCTION_CODE","COMMITTED","CONDITION_NUMBER","CONNECTION","CONNECTION_NAME","CONSTRAINTS","CONSTRAINT_CATALOG","CONSTRAINT_NAME","CONSTRAINT_SCHEMA","CONSTRUCTOR","CONTENT","CONTINUE","CONTROL","CURSOR_NAME","DATA","DATETIME_INTERVAL_CODE","DATETIME_INTERVAL_PRECISION","DB","DEFAULTS","DEFERRABLE","DEFERRED","DEFINED","DEFINER","DEGREE","DEPTH","DERIVED","DESC","DESCRIPTOR","DIAGNOSTICS","DISPATCH","DOCUMENT","DOMAIN","DYNAMIC_FUNCTION","DYNAMIC_FUNCTION_CODE","EMPTY","ENCODING","ENFORCED","EXCLUDE","EXCLUDING","EXPRESSION","FILE","FINAL","FIRST","FLAG","FOLLOWING","FORTRAN","FOUND","FS","G","GENERAL","GENERATED","GO","GOTO","GRANTED","HEX","HIERARCHY","ID","IGNORE","IMMEDIATE","IMMEDIATELY","IMPLEMENTATION","INCLUDING","INCREMENT","INDENT","INITIALLY","INPUT","INSTANCE","INSTANTIABLE","INSTEAD","INTEGRITY","INVOKER","ISOLATION","K","KEY","KEY_MEMBER","KEY_TYPE","LAST","LENGTH","LEVEL","LIBRARY","LIMIT","LINK","LOCATION","LOCATOR","M","MAP","MAPPING","MATCHED","MAXVALUE","MESSAGE_LENGTH","MESSAGE_OCTET_LENGTH","MESSAGE_TEXT","MINVALUE","MORE","MUMPS","NAME","NAMES","NAMESPACE","NESTING","NEXT","NFC","NFD","NFKC","NFKD","NIL","NORMALIZED","NULLABLE","NULLS","NUMBER","OBJECT","OCTETS","OFF","OPTION","OPTIONS","ORDERING","ORDINALITY","OTHERS","OUTPUT","OVERRIDING","P","PAD","PARAMETER_MODE","PARAMETER_NAME","PARAMETER_ORDINAL_POSITION","PARAMETER_SPECIFIC_CATALOG","PARAMETER_SPECIFIC_NAME","PARAMETER_SPECIFIC_SCHEMA","PARTIAL","PASCAL","PASSING","PASSTHROUGH","PATH","PERMISSION","PLACING","PLI","PRECEDING","PRESERVE","PRIOR","PRIVILEGES","PUBLIC","READ","RECOVERY","RELATIVE","REPEATABLE","REQUIRING","RESPECT","RESTART","RESTORE","RESTRICT","RETURNED_CARDINALITY","RETURNED_LENGTH","RETURNED_OCTET_LENGTH","RETURNED_SQLSTATE","RETURNING","ROLE","ROUTINE","ROUTINE_CATALOG","ROUTINE_NAME","ROUTINE_SCHEMA","ROW_COUNT","SCALE","SCHEMA","SCHEMA_NAME","SCOPE_CATALOG","SCOPE_NAME","SCOPE_SCHEMA","SECTION","SECURITY","SELECTIVE","SELF","SEQUENCE","SERIALIZABLE","SERVER","SERVER_NAME","SESSION","SETS","SIMPLE","SIZE","SOURCE","SPACE","SPECIFIC_NAME","STANDALONE","STATE","STATEMENT","STRIP","STRUCTURE","STYLE","SUBCLASS_ORIGIN","T","TABLE_NAME","TEMPORARY","TIES","TOKEN","TOP_LEVEL_COUNT","TRANSACTION","TRANSACTIONS_COMMITTED","TRANSACTIONS_ROLLED_BACK","TRANSACTION_ACTIVE","TRANSFORM","TRANSFORMS","TRIGGER_CATALOG","TRIGGER_NAME","TRIGGER_SCHEMA","TYPE","UNBOUNDED","UNCOMMITTED","UNDER","UNLINK","UNNAMED","UNTYPED","URI","USAGE","USER_DEFINED_TYPE_CATALOG","USER_DEFINED_TYPE_CODE","USER_DEFINED_TYPE_NAME","USER_DEFINED_TYPE_SCHEMA","VALID","VERSION","VIEW","WHITESPACE","WORK","WRAPPER","WRITE","XMLDECLARATION","XMLSCHEMA","YES","ZONE"] - -parser.parseError = function(str, hash) { - if (hash.expected && hash.expected.indexOf("'LITERAL'") > -1 && /[a-zA-Z_][a-zA-Z_0-9]*/.test(hash.token) && nonReserved.indexOf(hash.token) > -1) { - return - } - throw new SyntaxError(str) -} -/* generated by jison-lex 0.3.4 */ -var lexer = (function(){ -var lexer = ({ - -EOF:1, - -parseError:function parseError(str, hash) { - if (this.yy.parser) { - this.yy.parser.parseError(str, hash); - } else { - throw new Error(str); - } - }, -// resets the lexer, sets new input -setInput:function (input, yy) { - this.yy = yy || this.yy || {}; - this._input = input; - this._more = this._backtrack = this.done = false; - this.yylineno = this.yyleng = 0; - this.yytext = this.matched = this.match = ''; - this.conditionStack = ['INITIAL']; - this.yylloc = { - first_line: 1, - first_column: 0, - last_line: 1, - last_column: 0 - }; - if (this.options.ranges) { - this.yylloc.range = [0,0]; - } - this.offset = 0; - return this; - }, -// consumes and returns one char from the input -input:function () { - var ch = this._input[0]; - this.yytext += ch; - this.yyleng++; - this.offset++; - this.match += ch; - this.matched += ch; - var lines = ch.match(/(?:\r\n?|\n).*/g); - if (lines) { - this.yylineno++; - this.yylloc.last_line++; - } else { - this.yylloc.last_column++; - } - if (this.options.ranges) { - this.yylloc.range[1]++; - } - this._input = this._input.slice(1); - return ch; - }, -// unshifts one char (or a string) into the input -unput:function (ch) { - var len = ch.length; - var lines = ch.split(/(?:\r\n?|\n)/g); - - this._input = ch + this._input; - this.yytext = this.yytext.substr(0, this.yytext.length - len); - //this.yyleng -= len; - this.offset -= len; - var oldLines = this.match.split(/(?:\r\n?|\n)/g); - this.match = this.match.substr(0, this.match.length - 1); - this.matched = this.matched.substr(0, this.matched.length - 1); - - if (lines.length - 1) { - this.yylineno -= lines.length - 1; - } - var r = this.yylloc.range; - this.yylloc = { - first_line: this.yylloc.first_line, - last_line: this.yylineno + 1, - first_column: this.yylloc.first_column, - last_column: lines ? - (lines.length === oldLines.length ? this.yylloc.first_column : 0) - + oldLines[oldLines.length - lines.length].length - lines[0].length : - this.yylloc.first_column - len - }; - if (this.options.ranges) { - this.yylloc.range = [r[0], r[0] + this.yyleng - len]; - } - this.yyleng = this.yytext.length; - return this; - }, -// When called from action, caches matched text and appends it on next action -more:function () { - this._more = true; - return this; - }, -// When called from action, signals the lexer that this rule fails to match the input, so the next matching rule (regex) should be tested instead. -reject:function () { - if (this.options.backtrack_lexer) { - this._backtrack = true; - } else { - return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n' + this.showPosition(), { - text: "", - token: null, - line: this.yylineno - }); - } - return this; - }, -// retain first n characters of the match -less:function (n) { - this.unput(this.match.slice(n)); - }, -// displays already matched input, i.e. for error messages -pastInput:function () { - var past = this.matched.substr(0, this.matched.length - this.match.length); - return (past.length > 20 ? '...':'') + past.substr(-20).replace(/\n/g, ""); - }, -// displays upcoming input, i.e. for error messages -upcomingInput:function () { - var next = this.match; - if (next.length < 20) { - next += this._input.substr(0, 20-next.length); - } - return (next.substr(0,20) + (next.length > 20 ? '...' : '')).replace(/\n/g, ""); - }, -// displays the character position where the lexing error occurred, i.e. for error messages -showPosition:function () { - var pre = this.pastInput(); - var c = new Array(pre.length + 1).join("-"); - return pre + this.upcomingInput() + "\n" + c + "^"; - }, -// test the lexed token: return FALSE when not a match, otherwise return token -test_match:function(match, indexed_rule) { - var token, - lines, - backup; - - if (this.options.backtrack_lexer) { - // save context - backup = { - yylineno: this.yylineno, - yylloc: { - first_line: this.yylloc.first_line, - last_line: this.last_line, - first_column: this.yylloc.first_column, - last_column: this.yylloc.last_column - }, - yytext: this.yytext, - match: this.match, - matches: this.matches, - matched: this.matched, - yyleng: this.yyleng, - offset: this.offset, - _more: this._more, - _input: this._input, - yy: this.yy, - conditionStack: this.conditionStack.slice(0), - done: this.done - }; - if (this.options.ranges) { - backup.yylloc.range = this.yylloc.range.slice(0); - } - } - lines = match[0].match(/(?:\r\n?|\n).*/g); - if (lines) { - this.yylineno += lines.length; - } - this.yylloc = { - first_line: this.yylloc.last_line, - last_line: this.yylineno + 1, - first_column: this.yylloc.last_column, - last_column: lines ? - lines[lines.length - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length : - this.yylloc.last_column + match[0].length - }; - this.yytext += match[0]; - this.match += match[0]; - this.matches = match; - this.yyleng = this.yytext.length; - if (this.options.ranges) { - this.yylloc.range = [this.offset, this.offset += this.yyleng]; - } - this._more = false; - this._backtrack = false; - this._input = this._input.slice(match[0].length); - this.matched += match[0]; - token = this.performAction.call(this, this.yy, this, indexed_rule, this.conditionStack[this.conditionStack.length - 1]); - if (this.done && this._input) { - this.done = false; - } - if (token) { - return token; - } else if (this._backtrack) { - // recover context - for (var k in backup) { - this[k] = backup[k]; - } - return false; // rule action called reject() implying the next rule should be tested instead. - } - return false; - }, -// return next match in input -next:function () { - if (this.done) { - return this.EOF; - } - if (!this._input) { - this.done = true; - } - var token, - match, - tempMatch, - index; - if (!this._more) { - this.yytext = ''; - this.match = ''; - } - var rules = this._currentRules(); - for (var i = 0; i < rules.length; i++) { - tempMatch = this._input.match(this.rules[rules[i]]); - if (tempMatch && (!match || tempMatch[0].length > match[0].length)) { - match = tempMatch; - index = i; - if (this.options.backtrack_lexer) { - token = this.test_match(tempMatch, rules[i]); - if (token !== false) { - return token; - } else if (this._backtrack) { - match = false; - continue; // rule action called reject() implying a rule MISmatch. - } else { - // else: this is a lexer rule which consumes input without producing a token (e.g. whitespace) - return false; - } - } else if (!this.options.flex) { - break; - } - } - } - if (match) { - token = this.test_match(match, rules[index]); - if (token !== false) { - return token; - } - // else: this is a lexer rule which consumes input without producing a token (e.g. whitespace) - return false; - } - if (this._input === "") { - return this.EOF; - } else { - return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. Unrecognized text.\n' + this.showPosition(), { - text: "", - token: null, - line: this.yylineno - }); - } - }, -// return next match that has a token -lex:function lex () { - var r = this.next(); - if (r) { - return r; - } else { - return this.lex(); - } - }, -// activates a new lexer condition state (pushes the new lexer condition state onto the condition stack) -begin:function begin (condition) { - this.conditionStack.push(condition); - }, -// pop the previously active lexer condition state off the condition stack -popState:function popState () { - var n = this.conditionStack.length - 1; - if (n > 0) { - return this.conditionStack.pop(); - } else { - return this.conditionStack[0]; - } - }, -// produce the lexer rule set which is active for the currently active lexer condition state -_currentRules:function _currentRules () { - if (this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1]) { - return this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules; - } else { - return this.conditions["INITIAL"].rules; - } - }, -// return the currently active lexer condition state; when an index argument is provided it produces the N-th previous condition state, if available -topState:function topState (n) { - n = this.conditionStack.length - 1 - Math.abs(n || 0); - if (n >= 0) { - return this.conditionStack[n]; - } else { - return "INITIAL"; - } - }, -// alias for begin(condition) -pushState:function pushState (condition) { - this.begin(condition); - }, -// return the number of states currently on the stack -stateStackSize:function stateStackSize() { - return this.conditionStack.length; - }, -options: {"case-insensitive":true}, -performAction: function anonymous(yy,yy_,$avoiding_name_collisions,YY_START) { -var YYSTATE=YY_START; -switch($avoiding_name_collisions) { -case 0:return 270 -break; -case 1:return 306 -break; -case 2:return 424 -break; -case 3:return 303 -break; -case 4:return 5 -break; -case 5:return 5 -break; -case 6:return 300 -break; -case 7:return 300 -break; -case 8:return 132 -break; -case 9:return 132 -break; -case 10:return /* its a COMMENT */ -break; -case 11:/* skip whitespace */ -break; -case 12:return 320 -break; -case 13:return 323 -break; -case 14:yy_.yytext = 'VALUE';return 89 -break; -case 15:yy_.yytext = 'VALUE';return 189 -break; -case 16:yy_.yytext = 'ROW';return 189 -break; -case 17:yy_.yytext = 'COLUMN';return 189 -break; -case 18:yy_.yytext = 'MATRIX';return 189 -break; -case 19:yy_.yytext = 'INDEX';return 189 -break; -case 20:yy_.yytext = 'RECORDSET';return 189 -break; -case 21:yy_.yytext = 'TEXT';return 189 -break; -case 22:yy_.yytext = 'SELECT';return 189 -break; -case 23:return 524 -break; -case 24:return 385 -break; -case 25:return 406 -break; -case 26:return 519 -break; -case 27:return 290 -break; -case 28:return 273 -break; -case 29:return 273 -break; -case 30:return 164 -break; -case 31:return 404 -break; -case 32:return 170 -break; -case 33:return 229 -break; -case 34:return 166 -break; -case 35:return 207 -break; -case 36:return 291 -break; -case 37:return 76 -break; -case 38:return 422 -break; -case 39:return 246 -break; -case 40:return 408 -break; -case 41:return 360 -break; -case 42:return 289 -break; -case 43:return 518 -break; -case 44:return 441 -break; -case 45:return 334 -break; -case 46:return 445 -break; -case 47:return 335 -break; -case 48:return 319 -break; -case 49:return 119 -break; -case 50:return 112 -break; -case 51:return 319 -break; -case 52:return 112 -break; -case 53:return 319 -break; -case 54:return 112 -break; -case 55:return 319 -break; -case 56:return 512 -break; -case 57:return 307 -break; -case 58:return 275 -break; -case 59:return 372 -break; -case 60:return 130 -break; -case 61:return 'CLOSE' -break; -case 62:return 247 -break; -case 63:return 190 -break; -case 64:return 190 -break; -case 65:return 438 -break; -case 66:return 371 -break; -case 67:return 474 -break; -case 68:return 444 -break; -case 69:return 277 -break; -case 70:return 240 -break; -case 71:return 286 -break; -case 72:return 271 -break; -case 73:return 206 -break; -case 74:return 238 -break; -case 75:return 269 -break; -case 76:return 'CURSOR' -break; -case 77:return 409 -break; -case 78:return 294 -break; -case 79:return 295 -break; -case 80:return 296 -break; -case 81:return 452 -break; -case 82:return 347 -break; -case 83:return 342 -break; -case 84:return 'DELETED' -break; -case 85:return 246 -break; -case 86:return 410 -break; -case 87:return 185 -break; -case 88:return 400 -break; -case 89:return 451 -break; -case 90:return 135 -break; -case 91:return 310 -break; -case 92:return 393 -break; -case 93:return 314 -break; -case 94:return 318 -break; -case 95:return 169 -break; -case 96:return 512 -break; -case 97:return 512 -break; -case 98:return 302 -break; -case 99:return 14 -break; -case 100:return 299 -break; -case 101:return 253 -break; -case 102:return 244 -break; -case 103:return 95 -break; -case 104:return 377 -break; -case 105:return 183 -break; -case 106:return 227 -break; -case 107:return 272 -break; -case 108:return 317 -break; -case 109:return 606 -break; -case 110:return 476 -break; -case 111:return 232 -break; -case 112:return 236 -break; -case 113:return 239 -break; -case 114:return 156 -break; -case 115:return 360 -break; -case 116:return 336 -break; -case 117:return 99 -break; -case 118:return 193 -break; -case 119:return 212 -break; -case 120:return 224 -break; -case 121:return 520 -break; -case 122:return 343 -break; -case 123:return 213 -break; -case 124:return 168 -break; -case 125:return 297 -break; -case 126:return 198 -break; -case 127:return 223 -break; -case 128:return 374 -break; -case 129:return 245 -break; -case 130:return 'LET' -break; -case 131:return 225 -break; -case 132:return 112 -break; -case 133:return 249 -break; -case 134:return 464 -break; -case 135:return 191 -break; -case 136:return 288 -break; -case 137:return 394 -break; -case 138:return 287 -break; -case 139:return 456 -break; -case 140:return 169 -break; -case 141:return 407 -break; -case 142:return 222 -break; -case 143:return 649 -break; -case 144:return 274 -break; -case 145:return 248 -break; -case 146:return 384 -break; -case 147:return 154 -break; -case 148:return 301 -break; -case 149:return 243 -break; -case 150:return 437 -break; -case 151:return 230 -break; -case 152:return 419 -break; -case 153:return 129 -break; -case 154:return 251 -break; -case 155:return 'OPEN' -break; -case 156:return 420 -break; -case 157:return 171 -break; -case 158:return 118 -break; -case 159:return 208 -break; -case 160:return 280 -break; -case 161:return 172 -break; -case 162:return 283 -break; -case 163:return 768 -break; -case 164:return 93 -break; -case 165:return 16 -break; -case 166:return 373 -break; -case 167:return 446 -break; -case 168:return 681 -break; -case 169:return 15 -break; -case 170:return 418 -break; -case 171:return 194 -break; -case 172:return 'REDUCE' -break; -case 173:return 378 -break; -case 174:return 315 -break; -case 175:return 521 -break; -case 176:return 685 -break; -case 177:return 107 -break; -case 178:return 405 -break; -case 179:return 175 -break; -case 180:return 293 -break; -case 181:return 447 -break; -case 182:return 690 -break; -case 183:return 173 -break; -case 184:return 173 -break; -case 185:return 226 -break; -case 186:return 440 -break; -case 187:return 237 -break; -case 188:return 150 -break; -case 189:return 769 -break; -case 190:return 409 -break; -case 191:return 89 -break; -case 192:return 228 -break; -case 193:return 146 -break; -case 194:return 146 -break; -case 195:return 413 -break; -case 196:return 338 -break; -case 197:return 421 -break; -case 198:return 'STRATEGY' -break; -case 199:return 'STORE' -break; -case 200:return 284 -break; -case 201:return 285 -break; -case 202:return 357 -break; -case 203:return 357 -break; -case 204:return 467 -break; -case 205:return 361 -break; -case 206:return 361 -break; -case 207:return 192 -break; -case 208:return 313 -break; -case 209:return 'TIMEOUT' -break; -case 210:return 148 -break; -case 211:return 195 -break; -case 212:return 439 -break; -case 213:return 439 -break; -case 214:return 513 -break; -case 215:return 298 -break; -case 216:return 455 -break; -case 217:return 162 -break; -case 218:return 187 -break; -case 219:return 98 -break; -case 220:return 339 -break; -case 221:return 412 -break; -case 222:return 231 -break; -case 223:return 149 -break; -case 224:return 348 -break; -case 225:return 134 -break; -case 226:return 414 -break; -case 227:return 312 -break; -case 228:return 128 -break; -case 229:return 443 -break; -case 230:return 72 -break; -case 231:return 439 /* Is this keyword required? */ -break; -case 232:return 131 -break; -case 233:return 131 -break; -case 234:return 115 -break; -case 235:return 137 -break; -case 236:return 179 -break; -case 237:return 321 -break; -case 238:return 180 -break; -case 239:return 133 -break; -case 240:return 138 -break; -case 241:return 330 -break; -case 242:return 327 -break; -case 243:return 329 -break; -case 244:return 326 -break; -case 245:return 324 -break; -case 246:return 322 -break; -case 247:return 323 -break; -case 248:return 142 -break; -case 249:return 141 -break; -case 250:return 139 -break; -case 251:return 325 -break; -case 252:return 328 -break; -case 253:return 140 -break; -case 254:return 124 -break; -case 255:return 328 -break; -case 256:return 77 -break; -case 257:return 78 -break; -case 258:return 145 -break; -case 259:return 428 -break; -case 260:return 430 -break; -case 261:return 304 -break; -case 262:return 509 -break; -case 263:return 511 -break; -case 264:return 122 -break; -case 265:return 116 -break; -case 266:return 74 -break; -case 267:return 337 -break; -case 268:return 152 -break; -case 269:return 767 -break; -case 270:return 143 -break; -case 271:return 181 -break; -case 272:return 136 -break; -case 273:return 123 -break; -case 274:return 316 -break; -case 275:return 4 -break; -case 276:return 10 -break; -case 277:return 'INVALID' -break; -} -}, -rules: [/^(?:``([^\`])+``)/i,/^(?:\[\?\])/i,/^(?:@\[)/i,/^(?:ARRAY\[)/i,/^(?:\[([^\]'])*?\])/i,/^(?:`([^\`'])*?`)/i,/^(?:N(['](\\.|[^']|\\')*?['])+)/i,/^(?:X(['](\\.|[^']|\\')*?['])+)/i,/^(?:(['](\\.|[^']|\\')*?['])+)/i,/^(?:(["](\\.|[^"]|\\")*?["])+)/i,/^(?:--(.*?)($|\r\n|\r|\n))/i,/^(?:\s+)/i,/^(?:\|\|)/i,/^(?:\|)/i,/^(?:VALUE\s+OF\s+SEARCH\b)/i,/^(?:VALUE\s+OF\s+SELECT\b)/i,/^(?:ROW\s+OF\s+SELECT\b)/i,/^(?:COLUMN\s+OF\s+SELECT\b)/i,/^(?:MATRIX\s+OF\s+SELECT\b)/i,/^(?:INDEX\s+OF\s+SELECT\b)/i,/^(?:RECORDSET\s+OF\s+SELECT\b)/i,/^(?:TEXT\s+OF\s+SELECT\b)/i,/^(?:SELECT\b)/i,/^(?:ABSOLUTE\b)/i,/^(?:ACTION\b)/i,/^(?:ADD\b)/i,/^(?:AFTER\b)/i,/^(?:AGGR\b)/i,/^(?:AGGREGATE\b)/i,/^(?:AGGREGATOR\b)/i,/^(?:ALL\b)/i,/^(?:ALTER\b)/i,/^(?:AND\b)/i,/^(?:ANTI\b)/i,/^(?:ANY\b)/i,/^(?:APPLY\b)/i,/^(?:ARRAY\b)/i,/^(?:AS\b)/i,/^(?:ASSERT\b)/i,/^(?:ASC\b)/i,/^(?:ATTACH\b)/i,/^(?:AUTO(_)?INCREMENT\b)/i,/^(?:AVG\b)/i,/^(?:BEFORE\b)/i,/^(?:BEGIN\b)/i,/^(?:BETWEEN\b)/i,/^(?:BREAK\b)/i,/^(?:NOT\s+BETWEEN\b)/i,/^(?:NOT\s+LIKE\b)/i,/^(?:BY\b)/i,/^(?:~~\*)/i,/^(?:!~~\*)/i,/^(?:~~)/i,/^(?:!~~)/i,/^(?:ILIKE\b)/i,/^(?:NOT\s+ILIKE\b)/i,/^(?:CALL\b)/i,/^(?:CASE\b)/i,/^(?:CAST\b)/i,/^(?:CHECK\b)/i,/^(?:CLASS\b)/i,/^(?:CLOSE\b)/i,/^(?:COLLATE\b)/i,/^(?:COLUMN\b)/i,/^(?:COLUMNS\b)/i,/^(?:COMMIT\b)/i,/^(?:CONSTRAINT\b)/i,/^(?:CONTENT\b)/i,/^(?:CONTINUE\b)/i,/^(?:CONVERT\b)/i,/^(?:CORRESPONDING\b)/i,/^(?:COUNT\b)/i,/^(?:CREATE\b)/i,/^(?:CROSS\b)/i,/^(?:CUBE\b)/i,/^(?:CURRENT_TIMESTAMP\b)/i,/^(?:CURSOR\b)/i,/^(?:DATABASE(S)?)/i,/^(?:DATEADD\b)/i,/^(?:DATEDIFF\b)/i,/^(?:TIMESTAMPDIFF\b)/i,/^(?:DECLARE\b)/i,/^(?:DEFAULT\b)/i,/^(?:DELETE\b)/i,/^(?:DELETED\b)/i,/^(?:DESC\b)/i,/^(?:DETACH\b)/i,/^(?:DISTINCT\b)/i,/^(?:DROP\b)/i,/^(?:ECHO\b)/i,/^(?:EDGE\b)/i,/^(?:END\b)/i,/^(?:ENUM\b)/i,/^(?:ELSE\b)/i,/^(?:ESCAPE\b)/i,/^(?:EXCEPT\b)/i,/^(?:EXEC\b)/i,/^(?:EXECUTE\b)/i,/^(?:EXISTS\b)/i,/^(?:EXPLAIN\b)/i,/^(?:FALSE\b)/i,/^(?:FETCH\b)/i,/^(?:FIRST\b)/i,/^(?:FOR\b)/i,/^(?:FOREIGN\b)/i,/^(?:FROM\b)/i,/^(?:FULL\b)/i,/^(?:FUNCTION\b)/i,/^(?:GLOB\b)/i,/^(?:GO\b)/i,/^(?:GRAPH\b)/i,/^(?:GROUP\b)/i,/^(?:GROUPING\b)/i,/^(?:HAVING\b)/i,/^(?:IF\b)/i,/^(?:IDENTITY\b)/i,/^(?:IS\b)/i,/^(?:IN\b)/i,/^(?:INDEX\b)/i,/^(?:INDEXED\b)/i,/^(?:INNER\b)/i,/^(?:INSTEAD\b)/i,/^(?:INSERT\b)/i,/^(?:INSERTED\b)/i,/^(?:INTERSECT\b)/i,/^(?:INTERVAL\b)/i,/^(?:INTO\b)/i,/^(?:JOIN\b)/i,/^(?:KEY\b)/i,/^(?:LAST\b)/i,/^(?:LET\b)/i,/^(?:LEFT\b)/i,/^(?:LIKE\b)/i,/^(?:LIMIT\b)/i,/^(?:MATCHED\b)/i,/^(?:MATRIX\b)/i,/^(?:MAX(\s+)?(?=\())/i,/^(?:MAX(\s+)?(?=(,|\))))/i,/^(?:MIN(\s+)?(?=\())/i,/^(?:MERGE\b)/i,/^(?:MINUS\b)/i,/^(?:MODIFY\b)/i,/^(?:NATURAL\b)/i,/^(?:NEXT\b)/i,/^(?:NEW\b)/i,/^(?:NOCASE\b)/i,/^(?:NO\b)/i,/^(?:NOT\b)/i,/^(?:NULL\b)/i,/^(?:NULLS\b)/i,/^(?:OFF\b)/i,/^(?:ON\b)/i,/^(?:ONLY\b)/i,/^(?:OF\b)/i,/^(?:OFFSET\b)/i,/^(?:OPEN\b)/i,/^(?:OPTION\b)/i,/^(?:OR\b)/i,/^(?:ORDER\b)/i,/^(?:OUTER\b)/i,/^(?:OVER\b)/i,/^(?:PATH\b)/i,/^(?:PARTITION\b)/i,/^(?:PERCENT\b)/i,/^(?:PIVOT\b)/i,/^(?:PLAN\b)/i,/^(?:PRIMARY\b)/i,/^(?:PRINT\b)/i,/^(?:PRIOR\b)/i,/^(?:QUERY\b)/i,/^(?:READ\b)/i,/^(?:RECORDSET\b)/i,/^(?:REDUCE\b)/i,/^(?:REFERENCES\b)/i,/^(?:REGEXP\b)/i,/^(?:REINDEX\b)/i,/^(?:RELATIVE\b)/i,/^(?:REMOVE\b)/i,/^(?:RENAME\b)/i,/^(?:REPEAT\b)/i,/^(?:REPLACE\b)/i,/^(?:REQUIRE\b)/i,/^(?:RESTORE\b)/i,/^(?:RETURN\b)/i,/^(?:RETURNS\b)/i,/^(?:RIGHT\b)/i,/^(?:ROLLBACK\b)/i,/^(?:ROLLUP\b)/i,/^(?:ROW\b)/i,/^(?:ROWS\b)/i,/^(?:SCHEMA(S)?)/i,/^(?:SEARCH\b)/i,/^(?:SEMI\b)/i,/^(?:SET\b)/i,/^(?:SETS\b)/i,/^(?:SHOW\b)/i,/^(?:SOME\b)/i,/^(?:SOURCE\b)/i,/^(?:STRATEGY\b)/i,/^(?:STORE\b)/i,/^(?:SUM\b)/i,/^(?:TOTAL\b)/i,/^(?:TABLE\b)/i,/^(?:TABLES\b)/i,/^(?:TARGET\b)/i,/^(?:TEMP\b)/i,/^(?:TEMPORARY\b)/i,/^(?:TEXTSTRING\b)/i,/^(?:THEN\b)/i,/^(?:TIMEOUT\b)/i,/^(?:TO\b)/i,/^(?:TOP\b)/i,/^(?:TRAN\b)/i,/^(?:TRANSACTION\b)/i,/^(?:TRIGGER\b)/i,/^(?:TRUE\b)/i,/^(?:TRUNCATE\b)/i,/^(?:UNION\b)/i,/^(?:UNIQUE\b)/i,/^(?:UNPIVOT\b)/i,/^(?:UPDATE\b)/i,/^(?:USE\b)/i,/^(?:USING\b)/i,/^(?:VALUE\b)/i,/^(?:VALUES\b)/i,/^(?:VERTEX\b)/i,/^(?:VIEW\b)/i,/^(?:WHEN\b)/i,/^(?:WHERE\b)/i,/^(?:WHILE\b)/i,/^(?:WITH\b)/i,/^(?:WORK\b)/i,/^(?:(\d*[.])?\d+[eE]\d+)/i,/^(?:(\d*[.])?\d+)/i,/^(?:->)/i,/^(?:#)/i,/^(?:\+)/i,/^(?:-)/i,/^(?:\*)/i,/^(?:\/)/i,/^(?:%)/i,/^(?:!===)/i,/^(?:===)/i,/^(?:!==)/i,/^(?:==)/i,/^(?:>=)/i,/^(?:&)/i,/^(?:\|)/i,/^(?:<<)/i,/^(?:>>)/i,/^(?:>)/i,/^(?:<=)/i,/^(?:<>)/i,/^(?:<)/i,/^(?:=)/i,/^(?:!=)/i,/^(?:\()/i,/^(?:\))/i,/^(?:@)/i,/^(?:\{)/i,/^(?:\})/i,/^(?:\])/i,/^(?::-)/i,/^(?:\?-)/i,/^(?:\.\.)/i,/^(?:\.)/i,/^(?:,)/i,/^(?:::)/i,/^(?::)/i,/^(?:;)/i,/^(?:\$)/i,/^(?:\?)/i,/^(?:!)/i,/^(?:\^)/i,/^(?:~)/i,/^(?:[0-9]*[a-zA-Z_]+[a-zA-Z_0-9]*)/i,/^(?:$)/i,/^(?:.)/i], -conditions: {"INITIAL":{"rules":[0,1,2,3,4,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,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,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,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,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],"inclusive":true}} -}); -return lexer; -})(); -parser.lexer = lexer; -function Parser () { - this.yy = {}; -} -Parser.prototype = parser;parser.Parser = Parser; -return new Parser; -})(); -if (typeof require !== 'undefined' && typeof exports !== 'undefined') { -exports.parser = alasqlparser; -exports.Parser = alasqlparser.Parser; -exports.parse = function () { return alasqlparser.parse.apply(alasqlparser, arguments); }; -exports.main = function commonjsMain (args) { - if (!args[1]) { - console.log('Usage: '+args[0]+' FILE'); - process.exit(1); - } - var source = require('fs').readFileSync(require('path').normalize(args[1]), "utf8"); - return exports.parser.parse(source); -}; -if (typeof module !== 'undefined' && require.main === module) { - exports.main(process.argv.slice(1)); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + // NOTE: as this API uses parse() as a closure, it MUST be set again on every parse() invocation, + // or else your `lexer`, `sharedState`, etc. references will be *wrong*! + this.constructParseErrorInfo = function parser_constructParseErrorInfo(msg, ex, expected, recoverable) { + var pei = { + errStr: msg, + exception: ex, + text: lexer.match, + value: lexer.yytext, + token: this.describeSymbol(symbol) || symbol, + token_id: symbol, + line: lexer.yylineno, + + expected: expected, + recoverable: recoverable, + state: state, + action: action, + new_state: newState, + symbol_stack: stack, + state_stack: sstack, + value_stack: vstack, + + stack_pointer: sp, + yy: sharedState_yy, + lexer: lexer, + parser: this, + + // and make sure the error info doesn't stay due to potential + // ref cycle via userland code manipulations. + // These would otherwise all be memory leak opportunities! + // + // Note that only array and object references are nuked as those + // constitute the set of elements which can produce a cyclic ref. + // The rest of the members is kept intact as they are harmless. + destroy: function destructParseErrorInfo() { + // remove cyclic references added to error info: + // info.yy = null; + // info.lexer = null; + // info.value = null; + // info.value_stack = null; + // ... + var rec = !!this.recoverable; + for (var key in this) { + if (this.hasOwnProperty(key) && typeof key === 'object') { + this[key] = undefined; + } + } + this.recoverable = rec; + } + }; + // track this instance so we can `destroy()` it once we deem it superfluous and ready for garbage collection! + this.__error_infos.push(pei); + return pei; + }; + + // clone some parts of the (possibly enhanced!) errorInfo object + // to give them some persistence. + this.shallowCopyErrorInfo = function parser_shallowCopyErrorInfo(p) { + var rv = shallow_copy(p); + + // remove the large parts which can only cause cyclic references + // and are otherwise available from the parser kernel anyway. + delete rv.sharedState_yy; + delete rv.parser; + delete rv.lexer; + + // lexer.yytext MAY be a complex value object, rather than a simple string/value: + rv.value = shallow_copy(rv.value); + + + + + // the 'expected' set won't be modified, so no need to clone it: + //rv.expected = rv.expected.slice(0); + + //symbol stack is a simple array: + rv.symbol_stack = rv.symbol_stack.slice(0); + // ditto for state stack: + rv.state_stack = rv.state_stack.slice(0); + + + // and the value stack may carry both simple and complex values: + // shallow-copy the latter. + rv.value_stack = rv.value_stack.map(shallow_copy); + + // and we don't bother with the sharedState_yy reference: + //delete rv.yy; + + // now we prepare for tracking the COMBINE actions + // in the error recovery code path: + // + // as we want to keep the maximum error info context, we + // *scan* the state stack to find the first *empty* slot. + // This position will surely be AT OR ABOVE the current + // stack pointer, but we want to keep the 'used but discarded' + // part of the parse stacks *intact* as those slots carry + // error context that may be useful when you want to produce + // very detailed error diagnostic reports. + // + // ### Purpose of each stack pointer: + // + // - stack_pointer: points at the top of the parse stack + // **as it existed at the time of the error + // occurrence, i.e. at the time the stack + // snapshot was taken and copied into the + // errorInfo object.** + // - base_pointer: the bottom of the **empty part** of the + // stack, i.e. **the start of the rest of + // the stack space /above/ the existing + // parse stack. This section will be filled + // by the error recovery process as it + // travels the parse state machine to + // arrive at the resolving error recovery rule.** + // - info_stack_pointer: + // this stack pointer points to the **top of + // the error ecovery tracking stack space**, i.e. + // this stack pointer takes up the role of + // the `stack_pointer` for the error recovery + // process. Any mutations in the **parse stack** + // are **copy-appended** to this part of the + // stack space, keeping the bottom part of the + // stack (the 'snapshot' part where the parse + // state at the time of error occurrence was kept) + // intact. + // - root_failure_pointer: + // copy of the `stack_pointer`... + // + for (var i = rv.stack_pointer; typeof rv.state_stack[i] !== 'undefined'; i++) { + // empty + } + rv.base_pointer = i; + rv.info_stack_pointer = i; + + rv.root_failure_pointer = rv.stack_pointer; + + // track this instance so we can `destroy()` it once we deem it superfluous and ready for garbage collection! + this.__error_recovery_infos.push(rv); + + return rv; + }; + + function getNonTerminalFromCode(symbol) { + var tokenName = self.getSymbolName(symbol); + if (!tokenName) { + tokenName = symbol; + } + return tokenName; + } + + + function stdLex() { + var token = lexer.lex(); + // if token isn't its numeric value, convert + if (typeof token !== 'number') { + token = self.symbols_[token] || token; + } + + return token || EOF; + } + + function fastLex() { + var token = lexer.fastLex(); + // if token isn't its numeric value, convert + if (typeof token !== 'number') { + token = self.symbols_[token] || token; + } + + return token || EOF; + } + + var lex = stdLex; + + + var state, action, r, t; + var yyval = { + $: true, + _$: undefined, + yy: sharedState_yy + }; + var p; + var yyrulelen; + var this_production; + var newState; + var retval = false; + + + // Return the rule stack depth where the nearest error rule can be found. + // Return -1 when no error recovery rule was found. + function locateNearestErrorRecoveryRule(state) { + var stack_probe = sp - 1; + var depth = 0; + + // try to recover from error + while (stack_probe >= 0) { + // check for error recovery rule in this state + + + + + + + + + + var t = table[state][TERROR] || NO_ACTION; + if (t[0]) { + // We need to make sure we're not cycling forever: + // once we hit EOF, even when we `yyerrok()` an error, we must + // prevent the core from running forever, + // e.g. when parent rules are still expecting certain input to + // follow after this, for example when you handle an error inside a set + // of braces which are matched by a parent rule in your grammar. + // + // Hence we require that every error handling/recovery attempt + // *after we've hit EOF* has a diminishing state stack: this means + // we will ultimately have unwound the state stack entirely and thus + // terminate the parse in a controlled fashion even when we have + // very complex error/recovery code interplay in the core + user + // action code blocks: + + + + + + + + + + if (symbol === EOF) { + if (lastEofErrorStateDepth > sp - 1 - depth) { + lastEofErrorStateDepth = sp - 1 - depth; + } else { + + + + + + + + + + --stack_probe; // popStack(1): [symbol, action] + state = sstack[stack_probe]; + ++depth; + continue; + } + } + return depth; + } + if (state === 0 /* $accept rule */ || stack_probe < 1) { + + + + + + + + + + return -1; // No suitable error recovery rule available. + } + --stack_probe; // popStack(1): [symbol, action] + state = sstack[stack_probe]; + ++depth; + } + + + + + + + + + + return -1; // No suitable error recovery rule available. + } + + + try { + this.__reentrant_call_depth++; + + lexer.setInput(input, sharedState_yy); + + // NOTE: we *assume* no lexer pre/post handlers are set up *after* + // this initial `setInput()` call: hence we can now check and decide + // whether we'll go with the standard, slower, lex() API or the + // `fast_lex()` one: + if (typeof lexer.canIUse === 'function') { + var lexerInfo = lexer.canIUse(); + if (lexerInfo.fastLex && typeof fastLex === 'function') { + lex = fastLex; + } + } + + + + vstack[sp] = null; + sstack[sp] = 0; + stack[sp] = 0; + ++sp; + + + + + + if (this.pre_parse) { + this.pre_parse.call(this, sharedState_yy); + } + if (sharedState_yy.pre_parse) { + sharedState_yy.pre_parse.call(this, sharedState_yy); + } + + newState = sstack[sp - 1]; + for (;;) { + // retrieve state number from top of stack + state = newState; // sstack[sp - 1]; + + // use default actions if available + if (this.defaultActions[state]) { + action = 2; + newState = this.defaultActions[state]; + } else { + // The single `==` condition below covers both these `===` comparisons in a single + // operation: + // + // if (symbol === null || typeof symbol === 'undefined') ... + if (!symbol) { + symbol = lex(); + } + // read action for current state and first input + t = (table[state] && table[state][symbol]) || NO_ACTION; + newState = t[1]; + action = t[0]; + + + + + + + + + + + + // handle parse error + if (!action) { + // first see if there's any chance at hitting an error recovery rule: + var error_rule_depth = locateNearestErrorRecoveryRule(state); + var errStr = null; + var errSymbolDescr = (this.describeSymbol(symbol) || symbol); + var expected = this.collect_expected_token_set(state); + + if (!recovering) { + // Report error + if (typeof lexer.yylineno === 'number') { + errStr = 'Parse error on line ' + (lexer.yylineno + 1) + ': '; + } else { + errStr = 'Parse error: '; + } + + if (typeof lexer.showPosition === 'function') { + errStr += '\n' + lexer.showPosition(79 - 10, 10) + '\n'; + } + if (expected.length) { + errStr += 'Expecting ' + expected.join(', ') + ', got unexpected ' + errSymbolDescr; + } else { + errStr += 'Unexpected ' + errSymbolDescr; + } + + p = this.constructParseErrorInfo(errStr, null, expected, (error_rule_depth >= 0)); + + // DO NOT cleanup the old one before we start the new error info track: + // the old one will *linger* on the error stack and stay alive until we + // invoke the parser's cleanup API! + recoveringErrorInfo = this.shallowCopyErrorInfo(p); + + + + + + + + + + + r = this.parseError(p.errStr, p, this.JisonParserError); + if (typeof r !== 'undefined') { + retval = r; + break; + } + + // Protect against overly blunt userland `parseError` code which *sets* + // the `recoverable` flag without properly checking first: + // we always terminate the parse when there's no recovery rule available anyhow! + if (!p.recoverable || error_rule_depth < 0) { + break; + } else { + // TODO: allow parseError callback to edit symbol and or state at the start of the error recovery process... + } + } + + + + + + + + + + + var esp = recoveringErrorInfo.info_stack_pointer; + + // just recovered from another error + if (recovering === ERROR_RECOVERY_TOKEN_DISCARD_COUNT && error_rule_depth >= 0) { + // SHIFT current lookahead and grab another + recoveringErrorInfo.symbol_stack[esp] = symbol; + recoveringErrorInfo.value_stack[esp] = shallow_copy(lexer.yytext); + + recoveringErrorInfo.state_stack[esp] = newState; // push state + ++esp; + + // Pick up the lexer details for the current symbol as that one is not 'look-ahead' any more: + + + + + + preErrorSymbol = 0; + symbol = lex(); + + + + + + + + + + } + + // try to recover from error + if (error_rule_depth < 0) { + ASSERT(recovering > 0, "line 897"); + recoveringErrorInfo.info_stack_pointer = esp; + + // barf a fatal hairball when we're out of look-ahead symbols and none hit a match + // while we are still busy recovering from another error: + var po = this.__error_infos[this.__error_infos.length - 1]; + + // Report error + if (typeof lexer.yylineno === 'number') { + errStr = 'Parsing halted on line ' + (lexer.yylineno + 1) + ' while starting to recover from another error'; + } else { + errStr = 'Parsing halted while starting to recover from another error'; + } + + if (po) { + errStr += ' -- previous error which resulted in this fatal result: ' + po.errStr; + } else { + errStr += ': '; + } + + if (typeof lexer.showPosition === 'function') { + errStr += '\n' + lexer.showPosition(79 - 10, 10) + '\n'; + } + if (expected.length) { + errStr += 'Expecting ' + expected.join(', ') + ', got unexpected ' + errSymbolDescr; + } else { + errStr += 'Unexpected ' + errSymbolDescr; + } + + p = this.constructParseErrorInfo(errStr, null, expected, false); + if (po) { + p.extra_error_attributes = po; + } + + r = this.parseError(p.errStr, p, this.JisonParserError); + if (typeof r !== 'undefined') { + retval = r; + } + break; + } + + preErrorSymbol = (symbol === TERROR ? 0 : symbol); // save the lookahead token + symbol = TERROR; // insert generic error symbol as new lookahead + + const EXTRA_STACK_SAMPLE_DEPTH = 3; + + // REDUCE/COMBINE the pushed terms/tokens to a new ERROR token: + recoveringErrorInfo.symbol_stack[esp] = preErrorSymbol; + if (errStr) { + recoveringErrorInfo.value_stack[esp] = { + yytext: shallow_copy(lexer.yytext), + errorRuleDepth: error_rule_depth, + errStr: errStr, + errorSymbolDescr: errSymbolDescr, + expectedStr: expected, + stackSampleLength: error_rule_depth + EXTRA_STACK_SAMPLE_DEPTH + }; + + + + + + + + + + } else { + recoveringErrorInfo.value_stack[esp] = { + yytext: shallow_copy(lexer.yytext), + errorRuleDepth: error_rule_depth, + stackSampleLength: error_rule_depth + EXTRA_STACK_SAMPLE_DEPTH + }; + } + + recoveringErrorInfo.state_stack[esp] = newState || NO_ACTION[1]; + + ++esp; + recoveringErrorInfo.info_stack_pointer = esp; + + yyval.$ = recoveringErrorInfo; + + + yyrulelen = error_rule_depth; + + + + + + + + + + r = this.performAction.call(yyval, NO_ACTION[1], sp - 1, vstack); + + if (typeof r !== 'undefined') { + retval = r; + break; + } + + // pop off stack + sp -= yyrulelen; + + // and move the top entries + discarded part of the parse stacks onto the error info stack: + for (var idx = sp - EXTRA_STACK_SAMPLE_DEPTH, top = idx + yyrulelen; idx < top; idx++, esp++) { + recoveringErrorInfo.symbol_stack[esp] = stack[idx]; + recoveringErrorInfo.value_stack[esp] = shallow_copy(vstack[idx]); + + recoveringErrorInfo.state_stack[esp] = sstack[idx]; + } + + recoveringErrorInfo.symbol_stack[esp] = TERROR; + recoveringErrorInfo.value_stack[esp] = shallow_copy(yyval.$); + + + // goto new state = table[STATE][NONTERMINAL] + newState = sstack[sp - 1]; + + if (this.defaultActions[newState]) { + recoveringErrorInfo.state_stack[esp] = this.defaultActions[newState]; + } else { + t = (table[newState] && table[newState][symbol]) || NO_ACTION; + recoveringErrorInfo.state_stack[esp] = t[1]; + } + + ++esp; + recoveringErrorInfo.info_stack_pointer = esp; + + // allow N (default: 3) real symbols to be shifted before reporting a new error + recovering = ERROR_RECOVERY_TOKEN_DISCARD_COUNT; + + + + + + + + + + + // Now duplicate the standard parse machine here, at least its initial + // couple of rounds until the TERROR symbol is **pushed onto the parse stack**, + // as we wish to push something special then! + // + // Run the state machine in this copy of the parser state machine + // until we *either* consume the error symbol (and its related information) + // *or* we run into another error while recovering from this one + // *or* we execute a `reduce` action which outputs a final parse + // result (yes, that MAY happen!). + // + // We stay in this secondary parse loop until we have completed + // the *error recovery phase* as the main parse loop (further below) + // is optimized for regular parse operation and DOES NOT cope with + // error recovery *at all*. + // + // We call the secondary parse loop just below the "slow parse loop", + // while the main parse loop, which is an almost-duplicate of this one, + // yet optimized for regular parse operation, is called the "fast + // parse loop". + // + // Compare this to `bison` & (vanilla) `jison`, both of which have + // only a single parse loop, which handles everything. Our goal is + // to eke out every drop of performance in the main parse loop... + + ASSERT(recoveringErrorInfo, "line 1049"); + ASSERT(symbol === TERROR, "line 1050"); + ASSERT(!action, "line 1051"); + var errorSymbolFromParser = true; + for (;;) { + // retrieve state number from top of stack + state = newState; // sstack[sp - 1]; + + // use default actions if available + if (this.defaultActions[state]) { + action = 2; + newState = this.defaultActions[state]; + } else { + // The single `==` condition below covers both these `===` comparisons in a single + // operation: + // + // if (symbol === null || typeof symbol === 'undefined') ... + if (!symbol) { + symbol = lex(); + // **Warning: Edge Case**: the *lexer* may produce + // TERROR tokens of its own volition: *those* TERROR + // tokens should be treated like *regular tokens* + // i.e. tokens which have a lexer-provided `yyvalue` + + errorSymbolFromParser = false; + } + // read action for current state and first input + t = (table[state] && table[state][symbol]) || NO_ACTION; + newState = t[1]; + action = t[0]; + + + + + + + + + + + // encountered another parse error? If so, break out to main loop + // and take it from there! + if (!action) { + + + + + + + + + + + ASSERT(recoveringErrorInfo, "line 1087"); + + // Prep state variables so that upon breaking out of + // this "slow parse loop" and hitting the `continue;` + // statement in the outer "fast parse loop" we redo + // the exact same state table lookup as the one above + // so that the outer=main loop will also correctly + // detect the 'parse error' state (`!action`) we have + // just encountered above. + newState = state; + break; + } + } + + + + + + + + + + + switch (action) { + // catch misc. parse failures: + default: + // this shouldn't happen, unless resolve defaults are off + // + // SILENTLY SIGNAL that the outer "fast parse loop" should + // take care of this internal error condition: + // prevent useless code duplication now/here. + break; + + // shift: + case 1: + stack[sp] = symbol; + // ### Note/Warning ### + // + // The *lexer* may also produce TERROR tokens on its own, + // so we specifically test for the TERROR we did set up + // in the error recovery logic further above! + if (symbol === TERROR && errorSymbolFromParser) { + // Push a special value onto the stack when we're + // shifting the `error` symbol that is related to the + // error we're recovering from. + ASSERT(recoveringErrorInfo, "line 1131"); + vstack[sp] = recoveringErrorInfo; + } else { + ASSERT(symbol !== 0, "line 1135"); + ASSERT(preErrorSymbol === 0, "line 1136"); + vstack[sp] = lexer.yytext; + + } + sstack[sp] = newState; // push state + + ++sp; + symbol = 0; + // **Warning: Edge Case**: the *lexer* may have produced + // TERROR tokens of its own volition: *those* TERROR + // tokens should be treated like *regular tokens* + // i.e. tokens which have a lexer-provided `yyvalue` + + errorSymbolFromParser = false; + if (!preErrorSymbol) { // normal execution / no error + // Pick up the lexer details for the current symbol as that one is not 'look-ahead' any more: + + + + + + if (recovering > 0) { + recovering--; + + + + + + + + + + } + } else { + // error just occurred, resume old lookahead f/ before error, *unless* that drops us straight back into error mode: + ASSERT(recovering > 0, "line 1163"); + symbol = preErrorSymbol; + preErrorSymbol = 0; + + + + + + + + + + // read action for current state and first input + t = (table[newState] && table[newState][symbol]) || NO_ACTION; + if (!t[0] || symbol === TERROR) { + // forget about that symbol and move forward: this wasn't a 'forgot to insert' error type where + // (simple) stuff might have been missing before the token which caused the error we're + // recovering from now... + // + // Also check if the LookAhead symbol isn't the ERROR token we set as part of the error + // recovery, for then this we would we idling (cycling) on the error forever. + // Yes, this does not take into account the possibility that the *lexer* may have + // produced a *new* TERROR token all by itself, but that would be a very peculiar grammar! + + + + + + + + + + symbol = 0; + } + } + + // once we have pushed the special ERROR token value, + // we REMAIN in this inner, "slow parse loop" until + // the entire error recovery phase has completed. + // + // ### Note About Edge Case ### + // + // Userland action code MAY already have 'reset' the + // error recovery phase marker `recovering` to ZERO(0) + // while the error symbol hasn't been shifted onto + // the stack yet. Hence we only exit this "slow parse loop" + // when *both* conditions are met! + ASSERT(preErrorSymbol === 0, "line 1194"); + if (recovering === 0) { + break; + } + continue; + + // reduce: + case 2: + this_production = this.productions_[newState - 1]; // `this.productions_[]` is zero-based indexed while states start from 1 upwards... + yyrulelen = this_production[1]; + + + + + + + + + + + r = this.performAction.call(yyval, newState, sp - 1, vstack); + + if (typeof r !== 'undefined') { + // signal end of error recovery loop AND end of outer parse loop + action = 3; + sp = -2; // magic number: signal outer "fast parse loop" ACCEPT state that we already have a properly set up `retval` parser return value. + retval = r; + break; + } + + // pop off stack + sp -= yyrulelen; + + // don't overwrite the `symbol` variable: use a local var to speed things up: + var ntsymbol = this_production[0]; // push nonterminal (reduce) + stack[sp] = ntsymbol; + vstack[sp] = yyval.$; + + // goto new state = table[STATE][NONTERMINAL] + newState = table[sstack[sp - 1]][ntsymbol]; + sstack[sp] = newState; + ++sp; + + + + + + + + + + continue; + + // accept: + case 3: + retval = true; + // Return the `$accept` rule's `$$` result, if available. + // + // Also note that JISON always adds this top-most `$accept` rule (with implicit, + // default, action): + // + // $accept: $end + // %{ $$ = $1; @$ = @1; %} + // + // which, combined with the parse kernel's `$accept` state behaviour coded below, + // will produce the `$$` value output of the rule as the parse result, + // IFF that result is *not* `undefined`. (See also the parser kernel code.) + // + // In code: + // + // %{ + // @$ = @1; // if location tracking support is included + // if (typeof $1 !== 'undefined') + // return $1; + // else + // return true; // the default parse result if the rule actions don't produce anything + // %} + sp--; + if (sp >= 0 && typeof vstack[sp] !== 'undefined') { + retval = vstack[sp]; + } + sp = -2; // magic number: signal outer "fast parse loop" ACCEPT state that we already have a properly set up `retval` parser return value. + break; + } + + // break out of loop: we accept or fail with error + break; + } + + // should we also break out of the regular/outer parse loop, + // i.e. did the parser already produce a parse result in here?! + // *or* did we hit an unsupported parse state, to be handled + // in the `switch/default` code further below? + ASSERT(action !== 2, "line 1272"); + if (!action || action === 1) { + continue; + } + } + + + } + + + + + + + + + + + switch (action) { + // catch misc. parse failures: + default: + // this shouldn't happen, unless resolve defaults are off + if (action instanceof Array) { + p = this.constructParseErrorInfo('Parse Error: multiple actions possible at state: ' + state + ', token: ' + symbol, null, null, false); + r = this.parseError(p.errStr, p, this.JisonParserError); + if (typeof r !== 'undefined') { + retval = r; + } + break; + } + // Another case of better safe than sorry: in case state transitions come out of another error recovery process + // or a buggy LUT (LookUp Table): + p = this.constructParseErrorInfo('Parsing halted. No viable error recovery approach available due to internal system failure.', null, null, false); + r = this.parseError(p.errStr, p, this.JisonParserError); + if (typeof r !== 'undefined') { + retval = r; + } + break; + + // shift: + case 1: + stack[sp] = symbol; + vstack[sp] = lexer.yytext; + + sstack[sp] = newState; // push state + + ++sp; + symbol = 0; + + ASSERT(preErrorSymbol === 0, "line 1352"); // normal execution / no error + ASSERT(recovering === 0, "line 1353"); // normal execution / no error + + // Pick up the lexer details for the current symbol as that one is not 'look-ahead' any more: + + + + + continue; + + // reduce: + case 2: + ASSERT(preErrorSymbol === 0, "line 1364"); // normal execution / no error + ASSERT(recovering === 0, "line 1365"); // normal execution / no error + + this_production = this.productions_[newState - 1]; // `this.productions_[]` is zero-based indexed while states start from 1 upwards... + yyrulelen = this_production[1]; + + + + + + + + + + + r = this.performAction.call(yyval, newState, sp - 1, vstack); + + if (typeof r !== 'undefined') { + retval = r; + break; + } + + // pop off stack + sp -= yyrulelen; + + // don't overwrite the `symbol` variable: use a local var to speed things up: + var ntsymbol = this_production[0]; // push nonterminal (reduce) + stack[sp] = ntsymbol; + vstack[sp] = yyval.$; + + // goto new state = table[STATE][NONTERMINAL] + newState = table[sstack[sp - 1]][ntsymbol]; + sstack[sp] = newState; + ++sp; + + + + + + + + + + continue; + + // accept: + case 3: + if (sp !== -2) { + retval = true; + // Return the `$accept` rule's `$$` result, if available. + // + // Also note that JISON always adds this top-most `$accept` rule (with implicit, + // default, action): + // + // $accept: $end + // %{ $$ = $1; @$ = @1; %} + // + // which, combined with the parse kernel's `$accept` state behaviour coded below, + // will produce the `$$` value output of the rule as the parse result, + // IFF that result is *not* `undefined`. (See also the parser kernel code.) + // + // In code: + // + // %{ + // @$ = @1; // if location tracking support is included + // if (typeof $1 !== 'undefined') + // return $1; + // else + // return true; // the default parse result if the rule actions don't produce anything + // %} + sp--; + if (typeof vstack[sp] !== 'undefined') { + retval = vstack[sp]; + } + } + break; + } + + // break out of loop: we accept or fail with error + break; + } + } catch (ex) { + // report exceptions through the parseError callback too, but keep the exception intact + // if it is a known parser or lexer error which has been thrown by parseError() already: + if (ex instanceof this.JisonParserError) { + throw ex; + } + else if (lexer && typeof lexer.JisonLexerError === 'function' && ex instanceof lexer.JisonLexerError) { + throw ex; + } + + p = this.constructParseErrorInfo('Parsing aborted due to exception.', ex, null, false); + retval = false; + r = this.parseError(p.errStr, p, this.JisonParserError); + if (typeof r !== 'undefined') { + retval = r; + } + } finally { + retval = this.cleanupAfterParse(retval, true, true); + this.__reentrant_call_depth--; + } // /finally + + return retval; +} +}; +parser.originalParseError = parser.parseError; +parser.originalQuoteName = parser.quoteName; +/* lexer generated by jison-lex 0.6.1-215 */ + +/* + * Returns a Lexer object of the following structure: + * + * Lexer: { + * yy: {} The so-called "shared state" or rather the *source* of it; + * the real "shared state" `yy` passed around to + * the rule actions, etc. is a direct reference! + * + * This "shared context" object was passed to the lexer by way of + * the `lexer.setInput(str, yy)` API before you may use it. + * + * This "shared context" object is passed to the lexer action code in `performAction()` + * so userland code in the lexer actions may communicate with the outside world + * and/or other lexer rules' actions in more or less complex ways. + * + * } + * + * Lexer.prototype: { + * EOF: 1, + * ERROR: 2, + * + * yy: The overall "shared context" object reference. + * + * JisonLexerError: function(msg, hash), + * + * performAction: function lexer__performAction(yy, yyrulenumber, YY_START), + * + * The function parameters and `this` have the following value/meaning: + * - `this` : reference to the `lexer` instance. + * `yy_` is an alias for `this` lexer instance reference used internally. + * + * - `yy` : a reference to the `yy` "shared state" object which was passed to the lexer + * by way of the `lexer.setInput(str, yy)` API before. + * + * Note: + * The extra arguments you specified in the `%parse-param` statement in your + * **parser** grammar definition file are passed to the lexer via this object + * reference as member variables. + * + * - `yyrulenumber` : index of the matched lexer rule (regex), used internally. + * + * - `YY_START`: the current lexer "start condition" state. + * + * parseError: function(str, hash, ExceptionClass), + * + * constructLexErrorInfo: function(error_message, is_recoverable), + * Helper function. + * Produces a new errorInfo 'hash object' which can be passed into `parseError()`. + * See it's use in this lexer kernel in many places; example usage: + * + * var infoObj = lexer.constructParseErrorInfo('fail!', true); + * var retVal = lexer.parseError(infoObj.errStr, infoObj, lexer.JisonLexerError); + * + * options: { ... lexer %options ... }, + * + * lex: function(), + * Produce one token of lexed input, which was passed in earlier via the `lexer.setInput()` API. + * You MAY use the additional `args...` parameters as per `%parse-param` spec of the **lexer** grammar: + * these extra `args...` are added verbatim to the `yy` object reference as member variables. + * + * WARNING: + * Lexer's additional `args...` parameters (via lexer's `%parse-param`) MAY conflict with + * any attributes already added to `yy` by the **parser** or the jison run-time; + * when such a collision is detected an exception is thrown to prevent the generated run-time + * from silently accepting this confusing and potentially hazardous situation! + * + * cleanupAfterLex: function(do_not_nuke_errorinfos), + * Helper function. + * + * This helper API is invoked when the **parse process** has completed: it is the responsibility + * of the **parser** (or the calling userland code) to invoke this method once cleanup is desired. + * + * This helper may be invoked by user code to ensure the internal lexer gets properly garbage collected. + * + * setInput: function(input, [yy]), + * + * + * input: function(), + * + * + * unput: function(str), + * + * + * more: function(), + * + * + * reject: function(), + * + * + * less: function(n), + * + * + * pastInput: function(n), + * + * + * upcomingInput: function(n), + * + * + * showPosition: function(), + * + * + * test_match: function(regex_match_array, rule_index), + * + * + * next: function(), + * + * + * begin: function(condition), + * + * + * pushState: function(condition), + * + * + * popState: function(), + * + * + * topState: function(), + * + * + * _currentRules: function(), + * + * + * stateStackSize: function(), + * + * + * performAction: function(yy, yy_, yyrulenumber, YY_START), + * + * + * rules: [...], + * + * + * conditions: {associative list: name ==> set}, + * } + * + * + * token location info (`yylloc`): { + * first_line: n, + * last_line: n, + * first_column: n, + * last_column: n, + * range: [start_number, end_number] + * (where the numbers are indexes into the input string, zero-based) + * } + * + * --- + * + * The `parseError` function receives a 'hash' object with these members for lexer errors: + * + * { + * text: (matched text) + * token: (the produced terminal token, if any) + * token_id: (the produced terminal token numeric ID, if any) + * line: (yylineno) + * loc: (yylloc) + * recoverable: (boolean: TRUE when the parser MAY have an error recovery rule + * available for this particular error) + * yy: (object: the current parser internal "shared state" `yy` + * as is also available in the rule actions; this can be used, + * for instance, for advanced error analysis and reporting) + * lexer: (reference to the current lexer instance used by the parser) + * } + * + * while `this` will reference the current lexer instance. + * + * When `parseError` is invoked by the lexer, the default implementation will + * attempt to invoke `yy.parser.parseError()`; when this callback is not provided + * it will try to invoke `yy.parseError()` instead. When that callback is also not + * provided, a `JisonLexerError` exception will be thrown containing the error + * message and `hash`, as constructed by the `constructLexErrorInfo()` API. + * + * Note that the lexer's `JisonLexerError` error class is passed via the + * `ExceptionClass` argument, which is invoked to construct the exception + * instance to be thrown, so technically `parseError` will throw the object + * produced by the `new ExceptionClass(str, hash)` JavaScript expression. + * + * --- + * + * You can specify lexer options by setting / modifying the `.options` object of your Lexer instance. + * These options are available: + * + * (Options are permanent.) + * + * yy: { + * parseError: function(str, hash, ExceptionClass) + * optional: overrides the default `parseError` function. + * } + * + * lexer.options: { + * pre_lex: function() + * optional: is invoked before the lexer is invoked to produce another token. + * `this` refers to the Lexer object. + * post_lex: function(token) { return token; } + * optional: is invoked when the lexer has produced a token `token`; + * this function can override the returned token value by returning another. + * When it does not return any (truthy) value, the lexer will return + * the original `token`. + * `this` refers to the Lexer object. + * + * WARNING: the next set of options are not meant to be changed. They echo the abilities of + * the lexer as per when it was compiled! + * + * ranges: boolean + * optional: `true` ==> token location info will include a .range[] member. + * flex: boolean + * optional: `true` ==> flex-like lexing behaviour where the rules are tested + * exhaustively to find the longest match. + * backtrack_lexer: boolean + * optional: `true` ==> lexer regexes are tested in order and for invoked; + * the lexer terminates the scan when a token is returned by the action code. + * xregexp: boolean + * optional: `true` ==> lexer rule regexes are "extended regex format" requiring the + * `XRegExp` library. When this %option has not been specified at compile time, all lexer + * rule regexes have been written as standard JavaScript RegExp expressions. + * } + */ + + +var lexer = function() { + /** + * See also: + * http://stackoverflow.com/questions/1382107/whats-a-good-way-to-extend-error-in-javascript/#35881508 + * but we keep the prototype.constructor and prototype.name assignment lines too for compatibility + * with userland code which might access the derived class in a 'classic' way. + * + * @public + * @constructor + * @nocollapse + */ + function JisonLexerError(msg, hash) { + Object.defineProperty(this, 'name', { + enumerable: false, + writable: false, + value: 'JisonLexerError' + }); + + if (msg == null) + msg = '???'; + + Object.defineProperty(this, 'message', { + enumerable: false, + writable: true, + value: msg + }); + + this.hash = hash; + var stacktrace; + + if (hash && hash.exception instanceof Error) { + var ex2 = hash.exception; + this.message = ex2.message || msg; + stacktrace = ex2.stack; + } + + if (!stacktrace) { + if (Error.hasOwnProperty('captureStackTrace')) { + // V8 + Error.captureStackTrace(this, this.constructor); + } else { + stacktrace = new Error(msg).stack; + } + } + + if (stacktrace) { + Object.defineProperty(this, 'stack', { + enumerable: false, + writable: false, + value: stacktrace + }); + } + } + + if (typeof Object.setPrototypeOf === 'function') { + Object.setPrototypeOf(JisonLexerError.prototype, Error.prototype); + } else { + JisonLexerError.prototype = Object.create(Error.prototype); + } + + JisonLexerError.prototype.constructor = JisonLexerError; + JisonLexerError.prototype.name = 'JisonLexerError'; + + var lexer = { + +// Code Generator Information Report +// --------------------------------- +// +// Options: +// +// backtracking: .................... false +// location.ranges: ................. false +// location line+column tracking: ... true +// +// +// Forwarded Parser Analysis flags: +// +// uses yyleng: ..................... false +// uses yylineno: ................... false +// uses yytext: ..................... false +// uses yylloc: ..................... false +// uses lexer values: ............... true / true +// location tracking: ............... false +// location assignment: ............. false +// +// +// Lexer Analysis flags: +// +// uses yyleng: ..................... ??? +// uses yylineno: ................... ??? +// uses yytext: ..................... ??? +// uses yylloc: ..................... ??? +// uses ParseError API: ............. ??? +// uses yyerror: .................... ??? +// uses location tracking & editing: ??? +// uses more() API: ................. ??? +// uses unput() API: ................ ??? +// uses reject() API: ............... ??? +// uses less() API: ................. ??? +// uses display APIs pastInput(), upcomingInput(), showPosition(): +// ............................. ??? +// uses describeYYLLOC() API: ....... ??? +// +// --------- END OF REPORT ----------- + +EOF: 1, + ERROR: 2, + + // JisonLexerError: JisonLexerError, /// <-- injected by the code generator + + // options: {}, /// <-- injected by the code generator + + // yy: ..., /// <-- injected by setInput() + + __currentRuleSet__: null, /// INTERNAL USE ONLY: internal rule set cache for the current lexer state + + __error_infos: [], /// INTERNAL USE ONLY: the set of lexErrorInfo objects created since the last cleanup + __decompressed: false, /// INTERNAL USE ONLY: mark whether the lexer instance has been 'unfolded' completely and is now ready for use + done: false, /// INTERNAL USE ONLY + _backtrack: false, /// INTERNAL USE ONLY + _input: '', /// INTERNAL USE ONLY + _more: false, /// INTERNAL USE ONLY + _signaled_error_token: false, /// INTERNAL USE ONLY + conditionStack: [], /// INTERNAL USE ONLY; managed via `pushState()`, `popState()`, `topState()` and `stateStackSize()` + match: '', /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: tracks input which has been matched so far for the lexer token under construction. `match` is identical to `yytext` except that this one still contains the matched input string after `lexer.performAction()` has been invoked, where userland code MAY have changed/replaced the `yytext` value entirely! + matched: '', /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: tracks entire input which has been matched so far + matches: false, /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: tracks RE match result for last (successful) match attempt + yytext: '', /// ADVANCED USE ONLY: tracks input which has been matched so far for the lexer token under construction; this value is transferred to the parser as the 'token value' when the parser consumes the lexer token produced through a call to the `lex()` API. + offset: 0, /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: tracks the 'cursor position' in the input string, i.e. the number of characters matched so far + yyleng: 0, /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: length of matched input for the token under construction (`yytext`) + yylineno: 0, /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: 'line number' at which the token under construction is located + yylloc: null, /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: tracks location info (lines + columns) for the token under construction + + /** + * INTERNAL USE: construct a suitable error info hash object instance for `parseError`. + * + * @public + * @this {RegExpLexer} + */ + constructLexErrorInfo: function lexer_constructLexErrorInfo(msg, recoverable, show_input_position) { + msg = '' + msg; + + // heuristic to determine if the error message already contains a (partial) source code dump + // as produced by either `showPosition()` or `prettyPrintRange()`: + if (show_input_position == undefined) { + show_input_position = !(msg.indexOf('\n') > 0 && msg.indexOf('^') > 0); + } + + if (this.yylloc && show_input_position) { + if (typeof this.prettyPrintRange === 'function') { + var pretty_src = this.prettyPrintRange(this.yylloc); + + if (!/\n\s*$/.test(msg)) { + msg += '\n'; + } + + msg += '\n Erroneous area:\n' + this.prettyPrintRange(this.yylloc); + } else if (typeof this.showPosition === 'function') { + var pos_str = this.showPosition(); + + if (pos_str) { + if (msg.length && msg[msg.length - 1] !== '\n' && pos_str[0] !== '\n') { + msg += '\n' + pos_str; + } else { + msg += pos_str; + } + } + } + } + + /** @constructor */ + var pei = { + errStr: msg, + recoverable: !!recoverable, + text: this.match, // This one MAY be empty; userland code should use the `upcomingInput` API to obtain more text which follows the 'lexer cursor position'... + token: null, + line: this.yylineno, + loc: this.yylloc, + yy: this.yy, + lexer: this, + + /** + * and make sure the error info doesn't stay due to potential + * ref cycle via userland code manipulations. + * These would otherwise all be memory leak opportunities! + * + * Note that only array and object references are nuked as those + * constitute the set of elements which can produce a cyclic ref. + * The rest of the members is kept intact as they are harmless. + * + * @public + * @this {LexErrorInfo} + */ + destroy: function destructLexErrorInfo() { + // remove cyclic references added to error info: + // info.yy = null; + // info.lexer = null; + // ... + var rec = !!this.recoverable; + + for (var key in this) { + if (this.hasOwnProperty(key) && typeof key === 'object') { + this[key] = undefined; + } + } + + this.recoverable = rec; + } + }; + + // track this instance so we can `destroy()` it once we deem it superfluous and ready for garbage collection! + this.__error_infos.push(pei); + + return pei; + }, + + /** + * handler which is invoked when a lexer error occurs. + * + * @public + * @this {RegExpLexer} + */ + parseError: function lexer_parseError(str, hash, ExceptionClass) { + if (!ExceptionClass) { + ExceptionClass = this.JisonLexerError; + } + + if (this.yy) { + if (this.yy.parser && typeof this.yy.parser.parseError === 'function') { + return this.yy.parser.parseError.call(this, str, hash, ExceptionClass) || this.ERROR; + } else if (typeof this.yy.parseError === 'function') { + return this.yy.parseError.call(this, str, hash, ExceptionClass) || this.ERROR; + } + } + + throw new ExceptionClass(str, hash); + }, + + /** + * method which implements `yyerror(str, ...args)` functionality for use inside lexer actions. + * + * @public + * @this {RegExpLexer} + */ + yyerror: function yyError(str /*, ...args */) { + var lineno_msg = ''; + + if (this.yylloc) { + lineno_msg = ' on line ' + (this.yylineno + 1); + } + + var p = this.constructLexErrorInfo( + 'Lexical error' + lineno_msg + ': ' + str, + this.options.lexerErrorsAreRecoverable + ); + + // Add any extra args to the hash under the name `extra_error_attributes`: + var args = Array.prototype.slice.call(arguments, 1); + + if (args.length) { + p.extra_error_attributes = args; + } + + return this.parseError(p.errStr, p, this.JisonLexerError) || this.ERROR; + }, + + /** + * final cleanup function for when we have completed lexing the input; + * make it an API so that external code can use this one once userland + * code has decided it's time to destroy any lingering lexer error + * hash object instances and the like: this function helps to clean + * up these constructs, which *may* carry cyclic references which would + * otherwise prevent the instances from being properly and timely + * garbage-collected, i.e. this function helps prevent memory leaks! + * + * @public + * @this {RegExpLexer} + */ + cleanupAfterLex: function lexer_cleanupAfterLex(do_not_nuke_errorinfos) { + // prevent lingering circular references from causing memory leaks: + this.setInput('', {}); + + // nuke the error hash info instances created during this run. + // Userland code must COPY any data/references + // in the error hash instance(s) it is more permanently interested in. + if (!do_not_nuke_errorinfos) { + for (var i = this.__error_infos.length - 1; i >= 0; i--) { + var el = this.__error_infos[i]; + + if (el && typeof el.destroy === 'function') { + el.destroy(); + } + } + + this.__error_infos.length = 0; + } + + return this; + }, + + /** + * clear the lexer token context; intended for internal use only + * + * @public + * @this {RegExpLexer} + */ + clear: function lexer_clear() { + this.yytext = ''; + this.yyleng = 0; + this.match = ''; + + // - DO NOT reset `this.matched` + this.matches = false; + + this._more = false; + this._backtrack = false; + var col = (this.yylloc ? this.yylloc.last_column : 0); + + this.yylloc = { + first_line: this.yylineno + 1, + first_column: col, + last_line: this.yylineno + 1, + last_column: col, + range: [this.offset, this.offset] + }; + }, + + /** + * resets the lexer, sets new input + * + * @public + * @this {RegExpLexer} + */ + setInput: function lexer_setInput(input, yy) { + this.yy = yy || this.yy || {}; + + // also check if we've fully initialized the lexer instance, + // including expansion work to be done to go from a loaded + // lexer to a usable lexer: + if (!this.__decompressed) { + // step 1: decompress the regex list: + var rules = this.rules; + + for (var i = 0, len = rules.length; i < len; i++) { + var rule_re = rules[i]; + + // compression: is the RE an xref to another RE slot in the rules[] table? + if (typeof rule_re === 'number') { + rules[i] = rules[rule_re]; + } + } + + // step 2: unfold the conditions[] set to make these ready for use: + var conditions = this.conditions; + + for (var k in conditions) { + var spec = conditions[k]; + var rule_ids = spec.rules; + var len = rule_ids.length; + var rule_regexes = new Array(len + 1); // slot 0 is unused; we use a 1-based index approach here to keep the hottest code in `lexer_next()` fast and simple! + var rule_new_ids = new Array(len + 1); + + for (var i = 0; i < len; i++) { + var idx = rule_ids[i]; + var rule_re = rules[idx]; + rule_regexes[i + 1] = rule_re; + rule_new_ids[i + 1] = idx; + } + + spec.rules = rule_new_ids; + spec.__rule_regexes = rule_regexes; + spec.__rule_count = len; + } + + this.__decompressed = true; + } + + this._input = input || ''; + this.clear(); + this._signaled_error_token = false; + this.done = false; + this.yylineno = 0; + this.matched = ''; + this.conditionStack = ['INITIAL']; + this.__currentRuleSet__ = null; + + this.yylloc = { + first_line: 1, + first_column: 0, + last_line: 1, + last_column: 0, + range: [0, 0] + }; + + this.offset = 0; + return this; + }, + + /** + * edit the remaining input via user-specified callback. + * This can be used to forward-adjust the input-to-parse, + * e.g. inserting macro expansions and alike in the + * input which has yet to be lexed. + * The behaviour of this API contrasts the `unput()` et al + * APIs as those act on the *consumed* input, while this + * one allows one to manipulate the future, without impacting + * the current `yyloc` cursor location or any history. + * + * Use this API to help implement C-preprocessor-like + * `#include` statements, etc. + * + * The provided callback must be synchronous and is + * expected to return the edited input (string). + * + * The `cpsArg` argument value is passed to the callback + * as-is. + * + * `callback` interface: + * `function callback(input, cpsArg)` + * + * - `input` will carry the remaining-input-to-lex string + * from the lexer. + * - `cpsArg` is `cpsArg` passed into this API. + * + * The `this` reference for the callback will be set to + * reference this lexer instance so that userland code + * in the callback can easily and quickly access any lexer + * API. + * + * When the callback returns a non-string-type falsey value, + * we assume the callback did not edit the input and we + * will using the input as-is. + * + * When the callback returns a non-string-type value, it + * is converted to a string for lexing via the `"" + retval` + * operation. (See also why: http://2ality.com/2012/03/converting-to-string.html + * -- that way any returned object's `toValue()` and `toString()` + * methods will be invoked in a proper/desirable order.) + * + * @public + * @this {RegExpLexer} + */ + editRemainingInput: function lexer_editRemainingInput(callback, cpsArg) { + var rv = callback.call(this, this._input, cpsArg); + + if (typeof rv !== 'string') { + if (rv) { + this._input = '' + rv; + } + // else: keep `this._input` as is. + } else { + this._input = rv; + } + + return this; + }, + + /** + * consumes and returns one char from the input + * + * @public + * @this {RegExpLexer} + */ + input: function lexer_input() { + if (!this._input) { + //this.done = true; -- don't set `done` as we want the lex()/next() API to be able to produce one custom EOF token match after this anyhow. (lexer can match special <> tokens and perform user action code for a <> match, but only does so *once*) + return null; + } + + var ch = this._input[0]; + this.yytext += ch; + this.yyleng++; + this.offset++; + this.match += ch; + this.matched += ch; + + // Count the linenumber up when we hit the LF (or a stand-alone CR). + // On CRLF, the linenumber is incremented when you fetch the CR or the CRLF combo + // and we advance immediately past the LF as well, returning both together as if + // it was all a single 'character' only. + var slice_len = 1; + + var lines = false; + + if (ch === '\n') { + lines = true; + } else if (ch === '\r') { + lines = true; + var ch2 = this._input[1]; + + if (ch2 === '\n') { + slice_len++; + ch += ch2; + this.yytext += ch2; + this.yyleng++; + this.offset++; + this.match += ch2; + this.matched += ch2; + this.yylloc.range[1]++; + } + } + + if (lines) { + this.yylineno++; + this.yylloc.last_line++; + this.yylloc.last_column = 0; + } else { + this.yylloc.last_column++; + } + + this.yylloc.range[1]++; + this._input = this._input.slice(slice_len); + return ch; + }, + + /** + * unshifts one char (or an entire string) into the input + * + * @public + * @this {RegExpLexer} + */ + unput: function lexer_unput(ch) { + var len = ch.length; + var lines = ch.split(/(?:\r\n?|\n)/g); + this._input = ch + this._input; + this.yytext = this.yytext.substr(0, this.yytext.length - len); + this.yyleng = this.yytext.length; + this.offset -= len; + this.match = this.match.substr(0, this.match.length - len); + this.matched = this.matched.substr(0, this.matched.length - len); + + if (lines.length > 1) { + this.yylineno -= lines.length - 1; + this.yylloc.last_line = this.yylineno + 1; + + // Get last entirely matched line into the `pre_lines[]` array's + // last index slot; we don't mind when other previously + // matched lines end up in the array too. + var pre = this.match; + + var pre_lines = pre.split(/(?:\r\n?|\n)/g); + + if (pre_lines.length === 1) { + pre = this.matched; + pre_lines = pre.split(/(?:\r\n?|\n)/g); + } + + this.yylloc.last_column = pre_lines[pre_lines.length - 1].length; + } else { + this.yylloc.last_column -= len; + } + + this.yylloc.range[1] = this.yylloc.range[0] + this.yyleng; + this.done = false; + return this; + }, + + /** + * cache matched text and append it on next action + * + * @public + * @this {RegExpLexer} + */ + more: function lexer_more() { + this._more = true; + return this; + }, + + /** + * signal the lexer that this rule fails to match the input, so the + * next matching rule (regex) should be tested instead. + * + * @public + * @this {RegExpLexer} + */ + reject: function lexer_reject() { + if (this.options.backtrack_lexer) { + this._backtrack = true; + } else { + // when the `parseError()` call returns, we MUST ensure that the error is registered. + // We accomplish this by signaling an 'error' token to be produced for the current + // `.lex()` run. + var lineno_msg = ''; + + if (this.yylloc) { + lineno_msg = ' on line ' + (this.yylineno + 1); + } + + var p = this.constructLexErrorInfo( + 'Lexical error' + lineno_msg + ': You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).', + false + ); + + this._signaled_error_token = this.parseError(p.errStr, p, this.JisonLexerError) || this.ERROR; + } + + return this; + }, + + /** + * retain first n characters of the match + * + * @public + * @this {RegExpLexer} + */ + less: function lexer_less(n) { + return this.unput(this.match.slice(n)); + }, + + /** + * return (part of the) already matched input, i.e. for error + * messages. + * + * Limit the returned string length to `maxSize` (default: 20). + * + * Limit the returned string to the `maxLines` number of lines of + * input (default: 1). + * + * Negative limit values equal *unlimited*. + * + * @public + * @this {RegExpLexer} + */ + pastInput: function lexer_pastInput(maxSize, maxLines) { + var past = this.matched.substring(0, this.matched.length - this.match.length); + + if (maxSize < 0) + maxSize = past.length; + else if (!maxSize) + maxSize = 20; + + if (maxLines < 0) + maxLines = past.length; // can't ever have more input lines than this! + else if (!maxLines) + maxLines = 1; + + // `substr` anticipation: treat \r\n as a single character and take a little + // more than necessary so that we can still properly check against maxSize + // after we've transformed and limited the newLines in here: + past = past.substr(-maxSize * 2 - 2); + + // now that we have a significantly reduced string to process, transform the newlines + // and chop them, then limit them: + var a = past.replace(/\r\n|\r/g, '\n').split('\n'); + + a = a.slice(-maxLines); + past = a.join('\n'); + + // When, after limiting to maxLines, we still have too much to return, + // do add an ellipsis prefix... + if (past.length > maxSize) { + past = '...' + past.substr(-maxSize); + } + + return past; + }, + + /** + * return (part of the) upcoming input, i.e. for error messages. + * + * Limit the returned string length to `maxSize` (default: 20). + * + * Limit the returned string to the `maxLines` number of lines of input (default: 1). + * + * Negative limit values equal *unlimited*. + * + * > ### NOTE ### + * > + * > *"upcoming input"* is defined as the whole of the both + * > the *currently lexed* input, together with any remaining input + * > following that. *"currently lexed"* input is the input + * > already recognized by the lexer but not yet returned with + * > the lexer token. This happens when you are invoking this API + * > from inside any lexer rule action code block. + * > + * + * @public + * @this {RegExpLexer} + */ + upcomingInput: function lexer_upcomingInput(maxSize, maxLines) { + var next = this.match; + + if (maxSize < 0) + maxSize = next.length + this._input.length; + else if (!maxSize) + maxSize = 20; + + if (maxLines < 0) + maxLines = maxSize; // can't ever have more input lines than this! + else if (!maxLines) + maxLines = 1; + + // `substring` anticipation: treat \r\n as a single character and take a little + // more than necessary so that we can still properly check against maxSize + // after we've transformed and limited the newLines in here: + if (next.length < maxSize * 2 + 2) { + next += this._input.substring(0, maxSize * 2 + 2); // substring is faster on Chrome/V8 + } + + // now that we have a significantly reduced string to process, transform the newlines + // and chop them, then limit them: + var a = next.replace(/\r\n|\r/g, '\n').split('\n'); + + a = a.slice(0, maxLines); + next = a.join('\n'); + + // When, after limiting to maxLines, we still have too much to return, + // do add an ellipsis postfix... + if (next.length > maxSize) { + next = next.substring(0, maxSize) + '...'; + } + + return next; + }, + + /** + * return a string which displays the character position where the + * lexing error occurred, i.e. for error messages + * + * @public + * @this {RegExpLexer} + */ + showPosition: function lexer_showPosition(maxPrefix, maxPostfix) { + var pre = this.pastInput(maxPrefix).replace(/\s/g, ' '); + var c = new Array(pre.length + 1).join('-'); + return pre + this.upcomingInput(maxPostfix).replace(/\s/g, ' ') + '\n' + c + '^'; + }, + + /** + * return an YYLLOC info object derived off the given context (actual, preceding, following, current). + * Use this method when the given `actual` location is not guaranteed to exist (i.e. when + * it MAY be NULL) and you MUST have a valid location info object anyway: + * then we take the given context of the `preceding` and `following` locations, IFF those are available, + * and reconstruct the `actual` location info from those. + * If this fails, the heuristic is to take the `current` location, IFF available. + * If this fails as well, we assume the sought location is at/around the current lexer position + * and then produce that one as a response. DO NOTE that these heuristic/derived location info + * values MAY be inaccurate! + * + * NOTE: `deriveLocationInfo()` ALWAYS produces a location info object *copy* of `actual`, not just + * a *reference* hence all input location objects can be assumed to be 'constant' (function has no side-effects). + * + * @public + * @this {RegExpLexer} + */ + deriveLocationInfo: function lexer_deriveYYLLOC(actual, preceding, following, current) { + var loc = { + first_line: 1, + first_column: 0, + last_line: 1, + last_column: 0, + range: [0, 0] + }; + + if (actual) { + loc.first_line = actual.first_line | 0; + loc.last_line = actual.last_line | 0; + loc.first_column = actual.first_column | 0; + loc.last_column = actual.last_column | 0; + + if (actual.range) { + loc.range[0] = actual.range[0] | 0; + loc.range[1] = actual.range[1] | 0; + } + } + + if (loc.first_line <= 0 || loc.last_line < loc.first_line) { + // plan B: heuristic using preceding and following: + if (loc.first_line <= 0 && preceding) { + loc.first_line = preceding.last_line | 0; + loc.first_column = preceding.last_column | 0; + + if (preceding.range) { + loc.range[0] = actual.range[1] | 0; + } + } + + if ((loc.last_line <= 0 || loc.last_line < loc.first_line) && following) { + loc.last_line = following.first_line | 0; + loc.last_column = following.first_column | 0; + + if (following.range) { + loc.range[1] = actual.range[0] | 0; + } + } + + // plan C?: see if the 'current' location is useful/sane too: + if (loc.first_line <= 0 && current && (loc.last_line <= 0 || current.last_line <= loc.last_line)) { + loc.first_line = current.first_line | 0; + loc.first_column = current.first_column | 0; + + if (current.range) { + loc.range[0] = current.range[0] | 0; + } + } + + if (loc.last_line <= 0 && current && (loc.first_line <= 0 || current.first_line >= loc.first_line)) { + loc.last_line = current.last_line | 0; + loc.last_column = current.last_column | 0; + + if (current.range) { + loc.range[1] = current.range[1] | 0; + } + } + } + + // sanitize: fix last_line BEFORE we fix first_line as we use the 'raw' value of the latter + // or plan D heuristics to produce a 'sensible' last_line value: + if (loc.last_line <= 0) { + if (loc.first_line <= 0) { + loc.first_line = this.yylloc.first_line; + loc.last_line = this.yylloc.last_line; + loc.first_column = this.yylloc.first_column; + loc.last_column = this.yylloc.last_column; + loc.range[0] = this.yylloc.range[0]; + loc.range[1] = this.yylloc.range[1]; + } else { + loc.last_line = this.yylloc.last_line; + loc.last_column = this.yylloc.last_column; + loc.range[1] = this.yylloc.range[1]; + } + } + + if (loc.first_line <= 0) { + loc.first_line = loc.last_line; + loc.first_column = 0; // loc.last_column; + loc.range[1] = loc.range[0]; + } + + if (loc.first_column < 0) { + loc.first_column = 0; + } + + if (loc.last_column < 0) { + loc.last_column = (loc.first_column > 0 ? loc.first_column : 80); + } + + return loc; + }, + + /** + * return a string which displays the lines & columns of input which are referenced + * by the given location info range, plus a few lines of context. + * + * This function pretty-prints the indicated section of the input, with line numbers + * and everything! + * + * This function is very useful to provide highly readable error reports, while + * the location range may be specified in various flexible ways: + * + * - `loc` is the location info object which references the area which should be + * displayed and 'marked up': these lines & columns of text are marked up by `^` + * characters below each character in the entire input range. + * + * - `context_loc` is the *optional* location info object which instructs this + * pretty-printer how much *leading* context should be displayed alongside + * the area referenced by `loc`. This can help provide context for the displayed + * error, etc. + * + * When this location info is not provided, a default context of 3 lines is + * used. + * + * - `context_loc2` is another *optional* location info object, which serves + * a similar purpose to `context_loc`: it specifies the amount of *trailing* + * context lines to display in the pretty-print output. + * + * When this location info is not provided, a default context of 1 line only is + * used. + * + * Special Notes: + * + * - when the `loc`-indicated range is very large (about 5 lines or more), then + * only the first and last few lines of this block are printed while a + * `...continued...` message will be printed between them. + * + * This serves the purpose of not printing a huge amount of text when the `loc` + * range happens to be huge: this way a manageable & readable output results + * for arbitrary large ranges. + * + * - this function can display lines of input which whave not yet been lexed. + * `prettyPrintRange()` can access the entire input! + * + * @public + * @this {RegExpLexer} + */ + prettyPrintRange: function lexer_prettyPrintRange(loc, context_loc, context_loc2) { + loc = this.deriveLocationInfo(loc, context_loc, context_loc2); + const CONTEXT = 3; + const CONTEXT_TAIL = 1; + const MINIMUM_VISIBLE_NONEMPTY_LINE_COUNT = 2; + var input = this.matched + this._input; + var lines = input.split('\n'); + var l0 = Math.max(1, (context_loc ? context_loc.first_line : loc.first_line - CONTEXT)); + var l1 = Math.max(1, (context_loc2 ? context_loc2.last_line : loc.last_line + CONTEXT_TAIL)); + var lineno_display_width = 1 + Math.log10(l1 | 1) | 0; + var ws_prefix = new Array(lineno_display_width).join(' '); + var nonempty_line_indexes = []; + + var rv = lines.slice(l0 - 1, l1 + 1).map(function injectLineNumber(line, index) { + var lno = index + l0; + var lno_pfx = (ws_prefix + lno).substr(-lineno_display_width); + var rv = lno_pfx + ': ' + line; + var errpfx = new Array(lineno_display_width + 1).join('^'); + var offset = 2 + 1; + var len = 0; + + if (lno === loc.first_line) { + offset += loc.first_column; + + len = Math.max( + 2, + ((lno === loc.last_line ? loc.last_column : line.length)) - loc.first_column + 1 + ); + } else if (lno === loc.last_line) { + len = Math.max(2, loc.last_column + 1); + } else if (lno > loc.first_line && lno < loc.last_line) { + len = Math.max(2, line.length + 1); + } + + if (len) { + var lead = new Array(offset).join('.'); + var mark = new Array(len).join('^'); + rv += '\n' + errpfx + lead + mark; + + if (line.trim().length > 0) { + nonempty_line_indexes.push(index); + } + } + + rv = rv.replace(/\t/g, ' '); + return rv; + }); + + // now make sure we don't print an overly large amount of error area: limit it + // to the top and bottom line count: + if (nonempty_line_indexes.length > 2 * MINIMUM_VISIBLE_NONEMPTY_LINE_COUNT) { + var clip_start = nonempty_line_indexes[MINIMUM_VISIBLE_NONEMPTY_LINE_COUNT - 1] + 1; + var clip_end = nonempty_line_indexes[nonempty_line_indexes.length - MINIMUM_VISIBLE_NONEMPTY_LINE_COUNT] - 1; + var intermediate_line = new Array(lineno_display_width + 1).join(' ') + ' (...continued...)'; + intermediate_line += '\n' + new Array(lineno_display_width + 1).join('-') + ' (---------------)'; + rv.splice(clip_start, clip_end - clip_start + 1, intermediate_line); + } + + return rv.join('\n'); + }, + + /** + * helper function, used to produce a human readable description as a string, given + * the input `yylloc` location object. + * + * Set `display_range_too` to TRUE to include the string character index position(s) + * in the description if the `yylloc.range` is available. + * + * @public + * @this {RegExpLexer} + */ + describeYYLLOC: function lexer_describe_yylloc(yylloc, display_range_too) { + var l1 = yylloc.first_line; + var l2 = yylloc.last_line; + var c1 = yylloc.first_column; + var c2 = yylloc.last_column; + var dl = l2 - l1; + var dc = c2 - c1; + var rv; + + if (dl === 0) { + rv = 'line ' + l1 + ', '; + + if (dc <= 1) { + rv += 'column ' + c1; + } else { + rv += 'columns ' + c1 + ' .. ' + c2; + } + } else { + rv = 'lines ' + l1 + '(column ' + c1 + ') .. ' + l2 + '(column ' + c2 + ')'; + } + + if (yylloc.range && display_range_too) { + var r1 = yylloc.range[0]; + var r2 = yylloc.range[1] - 1; + + if (r2 <= r1) { + rv += ' {String Offset: ' + r1 + '}'; + } else { + rv += ' {String Offset range: ' + r1 + ' .. ' + r2 + '}'; + } + } + + return rv; + }, + + /** + * test the lexed token: return FALSE when not a match, otherwise return token. + * + * `match` is supposed to be an array coming out of a regex match, i.e. `match[0]` + * contains the actually matched text string. + * + * Also move the input cursor forward and update the match collectors: + * + * - `yytext` + * - `yyleng` + * - `match` + * - `matches` + * - `yylloc` + * - `offset` + * + * @public + * @this {RegExpLexer} + */ + test_match: function lexer_test_match(match, indexed_rule) { + var token, lines, backup, match_str, match_str_len; + + if (this.options.backtrack_lexer) { + // save context + backup = { + yylineno: this.yylineno, + + yylloc: { + first_line: this.yylloc.first_line, + last_line: this.yylloc.last_line, + first_column: this.yylloc.first_column, + last_column: this.yylloc.last_column, + range: this.yylloc.range.slice(0) + }, + + yytext: this.yytext, + match: this.match, + matches: this.matches, + matched: this.matched, + yyleng: this.yyleng, + offset: this.offset, + _more: this._more, + _input: this._input, + + //_signaled_error_token: this._signaled_error_token, + yy: this.yy, + + conditionStack: this.conditionStack.slice(0), + done: this.done + }; + } + + match_str = match[0]; + match_str_len = match_str.length; + + // if (match_str.indexOf('\n') !== -1 || match_str.indexOf('\r') !== -1) { + lines = match_str.split(/(?:\r\n?|\n)/g); + + if (lines.length > 1) { + this.yylineno += lines.length - 1; + this.yylloc.last_line = this.yylineno + 1; + this.yylloc.last_column = lines[lines.length - 1].length; + } else { + this.yylloc.last_column += match_str_len; + } + + // } + this.yytext += match_str; + + this.match += match_str; + this.matched += match_str; + this.matches = match; + this.yyleng = this.yytext.length; + this.yylloc.range[1] += match_str_len; + + // previous lex rules MAY have invoked the `more()` API rather than producing a token: + // those rules will already have moved this `offset` forward matching their match lengths, + // hence we must only add our own match length now: + this.offset += match_str_len; + + this._more = false; + this._backtrack = false; + this._input = this._input.slice(match_str_len); + + // calling this method: + // + // function lexer__performAction(yy, yyrulenumber, YY_START) {...} + token = this.performAction.call( + this, + this.yy, + indexed_rule, + this.conditionStack[this.conditionStack.length - 1] /* = YY_START */ + ); + + // otherwise, when the action codes are all simple return token statements: + //token = this.simpleCaseActionClusters[indexed_rule]; + + if (this.done && this._input) { + this.done = false; + } + + if (token) { + return token; + } else if (this._backtrack) { + // recover context + for (var k in backup) { + this[k] = backup[k]; + } + + this.__currentRuleSet__ = null; + return false; // rule action called reject() implying the next rule should be tested instead. + } else if (this._signaled_error_token) { + // produce one 'error' token as `.parseError()` in `reject()` + // did not guarantee a failure signal by throwing an exception! + token = this._signaled_error_token; + + this._signaled_error_token = false; + return token; + } + + return false; + }, + + /** + * return next match in input + * + * @public + * @this {RegExpLexer} + */ + next: function lexer_next() { + if (this.done) { + this.clear(); + return this.EOF; + } + + if (!this._input) { + this.done = true; + } + + var token, match, tempMatch, index; + + if (!this._more) { + this.clear(); + } + + var spec = this.__currentRuleSet__; + + if (!spec) { + // Update the ruleset cache as we apparently encountered a state change or just started lexing. + // The cache is set up for fast lookup -- we assume a lexer will switch states much less often than it will + // invoke the `lex()` token-producing API and related APIs, hence caching the set for direct access helps + // speed up those activities a tiny bit. + spec = this.__currentRuleSet__ = this._currentRules(); + + // Check whether a *sane* condition has been pushed before: this makes the lexer robust against + // user-programmer bugs such as https://github.com/zaach/jison-lex/issues/19 + if (!spec || !spec.rules) { + var lineno_msg = ''; + + if (this.options.trackPosition) { + lineno_msg = ' on line ' + (this.yylineno + 1); + } + + var p = this.constructLexErrorInfo( + 'Internal lexer engine error' + lineno_msg + ': The lex grammar programmer pushed a non-existing condition name "' + this.topState() + '"; this is a fatal error and should be reported to the application programmer team!', + false + ); + + // produce one 'error' token until this situation has been resolved, most probably by parse termination! + return this.parseError(p.errStr, p, this.JisonLexerError) || this.ERROR; + } + } + + var rule_ids = spec.rules; + var regexes = spec.__rule_regexes; + var len = spec.__rule_count; + + // Note: the arrays are 1-based, while `len` itself is a valid index, + // hence the non-standard less-or-equal check in the next loop condition! + for (var i = 1; i <= len; i++) { + tempMatch = this._input.match(regexes[i]); + + if (tempMatch && (!match || tempMatch[0].length > match[0].length)) { + match = tempMatch; + index = i; + + if (this.options.backtrack_lexer) { + token = this.test_match(tempMatch, rule_ids[i]); + + if (token !== false) { + return token; + } else if (this._backtrack) { + match = undefined; + continue; // rule action called reject() implying a rule MISmatch. + } else { + // else: this is a lexer rule which consumes input without producing a token (e.g. whitespace) + return false; + } + } else if (!this.options.flex) { + break; + } + } + } + + if (match) { + token = this.test_match(match, rule_ids[index]); + + if (token !== false) { + return token; + } + + // else: this is a lexer rule which consumes input without producing a token (e.g. whitespace) + return false; + } + + if (!this._input) { + this.done = true; + this.clear(); + return this.EOF; + } else { + var lineno_msg = ''; + + if (this.options.trackPosition) { + lineno_msg = ' on line ' + (this.yylineno + 1); + } + + var p = this.constructLexErrorInfo( + 'Lexical error' + lineno_msg + ': Unrecognized text.', + this.options.lexerErrorsAreRecoverable + ); + + var pendingInput = this._input; + var activeCondition = this.topState(); + var conditionStackDepth = this.conditionStack.length; + token = this.parseError(p.errStr, p, this.JisonLexerError) || this.ERROR; + + if (token === this.ERROR) { + // we can try to recover from a lexer error that `parseError()` did not 'recover' for us + // by moving forward at least one character at a time IFF the (user-specified?) `parseError()` + // has not consumed/modified any pending input or changed state in the error handler: + if (!this.matches && // and make sure the input has been modified/consumed ... + pendingInput === this._input && // ...or the lexer state has been modified significantly enough + // to merit a non-consuming error handling action right now. + activeCondition === this.topState() && conditionStackDepth === this.conditionStack.length) { + this.input(); + } + } + + return token; + } + }, + + /** + * return next match that has a token + * + * @public + * @this {RegExpLexer} + */ + lex: function lexer_lex() { + var r; + + // allow the PRE/POST handlers set/modify the return token for maximum flexibility of the generated lexer: + if (typeof this.pre_lex === 'function') { + r = this.pre_lex.call(this, 0); + } + + if (typeof this.options.pre_lex === 'function') { + // (also account for a userdef function which does not return any value: keep the token as is) + r = this.options.pre_lex.call(this, r) || r; + } + + if (this.yy && typeof this.yy.pre_lex === 'function') { + // (also account for a userdef function which does not return any value: keep the token as is) + r = this.yy.pre_lex.call(this, r) || r; + } + + while (!r) { + r = this.next(); + } + + if (this.yy && typeof this.yy.post_lex === 'function') { + // (also account for a userdef function which does not return any value: keep the token as is) + r = this.yy.post_lex.call(this, r) || r; + } + + if (typeof this.options.post_lex === 'function') { + // (also account for a userdef function which does not return any value: keep the token as is) + r = this.options.post_lex.call(this, r) || r; + } + + if (typeof this.post_lex === 'function') { + // (also account for a userdef function which does not return any value: keep the token as is) + r = this.post_lex.call(this, r) || r; + } + + return r; + }, + + /** + * return next match that has a token. Identical to the `lex()` API but does not invoke any of the + * `pre_lex()` nor any of the `post_lex()` callbacks. + * + * @public + * @this {RegExpLexer} + */ + fastLex: function lexer_fastLex() { + var r; + + while (!r) { + r = this.next(); + } + + return r; + }, + + /** + * return info about the lexer state that can help a parser or other lexer API user to use the + * most efficient means available. This API is provided to aid run-time performance for larger + * systems which employ this lexer. + * + * @public + * @this {RegExpLexer} + */ + canIUse: function lexer_canIUse() { + var rv = { + fastLex: !(typeof this.pre_lex === 'function' || typeof this.options.pre_lex === 'function' || this.yy && typeof this.yy.pre_lex === 'function' || this.yy && typeof this.yy.post_lex === 'function' || typeof this.options.post_lex === 'function' || typeof this.post_lex === 'function') && typeof this.fastLex === 'function' + }; + + return rv; + }, + + /** + * backwards compatible alias for `pushState()`; + * the latter is symmetrical with `popState()` and we advise to use + * those APIs in any modern lexer code, rather than `begin()`. + * + * @public + * @this {RegExpLexer} + */ + begin: function lexer_begin(condition) { + return this.pushState(condition); + }, + + /** + * activates a new lexer condition state (pushes the new lexer + * condition state onto the condition stack) + * + * @public + * @this {RegExpLexer} + */ + pushState: function lexer_pushState(condition) { + this.conditionStack.push(condition); + this.__currentRuleSet__ = null; + return this; + }, + + /** + * pop the previously active lexer condition state off the condition + * stack + * + * @public + * @this {RegExpLexer} + */ + popState: function lexer_popState() { + var n = this.conditionStack.length - 1; + + if (n > 0) { + this.__currentRuleSet__ = null; + return this.conditionStack.pop(); + } else { + return this.conditionStack[0]; + } + }, + + /** + * return the currently active lexer condition state; when an index + * argument is provided it produces the N-th previous condition state, + * if available + * + * @public + * @this {RegExpLexer} + */ + topState: function lexer_topState(n) { + n = this.conditionStack.length - 1 - Math.abs(n || 0); + + if (n >= 0) { + return this.conditionStack[n]; + } else { + return 'INITIAL'; + } + }, + + /** + * (internal) determine the lexer rule set which is active for the + * currently active lexer condition state + * + * @public + * @this {RegExpLexer} + */ + _currentRules: function lexer__currentRules() { + if (this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1]) { + return this.conditions[this.conditionStack[this.conditionStack.length - 1]]; + } else { + return this.conditions['INITIAL']; + } + }, + + /** + * return the number of states currently on the stack + * + * @public + * @this {RegExpLexer} + */ + stateStackSize: function lexer_stateStackSize() { + return this.conditionStack.length; + }, + + options: { + trackPosition: true, + caseInsensitive: true + }, + + JisonLexerError: JisonLexerError, + + performAction: function lexer__performAction(yy, yyrulenumber, YY_START) { + var yy_ = this; + var YYSTATE = YY_START; + + switch (yyrulenumber) { + case 10: + /*! Conditions:: INITIAL */ + /*! Rule:: --(.*?)($|\r\n|\r|\n) */ + return; + + /* its a COMMENT */ + break; + + case 11: + /*! Conditions:: INITIAL */ + /*! Rule:: \s+ */ + /* skip whitespace */ + break; + + case 14: + /*! Conditions:: INITIAL */ + /*! Rule:: VALUE\s+OF\s+SEARCH */ + yy_.yytext = 'VALUE'; + + return 21; + break; + + case 15: + /*! Conditions:: INITIAL */ + /*! Rule:: VALUE\s+OF\s+SELECT */ + yy_.yytext = 'VALUE'; + + return 75; + break; + + case 16: + /*! Conditions:: INITIAL */ + /*! Rule:: ROW\s+OF\s+SELECT */ + yy_.yytext = 'ROW'; + + return 75; + break; + + case 17: + /*! Conditions:: INITIAL */ + /*! Rule:: COLUMN\s+OF\s+SELECT */ + yy_.yytext = 'COLUMN'; + + return 75; + break; + + case 18: + /*! Conditions:: INITIAL */ + /*! Rule:: MATRIX\s+OF\s+SELECT */ + yy_.yytext = 'MATRIX'; + + return 75; + break; + + case 19: + /*! Conditions:: INITIAL */ + /*! Rule:: INDEX\s+OF\s+SELECT */ + yy_.yytext = 'INDEX'; + + return 75; + break; + + case 20: + /*! Conditions:: INITIAL */ + /*! Rule:: RECORDSET\s+OF\s+SELECT */ + yy_.yytext = 'RECORDSET'; + + return 75; + break; + + case 21: + /*! Conditions:: INITIAL */ + /*! Rule:: TEXT\s+OF\s+SELECT */ + yy_.yytext = 'TEXT'; + + return 75; + break; + + case 22: + /*! Conditions:: INITIAL */ + /*! Rule:: SELECT */ + yy_.yytext = 'SELECT'; + + return 75; + break; + + case 231: + /*! Conditions:: INITIAL */ + /*! Rule:: WORK */ + return 211; + + /* Is this keyword required? */ + break; + + default: + return this.simpleCaseActionClusters[yyrulenumber]; + } + }, + + simpleCaseActionClusters: { + /*! Conditions:: INITIAL */ + /*! Rule:: ``([^\`])+`` */ + 0: 114, + + /*! Conditions:: INITIAL */ + /*! Rule:: \[\?\] */ + 1: 143, + + /*! Conditions:: INITIAL */ + /*! Rule:: @\[ */ + 2: 206, + + /*! Conditions:: INITIAL */ + /*! Rule:: ARRAY\[ */ + 3: 141, + + /*! Conditions:: INITIAL */ + /*! Rule:: \[([^\]'])*?\] */ + 4: 11, + + /*! Conditions:: INITIAL */ + /*! Rule:: `([^\`'])*?` */ + 5: 11, + + /*! Conditions:: INITIAL */ + /*! Rule:: N(['](\\.|[^']|\\')*?['])+ */ + 6: 138, + + /*! Conditions:: INITIAL */ + /*! Rule:: X(['](\\.|[^']|\\')*?['])+ */ + 7: 138, + + /*! Conditions:: INITIAL */ + /*! Rule:: (['](\\.|[^']|\\')*?['])+ */ + 8: 39, + + /*! Conditions:: INITIAL */ + /*! Rule:: (["](\\.|[^"]|\\")*?["])+ */ + 9: 39, + + /*! Conditions:: INITIAL */ + /*! Rule:: \|\| */ + 12: 154, + + /*! Conditions:: INITIAL */ + /*! Rule:: \| */ + 13: 157, + + /*! Conditions:: INITIAL */ + /*! Rule:: ABSOLUTE */ + 23: 237, + + /*! Conditions:: INITIAL */ + /*! Rule:: ACTION */ + 24: 186, + + /*! Conditions:: INITIAL */ + /*! Rule:: ADD */ + 25: 193, + + /*! Conditions:: INITIAL */ + /*! Rule:: AFTER */ + 26: 233, + + /*! Conditions:: INITIAL */ + /*! Rule:: AGGR */ + 27: 129, + + /*! Conditions:: INITIAL */ + /*! Rule:: AGGREGATE */ + 28: 117, + + /*! Conditions:: INITIAL */ + /*! Rule:: AGGREGATOR */ + 29: 117, + + /*! Conditions:: INITIAL */ + /*! Rule:: ALL */ + 30: 60, + + /*! Conditions:: INITIAL */ + /*! Rule:: ALTER */ + 31: 191, + + /*! Conditions:: INITIAL */ + /*! Rule:: AND */ + 32: 64, + + /*! Conditions:: INITIAL */ + /*! Rule:: ANTI */ + 33: 95, + + /*! Conditions:: INITIAL */ + /*! Rule:: ANY */ + 34: 61, + + /*! Conditions:: INITIAL */ + /*! Rule:: APPLY */ + 35: 84, + + /*! Conditions:: INITIAL */ + /*! Rule:: ARRAY */ + 36: 130, + + /*! Conditions:: INITIAL */ + /*! Rule:: AS */ + 37: 18, + + /*! Conditions:: INITIAL */ + /*! Rule:: ASSERT */ + 38: 205, + + /*! Conditions:: INITIAL */ + /*! Rule:: ASC */ + 39: 107, + + /*! Conditions:: INITIAL */ + /*! Rule:: ATTACH */ + 40: 195, + + /*! Conditions:: INITIAL */ + /*! Rule:: AUTO(_)?INCREMENT */ + 41: 177, + + /*! Conditions:: INITIAL */ + /*! Rule:: AVG */ + 42: 128, + + /*! Conditions:: INITIAL */ + /*! Rule:: BEFORE */ + 43: 232, + + /*! Conditions:: INITIAL */ + /*! Rule:: BEGIN */ + 44: 213, + + /*! Conditions:: INITIAL */ + /*! Rule:: BETWEEN */ + 45: 165, + + /*! Conditions:: INITIAL */ + /*! Rule:: BREAK */ + 46: 216, + + /*! Conditions:: INITIAL */ + /*! Rule:: NOT\s+BETWEEN */ + 47: 166, + + /*! Conditions:: INITIAL */ + /*! Rule:: NOT\s+LIKE */ + 48: 153, + + /*! Conditions:: INITIAL */ + /*! Rule:: BY */ + 49: 31, + + /*! Conditions:: INITIAL */ + /*! Rule:: ~~\* */ + 50: 27, + + /*! Conditions:: INITIAL */ + /*! Rule:: !~~\* */ + 51: 153, + + /*! Conditions:: INITIAL */ + /*! Rule:: ~~ */ + 52: 27, + + /*! Conditions:: INITIAL */ + /*! Rule:: !~~ */ + 53: 153, + + /*! Conditions:: INITIAL */ + /*! Rule:: ILIKE */ + 54: 27, + + /*! Conditions:: INITIAL */ + /*! Rule:: NOT\s+ILIKE */ + 55: 153, + + /*! Conditions:: INITIAL */ + /*! Rule:: CALL */ + 56: 230, + + /*! Conditions:: INITIAL */ + /*! Rule:: CASE */ + 57: 144, + + /*! Conditions:: INITIAL */ + /*! Rule:: CAST */ + 58: 119, + + /*! Conditions:: INITIAL */ + /*! Rule:: CHECK */ + 59: 180, + + /*! Conditions:: INITIAL */ + /*! Rule:: CLASS */ + 60: 37, + + /*! Conditions:: INITIAL */ + /*! Rule:: CLOSE */ + 61: 'CLOSE', + + /*! Conditions:: INITIAL */ + /*! Rule:: COLLATE */ + 62: 108, + + /*! Conditions:: INITIAL */ + /*! Rule:: COLUMN */ + 63: 76, + + /*! Conditions:: INITIAL */ + /*! Rule:: COLUMNS */ + 64: 76, + + /*! Conditions:: INITIAL */ + /*! Rule:: COMMIT */ + 65: 210, + + /*! Conditions:: INITIAL */ + /*! Rule:: CONSTRAINT */ + 66: 179, + + /*! Conditions:: INITIAL */ + /*! Rule:: CONTENT */ + 67: 226, + + /*! Conditions:: INITIAL */ + /*! Rule:: CONTINUE */ + 68: 215, + + /*! Conditions:: INITIAL */ + /*! Rule:: CONVERT */ + 69: 120, + + /*! Conditions:: INITIAL */ + /*! Rule:: CORRESPONDING */ + 70: 103, + + /*! Conditions:: INITIAL */ + /*! Rule:: COUNT */ + 71: 125, + + /*! Conditions:: INITIAL */ + /*! Rule:: CREATE */ + 72: 115, + + /*! Conditions:: INITIAL */ + /*! Rule:: CROSS */ + 73: 83, + + /*! Conditions:: INITIAL */ + /*! Rule:: CUBE */ + 74: 101, + + /*! Conditions:: INITIAL */ + /*! Rule:: CURRENT_TIMESTAMP */ + 75: 113, + + /*! Conditions:: INITIAL */ + /*! Rule:: CURSOR */ + 76: 'CURSOR', + + /*! Conditions:: INITIAL */ + /*! Rule:: DATABASE(S)? */ + 77: 196, + + /*! Conditions:: INITIAL */ + /*! Rule:: DATEADD */ + 78: 132, + + /*! Conditions:: INITIAL */ + /*! Rule:: DATEDIFF */ + 79: 133, + + /*! Conditions:: INITIAL */ + /*! Rule:: TIMESTAMPDIFF */ + 80: 134, + + /*! Conditions:: INITIAL */ + /*! Rule:: DECLARE */ + 81: 220, + + /*! Conditions:: INITIAL */ + /*! Rule:: DEFAULT */ + 82: 173, + + /*! Conditions:: INITIAL */ + /*! Rule:: DELETE */ + 83: 171, + + /*! Conditions:: INITIAL */ + /*! Rule:: DELETED */ + 84: 'DELETED', + + /*! Conditions:: INITIAL */ + /*! Rule:: DESC */ + 85: 107, + + /*! Conditions:: INITIAL */ + /*! Rule:: DETACH */ + 86: 197, + + /*! Conditions:: INITIAL */ + /*! Rule:: DISTINCT */ + 87: 73, + + /*! Conditions:: INITIAL */ + /*! Rule:: DROP */ + 88: 190, + + /*! Conditions:: INITIAL */ + /*! Rule:: ECHO */ + 89: 219, + + /*! Conditions:: INITIAL */ + /*! Rule:: EDGE */ + 90: 42, + + /*! Conditions:: INITIAL */ + /*! Rule:: END */ + 91: 145, + + /*! Conditions:: INITIAL */ + /*! Rule:: ENUM */ + 92: 188, + + /*! Conditions:: INITIAL */ + /*! Rule:: ELSE */ + 93: 148, + + /*! Conditions:: INITIAL */ + /*! Rule:: ESCAPE */ + 94: 152, + + /*! Conditions:: INITIAL */ + /*! Rule:: EXCEPT */ + 95: 63, + + /*! Conditions:: INITIAL */ + /*! Rule:: EXEC */ + 96: 230, + + /*! Conditions:: INITIAL */ + /*! Rule:: EXECUTE */ + 97: 230, + + /*! Conditions:: INITIAL */ + /*! Rule:: EXISTS */ + 98: 140, + + /*! Conditions:: INITIAL */ + /*! Rule:: EXPLAIN */ + 99: 12, + + /*! Conditions:: INITIAL */ + /*! Rule:: FALSE */ + 100: 137, + + /*! Conditions:: INITIAL */ + /*! Rule:: FETCH */ + 101: 112, + + /*! Conditions:: INITIAL */ + /*! Rule:: FIRST */ + 102: 105, + + /*! Conditions:: INITIAL */ + /*! Rule:: FOR */ + 103: 23, + + /*! Conditions:: INITIAL */ + /*! Rule:: FOREIGN */ + 104: 183, + + /*! Conditions:: INITIAL */ + /*! Rule:: FROM */ + 105: 72, + + /*! Conditions:: INITIAL */ + /*! Rule:: FULL */ + 106: 93, + + /*! Conditions:: INITIAL */ + /*! Rule:: FUNCTION */ + 107: 116, + + /*! Conditions:: INITIAL */ + /*! Rule:: GLOB */ + 108: 151, + + /*! Conditions:: INITIAL */ + /*! Rule:: GO */ + 109: 317, + + /*! Conditions:: INITIAL */ + /*! Rule:: GRAPH */ + 110: 227, + + /*! Conditions:: INITIAL */ + /*! Rule:: GROUP */ + 111: 98, + + /*! Conditions:: INITIAL */ + /*! Rule:: GROUPING */ + 112: 99, + + /*! Conditions:: INITIAL */ + /*! Rule:: HAVING */ + 113: 102, + + /*! Conditions:: INITIAL */ + /*! Rule:: IF */ + 114: 58, + + /*! Conditions:: INITIAL */ + /*! Rule:: IDENTITY */ + 115: 177, + + /*! Conditions:: INITIAL */ + /*! Rule:: IS */ + 116: 167, + + /*! Conditions:: INITIAL */ + /*! Rule:: IN */ + 117: 25, + + /*! Conditions:: INITIAL */ + /*! Rule:: INDEX */ + 118: 79, + + /*! Conditions:: INITIAL */ + /*! Rule:: INDEXED */ + 119: 86, + + /*! Conditions:: INITIAL */ + /*! Rule:: INNER */ + 120: 90, + + /*! Conditions:: INITIAL */ + /*! Rule:: INSTEAD */ + 121: 234, + + /*! Conditions:: INITIAL */ + /*! Rule:: INSERT */ + 122: 172, + + /*! Conditions:: INITIAL */ + /*! Rule:: INSERTED */ + 123: 87, + + /*! Conditions:: INITIAL */ + /*! Rule:: INTERSECT */ + 124: 62, + + /*! Conditions:: INITIAL */ + /*! Rule:: INTERVAL */ + 125: 135, + + /*! Conditions:: INITIAL */ + /*! Rule:: INTO */ + 126: 82, + + /*! Conditions:: INITIAL */ + /*! Rule:: JOIN */ + 127: 89, + + /*! Conditions:: INITIAL */ + /*! Rule:: KEY */ + 128: 182, + + /*! Conditions:: INITIAL */ + /*! Rule:: LAST */ + 129: 106, + + /*! Conditions:: INITIAL */ + /*! Rule:: LET */ + 130: 'LET', + + /*! Conditions:: INITIAL */ + /*! Rule:: LEFT */ + 131: 91, + + /*! Conditions:: INITIAL */ + /*! Rule:: LIKE */ + 132: 27, + + /*! Conditions:: INITIAL */ + /*! Rule:: LIMIT */ + 133: 110, + + /*! Conditions:: INITIAL */ + /*! Rule:: MATCHED */ + 134: 223, + + /*! Conditions:: INITIAL */ + /*! Rule:: MATRIX */ + 135: 77, + + /*! Conditions:: INITIAL */ + /*! Rule:: MAX(\s+)?(?=\() */ + 136: 127, + + /*! Conditions:: INITIAL */ + /*! Rule:: MAX(\s+)?(?=(,|\))) */ + 137: 189, + + /*! Conditions:: INITIAL */ + /*! Rule:: MIN(\s+)?(?=\() */ + 138: 126, + + /*! Conditions:: INITIAL */ + /*! Rule:: MERGE */ + 139: 222, + + /*! Conditions:: INITIAL */ + /*! Rule:: MINUS */ + 140: 63, + + /*! Conditions:: INITIAL */ + /*! Rule:: MODIFY */ + 141: 194, + + /*! Conditions:: INITIAL */ + /*! Rule:: NATURAL */ + 142: 88, + + /*! Conditions:: INITIAL */ + /*! Rule:: NEXT */ + 143: 358, + + /*! Conditions:: INITIAL */ + /*! Rule:: NEW */ + 144: 118, + + /*! Conditions:: INITIAL */ + /*! Rule:: NOCASE */ + 145: 109, + + /*! Conditions:: INITIAL */ + /*! Rule:: NO */ + 146: 185, + + /*! Conditions:: INITIAL */ + /*! Rule:: NOT */ + 147: 57, + + /*! Conditions:: INITIAL */ + /*! Rule:: NULL */ + 148: 139, + + /*! Conditions:: INITIAL */ + /*! Rule:: NULLS */ + 149: 104, + + /*! Conditions:: INITIAL */ + /*! Rule:: OFF */ + 150: 209, + + /*! Conditions:: INITIAL */ + /*! Rule:: ON */ + 151: 96, + + /*! Conditions:: INITIAL */ + /*! Rule:: ONLY */ + 152: 202, + + /*! Conditions:: INITIAL */ + /*! Rule:: OF */ + 153: 36, + + /*! Conditions:: INITIAL */ + /*! Rule:: OFFSET */ + 154: 111, + + /*! Conditions:: INITIAL */ + /*! Rule:: OPEN */ + 155: 'OPEN', + + /*! Conditions:: INITIAL */ + /*! Rule:: OPTION */ + 156: 203, + + /*! Conditions:: INITIAL */ + /*! Rule:: OR */ + 157: 65, + + /*! Conditions:: INITIAL */ + /*! Rule:: ORDER */ + 158: 30, + + /*! Conditions:: INITIAL */ + /*! Rule:: OUTER */ + 159: 85, + + /*! Conditions:: INITIAL */ + /*! Rule:: OVER */ + 160: 121, + + /*! Conditions:: INITIAL */ + /*! Rule:: PATH */ + 161: 66, + + /*! Conditions:: INITIAL */ + /*! Rule:: PARTITION */ + 162: 122, + + /*! Conditions:: INITIAL */ + /*! Rule:: PERCENT */ + 163: 475, + + /*! Conditions:: INITIAL */ + /*! Rule:: PIVOT */ + 164: 22, + + /*! Conditions:: INITIAL */ + /*! Rule:: PLAN */ + 165: 14, + + /*! Conditions:: INITIAL */ + /*! Rule:: PRIMARY */ + 166: 181, + + /*! Conditions:: INITIAL */ + /*! Rule:: PRINT */ + 167: 217, + + /*! Conditions:: INITIAL */ + /*! Rule:: PRIOR */ + 168: 389, + + /*! Conditions:: INITIAL */ + /*! Rule:: QUERY */ + 169: 13, + + /*! Conditions:: INITIAL */ + /*! Rule:: READ */ + 170: 201, + + /*! Conditions:: INITIAL */ + /*! Rule:: RECORDSET */ + 171: 80, + + /*! Conditions:: INITIAL */ + /*! Rule:: REDUCE */ + 172: 'REDUCE', + + /*! Conditions:: INITIAL */ + /*! Rule:: REFERENCES */ + 173: 184, + + /*! Conditions:: INITIAL */ + /*! Rule:: REGEXP */ + 174: 149, + + /*! Conditions:: INITIAL */ + /*! Rule:: REINDEX */ + 175: 235, + + /*! Conditions:: INITIAL */ + /*! Rule:: RELATIVE */ + 176: 393, + + /*! Conditions:: INITIAL */ + /*! Rule:: REMOVE */ + 177: 26, + + /*! Conditions:: INITIAL */ + /*! Rule:: RENAME */ + 178: 192, + + /*! Conditions:: INITIAL */ + /*! Rule:: REPEAT */ + 179: 68, + + /*! Conditions:: INITIAL */ + /*! Rule:: REPLACE */ + 180: 131, + + /*! Conditions:: INITIAL */ + /*! Rule:: REQUIRE */ + 181: 218, + + /*! Conditions:: INITIAL */ + /*! Rule:: RESTORE */ + 182: 398, + + /*! Conditions:: INITIAL */ + /*! Rule:: RETURN */ + 183: 67, + + /*! Conditions:: INITIAL */ + /*! Rule:: RETURNS */ + 184: 67, + + /*! Conditions:: INITIAL */ + /*! Rule:: RIGHT */ + 185: 92, + + /*! Conditions:: INITIAL */ + /*! Rule:: ROLLBACK */ + 186: 212, + + /*! Conditions:: INITIAL */ + /*! Rule:: ROLLUP */ + 187: 100, + + /*! Conditions:: INITIAL */ + /*! Rule:: ROW */ + 188: 55, + + /*! Conditions:: INITIAL */ + /*! Rule:: ROWS */ + 189: 476, + + /*! Conditions:: INITIAL */ + /*! Rule:: SCHEMA(S)? */ + 190: 196, + + /*! Conditions:: INITIAL */ + /*! Rule:: SEARCH */ + 191: 21, + + /*! Conditions:: INITIAL */ + /*! Rule:: SEMI */ + 192: 94, + + /*! Conditions:: INITIAL */ + /*! Rule:: SET */ + 193: 52, + + /*! Conditions:: INITIAL */ + /*! Rule:: SETS */ + 194: 52, + + /*! Conditions:: INITIAL */ + /*! Rule:: SHOW */ + 195: 199, + + /*! Conditions:: INITIAL */ + /*! Rule:: SOME */ + 196: 169, + + /*! Conditions:: INITIAL */ + /*! Rule:: SOURCE */ + 197: 204, + + /*! Conditions:: INITIAL */ + /*! Rule:: STRATEGY */ + 198: 'STRATEGY', + + /*! Conditions:: INITIAL */ + /*! Rule:: STORE */ + 199: 'STORE', + + /*! Conditions:: INITIAL */ + /*! Rule:: SUM */ + 200: 123, + + /*! Conditions:: INITIAL */ + /*! Rule:: TOTAL */ + 201: 124, + + /*! Conditions:: INITIAL */ + /*! Rule:: TABLE */ + 202: 176, + + /*! Conditions:: INITIAL */ + /*! Rule:: TABLES */ + 203: 176, + + /*! Conditions:: INITIAL */ + /*! Rule:: TARGET */ + 204: 224, + + /*! Conditions:: INITIAL */ + /*! Rule:: TEMP */ + 205: 178, + + /*! Conditions:: INITIAL */ + /*! Rule:: TEMPORARY */ + 206: 178, + + /*! Conditions:: INITIAL */ + /*! Rule:: TEXTSTRING */ + 207: 78, + + /*! Conditions:: INITIAL */ + /*! Rule:: THEN */ + 208: 147, + + /*! Conditions:: INITIAL */ + /*! Rule:: TIMEOUT */ + 209: 'TIMEOUT', + + /*! Conditions:: INITIAL */ + /*! Rule:: TO */ + 210: 53, + + /*! Conditions:: INITIAL */ + /*! Rule:: TOP */ + 211: 81, + + /*! Conditions:: INITIAL */ + /*! Rule:: TRAN */ + 212: 211, + + /*! Conditions:: INITIAL */ + /*! Rule:: TRANSACTION */ + 213: 211, + + /*! Conditions:: INITIAL */ + /*! Rule:: TRIGGER */ + 214: 231, + + /*! Conditions:: INITIAL */ + /*! Rule:: TRUE */ + 215: 136, + + /*! Conditions:: INITIAL */ + /*! Rule:: TRUNCATE */ + 216: 221, + + /*! Conditions:: INITIAL */ + /*! Rule:: UNION */ + 217: 59, + + /*! Conditions:: INITIAL */ + /*! Rule:: UNIQUE */ + 218: 74, + + /*! Conditions:: INITIAL */ + /*! Rule:: UNPIVOT */ + 219: 24, + + /*! Conditions:: INITIAL */ + /*! Rule:: UPDATE */ + 220: 170, + + /*! Conditions:: INITIAL */ + /*! Rule:: USE */ + 221: 198, + + /*! Conditions:: INITIAL */ + /*! Rule:: USING */ + 222: 97, + + /*! Conditions:: INITIAL */ + /*! Rule:: VALUE */ + 223: 54, + + /*! Conditions:: INITIAL */ + /*! Rule:: VALUES */ + 224: 174, + + /*! Conditions:: INITIAL */ + /*! Rule:: VERTEX */ + 225: 41, + + /*! Conditions:: INITIAL */ + /*! Rule:: VIEW */ + 226: 200, + + /*! Conditions:: INITIAL */ + /*! Rule:: WHEN */ + 227: 146, + + /*! Conditions:: INITIAL */ + /*! Rule:: WHERE */ + 228: 35, + + /*! Conditions:: INITIAL */ + /*! Rule:: WHILE */ + 229: 214, + + /*! Conditions:: INITIAL */ + /*! Rule:: WITH */ + 230: 16, + + /*! Conditions:: INITIAL */ + /*! Rule:: (\d*[.])?\d+[eE]\d+ */ + 232: 38, + + /*! Conditions:: INITIAL */ + /*! Rule:: (\d*[.])?\d+ */ + 233: 38, + + /*! Conditions:: INITIAL */ + /*! Rule:: -> */ + 234: 28, + + /*! Conditions:: INITIAL */ + /*! Rule:: # */ + 235: 44, + + /*! Conditions:: INITIAL */ + /*! Rule:: \+ */ + 236: 69, + + /*! Conditions:: INITIAL */ + /*! Rule:: - */ + 237: 155, + + /*! Conditions:: INITIAL */ + /*! Rule:: \* */ + 238: 70, + + /*! Conditions:: INITIAL */ + /*! Rule:: \/ */ + 239: 40, + + /*! Conditions:: INITIAL */ + /*! Rule:: % */ + 240: 45, + + /*! Conditions:: INITIAL */ + /*! Rule:: !=== */ + 241: 164, + + /*! Conditions:: INITIAL */ + /*! Rule:: === */ + 242: 161, + + /*! Conditions:: INITIAL */ + /*! Rule:: !== */ + 243: 163, + + /*! Conditions:: INITIAL */ + /*! Rule:: == */ + 244: 160, + + /*! Conditions:: INITIAL */ + /*! Rule:: >= */ + 245: 158, + + /*! Conditions:: INITIAL */ + /*! Rule:: & */ + 246: 156, + + /*! Conditions:: INITIAL */ + /*! Rule:: \| */ + 247: 157, + + /*! Conditions:: INITIAL */ + /*! Rule:: << */ + 248: 49, + + /*! Conditions:: INITIAL */ + /*! Rule:: >> */ + 249: 48, + + /*! Conditions:: INITIAL */ + /*! Rule:: > */ + 250: 46, + + /*! Conditions:: INITIAL */ + /*! Rule:: <= */ + 251: 159, + + /*! Conditions:: INITIAL */ + /*! Rule:: <> */ + 252: 162, + + /*! Conditions:: INITIAL */ + /*! Rule:: < */ + 253: 47, + + /*! Conditions:: INITIAL */ + /*! Rule:: = */ + 254: 34, + + /*! Conditions:: INITIAL */ + /*! Rule:: != */ + 255: 162, + + /*! Conditions:: INITIAL */ + /*! Rule:: \( */ + 256: 19, + + /*! Conditions:: INITIAL */ + /*! Rule:: \) */ + 257: 20, + + /*! Conditions:: INITIAL */ + /*! Rule:: @ */ + 258: 51, + + /*! Conditions:: INITIAL */ + /*! Rule:: \{ */ + 259: 207, + + /*! Conditions:: INITIAL */ + /*! Rule:: \} */ + 260: 208, + + /*! Conditions:: INITIAL */ + /*! Rule:: \] */ + 261: 142, + + /*! Conditions:: INITIAL */ + /*! Rule:: :- */ + 262: 228, + + /*! Conditions:: INITIAL */ + /*! Rule:: \?- */ + 263: 229, + + /*! Conditions:: INITIAL */ + /*! Rule:: \.\. */ + 264: 32, + + /*! Conditions:: INITIAL */ + /*! Rule:: \. */ + 265: 29, + + /*! Conditions:: INITIAL */ + /*! Rule:: , */ + 266: 17, + + /*! Conditions:: INITIAL */ + /*! Rule:: :: */ + 267: 168, + + /*! Conditions:: INITIAL */ + /*! Rule:: : */ + 268: 56, + + /*! Conditions:: INITIAL */ + /*! Rule:: ; */ + 269: 474, + + /*! Conditions:: INITIAL */ + /*! Rule:: \$ */ + 270: 50, + + /*! Conditions:: INITIAL */ + /*! Rule:: \? */ + 271: 71, + + /*! Conditions:: INITIAL */ + /*! Rule:: ! */ + 272: 43, + + /*! Conditions:: INITIAL */ + /*! Rule:: \^ */ + 273: 33, + + /*! Conditions:: INITIAL */ + /*! Rule:: ~ */ + 274: 150, + + /*! Conditions:: INITIAL */ + /*! Rule:: [0-9]*[a-zA-Z_]+[a-zA-Z_0-9]* */ + 275: 10, + + /*! Conditions:: INITIAL */ + /*! Rule:: $ */ + 276: 1, + + /*! Conditions:: INITIAL */ + /*! Rule:: . */ + 277: 'INVALID' + }, + + rules: [ + /* 0: */ /^(?:``([^`])+``)/i, + /* 1: */ /^(?:\[\?\])/i, + /* 2: */ /^(?:@\[)/i, + /* 3: */ /^(?:ARRAY\[)/i, + /* 4: */ /^(?:\[([^\]'])*?\])/i, + /* 5: */ /^(?:`([^'`])*?`)/i, + /* 6: */ /^(?:N(['](\\.|[^']|\\')*?['])+)/i, + /* 7: */ /^(?:X(['](\\.|[^']|\\')*?['])+)/i, + /* 8: */ /^(?:(['](\\.|[^']|\\')*?['])+)/i, + /* 9: */ /^(?:(["](\\.|[^"]|\\")*?["])+)/i, + /* 10: */ /^(?:--(.*?)($|\r\n|\r|\n))/i, + /* 11: */ /^(?:\s+)/i, + /* 12: */ /^(?:\|\|)/i, + /* 13: */ /^(?:\|)/i, + /* 14: */ /^(?:VALUE\s+OF\s+SEARCH)/i, + /* 15: */ /^(?:VALUE\s+OF\s+SELECT)/i, + /* 16: */ /^(?:ROW\s+OF\s+SELECT)/i, + /* 17: */ /^(?:COLUMN\s+OF\s+SELECT)/i, + /* 18: */ /^(?:MATRIX\s+OF\s+SELECT)/i, + /* 19: */ /^(?:INDEX\s+OF\s+SELECT)/i, + /* 20: */ /^(?:RECORDSET\s+OF\s+SELECT)/i, + /* 21: */ /^(?:TEXT\s+OF\s+SELECT)/i, + /* 22: */ /^(?:SELECT)/i, + /* 23: */ /^(?:ABSOLUTE)/i, + /* 24: */ /^(?:ACTION)/i, + /* 25: */ /^(?:ADD)/i, + /* 26: */ /^(?:AFTER)/i, + /* 27: */ /^(?:AGGR)/i, + /* 28: */ /^(?:AGGREGATE)/i, + /* 29: */ /^(?:AGGREGATOR)/i, + /* 30: */ /^(?:ALL)/i, + /* 31: */ /^(?:ALTER)/i, + /* 32: */ /^(?:AND)/i, + /* 33: */ /^(?:ANTI)/i, + /* 34: */ /^(?:ANY)/i, + /* 35: */ /^(?:APPLY)/i, + /* 36: */ /^(?:ARRAY)/i, + /* 37: */ /^(?:AS)/i, + /* 38: */ /^(?:ASSERT)/i, + /* 39: */ /^(?:ASC)/i, + /* 40: */ /^(?:ATTACH)/i, + /* 41: */ /^(?:AUTO(_)?INCREMENT)/i, + /* 42: */ /^(?:AVG)/i, + /* 43: */ /^(?:BEFORE)/i, + /* 44: */ /^(?:BEGIN)/i, + /* 45: */ /^(?:BETWEEN)/i, + /* 46: */ /^(?:BREAK)/i, + /* 47: */ /^(?:NOT\s+BETWEEN)/i, + /* 48: */ /^(?:NOT\s+LIKE)/i, + /* 49: */ /^(?:BY)/i, + /* 50: */ /^(?:~~\*)/i, + /* 51: */ /^(?:!~~\*)/i, + /* 52: */ /^(?:~~)/i, + /* 53: */ /^(?:!~~)/i, + /* 54: */ /^(?:ILIKE)/i, + /* 55: */ /^(?:NOT\s+ILIKE)/i, + /* 56: */ /^(?:CALL)/i, + /* 57: */ /^(?:CASE)/i, + /* 58: */ /^(?:CAST)/i, + /* 59: */ /^(?:CHECK)/i, + /* 60: */ /^(?:CLASS)/i, + /* 61: */ /^(?:CLOSE)/i, + /* 62: */ /^(?:COLLATE)/i, + /* 63: */ /^(?:COLUMN)/i, + /* 64: */ /^(?:COLUMNS)/i, + /* 65: */ /^(?:COMMIT)/i, + /* 66: */ /^(?:CONSTRAINT)/i, + /* 67: */ /^(?:CONTENT)/i, + /* 68: */ /^(?:CONTINUE)/i, + /* 69: */ /^(?:CONVERT)/i, + /* 70: */ /^(?:CORRESPONDING)/i, + /* 71: */ /^(?:COUNT)/i, + /* 72: */ /^(?:CREATE)/i, + /* 73: */ /^(?:CROSS)/i, + /* 74: */ /^(?:CUBE)/i, + /* 75: */ /^(?:CURRENT_TIMESTAMP)/i, + /* 76: */ /^(?:CURSOR)/i, + /* 77: */ /^(?:DATABASE(S)?)/i, + /* 78: */ /^(?:DATEADD)/i, + /* 79: */ /^(?:DATEDIFF)/i, + /* 80: */ /^(?:TIMESTAMPDIFF)/i, + /* 81: */ /^(?:DECLARE)/i, + /* 82: */ /^(?:DEFAULT)/i, + /* 83: */ /^(?:DELETE)/i, + /* 84: */ /^(?:DELETED)/i, + /* 85: */ /^(?:DESC)/i, + /* 86: */ /^(?:DETACH)/i, + /* 87: */ /^(?:DISTINCT)/i, + /* 88: */ /^(?:DROP)/i, + /* 89: */ /^(?:ECHO)/i, + /* 90: */ /^(?:EDGE)/i, + /* 91: */ /^(?:END)/i, + /* 92: */ /^(?:ENUM)/i, + /* 93: */ /^(?:ELSE)/i, + /* 94: */ /^(?:ESCAPE)/i, + /* 95: */ /^(?:EXCEPT)/i, + /* 96: */ /^(?:EXEC)/i, + /* 97: */ /^(?:EXECUTE)/i, + /* 98: */ /^(?:EXISTS)/i, + /* 99: */ /^(?:EXPLAIN)/i, + /* 100: */ /^(?:FALSE)/i, + /* 101: */ /^(?:FETCH)/i, + /* 102: */ /^(?:FIRST)/i, + /* 103: */ /^(?:FOR)/i, + /* 104: */ /^(?:FOREIGN)/i, + /* 105: */ /^(?:FROM)/i, + /* 106: */ /^(?:FULL)/i, + /* 107: */ /^(?:FUNCTION)/i, + /* 108: */ /^(?:GLOB)/i, + /* 109: */ /^(?:GO)/i, + /* 110: */ /^(?:GRAPH)/i, + /* 111: */ /^(?:GROUP)/i, + /* 112: */ /^(?:GROUPING)/i, + /* 113: */ /^(?:HAVING)/i, + /* 114: */ /^(?:IF)/i, + /* 115: */ /^(?:IDENTITY)/i, + /* 116: */ /^(?:IS)/i, + /* 117: */ /^(?:IN)/i, + /* 118: */ /^(?:INDEX)/i, + /* 119: */ /^(?:INDEXED)/i, + /* 120: */ /^(?:INNER)/i, + /* 121: */ /^(?:INSTEAD)/i, + /* 122: */ /^(?:INSERT)/i, + /* 123: */ /^(?:INSERTED)/i, + /* 124: */ /^(?:INTERSECT)/i, + /* 125: */ /^(?:INTERVAL)/i, + /* 126: */ /^(?:INTO)/i, + /* 127: */ /^(?:JOIN)/i, + /* 128: */ /^(?:KEY)/i, + /* 129: */ /^(?:LAST)/i, + /* 130: */ /^(?:LET)/i, + /* 131: */ /^(?:LEFT)/i, + /* 132: */ /^(?:LIKE)/i, + /* 133: */ /^(?:LIMIT)/i, + /* 134: */ /^(?:MATCHED)/i, + /* 135: */ /^(?:MATRIX)/i, + /* 136: */ /^(?:MAX(\s+)?(?=\())/i, + /* 137: */ /^(?:MAX(\s+)?(?=(,|\))))/i, + /* 138: */ /^(?:MIN(\s+)?(?=\())/i, + /* 139: */ /^(?:MERGE)/i, + /* 140: */ /^(?:MINUS)/i, + /* 141: */ /^(?:MODIFY)/i, + /* 142: */ /^(?:NATURAL)/i, + /* 143: */ /^(?:NEXT)/i, + /* 144: */ /^(?:NEW)/i, + /* 145: */ /^(?:NOCASE)/i, + /* 146: */ /^(?:NO)/i, + /* 147: */ /^(?:NOT)/i, + /* 148: */ /^(?:NULL)/i, + /* 149: */ /^(?:NULLS)/i, + /* 150: */ /^(?:OFF)/i, + /* 151: */ /^(?:ON)/i, + /* 152: */ /^(?:ONLY)/i, + /* 153: */ /^(?:OF)/i, + /* 154: */ /^(?:OFFSET)/i, + /* 155: */ /^(?:OPEN)/i, + /* 156: */ /^(?:OPTION)/i, + /* 157: */ /^(?:OR)/i, + /* 158: */ /^(?:ORDER)/i, + /* 159: */ /^(?:OUTER)/i, + /* 160: */ /^(?:OVER)/i, + /* 161: */ /^(?:PATH)/i, + /* 162: */ /^(?:PARTITION)/i, + /* 163: */ /^(?:PERCENT)/i, + /* 164: */ /^(?:PIVOT)/i, + /* 165: */ /^(?:PLAN)/i, + /* 166: */ /^(?:PRIMARY)/i, + /* 167: */ /^(?:PRINT)/i, + /* 168: */ /^(?:PRIOR)/i, + /* 169: */ /^(?:QUERY)/i, + /* 170: */ /^(?:READ)/i, + /* 171: */ /^(?:RECORDSET)/i, + /* 172: */ /^(?:REDUCE)/i, + /* 173: */ /^(?:REFERENCES)/i, + /* 174: */ /^(?:REGEXP)/i, + /* 175: */ /^(?:REINDEX)/i, + /* 176: */ /^(?:RELATIVE)/i, + /* 177: */ /^(?:REMOVE)/i, + /* 178: */ /^(?:RENAME)/i, + /* 179: */ /^(?:REPEAT)/i, + /* 180: */ /^(?:REPLACE)/i, + /* 181: */ /^(?:REQUIRE)/i, + /* 182: */ /^(?:RESTORE)/i, + /* 183: */ /^(?:RETURN)/i, + /* 184: */ /^(?:RETURNS)/i, + /* 185: */ /^(?:RIGHT)/i, + /* 186: */ /^(?:ROLLBACK)/i, + /* 187: */ /^(?:ROLLUP)/i, + /* 188: */ /^(?:ROW)/i, + /* 189: */ /^(?:ROWS)/i, + /* 190: */ /^(?:SCHEMA(S)?)/i, + /* 191: */ /^(?:SEARCH)/i, + /* 192: */ /^(?:SEMI)/i, + /* 193: */ /^(?:SET)/i, + /* 194: */ /^(?:SETS)/i, + /* 195: */ /^(?:SHOW)/i, + /* 196: */ /^(?:SOME)/i, + /* 197: */ /^(?:SOURCE)/i, + /* 198: */ /^(?:STRATEGY)/i, + /* 199: */ /^(?:STORE)/i, + /* 200: */ /^(?:SUM)/i, + /* 201: */ /^(?:TOTAL)/i, + /* 202: */ /^(?:TABLE)/i, + /* 203: */ /^(?:TABLES)/i, + /* 204: */ /^(?:TARGET)/i, + /* 205: */ /^(?:TEMP)/i, + /* 206: */ /^(?:TEMPORARY)/i, + /* 207: */ /^(?:TEXTSTRING)/i, + /* 208: */ /^(?:THEN)/i, + /* 209: */ /^(?:TIMEOUT)/i, + /* 210: */ /^(?:TO)/i, + /* 211: */ /^(?:TOP)/i, + /* 212: */ /^(?:TRAN)/i, + /* 213: */ /^(?:TRANSACTION)/i, + /* 214: */ /^(?:TRIGGER)/i, + /* 215: */ /^(?:TRUE)/i, + /* 216: */ /^(?:TRUNCATE)/i, + /* 217: */ /^(?:UNION)/i, + /* 218: */ /^(?:UNIQUE)/i, + /* 219: */ /^(?:UNPIVOT)/i, + /* 220: */ /^(?:UPDATE)/i, + /* 221: */ /^(?:USE)/i, + /* 222: */ /^(?:USING)/i, + /* 223: */ /^(?:VALUE)/i, + /* 224: */ /^(?:VALUES)/i, + /* 225: */ /^(?:VERTEX)/i, + /* 226: */ /^(?:VIEW)/i, + /* 227: */ /^(?:WHEN)/i, + /* 228: */ /^(?:WHERE)/i, + /* 229: */ /^(?:WHILE)/i, + /* 230: */ /^(?:WITH)/i, + /* 231: */ /^(?:WORK)/i, + /* 232: */ /^(?:(\d*[.])?\d+[eE]\d+)/i, + /* 233: */ /^(?:(\d*[.])?\d+)/i, + /* 234: */ /^(?:->)/i, + /* 235: */ /^(?:#)/i, + /* 236: */ /^(?:\+)/i, + /* 237: */ /^(?:-)/i, + /* 238: */ /^(?:\*)/i, + /* 239: */ /^(?:\/)/i, + /* 240: */ /^(?:%)/i, + /* 241: */ /^(?:!===)/i, + /* 242: */ /^(?:===)/i, + /* 243: */ /^(?:!==)/i, + /* 244: */ /^(?:==)/i, + /* 245: */ /^(?:>=)/i, + /* 246: */ /^(?:&)/i, + /* 247: */ /^(?:\|)/i, + /* 248: */ /^(?:<<)/i, + /* 249: */ /^(?:>>)/i, + /* 250: */ /^(?:>)/i, + /* 251: */ /^(?:<=)/i, + /* 252: */ /^(?:<>)/i, + /* 253: */ /^(?:<)/i, + /* 254: */ /^(?:=)/i, + /* 255: */ /^(?:!=)/i, + /* 256: */ /^(?:\()/i, + /* 257: */ /^(?:\))/i, + /* 258: */ /^(?:@)/i, + /* 259: */ /^(?:\{)/i, + /* 260: */ /^(?:\})/i, + /* 261: */ /^(?:\])/i, + /* 262: */ /^(?::-)/i, + /* 263: */ /^(?:\?-)/i, + /* 264: */ /^(?:\.\.)/i, + /* 265: */ /^(?:\.)/i, + /* 266: */ /^(?:,)/i, + /* 267: */ /^(?:::)/i, + /* 268: */ /^(?::)/i, + /* 269: */ /^(?:;)/i, + /* 270: */ /^(?:\$)/i, + /* 271: */ /^(?:\?)/i, + /* 272: */ /^(?:!)/i, + /* 273: */ /^(?:\^)/i, + /* 274: */ /^(?:~)/i, + /* 275: */ /^(?:\d*[^\W\d]+\w*)/i, + /* 276: */ /^(?:$)/i, + /* 277: */ /^(?:.)/i + ], + + conditions: { + 'INITIAL': { + rules: [ + 0, + 1, + 2, + 3, + 4, + 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, + 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, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 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, + 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 + ], + + inclusive: true + } + } + }; + + return lexer; +}(); +parser.lexer = lexer; + +// from https://www.postgresql.org/docs/current/static/sql-keywords-appendix.html +// JSON.stringify([].slice.call(document.querySelectorAll('tr')).filter(x => x.children.length == 5 && x.children[2].innerText == 'reserved').map(x => x.children[0].innerText)) + +var nonReserved = ["A","ABSENT","ABSOLUTE","ACCORDING","ACTION","ADA","ADD","ADMIN","AFTER","ALWAYS","ASC","ASSERTION","ASSIGNMENT","ATTRIBUTE","ATTRIBUTES","BASE64","BEFORE","BERNOULLI","BLOCKED","BOM","BREADTH","C","CASCADE","CATALOG","CATALOG_NAME","CHAIN","CHARACTERISTICS","CHARACTERS","CHARACTER_SET_CATALOG","CHARACTER_SET_NAME","CHARACTER_SET_SCHEMA","CLASS_ORIGIN","COBOL","COLLATION","COLLATION_CATALOG","COLLATION_NAME","COLLATION_SCHEMA","COLUMNS","COLUMN_NAME","COMMAND_FUNCTION","COMMAND_FUNCTION_CODE","COMMITTED","CONDITION_NUMBER","CONNECTION","CONNECTION_NAME","CONSTRAINTS","CONSTRAINT_CATALOG","CONSTRAINT_NAME","CONSTRAINT_SCHEMA","CONSTRUCTOR","CONTENT","CONTINUE","CONTROL","CURSOR_NAME","DATA","DATETIME_INTERVAL_CODE","DATETIME_INTERVAL_PRECISION","DB","DEFAULTS","DEFERRABLE","DEFERRED","DEFINED","DEFINER","DEGREE","DEPTH","DERIVED","DESC","DESCRIPTOR","DIAGNOSTICS","DISPATCH","DOCUMENT","DOMAIN","DYNAMIC_FUNCTION","DYNAMIC_FUNCTION_CODE","EMPTY","ENCODING","ENFORCED","EXCLUDE","EXCLUDING","EXPRESSION","FILE","FINAL","FIRST","FLAG","FOLLOWING","FORTRAN","FOUND","FS","G","GENERAL","GENERATED","GO","GOTO","GRANTED","HEX","HIERARCHY","ID","IGNORE","IMMEDIATE","IMMEDIATELY","IMPLEMENTATION","INCLUDING","INCREMENT","INDENT","INITIALLY","INPUT","INSTANCE","INSTANTIABLE","INSTEAD","INTEGRITY","INVOKER","ISOLATION","K","KEY","KEY_MEMBER","KEY_TYPE","LAST","LENGTH","LEVEL","LIBRARY","LIMIT","LINK","LOCATION","LOCATOR","M","MAP","MAPPING","MATCHED","MAXVALUE","MESSAGE_LENGTH","MESSAGE_OCTET_LENGTH","MESSAGE_TEXT","MINVALUE","MORE","MUMPS","NAME","NAMES","NAMESPACE","NESTING","NEXT","NFC","NFD","NFKC","NFKD","NIL","NORMALIZED","NULLABLE","NULLS","NUMBER","OBJECT","OCTETS","OFF","OPTION","OPTIONS","ORDERING","ORDINALITY","OTHERS","OUTPUT","OVERRIDING","P","PAD","PARAMETER_MODE","PARAMETER_NAME","PARAMETER_ORDINAL_POSITION","PARAMETER_SPECIFIC_CATALOG","PARAMETER_SPECIFIC_NAME","PARAMETER_SPECIFIC_SCHEMA","PARTIAL","PASCAL","PASSING","PASSTHROUGH","PATH","PERMISSION","PLACING","PLI","PRECEDING","PRESERVE","PRIOR","PRIVILEGES","PUBLIC","READ","RECOVERY","RELATIVE","REPEATABLE","REQUIRING","RESPECT","RESTART","RESTORE","RESTRICT","RETURNED_CARDINALITY","RETURNED_LENGTH","RETURNED_OCTET_LENGTH","RETURNED_SQLSTATE","RETURNING","ROLE","ROUTINE","ROUTINE_CATALOG","ROUTINE_NAME","ROUTINE_SCHEMA","ROW_COUNT","SCALE","SCHEMA","SCHEMA_NAME","SCOPE_CATALOG","SCOPE_NAME","SCOPE_SCHEMA","SECTION","SECURITY","SELECTIVE","SELF","SEQUENCE","SERIALIZABLE","SERVER","SERVER_NAME","SESSION","SETS","SIMPLE","SIZE","SOURCE","SPACE","SPECIFIC_NAME","STANDALONE","STATE","STATEMENT","STRIP","STRUCTURE","STYLE","SUBCLASS_ORIGIN","T","TABLE_NAME","TEMPORARY","TIES","TOKEN","TOP_LEVEL_COUNT","TRANSACTION","TRANSACTIONS_COMMITTED","TRANSACTIONS_ROLLED_BACK","TRANSACTION_ACTIVE","TRANSFORM","TRANSFORMS","TRIGGER_CATALOG","TRIGGER_NAME","TRIGGER_SCHEMA","TYPE","UNBOUNDED","UNCOMMITTED","UNDER","UNLINK","UNNAMED","UNTYPED","URI","USAGE","USER_DEFINED_TYPE_CATALOG","USER_DEFINED_TYPE_CODE","USER_DEFINED_TYPE_NAME","USER_DEFINED_TYPE_SCHEMA","VALID","VERSION","VIEW","WHITESPACE","WORK","WRAPPER","WRITE","XMLDECLARATION","XMLSCHEMA","YES","ZONE"] + +parser.parseError = function(str, hash) { + if (hash.expected && hash.expected.indexOf("'LITERAL'") > -1 && /[a-zA-Z_][a-zA-Z_0-9]*/.test(hash.token) && nonReserved.indexOf(hash.token) > -1) { + return + } + throw new SyntaxError(str) +} + +function Parser() { + this.yy = {}; +} +Parser.prototype = parser; +parser.Parser = Parser; + +return new Parser(); +})(); + + + + +if (typeof require !== 'undefined' && typeof exports !== 'undefined') { + exports.parser = alasqlparser; + exports.Parser = alasqlparser.Parser; + exports.parse = function () { + return alasqlparser.parse.apply(alasqlparser, arguments); + }; + } -} \ No newline at end of file diff --git a/test/test238.json b/test/test238.json index 5bb1abba08..4dca1cc0b0 100644 --- a/test/test238.json +++ b/test/test238.json @@ -1 +1 @@ -[{"100": 100}] +[{"100":100}] \ No newline at end of file