diff --git a/lib/coffee_script/grammar.js b/lib/coffee_script/grammar.js new file mode 100644 index 00000000..5ab973a4 --- /dev/null +++ b/lib/coffee_script/grammar.js @@ -0,0 +1,570 @@ +(function(){ + var Parser, __a, __b, __c, __d, __e, __f, bnf, grammar, name, non_terminal, o, operators, option, parser, part, posix, tokens, unwrap; + var __hasProp = Object.prototype.hasOwnProperty; + Parser = require('jison').Parser; + // DSL =================================================================== + // Detect functions: [ + unwrap = /function\s*\(\)\s*\{\s*return\s*([\s\S]*);\s*\}/; + // Quickie DSL for Jison access. + o = function o(pattern_string, func, options) { + var match; + if (func) { + func = (match = (func + "").match(unwrap)) ? match[1] : '(' + func + '())'; + return [pattern_string, '$$ = ' + func + ';', options]; + } else { + return [pattern_string, '$$ = $1;', options]; + } + }; + // Precedence =========================================================== + operators = [["left", '?'], ["nonassoc", 'UMINUS', 'UPLUS', 'NOT', '!', '!!', '~', '++', '--'], ["left", '*', '/', '%'], ["left", '+', '-'], ["left", '<<', '>>', '>>>'], ["left", '&', '|', '^'], ["left", '<=', '<', '>', '>='], ["right", 'DELETE', 'INSTANCEOF', 'TYPEOF'], ["right", '==', '!=', 'IS', 'ISNT'], ["left", '&&', '||', 'AND', 'OR'], ["right", '-=', '+=', '/=', '*=', '%=', '||=', '&&=', '?='], ["left", '.'], ["right", 'INDENT'], ["left", 'OUTDENT'], ["right", 'WHEN', 'LEADING_WHEN', 'IN', 'OF', 'BY'], ["right", 'THROW', 'FOR', 'NEW', 'SUPER'], ["left", 'EXTENDS'], ["right", 'ASSIGN', 'RETURN'], ["right", '->', '=>', 'UNLESS', 'IF', 'ELSE', 'WHILE']]; + // Grammar ============================================================== + grammar = { + // All parsing will end in this rule, being the trunk of the AST. + Root: [o("", function() { + return new Expressions(); + }), o("TERMINATOR", function() { + return new Expressions(); + }), o("Expressions"), o("Block TERMINATOR") + ], + // Any list of expressions or method body, seperated by line breaks or semis. + Expressions: [o("Expression", function() { + return Expressions.wrap([$1]); + }), o("Expressions TERMINATOR Expression", function() { + return $1.push($3); + }), o("Expressions TERMINATOR") + ], + // All types of expressions in our language. The basic unit of CoffeeScript + // is the expression. + Expression: [o("Value"), o("Call"), o("Code"), o("Operation"), o("Assign"), o("If"), o("Try"), o("Throw"), o("Return"), o("While"), o("For"), o("Switch"), o("Extends"), o("Splat"), o("Existence"), o("Comment")], + // A block of expressions. Note that the Rewriter will convert some postfix + // forms into blocks for us, by altering the token stream. + Block: [o("INDENT Expressions OUTDENT", function() { + return $2; + }), o("INDENT OUTDENT", function() { + return new Expressions(); + }) + ], + Identifier: [o("IDENTIFIER", function() { + return new LiteralNode(yytext); + }) + ], + AlphaNumeric: [o("NUMBER", function() { + return new LiteralNode(yytext); + }), o("STRING", function() { + return new LiteralNode(yytext); + }) + ], + // All hard-coded values. These can be printed straight to JavaScript. + Literal: [o("AlphaNumeric", function() { + return $1; + }), o("JS", function() { + return new LiteralNode(yytext); + }), o("REGEX", function() { + return new LiteralNode(yytext); + }), o("BREAK", function() { + return new LiteralNode(yytext); + }), o("CONTINUE", function() { + return new LiteralNode(yytext); + }), o("ARGUMENTS", function() { + return new LiteralNode(yytext); + }), o("TRUE", function() { + return new LiteralNode(true); + }), o("FALSE", function() { + return new LiteralNode(false); + }), o("YES", function() { + return new LiteralNode(true); + }), o("NO", function() { + return new LiteralNode(false); + }), o("ON", function() { + return new LiteralNode(true); + }), o("OFF", function() { + return new LiteralNode(false); + }) + ], + // Assignment to a variable (or index). + Assign: [o("Value ASSIGN Expression", function() { + return new AssignNode($1, $3); + }) + ], + // Assignment within an object literal (can be quoted). + AssignObj: [o("Identifier ASSIGN Expression", function() { + return new AssignNode(new ValueNode($1), $3, 'object'); + }), o("AlphaNumeric ASSIGN Expression", function() { + return new AssignNode(new ValueNode($1), $3, 'object'); + }), o("Comment") + ], + // A return statement. + Return: [o("RETURN Expression", function() { + return new ReturnNode($2); + }), o("RETURN", function() { + return new ReturnNode(new ValueNode(new LiteralNode('null'))); + }) + ], + // A comment. + Comment: [o("COMMENT", function() { + return new CommentNode(yytext); + }) + ], + // Arithmetic and logical operators + // For Ruby's Operator precedence, see: [ + // https://www.cs.auckland.ac.nz/references/ruby/ProgrammingRuby/language.html + Operation: [o("! Expression", function() { + return new OpNode('!', $2); + }), o("!! Expression", function() { + return new OpNode('!!', $2); + }), o("- Expression", (function() { + return new OpNode('-', $2); + }), { + prec: 'UMINUS' + }), o("+ Expression", (function() { + return new OpNode('+', $2); + }), { + prec: 'UPLUS' + }), o("NOT Expression", function() { + return new OpNode('not', $2); + }), o("~ Expression", function() { + return new OpNode('~', $2); + }), o("-- Expression", function() { + return new OpNode('--', $2); + }), o("++ Expression", function() { + return new OpNode('++', $2); + }), o("DELETE Expression", function() { + return new OpNode('delete', $2); + }), o("TYPEOF Expression", function() { + return new OpNode('typeof', $2); + }), o("Expression --", function() { + return new OpNode('--', $1, null, true); + }), o("Expression ++", function() { + return new OpNode('++', $1, null, true); + }), o("Expression * Expression", function() { + return new OpNode('*', $1, $3); + }), o("Expression / Expression", function() { + return new OpNode('/', $1, $3); + }), o("Expression % Expression", function() { + return new OpNode('%', $1, $3); + }), o("Expression + Expression", function() { + return new OpNode('+', $1, $3); + }), o("Expression - Expression", function() { + return new OpNode('-', $1, $3); + }), o("Expression << Expression", function() { + return new OpNode('<<', $1, $3); + }), o("Expression >> Expression", function() { + return new OpNode('>>', $1, $3); + }), o("Expression >>> Expression", function() { + return new OpNode('>>>', $1, $3); + }), o("Expression & Expression", function() { + return new OpNode('&', $1, $3); + }), o("Expression | Expression", function() { + return new OpNode('|', $1, $3); + }), o("Expression ^ Expression", function() { + return new OpNode('^', $1, $3); + }), o("Expression <= Expression", function() { + return new OpNode('<=', $1, $3); + }), o("Expression < Expression", function() { + return new OpNode('<', $1, $3); + }), o("Expression > Expression", function() { + return new OpNode('>', $1, $3); + }), o("Expression >= Expression", function() { + return new OpNode('>=', $1, $3); + }), o("Expression == Expression", function() { + return new OpNode('==', $1, $3); + }), o("Expression != Expression", function() { + return new OpNode('!=', $1, $3); + }), o("Expression IS Expression", function() { + return new OpNode('IS', $1, $3); + }), o("Expression ISNT Expression", function() { + return new OpNode('ISNT', $1, $3); + }), o("Expression && Expression", function() { + return new OpNode('&&', $1, $3); + }), o("Expression || Expression", function() { + return new OpNode('||', $1, $3); + }), o("Expression AND Expression", function() { + return new OpNode('AND', $1, $3); + }), o("Expression OR Expression", function() { + return new OpNode('OR', $1, $3); + }), o("Expression ? Expression", function() { + return new OpNode('?', $1, $3); + }), o("Expression -= Expression", function() { + return new OpNode('-=', $1, $3); + }), o("Expression += Expression", function() { + return new OpNode('+=', $1, $3); + }), o("Expression /= Expression", function() { + return new OpNode('/=', $1, $3); + }), o("Expression *= Expression", function() { + return new OpNode('*=', $1, $3); + }), o("Expression %= Expression", function() { + return new OpNode('%=', $1, $3); + }), o("Expression ||= Expression", function() { + return new OpNode('||=', $1, $3); + }), o("Expression &&= Expression", function() { + return new OpNode('&&=', $1, $3); + }), o("Expression ?= Expression", function() { + return new OpNode('?=', $1, $3); + }), o("Expression INSTANCEOF Expression", function() { + return new OpNode('INSTANCEOF', $1, $3); + }), o("Expression IN Expression", function() { + return new OpNode('IN', $1, $3); + }) + ], + // The existence operator. + Existence: [o("Expression ?", function() { + return new ExistenceNode($1); + }) + ], + // Function definition. + Code: [o("PARAM_START ParamList PARAM_END FuncGlyph Block", function() { + return new CodeNode($2, $5, $4); + }), o("FuncGlyph Block", function() { + return new CodeNode([], $2, $1); + }) + ], + // The symbols to signify functions, and bound functions. + FuncGlyph: [o("->", function() { + return 'func'; + }), o("=>", function() { + return 'boundfunc'; + }) + ], + // The parameters to a function definition. + ParamList: [o("Param", function() { + return [$1]; + }), o("ParamList , Param", function() { + return $1.concat([$3]); + }) + ], + // A Parameter (or ParamSplat) in a function definition. + Param: [o("PARAM", function() { + return yytext; + }), o("Param . . .", function() { + return new SplatNode($1); + }) + ], + // A regular splat. + Splat: [o("Expression . . .", function() { + return new SplatNode($1); + }) + ], + // Expressions that can be treated as values. + Value: [o("Identifier", function() { + return new ValueNode($1); + }), o("Literal", function() { + return new ValueNode($1); + }), o("Array", function() { + return new ValueNode($1); + }), o("Object", function() { + return new ValueNode($1); + }), o("Parenthetical", function() { + return new ValueNode($1); + }), o("Range", function() { + return new ValueNode($1); + }), o("This", function() { + return new ValueNode($1); + }), o("Value Accessor", function() { + return $1.push($2); + }), o("Invocation Accessor", function() { + return new ValueNode($1, [$2]); + }) + ], + // Accessing into an object or array, through dot or index notation. + Accessor: [o("PROPERTY_ACCESS Identifier", function() { + return new AccessorNode($2); + }), o("PROTOTYPE_ACCESS Identifier", function() { + return new AccessorNode($2, 'prototype'); + }), o("SOAK_ACCESS Identifier", function() { + return new AccessorNode($2, 'soak'); + }), o("Index"), o("Slice", function() { + return new SliceNode($1); + }) + ], + // Indexing into an object or array. + Index: [o("INDEX_START Expression INDEX_END", function() { + return new IndexNode($2); + }) + ], + // An object literal. + Object: [o("{ AssignList }", function() { + return new ObjectNode($2); + }) + ], + // Assignment within an object literal (comma or newline separated). + AssignList: [o("", function() { + return []; + }), o("AssignObj", function() { + return [$1]; + }), o("AssignList , AssignObj", function() { + return $1.concat([$3]); + }), o("AssignList TERMINATOR AssignObj", function() { + return $1.concat([$3]); + }), o("AssignList , TERMINATOR AssignObj", function() { + return $1.concat([$4]); + }), o("INDENT AssignList OUTDENT", function() { + return $2; + }) + ], + // All flavors of function call (instantiation, super, and regular). + Call: [o("Invocation", function() { + return $1; + }), o("NEW Invocation", function() { + return $2.new_instance(); + }), o("Super", function() { + return $1; + }) + ], + // Extending an object's prototype. + Extends: [o("Value EXTENDS Value", function() { + return new ExtendsNode($1, $3); + }) + ], + // A generic function invocation. + Invocation: [o("Value Arguments", function() { + return new CallNode($1, $2); + }), o("Invocation Arguments", function() { + return new CallNode($1, $2); + }) + ], + // The list of arguments to a function invocation. + Arguments: [o("CALL_START ArgList CALL_END", function() { + return $2; + }) + ], + // Calling super. + Super: [o("SUPER CALL_START ArgList CALL_END", function() { + return new CallNode('super', $3); + }) + ], + // This references, either naked or to a property. + This: [o("@", function() { + return new ThisNode(); + }), o("@ Identifier", function() { + return new ThisNode($2); + }) + ], + // The range literal. + Range: [o("[ Expression . . Expression ]", function() { + return new RangeNode($2, $5); + }), o("[ Expression . . . Expression ]", function() { + return new RangeNode($2, $6, true); + }) + ], + // The slice literal. + Slice: [o("INDEX_START Expression . . Expression INDEX_END", function() { + return new RangeNode($2, $5); + }), o("INDEX_START Expression . . . Expression INDEX_END", function() { + return new RangeNode($2, $6, true); + }) + ], + // The array literal. + Array: [o("[ ArgList ]", function() { + return new ArrayNode($2); + }) + ], + // A list of arguments to a method call, or as the contents of an array. + ArgList: [o("", function() { + return []; + }), o("Expression", function() { + return [$1]; + }), o("INDENT Expression", function() { + return [$2]; + }), o("ArgList , Expression", function() { + return $1.concat([$3]); + }), o("ArgList TERMINATOR Expression", function() { + return $1.concat([$3]); + }), o("ArgList , TERMINATOR Expression", function() { + return $1.concat([$4]); + }), o("ArgList , INDENT Expression", function() { + return $1.concat([$4]); + }), o("ArgList OUTDENT", function() { + return $1; + }) + ], + // Just simple, comma-separated, required arguments (no fancy syntax). + SimpleArgs: [o("Expression", function() { + return $1; + }), o("SimpleArgs , Expression", function() { + return ([$1].push($3)).reduce(function(a, b) { + return a.concat(b); + }); + }) + ], + // Try/catch/finally exception handling blocks. + Try: [o("TRY Block Catch", function() { + return new TryNode($2, $3[0], $3[1]); + }), o("TRY Block FINALLY Block", function() { + return new TryNode($2, null, null, $4); + }), o("TRY Block Catch FINALLY Block", function() { + return new TryNode($2, $3[0], $3[1], $5); + }) + ], + // A catch clause. + Catch: [o("CATCH Identifier Block", function() { + return [$2, $3]; + }) + ], + // Throw an exception. + Throw: [o("THROW Expression", function() { + return new ThrowNode($2); + }) + ], + // Parenthetical expressions. + Parenthetical: [o("( Expression )", function() { + return new ParentheticalNode($2); + }) + ], + // The while loop. (there is no do..while). + While: [o("WHILE Expression Block", function() { + return new WhileNode($2, $3); + }), o("WHILE Expression", function() { + return new WhileNode($2, null); + }), o("Expression WHILE Expression", function() { + return new WhileNode($3, Expressions.wrap([$1])); + }) + ], + // Array comprehensions, including guard and current index. + // Looks a little confusing, check nodes.rb for the arguments to ForNode. + For: [o("Expression FOR ForVariables ForSource", function() { + return new ForNode($1, $4, $3[0], $3[1]); + }), o("FOR ForVariables ForSource Block", function() { + return new ForNode($4, $3, $2[0], $2[1]); + }) + ], + // An array comprehension has variables for the current element and index. + ForVariables: [o("Identifier", function() { + return [$1]; + }), o("Identifier , Identifier", function() { + return [$1, $3]; + }) + ], + // The source of the array comprehension can optionally be filtered. + ForSource: [o("IN Expression", function() { + return { + source: $2 + }; + }), o("OF Expression", function() { + return { + source: $2, + object: true + }; + }), o("ForSource WHEN Expression", function() { + $1.filter = $3; + return $1; + }), o("ForSource BY Expression", function() { + $1.step = $3; + return $1; + }) + ], + // Switch/When blocks. + Switch: [o("SWITCH Expression INDENT Whens OUTDENT", function() { + return $4.rewrite_condition($2); + }), o("SWITCH Expression INDENT Whens ELSE Block OUTDENT", function() { + return $4.rewrite_condition($2).add_else($6); + }) + ], + // The inner list of whens. + Whens: [o("When", function() { + return $1; + }), o("Whens When", function() { + return $1.push($2); + }) + ], + // An individual when. + When: [o("LEADING_WHEN SimpleArgs Block", function() { + return new IfNode($2, $3, null, { + statement: true + }); + }), o("LEADING_WHEN SimpleArgs Block TERMINATOR", function() { + return new IfNode($2, $3, null, { + statement: true + }); + }), o("Comment TERMINATOR When", function() { + return $3.comment = $1; + }) + ], + // The most basic form of "if". + IfBlock: [o("IF Expression Block", function() { + return new IfNode($2, $3); + }) + ], + // An elsif portion of an if-else block. + ElsIf: [o("ELSE IfBlock", function() { + return $2.force_statement(); + }) + ], + // Multiple elsifs can be chained together. + ElsIfs: [o("ElsIf", function() { + return $1; + }), o("ElsIfs ElsIf", function() { + return $1.add_else($2); + }) + ], + // Terminating else bodies are strictly optional. + ElseBody: [o("", function() { + return null; + }), o("ELSE Block", function() { + return $2; + }) + ], + // All the alternatives for ending an if-else block. + IfEnd: [o("ElseBody", function() { + return $1; + }), o("ElsIfs ElseBody", function() { + return $1.add_else($2); + }) + ], + // The full complement of if blocks, including postfix one-liner ifs and unlesses. + If: [o("IfBlock IfEnd", function() { + return $1.add_else($2); + }), o("Expression IF Expression", function() { + return new IfNode($3, Expressions.wrap([$1]), null, { + statement: true + }); + }), o("Expression UNLESS Expression", function() { + return new IfNode($3, Expressions.wrap([$1]), null, { + statement: true, + invert: true + }); + }) + ] + }; + // Helpers ============================================================== + // Make the Jison parser. + bnf = { + }; + tokens = []; + __a = grammar; + for (name in __a) { + non_terminal = __a[name]; + if (__hasProp.call(__a, name)) { + bnf[name] = (function() { + __b = []; __c = non_terminal; + for (__d = 0; __d < __c.length; __d++) { + option = __c[__d]; + __b.push((function() { + __e = option[0].split(" "); + for (__f = 0; __f < __e.length; __f++) { + part = __e[__f]; + !grammar[part] ? tokens.push(part) : null; + } + name === "Root" ? (option[1] = "return " + option[1]) : null; + return option; + }).call(this)); + } + return __b; + }).call(this); + } + } + tokens = tokens.join(" "); + parser = new Parser({ + tokens: tokens, + bnf: bnf, + operators: operators, + startSymbol: 'Root' + }, { + debug: false + }); + // Save the parser to a file. + puts(parser.generate()); + posix = require('posix'); + posix.open('parser.js', process.O_CREAT | process.O_WRONLY, 0755).addCallback(function(fd) { + return posix.write(fd, parser.generate()); + }); +})(); \ No newline at end of file diff --git a/lib/coffee_script/parser.js b/lib/coffee_script/parser.js old mode 100644 new mode 100755 index 4d5732f9..368a49f4 --- a/lib/coffee_script/parser.js +++ b/lib/coffee_script/parser.js @@ -1,575 +1,538 @@ -(function(){ - var Parser, __a, __b, __c, __d, __e, __f, bnf, grammar, name, non_terminal, o, operators, option, parser, part, tokens, unwrap; - var __hasProp = Object.prototype.hasOwnProperty; - Parser = require('jison').Parser; - process.mixin(require('./nodes')); - // DSL =================================================================== - // Detect functions: [ - unwrap = /function\s*\(\)\s*\{\s*return\s*([\s\S]*);\s*\}/; - // Quickie DSL for Jison access. - o = function o(pattern_string, func, options) { - var match; - if (func) { - func = (match = (func + "").match(unwrap)) ? match[1] : '(' + func + '())'; - return [pattern_string, '$$ = ' + func + ';', options]; - } else { - return [pattern_string, '$$ = $1;', options]; - } - }; - // Precedence =========================================================== - operators = [["left", '?'], ["nonassoc", 'UMINUS', 'UPLUS', 'NOT', '!', '!!', '~', '++', '--'], ["left", '*', '/', '%'], ["left", '+', '-'], ["left", '<<', '>>', '>>>'], ["left", '&', '|', '^'], ["left", '<=', '<', '>', '>='], ["right", 'DELETE', 'INSTANCEOF', 'TYPEOF'], ["right", '==', '!=', 'IS', 'ISNT'], ["left", '&&', '||', 'AND', 'OR'], ["right", '-=', '+=', '/=', '*=', '%=', '||=', '&&=', '?='], ["left", '.'], ["right", 'INDENT'], ["left", 'OUTDENT'], ["right", 'WHEN', 'LEADING_WHEN', 'IN', 'OF', 'BY'], ["right", 'THROW', 'FOR', 'NEW', 'SUPER'], ["left", 'EXTENDS'], ["right", 'ASSIGN', 'RETURN'], ["right", '->', '=>', 'UNLESS', 'IF', 'ELSE', 'WHILE']]; - // Grammar ============================================================== - grammar = { - // All parsing will end in this rule, being the trunk of the AST. - Root: [o("", function() { - return new Expressions(); - }), o("TERMINATOR", function() { - return new Expressions(); - }), o("Expressions"), o("Block TERMINATOR") - ], - // Any list of expressions or method body, seperated by line breaks or semis. - Expressions: [o("Expression", function() { - return Expressions.wrap([$1]); - }), o("Expressions TERMINATOR Expression", function() { - return $1.push($3); - }), o("Expressions TERMINATOR") - ], - // All types of expressions in our language. The basic unit of CoffeeScript - // is the expression. - Expression: [o("Value"), o("Call"), o("Code"), o("Operation"), o("Assign"), o("If"), o("Try"), o("Throw"), o("Return"), o("While"), o("For"), o("Switch"), o("Extends"), o("Splat"), o("Existence"), o("Comment")], - // A block of expressions. Note that the Rewriter will convert some postfix - // forms into blocks for us, by altering the token stream. - Block: [o("INDENT Expressions OUTDENT", function() { - return $2; - }), o("INDENT OUTDENT", function() { - return new Expressions(); - }) - ], - Identifier: [o("IDENTIFIER", function() { - return new LiteralNode(yytext); - }) - ], - AlphaNumeric: [o("NUMBER", function() { - return new LiteralNode(yytext); - }), o("STRING", function() { - return new LiteralNode(yytext); - }) - ], - // All hard-coded values. These can be printed straight to JavaScript. - Literal: [o("AlphaNumeric", function() { - return $1; - }), o("JS", function() { - return new LiteralNode(yytext); - }), o("REGEX", function() { - return new LiteralNode(yytext); - }), o("BREAK", function() { - return new LiteralNode(yytext); - }), o("CONTINUE", function() { - return new LiteralNode(yytext); - }), o("ARGUMENTS", function() { - return new LiteralNode(yytext); - }), o("TRUE", function() { - return new LiteralNode(true); - }), o("FALSE", function() { - return new LiteralNode(false); - }), o("YES", function() { - return new LiteralNode(true); - }), o("NO", function() { - return new LiteralNode(false); - }), o("ON", function() { - return new LiteralNode(true); - }), o("OFF", function() { - return new LiteralNode(false); - }) - ], - // Assignment to a variable (or index). - Assign: [o("Value ASSIGN Expression", function() { - return new AssignNode($1, $3); - }) - ], - // Assignment within an object literal (can be quoted). - AssignObj: [o("Identifier ASSIGN Expression", function() { - return new AssignNode(new ValueNode($1), $3, 'object'); - }), o("AlphaNumeric ASSIGN Expression", function() { - return new AssignNode(new ValueNode($1), $3, 'object'); - }), o("Comment") - ], - // A return statement. - Return: [o("RETURN Expression", function() { - return new ReturnNode($2); - }), o("RETURN", function() { - return new ReturnNode(new ValueNode(new LiteralNode('null'))); - }) - ], - // A comment. - Comment: [o("COMMENT", function() { - return new CommentNode(yytext); - }) - ], - // Arithmetic and logical operators - // For Ruby's Operator precedence, see: [ - // https://www.cs.auckland.ac.nz/references/ruby/ProgrammingRuby/language.html - Operation: [o("! Expression", function() { - return new OpNode('!', $2); - }), - // o "!! Expression", -> new OpNode('!!', $2) - o("- Expression", (function() { - return new OpNode('-', $2); - }), { - prec: 'UMINUS' - }), - // o "+ Expression", (-> new OpNode('+', $2)), {prec: 'UPLUS'} - o("NOT Expression", function() { - return new OpNode('not', $2); - }), - // o "~ Expression", -> new OpNode('~', $2) - // o "-- Expression", -> new OpNode('--', $2) - // o "++ Expression", -> new OpNode('++', $2) - o("DELETE Expression", function() { - return new OpNode('delete', $2); - }), o("TYPEOF Expression", function() { - return new OpNode('typeof', $2); - }), - // o "Expression --", -> new OpNode('--', $1, null, true) - // o "Expression ++", -> new OpNode('++', $1, null, true) - o("Expression * Expression", function() { - return new OpNode('*', $1, $3); - }), o("Expression / Expression", function() { - return new OpNode('/', $1, $3); - }), - // o "Expression % Expression", -> new OpNode('%', $1, $3) - o("Expression + Expression", function() { - return new OpNode('+', $1, $3); - }), o("Expression - Expression", function() { - return new OpNode('-', $1, $3); - }), - // o "Expression << Expression", -> new OpNode('<<', $1, $3) - // o "Expression >> Expression", -> new OpNode('>>', $1, $3) - // o "Expression >>> Expression", -> new OpNode('>>>', $1, $3) - // o "Expression & Expression", -> new OpNode('&', $1, $3) - // o "Expression | Expression", -> new OpNode('|', $1, $3) - // o "Expression ^ Expression", -> new OpNode('^', $1, $3) - o("Expression <= Expression", function() { - return new OpNode('<=', $1, $3); - }), o("Expression < Expression", function() { - return new OpNode('<', $1, $3); - }), o("Expression > Expression", function() { - return new OpNode('>', $1, $3); - }), o("Expression >= Expression", function() { - return new OpNode('>=', $1, $3); - }), - // o "Expression == Expression", -> new OpNode('==', $1, $3) - // o "Expression != Expression", -> new OpNode($2, $1, $3) - o("Expression IS Expression", function() { - return new OpNode($2, $1, $3); - }), o("Expression ISNT Expression", function() { - return new OpNode($2, $1, $3); - }), - // o "Expression && Expression", -> new OpNode($2, $1, $3) - // o "Expression || Expression", -> new OpNode($2, $1, $3) - o("Expression AND Expression", function() { - return new OpNode($2, $1, $3); - }), o("Expression OR Expression", function() { - return new OpNode($2, $1, $3); - }), o("Expression ? Expression", function() { - return new OpNode($2, $1, $3); - }), o("Expression -= Expression", function() { - return new OpNode($2, $1, $3); - }), o("Expression += Expression", function() { - return new OpNode($2, $1, $3); - }), - // o "Expression /= Expression", -> new OpNode($2, $1, $3) - // o "Expression *= Expression", -> new OpNode($2, $1, $3) - // o "Expression %= Expression", -> new OpNode($2, $1, $3) - o("Expression ||= Expression", function() { - return new OpNode($2, $1, $3); - }), o("Expression &&= Expression", function() { - return new OpNode($2, $1, $3); - }), - // o "Expression ?= Expression", -> new OpNode($2, $1, $3) - o("Expression INSTANCEOF Expression", function() { - return new OpNode($2, $1, $3); - }), - // o "Expression IN Expression", -> new OpNode($2, $1, $3) - ], - // The existence operator. - Existence: [o("Expression ?", function() { - return new ExistenceNode($1); - }) - ], - // Function definition. - Code: [o("PARAM_START ParamList PARAM_END FuncGlyph Block", function() { - return new CodeNode($2, $5, $4); - }), o("FuncGlyph Block", function() { - return new CodeNode([], $2, $1); - }) - ], - // The symbols to signify functions, and bound functions. - FuncGlyph: [o("->", function() { - return 'func'; - }), o("=>", function() { - return 'boundfunc'; - }) - ], - // The parameters to a function definition. - ParamList: [o("Param", function() { - return [$1]; - }), o("ParamList , Param", function() { - return $1.concat([$3]); - }) - ], - // A Parameter (or ParamSplat) in a function definition. - Param: [o("PARAM", function() { - return yytext; - }), o("Param . . .", function() { - return new SplatNode($1); - }) - ], - // A regular splat. - Splat: [o("Expression . . .", function() { - return new SplatNode($1); - }) - ], - // Expressions that can be treated as values. - Value: [o("Identifier", function() { - return new ValueNode($1); - }), o("Literal", function() { - return new ValueNode($1); - }), o("Array", function() { - return new ValueNode($1); - }), o("Object", function() { - return new ValueNode($1); - }), o("Parenthetical", function() { - return new ValueNode($1); - }), o("Range", function() { - return new ValueNode($1); - }), o("This", function() { - return new ValueNode($1); - }), o("Value Accessor", function() { - return $1.push($2); - }), o("Invocation Accessor", function() { - return new ValueNode($1, [$2]); - }) - ], - // Accessing into an object or array, through dot or index notation. - Accessor: [o("PROPERTY_ACCESS Identifier", function() { - return new AccessorNode($2); - }), o("PROTOTYPE_ACCESS Identifier", function() { - return new AccessorNode($2, 'prototype'); - }), o("SOAK_ACCESS Identifier", function() { - return new AccessorNode($2, 'soak'); - }), o("Index"), o("Slice", function() { - return new SliceNode($1); - }) - ], - // Indexing into an object or array. - Index: [o("INDEX_START Expression INDEX_END", function() { - return new IndexNode($2); - }) - ], - // An object literal. - Object: [o("{ AssignList }", function() { - return new ObjectNode($2); - }) - ], - // Assignment within an object literal (comma or newline separated). - AssignList: [o("", function() { - return []; - }), o("AssignObj", function() { - return [$1]; - }), o("AssignList , AssignObj", function() { - return $1.concat([$3]); - }), o("AssignList TERMINATOR AssignObj", function() { - return $1.concat([$3]); - }), o("AssignList , TERMINATOR AssignObj", function() { - return $1.concat([$4]); - }), o("INDENT AssignList OUTDENT", function() { - return $2; - }) - ], - // All flavors of function call (instantiation, super, and regular). - Call: [o("Invocation", function() { - return $1; - }), o("NEW Invocation", function() { - return $2.new_instance(); - }), o("Super", function() { - return $1; - }) - ], - // Extending an object's prototype. - Extends: [o("Value EXTENDS Value", function() { - return new ExtendsNode($1, $3); - }) - ], - // A generic function invocation. - Invocation: [o("Value Arguments", function() { - return new CallNode($1, $2); - }), o("Invocation Arguments", function() { - return new CallNode($1, $2); - }) - ], - // The list of arguments to a function invocation. - Arguments: [o("CALL_START ArgList CALL_END", function() { - return $2; - }) - ], - // Calling super. - Super: [o("SUPER CALL_START ArgList CALL_END", function() { - return new CallNode('super', $3); - }) - ], - // This references, either naked or to a property. - This: [o("@", function() { - return new ThisNode(); - }), o("@ Identifier", function() { - return new ThisNode($2); - }) - ], - // The range literal. - Range: [o("[ Expression . . Expression ]", function() { - return new RangeNode($2, $5); - }), o("[ Expression . . . Expression ]", function() { - return new RangeNode($2, $6, true); - }) - ], - // The slice literal. - Slice: [o("INDEX_START Expression . . Expression INDEX_END", function() { - return new RangeNode($2, $5); - }), o("INDEX_START Expression . . . Expression INDEX_END", function() { - return new RangeNode($2, $6, true); - }) - ], - // The array literal. - Array: [o("[ ArgList ]", function() { - return new ArrayNode($2); - }) - ], - // A list of arguments to a method call, or as the contents of an array. - ArgList: [o("", function() { - return []; - }), o("Expression", function() { - return [$1]; - }), o("INDENT Expression", function() { - return [$2]; - }), o("ArgList , Expression", function() { - return $1.concat([$3]); - }), o("ArgList TERMINATOR Expression", function() { - return $1.concat([$3]); - }), o("ArgList , TERMINATOR Expression", function() { - return $1.concat([$4]); - }), o("ArgList , INDENT Expression", function() { - return $1.concat([$4]); - }), o("ArgList OUTDENT", function() { - return $1; - }) - ], - // Just simple, comma-separated, required arguments (no fancy syntax). - SimpleArgs: [o("Expression", function() { - return $1; - }), o("SimpleArgs , Expression", function() { - return ([$1].push($3)).reduce(function(a, b) { +/* Jison generated parser */ +var parser = (function(){ +var parser = {trace: function trace() { }, +yy: {}, +symbols_: {"Root":2,"TERMINATOR":3,"Expressions":4,"Block":5,"Expression":6,"Value":7,"Call":8,"Code":9,"Operation":10,"Assign":11,"If":12,"Try":13,"Throw":14,"Return":15,"While":16,"For":17,"Switch":18,"Extends":19,"Splat":20,"Existence":21,"Comment":22,"INDENT":23,"OUTDENT":24,"Identifier":25,"IDENTIFIER":26,"AlphaNumeric":27,"NUMBER":28,"STRING":29,"Literal":30,"JS":31,"REGEX":32,"BREAK":33,"CONTINUE":34,"ARGUMENTS":35,"TRUE":36,"FALSE":37,"YES":38,"NO":39,"ON":40,"OFF":41,"ASSIGN":42,"AssignObj":43,"RETURN":44,"COMMENT":45,"!":46,"!!":47,"-":48,"+":49,"NOT":50,"~":51,"--":52,"++":53,"DELETE":54,"TYPEOF":55,"*":56,"/":57,"%":58,"<<":59,">>":60,">>>":61,"&":62,"|":63,"^":64,"<=":65,"<":66,">":67,">=":68,"==":69,"!=":70,"IS":71,"ISNT":72,"&&":73,"||":74,"AND":75,"OR":76,"?":77,"-=":78,"+=":79,"/=":80,"*=":81,"%=":82,"||=":83,"&&=":84,"?=":85,"INSTANCEOF":86,"IN":87,"PARAM_START":88,"ParamList":89,"PARAM_END":90,"FuncGlyph":91,"->":92,"=>":93,"Param":94,",":95,"PARAM":96,".":97,"Array":98,"Object":99,"Parenthetical":100,"Range":101,"This":102,"Accessor":103,"Invocation":104,"PROPERTY_ACCESS":105,"PROTOTYPE_ACCESS":106,"SOAK_ACCESS":107,"Index":108,"Slice":109,"INDEX_START":110,"INDEX_END":111,"{":112,"AssignList":113,"}":114,"NEW":115,"Super":116,"EXTENDS":117,"Arguments":118,"CALL_START":119,"ArgList":120,"CALL_END":121,"SUPER":122,"@":123,"[":124,"]":125,"SimpleArgs":126,"TRY":127,"Catch":128,"FINALLY":129,"CATCH":130,"THROW":131,"(":132,")":133,"WHILE":134,"FOR":135,"ForVariables":136,"ForSource":137,"OF":138,"WHEN":139,"BY":140,"SWITCH":141,"Whens":142,"ELSE":143,"When":144,"LEADING_WHEN":145,"IfBlock":146,"IF":147,"ElsIf":148,"ElsIfs":149,"ElseBody":150,"IfEnd":151,"UNLESS":152,"$accept":0,"$end":1}, +terminals_: ["$end","TERMINATOR","INDENT","OUTDENT","IDENTIFIER","NUMBER","STRING","JS","REGEX","BREAK","CONTINUE","ARGUMENTS","TRUE","FALSE","YES","NO","ON","OFF","ASSIGN","RETURN","COMMENT","!","!!","-","+","NOT","~","--","++","DELETE","TYPEOF","*","/","%","<<",">>",">>>","&","|","^","<=","<",">",">=","==","!=","IS","ISNT","&&","||","AND","OR","?","-=","+=","/=","*=","%=","||=","&&=","?=","INSTANCEOF","IN","PARAM_START","PARAM_END","->","=>",",","PARAM",".","PROPERTY_ACCESS","PROTOTYPE_ACCESS","SOAK_ACCESS","INDEX_START","INDEX_END","{","}","NEW","EXTENDS","CALL_START","CALL_END","SUPER","@","[","]","TRY","FINALLY","CATCH","THROW","(",")","WHILE","FOR","OF","WHEN","BY","SWITCH","ELSE","LEADING_WHEN","IF","UNLESS"], +productions_: [0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,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],[5,3],[5,2],[25,1],[27,1],[27,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[30,1],[11,3],[43,3],[43,3],[43,1],[15,2],[15,1],[22,1],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[21,2],[9,5],[9,2],[91,1],[91,1],[89,1],[89,3],[94,1],[94,4],[20,4],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,2],[7,2],[103,2],[103,2],[103,2],[103,1],[103,1],[108,3],[99,3],[113,0],[113,1],[113,3],[113,3],[113,4],[113,3],[8,1],[8,2],[8,1],[19,3],[104,2],[104,2],[118,3],[116,4],[102,1],[102,2],[101,6],[101,7],[109,6],[109,7],[98,3],[120,0],[120,1],[120,2],[120,3],[120,3],[120,4],[120,4],[120,2],[126,1],[126,3],[13,3],[13,4],[13,5],[128,3],[14,2],[100,3],[16,3],[16,2],[16,3],[17,4],[17,4],[136,1],[136,3],[137,2],[137,2],[137,3],[137,3],[18,5],[18,7],[142,1],[142,2],[144,3],[144,4],[144,3],[146,3],[148,2],[149,1],[149,2],[150,0],[150,2],[151,1],[151,2],[12,2],[12,3],[12,3]], +performAction: function anonymous(yytext,yyleng,yylineno,yy) { + +var $$ = arguments[5],$0=arguments[5].length; +switch(arguments[4]) { +case 1:return this.$ = new Expressions(); +break; +case 2:return this.$ = new Expressions(); +break; +case 3:return this.$ = $$[$0-1+1-1]; +break; +case 4:return this.$ = $$[$0-2+1-1]; +break; +case 5:this.$ = Expressions.wrap([$$[$0-1+1-1]]); +break; +case 6:this.$ = $$[$0-3+1-1].push($$[$0-3+3-1]); +break; +case 7:this.$ = $$[$0-2+1-1]; +break; +case 8:this.$ = $$[$0-1+1-1]; +break; +case 9:this.$ = $$[$0-1+1-1]; +break; +case 10:this.$ = $$[$0-1+1-1]; +break; +case 11:this.$ = $$[$0-1+1-1]; +break; +case 12:this.$ = $$[$0-1+1-1]; +break; +case 13:this.$ = $$[$0-1+1-1]; +break; +case 14:this.$ = $$[$0-1+1-1]; +break; +case 15:this.$ = $$[$0-1+1-1]; +break; +case 16:this.$ = $$[$0-1+1-1]; +break; +case 17:this.$ = $$[$0-1+1-1]; +break; +case 18:this.$ = $$[$0-1+1-1]; +break; +case 19:this.$ = $$[$0-1+1-1]; +break; +case 20:this.$ = $$[$0-1+1-1]; +break; +case 21:this.$ = $$[$0-1+1-1]; +break; +case 22:this.$ = $$[$0-1+1-1]; +break; +case 23:this.$ = $$[$0-1+1-1]; +break; +case 24:this.$ = $$[$0-3+2-1]; +break; +case 25:this.$ = new Expressions(); +break; +case 26:this.$ = new LiteralNode(yytext); +break; +case 27:this.$ = new LiteralNode(yytext); +break; +case 28:this.$ = new LiteralNode(yytext); +break; +case 29:this.$ = $$[$0-1+1-1]; +break; +case 30:this.$ = new LiteralNode(yytext); +break; +case 31:this.$ = new LiteralNode(yytext); +break; +case 32:this.$ = new LiteralNode(yytext); +break; +case 33:this.$ = new LiteralNode(yytext); +break; +case 34:this.$ = new LiteralNode(yytext); +break; +case 35:this.$ = new LiteralNode(true); +break; +case 36:this.$ = new LiteralNode(false); +break; +case 37:this.$ = new LiteralNode(true); +break; +case 38:this.$ = new LiteralNode(false); +break; +case 39:this.$ = new LiteralNode(true); +break; +case 40:this.$ = new LiteralNode(false); +break; +case 41:this.$ = new AssignNode($$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 42:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); +break; +case 43:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); +break; +case 44:this.$ = $$[$0-1+1-1]; +break; +case 45:this.$ = new ReturnNode($$[$0-2+2-1]); +break; +case 46:this.$ = new ReturnNode(new ValueNode(new LiteralNode('null'))); +break; +case 47:this.$ = new CommentNode(yytext); +break; +case 48:this.$ = new OpNode('!', $$[$0-2+2-1]); +break; +case 49:this.$ = new OpNode('!!', $$[$0-2+2-1]); +break; +case 50:this.$ = new OpNode('-', $$[$0-2+2-1]); +break; +case 51:this.$ = new OpNode('+', $$[$0-2+2-1]); +break; +case 52:this.$ = new OpNode('not', $$[$0-2+2-1]); +break; +case 53:this.$ = new OpNode('~', $$[$0-2+2-1]); +break; +case 54:this.$ = new OpNode('--', $$[$0-2+2-1]); +break; +case 55:this.$ = new OpNode('++', $$[$0-2+2-1]); +break; +case 56:this.$ = new OpNode('delete', $$[$0-2+2-1]); +break; +case 57:this.$ = new OpNode('typeof', $$[$0-2+2-1]); +break; +case 58:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); +break; +case 59:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); +break; +case 60:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 61:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 62:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 63:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 64:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 65:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 66:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 67:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 68:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 69:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 70:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 71:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 72:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 73:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 74:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 75:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 76:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 77:this.$ = new OpNode('IS', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 78:this.$ = new OpNode('ISNT', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 79:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 80:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 81:this.$ = new OpNode('AND', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 82:this.$ = new OpNode('OR', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 83:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 84:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 85:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 86:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 87:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 88:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 89:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 90:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 91:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 92:this.$ = new OpNode('INSTANCEOF', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 93:this.$ = new OpNode('IN', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 94:this.$ = new ExistenceNode($$[$0-2+1-1]); +break; +case 95:this.$ = new CodeNode($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); +break; +case 96:this.$ = new CodeNode([], $$[$0-2+2-1], $$[$0-2+1-1]); +break; +case 97:this.$ = 'func'; +break; +case 98:this.$ = 'boundfunc'; +break; +case 99:this.$ = [$$[$0-1+1-1]]; +break; +case 100:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +break; +case 101:this.$ = yytext; +break; +case 102:this.$ = new SplatNode($$[$0-4+1-1]); +break; +case 103:this.$ = new SplatNode($$[$0-4+1-1]); +break; +case 104:this.$ = new ValueNode($$[$0-1+1-1]); +break; +case 105:this.$ = new ValueNode($$[$0-1+1-1]); +break; +case 106:this.$ = new ValueNode($$[$0-1+1-1]); +break; +case 107:this.$ = new ValueNode($$[$0-1+1-1]); +break; +case 108:this.$ = new ValueNode($$[$0-1+1-1]); +break; +case 109:this.$ = new ValueNode($$[$0-1+1-1]); +break; +case 110:this.$ = new ValueNode($$[$0-1+1-1]); +break; +case 111:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +break; +case 112:this.$ = new ValueNode($$[$0-2+1-1], [$$[$0-2+2-1]]); +break; +case 113:this.$ = new AccessorNode($$[$0-2+2-1]); +break; +case 114:this.$ = new AccessorNode($$[$0-2+2-1], 'prototype'); +break; +case 115:this.$ = new AccessorNode($$[$0-2+2-1], 'soak'); +break; +case 116:this.$ = $$[$0-1+1-1]; +break; +case 117:this.$ = new SliceNode($$[$0-1+1-1]); +break; +case 118:this.$ = new IndexNode($$[$0-3+2-1]); +break; +case 119:this.$ = new ObjectNode($$[$0-3+2-1]); +break; +case 120:this.$ = []; +break; +case 121:this.$ = [$$[$0-1+1-1]]; +break; +case 122:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +break; +case 123:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +break; +case 124:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); +break; +case 125:this.$ = $$[$0-3+2-1]; +break; +case 126:this.$ = $$[$0-1+1-1]; +break; +case 127:this.$ = $$[$0-2+2-1].new_instance(); +break; +case 128:this.$ = $$[$0-1+1-1]; +break; +case 129:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 130:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); +break; +case 131:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); +break; +case 132:this.$ = $$[$0-3+2-1]; +break; +case 133:this.$ = new CallNode('super', $$[$0-4+3-1]); +break; +case 134:this.$ = new ThisNode(); +break; +case 135:this.$ = new ThisNode($$[$0-2+2-1]); +break; +case 136:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); +break; +case 137:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); +break; +case 138:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); +break; +case 139:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); +break; +case 140:this.$ = new ArrayNode($$[$0-3+2-1]); +break; +case 141:this.$ = []; +break; +case 142:this.$ = [$$[$0-1+1-1]]; +break; +case 143:this.$ = [$$[$0-2+2-1]]; +break; +case 144:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +break; +case 145:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +break; +case 146:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); +break; +case 147:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); +break; +case 148:this.$ = $$[$0-2+1-1]; +break; +case 149:this.$ = $$[$0-1+1-1]; +break; +case 150:this.$ = ([$$[$0-3+1-1]].push($$[$0-3+3-1])).reduce(function(a, b) { return a.concat(b); }); - }) - ], - // Try/catch/finally exception handling blocks. - Try: [o("TRY Block Catch", function() { - return new TryNode($2, $3[0], $3[1]); - }), o("TRY Block FINALLY Block", function() { - return new TryNode($2, null, null, $4); - }), o("TRY Block Catch FINALLY Block", function() { - return new TryNode($2, $3[0], $3[1], $5); - }) - ], - // A catch clause. - Catch: [o("CATCH Identifier Block", function() { - return [$2, $3]; - }) - ], - // Throw an exception. - Throw: [o("THROW Expression", function() { - return new ThrowNode($2); - }) - ], - // Parenthetical expressions. - Parenthetical: [o("( Expression )", function() { - return new ParentheticalNode($2); - }) - ], - // The while loop. (there is no do..while). - While: [o("WHILE Expression Block", function() { - return new WhileNode($2, $3); - }), o("WHILE Expression", function() { - return new WhileNode($2, null); - }), o("Expression WHILE Expression", function() { - return new WhileNode($3, Expressions.wrap([$1])); - }) - ], - // Array comprehensions, including guard and current index. - // Looks a little confusing, check nodes.rb for the arguments to ForNode. - For: [o("Expression FOR ForVariables ForSource", function() { - return new ForNode($1, $4, $3[0], $3[1]); - }), o("FOR ForVariables ForSource Block", function() { - return new ForNode($4, $3, $2[0], $2[1]); - }) - ], - // An array comprehension has variables for the current element and index. - ForVariables: [o("Identifier", function() { - return [$1]; - }), o("Identifier , Identifier", function() { - return [$1, $3]; - }) - ], - // The source of the array comprehension can optionally be filtered. - ForSource: [o("IN Expression", function() { - return { - source: $2 +break; +case 151:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); +break; +case 152:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); +break; +case 153:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); +break; +case 154:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; +break; +case 155:this.$ = new ThrowNode($$[$0-2+2-1]); +break; +case 156:this.$ = new ParentheticalNode($$[$0-3+2-1]); +break; +case 157:this.$ = new WhileNode($$[$0-3+2-1], $$[$0-3+3-1]); +break; +case 158:this.$ = new WhileNode($$[$0-2+2-1], null); +break; +case 159:this.$ = new WhileNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]])); +break; +case 160:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); +break; +case 161:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); +break; +case 162:this.$ = [$$[$0-1+1-1]]; +break; +case 163:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; +break; +case 164:this.$ = { + source: $$[$0-2+2-1] }; - }), o("OF Expression", function() { - return { - source: $2, +break; +case 165:this.$ = { + source: $$[$0-2+2-1], object: true }; - }), o("ForSource WHEN Expression", function() { - $1.filter = $3; - return $1; - }), o("ForSource BY Expression", function() { - $1.step = $3; - return $1; - }) - ], - // Switch/When blocks. - Switch: [o("SWITCH Expression INDENT Whens OUTDENT", function() { - return $4.rewrite_condition($2); - }), o("SWITCH Expression INDENT Whens ELSE Block OUTDENT", function() { - return $4.rewrite_condition($2).add_else($6); - }) - ], - // The inner list of whens. - Whens: [o("When", function() { - return $1; - }), o("Whens When", function() { - return $1.push($2); - }) - ], - // An individual when. - When: [o("LEADING_WHEN SimpleArgs Block", function() { - return new IfNode($2, $3, null, { +break; +case 166:this.$ = (function () { + $$[$0-3+1-1].filter = $$[$0-3+3-1]; + return $$[$0-3+1-1]; + }()); +break; +case 167:this.$ = (function () { + $$[$0-3+1-1].step = $$[$0-3+3-1]; + return $$[$0-3+1-1]; + }()); +break; +case 168:this.$ = $$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]); +break; +case 169:this.$ = $$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1]); +break; +case 170:this.$ = $$[$0-1+1-1]; +break; +case 171:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +break; +case 172:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], null, { statement: true }); - }), o("LEADING_WHEN SimpleArgs Block TERMINATOR", function() { - return new IfNode($2, $3, null, { +break; +case 173:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], null, { statement: true }); - }), o("Comment TERMINATOR When", function() { - return $3.comment = $1; - }) - ], - // The most basic form of "if". - IfBlock: [o("IF Expression Block", function() { - return new IfNode($2, $3); - }) - ], - // An elsif portion of an if-else block. - ElsIf: [o("ELSE IfBlock", function() { - return $2.force_statement(); - }) - ], - // Multiple elsifs can be chained together. - ElsIfs: [o("ElsIf", function() { - return $1; - }), o("ElsIfs ElsIf", function() { - return $1.add_else($2); - }) - ], - // Terminating else bodies are strictly optional. - ElseBody: [o("", function() { - return null; - }), o("ELSE Block", function() { - return $2; - }) - ], - // All the alternatives for ending an if-else block. - IfEnd: [o("ElseBody", function() { - return $1; - }), o("ElsIfs ElseBody", function() { - return $1.add_else($2); - }) - ], - // The full complement of if blocks, including postfix one-liner ifs and unlesses. - If: [o("IfBlock IfEnd", function() { - return $1.add_else($2); - }), o("Expression IF Expression", function() { - return new IfNode($3, Expressions.wrap([$1]), null, { +break; +case 174:this.$ = $$[$0-3+3-1].comment = $$[$0-3+1-1]; +break; +case 175:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); +break; +case 176:this.$ = $$[$0-2+2-1].force_statement(); +break; +case 177:this.$ = $$[$0-1+1-1]; +break; +case 178:this.$ = $$[$0-2+1-1].add_else($$[$0-2+2-1]); +break; +case 179:this.$ = null; +break; +case 180:this.$ = $$[$0-2+2-1]; +break; +case 181:this.$ = $$[$0-1+1-1]; +break; +case 182:this.$ = $$[$0-2+1-1].add_else($$[$0-2+2-1]); +break; +case 183:this.$ = $$[$0-2+1-1].add_else($$[$0-2+2-1]); +break; +case 184:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { statement: true }); - }), o("Expression UNLESS Expression", function() { - return new IfNode($3, Expressions.wrap([$1]), null, { +break; +case 185:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { statement: true, invert: true }); - }) - ] - }; - // Helpers ============================================================== - // Make the Jison parser. - bnf = { - }; - tokens = []; - __a = grammar; - for (name in __a) { - non_terminal = __a[name]; - if (__hasProp.call(__a, name)) { - bnf[name] = (function() { - __b = []; __c = non_terminal; - for (__d = 0; __d < __c.length; __d++) { - option = __c[__d]; - __b.push((function() { - __e = option[0].split(" "); - for (__f = 0; __f < __e.length; __f++) { - part = __e[__f]; - !grammar[part] ? tokens.push(part) : null; - } - name === "Root" ? (option[1] = "return " + option[1]) : null; - return option; - }).call(this)); +break; +} +}, +table: [{"1":[[2,1]],"2":1,"3":[[1,2]],"4":3,"5":4,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[1,6]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[3]]},{"1":[[2,2]]},{"1":[[2,3]],"3":[[1,76]]},{"3":[[1,77]]},{"1":[[2,5]],"3":[[2,5]],"24":[[2,5]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"97":[[1,118]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"4":119,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"24":[[1,120]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,8]],"3":[[2,8]],"23":[[2,8]],"24":[[2,8]],"42":[[1,122]],"48":[[2,8]],"49":[[2,8]],"52":[[2,8]],"53":[[2,8]],"56":[[2,8]],"57":[[2,8]],"58":[[2,8]],"59":[[2,8]],"60":[[2,8]],"61":[[2,8]],"62":[[2,8]],"63":[[2,8]],"64":[[2,8]],"65":[[2,8]],"66":[[2,8]],"67":[[2,8]],"68":[[2,8]],"69":[[2,8]],"70":[[2,8]],"71":[[2,8]],"72":[[2,8]],"73":[[2,8]],"74":[[2,8]],"75":[[2,8]],"76":[[2,8]],"77":[[2,8]],"78":[[2,8]],"79":[[2,8]],"80":[[2,8]],"81":[[2,8]],"82":[[2,8]],"83":[[2,8]],"84":[[2,8]],"85":[[2,8]],"86":[[2,8]],"87":[[2,8]],"95":[[2,8]],"97":[[2,8]],"103":121,"105":[[1,125]],"106":[[1,126]],"107":[[1,127]],"108":128,"109":129,"110":[[1,131]],"111":[[2,8]],"114":[[2,8]],"117":[[1,123]],"118":124,"119":[[1,130]],"121":[[2,8]],"125":[[2,8]],"133":[[2,8]],"134":[[2,8]],"135":[[2,8]],"139":[[2,8]],"140":[[2,8]],"147":[[2,8]],"152":[[2,8]]},{"1":[[2,9]],"3":[[2,9]],"23":[[2,9]],"24":[[2,9]],"48":[[2,9]],"49":[[2,9]],"52":[[2,9]],"53":[[2,9]],"56":[[2,9]],"57":[[2,9]],"58":[[2,9]],"59":[[2,9]],"60":[[2,9]],"61":[[2,9]],"62":[[2,9]],"63":[[2,9]],"64":[[2,9]],"65":[[2,9]],"66":[[2,9]],"67":[[2,9]],"68":[[2,9]],"69":[[2,9]],"70":[[2,9]],"71":[[2,9]],"72":[[2,9]],"73":[[2,9]],"74":[[2,9]],"75":[[2,9]],"76":[[2,9]],"77":[[2,9]],"78":[[2,9]],"79":[[2,9]],"80":[[2,9]],"81":[[2,9]],"82":[[2,9]],"83":[[2,9]],"84":[[2,9]],"85":[[2,9]],"86":[[2,9]],"87":[[2,9]],"95":[[2,9]],"97":[[2,9]],"111":[[2,9]],"114":[[2,9]],"121":[[2,9]],"125":[[2,9]],"133":[[2,9]],"134":[[2,9]],"135":[[2,9]],"139":[[2,9]],"140":[[2,9]],"147":[[2,9]],"152":[[2,9]]},{"1":[[2,10]],"3":[[2,10]],"23":[[2,10]],"24":[[2,10]],"48":[[2,10]],"49":[[2,10]],"52":[[2,10]],"53":[[2,10]],"56":[[2,10]],"57":[[2,10]],"58":[[2,10]],"59":[[2,10]],"60":[[2,10]],"61":[[2,10]],"62":[[2,10]],"63":[[2,10]],"64":[[2,10]],"65":[[2,10]],"66":[[2,10]],"67":[[2,10]],"68":[[2,10]],"69":[[2,10]],"70":[[2,10]],"71":[[2,10]],"72":[[2,10]],"73":[[2,10]],"74":[[2,10]],"75":[[2,10]],"76":[[2,10]],"77":[[2,10]],"78":[[2,10]],"79":[[2,10]],"80":[[2,10]],"81":[[2,10]],"82":[[2,10]],"83":[[2,10]],"84":[[2,10]],"85":[[2,10]],"86":[[2,10]],"87":[[2,10]],"95":[[2,10]],"97":[[2,10]],"111":[[2,10]],"114":[[2,10]],"121":[[2,10]],"125":[[2,10]],"133":[[2,10]],"134":[[2,10]],"135":[[2,10]],"139":[[2,10]],"140":[[2,10]],"147":[[2,10]],"152":[[2,10]]},{"1":[[2,11]],"3":[[2,11]],"23":[[2,11]],"24":[[2,11]],"48":[[2,11]],"49":[[2,11]],"52":[[2,11]],"53":[[2,11]],"56":[[2,11]],"57":[[2,11]],"58":[[2,11]],"59":[[2,11]],"60":[[2,11]],"61":[[2,11]],"62":[[2,11]],"63":[[2,11]],"64":[[2,11]],"65":[[2,11]],"66":[[2,11]],"67":[[2,11]],"68":[[2,11]],"69":[[2,11]],"70":[[2,11]],"71":[[2,11]],"72":[[2,11]],"73":[[2,11]],"74":[[2,11]],"75":[[2,11]],"76":[[2,11]],"77":[[2,11]],"78":[[2,11]],"79":[[2,11]],"80":[[2,11]],"81":[[2,11]],"82":[[2,11]],"83":[[2,11]],"84":[[2,11]],"85":[[2,11]],"86":[[2,11]],"87":[[2,11]],"95":[[2,11]],"97":[[2,11]],"111":[[2,11]],"114":[[2,11]],"121":[[2,11]],"125":[[2,11]],"133":[[2,11]],"134":[[2,11]],"135":[[2,11]],"139":[[2,11]],"140":[[2,11]],"147":[[2,11]],"152":[[2,11]]},{"1":[[2,12]],"3":[[2,12]],"23":[[2,12]],"24":[[2,12]],"48":[[2,12]],"49":[[2,12]],"52":[[2,12]],"53":[[2,12]],"56":[[2,12]],"57":[[2,12]],"58":[[2,12]],"59":[[2,12]],"60":[[2,12]],"61":[[2,12]],"62":[[2,12]],"63":[[2,12]],"64":[[2,12]],"65":[[2,12]],"66":[[2,12]],"67":[[2,12]],"68":[[2,12]],"69":[[2,12]],"70":[[2,12]],"71":[[2,12]],"72":[[2,12]],"73":[[2,12]],"74":[[2,12]],"75":[[2,12]],"76":[[2,12]],"77":[[2,12]],"78":[[2,12]],"79":[[2,12]],"80":[[2,12]],"81":[[2,12]],"82":[[2,12]],"83":[[2,12]],"84":[[2,12]],"85":[[2,12]],"86":[[2,12]],"87":[[2,12]],"95":[[2,12]],"97":[[2,12]],"111":[[2,12]],"114":[[2,12]],"121":[[2,12]],"125":[[2,12]],"133":[[2,12]],"134":[[2,12]],"135":[[2,12]],"139":[[2,12]],"140":[[2,12]],"147":[[2,12]],"152":[[2,12]]},{"1":[[2,13]],"3":[[2,13]],"23":[[2,13]],"24":[[2,13]],"48":[[2,13]],"49":[[2,13]],"52":[[2,13]],"53":[[2,13]],"56":[[2,13]],"57":[[2,13]],"58":[[2,13]],"59":[[2,13]],"60":[[2,13]],"61":[[2,13]],"62":[[2,13]],"63":[[2,13]],"64":[[2,13]],"65":[[2,13]],"66":[[2,13]],"67":[[2,13]],"68":[[2,13]],"69":[[2,13]],"70":[[2,13]],"71":[[2,13]],"72":[[2,13]],"73":[[2,13]],"74":[[2,13]],"75":[[2,13]],"76":[[2,13]],"77":[[2,13]],"78":[[2,13]],"79":[[2,13]],"80":[[2,13]],"81":[[2,13]],"82":[[2,13]],"83":[[2,13]],"84":[[2,13]],"85":[[2,13]],"86":[[2,13]],"87":[[2,13]],"95":[[2,13]],"97":[[2,13]],"111":[[2,13]],"114":[[2,13]],"121":[[2,13]],"125":[[2,13]],"133":[[2,13]],"134":[[2,13]],"135":[[2,13]],"139":[[2,13]],"140":[[2,13]],"147":[[2,13]],"152":[[2,13]]},{"1":[[2,14]],"3":[[2,14]],"23":[[2,14]],"24":[[2,14]],"48":[[2,14]],"49":[[2,14]],"52":[[2,14]],"53":[[2,14]],"56":[[2,14]],"57":[[2,14]],"58":[[2,14]],"59":[[2,14]],"60":[[2,14]],"61":[[2,14]],"62":[[2,14]],"63":[[2,14]],"64":[[2,14]],"65":[[2,14]],"66":[[2,14]],"67":[[2,14]],"68":[[2,14]],"69":[[2,14]],"70":[[2,14]],"71":[[2,14]],"72":[[2,14]],"73":[[2,14]],"74":[[2,14]],"75":[[2,14]],"76":[[2,14]],"77":[[2,14]],"78":[[2,14]],"79":[[2,14]],"80":[[2,14]],"81":[[2,14]],"82":[[2,14]],"83":[[2,14]],"84":[[2,14]],"85":[[2,14]],"86":[[2,14]],"87":[[2,14]],"95":[[2,14]],"97":[[2,14]],"111":[[2,14]],"114":[[2,14]],"121":[[2,14]],"125":[[2,14]],"133":[[2,14]],"134":[[2,14]],"135":[[2,14]],"139":[[2,14]],"140":[[2,14]],"147":[[2,14]],"152":[[2,14]]},{"1":[[2,15]],"3":[[2,15]],"23":[[2,15]],"24":[[2,15]],"48":[[2,15]],"49":[[2,15]],"52":[[2,15]],"53":[[2,15]],"56":[[2,15]],"57":[[2,15]],"58":[[2,15]],"59":[[2,15]],"60":[[2,15]],"61":[[2,15]],"62":[[2,15]],"63":[[2,15]],"64":[[2,15]],"65":[[2,15]],"66":[[2,15]],"67":[[2,15]],"68":[[2,15]],"69":[[2,15]],"70":[[2,15]],"71":[[2,15]],"72":[[2,15]],"73":[[2,15]],"74":[[2,15]],"75":[[2,15]],"76":[[2,15]],"77":[[2,15]],"78":[[2,15]],"79":[[2,15]],"80":[[2,15]],"81":[[2,15]],"82":[[2,15]],"83":[[2,15]],"84":[[2,15]],"85":[[2,15]],"86":[[2,15]],"87":[[2,15]],"95":[[2,15]],"97":[[2,15]],"111":[[2,15]],"114":[[2,15]],"121":[[2,15]],"125":[[2,15]],"133":[[2,15]],"134":[[2,15]],"135":[[2,15]],"139":[[2,15]],"140":[[2,15]],"147":[[2,15]],"152":[[2,15]]},{"1":[[2,16]],"3":[[2,16]],"23":[[2,16]],"24":[[2,16]],"48":[[2,16]],"49":[[2,16]],"52":[[2,16]],"53":[[2,16]],"56":[[2,16]],"57":[[2,16]],"58":[[2,16]],"59":[[2,16]],"60":[[2,16]],"61":[[2,16]],"62":[[2,16]],"63":[[2,16]],"64":[[2,16]],"65":[[2,16]],"66":[[2,16]],"67":[[2,16]],"68":[[2,16]],"69":[[2,16]],"70":[[2,16]],"71":[[2,16]],"72":[[2,16]],"73":[[2,16]],"74":[[2,16]],"75":[[2,16]],"76":[[2,16]],"77":[[2,16]],"78":[[2,16]],"79":[[2,16]],"80":[[2,16]],"81":[[2,16]],"82":[[2,16]],"83":[[2,16]],"84":[[2,16]],"85":[[2,16]],"86":[[2,16]],"87":[[2,16]],"95":[[2,16]],"97":[[2,16]],"111":[[2,16]],"114":[[2,16]],"121":[[2,16]],"125":[[2,16]],"133":[[2,16]],"134":[[2,16]],"135":[[2,16]],"139":[[2,16]],"140":[[2,16]],"147":[[2,16]],"152":[[2,16]]},{"1":[[2,17]],"3":[[2,17]],"23":[[2,17]],"24":[[2,17]],"48":[[2,17]],"49":[[2,17]],"52":[[2,17]],"53":[[2,17]],"56":[[2,17]],"57":[[2,17]],"58":[[2,17]],"59":[[2,17]],"60":[[2,17]],"61":[[2,17]],"62":[[2,17]],"63":[[2,17]],"64":[[2,17]],"65":[[2,17]],"66":[[2,17]],"67":[[2,17]],"68":[[2,17]],"69":[[2,17]],"70":[[2,17]],"71":[[2,17]],"72":[[2,17]],"73":[[2,17]],"74":[[2,17]],"75":[[2,17]],"76":[[2,17]],"77":[[2,17]],"78":[[2,17]],"79":[[2,17]],"80":[[2,17]],"81":[[2,17]],"82":[[2,17]],"83":[[2,17]],"84":[[2,17]],"85":[[2,17]],"86":[[2,17]],"87":[[2,17]],"95":[[2,17]],"97":[[2,17]],"111":[[2,17]],"114":[[2,17]],"121":[[2,17]],"125":[[2,17]],"133":[[2,17]],"134":[[2,17]],"135":[[2,17]],"139":[[2,17]],"140":[[2,17]],"147":[[2,17]],"152":[[2,17]]},{"1":[[2,18]],"3":[[2,18]],"23":[[2,18]],"24":[[2,18]],"48":[[2,18]],"49":[[2,18]],"52":[[2,18]],"53":[[2,18]],"56":[[2,18]],"57":[[2,18]],"58":[[2,18]],"59":[[2,18]],"60":[[2,18]],"61":[[2,18]],"62":[[2,18]],"63":[[2,18]],"64":[[2,18]],"65":[[2,18]],"66":[[2,18]],"67":[[2,18]],"68":[[2,18]],"69":[[2,18]],"70":[[2,18]],"71":[[2,18]],"72":[[2,18]],"73":[[2,18]],"74":[[2,18]],"75":[[2,18]],"76":[[2,18]],"77":[[2,18]],"78":[[2,18]],"79":[[2,18]],"80":[[2,18]],"81":[[2,18]],"82":[[2,18]],"83":[[2,18]],"84":[[2,18]],"85":[[2,18]],"86":[[2,18]],"87":[[2,18]],"95":[[2,18]],"97":[[2,18]],"111":[[2,18]],"114":[[2,18]],"121":[[2,18]],"125":[[2,18]],"133":[[2,18]],"134":[[2,18]],"135":[[2,18]],"139":[[2,18]],"140":[[2,18]],"147":[[2,18]],"152":[[2,18]]},{"1":[[2,19]],"3":[[2,19]],"23":[[2,19]],"24":[[2,19]],"48":[[2,19]],"49":[[2,19]],"52":[[2,19]],"53":[[2,19]],"56":[[2,19]],"57":[[2,19]],"58":[[2,19]],"59":[[2,19]],"60":[[2,19]],"61":[[2,19]],"62":[[2,19]],"63":[[2,19]],"64":[[2,19]],"65":[[2,19]],"66":[[2,19]],"67":[[2,19]],"68":[[2,19]],"69":[[2,19]],"70":[[2,19]],"71":[[2,19]],"72":[[2,19]],"73":[[2,19]],"74":[[2,19]],"75":[[2,19]],"76":[[2,19]],"77":[[2,19]],"78":[[2,19]],"79":[[2,19]],"80":[[2,19]],"81":[[2,19]],"82":[[2,19]],"83":[[2,19]],"84":[[2,19]],"85":[[2,19]],"86":[[2,19]],"87":[[2,19]],"95":[[2,19]],"97":[[2,19]],"111":[[2,19]],"114":[[2,19]],"121":[[2,19]],"125":[[2,19]],"133":[[2,19]],"134":[[2,19]],"135":[[2,19]],"139":[[2,19]],"140":[[2,19]],"147":[[2,19]],"152":[[2,19]]},{"1":[[2,20]],"3":[[2,20]],"23":[[2,20]],"24":[[2,20]],"48":[[2,20]],"49":[[2,20]],"52":[[2,20]],"53":[[2,20]],"56":[[2,20]],"57":[[2,20]],"58":[[2,20]],"59":[[2,20]],"60":[[2,20]],"61":[[2,20]],"62":[[2,20]],"63":[[2,20]],"64":[[2,20]],"65":[[2,20]],"66":[[2,20]],"67":[[2,20]],"68":[[2,20]],"69":[[2,20]],"70":[[2,20]],"71":[[2,20]],"72":[[2,20]],"73":[[2,20]],"74":[[2,20]],"75":[[2,20]],"76":[[2,20]],"77":[[2,20]],"78":[[2,20]],"79":[[2,20]],"80":[[2,20]],"81":[[2,20]],"82":[[2,20]],"83":[[2,20]],"84":[[2,20]],"85":[[2,20]],"86":[[2,20]],"87":[[2,20]],"95":[[2,20]],"97":[[2,20]],"111":[[2,20]],"114":[[2,20]],"121":[[2,20]],"125":[[2,20]],"133":[[2,20]],"134":[[2,20]],"135":[[2,20]],"139":[[2,20]],"140":[[2,20]],"147":[[2,20]],"152":[[2,20]]},{"1":[[2,21]],"3":[[2,21]],"23":[[2,21]],"24":[[2,21]],"48":[[2,21]],"49":[[2,21]],"52":[[2,21]],"53":[[2,21]],"56":[[2,21]],"57":[[2,21]],"58":[[2,21]],"59":[[2,21]],"60":[[2,21]],"61":[[2,21]],"62":[[2,21]],"63":[[2,21]],"64":[[2,21]],"65":[[2,21]],"66":[[2,21]],"67":[[2,21]],"68":[[2,21]],"69":[[2,21]],"70":[[2,21]],"71":[[2,21]],"72":[[2,21]],"73":[[2,21]],"74":[[2,21]],"75":[[2,21]],"76":[[2,21]],"77":[[2,21]],"78":[[2,21]],"79":[[2,21]],"80":[[2,21]],"81":[[2,21]],"82":[[2,21]],"83":[[2,21]],"84":[[2,21]],"85":[[2,21]],"86":[[2,21]],"87":[[2,21]],"95":[[2,21]],"97":[[2,21]],"111":[[2,21]],"114":[[2,21]],"121":[[2,21]],"125":[[2,21]],"133":[[2,21]],"134":[[2,21]],"135":[[2,21]],"139":[[2,21]],"140":[[2,21]],"147":[[2,21]],"152":[[2,21]]},{"1":[[2,22]],"3":[[2,22]],"23":[[2,22]],"24":[[2,22]],"48":[[2,22]],"49":[[2,22]],"52":[[2,22]],"53":[[2,22]],"56":[[2,22]],"57":[[2,22]],"58":[[2,22]],"59":[[2,22]],"60":[[2,22]],"61":[[2,22]],"62":[[2,22]],"63":[[2,22]],"64":[[2,22]],"65":[[2,22]],"66":[[2,22]],"67":[[2,22]],"68":[[2,22]],"69":[[2,22]],"70":[[2,22]],"71":[[2,22]],"72":[[2,22]],"73":[[2,22]],"74":[[2,22]],"75":[[2,22]],"76":[[2,22]],"77":[[2,22]],"78":[[2,22]],"79":[[2,22]],"80":[[2,22]],"81":[[2,22]],"82":[[2,22]],"83":[[2,22]],"84":[[2,22]],"85":[[2,22]],"86":[[2,22]],"87":[[2,22]],"95":[[2,22]],"97":[[2,22]],"111":[[2,22]],"114":[[2,22]],"121":[[2,22]],"125":[[2,22]],"133":[[2,22]],"134":[[2,22]],"135":[[2,22]],"139":[[2,22]],"140":[[2,22]],"147":[[2,22]],"152":[[2,22]]},{"1":[[2,23]],"3":[[2,23]],"23":[[2,23]],"24":[[2,23]],"48":[[2,23]],"49":[[2,23]],"52":[[2,23]],"53":[[2,23]],"56":[[2,23]],"57":[[2,23]],"58":[[2,23]],"59":[[2,23]],"60":[[2,23]],"61":[[2,23]],"62":[[2,23]],"63":[[2,23]],"64":[[2,23]],"65":[[2,23]],"66":[[2,23]],"67":[[2,23]],"68":[[2,23]],"69":[[2,23]],"70":[[2,23]],"71":[[2,23]],"72":[[2,23]],"73":[[2,23]],"74":[[2,23]],"75":[[2,23]],"76":[[2,23]],"77":[[2,23]],"78":[[2,23]],"79":[[2,23]],"80":[[2,23]],"81":[[2,23]],"82":[[2,23]],"83":[[2,23]],"84":[[2,23]],"85":[[2,23]],"86":[[2,23]],"87":[[2,23]],"95":[[2,23]],"97":[[2,23]],"111":[[2,23]],"114":[[2,23]],"121":[[2,23]],"125":[[2,23]],"133":[[2,23]],"134":[[2,23]],"135":[[2,23]],"139":[[2,23]],"140":[[2,23]],"147":[[2,23]],"152":[[2,23]]},{"1":[[2,104]],"3":[[2,104]],"23":[[2,104]],"24":[[2,104]],"42":[[2,104]],"48":[[2,104]],"49":[[2,104]],"52":[[2,104]],"53":[[2,104]],"56":[[2,104]],"57":[[2,104]],"58":[[2,104]],"59":[[2,104]],"60":[[2,104]],"61":[[2,104]],"62":[[2,104]],"63":[[2,104]],"64":[[2,104]],"65":[[2,104]],"66":[[2,104]],"67":[[2,104]],"68":[[2,104]],"69":[[2,104]],"70":[[2,104]],"71":[[2,104]],"72":[[2,104]],"73":[[2,104]],"74":[[2,104]],"75":[[2,104]],"76":[[2,104]],"77":[[2,104]],"78":[[2,104]],"79":[[2,104]],"80":[[2,104]],"81":[[2,104]],"82":[[2,104]],"83":[[2,104]],"84":[[2,104]],"85":[[2,104]],"86":[[2,104]],"87":[[2,104]],"95":[[2,104]],"97":[[2,104]],"105":[[2,104]],"106":[[2,104]],"107":[[2,104]],"110":[[2,104]],"111":[[2,104]],"114":[[2,104]],"117":[[2,104]],"119":[[2,104]],"121":[[2,104]],"125":[[2,104]],"133":[[2,104]],"134":[[2,104]],"135":[[2,104]],"139":[[2,104]],"140":[[2,104]],"147":[[2,104]],"152":[[2,104]]},{"1":[[2,105]],"3":[[2,105]],"23":[[2,105]],"24":[[2,105]],"42":[[2,105]],"48":[[2,105]],"49":[[2,105]],"52":[[2,105]],"53":[[2,105]],"56":[[2,105]],"57":[[2,105]],"58":[[2,105]],"59":[[2,105]],"60":[[2,105]],"61":[[2,105]],"62":[[2,105]],"63":[[2,105]],"64":[[2,105]],"65":[[2,105]],"66":[[2,105]],"67":[[2,105]],"68":[[2,105]],"69":[[2,105]],"70":[[2,105]],"71":[[2,105]],"72":[[2,105]],"73":[[2,105]],"74":[[2,105]],"75":[[2,105]],"76":[[2,105]],"77":[[2,105]],"78":[[2,105]],"79":[[2,105]],"80":[[2,105]],"81":[[2,105]],"82":[[2,105]],"83":[[2,105]],"84":[[2,105]],"85":[[2,105]],"86":[[2,105]],"87":[[2,105]],"95":[[2,105]],"97":[[2,105]],"105":[[2,105]],"106":[[2,105]],"107":[[2,105]],"110":[[2,105]],"111":[[2,105]],"114":[[2,105]],"117":[[2,105]],"119":[[2,105]],"121":[[2,105]],"125":[[2,105]],"133":[[2,105]],"134":[[2,105]],"135":[[2,105]],"139":[[2,105]],"140":[[2,105]],"147":[[2,105]],"152":[[2,105]]},{"1":[[2,106]],"3":[[2,106]],"23":[[2,106]],"24":[[2,106]],"42":[[2,106]],"48":[[2,106]],"49":[[2,106]],"52":[[2,106]],"53":[[2,106]],"56":[[2,106]],"57":[[2,106]],"58":[[2,106]],"59":[[2,106]],"60":[[2,106]],"61":[[2,106]],"62":[[2,106]],"63":[[2,106]],"64":[[2,106]],"65":[[2,106]],"66":[[2,106]],"67":[[2,106]],"68":[[2,106]],"69":[[2,106]],"70":[[2,106]],"71":[[2,106]],"72":[[2,106]],"73":[[2,106]],"74":[[2,106]],"75":[[2,106]],"76":[[2,106]],"77":[[2,106]],"78":[[2,106]],"79":[[2,106]],"80":[[2,106]],"81":[[2,106]],"82":[[2,106]],"83":[[2,106]],"84":[[2,106]],"85":[[2,106]],"86":[[2,106]],"87":[[2,106]],"95":[[2,106]],"97":[[2,106]],"105":[[2,106]],"106":[[2,106]],"107":[[2,106]],"110":[[2,106]],"111":[[2,106]],"114":[[2,106]],"117":[[2,106]],"119":[[2,106]],"121":[[2,106]],"125":[[2,106]],"133":[[2,106]],"134":[[2,106]],"135":[[2,106]],"139":[[2,106]],"140":[[2,106]],"147":[[2,106]],"152":[[2,106]]},{"1":[[2,107]],"3":[[2,107]],"23":[[2,107]],"24":[[2,107]],"42":[[2,107]],"48":[[2,107]],"49":[[2,107]],"52":[[2,107]],"53":[[2,107]],"56":[[2,107]],"57":[[2,107]],"58":[[2,107]],"59":[[2,107]],"60":[[2,107]],"61":[[2,107]],"62":[[2,107]],"63":[[2,107]],"64":[[2,107]],"65":[[2,107]],"66":[[2,107]],"67":[[2,107]],"68":[[2,107]],"69":[[2,107]],"70":[[2,107]],"71":[[2,107]],"72":[[2,107]],"73":[[2,107]],"74":[[2,107]],"75":[[2,107]],"76":[[2,107]],"77":[[2,107]],"78":[[2,107]],"79":[[2,107]],"80":[[2,107]],"81":[[2,107]],"82":[[2,107]],"83":[[2,107]],"84":[[2,107]],"85":[[2,107]],"86":[[2,107]],"87":[[2,107]],"95":[[2,107]],"97":[[2,107]],"105":[[2,107]],"106":[[2,107]],"107":[[2,107]],"110":[[2,107]],"111":[[2,107]],"114":[[2,107]],"117":[[2,107]],"119":[[2,107]],"121":[[2,107]],"125":[[2,107]],"133":[[2,107]],"134":[[2,107]],"135":[[2,107]],"139":[[2,107]],"140":[[2,107]],"147":[[2,107]],"152":[[2,107]]},{"1":[[2,108]],"3":[[2,108]],"23":[[2,108]],"24":[[2,108]],"42":[[2,108]],"48":[[2,108]],"49":[[2,108]],"52":[[2,108]],"53":[[2,108]],"56":[[2,108]],"57":[[2,108]],"58":[[2,108]],"59":[[2,108]],"60":[[2,108]],"61":[[2,108]],"62":[[2,108]],"63":[[2,108]],"64":[[2,108]],"65":[[2,108]],"66":[[2,108]],"67":[[2,108]],"68":[[2,108]],"69":[[2,108]],"70":[[2,108]],"71":[[2,108]],"72":[[2,108]],"73":[[2,108]],"74":[[2,108]],"75":[[2,108]],"76":[[2,108]],"77":[[2,108]],"78":[[2,108]],"79":[[2,108]],"80":[[2,108]],"81":[[2,108]],"82":[[2,108]],"83":[[2,108]],"84":[[2,108]],"85":[[2,108]],"86":[[2,108]],"87":[[2,108]],"95":[[2,108]],"97":[[2,108]],"105":[[2,108]],"106":[[2,108]],"107":[[2,108]],"110":[[2,108]],"111":[[2,108]],"114":[[2,108]],"117":[[2,108]],"119":[[2,108]],"121":[[2,108]],"125":[[2,108]],"133":[[2,108]],"134":[[2,108]],"135":[[2,108]],"139":[[2,108]],"140":[[2,108]],"147":[[2,108]],"152":[[2,108]]},{"1":[[2,109]],"3":[[2,109]],"23":[[2,109]],"24":[[2,109]],"42":[[2,109]],"48":[[2,109]],"49":[[2,109]],"52":[[2,109]],"53":[[2,109]],"56":[[2,109]],"57":[[2,109]],"58":[[2,109]],"59":[[2,109]],"60":[[2,109]],"61":[[2,109]],"62":[[2,109]],"63":[[2,109]],"64":[[2,109]],"65":[[2,109]],"66":[[2,109]],"67":[[2,109]],"68":[[2,109]],"69":[[2,109]],"70":[[2,109]],"71":[[2,109]],"72":[[2,109]],"73":[[2,109]],"74":[[2,109]],"75":[[2,109]],"76":[[2,109]],"77":[[2,109]],"78":[[2,109]],"79":[[2,109]],"80":[[2,109]],"81":[[2,109]],"82":[[2,109]],"83":[[2,109]],"84":[[2,109]],"85":[[2,109]],"86":[[2,109]],"87":[[2,109]],"95":[[2,109]],"97":[[2,109]],"105":[[2,109]],"106":[[2,109]],"107":[[2,109]],"110":[[2,109]],"111":[[2,109]],"114":[[2,109]],"117":[[2,109]],"119":[[2,109]],"121":[[2,109]],"125":[[2,109]],"133":[[2,109]],"134":[[2,109]],"135":[[2,109]],"139":[[2,109]],"140":[[2,109]],"147":[[2,109]],"152":[[2,109]]},{"1":[[2,110]],"3":[[2,110]],"23":[[2,110]],"24":[[2,110]],"42":[[2,110]],"48":[[2,110]],"49":[[2,110]],"52":[[2,110]],"53":[[2,110]],"56":[[2,110]],"57":[[2,110]],"58":[[2,110]],"59":[[2,110]],"60":[[2,110]],"61":[[2,110]],"62":[[2,110]],"63":[[2,110]],"64":[[2,110]],"65":[[2,110]],"66":[[2,110]],"67":[[2,110]],"68":[[2,110]],"69":[[2,110]],"70":[[2,110]],"71":[[2,110]],"72":[[2,110]],"73":[[2,110]],"74":[[2,110]],"75":[[2,110]],"76":[[2,110]],"77":[[2,110]],"78":[[2,110]],"79":[[2,110]],"80":[[2,110]],"81":[[2,110]],"82":[[2,110]],"83":[[2,110]],"84":[[2,110]],"85":[[2,110]],"86":[[2,110]],"87":[[2,110]],"95":[[2,110]],"97":[[2,110]],"105":[[2,110]],"106":[[2,110]],"107":[[2,110]],"110":[[2,110]],"111":[[2,110]],"114":[[2,110]],"117":[[2,110]],"119":[[2,110]],"121":[[2,110]],"125":[[2,110]],"133":[[2,110]],"134":[[2,110]],"135":[[2,110]],"139":[[2,110]],"140":[[2,110]],"147":[[2,110]],"152":[[2,110]]},{"1":[[2,126]],"3":[[2,126]],"23":[[2,126]],"24":[[2,126]],"48":[[2,126]],"49":[[2,126]],"52":[[2,126]],"53":[[2,126]],"56":[[2,126]],"57":[[2,126]],"58":[[2,126]],"59":[[2,126]],"60":[[2,126]],"61":[[2,126]],"62":[[2,126]],"63":[[2,126]],"64":[[2,126]],"65":[[2,126]],"66":[[2,126]],"67":[[2,126]],"68":[[2,126]],"69":[[2,126]],"70":[[2,126]],"71":[[2,126]],"72":[[2,126]],"73":[[2,126]],"74":[[2,126]],"75":[[2,126]],"76":[[2,126]],"77":[[2,126]],"78":[[2,126]],"79":[[2,126]],"80":[[2,126]],"81":[[2,126]],"82":[[2,126]],"83":[[2,126]],"84":[[2,126]],"85":[[2,126]],"86":[[2,126]],"87":[[2,126]],"95":[[2,126]],"97":[[2,126]],"103":132,"105":[[1,125]],"106":[[1,126]],"107":[[1,127]],"108":128,"109":129,"110":[[1,131]],"111":[[2,126]],"114":[[2,126]],"118":133,"119":[[1,130]],"121":[[2,126]],"125":[[2,126]],"133":[[2,126]],"134":[[2,126]],"135":[[2,126]],"139":[[2,126]],"140":[[2,126]],"147":[[2,126]],"152":[[2,126]]},{"7":135,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":134,"112":[[1,67]],"123":[[1,69]],"124":[[1,66]],"132":[[1,68]]},{"1":[[2,128]],"3":[[2,128]],"23":[[2,128]],"24":[[2,128]],"48":[[2,128]],"49":[[2,128]],"52":[[2,128]],"53":[[2,128]],"56":[[2,128]],"57":[[2,128]],"58":[[2,128]],"59":[[2,128]],"60":[[2,128]],"61":[[2,128]],"62":[[2,128]],"63":[[2,128]],"64":[[2,128]],"65":[[2,128]],"66":[[2,128]],"67":[[2,128]],"68":[[2,128]],"69":[[2,128]],"70":[[2,128]],"71":[[2,128]],"72":[[2,128]],"73":[[2,128]],"74":[[2,128]],"75":[[2,128]],"76":[[2,128]],"77":[[2,128]],"78":[[2,128]],"79":[[2,128]],"80":[[2,128]],"81":[[2,128]],"82":[[2,128]],"83":[[2,128]],"84":[[2,128]],"85":[[2,128]],"86":[[2,128]],"87":[[2,128]],"95":[[2,128]],"97":[[2,128]],"111":[[2,128]],"114":[[2,128]],"121":[[2,128]],"125":[[2,128]],"133":[[2,128]],"134":[[2,128]],"135":[[2,128]],"139":[[2,128]],"140":[[2,128]],"147":[[2,128]],"152":[[2,128]]},{"89":136,"94":137,"96":[[1,138]]},{"5":139,"23":[[1,6]]},{"6":140,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":141,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":142,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":143,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":144,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":145,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":146,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":147,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":148,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":149,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,179]],"3":[[2,179]],"23":[[2,179]],"24":[[2,179]],"48":[[2,179]],"49":[[2,179]],"52":[[2,179]],"53":[[2,179]],"56":[[2,179]],"57":[[2,179]],"58":[[2,179]],"59":[[2,179]],"60":[[2,179]],"61":[[2,179]],"62":[[2,179]],"63":[[2,179]],"64":[[2,179]],"65":[[2,179]],"66":[[2,179]],"67":[[2,179]],"68":[[2,179]],"69":[[2,179]],"70":[[2,179]],"71":[[2,179]],"72":[[2,179]],"73":[[2,179]],"74":[[2,179]],"75":[[2,179]],"76":[[2,179]],"77":[[2,179]],"78":[[2,179]],"79":[[2,179]],"80":[[2,179]],"81":[[2,179]],"82":[[2,179]],"83":[[2,179]],"84":[[2,179]],"85":[[2,179]],"86":[[2,179]],"87":[[2,179]],"95":[[2,179]],"97":[[2,179]],"111":[[2,179]],"114":[[2,179]],"121":[[2,179]],"125":[[2,179]],"133":[[2,179]],"134":[[2,179]],"135":[[2,179]],"139":[[2,179]],"140":[[2,179]],"143":[[1,153]],"147":[[2,179]],"148":154,"149":152,"150":151,"151":150,"152":[[2,179]]},{"5":155,"23":[[1,6]]},{"6":156,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,46]],"3":[[2,46]],"6":157,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[2,46]],"24":[[2,46]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[2,46]],"49":[[2,46]],"50":[[1,39]],"51":[[1,40]],"52":[[2,46]],"53":[[2,46]],"54":[[1,43]],"55":[[1,44]],"56":[[2,46]],"57":[[2,46]],"58":[[2,46]],"59":[[2,46]],"60":[[2,46]],"61":[[2,46]],"62":[[2,46]],"63":[[2,46]],"64":[[2,46]],"65":[[2,46]],"66":[[2,46]],"67":[[2,46]],"68":[[2,46]],"69":[[2,46]],"70":[[2,46]],"71":[[2,46]],"72":[[2,46]],"73":[[2,46]],"74":[[2,46]],"75":[[2,46]],"76":[[2,46]],"77":[[2,46]],"78":[[2,46]],"79":[[2,46]],"80":[[2,46]],"81":[[2,46]],"82":[[2,46]],"83":[[2,46]],"84":[[2,46]],"85":[[2,46]],"86":[[2,46]],"87":[[2,46]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"95":[[2,46]],"97":[[2,46]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"111":[[2,46]],"112":[[1,67]],"114":[[2,46]],"115":[[1,31]],"116":32,"121":[[2,46]],"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"125":[[2,46]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"133":[[2,46]],"134":[[1,49]],"135":[[2,46]],"139":[[2,46]],"140":[[2,46]],"141":[[1,51]],"146":45,"147":[[1,73]],"152":[[2,46]]},{"6":158,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"25":160,"26":[[1,53]],"136":159},{"6":161,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,47]],"3":[[2,47]],"23":[[2,47]],"24":[[2,47]],"48":[[2,47]],"49":[[2,47]],"52":[[2,47]],"53":[[2,47]],"56":[[2,47]],"57":[[2,47]],"58":[[2,47]],"59":[[2,47]],"60":[[2,47]],"61":[[2,47]],"62":[[2,47]],"63":[[2,47]],"64":[[2,47]],"65":[[2,47]],"66":[[2,47]],"67":[[2,47]],"68":[[2,47]],"69":[[2,47]],"70":[[2,47]],"71":[[2,47]],"72":[[2,47]],"73":[[2,47]],"74":[[2,47]],"75":[[2,47]],"76":[[2,47]],"77":[[2,47]],"78":[[2,47]],"79":[[2,47]],"80":[[2,47]],"81":[[2,47]],"82":[[2,47]],"83":[[2,47]],"84":[[2,47]],"85":[[2,47]],"86":[[2,47]],"87":[[2,47]],"95":[[2,47]],"97":[[2,47]],"111":[[2,47]],"114":[[2,47]],"121":[[2,47]],"125":[[2,47]],"133":[[2,47]],"134":[[2,47]],"135":[[2,47]],"139":[[2,47]],"140":[[2,47]],"147":[[2,47]],"152":[[2,47]]},{"1":[[2,26]],"3":[[2,26]],"23":[[2,26]],"24":[[2,26]],"42":[[2,26]],"48":[[2,26]],"49":[[2,26]],"52":[[2,26]],"53":[[2,26]],"56":[[2,26]],"57":[[2,26]],"58":[[2,26]],"59":[[2,26]],"60":[[2,26]],"61":[[2,26]],"62":[[2,26]],"63":[[2,26]],"64":[[2,26]],"65":[[2,26]],"66":[[2,26]],"67":[[2,26]],"68":[[2,26]],"69":[[2,26]],"70":[[2,26]],"71":[[2,26]],"72":[[2,26]],"73":[[2,26]],"74":[[2,26]],"75":[[2,26]],"76":[[2,26]],"77":[[2,26]],"78":[[2,26]],"79":[[2,26]],"80":[[2,26]],"81":[[2,26]],"82":[[2,26]],"83":[[2,26]],"84":[[2,26]],"85":[[2,26]],"86":[[2,26]],"87":[[2,26]],"95":[[2,26]],"97":[[2,26]],"105":[[2,26]],"106":[[2,26]],"107":[[2,26]],"110":[[2,26]],"111":[[2,26]],"114":[[2,26]],"117":[[2,26]],"119":[[2,26]],"121":[[2,26]],"125":[[2,26]],"133":[[2,26]],"134":[[2,26]],"135":[[2,26]],"138":[[2,26]],"139":[[2,26]],"140":[[2,26]],"147":[[2,26]],"152":[[2,26]]},{"1":[[2,29]],"3":[[2,29]],"23":[[2,29]],"24":[[2,29]],"42":[[2,29]],"48":[[2,29]],"49":[[2,29]],"52":[[2,29]],"53":[[2,29]],"56":[[2,29]],"57":[[2,29]],"58":[[2,29]],"59":[[2,29]],"60":[[2,29]],"61":[[2,29]],"62":[[2,29]],"63":[[2,29]],"64":[[2,29]],"65":[[2,29]],"66":[[2,29]],"67":[[2,29]],"68":[[2,29]],"69":[[2,29]],"70":[[2,29]],"71":[[2,29]],"72":[[2,29]],"73":[[2,29]],"74":[[2,29]],"75":[[2,29]],"76":[[2,29]],"77":[[2,29]],"78":[[2,29]],"79":[[2,29]],"80":[[2,29]],"81":[[2,29]],"82":[[2,29]],"83":[[2,29]],"84":[[2,29]],"85":[[2,29]],"86":[[2,29]],"87":[[2,29]],"95":[[2,29]],"97":[[2,29]],"105":[[2,29]],"106":[[2,29]],"107":[[2,29]],"110":[[2,29]],"111":[[2,29]],"114":[[2,29]],"117":[[2,29]],"119":[[2,29]],"121":[[2,29]],"125":[[2,29]],"133":[[2,29]],"134":[[2,29]],"135":[[2,29]],"139":[[2,29]],"140":[[2,29]],"147":[[2,29]],"152":[[2,29]]},{"1":[[2,30]],"3":[[2,30]],"23":[[2,30]],"24":[[2,30]],"42":[[2,30]],"48":[[2,30]],"49":[[2,30]],"52":[[2,30]],"53":[[2,30]],"56":[[2,30]],"57":[[2,30]],"58":[[2,30]],"59":[[2,30]],"60":[[2,30]],"61":[[2,30]],"62":[[2,30]],"63":[[2,30]],"64":[[2,30]],"65":[[2,30]],"66":[[2,30]],"67":[[2,30]],"68":[[2,30]],"69":[[2,30]],"70":[[2,30]],"71":[[2,30]],"72":[[2,30]],"73":[[2,30]],"74":[[2,30]],"75":[[2,30]],"76":[[2,30]],"77":[[2,30]],"78":[[2,30]],"79":[[2,30]],"80":[[2,30]],"81":[[2,30]],"82":[[2,30]],"83":[[2,30]],"84":[[2,30]],"85":[[2,30]],"86":[[2,30]],"87":[[2,30]],"95":[[2,30]],"97":[[2,30]],"105":[[2,30]],"106":[[2,30]],"107":[[2,30]],"110":[[2,30]],"111":[[2,30]],"114":[[2,30]],"117":[[2,30]],"119":[[2,30]],"121":[[2,30]],"125":[[2,30]],"133":[[2,30]],"134":[[2,30]],"135":[[2,30]],"139":[[2,30]],"140":[[2,30]],"147":[[2,30]],"152":[[2,30]]},{"1":[[2,31]],"3":[[2,31]],"23":[[2,31]],"24":[[2,31]],"42":[[2,31]],"48":[[2,31]],"49":[[2,31]],"52":[[2,31]],"53":[[2,31]],"56":[[2,31]],"57":[[2,31]],"58":[[2,31]],"59":[[2,31]],"60":[[2,31]],"61":[[2,31]],"62":[[2,31]],"63":[[2,31]],"64":[[2,31]],"65":[[2,31]],"66":[[2,31]],"67":[[2,31]],"68":[[2,31]],"69":[[2,31]],"70":[[2,31]],"71":[[2,31]],"72":[[2,31]],"73":[[2,31]],"74":[[2,31]],"75":[[2,31]],"76":[[2,31]],"77":[[2,31]],"78":[[2,31]],"79":[[2,31]],"80":[[2,31]],"81":[[2,31]],"82":[[2,31]],"83":[[2,31]],"84":[[2,31]],"85":[[2,31]],"86":[[2,31]],"87":[[2,31]],"95":[[2,31]],"97":[[2,31]],"105":[[2,31]],"106":[[2,31]],"107":[[2,31]],"110":[[2,31]],"111":[[2,31]],"114":[[2,31]],"117":[[2,31]],"119":[[2,31]],"121":[[2,31]],"125":[[2,31]],"133":[[2,31]],"134":[[2,31]],"135":[[2,31]],"139":[[2,31]],"140":[[2,31]],"147":[[2,31]],"152":[[2,31]]},{"1":[[2,32]],"3":[[2,32]],"23":[[2,32]],"24":[[2,32]],"42":[[2,32]],"48":[[2,32]],"49":[[2,32]],"52":[[2,32]],"53":[[2,32]],"56":[[2,32]],"57":[[2,32]],"58":[[2,32]],"59":[[2,32]],"60":[[2,32]],"61":[[2,32]],"62":[[2,32]],"63":[[2,32]],"64":[[2,32]],"65":[[2,32]],"66":[[2,32]],"67":[[2,32]],"68":[[2,32]],"69":[[2,32]],"70":[[2,32]],"71":[[2,32]],"72":[[2,32]],"73":[[2,32]],"74":[[2,32]],"75":[[2,32]],"76":[[2,32]],"77":[[2,32]],"78":[[2,32]],"79":[[2,32]],"80":[[2,32]],"81":[[2,32]],"82":[[2,32]],"83":[[2,32]],"84":[[2,32]],"85":[[2,32]],"86":[[2,32]],"87":[[2,32]],"95":[[2,32]],"97":[[2,32]],"105":[[2,32]],"106":[[2,32]],"107":[[2,32]],"110":[[2,32]],"111":[[2,32]],"114":[[2,32]],"117":[[2,32]],"119":[[2,32]],"121":[[2,32]],"125":[[2,32]],"133":[[2,32]],"134":[[2,32]],"135":[[2,32]],"139":[[2,32]],"140":[[2,32]],"147":[[2,32]],"152":[[2,32]]},{"1":[[2,33]],"3":[[2,33]],"23":[[2,33]],"24":[[2,33]],"42":[[2,33]],"48":[[2,33]],"49":[[2,33]],"52":[[2,33]],"53":[[2,33]],"56":[[2,33]],"57":[[2,33]],"58":[[2,33]],"59":[[2,33]],"60":[[2,33]],"61":[[2,33]],"62":[[2,33]],"63":[[2,33]],"64":[[2,33]],"65":[[2,33]],"66":[[2,33]],"67":[[2,33]],"68":[[2,33]],"69":[[2,33]],"70":[[2,33]],"71":[[2,33]],"72":[[2,33]],"73":[[2,33]],"74":[[2,33]],"75":[[2,33]],"76":[[2,33]],"77":[[2,33]],"78":[[2,33]],"79":[[2,33]],"80":[[2,33]],"81":[[2,33]],"82":[[2,33]],"83":[[2,33]],"84":[[2,33]],"85":[[2,33]],"86":[[2,33]],"87":[[2,33]],"95":[[2,33]],"97":[[2,33]],"105":[[2,33]],"106":[[2,33]],"107":[[2,33]],"110":[[2,33]],"111":[[2,33]],"114":[[2,33]],"117":[[2,33]],"119":[[2,33]],"121":[[2,33]],"125":[[2,33]],"133":[[2,33]],"134":[[2,33]],"135":[[2,33]],"139":[[2,33]],"140":[[2,33]],"147":[[2,33]],"152":[[2,33]]},{"1":[[2,34]],"3":[[2,34]],"23":[[2,34]],"24":[[2,34]],"42":[[2,34]],"48":[[2,34]],"49":[[2,34]],"52":[[2,34]],"53":[[2,34]],"56":[[2,34]],"57":[[2,34]],"58":[[2,34]],"59":[[2,34]],"60":[[2,34]],"61":[[2,34]],"62":[[2,34]],"63":[[2,34]],"64":[[2,34]],"65":[[2,34]],"66":[[2,34]],"67":[[2,34]],"68":[[2,34]],"69":[[2,34]],"70":[[2,34]],"71":[[2,34]],"72":[[2,34]],"73":[[2,34]],"74":[[2,34]],"75":[[2,34]],"76":[[2,34]],"77":[[2,34]],"78":[[2,34]],"79":[[2,34]],"80":[[2,34]],"81":[[2,34]],"82":[[2,34]],"83":[[2,34]],"84":[[2,34]],"85":[[2,34]],"86":[[2,34]],"87":[[2,34]],"95":[[2,34]],"97":[[2,34]],"105":[[2,34]],"106":[[2,34]],"107":[[2,34]],"110":[[2,34]],"111":[[2,34]],"114":[[2,34]],"117":[[2,34]],"119":[[2,34]],"121":[[2,34]],"125":[[2,34]],"133":[[2,34]],"134":[[2,34]],"135":[[2,34]],"139":[[2,34]],"140":[[2,34]],"147":[[2,34]],"152":[[2,34]]},{"1":[[2,35]],"3":[[2,35]],"23":[[2,35]],"24":[[2,35]],"42":[[2,35]],"48":[[2,35]],"49":[[2,35]],"52":[[2,35]],"53":[[2,35]],"56":[[2,35]],"57":[[2,35]],"58":[[2,35]],"59":[[2,35]],"60":[[2,35]],"61":[[2,35]],"62":[[2,35]],"63":[[2,35]],"64":[[2,35]],"65":[[2,35]],"66":[[2,35]],"67":[[2,35]],"68":[[2,35]],"69":[[2,35]],"70":[[2,35]],"71":[[2,35]],"72":[[2,35]],"73":[[2,35]],"74":[[2,35]],"75":[[2,35]],"76":[[2,35]],"77":[[2,35]],"78":[[2,35]],"79":[[2,35]],"80":[[2,35]],"81":[[2,35]],"82":[[2,35]],"83":[[2,35]],"84":[[2,35]],"85":[[2,35]],"86":[[2,35]],"87":[[2,35]],"95":[[2,35]],"97":[[2,35]],"105":[[2,35]],"106":[[2,35]],"107":[[2,35]],"110":[[2,35]],"111":[[2,35]],"114":[[2,35]],"117":[[2,35]],"119":[[2,35]],"121":[[2,35]],"125":[[2,35]],"133":[[2,35]],"134":[[2,35]],"135":[[2,35]],"139":[[2,35]],"140":[[2,35]],"147":[[2,35]],"152":[[2,35]]},{"1":[[2,36]],"3":[[2,36]],"23":[[2,36]],"24":[[2,36]],"42":[[2,36]],"48":[[2,36]],"49":[[2,36]],"52":[[2,36]],"53":[[2,36]],"56":[[2,36]],"57":[[2,36]],"58":[[2,36]],"59":[[2,36]],"60":[[2,36]],"61":[[2,36]],"62":[[2,36]],"63":[[2,36]],"64":[[2,36]],"65":[[2,36]],"66":[[2,36]],"67":[[2,36]],"68":[[2,36]],"69":[[2,36]],"70":[[2,36]],"71":[[2,36]],"72":[[2,36]],"73":[[2,36]],"74":[[2,36]],"75":[[2,36]],"76":[[2,36]],"77":[[2,36]],"78":[[2,36]],"79":[[2,36]],"80":[[2,36]],"81":[[2,36]],"82":[[2,36]],"83":[[2,36]],"84":[[2,36]],"85":[[2,36]],"86":[[2,36]],"87":[[2,36]],"95":[[2,36]],"97":[[2,36]],"105":[[2,36]],"106":[[2,36]],"107":[[2,36]],"110":[[2,36]],"111":[[2,36]],"114":[[2,36]],"117":[[2,36]],"119":[[2,36]],"121":[[2,36]],"125":[[2,36]],"133":[[2,36]],"134":[[2,36]],"135":[[2,36]],"139":[[2,36]],"140":[[2,36]],"147":[[2,36]],"152":[[2,36]]},{"1":[[2,37]],"3":[[2,37]],"23":[[2,37]],"24":[[2,37]],"42":[[2,37]],"48":[[2,37]],"49":[[2,37]],"52":[[2,37]],"53":[[2,37]],"56":[[2,37]],"57":[[2,37]],"58":[[2,37]],"59":[[2,37]],"60":[[2,37]],"61":[[2,37]],"62":[[2,37]],"63":[[2,37]],"64":[[2,37]],"65":[[2,37]],"66":[[2,37]],"67":[[2,37]],"68":[[2,37]],"69":[[2,37]],"70":[[2,37]],"71":[[2,37]],"72":[[2,37]],"73":[[2,37]],"74":[[2,37]],"75":[[2,37]],"76":[[2,37]],"77":[[2,37]],"78":[[2,37]],"79":[[2,37]],"80":[[2,37]],"81":[[2,37]],"82":[[2,37]],"83":[[2,37]],"84":[[2,37]],"85":[[2,37]],"86":[[2,37]],"87":[[2,37]],"95":[[2,37]],"97":[[2,37]],"105":[[2,37]],"106":[[2,37]],"107":[[2,37]],"110":[[2,37]],"111":[[2,37]],"114":[[2,37]],"117":[[2,37]],"119":[[2,37]],"121":[[2,37]],"125":[[2,37]],"133":[[2,37]],"134":[[2,37]],"135":[[2,37]],"139":[[2,37]],"140":[[2,37]],"147":[[2,37]],"152":[[2,37]]},{"1":[[2,38]],"3":[[2,38]],"23":[[2,38]],"24":[[2,38]],"42":[[2,38]],"48":[[2,38]],"49":[[2,38]],"52":[[2,38]],"53":[[2,38]],"56":[[2,38]],"57":[[2,38]],"58":[[2,38]],"59":[[2,38]],"60":[[2,38]],"61":[[2,38]],"62":[[2,38]],"63":[[2,38]],"64":[[2,38]],"65":[[2,38]],"66":[[2,38]],"67":[[2,38]],"68":[[2,38]],"69":[[2,38]],"70":[[2,38]],"71":[[2,38]],"72":[[2,38]],"73":[[2,38]],"74":[[2,38]],"75":[[2,38]],"76":[[2,38]],"77":[[2,38]],"78":[[2,38]],"79":[[2,38]],"80":[[2,38]],"81":[[2,38]],"82":[[2,38]],"83":[[2,38]],"84":[[2,38]],"85":[[2,38]],"86":[[2,38]],"87":[[2,38]],"95":[[2,38]],"97":[[2,38]],"105":[[2,38]],"106":[[2,38]],"107":[[2,38]],"110":[[2,38]],"111":[[2,38]],"114":[[2,38]],"117":[[2,38]],"119":[[2,38]],"121":[[2,38]],"125":[[2,38]],"133":[[2,38]],"134":[[2,38]],"135":[[2,38]],"139":[[2,38]],"140":[[2,38]],"147":[[2,38]],"152":[[2,38]]},{"1":[[2,39]],"3":[[2,39]],"23":[[2,39]],"24":[[2,39]],"42":[[2,39]],"48":[[2,39]],"49":[[2,39]],"52":[[2,39]],"53":[[2,39]],"56":[[2,39]],"57":[[2,39]],"58":[[2,39]],"59":[[2,39]],"60":[[2,39]],"61":[[2,39]],"62":[[2,39]],"63":[[2,39]],"64":[[2,39]],"65":[[2,39]],"66":[[2,39]],"67":[[2,39]],"68":[[2,39]],"69":[[2,39]],"70":[[2,39]],"71":[[2,39]],"72":[[2,39]],"73":[[2,39]],"74":[[2,39]],"75":[[2,39]],"76":[[2,39]],"77":[[2,39]],"78":[[2,39]],"79":[[2,39]],"80":[[2,39]],"81":[[2,39]],"82":[[2,39]],"83":[[2,39]],"84":[[2,39]],"85":[[2,39]],"86":[[2,39]],"87":[[2,39]],"95":[[2,39]],"97":[[2,39]],"105":[[2,39]],"106":[[2,39]],"107":[[2,39]],"110":[[2,39]],"111":[[2,39]],"114":[[2,39]],"117":[[2,39]],"119":[[2,39]],"121":[[2,39]],"125":[[2,39]],"133":[[2,39]],"134":[[2,39]],"135":[[2,39]],"139":[[2,39]],"140":[[2,39]],"147":[[2,39]],"152":[[2,39]]},{"1":[[2,40]],"3":[[2,40]],"23":[[2,40]],"24":[[2,40]],"42":[[2,40]],"48":[[2,40]],"49":[[2,40]],"52":[[2,40]],"53":[[2,40]],"56":[[2,40]],"57":[[2,40]],"58":[[2,40]],"59":[[2,40]],"60":[[2,40]],"61":[[2,40]],"62":[[2,40]],"63":[[2,40]],"64":[[2,40]],"65":[[2,40]],"66":[[2,40]],"67":[[2,40]],"68":[[2,40]],"69":[[2,40]],"70":[[2,40]],"71":[[2,40]],"72":[[2,40]],"73":[[2,40]],"74":[[2,40]],"75":[[2,40]],"76":[[2,40]],"77":[[2,40]],"78":[[2,40]],"79":[[2,40]],"80":[[2,40]],"81":[[2,40]],"82":[[2,40]],"83":[[2,40]],"84":[[2,40]],"85":[[2,40]],"86":[[2,40]],"87":[[2,40]],"95":[[2,40]],"97":[[2,40]],"105":[[2,40]],"106":[[2,40]],"107":[[2,40]],"110":[[2,40]],"111":[[2,40]],"114":[[2,40]],"117":[[2,40]],"119":[[2,40]],"121":[[2,40]],"125":[[2,40]],"133":[[2,40]],"134":[[2,40]],"135":[[2,40]],"139":[[2,40]],"140":[[2,40]],"147":[[2,40]],"152":[[2,40]]},{"3":[[2,141]],"6":163,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[1,164]],"24":[[2,141]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"95":[[2,141]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"120":162,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"125":[[2,141]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"3":[[2,120]],"22":170,"23":[[1,167]],"25":168,"26":[[1,53]],"27":169,"28":[[1,74]],"29":[[1,75]],"43":166,"45":[[1,52]],"95":[[2,120]],"113":165,"114":[[2,120]]},{"6":171,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,134]],"3":[[2,134]],"23":[[2,134]],"24":[[2,134]],"25":172,"26":[[1,53]],"42":[[2,134]],"48":[[2,134]],"49":[[2,134]],"52":[[2,134]],"53":[[2,134]],"56":[[2,134]],"57":[[2,134]],"58":[[2,134]],"59":[[2,134]],"60":[[2,134]],"61":[[2,134]],"62":[[2,134]],"63":[[2,134]],"64":[[2,134]],"65":[[2,134]],"66":[[2,134]],"67":[[2,134]],"68":[[2,134]],"69":[[2,134]],"70":[[2,134]],"71":[[2,134]],"72":[[2,134]],"73":[[2,134]],"74":[[2,134]],"75":[[2,134]],"76":[[2,134]],"77":[[2,134]],"78":[[2,134]],"79":[[2,134]],"80":[[2,134]],"81":[[2,134]],"82":[[2,134]],"83":[[2,134]],"84":[[2,134]],"85":[[2,134]],"86":[[2,134]],"87":[[2,134]],"95":[[2,134]],"97":[[2,134]],"105":[[2,134]],"106":[[2,134]],"107":[[2,134]],"110":[[2,134]],"111":[[2,134]],"114":[[2,134]],"117":[[2,134]],"119":[[2,134]],"121":[[2,134]],"125":[[2,134]],"133":[[2,134]],"134":[[2,134]],"135":[[2,134]],"139":[[2,134]],"140":[[2,134]],"147":[[2,134]],"152":[[2,134]]},{"119":[[1,173]]},{"23":[[2,97]]},{"23":[[2,98]]},{"6":174,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,27]],"3":[[2,27]],"23":[[2,27]],"24":[[2,27]],"42":[[2,27]],"48":[[2,27]],"49":[[2,27]],"52":[[2,27]],"53":[[2,27]],"56":[[2,27]],"57":[[2,27]],"58":[[2,27]],"59":[[2,27]],"60":[[2,27]],"61":[[2,27]],"62":[[2,27]],"63":[[2,27]],"64":[[2,27]],"65":[[2,27]],"66":[[2,27]],"67":[[2,27]],"68":[[2,27]],"69":[[2,27]],"70":[[2,27]],"71":[[2,27]],"72":[[2,27]],"73":[[2,27]],"74":[[2,27]],"75":[[2,27]],"76":[[2,27]],"77":[[2,27]],"78":[[2,27]],"79":[[2,27]],"80":[[2,27]],"81":[[2,27]],"82":[[2,27]],"83":[[2,27]],"84":[[2,27]],"85":[[2,27]],"86":[[2,27]],"87":[[2,27]],"95":[[2,27]],"97":[[2,27]],"105":[[2,27]],"106":[[2,27]],"107":[[2,27]],"110":[[2,27]],"111":[[2,27]],"114":[[2,27]],"117":[[2,27]],"119":[[2,27]],"121":[[2,27]],"125":[[2,27]],"133":[[2,27]],"134":[[2,27]],"135":[[2,27]],"139":[[2,27]],"140":[[2,27]],"147":[[2,27]],"152":[[2,27]]},{"1":[[2,28]],"3":[[2,28]],"23":[[2,28]],"24":[[2,28]],"42":[[2,28]],"48":[[2,28]],"49":[[2,28]],"52":[[2,28]],"53":[[2,28]],"56":[[2,28]],"57":[[2,28]],"58":[[2,28]],"59":[[2,28]],"60":[[2,28]],"61":[[2,28]],"62":[[2,28]],"63":[[2,28]],"64":[[2,28]],"65":[[2,28]],"66":[[2,28]],"67":[[2,28]],"68":[[2,28]],"69":[[2,28]],"70":[[2,28]],"71":[[2,28]],"72":[[2,28]],"73":[[2,28]],"74":[[2,28]],"75":[[2,28]],"76":[[2,28]],"77":[[2,28]],"78":[[2,28]],"79":[[2,28]],"80":[[2,28]],"81":[[2,28]],"82":[[2,28]],"83":[[2,28]],"84":[[2,28]],"85":[[2,28]],"86":[[2,28]],"87":[[2,28]],"95":[[2,28]],"97":[[2,28]],"105":[[2,28]],"106":[[2,28]],"107":[[2,28]],"110":[[2,28]],"111":[[2,28]],"114":[[2,28]],"117":[[2,28]],"119":[[2,28]],"121":[[2,28]],"125":[[2,28]],"133":[[2,28]],"134":[[2,28]],"135":[[2,28]],"139":[[2,28]],"140":[[2,28]],"147":[[2,28]],"152":[[2,28]]},{"1":[[2,7]],"3":[[2,7]],"6":175,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"24":[[2,7]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,4]]},{"1":[[2,58]],"3":[[2,58]],"23":[[2,58]],"24":[[2,58]],"48":[[2,58]],"49":[[2,58]],"52":[[2,58]],"53":[[2,58]],"56":[[2,58]],"57":[[2,58]],"58":[[2,58]],"59":[[2,58]],"60":[[2,58]],"61":[[2,58]],"62":[[2,58]],"63":[[2,58]],"64":[[2,58]],"65":[[2,58]],"66":[[2,58]],"67":[[2,58]],"68":[[2,58]],"69":[[2,58]],"70":[[2,58]],"71":[[2,58]],"72":[[2,58]],"73":[[2,58]],"74":[[2,58]],"75":[[2,58]],"76":[[2,58]],"77":[[2,58]],"78":[[2,58]],"79":[[2,58]],"80":[[2,58]],"81":[[2,58]],"82":[[2,58]],"83":[[2,58]],"84":[[2,58]],"85":[[2,58]],"86":[[2,58]],"87":[[2,58]],"95":[[2,58]],"97":[[2,58]],"111":[[2,58]],"114":[[2,58]],"121":[[2,58]],"125":[[2,58]],"133":[[2,58]],"134":[[2,58]],"135":[[2,58]],"139":[[2,58]],"140":[[2,58]],"147":[[2,58]],"152":[[2,58]]},{"1":[[2,59]],"3":[[2,59]],"23":[[2,59]],"24":[[2,59]],"48":[[2,59]],"49":[[2,59]],"52":[[2,59]],"53":[[2,59]],"56":[[2,59]],"57":[[2,59]],"58":[[2,59]],"59":[[2,59]],"60":[[2,59]],"61":[[2,59]],"62":[[2,59]],"63":[[2,59]],"64":[[2,59]],"65":[[2,59]],"66":[[2,59]],"67":[[2,59]],"68":[[2,59]],"69":[[2,59]],"70":[[2,59]],"71":[[2,59]],"72":[[2,59]],"73":[[2,59]],"74":[[2,59]],"75":[[2,59]],"76":[[2,59]],"77":[[2,59]],"78":[[2,59]],"79":[[2,59]],"80":[[2,59]],"81":[[2,59]],"82":[[2,59]],"83":[[2,59]],"84":[[2,59]],"85":[[2,59]],"86":[[2,59]],"87":[[2,59]],"95":[[2,59]],"97":[[2,59]],"111":[[2,59]],"114":[[2,59]],"121":[[2,59]],"125":[[2,59]],"133":[[2,59]],"134":[[2,59]],"135":[[2,59]],"139":[[2,59]],"140":[[2,59]],"147":[[2,59]],"152":[[2,59]]},{"6":176,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":177,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":178,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":179,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":180,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":181,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":182,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":183,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":184,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":185,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":186,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":187,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":188,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":189,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":190,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":191,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":192,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":193,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":194,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":195,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":196,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":197,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":198,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,94]],"3":[[2,94]],"6":199,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[2,94]],"24":[[2,94]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"56":[[2,94]],"57":[[2,94]],"58":[[2,94]],"59":[[2,94]],"60":[[2,94]],"61":[[2,94]],"62":[[2,94]],"63":[[2,94]],"64":[[2,94]],"65":[[2,94]],"66":[[2,94]],"67":[[2,94]],"68":[[2,94]],"69":[[2,94]],"70":[[2,94]],"71":[[2,94]],"72":[[2,94]],"73":[[2,94]],"74":[[2,94]],"75":[[2,94]],"76":[[2,94]],"77":[[2,94]],"78":[[2,94]],"79":[[2,94]],"80":[[2,94]],"81":[[2,94]],"82":[[2,94]],"83":[[2,94]],"84":[[2,94]],"85":[[2,94]],"86":[[2,94]],"87":[[2,94]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"95":[[2,94]],"97":[[2,94]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"111":[[2,94]],"112":[[1,67]],"114":[[2,94]],"115":[[1,31]],"116":32,"121":[[2,94]],"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"125":[[2,94]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"133":[[2,94]],"134":[[1,49]],"135":[[1,50]],"139":[[2,94]],"140":[[2,94]],"141":[[1,51]],"146":45,"147":[[1,73]],"152":[[2,94]]},{"6":200,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":201,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":202,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":203,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":204,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":205,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":206,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":207,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":208,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":209,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":210,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":211,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":212,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"25":160,"26":[[1,53]],"136":213},{"97":[[1,214]]},{"3":[[1,76]],"24":[[1,215]]},{"1":[[2,25]],"3":[[2,25]],"23":[[2,25]],"24":[[2,25]],"45":[[2,25]],"48":[[2,25]],"49":[[2,25]],"52":[[2,25]],"53":[[2,25]],"56":[[2,25]],"57":[[2,25]],"58":[[2,25]],"59":[[2,25]],"60":[[2,25]],"61":[[2,25]],"62":[[2,25]],"63":[[2,25]],"64":[[2,25]],"65":[[2,25]],"66":[[2,25]],"67":[[2,25]],"68":[[2,25]],"69":[[2,25]],"70":[[2,25]],"71":[[2,25]],"72":[[2,25]],"73":[[2,25]],"74":[[2,25]],"75":[[2,25]],"76":[[2,25]],"77":[[2,25]],"78":[[2,25]],"79":[[2,25]],"80":[[2,25]],"81":[[2,25]],"82":[[2,25]],"83":[[2,25]],"84":[[2,25]],"85":[[2,25]],"86":[[2,25]],"87":[[2,25]],"95":[[2,25]],"97":[[2,25]],"111":[[2,25]],"114":[[2,25]],"121":[[2,25]],"125":[[2,25]],"129":[[2,25]],"130":[[2,25]],"133":[[2,25]],"134":[[2,25]],"135":[[2,25]],"139":[[2,25]],"140":[[2,25]],"143":[[2,25]],"145":[[2,25]],"147":[[2,25]],"152":[[2,25]]},{"1":[[2,111]],"3":[[2,111]],"23":[[2,111]],"24":[[2,111]],"42":[[2,111]],"48":[[2,111]],"49":[[2,111]],"52":[[2,111]],"53":[[2,111]],"56":[[2,111]],"57":[[2,111]],"58":[[2,111]],"59":[[2,111]],"60":[[2,111]],"61":[[2,111]],"62":[[2,111]],"63":[[2,111]],"64":[[2,111]],"65":[[2,111]],"66":[[2,111]],"67":[[2,111]],"68":[[2,111]],"69":[[2,111]],"70":[[2,111]],"71":[[2,111]],"72":[[2,111]],"73":[[2,111]],"74":[[2,111]],"75":[[2,111]],"76":[[2,111]],"77":[[2,111]],"78":[[2,111]],"79":[[2,111]],"80":[[2,111]],"81":[[2,111]],"82":[[2,111]],"83":[[2,111]],"84":[[2,111]],"85":[[2,111]],"86":[[2,111]],"87":[[2,111]],"95":[[2,111]],"97":[[2,111]],"105":[[2,111]],"106":[[2,111]],"107":[[2,111]],"110":[[2,111]],"111":[[2,111]],"114":[[2,111]],"117":[[2,111]],"119":[[2,111]],"121":[[2,111]],"125":[[2,111]],"133":[[2,111]],"134":[[2,111]],"135":[[2,111]],"139":[[2,111]],"140":[[2,111]],"147":[[2,111]],"152":[[2,111]]},{"6":216,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"7":217,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":218,"112":[[1,67]],"123":[[1,69]],"124":[[1,66]],"132":[[1,68]]},{"1":[[2,130]],"3":[[2,130]],"23":[[2,130]],"24":[[2,130]],"48":[[2,130]],"49":[[2,130]],"52":[[2,130]],"53":[[2,130]],"56":[[2,130]],"57":[[2,130]],"58":[[2,130]],"59":[[2,130]],"60":[[2,130]],"61":[[2,130]],"62":[[2,130]],"63":[[2,130]],"64":[[2,130]],"65":[[2,130]],"66":[[2,130]],"67":[[2,130]],"68":[[2,130]],"69":[[2,130]],"70":[[2,130]],"71":[[2,130]],"72":[[2,130]],"73":[[2,130]],"74":[[2,130]],"75":[[2,130]],"76":[[2,130]],"77":[[2,130]],"78":[[2,130]],"79":[[2,130]],"80":[[2,130]],"81":[[2,130]],"82":[[2,130]],"83":[[2,130]],"84":[[2,130]],"85":[[2,130]],"86":[[2,130]],"87":[[2,130]],"95":[[2,130]],"97":[[2,130]],"105":[[2,130]],"106":[[2,130]],"107":[[2,130]],"110":[[2,130]],"111":[[2,130]],"114":[[2,130]],"119":[[2,130]],"121":[[2,130]],"125":[[2,130]],"133":[[2,130]],"134":[[2,130]],"135":[[2,130]],"139":[[2,130]],"140":[[2,130]],"147":[[2,130]],"152":[[2,130]]},{"25":219,"26":[[1,53]]},{"25":220,"26":[[1,53]]},{"25":221,"26":[[1,53]]},{"1":[[2,116]],"3":[[2,116]],"23":[[2,116]],"24":[[2,116]],"42":[[2,116]],"48":[[2,116]],"49":[[2,116]],"52":[[2,116]],"53":[[2,116]],"56":[[2,116]],"57":[[2,116]],"58":[[2,116]],"59":[[2,116]],"60":[[2,116]],"61":[[2,116]],"62":[[2,116]],"63":[[2,116]],"64":[[2,116]],"65":[[2,116]],"66":[[2,116]],"67":[[2,116]],"68":[[2,116]],"69":[[2,116]],"70":[[2,116]],"71":[[2,116]],"72":[[2,116]],"73":[[2,116]],"74":[[2,116]],"75":[[2,116]],"76":[[2,116]],"77":[[2,116]],"78":[[2,116]],"79":[[2,116]],"80":[[2,116]],"81":[[2,116]],"82":[[2,116]],"83":[[2,116]],"84":[[2,116]],"85":[[2,116]],"86":[[2,116]],"87":[[2,116]],"95":[[2,116]],"97":[[2,116]],"105":[[2,116]],"106":[[2,116]],"107":[[2,116]],"110":[[2,116]],"111":[[2,116]],"114":[[2,116]],"117":[[2,116]],"119":[[2,116]],"121":[[2,116]],"125":[[2,116]],"133":[[2,116]],"134":[[2,116]],"135":[[2,116]],"139":[[2,116]],"140":[[2,116]],"147":[[2,116]],"152":[[2,116]]},{"1":[[2,117]],"3":[[2,117]],"23":[[2,117]],"24":[[2,117]],"42":[[2,117]],"48":[[2,117]],"49":[[2,117]],"52":[[2,117]],"53":[[2,117]],"56":[[2,117]],"57":[[2,117]],"58":[[2,117]],"59":[[2,117]],"60":[[2,117]],"61":[[2,117]],"62":[[2,117]],"63":[[2,117]],"64":[[2,117]],"65":[[2,117]],"66":[[2,117]],"67":[[2,117]],"68":[[2,117]],"69":[[2,117]],"70":[[2,117]],"71":[[2,117]],"72":[[2,117]],"73":[[2,117]],"74":[[2,117]],"75":[[2,117]],"76":[[2,117]],"77":[[2,117]],"78":[[2,117]],"79":[[2,117]],"80":[[2,117]],"81":[[2,117]],"82":[[2,117]],"83":[[2,117]],"84":[[2,117]],"85":[[2,117]],"86":[[2,117]],"87":[[2,117]],"95":[[2,117]],"97":[[2,117]],"105":[[2,117]],"106":[[2,117]],"107":[[2,117]],"110":[[2,117]],"111":[[2,117]],"114":[[2,117]],"117":[[2,117]],"119":[[2,117]],"121":[[2,117]],"125":[[2,117]],"133":[[2,117]],"134":[[2,117]],"135":[[2,117]],"139":[[2,117]],"140":[[2,117]],"147":[[2,117]],"152":[[2,117]]},{"3":[[2,141]],"6":223,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[1,164]],"24":[[2,141]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"95":[[2,141]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"120":222,"121":[[2,141]],"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":224,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,112]],"3":[[2,112]],"23":[[2,112]],"24":[[2,112]],"42":[[2,112]],"48":[[2,112]],"49":[[2,112]],"52":[[2,112]],"53":[[2,112]],"56":[[2,112]],"57":[[2,112]],"58":[[2,112]],"59":[[2,112]],"60":[[2,112]],"61":[[2,112]],"62":[[2,112]],"63":[[2,112]],"64":[[2,112]],"65":[[2,112]],"66":[[2,112]],"67":[[2,112]],"68":[[2,112]],"69":[[2,112]],"70":[[2,112]],"71":[[2,112]],"72":[[2,112]],"73":[[2,112]],"74":[[2,112]],"75":[[2,112]],"76":[[2,112]],"77":[[2,112]],"78":[[2,112]],"79":[[2,112]],"80":[[2,112]],"81":[[2,112]],"82":[[2,112]],"83":[[2,112]],"84":[[2,112]],"85":[[2,112]],"86":[[2,112]],"87":[[2,112]],"95":[[2,112]],"97":[[2,112]],"105":[[2,112]],"106":[[2,112]],"107":[[2,112]],"110":[[2,112]],"111":[[2,112]],"114":[[2,112]],"117":[[2,112]],"119":[[2,112]],"121":[[2,112]],"125":[[2,112]],"133":[[2,112]],"134":[[2,112]],"135":[[2,112]],"139":[[2,112]],"140":[[2,112]],"147":[[2,112]],"152":[[2,112]]},{"1":[[2,131]],"3":[[2,131]],"23":[[2,131]],"24":[[2,131]],"48":[[2,131]],"49":[[2,131]],"52":[[2,131]],"53":[[2,131]],"56":[[2,131]],"57":[[2,131]],"58":[[2,131]],"59":[[2,131]],"60":[[2,131]],"61":[[2,131]],"62":[[2,131]],"63":[[2,131]],"64":[[2,131]],"65":[[2,131]],"66":[[2,131]],"67":[[2,131]],"68":[[2,131]],"69":[[2,131]],"70":[[2,131]],"71":[[2,131]],"72":[[2,131]],"73":[[2,131]],"74":[[2,131]],"75":[[2,131]],"76":[[2,131]],"77":[[2,131]],"78":[[2,131]],"79":[[2,131]],"80":[[2,131]],"81":[[2,131]],"82":[[2,131]],"83":[[2,131]],"84":[[2,131]],"85":[[2,131]],"86":[[2,131]],"87":[[2,131]],"95":[[2,131]],"97":[[2,131]],"105":[[2,131]],"106":[[2,131]],"107":[[2,131]],"110":[[2,131]],"111":[[2,131]],"114":[[2,131]],"119":[[2,131]],"121":[[2,131]],"125":[[2,131]],"133":[[2,131]],"134":[[2,131]],"135":[[2,131]],"139":[[2,131]],"140":[[2,131]],"147":[[2,131]],"152":[[2,131]]},{"1":[[2,127]],"3":[[2,127]],"23":[[2,127]],"24":[[2,127]],"48":[[2,127]],"49":[[2,127]],"52":[[2,127]],"53":[[2,127]],"56":[[2,127]],"57":[[2,127]],"58":[[2,127]],"59":[[2,127]],"60":[[2,127]],"61":[[2,127]],"62":[[2,127]],"63":[[2,127]],"64":[[2,127]],"65":[[2,127]],"66":[[2,127]],"67":[[2,127]],"68":[[2,127]],"69":[[2,127]],"70":[[2,127]],"71":[[2,127]],"72":[[2,127]],"73":[[2,127]],"74":[[2,127]],"75":[[2,127]],"76":[[2,127]],"77":[[2,127]],"78":[[2,127]],"79":[[2,127]],"80":[[2,127]],"81":[[2,127]],"82":[[2,127]],"83":[[2,127]],"84":[[2,127]],"85":[[2,127]],"86":[[2,127]],"87":[[2,127]],"95":[[2,127]],"97":[[2,127]],"103":132,"105":[[1,125]],"106":[[1,126]],"107":[[1,127]],"108":128,"109":129,"110":[[1,131]],"111":[[2,127]],"114":[[2,127]],"118":133,"119":[[1,130]],"121":[[2,127]],"125":[[2,127]],"133":[[2,127]],"134":[[2,127]],"135":[[2,127]],"139":[[2,127]],"140":[[2,127]],"147":[[2,127]],"152":[[2,127]]},{"103":121,"105":[[1,125]],"106":[[1,126]],"107":[[1,127]],"108":128,"109":129,"110":[[1,131]],"118":124,"119":[[1,130]]},{"90":[[1,225]],"95":[[1,226]]},{"90":[[2,99]],"95":[[2,99]],"97":[[1,227]]},{"90":[[2,101]],"95":[[2,101]],"97":[[2,101]]},{"1":[[2,96]],"3":[[2,96]],"23":[[2,96]],"24":[[2,96]],"48":[[2,96]],"49":[[2,96]],"52":[[2,96]],"53":[[2,96]],"56":[[2,96]],"57":[[2,96]],"58":[[2,96]],"59":[[2,96]],"60":[[2,96]],"61":[[2,96]],"62":[[2,96]],"63":[[2,96]],"64":[[2,96]],"65":[[2,96]],"66":[[2,96]],"67":[[2,96]],"68":[[2,96]],"69":[[2,96]],"70":[[2,96]],"71":[[2,96]],"72":[[2,96]],"73":[[2,96]],"74":[[2,96]],"75":[[2,96]],"76":[[2,96]],"77":[[2,96]],"78":[[2,96]],"79":[[2,96]],"80":[[2,96]],"81":[[2,96]],"82":[[2,96]],"83":[[2,96]],"84":[[2,96]],"85":[[2,96]],"86":[[2,96]],"87":[[2,96]],"95":[[2,96]],"97":[[2,96]],"111":[[2,96]],"114":[[2,96]],"121":[[2,96]],"125":[[2,96]],"133":[[2,96]],"134":[[2,96]],"135":[[2,96]],"139":[[2,96]],"140":[[2,96]],"147":[[2,96]],"152":[[2,96]]},{"1":[[2,48]],"3":[[2,48]],"23":[[2,48]],"24":[[2,48]],"48":[[1,84]],"49":[[1,83]],"52":[null],"53":[null],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,48]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,48]],"97":[[1,118]],"111":[[2,48]],"114":[[2,48]],"121":[[2,48]],"125":[[2,48]],"133":[[2,48]],"134":[[1,116]],"135":[[1,117]],"139":[[2,48]],"140":[[2,48]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,49]],"3":[[2,49]],"23":[[2,49]],"24":[[2,49]],"48":[[1,84]],"49":[[1,83]],"52":[null],"53":[null],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,49]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,49]],"97":[[1,118]],"111":[[2,49]],"114":[[2,49]],"121":[[2,49]],"125":[[2,49]],"133":[[2,49]],"134":[[1,116]],"135":[[1,117]],"139":[[2,49]],"140":[[2,49]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,50]],"3":[[2,50]],"23":[[2,50]],"24":[[2,50]],"48":[[1,84]],"49":[[1,83]],"52":[null],"53":[null],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,50]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,50]],"97":[[1,118]],"111":[[2,50]],"114":[[2,50]],"121":[[2,50]],"125":[[2,50]],"133":[[2,50]],"134":[[1,116]],"135":[[1,117]],"139":[[2,50]],"140":[[2,50]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,51]],"3":[[2,51]],"23":[[2,51]],"24":[[2,51]],"48":[[1,84]],"49":[[1,83]],"52":[null],"53":[null],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,51]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,51]],"97":[[1,118]],"111":[[2,51]],"114":[[2,51]],"121":[[2,51]],"125":[[2,51]],"133":[[2,51]],"134":[[1,116]],"135":[[1,117]],"139":[[2,51]],"140":[[2,51]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,52]],"3":[[2,52]],"23":[[2,52]],"24":[[2,52]],"48":[[1,84]],"49":[[1,83]],"52":[null],"53":[null],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,52]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,52]],"97":[[1,118]],"111":[[2,52]],"114":[[2,52]],"121":[[2,52]],"125":[[2,52]],"133":[[2,52]],"134":[[1,116]],"135":[[1,117]],"139":[[2,52]],"140":[[2,52]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,53]],"3":[[2,53]],"23":[[2,53]],"24":[[2,53]],"48":[[1,84]],"49":[[1,83]],"52":[null],"53":[null],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,53]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,53]],"97":[[1,118]],"111":[[2,53]],"114":[[2,53]],"121":[[2,53]],"125":[[2,53]],"133":[[2,53]],"134":[[1,116]],"135":[[1,117]],"139":[[2,53]],"140":[[2,53]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,54]],"3":[[2,54]],"23":[[2,54]],"24":[[2,54]],"48":[[1,84]],"49":[[1,83]],"52":[null],"53":[null],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,54]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,54]],"97":[[1,118]],"111":[[2,54]],"114":[[2,54]],"121":[[2,54]],"125":[[2,54]],"133":[[2,54]],"134":[[1,116]],"135":[[1,117]],"139":[[2,54]],"140":[[2,54]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,55]],"3":[[2,55]],"23":[[2,55]],"24":[[2,55]],"48":[[1,84]],"49":[[1,83]],"52":[null],"53":[null],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,55]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,55]],"97":[[1,118]],"111":[[2,55]],"114":[[2,55]],"121":[[2,55]],"125":[[2,55]],"133":[[2,55]],"134":[[1,116]],"135":[[1,117]],"139":[[2,55]],"140":[[2,55]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,56]],"3":[[2,56]],"23":[[2,56]],"24":[[2,56]],"48":[[2,56]],"49":[[2,56]],"52":[[2,56]],"53":[[2,56]],"56":[[2,56]],"57":[[2,56]],"58":[[2,56]],"59":[[2,56]],"60":[[2,56]],"61":[[2,56]],"62":[[2,56]],"63":[[2,56]],"64":[[2,56]],"65":[[2,56]],"66":[[2,56]],"67":[[2,56]],"68":[[2,56]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,56]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,56]],"97":[[1,118]],"111":[[2,56]],"114":[[2,56]],"121":[[2,56]],"125":[[2,56]],"133":[[2,56]],"134":[[1,116]],"135":[[1,117]],"139":[[2,56]],"140":[[2,56]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,57]],"3":[[2,57]],"23":[[2,57]],"24":[[2,57]],"48":[[2,57]],"49":[[2,57]],"52":[[2,57]],"53":[[2,57]],"56":[[2,57]],"57":[[2,57]],"58":[[2,57]],"59":[[2,57]],"60":[[2,57]],"61":[[2,57]],"62":[[2,57]],"63":[[2,57]],"64":[[2,57]],"65":[[2,57]],"66":[[2,57]],"67":[[2,57]],"68":[[2,57]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,57]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,57]],"97":[[1,118]],"111":[[2,57]],"114":[[2,57]],"121":[[2,57]],"125":[[2,57]],"133":[[2,57]],"134":[[1,116]],"135":[[1,117]],"139":[[2,57]],"140":[[2,57]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,183]],"3":[[2,183]],"23":[[2,183]],"24":[[2,183]],"48":[[2,183]],"49":[[2,183]],"52":[[2,183]],"53":[[2,183]],"56":[[2,183]],"57":[[2,183]],"58":[[2,183]],"59":[[2,183]],"60":[[2,183]],"61":[[2,183]],"62":[[2,183]],"63":[[2,183]],"64":[[2,183]],"65":[[2,183]],"66":[[2,183]],"67":[[2,183]],"68":[[2,183]],"69":[[2,183]],"70":[[2,183]],"71":[[2,183]],"72":[[2,183]],"73":[[2,183]],"74":[[2,183]],"75":[[2,183]],"76":[[2,183]],"77":[[2,183]],"78":[[2,183]],"79":[[2,183]],"80":[[2,183]],"81":[[2,183]],"82":[[2,183]],"83":[[2,183]],"84":[[2,183]],"85":[[2,183]],"86":[[2,183]],"87":[[2,183]],"95":[[2,183]],"97":[[2,183]],"111":[[2,183]],"114":[[2,183]],"121":[[2,183]],"125":[[2,183]],"133":[[2,183]],"134":[[2,183]],"135":[[2,183]],"139":[[2,183]],"140":[[2,183]],"147":[[2,183]],"152":[[2,183]]},{"1":[[2,181]],"3":[[2,181]],"23":[[2,181]],"24":[[2,181]],"48":[[2,181]],"49":[[2,181]],"52":[[2,181]],"53":[[2,181]],"56":[[2,181]],"57":[[2,181]],"58":[[2,181]],"59":[[2,181]],"60":[[2,181]],"61":[[2,181]],"62":[[2,181]],"63":[[2,181]],"64":[[2,181]],"65":[[2,181]],"66":[[2,181]],"67":[[2,181]],"68":[[2,181]],"69":[[2,181]],"70":[[2,181]],"71":[[2,181]],"72":[[2,181]],"73":[[2,181]],"74":[[2,181]],"75":[[2,181]],"76":[[2,181]],"77":[[2,181]],"78":[[2,181]],"79":[[2,181]],"80":[[2,181]],"81":[[2,181]],"82":[[2,181]],"83":[[2,181]],"84":[[2,181]],"85":[[2,181]],"86":[[2,181]],"87":[[2,181]],"95":[[2,181]],"97":[[2,181]],"111":[[2,181]],"114":[[2,181]],"121":[[2,181]],"125":[[2,181]],"133":[[2,181]],"134":[[2,181]],"135":[[2,181]],"139":[[2,181]],"140":[[2,181]],"147":[[2,181]],"152":[[2,181]]},{"1":[[2,179]],"3":[[2,179]],"23":[[2,179]],"24":[[2,179]],"48":[[2,179]],"49":[[2,179]],"52":[[2,179]],"53":[[2,179]],"56":[[2,179]],"57":[[2,179]],"58":[[2,179]],"59":[[2,179]],"60":[[2,179]],"61":[[2,179]],"62":[[2,179]],"63":[[2,179]],"64":[[2,179]],"65":[[2,179]],"66":[[2,179]],"67":[[2,179]],"68":[[2,179]],"69":[[2,179]],"70":[[2,179]],"71":[[2,179]],"72":[[2,179]],"73":[[2,179]],"74":[[2,179]],"75":[[2,179]],"76":[[2,179]],"77":[[2,179]],"78":[[2,179]],"79":[[2,179]],"80":[[2,179]],"81":[[2,179]],"82":[[2,179]],"83":[[2,179]],"84":[[2,179]],"85":[[2,179]],"86":[[2,179]],"87":[[2,179]],"95":[[2,179]],"97":[[2,179]],"111":[[2,179]],"114":[[2,179]],"121":[[2,179]],"125":[[2,179]],"133":[[2,179]],"134":[[2,179]],"135":[[2,179]],"139":[[2,179]],"140":[[2,179]],"143":[[1,153]],"147":[[2,179]],"148":229,"150":228,"152":[[2,179]]},{"5":230,"23":[[1,6]],"146":231,"147":[[1,73]]},{"1":[[2,177]],"3":[[2,177]],"23":[[2,177]],"24":[[2,177]],"48":[[2,177]],"49":[[2,177]],"52":[[2,177]],"53":[[2,177]],"56":[[2,177]],"57":[[2,177]],"58":[[2,177]],"59":[[2,177]],"60":[[2,177]],"61":[[2,177]],"62":[[2,177]],"63":[[2,177]],"64":[[2,177]],"65":[[2,177]],"66":[[2,177]],"67":[[2,177]],"68":[[2,177]],"69":[[2,177]],"70":[[2,177]],"71":[[2,177]],"72":[[2,177]],"73":[[2,177]],"74":[[2,177]],"75":[[2,177]],"76":[[2,177]],"77":[[2,177]],"78":[[2,177]],"79":[[2,177]],"80":[[2,177]],"81":[[2,177]],"82":[[2,177]],"83":[[2,177]],"84":[[2,177]],"85":[[2,177]],"86":[[2,177]],"87":[[2,177]],"95":[[2,177]],"97":[[2,177]],"111":[[2,177]],"114":[[2,177]],"121":[[2,177]],"125":[[2,177]],"133":[[2,177]],"134":[[2,177]],"135":[[2,177]],"139":[[2,177]],"140":[[2,177]],"143":[[2,177]],"147":[[2,177]],"152":[[2,177]]},{"128":232,"129":[[1,233]],"130":[[1,234]]},{"1":[[2,155]],"3":[[2,155]],"23":[[2,155]],"24":[[2,155]],"48":[[2,155]],"49":[[2,155]],"52":[[2,155]],"53":[[2,155]],"56":[[2,155]],"57":[[2,155]],"58":[[2,155]],"59":[[2,155]],"60":[[2,155]],"61":[[2,155]],"62":[[2,155]],"63":[[2,155]],"64":[[2,155]],"65":[[2,155]],"66":[[2,155]],"67":[[2,155]],"68":[[2,155]],"69":[[2,155]],"70":[[2,155]],"71":[[2,155]],"72":[[2,155]],"73":[[2,155]],"74":[[2,155]],"75":[[2,155]],"76":[[2,155]],"77":[[2,155]],"78":[[2,155]],"79":[[2,155]],"80":[[2,155]],"81":[[2,155]],"82":[[2,155]],"83":[[2,155]],"84":[[2,155]],"85":[[2,155]],"86":[[2,155]],"87":[[2,155]],"95":[[2,155]],"97":[[2,155]],"111":[[2,155]],"114":[[2,155]],"121":[[2,155]],"125":[[2,155]],"133":[[2,155]],"134":[[1,116]],"135":[[1,117]],"139":[[2,155]],"140":[[2,155]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,45]],"3":[[2,45]],"23":[[2,45]],"24":[[2,45]],"48":[[2,45]],"49":[[2,45]],"52":[[2,45]],"53":[[2,45]],"56":[[2,45]],"57":[[2,45]],"58":[[2,45]],"59":[[2,45]],"60":[[2,45]],"61":[[2,45]],"62":[[2,45]],"63":[[2,45]],"64":[[2,45]],"65":[[2,45]],"66":[[2,45]],"67":[[2,45]],"68":[[2,45]],"69":[[2,45]],"70":[[2,45]],"71":[[2,45]],"72":[[2,45]],"73":[[2,45]],"74":[[2,45]],"75":[[2,45]],"76":[[2,45]],"77":[[2,45]],"78":[[2,45]],"79":[[2,45]],"80":[[2,45]],"81":[[2,45]],"82":[[2,45]],"83":[[2,45]],"84":[[2,45]],"85":[[2,45]],"86":[[2,45]],"87":[[2,45]],"95":[[2,45]],"97":[[2,45]],"111":[[2,45]],"114":[[2,45]],"121":[[2,45]],"125":[[2,45]],"133":[[2,45]],"134":[[1,116]],"135":[[2,45]],"139":[[2,45]],"140":[[2,45]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,158]],"3":[[2,158]],"5":235,"23":[[2,158]],"24":[[2,158]],"48":[[2,158]],"49":[[2,158]],"52":[[2,158]],"53":[[2,158]],"56":[[2,158]],"57":[[2,158]],"58":[[2,158]],"59":[[2,158]],"60":[[2,158]],"61":[[2,158]],"62":[[2,158]],"63":[[2,158]],"64":[[2,158]],"65":[[2,158]],"66":[[2,158]],"67":[[2,158]],"68":[[2,158]],"69":[[2,158]],"70":[[2,158]],"71":[[2,158]],"72":[[2,158]],"73":[[2,158]],"74":[[2,158]],"75":[[2,158]],"76":[[2,158]],"77":[[2,158]],"78":[[2,158]],"79":[[2,158]],"80":[[2,158]],"81":[[2,158]],"82":[[2,158]],"83":[[2,158]],"84":[[2,158]],"85":[[2,158]],"86":[[2,158]],"87":[[2,158]],"95":[[2,158]],"97":[[2,158]],"111":[[2,158]],"114":[[2,158]],"121":[[2,158]],"125":[[2,158]],"133":[[2,158]],"134":[[1,116]],"135":[[2,158]],"139":[[2,158]],"140":[[2,158]],"147":[[1,114]],"152":[[1,115]]},{"87":[[1,237]],"137":236,"138":[[1,238]]},{"87":[[2,162]],"95":[[1,239]],"138":[[2,162]]},{"23":[[1,240]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"97":[[1,118]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"3":[[1,243]],"24":[[1,244]],"95":[[1,242]],"125":[[1,241]]},{"3":[[2,142]],"24":[[2,142]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,142]],"97":[[1,245]],"125":[[2,142]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"6":246,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"3":[[1,249]],"95":[[1,248]],"114":[[1,247]]},{"3":[[2,121]],"24":[[2,121]],"95":[[2,121]],"114":[[2,121]]},{"3":[[2,120]],"22":170,"23":[[1,167]],"24":[[2,120]],"25":168,"26":[[1,53]],"27":169,"28":[[1,74]],"29":[[1,75]],"43":166,"45":[[1,52]],"95":[[2,120]],"113":250},{"42":[[1,251]]},{"42":[[1,252]]},{"3":[[2,44]],"24":[[2,44]],"95":[[2,44]],"114":[[2,44]]},{"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"97":[[1,118]],"133":[[1,253]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,135]],"3":[[2,135]],"23":[[2,135]],"24":[[2,135]],"42":[[2,135]],"48":[[2,135]],"49":[[2,135]],"52":[[2,135]],"53":[[2,135]],"56":[[2,135]],"57":[[2,135]],"58":[[2,135]],"59":[[2,135]],"60":[[2,135]],"61":[[2,135]],"62":[[2,135]],"63":[[2,135]],"64":[[2,135]],"65":[[2,135]],"66":[[2,135]],"67":[[2,135]],"68":[[2,135]],"69":[[2,135]],"70":[[2,135]],"71":[[2,135]],"72":[[2,135]],"73":[[2,135]],"74":[[2,135]],"75":[[2,135]],"76":[[2,135]],"77":[[2,135]],"78":[[2,135]],"79":[[2,135]],"80":[[2,135]],"81":[[2,135]],"82":[[2,135]],"83":[[2,135]],"84":[[2,135]],"85":[[2,135]],"86":[[2,135]],"87":[[2,135]],"95":[[2,135]],"97":[[2,135]],"105":[[2,135]],"106":[[2,135]],"107":[[2,135]],"110":[[2,135]],"111":[[2,135]],"114":[[2,135]],"117":[[2,135]],"119":[[2,135]],"121":[[2,135]],"125":[[2,135]],"133":[[2,135]],"134":[[2,135]],"135":[[2,135]],"139":[[2,135]],"140":[[2,135]],"147":[[2,135]],"152":[[2,135]]},{"3":[[2,141]],"6":223,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[1,164]],"24":[[2,141]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"95":[[2,141]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"120":254,"121":[[2,141]],"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"5":255,"23":[[1,6]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"97":[[1,118]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,6]],"3":[[2,6]],"24":[[2,6]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"97":[[1,118]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,60]],"3":[[2,60]],"23":[[2,60]],"24":[[2,60]],"48":[[1,84]],"49":[[1,83]],"52":[[2,60]],"53":[[2,60]],"56":[[2,60]],"57":[[2,60]],"58":[[2,60]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,60]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,60]],"97":[[1,118]],"111":[[2,60]],"114":[[2,60]],"121":[[2,60]],"125":[[2,60]],"133":[[2,60]],"134":[[1,116]],"135":[[1,117]],"139":[[2,60]],"140":[[2,60]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,61]],"3":[[2,61]],"23":[[2,61]],"24":[[2,61]],"48":[[1,84]],"49":[[1,83]],"52":[[2,61]],"53":[[2,61]],"56":[[2,61]],"57":[[2,61]],"58":[[2,61]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,61]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,61]],"97":[[1,118]],"111":[[2,61]],"114":[[2,61]],"121":[[2,61]],"125":[[2,61]],"133":[[2,61]],"134":[[1,116]],"135":[[1,117]],"139":[[2,61]],"140":[[2,61]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,62]],"3":[[2,62]],"23":[[2,62]],"24":[[2,62]],"48":[[1,84]],"49":[[1,83]],"52":[[2,62]],"53":[[2,62]],"56":[[2,62]],"57":[[2,62]],"58":[[2,62]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,62]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,62]],"97":[[1,118]],"111":[[2,62]],"114":[[2,62]],"121":[[2,62]],"125":[[2,62]],"133":[[2,62]],"134":[[1,116]],"135":[[1,117]],"139":[[2,62]],"140":[[2,62]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,63]],"3":[[2,63]],"23":[[2,63]],"24":[[2,63]],"48":[[2,63]],"49":[[2,63]],"52":[[2,63]],"53":[[2,63]],"56":[[2,63]],"57":[[2,63]],"58":[[2,63]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,63]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,63]],"97":[[1,118]],"111":[[2,63]],"114":[[2,63]],"121":[[2,63]],"125":[[2,63]],"133":[[2,63]],"134":[[1,116]],"135":[[1,117]],"139":[[2,63]],"140":[[2,63]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,64]],"3":[[2,64]],"23":[[2,64]],"24":[[2,64]],"48":[[2,64]],"49":[[2,64]],"52":[[2,64]],"53":[[2,64]],"56":[[2,64]],"57":[[2,64]],"58":[[2,64]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,64]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,64]],"97":[[1,118]],"111":[[2,64]],"114":[[2,64]],"121":[[2,64]],"125":[[2,64]],"133":[[2,64]],"134":[[1,116]],"135":[[1,117]],"139":[[2,64]],"140":[[2,64]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,65]],"3":[[2,65]],"23":[[2,65]],"24":[[2,65]],"48":[[2,65]],"49":[[2,65]],"52":[[2,65]],"53":[[2,65]],"56":[[2,65]],"57":[[2,65]],"58":[[2,65]],"59":[[2,65]],"60":[[2,65]],"61":[[2,65]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,65]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,65]],"97":[[1,118]],"111":[[2,65]],"114":[[2,65]],"121":[[2,65]],"125":[[2,65]],"133":[[2,65]],"134":[[1,116]],"135":[[1,117]],"139":[[2,65]],"140":[[2,65]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,66]],"3":[[2,66]],"23":[[2,66]],"24":[[2,66]],"48":[[2,66]],"49":[[2,66]],"52":[[2,66]],"53":[[2,66]],"56":[[2,66]],"57":[[2,66]],"58":[[2,66]],"59":[[2,66]],"60":[[2,66]],"61":[[2,66]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,66]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,66]],"97":[[1,118]],"111":[[2,66]],"114":[[2,66]],"121":[[2,66]],"125":[[2,66]],"133":[[2,66]],"134":[[1,116]],"135":[[1,117]],"139":[[2,66]],"140":[[2,66]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,67]],"3":[[2,67]],"23":[[2,67]],"24":[[2,67]],"48":[[2,67]],"49":[[2,67]],"52":[[2,67]],"53":[[2,67]],"56":[[2,67]],"57":[[2,67]],"58":[[2,67]],"59":[[2,67]],"60":[[2,67]],"61":[[2,67]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,67]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,67]],"97":[[1,118]],"111":[[2,67]],"114":[[2,67]],"121":[[2,67]],"125":[[2,67]],"133":[[2,67]],"134":[[1,116]],"135":[[1,117]],"139":[[2,67]],"140":[[2,67]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,68]],"3":[[2,68]],"23":[[2,68]],"24":[[2,68]],"48":[[2,68]],"49":[[2,68]],"52":[[2,68]],"53":[[2,68]],"56":[[2,68]],"57":[[2,68]],"58":[[2,68]],"59":[[2,68]],"60":[[2,68]],"61":[[2,68]],"62":[[2,68]],"63":[[2,68]],"64":[[2,68]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,68]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,68]],"97":[[1,118]],"111":[[2,68]],"114":[[2,68]],"121":[[2,68]],"125":[[2,68]],"133":[[2,68]],"134":[[1,116]],"135":[[1,117]],"139":[[2,68]],"140":[[2,68]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,69]],"3":[[2,69]],"23":[[2,69]],"24":[[2,69]],"48":[[2,69]],"49":[[2,69]],"52":[[2,69]],"53":[[2,69]],"56":[[2,69]],"57":[[2,69]],"58":[[2,69]],"59":[[2,69]],"60":[[2,69]],"61":[[2,69]],"62":[[2,69]],"63":[[2,69]],"64":[[2,69]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,69]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,69]],"97":[[1,118]],"111":[[2,69]],"114":[[2,69]],"121":[[2,69]],"125":[[2,69]],"133":[[2,69]],"134":[[1,116]],"135":[[1,117]],"139":[[2,69]],"140":[[2,69]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,70]],"3":[[2,70]],"23":[[2,70]],"24":[[2,70]],"48":[[2,70]],"49":[[2,70]],"52":[[2,70]],"53":[[2,70]],"56":[[2,70]],"57":[[2,70]],"58":[[2,70]],"59":[[2,70]],"60":[[2,70]],"61":[[2,70]],"62":[[2,70]],"63":[[2,70]],"64":[[2,70]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,70]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,70]],"97":[[1,118]],"111":[[2,70]],"114":[[2,70]],"121":[[2,70]],"125":[[2,70]],"133":[[2,70]],"134":[[1,116]],"135":[[1,117]],"139":[[2,70]],"140":[[2,70]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,71]],"3":[[2,71]],"23":[[2,71]],"24":[[2,71]],"48":[[2,71]],"49":[[2,71]],"52":[[2,71]],"53":[[2,71]],"56":[[2,71]],"57":[[2,71]],"58":[[2,71]],"59":[[2,71]],"60":[[2,71]],"61":[[2,71]],"62":[[2,71]],"63":[[2,71]],"64":[[2,71]],"65":[[2,71]],"66":[[2,71]],"67":[[2,71]],"68":[[2,71]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,71]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,71]],"97":[[1,118]],"111":[[2,71]],"114":[[2,71]],"121":[[2,71]],"125":[[2,71]],"133":[[2,71]],"134":[[1,116]],"135":[[1,117]],"139":[[2,71]],"140":[[2,71]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,72]],"3":[[2,72]],"23":[[2,72]],"24":[[2,72]],"48":[[2,72]],"49":[[2,72]],"52":[[2,72]],"53":[[2,72]],"56":[[2,72]],"57":[[2,72]],"58":[[2,72]],"59":[[2,72]],"60":[[2,72]],"61":[[2,72]],"62":[[2,72]],"63":[[2,72]],"64":[[2,72]],"65":[[2,72]],"66":[[2,72]],"67":[[2,72]],"68":[[2,72]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,72]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,72]],"97":[[1,118]],"111":[[2,72]],"114":[[2,72]],"121":[[2,72]],"125":[[2,72]],"133":[[2,72]],"134":[[1,116]],"135":[[1,117]],"139":[[2,72]],"140":[[2,72]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,73]],"3":[[2,73]],"23":[[2,73]],"24":[[2,73]],"48":[[2,73]],"49":[[2,73]],"52":[[2,73]],"53":[[2,73]],"56":[[2,73]],"57":[[2,73]],"58":[[2,73]],"59":[[2,73]],"60":[[2,73]],"61":[[2,73]],"62":[[2,73]],"63":[[2,73]],"64":[[2,73]],"65":[[2,73]],"66":[[2,73]],"67":[[2,73]],"68":[[2,73]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,73]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,73]],"97":[[1,118]],"111":[[2,73]],"114":[[2,73]],"121":[[2,73]],"125":[[2,73]],"133":[[2,73]],"134":[[1,116]],"135":[[1,117]],"139":[[2,73]],"140":[[2,73]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,74]],"3":[[2,74]],"23":[[2,74]],"24":[[2,74]],"48":[[2,74]],"49":[[2,74]],"52":[[2,74]],"53":[[2,74]],"56":[[2,74]],"57":[[2,74]],"58":[[2,74]],"59":[[2,74]],"60":[[2,74]],"61":[[2,74]],"62":[[2,74]],"63":[[2,74]],"64":[[2,74]],"65":[[2,74]],"66":[[2,74]],"67":[[2,74]],"68":[[2,74]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,74]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,74]],"97":[[1,118]],"111":[[2,74]],"114":[[2,74]],"121":[[2,74]],"125":[[2,74]],"133":[[2,74]],"134":[[1,116]],"135":[[1,117]],"139":[[2,74]],"140":[[2,74]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,75]],"3":[[2,75]],"23":[[2,75]],"24":[[2,75]],"48":[[2,75]],"49":[[2,75]],"52":[[2,75]],"53":[[2,75]],"56":[[2,75]],"57":[[2,75]],"58":[[2,75]],"59":[[2,75]],"60":[[2,75]],"61":[[2,75]],"62":[[2,75]],"63":[[2,75]],"64":[[2,75]],"65":[[2,75]],"66":[[2,75]],"67":[[2,75]],"68":[[2,75]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,75]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,75]],"87":[[1,113]],"95":[[2,75]],"97":[[1,118]],"111":[[2,75]],"114":[[2,75]],"121":[[2,75]],"125":[[2,75]],"133":[[2,75]],"134":[[1,116]],"135":[[1,117]],"139":[[2,75]],"140":[[2,75]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,76]],"3":[[2,76]],"23":[[2,76]],"24":[[2,76]],"48":[[2,76]],"49":[[2,76]],"52":[[2,76]],"53":[[2,76]],"56":[[2,76]],"57":[[2,76]],"58":[[2,76]],"59":[[2,76]],"60":[[2,76]],"61":[[2,76]],"62":[[2,76]],"63":[[2,76]],"64":[[2,76]],"65":[[2,76]],"66":[[2,76]],"67":[[2,76]],"68":[[2,76]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,76]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,76]],"87":[[1,113]],"95":[[2,76]],"97":[[1,118]],"111":[[2,76]],"114":[[2,76]],"121":[[2,76]],"125":[[2,76]],"133":[[2,76]],"134":[[1,116]],"135":[[1,117]],"139":[[2,76]],"140":[[2,76]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,77]],"3":[[2,77]],"23":[[2,77]],"24":[[2,77]],"48":[[2,77]],"49":[[2,77]],"52":[[2,77]],"53":[[2,77]],"56":[[2,77]],"57":[[2,77]],"58":[[2,77]],"59":[[2,77]],"60":[[2,77]],"61":[[2,77]],"62":[[2,77]],"63":[[2,77]],"64":[[2,77]],"65":[[2,77]],"66":[[2,77]],"67":[[2,77]],"68":[[2,77]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,77]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,77]],"87":[[1,113]],"95":[[2,77]],"97":[[1,118]],"111":[[2,77]],"114":[[2,77]],"121":[[2,77]],"125":[[2,77]],"133":[[2,77]],"134":[[1,116]],"135":[[1,117]],"139":[[2,77]],"140":[[2,77]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,78]],"3":[[2,78]],"23":[[2,78]],"24":[[2,78]],"48":[[2,78]],"49":[[2,78]],"52":[[2,78]],"53":[[2,78]],"56":[[2,78]],"57":[[2,78]],"58":[[2,78]],"59":[[2,78]],"60":[[2,78]],"61":[[2,78]],"62":[[2,78]],"63":[[2,78]],"64":[[2,78]],"65":[[2,78]],"66":[[2,78]],"67":[[2,78]],"68":[[2,78]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,78]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,78]],"87":[[1,113]],"95":[[2,78]],"97":[[1,118]],"111":[[2,78]],"114":[[2,78]],"121":[[2,78]],"125":[[2,78]],"133":[[2,78]],"134":[[1,116]],"135":[[1,117]],"139":[[2,78]],"140":[[2,78]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,79]],"3":[[2,79]],"23":[[2,79]],"24":[[2,79]],"48":[[2,79]],"49":[[2,79]],"52":[[2,79]],"53":[[2,79]],"56":[[2,79]],"57":[[2,79]],"58":[[2,79]],"59":[[2,79]],"60":[[2,79]],"61":[[2,79]],"62":[[2,79]],"63":[[2,79]],"64":[[2,79]],"65":[[2,79]],"66":[[2,79]],"67":[[2,79]],"68":[[2,79]],"69":[[2,79]],"70":[[2,79]],"71":[[2,79]],"72":[[2,79]],"73":[[2,79]],"74":[[2,79]],"75":[[2,79]],"76":[[2,79]],"77":[[2,79]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,79]],"87":[[1,113]],"95":[[2,79]],"97":[[1,118]],"111":[[2,79]],"114":[[2,79]],"121":[[2,79]],"125":[[2,79]],"133":[[2,79]],"134":[[1,116]],"135":[[1,117]],"139":[[2,79]],"140":[[2,79]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,80]],"3":[[2,80]],"23":[[2,80]],"24":[[2,80]],"48":[[2,80]],"49":[[2,80]],"52":[[2,80]],"53":[[2,80]],"56":[[2,80]],"57":[[2,80]],"58":[[2,80]],"59":[[2,80]],"60":[[2,80]],"61":[[2,80]],"62":[[2,80]],"63":[[2,80]],"64":[[2,80]],"65":[[2,80]],"66":[[2,80]],"67":[[2,80]],"68":[[2,80]],"69":[[2,80]],"70":[[2,80]],"71":[[2,80]],"72":[[2,80]],"73":[[2,80]],"74":[[2,80]],"75":[[2,80]],"76":[[2,80]],"77":[[2,80]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,80]],"87":[[1,113]],"95":[[2,80]],"97":[[1,118]],"111":[[2,80]],"114":[[2,80]],"121":[[2,80]],"125":[[2,80]],"133":[[2,80]],"134":[[1,116]],"135":[[1,117]],"139":[[2,80]],"140":[[2,80]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,81]],"3":[[2,81]],"23":[[2,81]],"24":[[2,81]],"48":[[2,81]],"49":[[2,81]],"52":[[2,81]],"53":[[2,81]],"56":[[2,81]],"57":[[2,81]],"58":[[2,81]],"59":[[2,81]],"60":[[2,81]],"61":[[2,81]],"62":[[2,81]],"63":[[2,81]],"64":[[2,81]],"65":[[2,81]],"66":[[2,81]],"67":[[2,81]],"68":[[2,81]],"69":[[2,81]],"70":[[2,81]],"71":[[2,81]],"72":[[2,81]],"73":[[2,81]],"74":[[2,81]],"75":[[2,81]],"76":[[2,81]],"77":[[2,81]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,81]],"87":[[1,113]],"95":[[2,81]],"97":[[1,118]],"111":[[2,81]],"114":[[2,81]],"121":[[2,81]],"125":[[2,81]],"133":[[2,81]],"134":[[1,116]],"135":[[1,117]],"139":[[2,81]],"140":[[2,81]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,82]],"3":[[2,82]],"23":[[2,82]],"24":[[2,82]],"48":[[2,82]],"49":[[2,82]],"52":[[2,82]],"53":[[2,82]],"56":[[2,82]],"57":[[2,82]],"58":[[2,82]],"59":[[2,82]],"60":[[2,82]],"61":[[2,82]],"62":[[2,82]],"63":[[2,82]],"64":[[2,82]],"65":[[2,82]],"66":[[2,82]],"67":[[2,82]],"68":[[2,82]],"69":[[2,82]],"70":[[2,82]],"71":[[2,82]],"72":[[2,82]],"73":[[2,82]],"74":[[2,82]],"75":[[2,82]],"76":[[2,82]],"77":[[2,82]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,82]],"87":[[1,113]],"95":[[2,82]],"97":[[1,118]],"111":[[2,82]],"114":[[2,82]],"121":[[2,82]],"125":[[2,82]],"133":[[2,82]],"134":[[1,116]],"135":[[1,117]],"139":[[2,82]],"140":[[2,82]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,83]],"3":[[2,83]],"23":[[2,83]],"24":[[2,83]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,83]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,83]],"97":[[1,118]],"111":[[2,83]],"114":[[2,83]],"121":[[2,83]],"125":[[2,83]],"133":[[2,83]],"134":[[1,116]],"135":[[1,117]],"139":[[2,83]],"140":[[2,83]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,84]],"3":[[2,84]],"23":[[2,84]],"24":[[2,84]],"48":[[2,84]],"49":[[2,84]],"52":[[2,84]],"53":[[2,84]],"56":[[2,84]],"57":[[2,84]],"58":[[2,84]],"59":[[2,84]],"60":[[2,84]],"61":[[2,84]],"62":[[2,84]],"63":[[2,84]],"64":[[2,84]],"65":[[2,84]],"66":[[2,84]],"67":[[2,84]],"68":[[2,84]],"69":[[2,84]],"70":[[2,84]],"71":[[2,84]],"72":[[2,84]],"73":[[2,84]],"74":[[2,84]],"75":[[2,84]],"76":[[2,84]],"77":[[2,84]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,84]],"87":[[1,113]],"95":[[2,84]],"97":[[1,118]],"111":[[2,84]],"114":[[2,84]],"121":[[2,84]],"125":[[2,84]],"133":[[2,84]],"134":[[1,116]],"135":[[1,117]],"139":[[2,84]],"140":[[2,84]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,85]],"3":[[2,85]],"23":[[2,85]],"24":[[2,85]],"48":[[2,85]],"49":[[2,85]],"52":[[2,85]],"53":[[2,85]],"56":[[2,85]],"57":[[2,85]],"58":[[2,85]],"59":[[2,85]],"60":[[2,85]],"61":[[2,85]],"62":[[2,85]],"63":[[2,85]],"64":[[2,85]],"65":[[2,85]],"66":[[2,85]],"67":[[2,85]],"68":[[2,85]],"69":[[2,85]],"70":[[2,85]],"71":[[2,85]],"72":[[2,85]],"73":[[2,85]],"74":[[2,85]],"75":[[2,85]],"76":[[2,85]],"77":[[2,85]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,85]],"87":[[1,113]],"95":[[2,85]],"97":[[1,118]],"111":[[2,85]],"114":[[2,85]],"121":[[2,85]],"125":[[2,85]],"133":[[2,85]],"134":[[1,116]],"135":[[1,117]],"139":[[2,85]],"140":[[2,85]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,86]],"3":[[2,86]],"23":[[2,86]],"24":[[2,86]],"48":[[2,86]],"49":[[2,86]],"52":[[2,86]],"53":[[2,86]],"56":[[2,86]],"57":[[2,86]],"58":[[2,86]],"59":[[2,86]],"60":[[2,86]],"61":[[2,86]],"62":[[2,86]],"63":[[2,86]],"64":[[2,86]],"65":[[2,86]],"66":[[2,86]],"67":[[2,86]],"68":[[2,86]],"69":[[2,86]],"70":[[2,86]],"71":[[2,86]],"72":[[2,86]],"73":[[2,86]],"74":[[2,86]],"75":[[2,86]],"76":[[2,86]],"77":[[2,86]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,86]],"87":[[1,113]],"95":[[2,86]],"97":[[1,118]],"111":[[2,86]],"114":[[2,86]],"121":[[2,86]],"125":[[2,86]],"133":[[2,86]],"134":[[1,116]],"135":[[1,117]],"139":[[2,86]],"140":[[2,86]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,87]],"3":[[2,87]],"23":[[2,87]],"24":[[2,87]],"48":[[2,87]],"49":[[2,87]],"52":[[2,87]],"53":[[2,87]],"56":[[2,87]],"57":[[2,87]],"58":[[2,87]],"59":[[2,87]],"60":[[2,87]],"61":[[2,87]],"62":[[2,87]],"63":[[2,87]],"64":[[2,87]],"65":[[2,87]],"66":[[2,87]],"67":[[2,87]],"68":[[2,87]],"69":[[2,87]],"70":[[2,87]],"71":[[2,87]],"72":[[2,87]],"73":[[2,87]],"74":[[2,87]],"75":[[2,87]],"76":[[2,87]],"77":[[2,87]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,87]],"87":[[1,113]],"95":[[2,87]],"97":[[1,118]],"111":[[2,87]],"114":[[2,87]],"121":[[2,87]],"125":[[2,87]],"133":[[2,87]],"134":[[1,116]],"135":[[1,117]],"139":[[2,87]],"140":[[2,87]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,88]],"3":[[2,88]],"23":[[2,88]],"24":[[2,88]],"48":[[2,88]],"49":[[2,88]],"52":[[2,88]],"53":[[2,88]],"56":[[2,88]],"57":[[2,88]],"58":[[2,88]],"59":[[2,88]],"60":[[2,88]],"61":[[2,88]],"62":[[2,88]],"63":[[2,88]],"64":[[2,88]],"65":[[2,88]],"66":[[2,88]],"67":[[2,88]],"68":[[2,88]],"69":[[2,88]],"70":[[2,88]],"71":[[2,88]],"72":[[2,88]],"73":[[2,88]],"74":[[2,88]],"75":[[2,88]],"76":[[2,88]],"77":[[2,88]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,88]],"87":[[1,113]],"95":[[2,88]],"97":[[1,118]],"111":[[2,88]],"114":[[2,88]],"121":[[2,88]],"125":[[2,88]],"133":[[2,88]],"134":[[1,116]],"135":[[1,117]],"139":[[2,88]],"140":[[2,88]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,89]],"3":[[2,89]],"23":[[2,89]],"24":[[2,89]],"48":[[2,89]],"49":[[2,89]],"52":[[2,89]],"53":[[2,89]],"56":[[2,89]],"57":[[2,89]],"58":[[2,89]],"59":[[2,89]],"60":[[2,89]],"61":[[2,89]],"62":[[2,89]],"63":[[2,89]],"64":[[2,89]],"65":[[2,89]],"66":[[2,89]],"67":[[2,89]],"68":[[2,89]],"69":[[2,89]],"70":[[2,89]],"71":[[2,89]],"72":[[2,89]],"73":[[2,89]],"74":[[2,89]],"75":[[2,89]],"76":[[2,89]],"77":[[2,89]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,89]],"87":[[1,113]],"95":[[2,89]],"97":[[1,118]],"111":[[2,89]],"114":[[2,89]],"121":[[2,89]],"125":[[2,89]],"133":[[2,89]],"134":[[1,116]],"135":[[1,117]],"139":[[2,89]],"140":[[2,89]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,90]],"3":[[2,90]],"23":[[2,90]],"24":[[2,90]],"48":[[2,90]],"49":[[2,90]],"52":[[2,90]],"53":[[2,90]],"56":[[2,90]],"57":[[2,90]],"58":[[2,90]],"59":[[2,90]],"60":[[2,90]],"61":[[2,90]],"62":[[2,90]],"63":[[2,90]],"64":[[2,90]],"65":[[2,90]],"66":[[2,90]],"67":[[2,90]],"68":[[2,90]],"69":[[2,90]],"70":[[2,90]],"71":[[2,90]],"72":[[2,90]],"73":[[2,90]],"74":[[2,90]],"75":[[2,90]],"76":[[2,90]],"77":[[2,90]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,90]],"87":[[1,113]],"95":[[2,90]],"97":[[1,118]],"111":[[2,90]],"114":[[2,90]],"121":[[2,90]],"125":[[2,90]],"133":[[2,90]],"134":[[1,116]],"135":[[1,117]],"139":[[2,90]],"140":[[2,90]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,91]],"3":[[2,91]],"23":[[2,91]],"24":[[2,91]],"48":[[2,91]],"49":[[2,91]],"52":[[2,91]],"53":[[2,91]],"56":[[2,91]],"57":[[2,91]],"58":[[2,91]],"59":[[2,91]],"60":[[2,91]],"61":[[2,91]],"62":[[2,91]],"63":[[2,91]],"64":[[2,91]],"65":[[2,91]],"66":[[2,91]],"67":[[2,91]],"68":[[2,91]],"69":[[2,91]],"70":[[2,91]],"71":[[2,91]],"72":[[2,91]],"73":[[2,91]],"74":[[2,91]],"75":[[2,91]],"76":[[2,91]],"77":[[2,91]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[2,91]],"87":[[1,113]],"95":[[2,91]],"97":[[1,118]],"111":[[2,91]],"114":[[2,91]],"121":[[2,91]],"125":[[2,91]],"133":[[2,91]],"134":[[1,116]],"135":[[1,117]],"139":[[2,91]],"140":[[2,91]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,92]],"3":[[2,92]],"23":[[2,92]],"24":[[2,92]],"48":[[2,92]],"49":[[2,92]],"52":[[2,92]],"53":[[2,92]],"56":[[2,92]],"57":[[2,92]],"58":[[2,92]],"59":[[2,92]],"60":[[2,92]],"61":[[2,92]],"62":[[2,92]],"63":[[2,92]],"64":[[2,92]],"65":[[2,92]],"66":[[2,92]],"67":[[2,92]],"68":[[2,92]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[2,92]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,92]],"97":[[1,118]],"111":[[2,92]],"114":[[2,92]],"121":[[2,92]],"125":[[2,92]],"133":[[2,92]],"134":[[1,116]],"135":[[1,117]],"139":[[2,92]],"140":[[2,92]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,93]],"3":[[2,93]],"23":[[2,93]],"24":[[2,93]],"48":[[2,93]],"49":[[2,93]],"52":[[2,93]],"53":[[2,93]],"56":[[2,93]],"57":[[2,93]],"58":[[2,93]],"59":[[2,93]],"60":[[2,93]],"61":[[2,93]],"62":[[2,93]],"63":[[2,93]],"64":[[2,93]],"65":[[2,93]],"66":[[2,93]],"67":[[2,93]],"68":[[2,93]],"69":[[2,93]],"70":[[2,93]],"71":[[2,93]],"72":[[2,93]],"73":[[2,93]],"74":[[2,93]],"75":[[2,93]],"76":[[2,93]],"77":[[2,93]],"78":[[2,93]],"79":[[2,93]],"80":[[2,93]],"81":[[2,93]],"82":[[2,93]],"83":[[2,93]],"84":[[2,93]],"85":[[2,93]],"86":[[2,93]],"87":[[1,113]],"95":[[2,93]],"97":[[2,93]],"111":[[2,93]],"114":[[2,93]],"121":[[2,93]],"125":[[2,93]],"133":[[2,93]],"134":[[1,116]],"135":[[1,117]],"139":[[2,93]],"140":[[2,93]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,184]],"3":[[2,184]],"23":[[2,184]],"24":[[2,184]],"48":[[2,184]],"49":[[2,184]],"52":[[2,184]],"53":[[2,184]],"56":[[2,184]],"57":[[2,184]],"58":[[2,184]],"59":[[2,184]],"60":[[2,184]],"61":[[2,184]],"62":[[2,184]],"63":[[2,184]],"64":[[2,184]],"65":[[2,184]],"66":[[2,184]],"67":[[2,184]],"68":[[2,184]],"69":[[2,184]],"70":[[2,184]],"71":[[2,184]],"72":[[2,184]],"73":[[2,184]],"74":[[2,184]],"75":[[2,184]],"76":[[2,184]],"77":[[2,184]],"78":[[2,184]],"79":[[2,184]],"80":[[2,184]],"81":[[2,184]],"82":[[2,184]],"83":[[2,184]],"84":[[2,184]],"85":[[2,184]],"86":[[2,184]],"87":[[2,184]],"95":[[2,184]],"97":[[2,184]],"111":[[2,184]],"114":[[2,184]],"121":[[2,184]],"125":[[2,184]],"133":[[2,184]],"134":[[1,116]],"135":[[2,184]],"139":[[2,184]],"140":[[2,184]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,185]],"3":[[2,185]],"23":[[2,185]],"24":[[2,185]],"48":[[2,185]],"49":[[2,185]],"52":[[2,185]],"53":[[2,185]],"56":[[2,185]],"57":[[2,185]],"58":[[2,185]],"59":[[2,185]],"60":[[2,185]],"61":[[2,185]],"62":[[2,185]],"63":[[2,185]],"64":[[2,185]],"65":[[2,185]],"66":[[2,185]],"67":[[2,185]],"68":[[2,185]],"69":[[2,185]],"70":[[2,185]],"71":[[2,185]],"72":[[2,185]],"73":[[2,185]],"74":[[2,185]],"75":[[2,185]],"76":[[2,185]],"77":[[2,185]],"78":[[2,185]],"79":[[2,185]],"80":[[2,185]],"81":[[2,185]],"82":[[2,185]],"83":[[2,185]],"84":[[2,185]],"85":[[2,185]],"86":[[2,185]],"87":[[2,185]],"95":[[2,185]],"97":[[2,185]],"111":[[2,185]],"114":[[2,185]],"121":[[2,185]],"125":[[2,185]],"133":[[2,185]],"134":[[1,116]],"135":[[2,185]],"139":[[2,185]],"140":[[2,185]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,159]],"3":[[2,159]],"23":[[2,159]],"24":[[2,159]],"48":[[2,159]],"49":[[2,159]],"52":[[2,159]],"53":[[2,159]],"56":[[2,159]],"57":[[2,159]],"58":[[2,159]],"59":[[2,159]],"60":[[2,159]],"61":[[2,159]],"62":[[2,159]],"63":[[2,159]],"64":[[2,159]],"65":[[2,159]],"66":[[2,159]],"67":[[2,159]],"68":[[2,159]],"69":[[2,159]],"70":[[2,159]],"71":[[2,159]],"72":[[2,159]],"73":[[2,159]],"74":[[2,159]],"75":[[2,159]],"76":[[2,159]],"77":[[2,159]],"78":[[2,159]],"79":[[2,159]],"80":[[2,159]],"81":[[2,159]],"82":[[2,159]],"83":[[2,159]],"84":[[2,159]],"85":[[2,159]],"86":[[2,159]],"87":[[2,159]],"95":[[2,159]],"97":[[2,159]],"111":[[2,159]],"114":[[2,159]],"121":[[2,159]],"125":[[2,159]],"133":[[2,159]],"134":[[1,116]],"135":[[2,159]],"139":[[2,159]],"140":[[2,159]],"147":[[1,114]],"152":[[1,115]]},{"87":[[1,237]],"137":256,"138":[[1,238]]},{"97":[[1,257]]},{"1":[[2,24]],"3":[[2,24]],"23":[[2,24]],"24":[[2,24]],"45":[[2,24]],"48":[[2,24]],"49":[[2,24]],"52":[[2,24]],"53":[[2,24]],"56":[[2,24]],"57":[[2,24]],"58":[[2,24]],"59":[[2,24]],"60":[[2,24]],"61":[[2,24]],"62":[[2,24]],"63":[[2,24]],"64":[[2,24]],"65":[[2,24]],"66":[[2,24]],"67":[[2,24]],"68":[[2,24]],"69":[[2,24]],"70":[[2,24]],"71":[[2,24]],"72":[[2,24]],"73":[[2,24]],"74":[[2,24]],"75":[[2,24]],"76":[[2,24]],"77":[[2,24]],"78":[[2,24]],"79":[[2,24]],"80":[[2,24]],"81":[[2,24]],"82":[[2,24]],"83":[[2,24]],"84":[[2,24]],"85":[[2,24]],"86":[[2,24]],"87":[[2,24]],"95":[[2,24]],"97":[[2,24]],"111":[[2,24]],"114":[[2,24]],"121":[[2,24]],"125":[[2,24]],"129":[[2,24]],"130":[[2,24]],"133":[[2,24]],"134":[[2,24]],"135":[[2,24]],"139":[[2,24]],"140":[[2,24]],"143":[[2,24]],"145":[[2,24]],"147":[[2,24]],"152":[[2,24]]},{"1":[[2,41]],"3":[[2,41]],"23":[[2,41]],"24":[[2,41]],"48":[[2,41]],"49":[[2,41]],"52":[[2,41]],"53":[[2,41]],"56":[[2,41]],"57":[[2,41]],"58":[[2,41]],"59":[[2,41]],"60":[[2,41]],"61":[[2,41]],"62":[[2,41]],"63":[[2,41]],"64":[[2,41]],"65":[[2,41]],"66":[[2,41]],"67":[[2,41]],"68":[[2,41]],"69":[[2,41]],"70":[[2,41]],"71":[[2,41]],"72":[[2,41]],"73":[[2,41]],"74":[[2,41]],"75":[[2,41]],"76":[[2,41]],"77":[[2,41]],"78":[[2,41]],"79":[[2,41]],"80":[[2,41]],"81":[[2,41]],"82":[[2,41]],"83":[[2,41]],"84":[[2,41]],"85":[[2,41]],"86":[[2,41]],"87":[[2,41]],"95":[[2,41]],"97":[[2,41]],"111":[[2,41]],"114":[[2,41]],"121":[[2,41]],"125":[[2,41]],"133":[[2,41]],"134":[[1,116]],"135":[[2,41]],"139":[[2,41]],"140":[[2,41]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,129]],"3":[[2,129]],"23":[[2,129]],"24":[[2,129]],"48":[[2,129]],"49":[[2,129]],"52":[[2,129]],"53":[[2,129]],"56":[[2,129]],"57":[[2,129]],"58":[[2,129]],"59":[[2,129]],"60":[[2,129]],"61":[[2,129]],"62":[[2,129]],"63":[[2,129]],"64":[[2,129]],"65":[[2,129]],"66":[[2,129]],"67":[[2,129]],"68":[[2,129]],"69":[[2,129]],"70":[[2,129]],"71":[[2,129]],"72":[[2,129]],"73":[[2,129]],"74":[[2,129]],"75":[[2,129]],"76":[[2,129]],"77":[[2,129]],"78":[[2,129]],"79":[[2,129]],"80":[[2,129]],"81":[[2,129]],"82":[[2,129]],"83":[[2,129]],"84":[[2,129]],"85":[[2,129]],"86":[[2,129]],"87":[[2,129]],"95":[[2,129]],"97":[[2,129]],"103":121,"105":[[1,125]],"106":[[1,126]],"107":[[1,127]],"108":128,"109":129,"110":[[1,131]],"111":[[2,129]],"114":[[2,129]],"118":124,"119":[[1,130]],"121":[[2,129]],"125":[[2,129]],"133":[[2,129]],"134":[[2,129]],"135":[[2,129]],"139":[[2,129]],"140":[[2,129]],"147":[[2,129]],"152":[[2,129]]},{"103":132,"105":[[1,125]],"106":[[1,126]],"107":[[1,127]],"108":128,"109":129,"110":[[1,131]],"118":133,"119":[[1,130]]},{"1":[[2,113]],"3":[[2,113]],"23":[[2,113]],"24":[[2,113]],"42":[[2,113]],"48":[[2,113]],"49":[[2,113]],"52":[[2,113]],"53":[[2,113]],"56":[[2,113]],"57":[[2,113]],"58":[[2,113]],"59":[[2,113]],"60":[[2,113]],"61":[[2,113]],"62":[[2,113]],"63":[[2,113]],"64":[[2,113]],"65":[[2,113]],"66":[[2,113]],"67":[[2,113]],"68":[[2,113]],"69":[[2,113]],"70":[[2,113]],"71":[[2,113]],"72":[[2,113]],"73":[[2,113]],"74":[[2,113]],"75":[[2,113]],"76":[[2,113]],"77":[[2,113]],"78":[[2,113]],"79":[[2,113]],"80":[[2,113]],"81":[[2,113]],"82":[[2,113]],"83":[[2,113]],"84":[[2,113]],"85":[[2,113]],"86":[[2,113]],"87":[[2,113]],"95":[[2,113]],"97":[[2,113]],"105":[[2,113]],"106":[[2,113]],"107":[[2,113]],"110":[[2,113]],"111":[[2,113]],"114":[[2,113]],"117":[[2,113]],"119":[[2,113]],"121":[[2,113]],"125":[[2,113]],"133":[[2,113]],"134":[[2,113]],"135":[[2,113]],"139":[[2,113]],"140":[[2,113]],"147":[[2,113]],"152":[[2,113]]},{"1":[[2,114]],"3":[[2,114]],"23":[[2,114]],"24":[[2,114]],"42":[[2,114]],"48":[[2,114]],"49":[[2,114]],"52":[[2,114]],"53":[[2,114]],"56":[[2,114]],"57":[[2,114]],"58":[[2,114]],"59":[[2,114]],"60":[[2,114]],"61":[[2,114]],"62":[[2,114]],"63":[[2,114]],"64":[[2,114]],"65":[[2,114]],"66":[[2,114]],"67":[[2,114]],"68":[[2,114]],"69":[[2,114]],"70":[[2,114]],"71":[[2,114]],"72":[[2,114]],"73":[[2,114]],"74":[[2,114]],"75":[[2,114]],"76":[[2,114]],"77":[[2,114]],"78":[[2,114]],"79":[[2,114]],"80":[[2,114]],"81":[[2,114]],"82":[[2,114]],"83":[[2,114]],"84":[[2,114]],"85":[[2,114]],"86":[[2,114]],"87":[[2,114]],"95":[[2,114]],"97":[[2,114]],"105":[[2,114]],"106":[[2,114]],"107":[[2,114]],"110":[[2,114]],"111":[[2,114]],"114":[[2,114]],"117":[[2,114]],"119":[[2,114]],"121":[[2,114]],"125":[[2,114]],"133":[[2,114]],"134":[[2,114]],"135":[[2,114]],"139":[[2,114]],"140":[[2,114]],"147":[[2,114]],"152":[[2,114]]},{"1":[[2,115]],"3":[[2,115]],"23":[[2,115]],"24":[[2,115]],"42":[[2,115]],"48":[[2,115]],"49":[[2,115]],"52":[[2,115]],"53":[[2,115]],"56":[[2,115]],"57":[[2,115]],"58":[[2,115]],"59":[[2,115]],"60":[[2,115]],"61":[[2,115]],"62":[[2,115]],"63":[[2,115]],"64":[[2,115]],"65":[[2,115]],"66":[[2,115]],"67":[[2,115]],"68":[[2,115]],"69":[[2,115]],"70":[[2,115]],"71":[[2,115]],"72":[[2,115]],"73":[[2,115]],"74":[[2,115]],"75":[[2,115]],"76":[[2,115]],"77":[[2,115]],"78":[[2,115]],"79":[[2,115]],"80":[[2,115]],"81":[[2,115]],"82":[[2,115]],"83":[[2,115]],"84":[[2,115]],"85":[[2,115]],"86":[[2,115]],"87":[[2,115]],"95":[[2,115]],"97":[[2,115]],"105":[[2,115]],"106":[[2,115]],"107":[[2,115]],"110":[[2,115]],"111":[[2,115]],"114":[[2,115]],"117":[[2,115]],"119":[[2,115]],"121":[[2,115]],"125":[[2,115]],"133":[[2,115]],"134":[[2,115]],"135":[[2,115]],"139":[[2,115]],"140":[[2,115]],"147":[[2,115]],"152":[[2,115]]},{"3":[[1,243]],"24":[[1,244]],"95":[[1,242]],"121":[[1,258]]},{"3":[[2,142]],"24":[[2,142]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,142]],"97":[[1,118]],"121":[[2,142]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"97":[[1,260]],"111":[[1,259]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"91":261,"92":[[1,71]],"93":[[1,72]]},{"94":262,"96":[[1,138]]},{"97":[[1,263]]},{"1":[[2,182]],"3":[[2,182]],"23":[[2,182]],"24":[[2,182]],"48":[[2,182]],"49":[[2,182]],"52":[[2,182]],"53":[[2,182]],"56":[[2,182]],"57":[[2,182]],"58":[[2,182]],"59":[[2,182]],"60":[[2,182]],"61":[[2,182]],"62":[[2,182]],"63":[[2,182]],"64":[[2,182]],"65":[[2,182]],"66":[[2,182]],"67":[[2,182]],"68":[[2,182]],"69":[[2,182]],"70":[[2,182]],"71":[[2,182]],"72":[[2,182]],"73":[[2,182]],"74":[[2,182]],"75":[[2,182]],"76":[[2,182]],"77":[[2,182]],"78":[[2,182]],"79":[[2,182]],"80":[[2,182]],"81":[[2,182]],"82":[[2,182]],"83":[[2,182]],"84":[[2,182]],"85":[[2,182]],"86":[[2,182]],"87":[[2,182]],"95":[[2,182]],"97":[[2,182]],"111":[[2,182]],"114":[[2,182]],"121":[[2,182]],"125":[[2,182]],"133":[[2,182]],"134":[[2,182]],"135":[[2,182]],"139":[[2,182]],"140":[[2,182]],"147":[[2,182]],"152":[[2,182]]},{"1":[[2,178]],"3":[[2,178]],"23":[[2,178]],"24":[[2,178]],"48":[[2,178]],"49":[[2,178]],"52":[[2,178]],"53":[[2,178]],"56":[[2,178]],"57":[[2,178]],"58":[[2,178]],"59":[[2,178]],"60":[[2,178]],"61":[[2,178]],"62":[[2,178]],"63":[[2,178]],"64":[[2,178]],"65":[[2,178]],"66":[[2,178]],"67":[[2,178]],"68":[[2,178]],"69":[[2,178]],"70":[[2,178]],"71":[[2,178]],"72":[[2,178]],"73":[[2,178]],"74":[[2,178]],"75":[[2,178]],"76":[[2,178]],"77":[[2,178]],"78":[[2,178]],"79":[[2,178]],"80":[[2,178]],"81":[[2,178]],"82":[[2,178]],"83":[[2,178]],"84":[[2,178]],"85":[[2,178]],"86":[[2,178]],"87":[[2,178]],"95":[[2,178]],"97":[[2,178]],"111":[[2,178]],"114":[[2,178]],"121":[[2,178]],"125":[[2,178]],"133":[[2,178]],"134":[[2,178]],"135":[[2,178]],"139":[[2,178]],"140":[[2,178]],"143":[[2,178]],"147":[[2,178]],"152":[[2,178]]},{"1":[[2,180]],"3":[[2,180]],"23":[[2,180]],"24":[[2,180]],"48":[[2,180]],"49":[[2,180]],"52":[[2,180]],"53":[[2,180]],"56":[[2,180]],"57":[[2,180]],"58":[[2,180]],"59":[[2,180]],"60":[[2,180]],"61":[[2,180]],"62":[[2,180]],"63":[[2,180]],"64":[[2,180]],"65":[[2,180]],"66":[[2,180]],"67":[[2,180]],"68":[[2,180]],"69":[[2,180]],"70":[[2,180]],"71":[[2,180]],"72":[[2,180]],"73":[[2,180]],"74":[[2,180]],"75":[[2,180]],"76":[[2,180]],"77":[[2,180]],"78":[[2,180]],"79":[[2,180]],"80":[[2,180]],"81":[[2,180]],"82":[[2,180]],"83":[[2,180]],"84":[[2,180]],"85":[[2,180]],"86":[[2,180]],"87":[[2,180]],"95":[[2,180]],"97":[[2,180]],"111":[[2,180]],"114":[[2,180]],"121":[[2,180]],"125":[[2,180]],"133":[[2,180]],"134":[[2,180]],"135":[[2,180]],"139":[[2,180]],"140":[[2,180]],"147":[[2,180]],"152":[[2,180]]},{"1":[[2,176]],"3":[[2,176]],"23":[[2,176]],"24":[[2,176]],"48":[[2,176]],"49":[[2,176]],"52":[[2,176]],"53":[[2,176]],"56":[[2,176]],"57":[[2,176]],"58":[[2,176]],"59":[[2,176]],"60":[[2,176]],"61":[[2,176]],"62":[[2,176]],"63":[[2,176]],"64":[[2,176]],"65":[[2,176]],"66":[[2,176]],"67":[[2,176]],"68":[[2,176]],"69":[[2,176]],"70":[[2,176]],"71":[[2,176]],"72":[[2,176]],"73":[[2,176]],"74":[[2,176]],"75":[[2,176]],"76":[[2,176]],"77":[[2,176]],"78":[[2,176]],"79":[[2,176]],"80":[[2,176]],"81":[[2,176]],"82":[[2,176]],"83":[[2,176]],"84":[[2,176]],"85":[[2,176]],"86":[[2,176]],"87":[[2,176]],"95":[[2,176]],"97":[[2,176]],"111":[[2,176]],"114":[[2,176]],"121":[[2,176]],"125":[[2,176]],"133":[[2,176]],"134":[[2,176]],"135":[[2,176]],"139":[[2,176]],"140":[[2,176]],"143":[[2,176]],"147":[[2,176]],"152":[[2,176]]},{"1":[[2,151]],"3":[[2,151]],"23":[[2,151]],"24":[[2,151]],"48":[[2,151]],"49":[[2,151]],"52":[[2,151]],"53":[[2,151]],"56":[[2,151]],"57":[[2,151]],"58":[[2,151]],"59":[[2,151]],"60":[[2,151]],"61":[[2,151]],"62":[[2,151]],"63":[[2,151]],"64":[[2,151]],"65":[[2,151]],"66":[[2,151]],"67":[[2,151]],"68":[[2,151]],"69":[[2,151]],"70":[[2,151]],"71":[[2,151]],"72":[[2,151]],"73":[[2,151]],"74":[[2,151]],"75":[[2,151]],"76":[[2,151]],"77":[[2,151]],"78":[[2,151]],"79":[[2,151]],"80":[[2,151]],"81":[[2,151]],"82":[[2,151]],"83":[[2,151]],"84":[[2,151]],"85":[[2,151]],"86":[[2,151]],"87":[[2,151]],"95":[[2,151]],"97":[[2,151]],"111":[[2,151]],"114":[[2,151]],"121":[[2,151]],"125":[[2,151]],"129":[[1,264]],"133":[[2,151]],"134":[[2,151]],"135":[[2,151]],"139":[[2,151]],"140":[[2,151]],"147":[[2,151]],"152":[[2,151]]},{"5":265,"23":[[1,6]]},{"25":266,"26":[[1,53]]},{"1":[[2,157]],"3":[[2,157]],"23":[[2,157]],"24":[[2,157]],"48":[[2,157]],"49":[[2,157]],"52":[[2,157]],"53":[[2,157]],"56":[[2,157]],"57":[[2,157]],"58":[[2,157]],"59":[[2,157]],"60":[[2,157]],"61":[[2,157]],"62":[[2,157]],"63":[[2,157]],"64":[[2,157]],"65":[[2,157]],"66":[[2,157]],"67":[[2,157]],"68":[[2,157]],"69":[[2,157]],"70":[[2,157]],"71":[[2,157]],"72":[[2,157]],"73":[[2,157]],"74":[[2,157]],"75":[[2,157]],"76":[[2,157]],"77":[[2,157]],"78":[[2,157]],"79":[[2,157]],"80":[[2,157]],"81":[[2,157]],"82":[[2,157]],"83":[[2,157]],"84":[[2,157]],"85":[[2,157]],"86":[[2,157]],"87":[[2,157]],"95":[[2,157]],"97":[[2,157]],"111":[[2,157]],"114":[[2,157]],"121":[[2,157]],"125":[[2,157]],"133":[[2,157]],"134":[[2,157]],"135":[[2,157]],"139":[[2,157]],"140":[[2,157]],"147":[[2,157]],"152":[[2,157]]},{"5":267,"23":[[1,6]],"139":[[1,268]],"140":[[1,269]]},{"6":270,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":271,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"25":272,"26":[[1,53]]},{"22":276,"45":[[1,52]],"142":273,"144":274,"145":[[1,275]]},{"1":[[2,140]],"3":[[2,140]],"23":[[2,140]],"24":[[2,140]],"42":[[2,140]],"48":[[2,140]],"49":[[2,140]],"52":[[2,140]],"53":[[2,140]],"56":[[2,140]],"57":[[2,140]],"58":[[2,140]],"59":[[2,140]],"60":[[2,140]],"61":[[2,140]],"62":[[2,140]],"63":[[2,140]],"64":[[2,140]],"65":[[2,140]],"66":[[2,140]],"67":[[2,140]],"68":[[2,140]],"69":[[2,140]],"70":[[2,140]],"71":[[2,140]],"72":[[2,140]],"73":[[2,140]],"74":[[2,140]],"75":[[2,140]],"76":[[2,140]],"77":[[2,140]],"78":[[2,140]],"79":[[2,140]],"80":[[2,140]],"81":[[2,140]],"82":[[2,140]],"83":[[2,140]],"84":[[2,140]],"85":[[2,140]],"86":[[2,140]],"87":[[2,140]],"95":[[2,140]],"97":[[2,140]],"105":[[2,140]],"106":[[2,140]],"107":[[2,140]],"110":[[2,140]],"111":[[2,140]],"114":[[2,140]],"117":[[2,140]],"119":[[2,140]],"121":[[2,140]],"125":[[2,140]],"133":[[2,140]],"134":[[2,140]],"135":[[2,140]],"139":[[2,140]],"140":[[2,140]],"147":[[2,140]],"152":[[2,140]]},{"3":[[1,278]],"6":277,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":[[1,279]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":280,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"3":[[2,148]],"24":[[2,148]],"95":[[2,148]],"121":[[2,148]],"125":[[2,148]]},{"97":[[1,281]]},{"3":[[2,143]],"24":[[2,143]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,143]],"97":[[1,118]],"121":[[2,143]],"125":[[2,143]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,119]],"3":[[2,119]],"23":[[2,119]],"24":[[2,119]],"42":[[2,119]],"48":[[2,119]],"49":[[2,119]],"52":[[2,119]],"53":[[2,119]],"56":[[2,119]],"57":[[2,119]],"58":[[2,119]],"59":[[2,119]],"60":[[2,119]],"61":[[2,119]],"62":[[2,119]],"63":[[2,119]],"64":[[2,119]],"65":[[2,119]],"66":[[2,119]],"67":[[2,119]],"68":[[2,119]],"69":[[2,119]],"70":[[2,119]],"71":[[2,119]],"72":[[2,119]],"73":[[2,119]],"74":[[2,119]],"75":[[2,119]],"76":[[2,119]],"77":[[2,119]],"78":[[2,119]],"79":[[2,119]],"80":[[2,119]],"81":[[2,119]],"82":[[2,119]],"83":[[2,119]],"84":[[2,119]],"85":[[2,119]],"86":[[2,119]],"87":[[2,119]],"95":[[2,119]],"97":[[2,119]],"105":[[2,119]],"106":[[2,119]],"107":[[2,119]],"110":[[2,119]],"111":[[2,119]],"114":[[2,119]],"117":[[2,119]],"119":[[2,119]],"121":[[2,119]],"125":[[2,119]],"133":[[2,119]],"134":[[2,119]],"135":[[2,119]],"139":[[2,119]],"140":[[2,119]],"147":[[2,119]],"152":[[2,119]]},{"3":[[1,283]],"22":170,"25":168,"26":[[1,53]],"27":169,"28":[[1,74]],"29":[[1,75]],"43":282,"45":[[1,52]]},{"22":170,"25":168,"26":[[1,53]],"27":169,"28":[[1,74]],"29":[[1,75]],"43":284,"45":[[1,52]]},{"3":[[1,249]],"24":[[1,285]],"95":[[1,248]]},{"6":286,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":287,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,156]],"3":[[2,156]],"23":[[2,156]],"24":[[2,156]],"42":[[2,156]],"48":[[2,156]],"49":[[2,156]],"52":[[2,156]],"53":[[2,156]],"56":[[2,156]],"57":[[2,156]],"58":[[2,156]],"59":[[2,156]],"60":[[2,156]],"61":[[2,156]],"62":[[2,156]],"63":[[2,156]],"64":[[2,156]],"65":[[2,156]],"66":[[2,156]],"67":[[2,156]],"68":[[2,156]],"69":[[2,156]],"70":[[2,156]],"71":[[2,156]],"72":[[2,156]],"73":[[2,156]],"74":[[2,156]],"75":[[2,156]],"76":[[2,156]],"77":[[2,156]],"78":[[2,156]],"79":[[2,156]],"80":[[2,156]],"81":[[2,156]],"82":[[2,156]],"83":[[2,156]],"84":[[2,156]],"85":[[2,156]],"86":[[2,156]],"87":[[2,156]],"95":[[2,156]],"97":[[2,156]],"105":[[2,156]],"106":[[2,156]],"107":[[2,156]],"110":[[2,156]],"111":[[2,156]],"114":[[2,156]],"117":[[2,156]],"119":[[2,156]],"121":[[2,156]],"125":[[2,156]],"133":[[2,156]],"134":[[2,156]],"135":[[2,156]],"139":[[2,156]],"140":[[2,156]],"147":[[2,156]],"152":[[2,156]]},{"3":[[1,243]],"24":[[1,244]],"95":[[1,242]],"121":[[1,288]]},{"1":[[2,175]],"3":[[2,175]],"23":[[2,175]],"24":[[2,175]],"48":[[2,175]],"49":[[2,175]],"52":[[2,175]],"53":[[2,175]],"56":[[2,175]],"57":[[2,175]],"58":[[2,175]],"59":[[2,175]],"60":[[2,175]],"61":[[2,175]],"62":[[2,175]],"63":[[2,175]],"64":[[2,175]],"65":[[2,175]],"66":[[2,175]],"67":[[2,175]],"68":[[2,175]],"69":[[2,175]],"70":[[2,175]],"71":[[2,175]],"72":[[2,175]],"73":[[2,175]],"74":[[2,175]],"75":[[2,175]],"76":[[2,175]],"77":[[2,175]],"78":[[2,175]],"79":[[2,175]],"80":[[2,175]],"81":[[2,175]],"82":[[2,175]],"83":[[2,175]],"84":[[2,175]],"85":[[2,175]],"86":[[2,175]],"87":[[2,175]],"95":[[2,175]],"97":[[2,175]],"111":[[2,175]],"114":[[2,175]],"121":[[2,175]],"125":[[2,175]],"133":[[2,175]],"134":[[2,175]],"135":[[2,175]],"139":[[2,175]],"140":[[2,175]],"143":[[2,175]],"147":[[2,175]],"152":[[2,175]]},{"1":[[2,160]],"3":[[2,160]],"23":[[2,160]],"24":[[2,160]],"48":[[2,160]],"49":[[2,160]],"52":[[2,160]],"53":[[2,160]],"56":[[2,160]],"57":[[2,160]],"58":[[2,160]],"59":[[2,160]],"60":[[2,160]],"61":[[2,160]],"62":[[2,160]],"63":[[2,160]],"64":[[2,160]],"65":[[2,160]],"66":[[2,160]],"67":[[2,160]],"68":[[2,160]],"69":[[2,160]],"70":[[2,160]],"71":[[2,160]],"72":[[2,160]],"73":[[2,160]],"74":[[2,160]],"75":[[2,160]],"76":[[2,160]],"77":[[2,160]],"78":[[2,160]],"79":[[2,160]],"80":[[2,160]],"81":[[2,160]],"82":[[2,160]],"83":[[2,160]],"84":[[2,160]],"85":[[2,160]],"86":[[2,160]],"87":[[2,160]],"95":[[2,160]],"97":[[2,160]],"111":[[2,160]],"114":[[2,160]],"121":[[2,160]],"125":[[2,160]],"133":[[2,160]],"134":[[2,160]],"135":[[2,160]],"139":[[2,160]],"140":[[2,160]],"147":[[2,160]],"152":[[2,160]]},{"1":[[2,103]],"3":[[2,103]],"23":[[2,103]],"24":[[2,103]],"48":[[2,103]],"49":[[2,103]],"52":[[2,103]],"53":[[2,103]],"56":[[2,103]],"57":[[2,103]],"58":[[2,103]],"59":[[2,103]],"60":[[2,103]],"61":[[2,103]],"62":[[2,103]],"63":[[2,103]],"64":[[2,103]],"65":[[2,103]],"66":[[2,103]],"67":[[2,103]],"68":[[2,103]],"69":[[2,103]],"70":[[2,103]],"71":[[2,103]],"72":[[2,103]],"73":[[2,103]],"74":[[2,103]],"75":[[2,103]],"76":[[2,103]],"77":[[2,103]],"78":[[2,103]],"79":[[2,103]],"80":[[2,103]],"81":[[2,103]],"82":[[2,103]],"83":[[2,103]],"84":[[2,103]],"85":[[2,103]],"86":[[2,103]],"87":[[2,103]],"95":[[2,103]],"97":[[2,103]],"111":[[2,103]],"114":[[2,103]],"121":[[2,103]],"125":[[2,103]],"133":[[2,103]],"134":[[2,103]],"135":[[2,103]],"139":[[2,103]],"140":[[2,103]],"147":[[2,103]],"152":[[2,103]]},{"1":[[2,132]],"3":[[2,132]],"23":[[2,132]],"24":[[2,132]],"48":[[2,132]],"49":[[2,132]],"52":[[2,132]],"53":[[2,132]],"56":[[2,132]],"57":[[2,132]],"58":[[2,132]],"59":[[2,132]],"60":[[2,132]],"61":[[2,132]],"62":[[2,132]],"63":[[2,132]],"64":[[2,132]],"65":[[2,132]],"66":[[2,132]],"67":[[2,132]],"68":[[2,132]],"69":[[2,132]],"70":[[2,132]],"71":[[2,132]],"72":[[2,132]],"73":[[2,132]],"74":[[2,132]],"75":[[2,132]],"76":[[2,132]],"77":[[2,132]],"78":[[2,132]],"79":[[2,132]],"80":[[2,132]],"81":[[2,132]],"82":[[2,132]],"83":[[2,132]],"84":[[2,132]],"85":[[2,132]],"86":[[2,132]],"87":[[2,132]],"95":[[2,132]],"97":[[2,132]],"105":[[2,132]],"106":[[2,132]],"107":[[2,132]],"110":[[2,132]],"111":[[2,132]],"114":[[2,132]],"119":[[2,132]],"121":[[2,132]],"125":[[2,132]],"133":[[2,132]],"134":[[2,132]],"135":[[2,132]],"139":[[2,132]],"140":[[2,132]],"147":[[2,132]],"152":[[2,132]]},{"1":[[2,118]],"3":[[2,118]],"23":[[2,118]],"24":[[2,118]],"42":[[2,118]],"48":[[2,118]],"49":[[2,118]],"52":[[2,118]],"53":[[2,118]],"56":[[2,118]],"57":[[2,118]],"58":[[2,118]],"59":[[2,118]],"60":[[2,118]],"61":[[2,118]],"62":[[2,118]],"63":[[2,118]],"64":[[2,118]],"65":[[2,118]],"66":[[2,118]],"67":[[2,118]],"68":[[2,118]],"69":[[2,118]],"70":[[2,118]],"71":[[2,118]],"72":[[2,118]],"73":[[2,118]],"74":[[2,118]],"75":[[2,118]],"76":[[2,118]],"77":[[2,118]],"78":[[2,118]],"79":[[2,118]],"80":[[2,118]],"81":[[2,118]],"82":[[2,118]],"83":[[2,118]],"84":[[2,118]],"85":[[2,118]],"86":[[2,118]],"87":[[2,118]],"95":[[2,118]],"97":[[2,118]],"105":[[2,118]],"106":[[2,118]],"107":[[2,118]],"110":[[2,118]],"111":[[2,118]],"114":[[2,118]],"117":[[2,118]],"119":[[2,118]],"121":[[2,118]],"125":[[2,118]],"133":[[2,118]],"134":[[2,118]],"135":[[2,118]],"139":[[2,118]],"140":[[2,118]],"147":[[2,118]],"152":[[2,118]]},{"97":[[1,289]]},{"5":290,"23":[[1,6]]},{"90":[[2,100]],"95":[[2,100]],"97":[[1,227]]},{"97":[[1,291]]},{"5":292,"23":[[1,6]]},{"1":[[2,152]],"3":[[2,152]],"23":[[2,152]],"24":[[2,152]],"48":[[2,152]],"49":[[2,152]],"52":[[2,152]],"53":[[2,152]],"56":[[2,152]],"57":[[2,152]],"58":[[2,152]],"59":[[2,152]],"60":[[2,152]],"61":[[2,152]],"62":[[2,152]],"63":[[2,152]],"64":[[2,152]],"65":[[2,152]],"66":[[2,152]],"67":[[2,152]],"68":[[2,152]],"69":[[2,152]],"70":[[2,152]],"71":[[2,152]],"72":[[2,152]],"73":[[2,152]],"74":[[2,152]],"75":[[2,152]],"76":[[2,152]],"77":[[2,152]],"78":[[2,152]],"79":[[2,152]],"80":[[2,152]],"81":[[2,152]],"82":[[2,152]],"83":[[2,152]],"84":[[2,152]],"85":[[2,152]],"86":[[2,152]],"87":[[2,152]],"95":[[2,152]],"97":[[2,152]],"111":[[2,152]],"114":[[2,152]],"121":[[2,152]],"125":[[2,152]],"133":[[2,152]],"134":[[2,152]],"135":[[2,152]],"139":[[2,152]],"140":[[2,152]],"147":[[2,152]],"152":[[2,152]]},{"5":293,"23":[[1,6]]},{"1":[[2,161]],"3":[[2,161]],"23":[[2,161]],"24":[[2,161]],"48":[[2,161]],"49":[[2,161]],"52":[[2,161]],"53":[[2,161]],"56":[[2,161]],"57":[[2,161]],"58":[[2,161]],"59":[[2,161]],"60":[[2,161]],"61":[[2,161]],"62":[[2,161]],"63":[[2,161]],"64":[[2,161]],"65":[[2,161]],"66":[[2,161]],"67":[[2,161]],"68":[[2,161]],"69":[[2,161]],"70":[[2,161]],"71":[[2,161]],"72":[[2,161]],"73":[[2,161]],"74":[[2,161]],"75":[[2,161]],"76":[[2,161]],"77":[[2,161]],"78":[[2,161]],"79":[[2,161]],"80":[[2,161]],"81":[[2,161]],"82":[[2,161]],"83":[[2,161]],"84":[[2,161]],"85":[[2,161]],"86":[[2,161]],"87":[[2,161]],"95":[[2,161]],"97":[[2,161]],"111":[[2,161]],"114":[[2,161]],"121":[[2,161]],"125":[[2,161]],"133":[[2,161]],"134":[[2,161]],"135":[[2,161]],"139":[[2,161]],"140":[[2,161]],"147":[[2,161]],"152":[[2,161]]},{"6":294,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":295,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,164]],"3":[[2,164]],"23":[[2,164]],"24":[[2,164]],"48":[[2,164]],"49":[[2,164]],"52":[[2,164]],"53":[[2,164]],"56":[[2,164]],"57":[[2,164]],"58":[[2,164]],"59":[[2,164]],"60":[[2,164]],"61":[[2,164]],"62":[[2,164]],"63":[[2,164]],"64":[[2,164]],"65":[[2,164]],"66":[[2,164]],"67":[[2,164]],"68":[[2,164]],"69":[[2,164]],"70":[[2,164]],"71":[[2,164]],"72":[[2,164]],"73":[[2,164]],"74":[[2,164]],"75":[[2,164]],"76":[[2,164]],"77":[[2,164]],"78":[[2,164]],"79":[[2,164]],"80":[[2,164]],"81":[[2,164]],"82":[[2,164]],"83":[[2,164]],"84":[[2,164]],"85":[[2,164]],"86":[[2,164]],"87":[[1,113]],"95":[[2,164]],"97":[[2,164]],"111":[[2,164]],"114":[[2,164]],"121":[[2,164]],"125":[[2,164]],"133":[[2,164]],"134":[[1,116]],"135":[[1,117]],"139":[[2,164]],"140":[[2,164]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,165]],"3":[[2,165]],"23":[[2,165]],"24":[[2,165]],"48":[[2,165]],"49":[[2,165]],"52":[[2,165]],"53":[[2,165]],"56":[[2,165]],"57":[[2,165]],"58":[[2,165]],"59":[[2,165]],"60":[[2,165]],"61":[[2,165]],"62":[[2,165]],"63":[[2,165]],"64":[[2,165]],"65":[[2,165]],"66":[[2,165]],"67":[[2,165]],"68":[[2,165]],"69":[[2,165]],"70":[[2,165]],"71":[[2,165]],"72":[[2,165]],"73":[[2,165]],"74":[[2,165]],"75":[[2,165]],"76":[[2,165]],"77":[[2,165]],"78":[[2,165]],"79":[[2,165]],"80":[[2,165]],"81":[[2,165]],"82":[[2,165]],"83":[[2,165]],"84":[[2,165]],"85":[[2,165]],"86":[[2,165]],"87":[[1,113]],"95":[[2,165]],"97":[[2,165]],"111":[[2,165]],"114":[[2,165]],"121":[[2,165]],"125":[[2,165]],"133":[[2,165]],"134":[[1,116]],"135":[[1,117]],"139":[[2,165]],"140":[[2,165]],"147":[[1,114]],"152":[[1,115]]},{"87":[[2,163]],"138":[[2,163]]},{"22":276,"24":[[1,296]],"45":[[1,52]],"143":[[1,297]],"144":298,"145":[[1,275]]},{"24":[[2,170]],"45":[[2,170]],"143":[[2,170]],"145":[[2,170]]},{"6":300,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"126":299,"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"3":[[1,301]]},{"3":[[2,144]],"24":[[2,144]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,144]],"97":[[1,118]],"121":[[2,144]],"125":[[2,144]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"6":302,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"6":303,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"3":[[2,145]],"24":[[2,145]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,145]],"97":[[1,118]],"121":[[2,145]],"125":[[2,145]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"6":304,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"97":[[1,305]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"3":[[2,122]],"24":[[2,122]],"95":[[2,122]],"114":[[2,122]]},{"22":170,"25":168,"26":[[1,53]],"27":169,"28":[[1,74]],"29":[[1,75]],"43":306,"45":[[1,52]]},{"3":[[2,123]],"24":[[2,123]],"95":[[2,123]],"114":[[2,123]]},{"3":[[2,125]],"24":[[2,125]],"95":[[2,125]],"114":[[2,125]]},{"3":[[2,42]],"24":[[2,42]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,42]],"97":[[1,118]],"114":[[2,42]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"3":[[2,43]],"24":[[2,43]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,43]],"97":[[1,118]],"114":[[2,43]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,133]],"3":[[2,133]],"23":[[2,133]],"24":[[2,133]],"48":[[2,133]],"49":[[2,133]],"52":[[2,133]],"53":[[2,133]],"56":[[2,133]],"57":[[2,133]],"58":[[2,133]],"59":[[2,133]],"60":[[2,133]],"61":[[2,133]],"62":[[2,133]],"63":[[2,133]],"64":[[2,133]],"65":[[2,133]],"66":[[2,133]],"67":[[2,133]],"68":[[2,133]],"69":[[2,133]],"70":[[2,133]],"71":[[2,133]],"72":[[2,133]],"73":[[2,133]],"74":[[2,133]],"75":[[2,133]],"76":[[2,133]],"77":[[2,133]],"78":[[2,133]],"79":[[2,133]],"80":[[2,133]],"81":[[2,133]],"82":[[2,133]],"83":[[2,133]],"84":[[2,133]],"85":[[2,133]],"86":[[2,133]],"87":[[2,133]],"95":[[2,133]],"97":[[2,133]],"111":[[2,133]],"114":[[2,133]],"121":[[2,133]],"125":[[2,133]],"133":[[2,133]],"134":[[2,133]],"135":[[2,133]],"139":[[2,133]],"140":[[2,133]],"147":[[2,133]],"152":[[2,133]]},{"6":307,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"97":[[1,308]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"1":[[2,95]],"3":[[2,95]],"23":[[2,95]],"24":[[2,95]],"48":[[2,95]],"49":[[2,95]],"52":[[2,95]],"53":[[2,95]],"56":[[2,95]],"57":[[2,95]],"58":[[2,95]],"59":[[2,95]],"60":[[2,95]],"61":[[2,95]],"62":[[2,95]],"63":[[2,95]],"64":[[2,95]],"65":[[2,95]],"66":[[2,95]],"67":[[2,95]],"68":[[2,95]],"69":[[2,95]],"70":[[2,95]],"71":[[2,95]],"72":[[2,95]],"73":[[2,95]],"74":[[2,95]],"75":[[2,95]],"76":[[2,95]],"77":[[2,95]],"78":[[2,95]],"79":[[2,95]],"80":[[2,95]],"81":[[2,95]],"82":[[2,95]],"83":[[2,95]],"84":[[2,95]],"85":[[2,95]],"86":[[2,95]],"87":[[2,95]],"95":[[2,95]],"97":[[2,95]],"111":[[2,95]],"114":[[2,95]],"121":[[2,95]],"125":[[2,95]],"133":[[2,95]],"134":[[2,95]],"135":[[2,95]],"139":[[2,95]],"140":[[2,95]],"147":[[2,95]],"152":[[2,95]]},{"90":[[2,102]],"95":[[2,102]],"97":[[2,102]]},{"1":[[2,153]],"3":[[2,153]],"23":[[2,153]],"24":[[2,153]],"48":[[2,153]],"49":[[2,153]],"52":[[2,153]],"53":[[2,153]],"56":[[2,153]],"57":[[2,153]],"58":[[2,153]],"59":[[2,153]],"60":[[2,153]],"61":[[2,153]],"62":[[2,153]],"63":[[2,153]],"64":[[2,153]],"65":[[2,153]],"66":[[2,153]],"67":[[2,153]],"68":[[2,153]],"69":[[2,153]],"70":[[2,153]],"71":[[2,153]],"72":[[2,153]],"73":[[2,153]],"74":[[2,153]],"75":[[2,153]],"76":[[2,153]],"77":[[2,153]],"78":[[2,153]],"79":[[2,153]],"80":[[2,153]],"81":[[2,153]],"82":[[2,153]],"83":[[2,153]],"84":[[2,153]],"85":[[2,153]],"86":[[2,153]],"87":[[2,153]],"95":[[2,153]],"97":[[2,153]],"111":[[2,153]],"114":[[2,153]],"121":[[2,153]],"125":[[2,153]],"133":[[2,153]],"134":[[2,153]],"135":[[2,153]],"139":[[2,153]],"140":[[2,153]],"147":[[2,153]],"152":[[2,153]]},{"1":[[2,154]],"3":[[2,154]],"23":[[2,154]],"24":[[2,154]],"48":[[2,154]],"49":[[2,154]],"52":[[2,154]],"53":[[2,154]],"56":[[2,154]],"57":[[2,154]],"58":[[2,154]],"59":[[2,154]],"60":[[2,154]],"61":[[2,154]],"62":[[2,154]],"63":[[2,154]],"64":[[2,154]],"65":[[2,154]],"66":[[2,154]],"67":[[2,154]],"68":[[2,154]],"69":[[2,154]],"70":[[2,154]],"71":[[2,154]],"72":[[2,154]],"73":[[2,154]],"74":[[2,154]],"75":[[2,154]],"76":[[2,154]],"77":[[2,154]],"78":[[2,154]],"79":[[2,154]],"80":[[2,154]],"81":[[2,154]],"82":[[2,154]],"83":[[2,154]],"84":[[2,154]],"85":[[2,154]],"86":[[2,154]],"87":[[2,154]],"95":[[2,154]],"97":[[2,154]],"111":[[2,154]],"114":[[2,154]],"121":[[2,154]],"125":[[2,154]],"129":[[2,154]],"133":[[2,154]],"134":[[2,154]],"135":[[2,154]],"139":[[2,154]],"140":[[2,154]],"147":[[2,154]],"152":[[2,154]]},{"1":[[2,166]],"3":[[2,166]],"23":[[2,166]],"24":[[2,166]],"48":[[2,166]],"49":[[2,166]],"52":[[2,166]],"53":[[2,166]],"56":[[2,166]],"57":[[2,166]],"58":[[2,166]],"59":[[2,166]],"60":[[2,166]],"61":[[2,166]],"62":[[2,166]],"63":[[2,166]],"64":[[2,166]],"65":[[2,166]],"66":[[2,166]],"67":[[2,166]],"68":[[2,166]],"69":[[2,166]],"70":[[2,166]],"71":[[2,166]],"72":[[2,166]],"73":[[2,166]],"74":[[2,166]],"75":[[2,166]],"76":[[2,166]],"77":[[2,166]],"78":[[2,166]],"79":[[2,166]],"80":[[2,166]],"81":[[2,166]],"82":[[2,166]],"83":[[2,166]],"84":[[2,166]],"85":[[2,166]],"86":[[2,166]],"87":[[1,113]],"95":[[2,166]],"97":[[2,166]],"111":[[2,166]],"114":[[2,166]],"121":[[2,166]],"125":[[2,166]],"133":[[2,166]],"134":[[1,116]],"135":[[1,117]],"139":[[2,166]],"140":[[2,166]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,167]],"3":[[2,167]],"23":[[2,167]],"24":[[2,167]],"48":[[2,167]],"49":[[2,167]],"52":[[2,167]],"53":[[2,167]],"56":[[2,167]],"57":[[2,167]],"58":[[2,167]],"59":[[2,167]],"60":[[2,167]],"61":[[2,167]],"62":[[2,167]],"63":[[2,167]],"64":[[2,167]],"65":[[2,167]],"66":[[2,167]],"67":[[2,167]],"68":[[2,167]],"69":[[2,167]],"70":[[2,167]],"71":[[2,167]],"72":[[2,167]],"73":[[2,167]],"74":[[2,167]],"75":[[2,167]],"76":[[2,167]],"77":[[2,167]],"78":[[2,167]],"79":[[2,167]],"80":[[2,167]],"81":[[2,167]],"82":[[2,167]],"83":[[2,167]],"84":[[2,167]],"85":[[2,167]],"86":[[2,167]],"87":[[1,113]],"95":[[2,167]],"97":[[2,167]],"111":[[2,167]],"114":[[2,167]],"121":[[2,167]],"125":[[2,167]],"133":[[2,167]],"134":[[1,116]],"135":[[1,117]],"139":[[2,167]],"140":[[2,167]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,168]],"3":[[2,168]],"23":[[2,168]],"24":[[2,168]],"48":[[2,168]],"49":[[2,168]],"52":[[2,168]],"53":[[2,168]],"56":[[2,168]],"57":[[2,168]],"58":[[2,168]],"59":[[2,168]],"60":[[2,168]],"61":[[2,168]],"62":[[2,168]],"63":[[2,168]],"64":[[2,168]],"65":[[2,168]],"66":[[2,168]],"67":[[2,168]],"68":[[2,168]],"69":[[2,168]],"70":[[2,168]],"71":[[2,168]],"72":[[2,168]],"73":[[2,168]],"74":[[2,168]],"75":[[2,168]],"76":[[2,168]],"77":[[2,168]],"78":[[2,168]],"79":[[2,168]],"80":[[2,168]],"81":[[2,168]],"82":[[2,168]],"83":[[2,168]],"84":[[2,168]],"85":[[2,168]],"86":[[2,168]],"87":[[2,168]],"95":[[2,168]],"97":[[2,168]],"111":[[2,168]],"114":[[2,168]],"121":[[2,168]],"125":[[2,168]],"133":[[2,168]],"134":[[2,168]],"135":[[2,168]],"139":[[2,168]],"140":[[2,168]],"147":[[2,168]],"152":[[2,168]]},{"5":309,"23":[[1,6]]},{"24":[[2,171]],"45":[[2,171]],"143":[[2,171]],"145":[[2,171]]},{"5":310,"23":[[1,6]],"95":[[1,311]]},{"23":[[2,149]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,149]],"97":[[1,118]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"22":276,"45":[[1,52]],"144":312,"145":[[1,275]]},{"3":[[2,146]],"24":[[2,146]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,146]],"97":[[1,118]],"121":[[2,146]],"125":[[2,146]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"3":[[2,147]],"24":[[2,147]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,147]],"97":[[1,118]],"121":[[2,147]],"125":[[2,147]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"97":[[1,118]],"125":[[1,313]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"3":[[2,103]],"6":314,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"24":[[2,103]],"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[2,103]],"49":[[2,103]],"50":[[1,39]],"51":[[1,40]],"52":[[2,103]],"53":[[2,103]],"54":[[1,43]],"55":[[1,44]],"56":[[2,103]],"57":[[2,103]],"58":[[2,103]],"59":[[2,103]],"60":[[2,103]],"61":[[2,103]],"62":[[2,103]],"63":[[2,103]],"64":[[2,103]],"65":[[2,103]],"66":[[2,103]],"67":[[2,103]],"68":[[2,103]],"69":[[2,103]],"70":[[2,103]],"71":[[2,103]],"72":[[2,103]],"73":[[2,103]],"74":[[2,103]],"75":[[2,103]],"76":[[2,103]],"77":[[2,103]],"78":[[2,103]],"79":[[2,103]],"80":[[2,103]],"81":[[2,103]],"82":[[2,103]],"83":[[2,103]],"84":[[2,103]],"85":[[2,103]],"86":[[2,103]],"87":[[2,103]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"95":[[2,103]],"97":[[2,103]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"125":[[2,103]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]],"152":[[2,103]]},{"3":[[2,124]],"24":[[2,124]],"95":[[2,124]],"114":[[2,124]]},{"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"97":[[1,118]],"111":[[1,315]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"6":316,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[2,103]],"49":[[2,103]],"50":[[1,39]],"51":[[1,40]],"52":[[2,103]],"53":[[2,103]],"54":[[1,43]],"55":[[1,44]],"56":[[2,103]],"57":[[2,103]],"58":[[2,103]],"59":[[2,103]],"60":[[2,103]],"61":[[2,103]],"62":[[2,103]],"63":[[2,103]],"64":[[2,103]],"65":[[2,103]],"66":[[2,103]],"67":[[2,103]],"68":[[2,103]],"69":[[2,103]],"70":[[2,103]],"71":[[2,103]],"72":[[2,103]],"73":[[2,103]],"74":[[2,103]],"75":[[2,103]],"76":[[2,103]],"77":[[2,103]],"78":[[2,103]],"79":[[2,103]],"80":[[2,103]],"81":[[2,103]],"82":[[2,103]],"83":[[2,103]],"84":[[2,103]],"85":[[2,103]],"86":[[2,103]],"87":[[2,103]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"97":[[2,103]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"111":[[2,103]],"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]],"152":[[2,103]]},{"24":[[1,317]]},{"3":[[1,318]],"24":[[2,172]],"45":[[2,172]],"143":[[2,172]],"145":[[2,172]]},{"6":319,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"25":23,"26":[[1,53]],"27":54,"28":[[1,74]],"29":[[1,75]],"30":24,"31":[[1,55]],"32":[[1,56]],"33":[[1,57]],"34":[[1,58]],"35":[[1,59]],"36":[[1,60]],"37":[[1,61]],"38":[[1,62]],"39":[[1,63]],"40":[[1,64]],"41":[[1,65]],"44":[[1,48]],"45":[[1,52]],"46":[[1,35]],"47":[[1,36]],"48":[[1,37]],"49":[[1,38]],"50":[[1,39]],"51":[[1,40]],"52":[[1,41]],"53":[[1,42]],"54":[[1,43]],"55":[[1,44]],"88":[[1,33]],"91":34,"92":[[1,71]],"93":[[1,72]],"98":25,"99":26,"100":27,"101":28,"102":29,"104":30,"112":[[1,67]],"115":[[1,31]],"116":32,"122":[[1,70]],"123":[[1,69]],"124":[[1,66]],"127":[[1,46]],"131":[[1,47]],"132":[[1,68]],"134":[[1,49]],"135":[[1,50]],"141":[[1,51]],"146":45,"147":[[1,73]]},{"24":[[2,174]],"45":[[2,174]],"143":[[2,174]],"145":[[2,174]]},{"1":[[2,136]],"3":[[2,136]],"23":[[2,136]],"24":[[2,136]],"42":[[2,136]],"48":[[2,136]],"49":[[2,136]],"52":[[2,136]],"53":[[2,136]],"56":[[2,136]],"57":[[2,136]],"58":[[2,136]],"59":[[2,136]],"60":[[2,136]],"61":[[2,136]],"62":[[2,136]],"63":[[2,136]],"64":[[2,136]],"65":[[2,136]],"66":[[2,136]],"67":[[2,136]],"68":[[2,136]],"69":[[2,136]],"70":[[2,136]],"71":[[2,136]],"72":[[2,136]],"73":[[2,136]],"74":[[2,136]],"75":[[2,136]],"76":[[2,136]],"77":[[2,136]],"78":[[2,136]],"79":[[2,136]],"80":[[2,136]],"81":[[2,136]],"82":[[2,136]],"83":[[2,136]],"84":[[2,136]],"85":[[2,136]],"86":[[2,136]],"87":[[2,136]],"95":[[2,136]],"97":[[2,136]],"105":[[2,136]],"106":[[2,136]],"107":[[2,136]],"110":[[2,136]],"111":[[2,136]],"114":[[2,136]],"117":[[2,136]],"119":[[2,136]],"121":[[2,136]],"125":[[2,136]],"133":[[2,136]],"134":[[2,136]],"135":[[2,136]],"139":[[2,136]],"140":[[2,136]],"147":[[2,136]],"152":[[2,136]]},{"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"97":[[1,118]],"125":[[1,320]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,138]],"3":[[2,138]],"23":[[2,138]],"24":[[2,138]],"42":[[2,138]],"48":[[2,138]],"49":[[2,138]],"52":[[2,138]],"53":[[2,138]],"56":[[2,138]],"57":[[2,138]],"58":[[2,138]],"59":[[2,138]],"60":[[2,138]],"61":[[2,138]],"62":[[2,138]],"63":[[2,138]],"64":[[2,138]],"65":[[2,138]],"66":[[2,138]],"67":[[2,138]],"68":[[2,138]],"69":[[2,138]],"70":[[2,138]],"71":[[2,138]],"72":[[2,138]],"73":[[2,138]],"74":[[2,138]],"75":[[2,138]],"76":[[2,138]],"77":[[2,138]],"78":[[2,138]],"79":[[2,138]],"80":[[2,138]],"81":[[2,138]],"82":[[2,138]],"83":[[2,138]],"84":[[2,138]],"85":[[2,138]],"86":[[2,138]],"87":[[2,138]],"95":[[2,138]],"97":[[2,138]],"105":[[2,138]],"106":[[2,138]],"107":[[2,138]],"110":[[2,138]],"111":[[2,138]],"114":[[2,138]],"117":[[2,138]],"119":[[2,138]],"121":[[2,138]],"125":[[2,138]],"133":[[2,138]],"134":[[2,138]],"135":[[2,138]],"139":[[2,138]],"140":[[2,138]],"147":[[2,138]],"152":[[2,138]]},{"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"97":[[1,118]],"111":[[1,321]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,169]],"3":[[2,169]],"23":[[2,169]],"24":[[2,169]],"48":[[2,169]],"49":[[2,169]],"52":[[2,169]],"53":[[2,169]],"56":[[2,169]],"57":[[2,169]],"58":[[2,169]],"59":[[2,169]],"60":[[2,169]],"61":[[2,169]],"62":[[2,169]],"63":[[2,169]],"64":[[2,169]],"65":[[2,169]],"66":[[2,169]],"67":[[2,169]],"68":[[2,169]],"69":[[2,169]],"70":[[2,169]],"71":[[2,169]],"72":[[2,169]],"73":[[2,169]],"74":[[2,169]],"75":[[2,169]],"76":[[2,169]],"77":[[2,169]],"78":[[2,169]],"79":[[2,169]],"80":[[2,169]],"81":[[2,169]],"82":[[2,169]],"83":[[2,169]],"84":[[2,169]],"85":[[2,169]],"86":[[2,169]],"87":[[2,169]],"95":[[2,169]],"97":[[2,169]],"111":[[2,169]],"114":[[2,169]],"121":[[2,169]],"125":[[2,169]],"133":[[2,169]],"134":[[2,169]],"135":[[2,169]],"139":[[2,169]],"140":[[2,169]],"147":[[2,169]],"152":[[2,169]]},{"24":[[2,173]],"45":[[2,173]],"143":[[2,173]],"145":[[2,173]]},{"23":[[2,150]],"48":[[1,84]],"49":[[1,83]],"52":[[1,78]],"53":[[1,79]],"56":[[1,80]],"57":[[1,81]],"58":[[1,82]],"59":[[1,85]],"60":[[1,86]],"61":[[1,87]],"62":[[1,88]],"63":[[1,89]],"64":[[1,90]],"65":[[1,91]],"66":[[1,92]],"67":[[1,93]],"68":[[1,94]],"69":[[1,95]],"70":[[1,96]],"71":[[1,97]],"72":[[1,98]],"73":[[1,99]],"74":[[1,100]],"75":[[1,101]],"76":[[1,102]],"77":[[1,103]],"78":[[1,104]],"79":[[1,105]],"80":[[1,106]],"81":[[1,107]],"82":[[1,108]],"83":[[1,109]],"84":[[1,110]],"85":[[1,111]],"86":[[1,112]],"87":[[1,113]],"95":[[2,150]],"97":[[1,118]],"134":[[1,116]],"135":[[1,117]],"147":[[1,114]],"152":[[1,115]]},{"1":[[2,137]],"3":[[2,137]],"23":[[2,137]],"24":[[2,137]],"42":[[2,137]],"48":[[2,137]],"49":[[2,137]],"52":[[2,137]],"53":[[2,137]],"56":[[2,137]],"57":[[2,137]],"58":[[2,137]],"59":[[2,137]],"60":[[2,137]],"61":[[2,137]],"62":[[2,137]],"63":[[2,137]],"64":[[2,137]],"65":[[2,137]],"66":[[2,137]],"67":[[2,137]],"68":[[2,137]],"69":[[2,137]],"70":[[2,137]],"71":[[2,137]],"72":[[2,137]],"73":[[2,137]],"74":[[2,137]],"75":[[2,137]],"76":[[2,137]],"77":[[2,137]],"78":[[2,137]],"79":[[2,137]],"80":[[2,137]],"81":[[2,137]],"82":[[2,137]],"83":[[2,137]],"84":[[2,137]],"85":[[2,137]],"86":[[2,137]],"87":[[2,137]],"95":[[2,137]],"97":[[2,137]],"105":[[2,137]],"106":[[2,137]],"107":[[2,137]],"110":[[2,137]],"111":[[2,137]],"114":[[2,137]],"117":[[2,137]],"119":[[2,137]],"121":[[2,137]],"125":[[2,137]],"133":[[2,137]],"134":[[2,137]],"135":[[2,137]],"139":[[2,137]],"140":[[2,137]],"147":[[2,137]],"152":[[2,137]]},{"1":[[2,139]],"3":[[2,139]],"23":[[2,139]],"24":[[2,139]],"42":[[2,139]],"48":[[2,139]],"49":[[2,139]],"52":[[2,139]],"53":[[2,139]],"56":[[2,139]],"57":[[2,139]],"58":[[2,139]],"59":[[2,139]],"60":[[2,139]],"61":[[2,139]],"62":[[2,139]],"63":[[2,139]],"64":[[2,139]],"65":[[2,139]],"66":[[2,139]],"67":[[2,139]],"68":[[2,139]],"69":[[2,139]],"70":[[2,139]],"71":[[2,139]],"72":[[2,139]],"73":[[2,139]],"74":[[2,139]],"75":[[2,139]],"76":[[2,139]],"77":[[2,139]],"78":[[2,139]],"79":[[2,139]],"80":[[2,139]],"81":[[2,139]],"82":[[2,139]],"83":[[2,139]],"84":[[2,139]],"85":[[2,139]],"86":[[2,139]],"87":[[2,139]],"95":[[2,139]],"97":[[2,139]],"105":[[2,139]],"106":[[2,139]],"107":[[2,139]],"110":[[2,139]],"111":[[2,139]],"114":[[2,139]],"117":[[2,139]],"119":[[2,139]],"121":[[2,139]],"125":[[2,139]],"133":[[2,139]],"134":[[2,139]],"135":[[2,139]],"139":[[2,139]],"140":[[2,139]],"147":[[2,139]],"152":[[2,139]]}], +parseError: function parseError(str, hash) { + throw new Error(str); +}, +parse: function parse(input) { + var self = this, + stack = [0], + vstack = [null], // semantic value stack + table = this.table, + yytext = '', + yylineno = 0, + yyleng = 0, + shifts = 0, + reductions = 0; + + this.lexer.setInput(input); + this.lexer.yy = this.yy; + + var parseError = this.yy.parseError = this.yy.parseError || this.parseError; + + function lex() { + var token; + token = self.lexer.lex() || 1; // $end = 1 + // if token isn't its numeric value, convert + if (typeof token !== 'number') { + token = self.symbols_[token]; } - return __b; - }).call(this); + return token; + }; + + var symbol, state, action, a, r, yyval={},p,len,ip=0,newState, expected; + symbol = lex(); + while (true) { + this.trace('stack:',JSON.stringify(stack), '\n\t\t\tinput:', this.lexer._input); + this.trace('vstack:',JSON.stringify(vstack)); + // set first input + state = stack[stack.length-1]; + // read action for current state and first input + action = table[state] && table[state][symbol]; + + if (typeof action == 'undefined' || !action.length || !action[0]) { + expected = []; + for (p in table[state]) if (this.terminals_[p] && p != 1) { + expected.push("'"+this.terminals_[p]+"'"); + } + self.trace("stack:",JSON.stringify(stack), 'symbol:',symbol, 'input', this.lexer.upcomingInput()); + if (this.lexer.upcomingInput) self.trace('input', this.lexer.upcomingInput()); + parseError('Parse error on line '+(yylineno+1)+'. Expecting: '+expected.join(', ')+"\n"+(this.lexer.showPosition && this.lexer.showPosition()), + {text: this.lexer.match, token: symbol, line: this.lexer.yylineno}); + } + + this.trace('action:',action); + + // this shouldn't happen, unless resolve defaults are off + if (action.length > 1) { + throw new Error('Parse Error: multiple actions possible at state: '+state+', token: '+symbol); + } + + a = action[0]; + + switch (a[0]) { + + case 1: // shift + shifts++; + + stack.push(symbol);++ip; + yyleng = this.lexer.yyleng; + yytext = this.lexer.yytext; + yylineno = this.lexer.yylineno; + symbol = lex(); + vstack.push(null); // semantic values or junk only, no terminals + stack.push(a[1]); // push state + break; + + case 2: // reduce + reductions++; + + len = this.productions_[a[1]][1]; + this.trace('reduce by: ', this.productions ? this.productions[a[1]] : a[1]); + + // perform semantic action + yyval.$ = vstack[vstack.length-len]; // default to $$ = $1 + r = this.performAction.call(yyval, yytext, yyleng, yylineno, this.yy, a[1], vstack); + + if (typeof r !== 'undefined') { + return r; + } + + this.trace('yyval=',JSON.stringify(yyval.$)); + + // pop off stack + if (len) { + this.trace('production length:',len); + stack = stack.slice(0,-1*len*2); + vstack = vstack.slice(0, -1*len); + } + + stack.push(this.productions_[a[1]][0]); // push nonterminal (reduce) + vstack.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 + + this.trace('stack:',stack, '\n\tinput:', this.lexer._input); + this.trace('vstack:',JSON.stringify(vstack)); + this.trace('Total reductions:', reductions); + this.trace('Total shifts:', shifts); + return true; + } + } - } - tokens = tokens.join(" "); - parser = new Parser({ - tokens: tokens, - bnf: bnf, - operators: operators, - startSymbol: 'Root' - }, { - debug: false - }); - // Thin wrapper around the real lexer - parser.lexer = { - lex: function lex() { - var token; - token = this.tokens[this.pos] || [""]; - this.pos += 1; - this.yylineno = token[2]; - this.yytext = token[1]; - return token[0]; - }, - setInput: function setInput(tokens) { - this.tokens = tokens; - return this.pos = 0; - }, - upcomingInput: function upcomingInput() { - return ""; - }, - showPosition: function showPosition() { - return this.pos; - } - }; - exports.Parser = function Parser() { }; - exports.Parser.prototype.parse = function parse(tokens) { - return parser.parse(tokens); - }; -})(); \ No newline at end of file + + return true; +}}; +return parser; +})(); +if (typeof require !== 'undefined') { +exports.parser = parser; +exports.parse = function () { return parser.parse.apply(parser, arguments); } +exports.main = function commonjsMain(args) { + var cwd = require("file").path(require("file").cwd()); + if (!args[1]) + throw new Error('Usage: '+args[0]+' FILE'); + var source = cwd.join(args[1]).read({charset: "utf-8"}); + this.parse(source); +} +if (require.main === module) { + exports.main(require("system").args); +} +} \ No newline at end of file diff --git a/src/parser.coffee b/src/grammar.coffee similarity index 83% rename from src/parser.coffee rename to src/grammar.coffee index 1ddb10ea..62b342d5 100644 --- a/src/parser.coffee +++ b/src/grammar.coffee @@ -1,5 +1,4 @@ Parser: require('jison').Parser -process.mixin require './nodes' # DSL =================================================================== @@ -138,59 +137,59 @@ grammar: { # https://www.cs.auckland.ac.nz/references/ruby/ProgrammingRuby/language.html Operation: [ o "! Expression", -> new OpNode('!', $2) - # o "!! Expression", -> new OpNode('!!', $2) + o "!! Expression", -> new OpNode('!!', $2) o "- Expression", (-> new OpNode('-', $2)), {prec: 'UMINUS'} - # o "+ Expression", (-> new OpNode('+', $2)), {prec: 'UPLUS'} + o "+ Expression", (-> new OpNode('+', $2)), {prec: 'UPLUS'} o "NOT Expression", -> new OpNode('not', $2) - # o "~ Expression", -> new OpNode('~', $2) - # o "-- Expression", -> new OpNode('--', $2) - # o "++ Expression", -> new OpNode('++', $2) + o "~ Expression", -> new OpNode('~', $2) + o "-- Expression", -> new OpNode('--', $2) + o "++ Expression", -> new OpNode('++', $2) o "DELETE Expression", -> new OpNode('delete', $2) o "TYPEOF Expression", -> new OpNode('typeof', $2) - # o "Expression --", -> new OpNode('--', $1, null, true) - # o "Expression ++", -> new OpNode('++', $1, null, true) + o "Expression --", -> new OpNode('--', $1, null, true) + o "Expression ++", -> new OpNode('++', $1, null, true) o "Expression * Expression", -> new OpNode('*', $1, $3) o "Expression / Expression", -> new OpNode('/', $1, $3) - # o "Expression % Expression", -> new OpNode('%', $1, $3) + o "Expression % Expression", -> new OpNode('%', $1, $3) o "Expression + Expression", -> new OpNode('+', $1, $3) o "Expression - Expression", -> new OpNode('-', $1, $3) - # o "Expression << Expression", -> new OpNode('<<', $1, $3) - # o "Expression >> Expression", -> new OpNode('>>', $1, $3) - # o "Expression >>> Expression", -> new OpNode('>>>', $1, $3) - # o "Expression & Expression", -> new OpNode('&', $1, $3) - # o "Expression | Expression", -> new OpNode('|', $1, $3) - # o "Expression ^ Expression", -> new OpNode('^', $1, $3) + o "Expression << Expression", -> new OpNode('<<', $1, $3) + o "Expression >> Expression", -> new OpNode('>>', $1, $3) + o "Expression >>> Expression", -> new OpNode('>>>', $1, $3) + o "Expression & Expression", -> new OpNode('&', $1, $3) + o "Expression | Expression", -> new OpNode('|', $1, $3) + o "Expression ^ Expression", -> new OpNode('^', $1, $3) o "Expression <= Expression", -> new OpNode('<=', $1, $3) o "Expression < Expression", -> new OpNode('<', $1, $3) o "Expression > Expression", -> new OpNode('>', $1, $3) o "Expression >= Expression", -> new OpNode('>=', $1, $3) - # o "Expression == Expression", -> new OpNode('==', $1, $3) - # o "Expression != Expression", -> new OpNode($2, $1, $3) - o "Expression IS Expression", -> new OpNode($2, $1, $3) - o "Expression ISNT Expression", -> new OpNode($2, $1, $3) + o "Expression == Expression", -> new OpNode('==', $1, $3) + o "Expression != Expression", -> new OpNode('!=', $1, $3) + o "Expression IS Expression", -> new OpNode('IS', $1, $3) + o "Expression ISNT Expression", -> new OpNode('ISNT', $1, $3) - # o "Expression && Expression", -> new OpNode($2, $1, $3) - # o "Expression || Expression", -> new OpNode($2, $1, $3) - o "Expression AND Expression", -> new OpNode($2, $1, $3) - o "Expression OR Expression", -> new OpNode($2, $1, $3) - o "Expression ? Expression", -> new OpNode($2, $1, $3) + o "Expression && Expression", -> new OpNode('&&', $1, $3) + o "Expression || Expression", -> new OpNode('||', $1, $3) + o "Expression AND Expression", -> new OpNode('AND', $1, $3) + o "Expression OR Expression", -> new OpNode('OR', $1, $3) + o "Expression ? Expression", -> new OpNode('?', $1, $3) - o "Expression -= Expression", -> new OpNode($2, $1, $3) - o "Expression += Expression", -> new OpNode($2, $1, $3) - # o "Expression /= Expression", -> new OpNode($2, $1, $3) - # o "Expression *= Expression", -> new OpNode($2, $1, $3) - # o "Expression %= Expression", -> new OpNode($2, $1, $3) - o "Expression ||= Expression", -> new OpNode($2, $1, $3) - o "Expression &&= Expression", -> new OpNode($2, $1, $3) - # o "Expression ?= Expression", -> new OpNode($2, $1, $3) + o "Expression -= Expression", -> new OpNode('-=', $1, $3) + o "Expression += Expression", -> new OpNode('+=', $1, $3) + o "Expression /= Expression", -> new OpNode('/=', $1, $3) + o "Expression *= Expression", -> new OpNode('*=', $1, $3) + o "Expression %= Expression", -> new OpNode('%=', $1, $3) + o "Expression ||= Expression", -> new OpNode('||=', $1, $3) + o "Expression &&= Expression", -> new OpNode('&&=', $1, $3) + o "Expression ?= Expression", -> new OpNode('?=', $1, $3) - o "Expression INSTANCEOF Expression", -> new OpNode($2, $1, $3) - # o "Expression IN Expression", -> new OpNode($2, $1, $3) + o "Expression INSTANCEOF Expression", -> new OpNode('INSTANCEOF', $1, $3) + o "Expression IN Expression", -> new OpNode('IN', $1, $3) ] # The existence operator. @@ -461,21 +460,8 @@ for name, non_terminal of grammar tokens: tokens.join(" ") parser: new Parser({tokens: tokens, bnf: bnf, operators: operators, startSymbol: 'Root'}, {debug: false}) -# Thin wrapper around the real lexer -parser.lexer: { - lex: -> - token: this.tokens[this.pos] or [""] - this.pos += 1 - this.yylineno: token[2] - this.yytext: token[1] - token[0] - setInput: (tokens) -> - this.tokens = tokens - this.pos = 0 - upcomingInput: -> "" - showPosition: -> this.pos -} - -exports.Parser: -> - -exports.Parser::parse: (tokens) -> parser.parse(tokens) \ No newline at end of file +# Save the parser to a file. +puts parser.generate() +posix: require 'posix' +posix.open('parser.js', process.O_CREAT | process.O_WRONLY, 0755).addCallback (fd) -> + posix.write(fd, parser.generate())