diff --git a/lib/grammar.js b/lib/grammar.js index 3a943fe5..4925f9a5 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -38,7 +38,7 @@ return new Literal($1); }), o('Comment') ], - Expression: [o('Value'), o('Invocation'), o('Code'), o('Operation'), o('Assign'), o('If'), o('Try'), o('While'), o('For'), o('Switch'), o('Extends'), o('Class')], + Expression: [o('Value'), o('Invocation'), o('Code'), o('Operation'), o('Assign'), o('If'), o('Try'), o('While'), o('For'), o('Switch'), o('Class')], Block: [ o('INDENT Body OUTDENT', function() { return $2; @@ -245,11 +245,6 @@ return $2; }) ], - Extends: [ - o('SimpleAssignable EXTENDS Value', function() { - return new Extends($1, $3); - }) - ], Invocation: [ o('Value OptFuncExist Arguments', function() { return new Call($1, $3, $2); @@ -590,10 +585,12 @@ }), o('SimpleAssignable COMPOUND_ASSIGN\ INDENT Expression OUTDENT', function() { return new Assign($1, $4, $2); + }), o('SimpleAssignable EXTENDS Expression', function() { + return new Extends($1, $3); }) ] }; - operators = [['left', '.', '?.', '::'], ['left', 'CALL_START', 'CALL_END'], ['nonassoc', '++', '--'], ['left', '?'], ['right', 'UNARY'], ['left', 'MATH'], ['left', '+', '-'], ['left', 'SHIFT'], ['left', 'RELATION'], ['left', 'COMPARE'], ['left', 'LOGIC'], ['nonassoc', 'INDENT', 'OUTDENT'], ['right', '=', ':', 'COMPOUND_ASSIGN', 'RETURN'], ['right', 'WHEN', 'LEADING_WHEN', 'FORIN', 'FOROF', 'FROM', 'TO', 'BY', 'THROW', 'IF', 'UNLESS', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'SUPER', 'CLASS', 'EXTENDS'], ['right', 'POST_IF', 'POST_UNLESS']]; + operators = [['left', '.', '?.', '::'], ['left', 'CALL_START', 'CALL_END'], ['nonassoc', '++', '--'], ['left', '?'], ['right', 'UNARY'], ['left', 'MATH'], ['left', '+', '-'], ['left', 'SHIFT'], ['left', 'RELATION'], ['left', 'COMPARE'], ['left', 'LOGIC'], ['nonassoc', 'INDENT', 'OUTDENT'], ['right', '=', ':', 'COMPOUND_ASSIGN', 'RETURN', 'EXTENDS'], ['right', 'WHEN', 'LEADING_WHEN', 'FORIN', 'FOROF', 'FROM', 'TO', 'BY', 'THROW', 'IF', 'UNLESS', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'SUPER', 'CLASS'], ['right', 'POST_IF', 'POST_UNLESS']]; tokens = []; for (name in grammar) { alternatives = grammar[name]; diff --git a/lib/nodes.js b/lib/nodes.js index 158ec4ea..34289f60 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -6,6 +6,7 @@ child.prototype = new ctor; if (typeof parent.extended === "function") parent.extended(child); child.__super__ = parent.prototype; + return child; }, __slice = Array.prototype.slice; Scope = require('./scope').Scope; _ref = require('./helpers'), compact = _ref.compact, flatten = _ref.flatten, extend = _ref.extend, merge = _ref.merge, del = _ref.del, starts = _ref.starts, ends = _ref.ends, last = _ref.last; @@ -2024,7 +2025,7 @@ } }; UTILITIES = { - "extends": 'function(child, parent) {\n function ctor() { this.constructor = child; }\n ctor.prototype = parent.prototype;\n child.prototype = new ctor;\n if (typeof parent.extended === "function") parent.extended(child);\n child.__super__ = parent.prototype;\n}', + "extends": 'function(child, parent) {\n function ctor() { this.constructor = child; }\n ctor.prototype = parent.prototype;\n child.prototype = new ctor;\n if (typeof parent.extended === "function") parent.extended(child);\n child.__super__ = parent.prototype;\n return child;\n}', bind: 'function(func, context) {\n return function() { return func.apply(context, arguments); };\n}', indexOf: 'Array.prototype.indexOf || function(item) {\n for (var i = 0, l = this.length; i < l; i++) {\n if (this[i] === item) return i;\n }\n return -1;\n}', hasProp: 'Object.prototype.hasOwnProperty', diff --git a/lib/parser.js b/lib/parser.js index 668aa7df..f1ee5c29 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -2,9 +2,9 @@ var parser = (function(){ var parser = {trace: function trace() { }, yy: {}, -symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"DEBUGGER":14,"Comment":15,"Value":16,"Invocation":17,"Code":18,"Operation":19,"Assign":20,"If":21,"Try":22,"While":23,"For":24,"Switch":25,"Extends":26,"Class":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"Parenthetical":45,"RETURN":46,"HERECOMMENT":47,"PARAM_START":48,"ParamList":49,"PARAM_END":50,"FuncGlyph":51,"->":52,"=>":53,"OptComma":54,",":55,"Param":56,"ParamVar":57,"...":58,"Array":59,"Object":60,"Splat":61,"SimpleAssignable":62,"Accessor":63,"This":64,".":65,"?.":66,"::":67,"Index":68,"INDEX_START":69,"INDEX_END":70,"INDEX_SOAK":71,"INDEX_PROTO":72,"{":73,"AssignList":74,"}":75,"CLASS":76,"EXTENDS":77,"ClassBody":78,"ClassAssign":79,"OptFuncExist":80,"Arguments":81,"SUPER":82,"FUNC_EXIST":83,"CALL_START":84,"CALL_END":85,"ArgList":86,"THIS":87,"@":88,"[":89,"]":90,"Arg":91,"SimpleArgs":92,"TRY":93,"Catch":94,"FINALLY":95,"CATCH":96,"THROW":97,"(":98,")":99,"WhileSource":100,"WHILE":101,"WHEN":102,"UNTIL":103,"Loop":104,"LOOP":105,"ForBody":106,"ForValue":107,"ForIn":108,"FORIN":109,"BY":110,"ForOf":111,"FOROF":112,"ForTo":113,"TO":114,"FOR":115,"ALL":116,"FROM":117,"SWITCH":118,"Whens":119,"ELSE":120,"When":121,"LEADING_WHEN":122,"IfBlock":123,"IF":124,"UNLESS":125,"POST_IF":126,"POST_UNLESS":127,"UNARY":128,"-":129,"+":130,"--":131,"++":132,"?":133,"MATH":134,"SHIFT":135,"COMPARE":136,"LOGIC":137,"RELATION":138,"COMPOUND_ASSIGN":139,"$accept":0,"$end":1}, -terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"BOOL","40":"=","43":":","46":"RETURN","47":"HERECOMMENT","48":"PARAM_START","50":"PARAM_END","52":"->","53":"=>","55":",","58":"...","65":".","66":"?.","67":"::","69":"INDEX_START","70":"INDEX_END","71":"INDEX_SOAK","72":"INDEX_PROTO","73":"{","75":"}","76":"CLASS","77":"EXTENDS","82":"SUPER","83":"FUNC_EXIST","84":"CALL_START","85":"CALL_END","87":"THIS","88":"@","89":"[","90":"]","93":"TRY","95":"FINALLY","96":"CATCH","97":"THROW","98":"(","99":")","101":"WHILE","102":"WHEN","103":"UNTIL","105":"LOOP","109":"FORIN","110":"BY","112":"FOROF","114":"TO","115":"FOR","116":"ALL","117":"FROM","118":"SWITCH","120":"ELSE","122":"LEADING_WHEN","124":"IF","125":"UNLESS","126":"POST_IF","127":"POST_UNLESS","128":"UNARY","129":"-","130":"+","131":"--","132":"++","133":"?","134":"MATH","135":"SHIFT","136":"COMPARE","137":"LOGIC","138":"RELATION","139":"COMPOUND_ASSIGN"}, -productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[20,3],[20,5],[41,1],[41,3],[41,5],[41,1],[41,1],[42,1],[42,1],[42,1],[10,2],[10,1],[15,1],[18,5],[18,2],[51,1],[51,1],[54,0],[54,1],[49,0],[49,1],[49,3],[56,1],[56,2],[56,3],[57,1],[57,1],[57,1],[57,1],[61,2],[62,1],[62,2],[62,2],[62,1],[39,1],[39,1],[39,1],[16,1],[16,1],[16,1],[16,1],[63,2],[63,2],[63,2],[63,1],[63,1],[68,3],[68,2],[68,2],[60,4],[74,0],[74,1],[74,3],[74,4],[74,6],[27,2],[27,4],[27,5],[27,7],[27,4],[27,1],[27,3],[27,6],[79,1],[79,3],[79,5],[78,0],[78,1],[78,3],[78,3],[26,3],[17,3],[17,3],[17,1],[17,2],[80,0],[80,1],[81,2],[81,4],[64,1],[64,1],[44,2],[59,2],[59,4],[86,1],[86,3],[86,4],[86,4],[86,6],[91,1],[91,1],[92,1],[92,3],[22,2],[22,3],[22,4],[22,5],[94,3],[11,2],[45,3],[100,2],[100,4],[100,2],[100,4],[23,2],[23,2],[23,2],[23,1],[104,2],[104,2],[24,2],[24,2],[24,2],[107,1],[107,1],[107,1],[108,2],[108,4],[108,4],[108,6],[111,2],[111,4],[113,2],[113,4],[113,4],[113,6],[106,3],[106,5],[106,3],[106,5],[106,4],[106,6],[106,5],[25,5],[25,7],[25,4],[25,6],[119,1],[119,2],[121,3],[121,4],[123,3],[123,3],[123,5],[123,3],[21,1],[21,3],[21,3],[21,3],[21,3],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,5]], +symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"DEBUGGER":14,"Comment":15,"Value":16,"Invocation":17,"Code":18,"Operation":19,"Assign":20,"If":21,"Try":22,"While":23,"For":24,"Switch":25,"Class":26,"INDENT":27,"OUTDENT":28,"Identifier":29,"IDENTIFIER":30,"AlphaNumeric":31,"NUMBER":32,"STRING":33,"Literal":34,"JS":35,"REGEX":36,"BOOL":37,"Assignable":38,"=":39,"AssignObj":40,"ObjAssignable":41,":":42,"ThisProperty":43,"Parenthetical":44,"RETURN":45,"HERECOMMENT":46,"PARAM_START":47,"ParamList":48,"PARAM_END":49,"FuncGlyph":50,"->":51,"=>":52,"OptComma":53,",":54,"Param":55,"ParamVar":56,"...":57,"Array":58,"Object":59,"Splat":60,"SimpleAssignable":61,"Accessor":62,"This":63,".":64,"?.":65,"::":66,"Index":67,"INDEX_START":68,"INDEX_END":69,"INDEX_SOAK":70,"INDEX_PROTO":71,"{":72,"AssignList":73,"}":74,"CLASS":75,"EXTENDS":76,"ClassBody":77,"ClassAssign":78,"OptFuncExist":79,"Arguments":80,"SUPER":81,"FUNC_EXIST":82,"CALL_START":83,"CALL_END":84,"ArgList":85,"THIS":86,"@":87,"[":88,"]":89,"Arg":90,"SimpleArgs":91,"TRY":92,"Catch":93,"FINALLY":94,"CATCH":95,"THROW":96,"(":97,")":98,"WhileSource":99,"WHILE":100,"WHEN":101,"UNTIL":102,"Loop":103,"LOOP":104,"ForBody":105,"ForValue":106,"ForIn":107,"FORIN":108,"BY":109,"ForOf":110,"FOROF":111,"ForTo":112,"TO":113,"FOR":114,"ALL":115,"FROM":116,"SWITCH":117,"Whens":118,"ELSE":119,"When":120,"LEADING_WHEN":121,"IfBlock":122,"IF":123,"UNLESS":124,"POST_IF":125,"POST_UNLESS":126,"UNARY":127,"-":128,"+":129,"--":130,"++":131,"?":132,"MATH":133,"SHIFT":134,"COMPARE":135,"LOGIC":136,"RELATION":137,"COMPOUND_ASSIGN":138,"$accept":0,"$end":1}, +terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","27":"INDENT","28":"OUTDENT","30":"IDENTIFIER","32":"NUMBER","33":"STRING","35":"JS","36":"REGEX","37":"BOOL","39":"=","42":":","45":"RETURN","46":"HERECOMMENT","47":"PARAM_START","49":"PARAM_END","51":"->","52":"=>","54":",","57":"...","64":".","65":"?.","66":"::","68":"INDEX_START","69":"INDEX_END","70":"INDEX_SOAK","71":"INDEX_PROTO","72":"{","74":"}","75":"CLASS","76":"EXTENDS","81":"SUPER","82":"FUNC_EXIST","83":"CALL_START","84":"CALL_END","86":"THIS","87":"@","88":"[","89":"]","92":"TRY","94":"FINALLY","95":"CATCH","96":"THROW","97":"(","98":")","100":"WHILE","101":"WHEN","102":"UNTIL","104":"LOOP","108":"FORIN","109":"BY","111":"FOROF","113":"TO","114":"FOR","115":"ALL","116":"FROM","117":"SWITCH","119":"ELSE","121":"LEADING_WHEN","123":"IF","124":"UNLESS","125":"POST_IF","126":"POST_UNLESS","127":"UNARY","128":"-","129":"+","130":"--","131":"++","132":"?","133":"MATH","134":"SHIFT","135":"COMPARE","136":"LOGIC","137":"RELATION","138":"COMPOUND_ASSIGN"}, +productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[29,1],[31,1],[31,1],[34,1],[34,1],[34,1],[34,1],[20,3],[20,5],[40,1],[40,3],[40,5],[40,1],[40,1],[41,1],[41,1],[41,1],[10,2],[10,1],[15,1],[18,5],[18,2],[50,1],[50,1],[53,0],[53,1],[48,0],[48,1],[48,3],[55,1],[55,2],[55,3],[56,1],[56,1],[56,1],[56,1],[60,2],[61,1],[61,2],[61,2],[61,1],[38,1],[38,1],[38,1],[16,1],[16,1],[16,1],[16,1],[62,2],[62,2],[62,2],[62,1],[62,1],[67,3],[67,2],[67,2],[59,4],[73,0],[73,1],[73,3],[73,4],[73,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[78,1],[78,3],[78,5],[77,0],[77,1],[77,3],[77,3],[17,3],[17,3],[17,1],[17,2],[79,0],[79,1],[80,2],[80,4],[63,1],[63,1],[43,2],[58,2],[58,4],[85,1],[85,3],[85,4],[85,4],[85,6],[90,1],[90,1],[91,1],[91,3],[22,2],[22,3],[22,4],[22,5],[93,3],[11,2],[44,3],[99,2],[99,4],[99,2],[99,4],[23,2],[23,2],[23,2],[23,1],[103,2],[103,2],[24,2],[24,2],[24,2],[106,1],[106,1],[106,1],[107,2],[107,4],[107,4],[107,6],[110,2],[110,4],[112,2],[112,4],[112,4],[112,6],[105,3],[105,5],[105,3],[105,5],[105,4],[105,6],[105,5],[25,5],[25,7],[25,4],[25,6],[118,1],[118,2],[120,3],[120,4],[122,3],[122,3],[122,5],[122,3],[21,1],[21,3],[21,3],[21,3],[21,3],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,5],[19,3]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -61,37 +61,37 @@ case 25:this.$ = $$[$0-1+1-1]; break; case 26:this.$ = $$[$0-1+1-1]; break; -case 27:this.$ = $$[$0-1+1-1]; +case 27:this.$ = $$[$0-3+2-1]; break; -case 28:this.$ = $$[$0-3+2-1]; +case 28:this.$ = new yy.Expressions; break; -case 29:this.$ = new yy.Expressions; +case 29:this.$ = yy.Expressions.wrap([$$[$0-2+2-1]]); break; -case 30:this.$ = yy.Expressions.wrap([$$[$0-2+2-1]]); +case 30:this.$ = new yy.Literal($$[$0-1+1-1]); break; case 31:this.$ = new yy.Literal($$[$0-1+1-1]); break; case 32:this.$ = new yy.Literal($$[$0-1+1-1]); break; -case 33:this.$ = new yy.Literal($$[$0-1+1-1]); +case 33:this.$ = $$[$0-1+1-1]; break; -case 34:this.$ = $$[$0-1+1-1]; +case 34:this.$ = new yy.Literal($$[$0-1+1-1]); break; case 35:this.$ = new yy.Literal($$[$0-1+1-1]); break; -case 36:this.$ = new yy.Literal($$[$0-1+1-1]); +case 36:this.$ = new yy.Literal($$[$0-1+1-1] === 'undefined' ? 'void 0' : $$[$0-1+1-1]); break; -case 37:this.$ = new yy.Literal($$[$0-1+1-1] === 'undefined' ? 'void 0' : $$[$0-1+1-1]); +case 37:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 38:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1]); +case 38:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1]); break; -case 39:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1]); +case 39:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 40:this.$ = new yy.Value($$[$0-1+1-1]); +case 40:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); break; -case 41:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); +case 41:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'object'); break; -case 42:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'object'); +case 42:this.$ = $$[$0-1+1-1]; break; case 43:this.$ = $$[$0-1+1-1]; break; @@ -101,37 +101,37 @@ case 45:this.$ = $$[$0-1+1-1]; break; case 46:this.$ = $$[$0-1+1-1]; break; -case 47:this.$ = $$[$0-1+1-1]; +case 47:this.$ = new yy.Return($$[$0-2+2-1]); break; -case 48:this.$ = new yy.Return($$[$0-2+2-1]); +case 48:this.$ = new yy.Return; break; -case 49:this.$ = new yy.Return; +case 49:this.$ = new yy.Comment($$[$0-1+1-1]); break; -case 50:this.$ = new yy.Comment($$[$0-1+1-1]); +case 50:this.$ = new yy.Code($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); break; -case 51:this.$ = new yy.Code($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); +case 51:this.$ = new yy.Code([], $$[$0-2+2-1], $$[$0-2+1-1]); break; -case 52:this.$ = new yy.Code([], $$[$0-2+2-1], $$[$0-2+1-1]); +case 52:this.$ = 'func'; break; -case 53:this.$ = 'func'; +case 53:this.$ = 'boundfunc'; break; -case 54:this.$ = 'boundfunc'; +case 54:this.$ = $$[$0-1+1-1]; break; case 55:this.$ = $$[$0-1+1-1]; break; -case 56:this.$ = $$[$0-1+1-1]; +case 56:this.$ = []; break; -case 57:this.$ = []; +case 57:this.$ = [$$[$0-1+1-1]]; break; -case 58:this.$ = [$$[$0-1+1-1]]; +case 58:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 59:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 59:this.$ = new yy.Param($$[$0-1+1-1]); break; -case 60:this.$ = new yy.Param($$[$0-1+1-1]); +case 60:this.$ = new yy.Param($$[$0-2+1-1], null, true); break; -case 61:this.$ = new yy.Param($$[$0-2+1-1], null, true); +case 61:this.$ = new yy.Param($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 62:this.$ = new yy.Param($$[$0-3+1-1], $$[$0-3+3-1]); +case 62:this.$ = $$[$0-1+1-1]; break; case 63:this.$ = $$[$0-1+1-1]; break; @@ -139,353 +139,349 @@ case 64:this.$ = $$[$0-1+1-1]; break; case 65:this.$ = $$[$0-1+1-1]; break; -case 66:this.$ = $$[$0-1+1-1]; +case 66:this.$ = new yy.Splat($$[$0-2+1-1]); break; -case 67:this.$ = new yy.Splat($$[$0-2+1-1]); +case 67:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 68:this.$ = new yy.Value($$[$0-1+1-1]); +case 68:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); break; -case 69:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 69:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); break; -case 70:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); +case 70:this.$ = $$[$0-1+1-1]; break; case 71:this.$ = $$[$0-1+1-1]; break; -case 72:this.$ = $$[$0-1+1-1]; +case 72:this.$ = new yy.Value($$[$0-1+1-1]); break; case 73:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 74:this.$ = new yy.Value($$[$0-1+1-1]); +case 74:this.$ = $$[$0-1+1-1]; break; -case 75:this.$ = $$[$0-1+1-1]; +case 75:this.$ = new yy.Value($$[$0-1+1-1]); break; case 76:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 77:this.$ = new yy.Value($$[$0-1+1-1]); +case 77:this.$ = $$[$0-1+1-1]; break; -case 78:this.$ = $$[$0-1+1-1]; +case 78:this.$ = new yy.Accessor($$[$0-2+2-1]); break; -case 79:this.$ = new yy.Accessor($$[$0-2+2-1]); +case 79:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); break; -case 80:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); +case 80:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); break; -case 81:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); +case 81:this.$ = new yy.Accessor(new yy.Literal('prototype')); break; -case 82:this.$ = new yy.Accessor(new yy.Literal('prototype')); +case 82:this.$ = $$[$0-1+1-1]; break; -case 83:this.$ = $$[$0-1+1-1]; +case 83:this.$ = new yy.Index($$[$0-3+2-1]); break; -case 84:this.$ = new yy.Index($$[$0-3+2-1]); -break; -case 85:this.$ = yy.extend($$[$0-2+2-1], { +case 84:this.$ = yy.extend($$[$0-2+2-1], { soak: true }); break; -case 86:this.$ = yy.extend($$[$0-2+2-1], { +case 85:this.$ = yy.extend($$[$0-2+2-1], { proto: true }); break; -case 87:this.$ = new yy.Obj($$[$0-4+2-1]); +case 86:this.$ = new yy.Obj($$[$0-4+2-1]); break; -case 88:this.$ = []; +case 87:this.$ = []; break; -case 89:this.$ = [$$[$0-1+1-1]]; +case 88:this.$ = [$$[$0-1+1-1]]; break; -case 90:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 89:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 91:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +case 90:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); break; -case 92:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 91:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; -case 93:this.$ = new yy.Class($$[$0-2+2-1]); +case 92:this.$ = new yy.Class($$[$0-2+2-1]); break; -case 94:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); +case 93:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); break; -case 95:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); +case 94:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); break; -case 96:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 95:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 97:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); +case 96:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); break; -case 98:this.$ = new yy.Class(null, null, new yy.Expressions); +case 97:this.$ = new yy.Class(null, null, new yy.Expressions); break; -case 99:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); +case 98:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); break; -case 100:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); +case 99:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); break; -case 101:this.$ = $$[$0-1+1-1]; +case 100:this.$ = $$[$0-1+1-1]; break; -case 102:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); +case 101:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); break; -case 103:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); +case 102:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); break; -case 104:this.$ = []; +case 103:this.$ = []; break; -case 105:this.$ = [$$[$0-1+1-1]]; +case 104:this.$ = [$$[$0-1+1-1]]; break; -case 106:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 105:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 107:this.$ = $$[$0-3+2-1]; +case 106:this.$ = $$[$0-3+2-1]; break; -case 108:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); +case 107:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 109:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 108:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 110:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 109:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); break; -case 111:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); +case 110:this.$ = new yy.Call('super', $$[$0-2+2-1]); break; -case 112:this.$ = new yy.Call('super', $$[$0-2+2-1]); +case 111:this.$ = false; break; -case 113:this.$ = false; +case 112:this.$ = true; break; -case 114:this.$ = true; +case 113:this.$ = []; break; -case 115:this.$ = []; +case 114:this.$ = $$[$0-4+2-1]; break; -case 116:this.$ = $$[$0-4+2-1]; +case 115:this.$ = new yy.Value(new yy.Literal('this')); break; -case 117:this.$ = new yy.Value(new yy.Literal('this')); +case 116:this.$ = new yy.Value(new yy.Literal('this')); break; -case 118:this.$ = new yy.Value(new yy.Literal('this')); +case 117:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); break; -case 119:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); +case 118:this.$ = new yy.Arr([]); break; -case 120:this.$ = new yy.Arr([]); +case 119:this.$ = new yy.Arr($$[$0-4+2-1]); break; -case 121:this.$ = new yy.Arr($$[$0-4+2-1]); +case 120:this.$ = [$$[$0-1+1-1]]; break; -case 122:this.$ = [$$[$0-1+1-1]]; +case 121:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 123:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 122:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); break; -case 124:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +case 123:this.$ = $$[$0-4+2-1]; break; -case 125:this.$ = $$[$0-4+2-1]; +case 124:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; -case 126:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 125:this.$ = $$[$0-1+1-1]; +break; +case 126:this.$ = $$[$0-1+1-1]; break; case 127:this.$ = $$[$0-1+1-1]; break; -case 128:this.$ = $$[$0-1+1-1]; +case 128:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 129:this.$ = $$[$0-1+1-1]; +case 129:this.$ = new yy.Try($$[$0-2+2-1]); break; -case 130:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); +case 130:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); break; -case 131:this.$ = new yy.Try($$[$0-2+2-1]); +case 131:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); break; -case 132:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); +case 132:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); break; -case 133:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); +case 133:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 134:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); +case 134:this.$ = new yy.Throw($$[$0-2+2-1]); break; -case 135:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; +case 135:this.$ = new yy.Parens($$[$0-3+2-1]); break; -case 136:this.$ = new yy.Throw($$[$0-2+2-1]); +case 136:this.$ = new yy.While($$[$0-2+2-1]); break; -case 137:this.$ = new yy.Parens($$[$0-3+2-1]); -break; -case 138:this.$ = new yy.While($$[$0-2+2-1]); -break; -case 139:this.$ = new yy.While($$[$0-4+2-1], { +case 137:this.$ = new yy.While($$[$0-4+2-1], { guard: $$[$0-4+4-1] }); break; -case 140:this.$ = new yy.While($$[$0-2+2-1], { +case 138:this.$ = new yy.While($$[$0-2+2-1], { invert: true }); break; -case 141:this.$ = new yy.While($$[$0-4+2-1], { +case 139:this.$ = new yy.While($$[$0-4+2-1], { invert: true, guard: $$[$0-4+4-1] }); break; -case 142:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); +case 140:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); break; -case 143:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); +case 141:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); break; -case 144:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); +case 142:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); break; -case 145:this.$ = $$[$0-1+1-1]; +case 143:this.$ = $$[$0-1+1-1]; break; -case 146:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); +case 144:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); break; -case 147:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); +case 145:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); break; -case 148:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); +case 146:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 149:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); +case 147:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 150:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); +case 148:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); break; -case 151:this.$ = $$[$0-1+1-1]; +case 149:this.$ = $$[$0-1+1-1]; break; -case 152:this.$ = new yy.Value($$[$0-1+1-1]); +case 150:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 153:this.$ = new yy.Value($$[$0-1+1-1]); +case 151:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 154:this.$ = { +case 152:this.$ = { source: $$[$0-2+2-1] }; break; -case 155:this.$ = { +case 153:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 156:this.$ = { +case 154:this.$ = { source: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 157:this.$ = { +case 155:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 158:this.$ = { +case 156:this.$ = { object: true, source: $$[$0-2+2-1] }; break; -case 159:this.$ = { +case 157:this.$ = { object: true, source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 160:this.$ = { +case 158:this.$ = { to: $$[$0-2+2-1] }; break; -case 161:this.$ = { +case 159:this.$ = { to: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 162:this.$ = { +case 160:this.$ = { to: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 163:this.$ = { +case 161:this.$ = { to: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 164:this.$ = yy.extend($$[$0-3+3-1], { +case 162:this.$ = yy.extend($$[$0-3+3-1], { name: $$[$0-3+2-1] }); break; -case 165:this.$ = yy.extend($$[$0-5+5-1], { +case 163:this.$ = yy.extend($$[$0-5+5-1], { name: $$[$0-5+2-1], index: $$[$0-5+4-1] }); break; -case 166:this.$ = yy.extend($$[$0-3+3-1], { +case 164:this.$ = yy.extend($$[$0-3+3-1], { index: $$[$0-3+2-1] }); break; -case 167:this.$ = yy.extend($$[$0-5+5-1], { +case 165:this.$ = yy.extend($$[$0-5+5-1], { index: $$[$0-5+2-1], name: $$[$0-5+4-1] }); break; -case 168:this.$ = yy.extend($$[$0-4+4-1], { +case 166:this.$ = yy.extend($$[$0-4+4-1], { raw: true, index: $$[$0-4+3-1] }); break; -case 169:this.$ = yy.extend($$[$0-6+6-1], { +case 167:this.$ = yy.extend($$[$0-6+6-1], { raw: true, index: $$[$0-6+3-1], name: $$[$0-6+5-1] }); break; -case 170:this.$ = yy.extend($$[$0-5+5-1], { +case 168:this.$ = yy.extend($$[$0-5+5-1], { index: $$[$0-5+2-1], from: $$[$0-5+4-1] }); break; -case 171:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); +case 169:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); break; -case 172:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 170:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 173:this.$ = new yy.Switch(null, $$[$0-4+3-1]); +case 171:this.$ = new yy.Switch(null, $$[$0-4+3-1]); break; -case 174:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); +case 172:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); break; -case 175:this.$ = $$[$0-1+1-1]; +case 173:this.$ = $$[$0-1+1-1]; break; -case 176:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); +case 174:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); break; -case 177:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; +case 175:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; break; -case 178:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; +case 176:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; break; -case 179:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); +case 177:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 180:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { +case 178:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { invert: true }); break; -case 181:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); +case 179:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); break; -case 182:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); +case 180:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); break; -case 183:this.$ = $$[$0-1+1-1]; +case 181:this.$ = $$[$0-1+1-1]; +break; +case 182:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); +break; +case 183:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); break; case 184:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true + statement: true, + invert: true }); break; case 185:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true - }); -break; -case 186:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 187:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true, - invert: true - }); +case 186:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 188:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); +case 187:this.$ = new yy.Op('-', $$[$0-2+2-1]); break; -case 189:this.$ = new yy.Op('-', $$[$0-2+2-1]); +case 188:this.$ = new yy.Op('+', $$[$0-2+2-1]); break; -case 190:this.$ = new yy.Op('+', $$[$0-2+2-1]); +case 189:this.$ = new yy.Op('--', $$[$0-2+2-1]); break; -case 191:this.$ = new yy.Op('--', $$[$0-2+2-1]); +case 190:this.$ = new yy.Op('++', $$[$0-2+2-1]); break; -case 192:this.$ = new yy.Op('++', $$[$0-2+2-1]); +case 191:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); break; -case 193:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); +case 192:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); break; -case 194:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); +case 193:this.$ = new yy.Existence($$[$0-2+1-1]); break; -case 195:this.$ = new yy.Existence($$[$0-2+1-1]); +case 194:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 196:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 197:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 196:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 197:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; case 198:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; case 199:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 200:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); -break; -case 201:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); -break; -case 202:this.$ = (function () { +case 200:this.$ = (function () { if ($$[$0-3+2-1].charAt(0) === '!') { return new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert(); } else { @@ -493,14 +489,16 @@ case 202:this.$ = (function () { } }()); break; -case 203:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 201:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 204:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); +case 202:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); +break; +case 203:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[3]},{"1":[2,2],"15":74,"47":[1,49]},{"1":[2,3],"4":[1,75]},{"4":[1,76]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":77,"7":5,"8":7,"9":8,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"29":[1,78],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,8],"4":[2,8],"29":[2,8],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,9],"4":[2,9],"29":[2,9],"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"50":[2,16],"55":[2,16],"58":[2,16],"63":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,16],"71":[1,103],"72":[1,104],"75":[2,16],"80":95,"83":[1,97],"84":[2,113],"85":[2,16],"90":[2,16],"99":[2,16],"101":[2,16],"102":[2,16],"103":[2,16],"110":[2,16],"114":[2,16],"115":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"50":[2,17],"55":[2,17],"58":[2,17],"63":106,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,17],"71":[1,103],"72":[1,104],"75":[2,17],"80":105,"83":[1,97],"84":[2,113],"85":[2,17],"90":[2,17],"99":[2,17],"101":[2,17],"102":[2,17],"103":[2,17],"110":[2,17],"114":[2,17],"115":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"50":[2,18],"55":[2,18],"58":[2,18],"70":[2,18],"75":[2,18],"85":[2,18],"90":[2,18],"99":[2,18],"101":[2,18],"102":[2,18],"103":[2,18],"110":[2,18],"114":[2,18],"115":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"50":[2,19],"55":[2,19],"58":[2,19],"70":[2,19],"75":[2,19],"85":[2,19],"90":[2,19],"99":[2,19],"101":[2,19],"102":[2,19],"103":[2,19],"110":[2,19],"114":[2,19],"115":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"50":[2,20],"55":[2,20],"58":[2,20],"70":[2,20],"75":[2,20],"85":[2,20],"90":[2,20],"99":[2,20],"101":[2,20],"102":[2,20],"103":[2,20],"110":[2,20],"114":[2,20],"115":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"50":[2,21],"55":[2,21],"58":[2,21],"70":[2,21],"75":[2,21],"85":[2,21],"90":[2,21],"99":[2,21],"101":[2,21],"102":[2,21],"103":[2,21],"110":[2,21],"114":[2,21],"115":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"50":[2,22],"55":[2,22],"58":[2,22],"70":[2,22],"75":[2,22],"85":[2,22],"90":[2,22],"99":[2,22],"101":[2,22],"102":[2,22],"103":[2,22],"110":[2,22],"114":[2,22],"115":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"50":[2,23],"55":[2,23],"58":[2,23],"70":[2,23],"75":[2,23],"85":[2,23],"90":[2,23],"99":[2,23],"101":[2,23],"102":[2,23],"103":[2,23],"110":[2,23],"114":[2,23],"115":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"50":[2,24],"55":[2,24],"58":[2,24],"70":[2,24],"75":[2,24],"85":[2,24],"90":[2,24],"99":[2,24],"101":[2,24],"102":[2,24],"103":[2,24],"110":[2,24],"114":[2,24],"115":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"50":[2,25],"55":[2,25],"58":[2,25],"70":[2,25],"75":[2,25],"85":[2,25],"90":[2,25],"99":[2,25],"101":[2,25],"102":[2,25],"103":[2,25],"110":[2,25],"114":[2,25],"115":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"50":[2,26],"55":[2,26],"58":[2,26],"70":[2,26],"75":[2,26],"85":[2,26],"90":[2,26],"99":[2,26],"101":[2,26],"102":[2,26],"103":[2,26],"110":[2,26],"114":[2,26],"115":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"50":[2,27],"55":[2,27],"58":[2,27],"70":[2,27],"75":[2,27],"85":[2,27],"90":[2,27],"99":[2,27],"101":[2,27],"102":[2,27],"103":[2,27],"110":[2,27],"114":[2,27],"115":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"101":[2,10],"103":[2,10],"115":[2,10],"126":[2,10],"127":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"101":[2,11],"103":[2,11],"115":[2,11],"126":[2,11],"127":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"101":[2,12],"103":[2,12],"115":[2,12],"126":[2,12],"127":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"101":[2,13],"103":[2,13],"115":[2,13],"126":[2,13],"127":[2,13]},{"1":[2,14],"4":[2,14],"29":[2,14],"101":[2,14],"103":[2,14],"115":[2,14],"126":[2,14],"127":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"101":[2,15],"103":[2,15],"115":[2,15],"126":[2,15],"127":[2,15]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"40":[1,107],"50":[2,75],"55":[2,75],"58":[2,75],"65":[2,75],"66":[2,75],"67":[2,75],"69":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"75":[2,75],"83":[2,75],"84":[2,75],"85":[2,75],"90":[2,75],"99":[2,75],"101":[2,75],"102":[2,75],"103":[2,75],"110":[2,75],"114":[2,75],"115":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"50":[2,76],"55":[2,76],"58":[2,76],"65":[2,76],"66":[2,76],"67":[2,76],"69":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"75":[2,76],"83":[2,76],"84":[2,76],"85":[2,76],"90":[2,76],"99":[2,76],"101":[2,76],"102":[2,76],"103":[2,76],"110":[2,76],"114":[2,76],"115":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"50":[2,77],"55":[2,77],"58":[2,77],"65":[2,77],"66":[2,77],"67":[2,77],"69":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"75":[2,77],"83":[2,77],"84":[2,77],"85":[2,77],"90":[2,77],"99":[2,77],"101":[2,77],"102":[2,77],"103":[2,77],"110":[2,77],"114":[2,77],"115":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"50":[2,78],"55":[2,78],"58":[2,78],"65":[2,78],"66":[2,78],"67":[2,78],"69":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"75":[2,78],"83":[2,78],"84":[2,78],"85":[2,78],"90":[2,78],"99":[2,78],"101":[2,78],"102":[2,78],"103":[2,78],"110":[2,78],"114":[2,78],"115":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"50":[2,111],"55":[2,111],"58":[2,111],"65":[2,111],"66":[2,111],"67":[2,111],"69":[2,111],"70":[2,111],"71":[2,111],"72":[2,111],"75":[2,111],"81":108,"83":[2,111],"84":[1,109],"85":[2,111],"90":[2,111],"99":[2,111],"101":[2,111],"102":[2,111],"103":[2,111],"110":[2,111],"114":[2,111],"115":[2,111],"126":[2,111],"127":[2,111],"129":[2,111],"130":[2,111],"133":[2,111],"134":[2,111],"135":[2,111],"136":[2,111],"137":[2,111],"138":[2,111]},{"30":113,"31":[1,73],"44":114,"49":110,"50":[2,57],"55":[2,57],"56":111,"57":112,"59":115,"60":116,"73":[1,70],"88":[1,117],"89":[1,69]},{"4":[1,119],"6":118,"28":[1,6]},{"8":120,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":122,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":123,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"16":125,"17":126,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"59":50,"60":51,"62":124,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"16":125,"17":126,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"59":50,"60":51,"62":128,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"40":[2,72],"50":[2,72],"55":[2,72],"58":[2,72],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"75":[2,72],"77":[1,132],"83":[2,72],"84":[2,72],"85":[2,72],"90":[2,72],"99":[2,72],"101":[2,72],"102":[2,72],"103":[2,72],"110":[2,72],"114":[2,72],"115":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"131":[1,129],"132":[1,130],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[1,131]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"50":[2,183],"55":[2,183],"58":[2,183],"70":[2,183],"75":[2,183],"85":[2,183],"90":[2,183],"99":[2,183],"101":[2,183],"102":[2,183],"103":[2,183],"110":[2,183],"114":[2,183],"115":[2,183],"120":[1,133],"126":[2,183],"127":[2,183],"129":[2,183],"130":[2,183],"133":[2,183],"134":[2,183],"135":[2,183],"136":[2,183],"137":[2,183],"138":[2,183]},{"4":[1,119],"6":134,"28":[1,6]},{"4":[1,119],"6":135,"28":[1,6]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"50":[2,145],"55":[2,145],"58":[2,145],"70":[2,145],"75":[2,145],"85":[2,145],"90":[2,145],"99":[2,145],"101":[2,145],"102":[2,145],"103":[2,145],"110":[2,145],"114":[2,145],"115":[2,145],"126":[2,145],"127":[2,145],"129":[2,145],"130":[2,145],"133":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145],"138":[2,145]},{"4":[1,119],"6":136,"28":[1,6]},{"8":137,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,138],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,98],"4":[2,98],"16":125,"17":126,"28":[1,140],"29":[2,98],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"50":[2,98],"55":[2,98],"58":[2,98],"59":50,"60":51,"62":139,"64":30,"70":[2,98],"73":[1,70],"75":[2,98],"77":[1,141],"82":[1,31],"85":[2,98],"87":[1,57],"88":[1,58],"89":[1,69],"90":[2,98],"98":[1,56],"99":[2,98],"101":[2,98],"102":[2,98],"103":[2,98],"110":[2,98],"114":[2,98],"115":[2,98],"126":[2,98],"127":[2,98],"129":[2,98],"130":[2,98],"133":[2,98],"134":[2,98],"135":[2,98],"136":[2,98],"137":[2,98],"138":[2,98]},{"1":[2,49],"4":[2,49],"8":142,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"29":[2,49],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[2,49],"103":[2,49],"104":43,"105":[1,67],"106":44,"115":[2,49],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"126":[2,49],"127":[2,49],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":143,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"50":[2,50],"55":[2,50],"58":[2,50],"70":[2,50],"75":[2,50],"85":[2,50],"90":[2,50],"95":[2,50],"96":[2,50],"99":[2,50],"101":[2,50],"102":[2,50],"103":[2,50],"110":[2,50],"114":[2,50],"115":[2,50],"120":[2,50],"122":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"133":[2,50],"134":[2,50],"135":[2,50],"136":[2,50],"137":[2,50],"138":[2,50]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"40":[2,73],"50":[2,73],"55":[2,73],"58":[2,73],"65":[2,73],"66":[2,73],"67":[2,73],"69":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"75":[2,73],"83":[2,73],"84":[2,73],"85":[2,73],"90":[2,73],"99":[2,73],"101":[2,73],"102":[2,73],"103":[2,73],"110":[2,73],"114":[2,73],"115":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"40":[2,74],"50":[2,74],"55":[2,74],"58":[2,74],"65":[2,74],"66":[2,74],"67":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"75":[2,74],"83":[2,74],"84":[2,74],"85":[2,74],"90":[2,74],"99":[2,74],"101":[2,74],"102":[2,74],"103":[2,74],"110":[2,74],"114":[2,74],"115":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"50":[2,34],"55":[2,34],"58":[2,34],"65":[2,34],"66":[2,34],"67":[2,34],"69":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"75":[2,34],"83":[2,34],"84":[2,34],"85":[2,34],"90":[2,34],"99":[2,34],"101":[2,34],"102":[2,34],"103":[2,34],"110":[2,34],"114":[2,34],"115":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"50":[2,35],"55":[2,35],"58":[2,35],"65":[2,35],"66":[2,35],"67":[2,35],"69":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"75":[2,35],"83":[2,35],"84":[2,35],"85":[2,35],"90":[2,35],"99":[2,35],"101":[2,35],"102":[2,35],"103":[2,35],"110":[2,35],"114":[2,35],"115":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"50":[2,36],"55":[2,36],"58":[2,36],"65":[2,36],"66":[2,36],"67":[2,36],"69":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"75":[2,36],"83":[2,36],"84":[2,36],"85":[2,36],"90":[2,36],"99":[2,36],"101":[2,36],"102":[2,36],"103":[2,36],"110":[2,36],"114":[2,36],"115":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"50":[2,37],"55":[2,37],"58":[2,37],"65":[2,37],"66":[2,37],"67":[2,37],"69":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"75":[2,37],"83":[2,37],"84":[2,37],"85":[2,37],"90":[2,37],"99":[2,37],"101":[2,37],"102":[2,37],"103":[2,37],"110":[2,37],"114":[2,37],"115":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37]},{"8":144,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"50":[2,117],"55":[2,117],"58":[2,117],"65":[2,117],"66":[2,117],"67":[2,117],"69":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"75":[2,117],"83":[2,117],"84":[2,117],"85":[2,117],"90":[2,117],"99":[2,117],"101":[2,117],"102":[2,117],"103":[2,117],"110":[2,117],"114":[2,117],"115":[2,117],"126":[2,117],"127":[2,117],"129":[2,117],"130":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117]},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"30":145,"31":[1,73],"50":[2,118],"55":[2,118],"58":[2,118],"65":[2,118],"66":[2,118],"67":[2,118],"69":[2,118],"70":[2,118],"71":[2,118],"72":[2,118],"75":[2,118],"83":[2,118],"84":[2,118],"85":[2,118],"90":[2,118],"99":[2,118],"101":[2,118],"102":[2,118],"103":[2,118],"110":[2,118],"114":[2,118],"115":[2,118],"126":[2,118],"127":[2,118],"129":[2,118],"130":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118]},{"4":[2,53],"28":[2,53]},{"4":[2,54],"28":[2,54]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"40":[2,68],"50":[2,68],"55":[2,68],"58":[2,68],"65":[2,68],"66":[2,68],"67":[2,68],"69":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"75":[2,68],"77":[2,68],"83":[2,68],"84":[2,68],"85":[2,68],"90":[2,68],"99":[2,68],"101":[2,68],"102":[2,68],"103":[2,68],"110":[2,68],"114":[2,68],"115":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"40":[2,71],"50":[2,71],"55":[2,71],"58":[2,71],"65":[2,71],"66":[2,71],"67":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"75":[2,71],"77":[2,71],"83":[2,71],"84":[2,71],"85":[2,71],"90":[2,71],"99":[2,71],"101":[2,71],"102":[2,71],"103":[2,71],"110":[2,71],"114":[2,71],"115":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"131":[2,71],"132":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71]},{"8":146,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":147,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":148,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":149,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,119],"6":150,"8":151,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"30":153,"31":[1,73],"59":155,"60":156,"73":[1,70],"89":[1,69],"107":152,"116":[1,154]},{"8":161,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,160],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":158,"87":[1,57],"88":[1,58],"89":[1,69],"90":[1,157],"91":159,"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,88],"15":167,"28":[2,88],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":164,"42":165,"44":166,"45":170,"47":[1,49],"55":[2,88],"74":163,"75":[2,88],"88":[1,117],"98":[1,56]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"43":[2,32],"50":[2,32],"55":[2,32],"58":[2,32],"65":[2,32],"66":[2,32],"67":[2,32],"69":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"75":[2,32],"83":[2,32],"84":[2,32],"85":[2,32],"90":[2,32],"99":[2,32],"101":[2,32],"102":[2,32],"103":[2,32],"110":[2,32],"114":[2,32],"115":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"43":[2,33],"50":[2,33],"55":[2,33],"58":[2,33],"65":[2,33],"66":[2,33],"67":[2,33],"69":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"75":[2,33],"83":[2,33],"84":[2,33],"85":[2,33],"90":[2,33],"99":[2,33],"101":[2,33],"102":[2,33],"103":[2,33],"110":[2,33],"114":[2,33],"115":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"40":[2,31],"43":[2,31],"50":[2,31],"55":[2,31],"58":[2,31],"65":[2,31],"66":[2,31],"67":[2,31],"69":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"75":[2,31],"77":[2,31],"83":[2,31],"84":[2,31],"85":[2,31],"90":[2,31],"99":[2,31],"101":[2,31],"102":[2,31],"103":[2,31],"109":[2,31],"110":[2,31],"112":[2,31],"114":[2,31],"115":[2,31],"117":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"50":[2,30],"55":[2,30],"58":[2,30],"70":[2,30],"75":[2,30],"85":[2,30],"90":[2,30],"95":[2,30],"96":[2,30],"99":[2,30],"101":[2,30],"102":[2,30],"103":[2,30],"110":[2,30],"114":[2,30],"115":[2,30],"120":[2,30],"122":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30]},{"1":[2,7],"4":[2,7],"7":171,"8":7,"9":8,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"29":[2,7],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,4]},{"4":[1,75],"29":[1,172]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"50":[2,29],"55":[2,29],"58":[2,29],"70":[2,29],"75":[2,29],"85":[2,29],"90":[2,29],"95":[2,29],"96":[2,29],"99":[2,29],"101":[2,29],"102":[2,29],"103":[2,29],"110":[2,29],"114":[2,29],"115":[2,29],"120":[2,29],"122":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"50":[2,195],"55":[2,195],"58":[2,195],"70":[2,195],"75":[2,195],"85":[2,195],"90":[2,195],"99":[2,195],"101":[2,195],"102":[2,195],"103":[2,195],"110":[2,195],"114":[2,195],"115":[2,195],"126":[2,195],"127":[2,195],"129":[2,195],"130":[2,195],"133":[2,195],"134":[2,195],"135":[2,195],"136":[2,195],"137":[2,195],"138":[2,195]},{"8":173,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":174,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":175,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":176,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":177,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":178,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":179,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":180,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":181,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,144],"4":[2,144],"28":[2,144],"29":[2,144],"50":[2,144],"55":[2,144],"58":[2,144],"70":[2,144],"75":[2,144],"85":[2,144],"90":[2,144],"99":[2,144],"101":[2,144],"102":[2,144],"103":[2,144],"110":[2,144],"114":[2,144],"115":[2,144],"126":[2,144],"127":[2,144],"129":[2,144],"130":[2,144],"133":[2,144],"134":[2,144],"135":[2,144],"136":[2,144],"137":[2,144],"138":[2,144]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"50":[2,149],"55":[2,149],"58":[2,149],"70":[2,149],"75":[2,149],"85":[2,149],"90":[2,149],"99":[2,149],"101":[2,149],"102":[2,149],"103":[2,149],"110":[2,149],"114":[2,149],"115":[2,149],"126":[2,149],"127":[2,149],"129":[2,149],"130":[2,149],"133":[2,149],"134":[2,149],"135":[2,149],"136":[2,149],"137":[2,149],"138":[2,149]},{"8":182,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":183,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"50":[2,143],"55":[2,143],"58":[2,143],"70":[2,143],"75":[2,143],"85":[2,143],"90":[2,143],"99":[2,143],"101":[2,143],"102":[2,143],"103":[2,143],"110":[2,143],"114":[2,143],"115":[2,143],"126":[2,143],"127":[2,143],"129":[2,143],"130":[2,143],"133":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143],"138":[2,143]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"50":[2,148],"55":[2,148],"58":[2,148],"70":[2,148],"75":[2,148],"85":[2,148],"90":[2,148],"99":[2,148],"101":[2,148],"102":[2,148],"103":[2,148],"110":[2,148],"114":[2,148],"115":[2,148],"126":[2,148],"127":[2,148],"129":[2,148],"130":[2,148],"133":[2,148],"134":[2,148],"135":[2,148],"136":[2,148],"137":[2,148],"138":[2,148]},{"81":184,"84":[1,109]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"40":[2,69],"50":[2,69],"55":[2,69],"58":[2,69],"65":[2,69],"66":[2,69],"67":[2,69],"69":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"75":[2,69],"77":[2,69],"83":[2,69],"84":[2,69],"85":[2,69],"90":[2,69],"99":[2,69],"101":[2,69],"102":[2,69],"103":[2,69],"110":[2,69],"114":[2,69],"115":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69]},{"84":[2,114]},{"30":185,"31":[1,73]},{"30":186,"31":[1,73]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"30":187,"31":[1,73],"40":[2,82],"50":[2,82],"55":[2,82],"58":[2,82],"65":[2,82],"66":[2,82],"67":[2,82],"69":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"75":[2,82],"77":[2,82],"83":[2,82],"84":[2,82],"85":[2,82],"90":[2,82],"99":[2,82],"101":[2,82],"102":[2,82],"103":[2,82],"110":[2,82],"114":[2,82],"115":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"40":[2,83],"50":[2,83],"55":[2,83],"58":[2,83],"65":[2,83],"66":[2,83],"67":[2,83],"69":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"75":[2,83],"77":[2,83],"83":[2,83],"84":[2,83],"85":[2,83],"90":[2,83],"99":[2,83],"101":[2,83],"102":[2,83],"103":[2,83],"110":[2,83],"114":[2,83],"115":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83]},{"8":188,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"68":189,"69":[1,102],"71":[1,103],"72":[1,104]},{"68":190,"69":[1,102],"71":[1,103],"72":[1,104]},{"81":191,"84":[1,109]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"40":[2,70],"50":[2,70],"55":[2,70],"58":[2,70],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"75":[2,70],"77":[2,70],"83":[2,70],"84":[2,70],"85":[2,70],"90":[2,70],"99":[2,70],"101":[2,70],"102":[2,70],"103":[2,70],"110":[2,70],"114":[2,70],"115":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70]},{"8":192,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,193],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"50":[2,112],"55":[2,112],"58":[2,112],"65":[2,112],"66":[2,112],"67":[2,112],"69":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"75":[2,112],"83":[2,112],"84":[2,112],"85":[2,112],"90":[2,112],"99":[2,112],"101":[2,112],"102":[2,112],"103":[2,112],"110":[2,112],"114":[2,112],"115":[2,112],"126":[2,112],"127":[2,112],"129":[2,112],"130":[2,112],"133":[2,112],"134":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112]},{"8":161,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,160],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"85":[1,194],"86":195,"87":[1,57],"88":[1,58],"89":[1,69],"91":159,"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"50":[1,196],"55":[1,197]},{"50":[2,58],"55":[2,58]},{"40":[1,199],"50":[2,60],"55":[2,60],"58":[1,198]},{"40":[2,63],"50":[2,63],"55":[2,63],"58":[2,63]},{"40":[2,64],"50":[2,64],"55":[2,64],"58":[2,64]},{"40":[2,65],"50":[2,65],"55":[2,65],"58":[2,65]},{"40":[2,66],"50":[2,66],"55":[2,66],"58":[2,66]},{"30":145,"31":[1,73]},{"1":[2,52],"4":[2,52],"28":[2,52],"29":[2,52],"50":[2,52],"55":[2,52],"58":[2,52],"70":[2,52],"75":[2,52],"85":[2,52],"90":[2,52],"99":[2,52],"101":[2,52],"102":[2,52],"103":[2,52],"110":[2,52],"114":[2,52],"115":[2,52],"126":[2,52],"127":[2,52],"129":[2,52],"130":[2,52],"133":[2,52],"134":[2,52],"135":[2,52],"136":[2,52],"137":[2,52],"138":[2,52]},{"15":74,"47":[1,49]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"50":[2,188],"55":[2,188],"58":[2,188],"70":[2,188],"75":[2,188],"85":[2,188],"90":[2,188],"99":[2,188],"100":89,"101":[2,188],"102":[2,188],"103":[2,188],"106":90,"110":[2,188],"114":[2,188],"115":[2,188],"126":[2,188],"127":[2,188],"129":[2,188],"130":[2,188],"133":[1,79],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188],"138":[2,188]},{"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"50":[2,189],"55":[2,189],"58":[2,189],"70":[2,189],"75":[2,189],"85":[2,189],"90":[2,189],"99":[2,189],"100":89,"101":[2,189],"102":[2,189],"103":[2,189],"106":90,"110":[2,189],"114":[2,189],"115":[2,189],"126":[2,189],"127":[2,189],"129":[2,189],"130":[2,189],"133":[1,79],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189],"138":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"50":[2,190],"55":[2,190],"58":[2,190],"70":[2,190],"75":[2,190],"85":[2,190],"90":[2,190],"99":[2,190],"100":89,"101":[2,190],"102":[2,190],"103":[2,190],"106":90,"110":[2,190],"114":[2,190],"115":[2,190],"126":[2,190],"127":[2,190],"129":[2,190],"130":[2,190],"133":[1,79],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190],"138":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"50":[2,191],"55":[2,191],"58":[2,191],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,191],"71":[2,72],"72":[2,72],"75":[2,191],"83":[2,72],"84":[2,72],"85":[2,191],"90":[2,191],"99":[2,191],"101":[2,191],"102":[2,191],"103":[2,191],"110":[2,191],"114":[2,191],"115":[2,191],"126":[2,191],"127":[2,191],"129":[2,191],"130":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191],"138":[2,191]},{"63":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"71":[1,103],"72":[1,104],"80":95,"83":[1,97],"84":[2,113]},{"63":106,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"71":[1,103],"72":[1,104],"80":105,"83":[1,97],"84":[2,113]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"50":[2,75],"55":[2,75],"58":[2,75],"65":[2,75],"66":[2,75],"67":[2,75],"69":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"75":[2,75],"83":[2,75],"84":[2,75],"85":[2,75],"90":[2,75],"99":[2,75],"101":[2,75],"102":[2,75],"103":[2,75],"110":[2,75],"114":[2,75],"115":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"50":[2,192],"55":[2,192],"58":[2,192],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,192],"71":[2,72],"72":[2,72],"75":[2,192],"83":[2,72],"84":[2,72],"85":[2,192],"90":[2,192],"99":[2,192],"101":[2,192],"102":[2,192],"103":[2,192],"110":[2,192],"114":[2,192],"115":[2,192],"126":[2,192],"127":[2,192],"129":[2,192],"130":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192],"138":[2,192]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"50":[2,193],"55":[2,193],"58":[2,193],"70":[2,193],"75":[2,193],"85":[2,193],"90":[2,193],"99":[2,193],"101":[2,193],"102":[2,193],"103":[2,193],"110":[2,193],"114":[2,193],"115":[2,193],"126":[2,193],"127":[2,193],"129":[2,193],"130":[2,193],"133":[2,193],"134":[2,193],"135":[2,193],"136":[2,193],"137":[2,193],"138":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"50":[2,194],"55":[2,194],"58":[2,194],"70":[2,194],"75":[2,194],"85":[2,194],"90":[2,194],"99":[2,194],"101":[2,194],"102":[2,194],"103":[2,194],"110":[2,194],"114":[2,194],"115":[2,194],"126":[2,194],"127":[2,194],"129":[2,194],"130":[2,194],"133":[2,194],"134":[2,194],"135":[2,194],"136":[2,194],"137":[2,194],"138":[2,194]},{"8":200,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,201],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"16":202,"17":126,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"59":50,"60":51,"62":203,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"4":[1,119],"6":205,"28":[1,6],"124":[1,204]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"50":[2,131],"55":[2,131],"58":[2,131],"70":[2,131],"75":[2,131],"85":[2,131],"90":[2,131],"94":206,"95":[1,207],"96":[1,208],"99":[2,131],"101":[2,131],"102":[2,131],"103":[2,131],"110":[2,131],"114":[2,131],"115":[2,131],"126":[2,131],"127":[2,131],"129":[2,131],"130":[2,131],"133":[2,131],"134":[2,131],"135":[2,131],"136":[2,131],"137":[2,131],"138":[2,131]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"50":[2,142],"55":[2,142],"58":[2,142],"70":[2,142],"75":[2,142],"85":[2,142],"90":[2,142],"99":[2,142],"101":[2,142],"102":[2,142],"103":[2,142],"110":[2,142],"114":[2,142],"115":[2,142],"126":[2,142],"127":[2,142],"129":[2,142],"130":[2,142],"133":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142],"138":[2,142]},{"1":[2,150],"4":[2,150],"28":[2,150],"29":[2,150],"50":[2,150],"55":[2,150],"58":[2,150],"70":[2,150],"75":[2,150],"85":[2,150],"90":[2,150],"99":[2,150],"101":[2,150],"102":[2,150],"103":[2,150],"110":[2,150],"114":[2,150],"115":[2,150],"126":[2,150],"127":[2,150],"129":[2,150],"130":[2,150],"133":[2,150],"134":[2,150],"135":[2,150],"136":[2,150],"137":[2,150],"138":[2,150]},{"28":[1,209],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"119":210,"121":211,"122":[1,212]},{"1":[2,93],"4":[2,93],"28":[1,214],"29":[2,93],"50":[2,93],"55":[2,93],"58":[2,93],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,93],"71":[2,72],"72":[2,72],"75":[2,93],"77":[1,213],"83":[2,72],"84":[2,72],"85":[2,93],"90":[2,93],"99":[2,93],"101":[2,93],"102":[2,93],"103":[2,93],"110":[2,93],"114":[2,93],"115":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93],"138":[2,93]},{"4":[2,104],"15":167,"29":[2,104],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,49],"73":[1,217],"78":215,"79":216,"88":[1,117],"98":[1,56]},{"16":220,"17":126,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"59":50,"60":51,"62":203,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"1":[2,48],"4":[2,48],"29":[2,48],"100":89,"101":[2,48],"103":[2,48],"106":90,"115":[2,48],"126":[2,48],"127":[2,48],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,136],"4":[2,136],"29":[2,136],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[2,136],"127":[2,136],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"99":[1,221],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,119],"4":[2,119],"28":[2,119],"29":[2,119],"40":[2,119],"43":[2,119],"50":[2,119],"55":[2,119],"58":[2,119],"65":[2,119],"66":[2,119],"67":[2,119],"69":[2,119],"70":[2,119],"71":[2,119],"72":[2,119],"75":[2,119],"77":[2,119],"83":[2,119],"84":[2,119],"85":[2,119],"90":[2,119],"99":[2,119],"101":[2,119],"102":[2,119],"103":[2,119],"110":[2,119],"114":[2,119],"115":[2,119],"126":[2,119],"127":[2,119],"129":[2,119],"130":[2,119],"131":[2,119],"132":[2,119],"133":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119],"138":[2,119],"139":[2,119]},{"4":[1,119],"6":222,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,119],"6":223,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"50":[2,138],"55":[2,138],"58":[2,138],"70":[2,138],"75":[2,138],"85":[2,138],"90":[2,138],"99":[2,138],"100":89,"101":[1,65],"102":[1,224],"103":[1,66],"106":90,"110":[2,138],"114":[2,138],"115":[1,68],"126":[2,138],"127":[2,138],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"50":[2,140],"55":[2,140],"58":[2,140],"70":[2,140],"75":[2,140],"85":[2,140],"90":[2,140],"99":[2,140],"100":89,"101":[1,65],"102":[1,225],"103":[1,66],"106":90,"110":[2,140],"114":[2,140],"115":[1,68],"126":[2,140],"127":[2,140],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"50":[2,146],"55":[2,146],"58":[2,146],"70":[2,146],"75":[2,146],"85":[2,146],"90":[2,146],"99":[2,146],"101":[2,146],"102":[2,146],"103":[2,146],"110":[2,146],"114":[2,146],"115":[2,146],"126":[2,146],"127":[2,146],"129":[2,146],"130":[2,146],"133":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"50":[2,147],"55":[2,147],"58":[2,147],"70":[2,147],"75":[2,147],"85":[2,147],"90":[2,147],"99":[2,147],"100":89,"101":[1,65],"102":[2,147],"103":[1,66],"106":90,"110":[2,147],"114":[2,147],"115":[1,68],"126":[2,147],"127":[2,147],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"55":[1,227],"108":226,"109":[1,228]},{"55":[2,151],"109":[2,151],"111":229,"112":[1,231],"117":[1,230]},{"30":232,"31":[1,73]},{"55":[2,152],"109":[2,152],"112":[2,152]},{"55":[2,153],"109":[2,153],"112":[2,153]},{"1":[2,120],"4":[2,120],"28":[2,120],"29":[2,120],"40":[2,120],"50":[2,120],"55":[2,120],"58":[2,120],"65":[2,120],"66":[2,120],"67":[2,120],"69":[2,120],"70":[2,120],"71":[2,120],"72":[2,120],"75":[2,120],"83":[2,120],"84":[2,120],"85":[2,120],"90":[2,120],"99":[2,120],"101":[2,120],"102":[2,120],"103":[2,120],"109":[2,120],"110":[2,120],"112":[2,120],"114":[2,120],"115":[2,120],"126":[2,120],"127":[2,120],"129":[2,120],"130":[2,120],"133":[2,120],"134":[2,120],"135":[2,120],"136":[2,120],"137":[2,120],"138":[2,120]},{"4":[2,55],"28":[2,55],"54":233,"55":[1,234],"90":[2,55]},{"4":[2,122],"28":[2,122],"29":[2,122],"55":[2,122],"85":[2,122],"90":[2,122]},{"8":161,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,160],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":235,"87":[1,57],"88":[1,58],"89":[1,69],"91":159,"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,127],"28":[2,127],"29":[2,127],"55":[2,127],"58":[1,236],"85":[2,127],"90":[2,127],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[2,128],"28":[2,128],"29":[2,128],"55":[2,128],"85":[2,128],"90":[2,128]},{"4":[2,55],"28":[2,55],"54":237,"55":[1,238],"75":[2,55]},{"4":[2,89],"28":[2,89],"29":[2,89],"55":[2,89],"75":[2,89]},{"4":[2,40],"28":[2,40],"29":[2,40],"43":[1,239],"55":[2,40],"75":[2,40]},{"4":[2,43],"28":[2,43],"29":[2,43],"55":[2,43],"75":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"55":[2,44],"75":[2,44]},{"4":[2,45],"28":[2,45],"29":[2,45],"43":[2,45],"55":[2,45],"75":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"43":[2,46],"55":[2,46],"75":[2,46]},{"4":[2,47],"28":[2,47],"29":[2,47],"43":[2,47],"55":[2,47],"75":[2,47]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"50":[2,28],"55":[2,28],"58":[2,28],"70":[2,28],"75":[2,28],"85":[2,28],"90":[2,28],"95":[2,28],"96":[2,28],"99":[2,28],"101":[2,28],"102":[2,28],"103":[2,28],"110":[2,28],"114":[2,28],"115":[2,28],"120":[2,28],"122":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"50":[2,196],"55":[2,196],"58":[2,196],"70":[2,196],"75":[2,196],"85":[2,196],"90":[2,196],"99":[2,196],"100":89,"101":[2,196],"102":[2,196],"103":[2,196],"106":90,"110":[2,196],"114":[2,196],"115":[2,196],"126":[2,196],"127":[2,196],"129":[2,196],"130":[2,196],"133":[1,79],"134":[1,82],"135":[2,196],"136":[2,196],"137":[2,196],"138":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"50":[2,197],"55":[2,197],"58":[2,197],"70":[2,197],"75":[2,197],"85":[2,197],"90":[2,197],"99":[2,197],"100":89,"101":[2,197],"102":[2,197],"103":[2,197],"106":90,"110":[2,197],"114":[2,197],"115":[2,197],"126":[2,197],"127":[2,197],"129":[2,197],"130":[2,197],"133":[1,79],"134":[1,82],"135":[2,197],"136":[2,197],"137":[2,197],"138":[2,197]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"50":[2,198],"55":[2,198],"58":[2,198],"70":[2,198],"75":[2,198],"85":[2,198],"90":[2,198],"99":[2,198],"100":89,"101":[2,198],"102":[2,198],"103":[2,198],"106":90,"110":[2,198],"114":[2,198],"115":[2,198],"126":[2,198],"127":[2,198],"129":[2,198],"130":[2,198],"133":[1,79],"134":[2,198],"135":[2,198],"136":[2,198],"137":[2,198],"138":[2,198]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"50":[2,199],"55":[2,199],"58":[2,199],"70":[2,199],"75":[2,199],"85":[2,199],"90":[2,199],"99":[2,199],"100":89,"101":[2,199],"102":[2,199],"103":[2,199],"106":90,"110":[2,199],"114":[2,199],"115":[2,199],"126":[2,199],"127":[2,199],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[2,199],"136":[2,199],"137":[2,199],"138":[2,199]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"50":[2,200],"55":[2,200],"58":[2,200],"70":[2,200],"75":[2,200],"85":[2,200],"90":[2,200],"99":[2,200],"100":89,"101":[2,200],"102":[2,200],"103":[2,200],"106":90,"110":[2,200],"114":[2,200],"115":[2,200],"126":[2,200],"127":[2,200],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,200],"137":[2,200],"138":[1,86]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"50":[2,201],"55":[2,201],"58":[2,201],"70":[2,201],"75":[2,201],"85":[2,201],"90":[2,201],"99":[2,201],"100":89,"101":[2,201],"102":[2,201],"103":[2,201],"106":90,"110":[2,201],"114":[2,201],"115":[2,201],"126":[2,201],"127":[2,201],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[2,201],"138":[1,86]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"50":[2,202],"55":[2,202],"58":[2,202],"70":[2,202],"75":[2,202],"85":[2,202],"90":[2,202],"99":[2,202],"100":89,"101":[2,202],"102":[2,202],"103":[2,202],"106":90,"110":[2,202],"114":[2,202],"115":[2,202],"126":[2,202],"127":[2,202],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,202],"137":[2,202],"138":[2,202]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"50":[2,185],"55":[2,185],"58":[2,185],"70":[2,185],"75":[2,185],"85":[2,185],"90":[2,185],"99":[2,185],"100":89,"101":[1,65],"102":[2,185],"103":[1,66],"106":90,"110":[2,185],"114":[2,185],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"50":[2,187],"55":[2,187],"58":[2,187],"70":[2,187],"75":[2,187],"85":[2,187],"90":[2,187],"99":[2,187],"100":89,"101":[1,65],"102":[2,187],"103":[1,66],"106":90,"110":[2,187],"114":[2,187],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"50":[2,184],"55":[2,184],"58":[2,184],"70":[2,184],"75":[2,184],"85":[2,184],"90":[2,184],"99":[2,184],"100":89,"101":[1,65],"102":[2,184],"103":[1,66],"106":90,"110":[2,184],"114":[2,184],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"50":[2,186],"55":[2,186],"58":[2,186],"70":[2,186],"75":[2,186],"85":[2,186],"90":[2,186],"99":[2,186],"100":89,"101":[1,65],"102":[2,186],"103":[1,66],"106":90,"110":[2,186],"114":[2,186],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"50":[2,109],"55":[2,109],"58":[2,109],"65":[2,109],"66":[2,109],"67":[2,109],"69":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"75":[2,109],"83":[2,109],"84":[2,109],"85":[2,109],"90":[2,109],"99":[2,109],"101":[2,109],"102":[2,109],"103":[2,109],"110":[2,109],"114":[2,109],"115":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"40":[2,79],"50":[2,79],"55":[2,79],"58":[2,79],"65":[2,79],"66":[2,79],"67":[2,79],"69":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"75":[2,79],"77":[2,79],"83":[2,79],"84":[2,79],"85":[2,79],"90":[2,79],"99":[2,79],"101":[2,79],"102":[2,79],"103":[2,79],"110":[2,79],"114":[2,79],"115":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"40":[2,80],"50":[2,80],"55":[2,80],"58":[2,80],"65":[2,80],"66":[2,80],"67":[2,80],"69":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"75":[2,80],"77":[2,80],"83":[2,80],"84":[2,80],"85":[2,80],"90":[2,80],"99":[2,80],"101":[2,80],"102":[2,80],"103":[2,80],"110":[2,80],"114":[2,80],"115":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"40":[2,81],"50":[2,81],"55":[2,81],"58":[2,81],"65":[2,81],"66":[2,81],"67":[2,81],"69":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"75":[2,81],"77":[2,81],"83":[2,81],"84":[2,81],"85":[2,81],"90":[2,81],"99":[2,81],"101":[2,81],"102":[2,81],"103":[2,81],"110":[2,81],"114":[2,81],"115":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81]},{"70":[1,240],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,85],"4":[2,85],"28":[2,85],"29":[2,85],"40":[2,85],"50":[2,85],"55":[2,85],"58":[2,85],"65":[2,85],"66":[2,85],"67":[2,85],"69":[2,85],"70":[2,85],"71":[2,85],"72":[2,85],"75":[2,85],"77":[2,85],"83":[2,85],"84":[2,85],"85":[2,85],"90":[2,85],"99":[2,85],"101":[2,85],"102":[2,85],"103":[2,85],"110":[2,85],"114":[2,85],"115":[2,85],"126":[2,85],"127":[2,85],"129":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"133":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85],"139":[2,85]},{"1":[2,86],"4":[2,86],"28":[2,86],"29":[2,86],"40":[2,86],"50":[2,86],"55":[2,86],"58":[2,86],"65":[2,86],"66":[2,86],"67":[2,86],"69":[2,86],"70":[2,86],"71":[2,86],"72":[2,86],"75":[2,86],"77":[2,86],"83":[2,86],"84":[2,86],"85":[2,86],"90":[2,86],"99":[2,86],"101":[2,86],"102":[2,86],"103":[2,86],"110":[2,86],"114":[2,86],"115":[2,86],"126":[2,86],"127":[2,86],"129":[2,86],"130":[2,86],"131":[2,86],"132":[2,86],"133":[2,86],"134":[2,86],"135":[2,86],"136":[2,86],"137":[2,86],"138":[2,86],"139":[2,86]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"50":[2,110],"55":[2,110],"58":[2,110],"65":[2,110],"66":[2,110],"67":[2,110],"69":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"75":[2,110],"83":[2,110],"84":[2,110],"85":[2,110],"90":[2,110],"99":[2,110],"101":[2,110],"102":[2,110],"103":[2,110],"110":[2,110],"114":[2,110],"115":[2,110],"126":[2,110],"127":[2,110],"129":[2,110],"130":[2,110],"133":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110],"138":[2,110]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"50":[2,38],"55":[2,38],"58":[2,38],"70":[2,38],"75":[2,38],"85":[2,38],"90":[2,38],"99":[2,38],"100":89,"101":[2,38],"102":[2,38],"103":[2,38],"106":90,"110":[2,38],"114":[2,38],"115":[2,38],"126":[2,38],"127":[2,38],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":241,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"50":[2,115],"55":[2,115],"58":[2,115],"65":[2,115],"66":[2,115],"67":[2,115],"69":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"75":[2,115],"83":[2,115],"84":[2,115],"85":[2,115],"90":[2,115],"99":[2,115],"101":[2,115],"102":[2,115],"103":[2,115],"110":[2,115],"114":[2,115],"115":[2,115],"126":[2,115],"127":[2,115],"129":[2,115],"130":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115]},{"4":[2,55],"28":[2,55],"54":242,"55":[1,234],"85":[2,55]},{"51":243,"52":[1,59],"53":[1,60]},{"30":113,"31":[1,73],"44":114,"56":244,"57":112,"59":115,"60":116,"73":[1,70],"88":[1,117],"89":[1,69]},{"50":[2,61],"55":[2,61]},{"8":245,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"50":[2,203],"55":[2,203],"58":[2,203],"70":[2,203],"75":[2,203],"85":[2,203],"90":[2,203],"99":[2,203],"100":89,"101":[2,203],"102":[2,203],"103":[2,203],"106":90,"110":[2,203],"114":[2,203],"115":[2,203],"126":[2,203],"127":[2,203],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":246,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"50":[2,108],"55":[2,108],"58":[2,108],"63":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,108],"71":[1,103],"72":[1,104],"75":[2,108],"80":95,"83":[1,97],"84":[2,113],"85":[2,108],"90":[2,108],"99":[2,108],"101":[2,108],"102":[2,108],"103":[2,108],"110":[2,108],"114":[2,108],"115":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"133":[2,108],"134":[2,108],"135":[2,108],"136":[2,108],"137":[2,108],"138":[2,108]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"50":[2,72],"55":[2,72],"58":[2,72],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"75":[2,72],"83":[2,72],"84":[2,72],"85":[2,72],"90":[2,72],"99":[2,72],"101":[2,72],"102":[2,72],"103":[2,72],"110":[2,72],"114":[2,72],"115":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72]},{"8":247,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"50":[2,182],"55":[2,182],"58":[2,182],"70":[2,182],"75":[2,182],"85":[2,182],"90":[2,182],"99":[2,182],"101":[2,182],"102":[2,182],"103":[2,182],"110":[2,182],"114":[2,182],"115":[2,182],"120":[2,182],"126":[2,182],"127":[2,182],"129":[2,182],"130":[2,182],"133":[2,182],"134":[2,182],"135":[2,182],"136":[2,182],"137":[2,182],"138":[2,182]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"50":[2,132],"55":[2,132],"58":[2,132],"70":[2,132],"75":[2,132],"85":[2,132],"90":[2,132],"95":[1,248],"99":[2,132],"101":[2,132],"102":[2,132],"103":[2,132],"110":[2,132],"114":[2,132],"115":[2,132],"126":[2,132],"127":[2,132],"129":[2,132],"130":[2,132],"133":[2,132],"134":[2,132],"135":[2,132],"136":[2,132],"137":[2,132],"138":[2,132]},{"4":[1,119],"6":249,"28":[1,6]},{"30":250,"31":[1,73]},{"119":251,"121":211,"122":[1,212]},{"29":[1,252],"120":[1,253],"121":254,"122":[1,212]},{"29":[2,175],"120":[2,175],"122":[2,175]},{"8":256,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"92":255,"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"16":257,"17":126,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"59":50,"60":51,"62":203,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"4":[2,104],"15":167,"29":[2,104],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,49],"73":[1,217],"78":258,"79":216,"88":[1,117],"98":[1,56]},{"4":[1,260],"29":[1,259]},{"4":[2,105],"29":[2,105],"75":[2,105]},{"4":[2,104],"15":167,"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,49],"73":[1,217],"75":[2,104],"78":261,"79":216,"88":[1,117],"98":[1,56]},{"4":[2,101],"29":[2,101],"75":[2,101]},{"4":[2,43],"29":[2,43],"43":[1,262],"75":[2,43]},{"1":[2,99],"4":[2,99],"28":[1,263],"29":[2,99],"50":[2,99],"55":[2,99],"58":[2,99],"63":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,99],"71":[1,103],"72":[1,104],"75":[2,99],"80":95,"83":[1,97],"84":[2,113],"85":[2,99],"90":[2,99],"99":[2,99],"101":[2,99],"102":[2,99],"103":[2,99],"110":[2,99],"114":[2,99],"115":[2,99],"126":[2,99],"127":[2,99],"129":[2,99],"130":[2,99],"133":[2,99],"134":[2,99],"135":[2,99],"136":[2,99],"137":[2,99],"138":[2,99]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"43":[2,137],"50":[2,137],"55":[2,137],"58":[2,137],"65":[2,137],"66":[2,137],"67":[2,137],"69":[2,137],"70":[2,137],"71":[2,137],"72":[2,137],"75":[2,137],"83":[2,137],"84":[2,137],"85":[2,137],"90":[2,137],"99":[2,137],"101":[2,137],"102":[2,137],"103":[2,137],"110":[2,137],"114":[2,137],"115":[2,137],"126":[2,137],"127":[2,137],"129":[2,137],"130":[2,137],"133":[2,137],"134":[2,137],"135":[2,137],"136":[2,137],"137":[2,137],"138":[2,137]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"50":[2,179],"55":[2,179],"58":[2,179],"70":[2,179],"75":[2,179],"85":[2,179],"90":[2,179],"99":[2,179],"101":[2,179],"102":[2,179],"103":[2,179],"110":[2,179],"114":[2,179],"115":[2,179],"120":[2,179],"126":[2,179],"127":[2,179],"129":[2,179],"130":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"50":[2,180],"55":[2,180],"58":[2,180],"70":[2,180],"75":[2,180],"85":[2,180],"90":[2,180],"99":[2,180],"101":[2,180],"102":[2,180],"103":[2,180],"110":[2,180],"114":[2,180],"115":[2,180],"120":[2,180],"126":[2,180],"127":[2,180],"129":[2,180],"130":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180],"138":[2,180]},{"8":264,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":265,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"50":[2,164],"55":[2,164],"58":[2,164],"70":[2,164],"75":[2,164],"85":[2,164],"90":[2,164],"99":[2,164],"101":[2,164],"102":[2,164],"103":[2,164],"110":[2,164],"114":[2,164],"115":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"133":[2,164],"134":[2,164],"135":[2,164],"136":[2,164],"137":[2,164],"138":[2,164]},{"30":266,"31":[1,73],"59":155,"60":156,"73":[1,70],"89":[1,69],"107":267},{"8":268,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"50":[2,166],"55":[2,166],"58":[2,166],"70":[2,166],"75":[2,166],"85":[2,166],"90":[2,166],"99":[2,166],"101":[2,166],"102":[2,166],"103":[2,166],"110":[2,166],"114":[2,166],"115":[2,166],"126":[2,166],"127":[2,166],"129":[2,166],"130":[2,166],"133":[2,166],"134":[2,166],"135":[2,166],"136":[2,166],"137":[2,166],"138":[2,166]},{"8":269,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":270,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"55":[1,272],"111":271,"112":[1,231]},{"4":[1,274],"28":[1,275],"90":[1,273]},{"4":[2,56],"8":161,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[2,56],"29":[2,56],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"85":[2,56],"87":[1,57],"88":[1,58],"89":[1,69],"90":[2,56],"91":276,"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":277,"55":[1,234]},{"4":[2,67],"28":[2,67],"29":[2,67],"55":[2,67],"85":[2,67],"90":[2,67]},{"4":[1,279],"28":[1,280],"75":[1,278]},{"4":[2,56],"15":167,"28":[2,56],"29":[2,56],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":281,"42":165,"44":166,"45":170,"47":[1,49],"75":[2,56],"88":[1,117],"98":[1,56]},{"8":282,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,283],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"40":[2,84],"50":[2,84],"55":[2,84],"58":[2,84],"65":[2,84],"66":[2,84],"67":[2,84],"69":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"75":[2,84],"77":[2,84],"83":[2,84],"84":[2,84],"85":[2,84],"90":[2,84],"99":[2,84],"101":[2,84],"102":[2,84],"103":[2,84],"110":[2,84],"114":[2,84],"115":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"131":[2,84],"132":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84]},{"29":[1,284],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,274],"28":[1,275],"85":[1,285]},{"4":[1,119],"6":286,"28":[1,6]},{"50":[2,59],"55":[2,59]},{"50":[2,62],"55":[2,62],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"29":[1,287],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,119],"6":288,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,119],"6":289,"28":[1,6]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"50":[2,133],"55":[2,133],"58":[2,133],"70":[2,133],"75":[2,133],"85":[2,133],"90":[2,133],"99":[2,133],"101":[2,133],"102":[2,133],"103":[2,133],"110":[2,133],"114":[2,133],"115":[2,133],"126":[2,133],"127":[2,133],"129":[2,133],"130":[2,133],"133":[2,133],"134":[2,133],"135":[2,133],"136":[2,133],"137":[2,133],"138":[2,133]},{"4":[1,119],"6":290,"28":[1,6]},{"29":[1,291],"120":[1,292],"121":254,"122":[1,212]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"50":[2,173],"55":[2,173],"58":[2,173],"70":[2,173],"75":[2,173],"85":[2,173],"90":[2,173],"99":[2,173],"101":[2,173],"102":[2,173],"103":[2,173],"110":[2,173],"114":[2,173],"115":[2,173],"126":[2,173],"127":[2,173],"129":[2,173],"130":[2,173],"133":[2,173],"134":[2,173],"135":[2,173],"136":[2,173],"137":[2,173],"138":[2,173]},{"4":[1,119],"6":293,"28":[1,6]},{"29":[2,176],"120":[2,176],"122":[2,176]},{"4":[1,119],"6":294,"28":[1,6],"55":[1,295]},{"4":[2,129],"28":[2,129],"55":[2,129],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,94],"4":[2,94],"28":[1,296],"29":[2,94],"50":[2,94],"55":[2,94],"58":[2,94],"63":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,94],"71":[1,103],"72":[1,104],"75":[2,94],"80":95,"83":[1,97],"84":[2,113],"85":[2,94],"90":[2,94],"99":[2,94],"101":[2,94],"102":[2,94],"103":[2,94],"110":[2,94],"114":[2,94],"115":[2,94],"126":[2,94],"127":[2,94],"129":[2,94],"130":[2,94],"133":[2,94],"134":[2,94],"135":[2,94],"136":[2,94],"137":[2,94],"138":[2,94]},{"4":[1,260],"29":[1,297]},{"1":[2,97],"4":[2,97],"28":[2,97],"29":[2,97],"50":[2,97],"55":[2,97],"58":[2,97],"70":[2,97],"75":[2,97],"85":[2,97],"90":[2,97],"99":[2,97],"101":[2,97],"102":[2,97],"103":[2,97],"110":[2,97],"114":[2,97],"115":[2,97],"126":[2,97],"127":[2,97],"129":[2,97],"130":[2,97],"133":[2,97],"134":[2,97],"135":[2,97],"136":[2,97],"137":[2,97],"138":[2,97]},{"15":167,"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,49],"79":298,"88":[1,117],"98":[1,56]},{"4":[1,260],"75":[1,299]},{"8":300,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,301],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,104],"15":167,"29":[2,104],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,49],"73":[1,217],"78":302,"79":216,"88":[1,117],"98":[1,56]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"50":[2,139],"55":[2,139],"58":[2,139],"70":[2,139],"75":[2,139],"85":[2,139],"90":[2,139],"99":[2,139],"100":89,"101":[1,65],"102":[2,139],"103":[1,66],"106":90,"110":[2,139],"114":[2,139],"115":[1,68],"126":[2,139],"127":[2,139],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"50":[2,141],"55":[2,141],"58":[2,141],"70":[2,141],"75":[2,141],"85":[2,141],"90":[2,141],"99":[2,141],"100":89,"101":[1,65],"102":[2,141],"103":[1,66],"106":90,"110":[2,141],"114":[2,141],"115":[1,68],"126":[2,141],"127":[2,141],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"108":303,"109":[1,228],"112":[2,151]},{"111":304,"112":[1,231]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"50":[2,154],"55":[2,154],"58":[2,154],"70":[2,154],"75":[2,154],"85":[2,154],"90":[2,154],"99":[2,154],"100":89,"101":[1,65],"102":[1,305],"103":[1,66],"106":90,"110":[1,306],"114":[2,154],"115":[1,68],"126":[2,154],"127":[2,154],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"100":89,"101":[1,65],"103":[1,66],"106":90,"113":307,"114":[1,308],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"50":[2,158],"55":[2,158],"58":[2,158],"70":[2,158],"75":[2,158],"85":[2,158],"90":[2,158],"99":[2,158],"100":89,"101":[1,65],"102":[1,309],"103":[1,66],"106":90,"110":[2,158],"114":[2,158],"115":[1,68],"126":[2,158],"127":[2,158],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"50":[2,168],"55":[2,168],"58":[2,168],"70":[2,168],"75":[2,168],"85":[2,168],"90":[2,168],"99":[2,168],"101":[2,168],"102":[2,168],"103":[2,168],"110":[2,168],"114":[2,168],"115":[2,168],"126":[2,168],"127":[2,168],"129":[2,168],"130":[2,168],"133":[2,168],"134":[2,168],"135":[2,168],"136":[2,168],"137":[2,168],"138":[2,168]},{"30":311,"31":[1,73],"59":155,"60":156,"73":[1,70],"89":[1,69],"107":310},{"1":[2,121],"4":[2,121],"28":[2,121],"29":[2,121],"40":[2,121],"50":[2,121],"55":[2,121],"58":[2,121],"65":[2,121],"66":[2,121],"67":[2,121],"69":[2,121],"70":[2,121],"71":[2,121],"72":[2,121],"75":[2,121],"83":[2,121],"84":[2,121],"85":[2,121],"90":[2,121],"99":[2,121],"101":[2,121],"102":[2,121],"103":[2,121],"109":[2,121],"110":[2,121],"112":[2,121],"114":[2,121],"115":[2,121],"126":[2,121],"127":[2,121],"129":[2,121],"130":[2,121],"133":[2,121],"134":[2,121],"135":[2,121],"136":[2,121],"137":[2,121],"138":[2,121]},{"8":161,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"91":312,"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":161,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"28":[1,160],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":313,"87":[1,57],"88":[1,58],"89":[1,69],"91":159,"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,123],"28":[2,123],"29":[2,123],"55":[2,123],"85":[2,123],"90":[2,123]},{"4":[1,274],"28":[1,275],"29":[1,314]},{"1":[2,87],"4":[2,87],"28":[2,87],"29":[2,87],"40":[2,87],"50":[2,87],"55":[2,87],"58":[2,87],"65":[2,87],"66":[2,87],"67":[2,87],"69":[2,87],"70":[2,87],"71":[2,87],"72":[2,87],"75":[2,87],"83":[2,87],"84":[2,87],"85":[2,87],"90":[2,87],"99":[2,87],"101":[2,87],"102":[2,87],"103":[2,87],"109":[2,87],"110":[2,87],"112":[2,87],"114":[2,87],"115":[2,87],"126":[2,87],"127":[2,87],"129":[2,87],"130":[2,87],"133":[2,87],"134":[2,87],"135":[2,87],"136":[2,87],"137":[2,87],"138":[2,87]},{"15":167,"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":315,"42":165,"44":166,"45":170,"47":[1,49],"88":[1,117],"98":[1,56]},{"4":[2,88],"15":167,"28":[2,88],"29":[2,88],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":164,"42":165,"44":166,"45":170,"47":[1,49],"55":[2,88],"74":316,"88":[1,117],"98":[1,56]},{"4":[2,90],"28":[2,90],"29":[2,90],"55":[2,90],"75":[2,90]},{"4":[2,41],"28":[2,41],"29":[2,41],"55":[2,41],"75":[2,41],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":317,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"50":[2,39],"55":[2,39],"58":[2,39],"70":[2,39],"75":[2,39],"85":[2,39],"90":[2,39],"99":[2,39],"101":[2,39],"102":[2,39],"103":[2,39],"110":[2,39],"114":[2,39],"115":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"50":[2,116],"55":[2,116],"58":[2,116],"65":[2,116],"66":[2,116],"67":[2,116],"69":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"75":[2,116],"83":[2,116],"84":[2,116],"85":[2,116],"90":[2,116],"99":[2,116],"101":[2,116],"102":[2,116],"103":[2,116],"110":[2,116],"114":[2,116],"115":[2,116],"126":[2,116],"127":[2,116],"129":[2,116],"130":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"50":[2,51],"55":[2,51],"58":[2,51],"70":[2,51],"75":[2,51],"85":[2,51],"90":[2,51],"99":[2,51],"101":[2,51],"102":[2,51],"103":[2,51],"110":[2,51],"114":[2,51],"115":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"133":[2,51],"134":[2,51],"135":[2,51],"136":[2,51],"137":[2,51],"138":[2,51]},{"1":[2,204],"4":[2,204],"28":[2,204],"29":[2,204],"50":[2,204],"55":[2,204],"58":[2,204],"70":[2,204],"75":[2,204],"85":[2,204],"90":[2,204],"99":[2,204],"101":[2,204],"102":[2,204],"103":[2,204],"110":[2,204],"114":[2,204],"115":[2,204],"126":[2,204],"127":[2,204],"129":[2,204],"130":[2,204],"133":[2,204],"134":[2,204],"135":[2,204],"136":[2,204],"137":[2,204],"138":[2,204]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"50":[2,181],"55":[2,181],"58":[2,181],"70":[2,181],"75":[2,181],"85":[2,181],"90":[2,181],"99":[2,181],"101":[2,181],"102":[2,181],"103":[2,181],"110":[2,181],"114":[2,181],"115":[2,181],"120":[2,181],"126":[2,181],"127":[2,181],"129":[2,181],"130":[2,181],"133":[2,181],"134":[2,181],"135":[2,181],"136":[2,181],"137":[2,181],"138":[2,181]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"50":[2,134],"55":[2,134],"58":[2,134],"70":[2,134],"75":[2,134],"85":[2,134],"90":[2,134],"99":[2,134],"101":[2,134],"102":[2,134],"103":[2,134],"110":[2,134],"114":[2,134],"115":[2,134],"126":[2,134],"127":[2,134],"129":[2,134],"130":[2,134],"133":[2,134],"134":[2,134],"135":[2,134],"136":[2,134],"137":[2,134],"138":[2,134]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"50":[2,135],"55":[2,135],"58":[2,135],"70":[2,135],"75":[2,135],"85":[2,135],"90":[2,135],"95":[2,135],"99":[2,135],"101":[2,135],"102":[2,135],"103":[2,135],"110":[2,135],"114":[2,135],"115":[2,135],"126":[2,135],"127":[2,135],"129":[2,135],"130":[2,135],"133":[2,135],"134":[2,135],"135":[2,135],"136":[2,135],"137":[2,135],"138":[2,135]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"50":[2,171],"55":[2,171],"58":[2,171],"70":[2,171],"75":[2,171],"85":[2,171],"90":[2,171],"99":[2,171],"101":[2,171],"102":[2,171],"103":[2,171],"110":[2,171],"114":[2,171],"115":[2,171],"126":[2,171],"127":[2,171],"129":[2,171],"130":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171],"138":[2,171]},{"4":[1,119],"6":318,"28":[1,6]},{"29":[1,319]},{"4":[1,320],"29":[2,177],"120":[2,177],"122":[2,177]},{"8":321,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,104],"15":167,"29":[2,104],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,49],"73":[1,217],"78":322,"79":216,"88":[1,117],"98":[1,56]},{"1":[2,95],"4":[2,95],"28":[2,95],"29":[2,95],"50":[2,95],"55":[2,95],"58":[2,95],"70":[2,95],"75":[2,95],"85":[2,95],"90":[2,95],"99":[2,95],"101":[2,95],"102":[2,95],"103":[2,95],"110":[2,95],"114":[2,95],"115":[2,95],"126":[2,95],"127":[2,95],"129":[2,95],"130":[2,95],"133":[2,95],"134":[2,95],"135":[2,95],"136":[2,95],"137":[2,95],"138":[2,95]},{"4":[2,106],"29":[2,106],"75":[2,106]},{"4":[2,107],"29":[2,107],"75":[2,107]},{"4":[2,102],"29":[2,102],"75":[2,102],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":323,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,260],"29":[1,324]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"50":[2,165],"55":[2,165],"58":[2,165],"70":[2,165],"75":[2,165],"85":[2,165],"90":[2,165],"99":[2,165],"101":[2,165],"102":[2,165],"103":[2,165],"110":[2,165],"114":[2,165],"115":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"133":[2,165],"134":[2,165],"135":[2,165],"136":[2,165],"137":[2,165],"138":[2,165]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"50":[2,167],"55":[2,167],"58":[2,167],"70":[2,167],"75":[2,167],"85":[2,167],"90":[2,167],"99":[2,167],"101":[2,167],"102":[2,167],"103":[2,167],"110":[2,167],"114":[2,167],"115":[2,167],"126":[2,167],"127":[2,167],"129":[2,167],"130":[2,167],"133":[2,167],"134":[2,167],"135":[2,167],"136":[2,167],"137":[2,167],"138":[2,167]},{"8":325,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":326,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"50":[2,170],"55":[2,170],"58":[2,170],"70":[2,170],"75":[2,170],"85":[2,170],"90":[2,170],"99":[2,170],"101":[2,170],"102":[2,170],"103":[2,170],"110":[2,170],"114":[2,170],"115":[2,170],"126":[2,170],"127":[2,170],"129":[2,170],"130":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170],"138":[2,170]},{"8":327,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":328,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"111":329,"112":[1,231]},{"112":[2,151]},{"4":[2,124],"28":[2,124],"29":[2,124],"55":[2,124],"85":[2,124],"90":[2,124]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":330,"55":[1,234]},{"4":[2,125],"28":[2,125],"29":[2,125],"55":[2,125],"85":[2,125],"90":[2,125]},{"4":[2,91],"28":[2,91],"29":[2,91],"55":[2,91],"75":[2,91]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":331,"55":[1,238]},{"29":[1,332],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"29":[1,333]},{"1":[2,174],"4":[2,174],"28":[2,174],"29":[2,174],"50":[2,174],"55":[2,174],"58":[2,174],"70":[2,174],"75":[2,174],"85":[2,174],"90":[2,174],"99":[2,174],"101":[2,174],"102":[2,174],"103":[2,174],"110":[2,174],"114":[2,174],"115":[2,174],"126":[2,174],"127":[2,174],"129":[2,174],"130":[2,174],"133":[2,174],"134":[2,174],"135":[2,174],"136":[2,174],"137":[2,174],"138":[2,174]},{"29":[2,178],"120":[2,178],"122":[2,178]},{"4":[2,130],"28":[2,130],"55":[2,130],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,260],"29":[1,334]},{"29":[1,335],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,100],"4":[2,100],"28":[2,100],"29":[2,100],"50":[2,100],"55":[2,100],"58":[2,100],"70":[2,100],"75":[2,100],"85":[2,100],"90":[2,100],"99":[2,100],"101":[2,100],"102":[2,100],"103":[2,100],"110":[2,100],"114":[2,100],"115":[2,100],"126":[2,100],"127":[2,100],"129":[2,100],"130":[2,100],"133":[2,100],"134":[2,100],"135":[2,100],"136":[2,100],"137":[2,100],"138":[2,100]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"50":[2,155],"55":[2,155],"58":[2,155],"70":[2,155],"75":[2,155],"85":[2,155],"90":[2,155],"99":[2,155],"100":89,"101":[1,65],"102":[2,155],"103":[1,66],"106":90,"110":[2,155],"114":[2,155],"115":[1,68],"126":[2,155],"127":[2,155],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"50":[2,156],"55":[2,156],"58":[2,156],"70":[2,156],"75":[2,156],"85":[2,156],"90":[2,156],"99":[2,156],"100":89,"101":[1,65],"102":[1,336],"103":[1,66],"106":90,"110":[2,156],"114":[2,156],"115":[1,68],"126":[2,156],"127":[2,156],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"50":[2,160],"55":[2,160],"58":[2,160],"70":[2,160],"75":[2,160],"85":[2,160],"90":[2,160],"99":[2,160],"100":89,"101":[1,65],"102":[1,337],"103":[1,66],"106":90,"110":[1,338],"114":[2,160],"115":[1,68],"126":[2,160],"127":[2,160],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"50":[2,159],"55":[2,159],"58":[2,159],"70":[2,159],"75":[2,159],"85":[2,159],"90":[2,159],"99":[2,159],"100":89,"101":[1,65],"102":[2,159],"103":[1,66],"106":90,"110":[2,159],"114":[2,159],"115":[1,68],"126":[2,159],"127":[2,159],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"50":[2,169],"55":[2,169],"58":[2,169],"70":[2,169],"75":[2,169],"85":[2,169],"90":[2,169],"99":[2,169],"101":[2,169],"102":[2,169],"103":[2,169],"110":[2,169],"114":[2,169],"115":[2,169],"126":[2,169],"127":[2,169],"129":[2,169],"130":[2,169],"133":[2,169],"134":[2,169],"135":[2,169],"136":[2,169],"137":[2,169],"138":[2,169]},{"4":[1,274],"28":[1,275],"29":[1,339]},{"4":[1,279],"28":[1,280],"29":[1,340]},{"4":[2,42],"28":[2,42],"29":[2,42],"55":[2,42],"75":[2,42]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"50":[2,172],"55":[2,172],"58":[2,172],"70":[2,172],"75":[2,172],"85":[2,172],"90":[2,172],"99":[2,172],"101":[2,172],"102":[2,172],"103":[2,172],"110":[2,172],"114":[2,172],"115":[2,172],"126":[2,172],"127":[2,172],"129":[2,172],"130":[2,172],"133":[2,172],"134":[2,172],"135":[2,172],"136":[2,172],"137":[2,172],"138":[2,172]},{"1":[2,96],"4":[2,96],"28":[2,96],"29":[2,96],"50":[2,96],"55":[2,96],"58":[2,96],"70":[2,96],"75":[2,96],"85":[2,96],"90":[2,96],"99":[2,96],"101":[2,96],"102":[2,96],"103":[2,96],"110":[2,96],"114":[2,96],"115":[2,96],"126":[2,96],"127":[2,96],"129":[2,96],"130":[2,96],"133":[2,96],"134":[2,96],"135":[2,96],"136":[2,96],"137":[2,96],"138":[2,96]},{"4":[2,103],"29":[2,103],"75":[2,103]},{"8":341,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":342,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":343,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,126],"28":[2,126],"29":[2,126],"55":[2,126],"85":[2,126],"90":[2,126]},{"4":[2,92],"28":[2,92],"29":[2,92],"55":[2,92],"75":[2,92]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"50":[2,157],"55":[2,157],"58":[2,157],"70":[2,157],"75":[2,157],"85":[2,157],"90":[2,157],"99":[2,157],"100":89,"101":[1,65],"102":[2,157],"103":[1,66],"106":90,"110":[2,157],"114":[2,157],"115":[1,68],"126":[2,157],"127":[2,157],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"50":[2,161],"55":[2,161],"58":[2,161],"70":[2,161],"75":[2,161],"85":[2,161],"90":[2,161],"99":[2,161],"100":89,"101":[1,65],"102":[2,161],"103":[1,66],"106":90,"110":[2,161],"114":[2,161],"115":[1,68],"126":[2,161],"127":[2,161],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"50":[2,162],"55":[2,162],"58":[2,162],"70":[2,162],"75":[2,162],"85":[2,162],"90":[2,162],"99":[2,162],"100":89,"101":[1,65],"102":[1,344],"103":[1,66],"106":90,"110":[2,162],"114":[2,162],"115":[1,68],"126":[2,162],"127":[2,162],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":345,"9":121,"10":21,"11":22,"12":[1,23],"13":[1,24],"14":[1,25],"15":26,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":20,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,47],"47":[1,49],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,48],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"50":[2,163],"55":[2,163],"58":[2,163],"70":[2,163],"75":[2,163],"85":[2,163],"90":[2,163],"99":[2,163],"100":89,"101":[1,65],"102":[2,163],"103":[1,66],"106":90,"110":[2,163],"114":[2,163],"115":[1,68],"126":[2,163],"127":[2,163],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]}], -defaultActions: {"76":[2,4],"97":[2,114],"311":[2,151]}, +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,6],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[3]},{"1":[2,2],"15":73,"46":[1,48]},{"1":[2,3],"4":[1,74]},{"4":[1,75]},{"1":[2,5],"4":[2,5],"28":[2,5]},{"5":76,"7":5,"8":7,"9":8,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"28":[1,77],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,8],"4":[2,8],"28":[2,8],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,9],"4":[2,9],"28":[2,9],"99":92,"100":[1,64],"102":[1,65],"105":93,"114":[1,67],"125":[1,90],"126":[1,91]},{"1":[2,16],"4":[2,16],"27":[2,16],"28":[2,16],"49":[2,16],"54":[2,16],"57":[2,16],"62":95,"64":[1,97],"65":[1,98],"66":[1,99],"67":100,"68":[1,101],"69":[2,16],"70":[1,102],"71":[1,103],"74":[2,16],"79":94,"82":[1,96],"83":[2,111],"84":[2,16],"89":[2,16],"98":[2,16],"100":[2,16],"101":[2,16],"102":[2,16],"109":[2,16],"113":[2,16],"114":[2,16],"125":[2,16],"126":[2,16],"128":[2,16],"129":[2,16],"132":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16]},{"1":[2,17],"4":[2,17],"27":[2,17],"28":[2,17],"49":[2,17],"54":[2,17],"57":[2,17],"62":105,"64":[1,97],"65":[1,98],"66":[1,99],"67":100,"68":[1,101],"69":[2,17],"70":[1,102],"71":[1,103],"74":[2,17],"79":104,"82":[1,96],"83":[2,111],"84":[2,17],"89":[2,17],"98":[2,17],"100":[2,17],"101":[2,17],"102":[2,17],"109":[2,17],"113":[2,17],"114":[2,17],"125":[2,17],"126":[2,17],"128":[2,17],"129":[2,17],"132":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17]},{"1":[2,18],"4":[2,18],"27":[2,18],"28":[2,18],"49":[2,18],"54":[2,18],"57":[2,18],"69":[2,18],"74":[2,18],"84":[2,18],"89":[2,18],"98":[2,18],"100":[2,18],"101":[2,18],"102":[2,18],"109":[2,18],"113":[2,18],"114":[2,18],"125":[2,18],"126":[2,18],"128":[2,18],"129":[2,18],"132":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18]},{"1":[2,19],"4":[2,19],"27":[2,19],"28":[2,19],"49":[2,19],"54":[2,19],"57":[2,19],"69":[2,19],"74":[2,19],"84":[2,19],"89":[2,19],"98":[2,19],"100":[2,19],"101":[2,19],"102":[2,19],"109":[2,19],"113":[2,19],"114":[2,19],"125":[2,19],"126":[2,19],"128":[2,19],"129":[2,19],"132":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19]},{"1":[2,20],"4":[2,20],"27":[2,20],"28":[2,20],"49":[2,20],"54":[2,20],"57":[2,20],"69":[2,20],"74":[2,20],"84":[2,20],"89":[2,20],"98":[2,20],"100":[2,20],"101":[2,20],"102":[2,20],"109":[2,20],"113":[2,20],"114":[2,20],"125":[2,20],"126":[2,20],"128":[2,20],"129":[2,20],"132":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20]},{"1":[2,21],"4":[2,21],"27":[2,21],"28":[2,21],"49":[2,21],"54":[2,21],"57":[2,21],"69":[2,21],"74":[2,21],"84":[2,21],"89":[2,21],"98":[2,21],"100":[2,21],"101":[2,21],"102":[2,21],"109":[2,21],"113":[2,21],"114":[2,21],"125":[2,21],"126":[2,21],"128":[2,21],"129":[2,21],"132":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21]},{"1":[2,22],"4":[2,22],"27":[2,22],"28":[2,22],"49":[2,22],"54":[2,22],"57":[2,22],"69":[2,22],"74":[2,22],"84":[2,22],"89":[2,22],"98":[2,22],"100":[2,22],"101":[2,22],"102":[2,22],"109":[2,22],"113":[2,22],"114":[2,22],"125":[2,22],"126":[2,22],"128":[2,22],"129":[2,22],"132":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22]},{"1":[2,23],"4":[2,23],"27":[2,23],"28":[2,23],"49":[2,23],"54":[2,23],"57":[2,23],"69":[2,23],"74":[2,23],"84":[2,23],"89":[2,23],"98":[2,23],"100":[2,23],"101":[2,23],"102":[2,23],"109":[2,23],"113":[2,23],"114":[2,23],"125":[2,23],"126":[2,23],"128":[2,23],"129":[2,23],"132":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23]},{"1":[2,24],"4":[2,24],"27":[2,24],"28":[2,24],"49":[2,24],"54":[2,24],"57":[2,24],"69":[2,24],"74":[2,24],"84":[2,24],"89":[2,24],"98":[2,24],"100":[2,24],"101":[2,24],"102":[2,24],"109":[2,24],"113":[2,24],"114":[2,24],"125":[2,24],"126":[2,24],"128":[2,24],"129":[2,24],"132":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24]},{"1":[2,25],"4":[2,25],"27":[2,25],"28":[2,25],"49":[2,25],"54":[2,25],"57":[2,25],"69":[2,25],"74":[2,25],"84":[2,25],"89":[2,25],"98":[2,25],"100":[2,25],"101":[2,25],"102":[2,25],"109":[2,25],"113":[2,25],"114":[2,25],"125":[2,25],"126":[2,25],"128":[2,25],"129":[2,25],"132":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25]},{"1":[2,26],"4":[2,26],"27":[2,26],"28":[2,26],"49":[2,26],"54":[2,26],"57":[2,26],"69":[2,26],"74":[2,26],"84":[2,26],"89":[2,26],"98":[2,26],"100":[2,26],"101":[2,26],"102":[2,26],"109":[2,26],"113":[2,26],"114":[2,26],"125":[2,26],"126":[2,26],"128":[2,26],"129":[2,26],"132":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26]},{"1":[2,10],"4":[2,10],"28":[2,10],"100":[2,10],"102":[2,10],"114":[2,10],"125":[2,10],"126":[2,10]},{"1":[2,11],"4":[2,11],"28":[2,11],"100":[2,11],"102":[2,11],"114":[2,11],"125":[2,11],"126":[2,11]},{"1":[2,12],"4":[2,12],"28":[2,12],"100":[2,12],"102":[2,12],"114":[2,12],"125":[2,12],"126":[2,12]},{"1":[2,13],"4":[2,13],"28":[2,13],"100":[2,13],"102":[2,13],"114":[2,13],"125":[2,13],"126":[2,13]},{"1":[2,14],"4":[2,14],"28":[2,14],"100":[2,14],"102":[2,14],"114":[2,14],"125":[2,14],"126":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"100":[2,15],"102":[2,15],"114":[2,15],"125":[2,15],"126":[2,15]},{"1":[2,74],"4":[2,74],"27":[2,74],"28":[2,74],"39":[1,106],"49":[2,74],"54":[2,74],"57":[2,74],"64":[2,74],"65":[2,74],"66":[2,74],"68":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"74":[2,74],"82":[2,74],"83":[2,74],"84":[2,74],"89":[2,74],"98":[2,74],"100":[2,74],"101":[2,74],"102":[2,74],"109":[2,74],"113":[2,74],"114":[2,74],"125":[2,74],"126":[2,74],"128":[2,74],"129":[2,74],"132":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74]},{"1":[2,75],"4":[2,75],"27":[2,75],"28":[2,75],"49":[2,75],"54":[2,75],"57":[2,75],"64":[2,75],"65":[2,75],"66":[2,75],"68":[2,75],"69":[2,75],"70":[2,75],"71":[2,75],"74":[2,75],"82":[2,75],"83":[2,75],"84":[2,75],"89":[2,75],"98":[2,75],"100":[2,75],"101":[2,75],"102":[2,75],"109":[2,75],"113":[2,75],"114":[2,75],"125":[2,75],"126":[2,75],"128":[2,75],"129":[2,75],"132":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75]},{"1":[2,76],"4":[2,76],"27":[2,76],"28":[2,76],"49":[2,76],"54":[2,76],"57":[2,76],"64":[2,76],"65":[2,76],"66":[2,76],"68":[2,76],"69":[2,76],"70":[2,76],"71":[2,76],"74":[2,76],"82":[2,76],"83":[2,76],"84":[2,76],"89":[2,76],"98":[2,76],"100":[2,76],"101":[2,76],"102":[2,76],"109":[2,76],"113":[2,76],"114":[2,76],"125":[2,76],"126":[2,76],"128":[2,76],"129":[2,76],"132":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76]},{"1":[2,77],"4":[2,77],"27":[2,77],"28":[2,77],"49":[2,77],"54":[2,77],"57":[2,77],"64":[2,77],"65":[2,77],"66":[2,77],"68":[2,77],"69":[2,77],"70":[2,77],"71":[2,77],"74":[2,77],"82":[2,77],"83":[2,77],"84":[2,77],"89":[2,77],"98":[2,77],"100":[2,77],"101":[2,77],"102":[2,77],"109":[2,77],"113":[2,77],"114":[2,77],"125":[2,77],"126":[2,77],"128":[2,77],"129":[2,77],"132":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77]},{"1":[2,109],"4":[2,109],"27":[2,109],"28":[2,109],"49":[2,109],"54":[2,109],"57":[2,109],"64":[2,109],"65":[2,109],"66":[2,109],"68":[2,109],"69":[2,109],"70":[2,109],"71":[2,109],"74":[2,109],"80":107,"82":[2,109],"83":[1,108],"84":[2,109],"89":[2,109],"98":[2,109],"100":[2,109],"101":[2,109],"102":[2,109],"109":[2,109],"113":[2,109],"114":[2,109],"125":[2,109],"126":[2,109],"128":[2,109],"129":[2,109],"132":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109]},{"29":112,"30":[1,72],"43":113,"48":109,"49":[2,56],"54":[2,56],"55":110,"56":111,"58":114,"59":115,"72":[1,69],"87":[1,116],"88":[1,68]},{"4":[1,118],"6":117,"27":[1,6]},{"8":119,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":121,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":122,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"16":124,"17":125,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":126,"43":61,"44":28,"58":49,"59":50,"61":123,"63":29,"72":[1,69],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"97":[1,55]},{"16":124,"17":125,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":126,"43":61,"44":28,"58":49,"59":50,"61":127,"63":29,"72":[1,69],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"97":[1,55]},{"1":[2,71],"4":[2,71],"27":[2,71],"28":[2,71],"39":[2,71],"49":[2,71],"54":[2,71],"57":[2,71],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"74":[2,71],"76":[1,131],"82":[2,71],"83":[2,71],"84":[2,71],"89":[2,71],"98":[2,71],"100":[2,71],"101":[2,71],"102":[2,71],"109":[2,71],"113":[2,71],"114":[2,71],"125":[2,71],"126":[2,71],"128":[2,71],"129":[2,71],"130":[1,128],"131":[1,129],"132":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[1,130]},{"1":[2,181],"4":[2,181],"27":[2,181],"28":[2,181],"49":[2,181],"54":[2,181],"57":[2,181],"69":[2,181],"74":[2,181],"84":[2,181],"89":[2,181],"98":[2,181],"100":[2,181],"101":[2,181],"102":[2,181],"109":[2,181],"113":[2,181],"114":[2,181],"119":[1,132],"125":[2,181],"126":[2,181],"128":[2,181],"129":[2,181],"132":[2,181],"133":[2,181],"134":[2,181],"135":[2,181],"136":[2,181],"137":[2,181]},{"4":[1,118],"6":133,"27":[1,6]},{"4":[1,118],"6":134,"27":[1,6]},{"1":[2,143],"4":[2,143],"27":[2,143],"28":[2,143],"49":[2,143],"54":[2,143],"57":[2,143],"69":[2,143],"74":[2,143],"84":[2,143],"89":[2,143],"98":[2,143],"100":[2,143],"101":[2,143],"102":[2,143],"109":[2,143],"113":[2,143],"114":[2,143],"125":[2,143],"126":[2,143],"128":[2,143],"129":[2,143],"132":[2,143],"133":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143]},{"4":[1,118],"6":135,"27":[1,6]},{"8":136,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,137],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,97],"4":[2,97],"16":124,"17":125,"27":[1,139],"28":[2,97],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":126,"43":61,"44":28,"49":[2,97],"54":[2,97],"57":[2,97],"58":49,"59":50,"61":138,"63":29,"69":[2,97],"72":[1,69],"74":[2,97],"76":[1,140],"81":[1,30],"84":[2,97],"86":[1,56],"87":[1,57],"88":[1,68],"89":[2,97],"97":[1,55],"98":[2,97],"100":[2,97],"101":[2,97],"102":[2,97],"109":[2,97],"113":[2,97],"114":[2,97],"125":[2,97],"126":[2,97],"128":[2,97],"129":[2,97],"132":[2,97],"133":[2,97],"134":[2,97],"135":[2,97],"136":[2,97],"137":[2,97]},{"1":[2,48],"4":[2,48],"8":141,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"28":[2,48],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[2,48],"102":[2,48],"103":42,"104":[1,66],"105":43,"114":[2,48],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"125":[2,48],"126":[2,48],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":142,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,49],"4":[2,49],"27":[2,49],"28":[2,49],"49":[2,49],"54":[2,49],"57":[2,49],"69":[2,49],"74":[2,49],"84":[2,49],"89":[2,49],"94":[2,49],"95":[2,49],"98":[2,49],"100":[2,49],"101":[2,49],"102":[2,49],"109":[2,49],"113":[2,49],"114":[2,49],"119":[2,49],"121":[2,49],"125":[2,49],"126":[2,49],"128":[2,49],"129":[2,49],"132":[2,49],"133":[2,49],"134":[2,49],"135":[2,49],"136":[2,49],"137":[2,49]},{"1":[2,72],"4":[2,72],"27":[2,72],"28":[2,72],"39":[2,72],"49":[2,72],"54":[2,72],"57":[2,72],"64":[2,72],"65":[2,72],"66":[2,72],"68":[2,72],"69":[2,72],"70":[2,72],"71":[2,72],"74":[2,72],"82":[2,72],"83":[2,72],"84":[2,72],"89":[2,72],"98":[2,72],"100":[2,72],"101":[2,72],"102":[2,72],"109":[2,72],"113":[2,72],"114":[2,72],"125":[2,72],"126":[2,72],"128":[2,72],"129":[2,72],"132":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72]},{"1":[2,73],"4":[2,73],"27":[2,73],"28":[2,73],"39":[2,73],"49":[2,73],"54":[2,73],"57":[2,73],"64":[2,73],"65":[2,73],"66":[2,73],"68":[2,73],"69":[2,73],"70":[2,73],"71":[2,73],"74":[2,73],"82":[2,73],"83":[2,73],"84":[2,73],"89":[2,73],"98":[2,73],"100":[2,73],"101":[2,73],"102":[2,73],"109":[2,73],"113":[2,73],"114":[2,73],"125":[2,73],"126":[2,73],"128":[2,73],"129":[2,73],"132":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73]},{"1":[2,33],"4":[2,33],"27":[2,33],"28":[2,33],"49":[2,33],"54":[2,33],"57":[2,33],"64":[2,33],"65":[2,33],"66":[2,33],"68":[2,33],"69":[2,33],"70":[2,33],"71":[2,33],"74":[2,33],"82":[2,33],"83":[2,33],"84":[2,33],"89":[2,33],"98":[2,33],"100":[2,33],"101":[2,33],"102":[2,33],"109":[2,33],"113":[2,33],"114":[2,33],"125":[2,33],"126":[2,33],"128":[2,33],"129":[2,33],"132":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33]},{"1":[2,34],"4":[2,34],"27":[2,34],"28":[2,34],"49":[2,34],"54":[2,34],"57":[2,34],"64":[2,34],"65":[2,34],"66":[2,34],"68":[2,34],"69":[2,34],"70":[2,34],"71":[2,34],"74":[2,34],"82":[2,34],"83":[2,34],"84":[2,34],"89":[2,34],"98":[2,34],"100":[2,34],"101":[2,34],"102":[2,34],"109":[2,34],"113":[2,34],"114":[2,34],"125":[2,34],"126":[2,34],"128":[2,34],"129":[2,34],"132":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34]},{"1":[2,35],"4":[2,35],"27":[2,35],"28":[2,35],"49":[2,35],"54":[2,35],"57":[2,35],"64":[2,35],"65":[2,35],"66":[2,35],"68":[2,35],"69":[2,35],"70":[2,35],"71":[2,35],"74":[2,35],"82":[2,35],"83":[2,35],"84":[2,35],"89":[2,35],"98":[2,35],"100":[2,35],"101":[2,35],"102":[2,35],"109":[2,35],"113":[2,35],"114":[2,35],"125":[2,35],"126":[2,35],"128":[2,35],"129":[2,35],"132":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35]},{"1":[2,36],"4":[2,36],"27":[2,36],"28":[2,36],"49":[2,36],"54":[2,36],"57":[2,36],"64":[2,36],"65":[2,36],"66":[2,36],"68":[2,36],"69":[2,36],"70":[2,36],"71":[2,36],"74":[2,36],"82":[2,36],"83":[2,36],"84":[2,36],"89":[2,36],"98":[2,36],"100":[2,36],"101":[2,36],"102":[2,36],"109":[2,36],"113":[2,36],"114":[2,36],"125":[2,36],"126":[2,36],"128":[2,36],"129":[2,36],"132":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36]},{"8":143,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,115],"4":[2,115],"27":[2,115],"28":[2,115],"49":[2,115],"54":[2,115],"57":[2,115],"64":[2,115],"65":[2,115],"66":[2,115],"68":[2,115],"69":[2,115],"70":[2,115],"71":[2,115],"74":[2,115],"82":[2,115],"83":[2,115],"84":[2,115],"89":[2,115],"98":[2,115],"100":[2,115],"101":[2,115],"102":[2,115],"109":[2,115],"113":[2,115],"114":[2,115],"125":[2,115],"126":[2,115],"128":[2,115],"129":[2,115],"132":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115]},{"1":[2,116],"4":[2,116],"27":[2,116],"28":[2,116],"29":144,"30":[1,72],"49":[2,116],"54":[2,116],"57":[2,116],"64":[2,116],"65":[2,116],"66":[2,116],"68":[2,116],"69":[2,116],"70":[2,116],"71":[2,116],"74":[2,116],"82":[2,116],"83":[2,116],"84":[2,116],"89":[2,116],"98":[2,116],"100":[2,116],"101":[2,116],"102":[2,116],"109":[2,116],"113":[2,116],"114":[2,116],"125":[2,116],"126":[2,116],"128":[2,116],"129":[2,116],"132":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116]},{"4":[2,52],"27":[2,52]},{"4":[2,53],"27":[2,53]},{"1":[2,67],"4":[2,67],"27":[2,67],"28":[2,67],"39":[2,67],"49":[2,67],"54":[2,67],"57":[2,67],"64":[2,67],"65":[2,67],"66":[2,67],"68":[2,67],"69":[2,67],"70":[2,67],"71":[2,67],"74":[2,67],"76":[2,67],"82":[2,67],"83":[2,67],"84":[2,67],"89":[2,67],"98":[2,67],"100":[2,67],"101":[2,67],"102":[2,67],"109":[2,67],"113":[2,67],"114":[2,67],"125":[2,67],"126":[2,67],"128":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67]},{"1":[2,70],"4":[2,70],"27":[2,70],"28":[2,70],"39":[2,70],"49":[2,70],"54":[2,70],"57":[2,70],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,70],"70":[2,70],"71":[2,70],"74":[2,70],"76":[2,70],"82":[2,70],"83":[2,70],"84":[2,70],"89":[2,70],"98":[2,70],"100":[2,70],"101":[2,70],"102":[2,70],"109":[2,70],"113":[2,70],"114":[2,70],"125":[2,70],"126":[2,70],"128":[2,70],"129":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70]},{"8":145,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":146,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":147,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":148,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"4":[1,118],"6":149,"8":150,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,6],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"29":152,"30":[1,72],"58":154,"59":155,"72":[1,69],"88":[1,68],"106":151,"115":[1,153]},{"8":160,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,159],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":161,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"85":157,"86":[1,56],"87":[1,57],"88":[1,68],"89":[1,156],"90":158,"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"4":[2,87],"15":166,"27":[2,87],"29":167,"30":[1,72],"31":168,"32":[1,70],"33":[1,71],"40":163,"41":164,"43":165,"44":169,"46":[1,48],"54":[2,87],"73":162,"74":[2,87],"87":[1,116],"97":[1,55]},{"1":[2,31],"4":[2,31],"27":[2,31],"28":[2,31],"42":[2,31],"49":[2,31],"54":[2,31],"57":[2,31],"64":[2,31],"65":[2,31],"66":[2,31],"68":[2,31],"69":[2,31],"70":[2,31],"71":[2,31],"74":[2,31],"82":[2,31],"83":[2,31],"84":[2,31],"89":[2,31],"98":[2,31],"100":[2,31],"101":[2,31],"102":[2,31],"109":[2,31],"113":[2,31],"114":[2,31],"125":[2,31],"126":[2,31],"128":[2,31],"129":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31]},{"1":[2,32],"4":[2,32],"27":[2,32],"28":[2,32],"42":[2,32],"49":[2,32],"54":[2,32],"57":[2,32],"64":[2,32],"65":[2,32],"66":[2,32],"68":[2,32],"69":[2,32],"70":[2,32],"71":[2,32],"74":[2,32],"82":[2,32],"83":[2,32],"84":[2,32],"89":[2,32],"98":[2,32],"100":[2,32],"101":[2,32],"102":[2,32],"109":[2,32],"113":[2,32],"114":[2,32],"125":[2,32],"126":[2,32],"128":[2,32],"129":[2,32],"132":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32]},{"1":[2,30],"4":[2,30],"27":[2,30],"28":[2,30],"39":[2,30],"42":[2,30],"49":[2,30],"54":[2,30],"57":[2,30],"64":[2,30],"65":[2,30],"66":[2,30],"68":[2,30],"69":[2,30],"70":[2,30],"71":[2,30],"74":[2,30],"76":[2,30],"82":[2,30],"83":[2,30],"84":[2,30],"89":[2,30],"98":[2,30],"100":[2,30],"101":[2,30],"102":[2,30],"108":[2,30],"109":[2,30],"111":[2,30],"113":[2,30],"114":[2,30],"116":[2,30],"125":[2,30],"126":[2,30],"128":[2,30],"129":[2,30],"130":[2,30],"131":[2,30],"132":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30]},{"1":[2,29],"4":[2,29],"27":[2,29],"28":[2,29],"49":[2,29],"54":[2,29],"57":[2,29],"69":[2,29],"74":[2,29],"84":[2,29],"89":[2,29],"94":[2,29],"95":[2,29],"98":[2,29],"100":[2,29],"101":[2,29],"102":[2,29],"109":[2,29],"113":[2,29],"114":[2,29],"119":[2,29],"121":[2,29],"125":[2,29],"126":[2,29],"128":[2,29],"129":[2,29],"132":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29]},{"1":[2,7],"4":[2,7],"7":170,"8":7,"9":8,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"28":[2,7],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,4]},{"4":[1,74],"28":[1,171]},{"1":[2,28],"4":[2,28],"27":[2,28],"28":[2,28],"49":[2,28],"54":[2,28],"57":[2,28],"69":[2,28],"74":[2,28],"84":[2,28],"89":[2,28],"94":[2,28],"95":[2,28],"98":[2,28],"100":[2,28],"101":[2,28],"102":[2,28],"109":[2,28],"113":[2,28],"114":[2,28],"119":[2,28],"121":[2,28],"125":[2,28],"126":[2,28],"128":[2,28],"129":[2,28],"132":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28]},{"1":[2,193],"4":[2,193],"27":[2,193],"28":[2,193],"49":[2,193],"54":[2,193],"57":[2,193],"69":[2,193],"74":[2,193],"84":[2,193],"89":[2,193],"98":[2,193],"100":[2,193],"101":[2,193],"102":[2,193],"109":[2,193],"113":[2,193],"114":[2,193],"125":[2,193],"126":[2,193],"128":[2,193],"129":[2,193],"132":[2,193],"133":[2,193],"134":[2,193],"135":[2,193],"136":[2,193],"137":[2,193]},{"8":172,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":173,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":174,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":175,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":176,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":177,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":178,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":179,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":180,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,142],"4":[2,142],"27":[2,142],"28":[2,142],"49":[2,142],"54":[2,142],"57":[2,142],"69":[2,142],"74":[2,142],"84":[2,142],"89":[2,142],"98":[2,142],"100":[2,142],"101":[2,142],"102":[2,142],"109":[2,142],"113":[2,142],"114":[2,142],"125":[2,142],"126":[2,142],"128":[2,142],"129":[2,142],"132":[2,142],"133":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142]},{"1":[2,147],"4":[2,147],"27":[2,147],"28":[2,147],"49":[2,147],"54":[2,147],"57":[2,147],"69":[2,147],"74":[2,147],"84":[2,147],"89":[2,147],"98":[2,147],"100":[2,147],"101":[2,147],"102":[2,147],"109":[2,147],"113":[2,147],"114":[2,147],"125":[2,147],"126":[2,147],"128":[2,147],"129":[2,147],"132":[2,147],"133":[2,147],"134":[2,147],"135":[2,147],"136":[2,147],"137":[2,147]},{"8":181,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":182,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,141],"4":[2,141],"27":[2,141],"28":[2,141],"49":[2,141],"54":[2,141],"57":[2,141],"69":[2,141],"74":[2,141],"84":[2,141],"89":[2,141],"98":[2,141],"100":[2,141],"101":[2,141],"102":[2,141],"109":[2,141],"113":[2,141],"114":[2,141],"125":[2,141],"126":[2,141],"128":[2,141],"129":[2,141],"132":[2,141],"133":[2,141],"134":[2,141],"135":[2,141],"136":[2,141],"137":[2,141]},{"1":[2,146],"4":[2,146],"27":[2,146],"28":[2,146],"49":[2,146],"54":[2,146],"57":[2,146],"69":[2,146],"74":[2,146],"84":[2,146],"89":[2,146],"98":[2,146],"100":[2,146],"101":[2,146],"102":[2,146],"109":[2,146],"113":[2,146],"114":[2,146],"125":[2,146],"126":[2,146],"128":[2,146],"129":[2,146],"132":[2,146],"133":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146]},{"80":183,"83":[1,108]},{"1":[2,68],"4":[2,68],"27":[2,68],"28":[2,68],"39":[2,68],"49":[2,68],"54":[2,68],"57":[2,68],"64":[2,68],"65":[2,68],"66":[2,68],"68":[2,68],"69":[2,68],"70":[2,68],"71":[2,68],"74":[2,68],"76":[2,68],"82":[2,68],"83":[2,68],"84":[2,68],"89":[2,68],"98":[2,68],"100":[2,68],"101":[2,68],"102":[2,68],"109":[2,68],"113":[2,68],"114":[2,68],"125":[2,68],"126":[2,68],"128":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68]},{"83":[2,112]},{"29":184,"30":[1,72]},{"29":185,"30":[1,72]},{"1":[2,81],"4":[2,81],"27":[2,81],"28":[2,81],"29":186,"30":[1,72],"39":[2,81],"49":[2,81],"54":[2,81],"57":[2,81],"64":[2,81],"65":[2,81],"66":[2,81],"68":[2,81],"69":[2,81],"70":[2,81],"71":[2,81],"74":[2,81],"76":[2,81],"82":[2,81],"83":[2,81],"84":[2,81],"89":[2,81],"98":[2,81],"100":[2,81],"101":[2,81],"102":[2,81],"109":[2,81],"113":[2,81],"114":[2,81],"125":[2,81],"126":[2,81],"128":[2,81],"129":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81]},{"1":[2,82],"4":[2,82],"27":[2,82],"28":[2,82],"39":[2,82],"49":[2,82],"54":[2,82],"57":[2,82],"64":[2,82],"65":[2,82],"66":[2,82],"68":[2,82],"69":[2,82],"70":[2,82],"71":[2,82],"74":[2,82],"76":[2,82],"82":[2,82],"83":[2,82],"84":[2,82],"89":[2,82],"98":[2,82],"100":[2,82],"101":[2,82],"102":[2,82],"109":[2,82],"113":[2,82],"114":[2,82],"125":[2,82],"126":[2,82],"128":[2,82],"129":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82]},{"8":187,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"67":188,"68":[1,101],"70":[1,102],"71":[1,103]},{"67":189,"68":[1,101],"70":[1,102],"71":[1,103]},{"80":190,"83":[1,108]},{"1":[2,69],"4":[2,69],"27":[2,69],"28":[2,69],"39":[2,69],"49":[2,69],"54":[2,69],"57":[2,69],"64":[2,69],"65":[2,69],"66":[2,69],"68":[2,69],"69":[2,69],"70":[2,69],"71":[2,69],"74":[2,69],"76":[2,69],"82":[2,69],"83":[2,69],"84":[2,69],"89":[2,69],"98":[2,69],"100":[2,69],"101":[2,69],"102":[2,69],"109":[2,69],"113":[2,69],"114":[2,69],"125":[2,69],"126":[2,69],"128":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69]},{"8":191,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,192],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,110],"4":[2,110],"27":[2,110],"28":[2,110],"49":[2,110],"54":[2,110],"57":[2,110],"64":[2,110],"65":[2,110],"66":[2,110],"68":[2,110],"69":[2,110],"70":[2,110],"71":[2,110],"74":[2,110],"82":[2,110],"83":[2,110],"84":[2,110],"89":[2,110],"98":[2,110],"100":[2,110],"101":[2,110],"102":[2,110],"109":[2,110],"113":[2,110],"114":[2,110],"125":[2,110],"126":[2,110],"128":[2,110],"129":[2,110],"132":[2,110],"133":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110]},{"8":160,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,159],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":161,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"84":[1,193],"85":194,"86":[1,56],"87":[1,57],"88":[1,68],"90":158,"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"49":[1,195],"54":[1,196]},{"49":[2,57],"54":[2,57]},{"39":[1,198],"49":[2,59],"54":[2,59],"57":[1,197]},{"39":[2,62],"49":[2,62],"54":[2,62],"57":[2,62]},{"39":[2,63],"49":[2,63],"54":[2,63],"57":[2,63]},{"39":[2,64],"49":[2,64],"54":[2,64],"57":[2,64]},{"39":[2,65],"49":[2,65],"54":[2,65],"57":[2,65]},{"29":144,"30":[1,72]},{"1":[2,51],"4":[2,51],"27":[2,51],"28":[2,51],"49":[2,51],"54":[2,51],"57":[2,51],"69":[2,51],"74":[2,51],"84":[2,51],"89":[2,51],"98":[2,51],"100":[2,51],"101":[2,51],"102":[2,51],"109":[2,51],"113":[2,51],"114":[2,51],"125":[2,51],"126":[2,51],"128":[2,51],"129":[2,51],"132":[2,51],"133":[2,51],"134":[2,51],"135":[2,51],"136":[2,51],"137":[2,51]},{"15":73,"46":[1,48]},{"1":[2,186],"4":[2,186],"27":[2,186],"28":[2,186],"49":[2,186],"54":[2,186],"57":[2,186],"69":[2,186],"74":[2,186],"84":[2,186],"89":[2,186],"98":[2,186],"99":88,"100":[2,186],"101":[2,186],"102":[2,186],"105":89,"109":[2,186],"113":[2,186],"114":[2,186],"125":[2,186],"126":[2,186],"128":[2,186],"129":[2,186],"132":[1,78],"133":[2,186],"134":[2,186],"135":[2,186],"136":[2,186],"137":[2,186]},{"99":92,"100":[1,64],"102":[1,65],"105":93,"114":[1,67],"125":[1,90],"126":[1,91]},{"1":[2,187],"4":[2,187],"27":[2,187],"28":[2,187],"49":[2,187],"54":[2,187],"57":[2,187],"69":[2,187],"74":[2,187],"84":[2,187],"89":[2,187],"98":[2,187],"99":88,"100":[2,187],"101":[2,187],"102":[2,187],"105":89,"109":[2,187],"113":[2,187],"114":[2,187],"125":[2,187],"126":[2,187],"128":[2,187],"129":[2,187],"132":[1,78],"133":[2,187],"134":[2,187],"135":[2,187],"136":[2,187],"137":[2,187]},{"1":[2,188],"4":[2,188],"27":[2,188],"28":[2,188],"49":[2,188],"54":[2,188],"57":[2,188],"69":[2,188],"74":[2,188],"84":[2,188],"89":[2,188],"98":[2,188],"99":88,"100":[2,188],"101":[2,188],"102":[2,188],"105":89,"109":[2,188],"113":[2,188],"114":[2,188],"125":[2,188],"126":[2,188],"128":[2,188],"129":[2,188],"132":[1,78],"133":[2,188],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188]},{"1":[2,189],"4":[2,189],"27":[2,189],"28":[2,189],"49":[2,189],"54":[2,189],"57":[2,189],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,189],"70":[2,71],"71":[2,71],"74":[2,189],"82":[2,71],"83":[2,71],"84":[2,189],"89":[2,189],"98":[2,189],"100":[2,189],"101":[2,189],"102":[2,189],"109":[2,189],"113":[2,189],"114":[2,189],"125":[2,189],"126":[2,189],"128":[2,189],"129":[2,189],"132":[2,189],"133":[2,189],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189]},{"62":95,"64":[1,97],"65":[1,98],"66":[1,99],"67":100,"68":[1,101],"70":[1,102],"71":[1,103],"79":94,"82":[1,96],"83":[2,111]},{"62":105,"64":[1,97],"65":[1,98],"66":[1,99],"67":100,"68":[1,101],"70":[1,102],"71":[1,103],"79":104,"82":[1,96],"83":[2,111]},{"1":[2,74],"4":[2,74],"27":[2,74],"28":[2,74],"49":[2,74],"54":[2,74],"57":[2,74],"64":[2,74],"65":[2,74],"66":[2,74],"68":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"74":[2,74],"82":[2,74],"83":[2,74],"84":[2,74],"89":[2,74],"98":[2,74],"100":[2,74],"101":[2,74],"102":[2,74],"109":[2,74],"113":[2,74],"114":[2,74],"125":[2,74],"126":[2,74],"128":[2,74],"129":[2,74],"132":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74]},{"1":[2,190],"4":[2,190],"27":[2,190],"28":[2,190],"49":[2,190],"54":[2,190],"57":[2,190],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,190],"70":[2,71],"71":[2,71],"74":[2,190],"82":[2,71],"83":[2,71],"84":[2,190],"89":[2,190],"98":[2,190],"100":[2,190],"101":[2,190],"102":[2,190],"109":[2,190],"113":[2,190],"114":[2,190],"125":[2,190],"126":[2,190],"128":[2,190],"129":[2,190],"132":[2,190],"133":[2,190],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190]},{"1":[2,191],"4":[2,191],"27":[2,191],"28":[2,191],"49":[2,191],"54":[2,191],"57":[2,191],"69":[2,191],"74":[2,191],"84":[2,191],"89":[2,191],"98":[2,191],"100":[2,191],"101":[2,191],"102":[2,191],"109":[2,191],"113":[2,191],"114":[2,191],"125":[2,191],"126":[2,191],"128":[2,191],"129":[2,191],"132":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191]},{"1":[2,192],"4":[2,192],"27":[2,192],"28":[2,192],"49":[2,192],"54":[2,192],"57":[2,192],"69":[2,192],"74":[2,192],"84":[2,192],"89":[2,192],"98":[2,192],"100":[2,192],"101":[2,192],"102":[2,192],"109":[2,192],"113":[2,192],"114":[2,192],"125":[2,192],"126":[2,192],"128":[2,192],"129":[2,192],"132":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192]},{"8":199,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,200],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":201,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"4":[1,118],"6":203,"27":[1,6],"123":[1,202]},{"1":[2,129],"4":[2,129],"27":[2,129],"28":[2,129],"49":[2,129],"54":[2,129],"57":[2,129],"69":[2,129],"74":[2,129],"84":[2,129],"89":[2,129],"93":204,"94":[1,205],"95":[1,206],"98":[2,129],"100":[2,129],"101":[2,129],"102":[2,129],"109":[2,129],"113":[2,129],"114":[2,129],"125":[2,129],"126":[2,129],"128":[2,129],"129":[2,129],"132":[2,129],"133":[2,129],"134":[2,129],"135":[2,129],"136":[2,129],"137":[2,129]},{"1":[2,140],"4":[2,140],"27":[2,140],"28":[2,140],"49":[2,140],"54":[2,140],"57":[2,140],"69":[2,140],"74":[2,140],"84":[2,140],"89":[2,140],"98":[2,140],"100":[2,140],"101":[2,140],"102":[2,140],"109":[2,140],"113":[2,140],"114":[2,140],"125":[2,140],"126":[2,140],"128":[2,140],"129":[2,140],"132":[2,140],"133":[2,140],"134":[2,140],"135":[2,140],"136":[2,140],"137":[2,140]},{"1":[2,148],"4":[2,148],"27":[2,148],"28":[2,148],"49":[2,148],"54":[2,148],"57":[2,148],"69":[2,148],"74":[2,148],"84":[2,148],"89":[2,148],"98":[2,148],"100":[2,148],"101":[2,148],"102":[2,148],"109":[2,148],"113":[2,148],"114":[2,148],"125":[2,148],"126":[2,148],"128":[2,148],"129":[2,148],"132":[2,148],"133":[2,148],"134":[2,148],"135":[2,148],"136":[2,148],"137":[2,148]},{"27":[1,207],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"118":208,"120":209,"121":[1,210]},{"1":[2,92],"4":[2,92],"27":[1,212],"28":[2,92],"49":[2,92],"54":[2,92],"57":[2,92],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,92],"70":[2,71],"71":[2,71],"74":[2,92],"76":[1,211],"82":[2,71],"83":[2,71],"84":[2,92],"89":[2,92],"98":[2,92],"100":[2,92],"101":[2,92],"102":[2,92],"109":[2,92],"113":[2,92],"114":[2,92],"125":[2,92],"126":[2,92],"128":[2,92],"129":[2,92],"132":[2,92],"133":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92]},{"4":[2,103],"15":166,"28":[2,103],"29":167,"30":[1,72],"31":168,"32":[1,70],"33":[1,71],"40":216,"41":164,"43":217,"44":169,"46":[1,48],"72":[1,215],"77":213,"78":214,"87":[1,116],"97":[1,55]},{"16":218,"17":125,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":126,"43":61,"44":28,"58":49,"59":50,"61":219,"63":29,"72":[1,69],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"97":[1,55]},{"1":[2,47],"4":[2,47],"28":[2,47],"99":88,"100":[2,47],"102":[2,47],"105":89,"114":[2,47],"125":[2,47],"126":[2,47],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,134],"4":[2,134],"28":[2,134],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[2,134],"126":[2,134],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"98":[1,220],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,117],"4":[2,117],"27":[2,117],"28":[2,117],"39":[2,117],"42":[2,117],"49":[2,117],"54":[2,117],"57":[2,117],"64":[2,117],"65":[2,117],"66":[2,117],"68":[2,117],"69":[2,117],"70":[2,117],"71":[2,117],"74":[2,117],"76":[2,117],"82":[2,117],"83":[2,117],"84":[2,117],"89":[2,117],"98":[2,117],"100":[2,117],"101":[2,117],"102":[2,117],"109":[2,117],"113":[2,117],"114":[2,117],"125":[2,117],"126":[2,117],"128":[2,117],"129":[2,117],"130":[2,117],"131":[2,117],"132":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117]},{"4":[1,118],"6":221,"27":[1,6],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"4":[1,118],"6":222,"27":[1,6],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,136],"4":[2,136],"27":[2,136],"28":[2,136],"49":[2,136],"54":[2,136],"57":[2,136],"69":[2,136],"74":[2,136],"84":[2,136],"89":[2,136],"98":[2,136],"99":88,"100":[1,64],"101":[1,223],"102":[1,65],"105":89,"109":[2,136],"113":[2,136],"114":[1,67],"125":[2,136],"126":[2,136],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,138],"4":[2,138],"27":[2,138],"28":[2,138],"49":[2,138],"54":[2,138],"57":[2,138],"69":[2,138],"74":[2,138],"84":[2,138],"89":[2,138],"98":[2,138],"99":88,"100":[1,64],"101":[1,224],"102":[1,65],"105":89,"109":[2,138],"113":[2,138],"114":[1,67],"125":[2,138],"126":[2,138],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,144],"4":[2,144],"27":[2,144],"28":[2,144],"49":[2,144],"54":[2,144],"57":[2,144],"69":[2,144],"74":[2,144],"84":[2,144],"89":[2,144],"98":[2,144],"100":[2,144],"101":[2,144],"102":[2,144],"109":[2,144],"113":[2,144],"114":[2,144],"125":[2,144],"126":[2,144],"128":[2,144],"129":[2,144],"132":[2,144],"133":[2,144],"134":[2,144],"135":[2,144],"136":[2,144],"137":[2,144]},{"1":[2,145],"4":[2,145],"27":[2,145],"28":[2,145],"49":[2,145],"54":[2,145],"57":[2,145],"69":[2,145],"74":[2,145],"84":[2,145],"89":[2,145],"98":[2,145],"99":88,"100":[1,64],"101":[2,145],"102":[1,65],"105":89,"109":[2,145],"113":[2,145],"114":[1,67],"125":[2,145],"126":[2,145],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"54":[1,226],"107":225,"108":[1,227]},{"54":[2,149],"108":[2,149],"110":228,"111":[1,230],"116":[1,229]},{"29":231,"30":[1,72]},{"54":[2,150],"108":[2,150],"111":[2,150]},{"54":[2,151],"108":[2,151],"111":[2,151]},{"1":[2,118],"4":[2,118],"27":[2,118],"28":[2,118],"39":[2,118],"49":[2,118],"54":[2,118],"57":[2,118],"64":[2,118],"65":[2,118],"66":[2,118],"68":[2,118],"69":[2,118],"70":[2,118],"71":[2,118],"74":[2,118],"82":[2,118],"83":[2,118],"84":[2,118],"89":[2,118],"98":[2,118],"100":[2,118],"101":[2,118],"102":[2,118],"108":[2,118],"109":[2,118],"111":[2,118],"113":[2,118],"114":[2,118],"125":[2,118],"126":[2,118],"128":[2,118],"129":[2,118],"132":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118]},{"4":[2,54],"27":[2,54],"53":232,"54":[1,233],"89":[2,54]},{"4":[2,120],"27":[2,120],"28":[2,120],"54":[2,120],"84":[2,120],"89":[2,120]},{"8":160,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,159],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":161,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"85":234,"86":[1,56],"87":[1,57],"88":[1,68],"90":158,"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"4":[2,125],"27":[2,125],"28":[2,125],"54":[2,125],"57":[1,235],"84":[2,125],"89":[2,125],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"4":[2,126],"27":[2,126],"28":[2,126],"54":[2,126],"84":[2,126],"89":[2,126]},{"4":[2,54],"27":[2,54],"53":236,"54":[1,237],"74":[2,54]},{"4":[2,88],"27":[2,88],"28":[2,88],"54":[2,88],"74":[2,88]},{"4":[2,39],"27":[2,39],"28":[2,39],"42":[1,238],"54":[2,39],"74":[2,39]},{"4":[2,42],"27":[2,42],"28":[2,42],"54":[2,42],"74":[2,42]},{"4":[2,43],"27":[2,43],"28":[2,43],"54":[2,43],"74":[2,43]},{"4":[2,44],"27":[2,44],"28":[2,44],"42":[2,44],"54":[2,44],"74":[2,44]},{"4":[2,45],"27":[2,45],"28":[2,45],"42":[2,45],"54":[2,45],"74":[2,45]},{"4":[2,46],"27":[2,46],"28":[2,46],"42":[2,46],"54":[2,46],"74":[2,46]},{"1":[2,6],"4":[2,6],"28":[2,6]},{"1":[2,27],"4":[2,27],"27":[2,27],"28":[2,27],"49":[2,27],"54":[2,27],"57":[2,27],"69":[2,27],"74":[2,27],"84":[2,27],"89":[2,27],"94":[2,27],"95":[2,27],"98":[2,27],"100":[2,27],"101":[2,27],"102":[2,27],"109":[2,27],"113":[2,27],"114":[2,27],"119":[2,27],"121":[2,27],"125":[2,27],"126":[2,27],"128":[2,27],"129":[2,27],"132":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27]},{"1":[2,194],"4":[2,194],"27":[2,194],"28":[2,194],"49":[2,194],"54":[2,194],"57":[2,194],"69":[2,194],"74":[2,194],"84":[2,194],"89":[2,194],"98":[2,194],"99":88,"100":[2,194],"101":[2,194],"102":[2,194],"105":89,"109":[2,194],"113":[2,194],"114":[2,194],"125":[2,194],"126":[2,194],"128":[2,194],"129":[2,194],"132":[1,78],"133":[1,81],"134":[2,194],"135":[2,194],"136":[2,194],"137":[2,194]},{"1":[2,195],"4":[2,195],"27":[2,195],"28":[2,195],"49":[2,195],"54":[2,195],"57":[2,195],"69":[2,195],"74":[2,195],"84":[2,195],"89":[2,195],"98":[2,195],"99":88,"100":[2,195],"101":[2,195],"102":[2,195],"105":89,"109":[2,195],"113":[2,195],"114":[2,195],"125":[2,195],"126":[2,195],"128":[2,195],"129":[2,195],"132":[1,78],"133":[1,81],"134":[2,195],"135":[2,195],"136":[2,195],"137":[2,195]},{"1":[2,196],"4":[2,196],"27":[2,196],"28":[2,196],"49":[2,196],"54":[2,196],"57":[2,196],"69":[2,196],"74":[2,196],"84":[2,196],"89":[2,196],"98":[2,196],"99":88,"100":[2,196],"101":[2,196],"102":[2,196],"105":89,"109":[2,196],"113":[2,196],"114":[2,196],"125":[2,196],"126":[2,196],"128":[2,196],"129":[2,196],"132":[1,78],"133":[2,196],"134":[2,196],"135":[2,196],"136":[2,196],"137":[2,196]},{"1":[2,197],"4":[2,197],"27":[2,197],"28":[2,197],"49":[2,197],"54":[2,197],"57":[2,197],"69":[2,197],"74":[2,197],"84":[2,197],"89":[2,197],"98":[2,197],"99":88,"100":[2,197],"101":[2,197],"102":[2,197],"105":89,"109":[2,197],"113":[2,197],"114":[2,197],"125":[2,197],"126":[2,197],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[2,197],"135":[2,197],"136":[2,197],"137":[2,197]},{"1":[2,198],"4":[2,198],"27":[2,198],"28":[2,198],"49":[2,198],"54":[2,198],"57":[2,198],"69":[2,198],"74":[2,198],"84":[2,198],"89":[2,198],"98":[2,198],"99":88,"100":[2,198],"101":[2,198],"102":[2,198],"105":89,"109":[2,198],"113":[2,198],"114":[2,198],"125":[2,198],"126":[2,198],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[2,198],"136":[2,198],"137":[1,85]},{"1":[2,199],"4":[2,199],"27":[2,199],"28":[2,199],"49":[2,199],"54":[2,199],"57":[2,199],"69":[2,199],"74":[2,199],"84":[2,199],"89":[2,199],"98":[2,199],"99":88,"100":[2,199],"101":[2,199],"102":[2,199],"105":89,"109":[2,199],"113":[2,199],"114":[2,199],"125":[2,199],"126":[2,199],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[2,199],"137":[1,85]},{"1":[2,200],"4":[2,200],"27":[2,200],"28":[2,200],"49":[2,200],"54":[2,200],"57":[2,200],"69":[2,200],"74":[2,200],"84":[2,200],"89":[2,200],"98":[2,200],"99":88,"100":[2,200],"101":[2,200],"102":[2,200],"105":89,"109":[2,200],"113":[2,200],"114":[2,200],"125":[2,200],"126":[2,200],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[2,200],"136":[2,200],"137":[2,200]},{"1":[2,183],"4":[2,183],"27":[2,183],"28":[2,183],"49":[2,183],"54":[2,183],"57":[2,183],"69":[2,183],"74":[2,183],"84":[2,183],"89":[2,183],"98":[2,183],"99":88,"100":[1,64],"101":[2,183],"102":[1,65],"105":89,"109":[2,183],"113":[2,183],"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,185],"4":[2,185],"27":[2,185],"28":[2,185],"49":[2,185],"54":[2,185],"57":[2,185],"69":[2,185],"74":[2,185],"84":[2,185],"89":[2,185],"98":[2,185],"99":88,"100":[1,64],"101":[2,185],"102":[1,65],"105":89,"109":[2,185],"113":[2,185],"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,182],"4":[2,182],"27":[2,182],"28":[2,182],"49":[2,182],"54":[2,182],"57":[2,182],"69":[2,182],"74":[2,182],"84":[2,182],"89":[2,182],"98":[2,182],"99":88,"100":[1,64],"101":[2,182],"102":[1,65],"105":89,"109":[2,182],"113":[2,182],"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,184],"4":[2,184],"27":[2,184],"28":[2,184],"49":[2,184],"54":[2,184],"57":[2,184],"69":[2,184],"74":[2,184],"84":[2,184],"89":[2,184],"98":[2,184],"99":88,"100":[1,64],"101":[2,184],"102":[1,65],"105":89,"109":[2,184],"113":[2,184],"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,107],"4":[2,107],"27":[2,107],"28":[2,107],"49":[2,107],"54":[2,107],"57":[2,107],"64":[2,107],"65":[2,107],"66":[2,107],"68":[2,107],"69":[2,107],"70":[2,107],"71":[2,107],"74":[2,107],"82":[2,107],"83":[2,107],"84":[2,107],"89":[2,107],"98":[2,107],"100":[2,107],"101":[2,107],"102":[2,107],"109":[2,107],"113":[2,107],"114":[2,107],"125":[2,107],"126":[2,107],"128":[2,107],"129":[2,107],"132":[2,107],"133":[2,107],"134":[2,107],"135":[2,107],"136":[2,107],"137":[2,107]},{"1":[2,78],"4":[2,78],"27":[2,78],"28":[2,78],"39":[2,78],"49":[2,78],"54":[2,78],"57":[2,78],"64":[2,78],"65":[2,78],"66":[2,78],"68":[2,78],"69":[2,78],"70":[2,78],"71":[2,78],"74":[2,78],"76":[2,78],"82":[2,78],"83":[2,78],"84":[2,78],"89":[2,78],"98":[2,78],"100":[2,78],"101":[2,78],"102":[2,78],"109":[2,78],"113":[2,78],"114":[2,78],"125":[2,78],"126":[2,78],"128":[2,78],"129":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78]},{"1":[2,79],"4":[2,79],"27":[2,79],"28":[2,79],"39":[2,79],"49":[2,79],"54":[2,79],"57":[2,79],"64":[2,79],"65":[2,79],"66":[2,79],"68":[2,79],"69":[2,79],"70":[2,79],"71":[2,79],"74":[2,79],"76":[2,79],"82":[2,79],"83":[2,79],"84":[2,79],"89":[2,79],"98":[2,79],"100":[2,79],"101":[2,79],"102":[2,79],"109":[2,79],"113":[2,79],"114":[2,79],"125":[2,79],"126":[2,79],"128":[2,79],"129":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79]},{"1":[2,80],"4":[2,80],"27":[2,80],"28":[2,80],"39":[2,80],"49":[2,80],"54":[2,80],"57":[2,80],"64":[2,80],"65":[2,80],"66":[2,80],"68":[2,80],"69":[2,80],"70":[2,80],"71":[2,80],"74":[2,80],"76":[2,80],"82":[2,80],"83":[2,80],"84":[2,80],"89":[2,80],"98":[2,80],"100":[2,80],"101":[2,80],"102":[2,80],"109":[2,80],"113":[2,80],"114":[2,80],"125":[2,80],"126":[2,80],"128":[2,80],"129":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80]},{"69":[1,239],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,84],"4":[2,84],"27":[2,84],"28":[2,84],"39":[2,84],"49":[2,84],"54":[2,84],"57":[2,84],"64":[2,84],"65":[2,84],"66":[2,84],"68":[2,84],"69":[2,84],"70":[2,84],"71":[2,84],"74":[2,84],"76":[2,84],"82":[2,84],"83":[2,84],"84":[2,84],"89":[2,84],"98":[2,84],"100":[2,84],"101":[2,84],"102":[2,84],"109":[2,84],"113":[2,84],"114":[2,84],"125":[2,84],"126":[2,84],"128":[2,84],"129":[2,84],"130":[2,84],"131":[2,84],"132":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84]},{"1":[2,85],"4":[2,85],"27":[2,85],"28":[2,85],"39":[2,85],"49":[2,85],"54":[2,85],"57":[2,85],"64":[2,85],"65":[2,85],"66":[2,85],"68":[2,85],"69":[2,85],"70":[2,85],"71":[2,85],"74":[2,85],"76":[2,85],"82":[2,85],"83":[2,85],"84":[2,85],"89":[2,85],"98":[2,85],"100":[2,85],"101":[2,85],"102":[2,85],"109":[2,85],"113":[2,85],"114":[2,85],"125":[2,85],"126":[2,85],"128":[2,85],"129":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"133":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85]},{"1":[2,108],"4":[2,108],"27":[2,108],"28":[2,108],"49":[2,108],"54":[2,108],"57":[2,108],"64":[2,108],"65":[2,108],"66":[2,108],"68":[2,108],"69":[2,108],"70":[2,108],"71":[2,108],"74":[2,108],"82":[2,108],"83":[2,108],"84":[2,108],"89":[2,108],"98":[2,108],"100":[2,108],"101":[2,108],"102":[2,108],"109":[2,108],"113":[2,108],"114":[2,108],"125":[2,108],"126":[2,108],"128":[2,108],"129":[2,108],"132":[2,108],"133":[2,108],"134":[2,108],"135":[2,108],"136":[2,108],"137":[2,108]},{"1":[2,37],"4":[2,37],"27":[2,37],"28":[2,37],"49":[2,37],"54":[2,37],"57":[2,37],"69":[2,37],"74":[2,37],"84":[2,37],"89":[2,37],"98":[2,37],"99":88,"100":[2,37],"101":[2,37],"102":[2,37],"105":89,"109":[2,37],"113":[2,37],"114":[2,37],"125":[2,37],"126":[2,37],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"8":240,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,113],"4":[2,113],"27":[2,113],"28":[2,113],"49":[2,113],"54":[2,113],"57":[2,113],"64":[2,113],"65":[2,113],"66":[2,113],"68":[2,113],"69":[2,113],"70":[2,113],"71":[2,113],"74":[2,113],"82":[2,113],"83":[2,113],"84":[2,113],"89":[2,113],"98":[2,113],"100":[2,113],"101":[2,113],"102":[2,113],"109":[2,113],"113":[2,113],"114":[2,113],"125":[2,113],"126":[2,113],"128":[2,113],"129":[2,113],"132":[2,113],"133":[2,113],"134":[2,113],"135":[2,113],"136":[2,113],"137":[2,113]},{"4":[2,54],"27":[2,54],"53":241,"54":[1,233],"84":[2,54]},{"50":242,"51":[1,58],"52":[1,59]},{"29":112,"30":[1,72],"43":113,"55":243,"56":111,"58":114,"59":115,"72":[1,69],"87":[1,116],"88":[1,68]},{"49":[2,60],"54":[2,60]},{"8":244,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,201],"4":[2,201],"27":[2,201],"28":[2,201],"49":[2,201],"54":[2,201],"57":[2,201],"69":[2,201],"74":[2,201],"84":[2,201],"89":[2,201],"98":[2,201],"99":88,"100":[2,201],"101":[2,201],"102":[2,201],"105":89,"109":[2,201],"113":[2,201],"114":[2,201],"125":[2,201],"126":[2,201],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"8":245,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,203],"4":[2,203],"27":[2,203],"28":[2,203],"49":[2,203],"54":[2,203],"57":[2,203],"69":[2,203],"74":[2,203],"84":[2,203],"89":[2,203],"98":[2,203],"99":88,"100":[2,203],"101":[2,203],"102":[2,203],"105":89,"109":[2,203],"113":[2,203],"114":[2,203],"125":[2,203],"126":[2,203],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"8":246,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,180],"4":[2,180],"27":[2,180],"28":[2,180],"49":[2,180],"54":[2,180],"57":[2,180],"69":[2,180],"74":[2,180],"84":[2,180],"89":[2,180],"98":[2,180],"100":[2,180],"101":[2,180],"102":[2,180],"109":[2,180],"113":[2,180],"114":[2,180],"119":[2,180],"125":[2,180],"126":[2,180],"128":[2,180],"129":[2,180],"132":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180]},{"1":[2,130],"4":[2,130],"27":[2,130],"28":[2,130],"49":[2,130],"54":[2,130],"57":[2,130],"69":[2,130],"74":[2,130],"84":[2,130],"89":[2,130],"94":[1,247],"98":[2,130],"100":[2,130],"101":[2,130],"102":[2,130],"109":[2,130],"113":[2,130],"114":[2,130],"125":[2,130],"126":[2,130],"128":[2,130],"129":[2,130],"132":[2,130],"133":[2,130],"134":[2,130],"135":[2,130],"136":[2,130],"137":[2,130]},{"4":[1,118],"6":248,"27":[1,6]},{"29":249,"30":[1,72]},{"118":250,"120":209,"121":[1,210]},{"28":[1,251],"119":[1,252],"120":253,"121":[1,210]},{"28":[2,173],"119":[2,173],"121":[2,173]},{"8":255,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"91":254,"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"16":256,"17":125,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":126,"43":61,"44":28,"58":49,"59":50,"61":219,"63":29,"72":[1,69],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"97":[1,55]},{"4":[2,103],"15":166,"28":[2,103],"29":167,"30":[1,72],"31":168,"32":[1,70],"33":[1,71],"40":216,"41":164,"43":217,"44":169,"46":[1,48],"72":[1,215],"77":257,"78":214,"87":[1,116],"97":[1,55]},{"4":[1,259],"28":[1,258]},{"4":[2,104],"28":[2,104],"74":[2,104]},{"4":[2,103],"15":166,"29":167,"30":[1,72],"31":168,"32":[1,70],"33":[1,71],"40":216,"41":164,"43":217,"44":169,"46":[1,48],"72":[1,215],"74":[2,103],"77":260,"78":214,"87":[1,116],"97":[1,55]},{"4":[2,100],"28":[2,100],"74":[2,100]},{"4":[2,42],"28":[2,42],"42":[1,261],"74":[2,42]},{"1":[2,98],"4":[2,98],"27":[1,262],"28":[2,98],"49":[2,98],"54":[2,98],"57":[2,98],"62":95,"64":[1,97],"65":[1,98],"66":[1,99],"67":100,"68":[1,101],"69":[2,98],"70":[1,102],"71":[1,103],"74":[2,98],"79":94,"82":[1,96],"83":[2,111],"84":[2,98],"89":[2,98],"98":[2,98],"100":[2,98],"101":[2,98],"102":[2,98],"109":[2,98],"113":[2,98],"114":[2,98],"125":[2,98],"126":[2,98],"128":[2,98],"129":[2,98],"132":[2,98],"133":[2,98],"134":[2,98],"135":[2,98],"136":[2,98],"137":[2,98]},{"1":[2,71],"4":[2,71],"27":[2,71],"28":[2,71],"49":[2,71],"54":[2,71],"57":[2,71],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"74":[2,71],"82":[2,71],"83":[2,71],"84":[2,71],"89":[2,71],"98":[2,71],"100":[2,71],"101":[2,71],"102":[2,71],"109":[2,71],"113":[2,71],"114":[2,71],"125":[2,71],"126":[2,71],"128":[2,71],"129":[2,71],"132":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71]},{"1":[2,135],"4":[2,135],"27":[2,135],"28":[2,135],"42":[2,135],"49":[2,135],"54":[2,135],"57":[2,135],"64":[2,135],"65":[2,135],"66":[2,135],"68":[2,135],"69":[2,135],"70":[2,135],"71":[2,135],"74":[2,135],"82":[2,135],"83":[2,135],"84":[2,135],"89":[2,135],"98":[2,135],"100":[2,135],"101":[2,135],"102":[2,135],"109":[2,135],"113":[2,135],"114":[2,135],"125":[2,135],"126":[2,135],"128":[2,135],"129":[2,135],"132":[2,135],"133":[2,135],"134":[2,135],"135":[2,135],"136":[2,135],"137":[2,135]},{"1":[2,177],"4":[2,177],"27":[2,177],"28":[2,177],"49":[2,177],"54":[2,177],"57":[2,177],"69":[2,177],"74":[2,177],"84":[2,177],"89":[2,177],"98":[2,177],"100":[2,177],"101":[2,177],"102":[2,177],"109":[2,177],"113":[2,177],"114":[2,177],"119":[2,177],"125":[2,177],"126":[2,177],"128":[2,177],"129":[2,177],"132":[2,177],"133":[2,177],"134":[2,177],"135":[2,177],"136":[2,177],"137":[2,177]},{"1":[2,178],"4":[2,178],"27":[2,178],"28":[2,178],"49":[2,178],"54":[2,178],"57":[2,178],"69":[2,178],"74":[2,178],"84":[2,178],"89":[2,178],"98":[2,178],"100":[2,178],"101":[2,178],"102":[2,178],"109":[2,178],"113":[2,178],"114":[2,178],"119":[2,178],"125":[2,178],"126":[2,178],"128":[2,178],"129":[2,178],"132":[2,178],"133":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178]},{"8":263,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":264,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,162],"4":[2,162],"27":[2,162],"28":[2,162],"49":[2,162],"54":[2,162],"57":[2,162],"69":[2,162],"74":[2,162],"84":[2,162],"89":[2,162],"98":[2,162],"100":[2,162],"101":[2,162],"102":[2,162],"109":[2,162],"113":[2,162],"114":[2,162],"125":[2,162],"126":[2,162],"128":[2,162],"129":[2,162],"132":[2,162],"133":[2,162],"134":[2,162],"135":[2,162],"136":[2,162],"137":[2,162]},{"29":265,"30":[1,72],"58":154,"59":155,"72":[1,69],"88":[1,68],"106":266},{"8":267,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,164],"4":[2,164],"27":[2,164],"28":[2,164],"49":[2,164],"54":[2,164],"57":[2,164],"69":[2,164],"74":[2,164],"84":[2,164],"89":[2,164],"98":[2,164],"100":[2,164],"101":[2,164],"102":[2,164],"109":[2,164],"113":[2,164],"114":[2,164],"125":[2,164],"126":[2,164],"128":[2,164],"129":[2,164],"132":[2,164],"133":[2,164],"134":[2,164],"135":[2,164],"136":[2,164],"137":[2,164]},{"8":268,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":269,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"54":[1,271],"110":270,"111":[1,230]},{"4":[1,273],"27":[1,274],"89":[1,272]},{"4":[2,55],"8":160,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[2,55],"28":[2,55],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":161,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"84":[2,55],"86":[1,56],"87":[1,57],"88":[1,68],"89":[2,55],"90":275,"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"4":[2,54],"27":[2,54],"28":[2,54],"53":276,"54":[1,233]},{"4":[2,66],"27":[2,66],"28":[2,66],"54":[2,66],"84":[2,66],"89":[2,66]},{"4":[1,278],"27":[1,279],"74":[1,277]},{"4":[2,55],"15":166,"27":[2,55],"28":[2,55],"29":167,"30":[1,72],"31":168,"32":[1,70],"33":[1,71],"40":280,"41":164,"43":165,"44":169,"46":[1,48],"74":[2,55],"87":[1,116],"97":[1,55]},{"8":281,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,282],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,83],"4":[2,83],"27":[2,83],"28":[2,83],"39":[2,83],"49":[2,83],"54":[2,83],"57":[2,83],"64":[2,83],"65":[2,83],"66":[2,83],"68":[2,83],"69":[2,83],"70":[2,83],"71":[2,83],"74":[2,83],"76":[2,83],"82":[2,83],"83":[2,83],"84":[2,83],"89":[2,83],"98":[2,83],"100":[2,83],"101":[2,83],"102":[2,83],"109":[2,83],"113":[2,83],"114":[2,83],"125":[2,83],"126":[2,83],"128":[2,83],"129":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83]},{"28":[1,283],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"4":[1,273],"27":[1,274],"84":[1,284]},{"4":[1,118],"6":285,"27":[1,6]},{"49":[2,58],"54":[2,58]},{"49":[2,61],"54":[2,61],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"28":[1,286],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"4":[1,118],"6":287,"27":[1,6],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"4":[1,118],"6":288,"27":[1,6]},{"1":[2,131],"4":[2,131],"27":[2,131],"28":[2,131],"49":[2,131],"54":[2,131],"57":[2,131],"69":[2,131],"74":[2,131],"84":[2,131],"89":[2,131],"98":[2,131],"100":[2,131],"101":[2,131],"102":[2,131],"109":[2,131],"113":[2,131],"114":[2,131],"125":[2,131],"126":[2,131],"128":[2,131],"129":[2,131],"132":[2,131],"133":[2,131],"134":[2,131],"135":[2,131],"136":[2,131],"137":[2,131]},{"4":[1,118],"6":289,"27":[1,6]},{"28":[1,290],"119":[1,291],"120":253,"121":[1,210]},{"1":[2,171],"4":[2,171],"27":[2,171],"28":[2,171],"49":[2,171],"54":[2,171],"57":[2,171],"69":[2,171],"74":[2,171],"84":[2,171],"89":[2,171],"98":[2,171],"100":[2,171],"101":[2,171],"102":[2,171],"109":[2,171],"113":[2,171],"114":[2,171],"125":[2,171],"126":[2,171],"128":[2,171],"129":[2,171],"132":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171]},{"4":[1,118],"6":292,"27":[1,6]},{"28":[2,174],"119":[2,174],"121":[2,174]},{"4":[1,118],"6":293,"27":[1,6],"54":[1,294]},{"4":[2,127],"27":[2,127],"54":[2,127],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,93],"4":[2,93],"27":[1,295],"28":[2,93],"49":[2,93],"54":[2,93],"57":[2,93],"62":95,"64":[1,97],"65":[1,98],"66":[1,99],"67":100,"68":[1,101],"69":[2,93],"70":[1,102],"71":[1,103],"74":[2,93],"79":94,"82":[1,96],"83":[2,111],"84":[2,93],"89":[2,93],"98":[2,93],"100":[2,93],"101":[2,93],"102":[2,93],"109":[2,93],"113":[2,93],"114":[2,93],"125":[2,93],"126":[2,93],"128":[2,93],"129":[2,93],"132":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93]},{"4":[1,259],"28":[1,296]},{"1":[2,96],"4":[2,96],"27":[2,96],"28":[2,96],"49":[2,96],"54":[2,96],"57":[2,96],"69":[2,96],"74":[2,96],"84":[2,96],"89":[2,96],"98":[2,96],"100":[2,96],"101":[2,96],"102":[2,96],"109":[2,96],"113":[2,96],"114":[2,96],"125":[2,96],"126":[2,96],"128":[2,96],"129":[2,96],"132":[2,96],"133":[2,96],"134":[2,96],"135":[2,96],"136":[2,96],"137":[2,96]},{"15":166,"29":167,"30":[1,72],"31":168,"32":[1,70],"33":[1,71],"40":216,"41":164,"43":217,"44":169,"46":[1,48],"78":297,"87":[1,116],"97":[1,55]},{"4":[1,259],"74":[1,298]},{"8":299,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,300],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"4":[2,103],"15":166,"28":[2,103],"29":167,"30":[1,72],"31":168,"32":[1,70],"33":[1,71],"40":216,"41":164,"43":217,"44":169,"46":[1,48],"72":[1,215],"77":301,"78":214,"87":[1,116],"97":[1,55]},{"1":[2,137],"4":[2,137],"27":[2,137],"28":[2,137],"49":[2,137],"54":[2,137],"57":[2,137],"69":[2,137],"74":[2,137],"84":[2,137],"89":[2,137],"98":[2,137],"99":88,"100":[1,64],"101":[2,137],"102":[1,65],"105":89,"109":[2,137],"113":[2,137],"114":[1,67],"125":[2,137],"126":[2,137],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,139],"4":[2,139],"27":[2,139],"28":[2,139],"49":[2,139],"54":[2,139],"57":[2,139],"69":[2,139],"74":[2,139],"84":[2,139],"89":[2,139],"98":[2,139],"99":88,"100":[1,64],"101":[2,139],"102":[1,65],"105":89,"109":[2,139],"113":[2,139],"114":[1,67],"125":[2,139],"126":[2,139],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"107":302,"108":[1,227],"111":[2,149]},{"110":303,"111":[1,230]},{"1":[2,152],"4":[2,152],"27":[2,152],"28":[2,152],"49":[2,152],"54":[2,152],"57":[2,152],"69":[2,152],"74":[2,152],"84":[2,152],"89":[2,152],"98":[2,152],"99":88,"100":[1,64],"101":[1,304],"102":[1,65],"105":89,"109":[1,305],"113":[2,152],"114":[1,67],"125":[2,152],"126":[2,152],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"99":88,"100":[1,64],"102":[1,65],"105":89,"112":306,"113":[1,307],"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,156],"4":[2,156],"27":[2,156],"28":[2,156],"49":[2,156],"54":[2,156],"57":[2,156],"69":[2,156],"74":[2,156],"84":[2,156],"89":[2,156],"98":[2,156],"99":88,"100":[1,64],"101":[1,308],"102":[1,65],"105":89,"109":[2,156],"113":[2,156],"114":[1,67],"125":[2,156],"126":[2,156],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,166],"4":[2,166],"27":[2,166],"28":[2,166],"49":[2,166],"54":[2,166],"57":[2,166],"69":[2,166],"74":[2,166],"84":[2,166],"89":[2,166],"98":[2,166],"100":[2,166],"101":[2,166],"102":[2,166],"109":[2,166],"113":[2,166],"114":[2,166],"125":[2,166],"126":[2,166],"128":[2,166],"129":[2,166],"132":[2,166],"133":[2,166],"134":[2,166],"135":[2,166],"136":[2,166],"137":[2,166]},{"29":310,"30":[1,72],"58":154,"59":155,"72":[1,69],"88":[1,68],"106":309},{"1":[2,119],"4":[2,119],"27":[2,119],"28":[2,119],"39":[2,119],"49":[2,119],"54":[2,119],"57":[2,119],"64":[2,119],"65":[2,119],"66":[2,119],"68":[2,119],"69":[2,119],"70":[2,119],"71":[2,119],"74":[2,119],"82":[2,119],"83":[2,119],"84":[2,119],"89":[2,119],"98":[2,119],"100":[2,119],"101":[2,119],"102":[2,119],"108":[2,119],"109":[2,119],"111":[2,119],"113":[2,119],"114":[2,119],"125":[2,119],"126":[2,119],"128":[2,119],"129":[2,119],"132":[2,119],"133":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119]},{"8":160,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":161,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"90":311,"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":160,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"27":[1,159],"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":161,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"85":312,"86":[1,56],"87":[1,57],"88":[1,68],"90":158,"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"4":[2,121],"27":[2,121],"28":[2,121],"54":[2,121],"84":[2,121],"89":[2,121]},{"4":[1,273],"27":[1,274],"28":[1,313]},{"1":[2,86],"4":[2,86],"27":[2,86],"28":[2,86],"39":[2,86],"49":[2,86],"54":[2,86],"57":[2,86],"64":[2,86],"65":[2,86],"66":[2,86],"68":[2,86],"69":[2,86],"70":[2,86],"71":[2,86],"74":[2,86],"82":[2,86],"83":[2,86],"84":[2,86],"89":[2,86],"98":[2,86],"100":[2,86],"101":[2,86],"102":[2,86],"108":[2,86],"109":[2,86],"111":[2,86],"113":[2,86],"114":[2,86],"125":[2,86],"126":[2,86],"128":[2,86],"129":[2,86],"132":[2,86],"133":[2,86],"134":[2,86],"135":[2,86],"136":[2,86],"137":[2,86]},{"15":166,"29":167,"30":[1,72],"31":168,"32":[1,70],"33":[1,71],"40":314,"41":164,"43":165,"44":169,"46":[1,48],"87":[1,116],"97":[1,55]},{"4":[2,87],"15":166,"27":[2,87],"28":[2,87],"29":167,"30":[1,72],"31":168,"32":[1,70],"33":[1,71],"40":163,"41":164,"43":165,"44":169,"46":[1,48],"54":[2,87],"73":315,"87":[1,116],"97":[1,55]},{"4":[2,89],"27":[2,89],"28":[2,89],"54":[2,89],"74":[2,89]},{"4":[2,40],"27":[2,40],"28":[2,40],"54":[2,40],"74":[2,40],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"8":316,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,38],"4":[2,38],"27":[2,38],"28":[2,38],"49":[2,38],"54":[2,38],"57":[2,38],"69":[2,38],"74":[2,38],"84":[2,38],"89":[2,38],"98":[2,38],"100":[2,38],"101":[2,38],"102":[2,38],"109":[2,38],"113":[2,38],"114":[2,38],"125":[2,38],"126":[2,38],"128":[2,38],"129":[2,38],"132":[2,38],"133":[2,38],"134":[2,38],"135":[2,38],"136":[2,38],"137":[2,38]},{"1":[2,114],"4":[2,114],"27":[2,114],"28":[2,114],"49":[2,114],"54":[2,114],"57":[2,114],"64":[2,114],"65":[2,114],"66":[2,114],"68":[2,114],"69":[2,114],"70":[2,114],"71":[2,114],"74":[2,114],"82":[2,114],"83":[2,114],"84":[2,114],"89":[2,114],"98":[2,114],"100":[2,114],"101":[2,114],"102":[2,114],"109":[2,114],"113":[2,114],"114":[2,114],"125":[2,114],"126":[2,114],"128":[2,114],"129":[2,114],"132":[2,114],"133":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114]},{"1":[2,50],"4":[2,50],"27":[2,50],"28":[2,50],"49":[2,50],"54":[2,50],"57":[2,50],"69":[2,50],"74":[2,50],"84":[2,50],"89":[2,50],"98":[2,50],"100":[2,50],"101":[2,50],"102":[2,50],"109":[2,50],"113":[2,50],"114":[2,50],"125":[2,50],"126":[2,50],"128":[2,50],"129":[2,50],"132":[2,50],"133":[2,50],"134":[2,50],"135":[2,50],"136":[2,50],"137":[2,50]},{"1":[2,202],"4":[2,202],"27":[2,202],"28":[2,202],"49":[2,202],"54":[2,202],"57":[2,202],"69":[2,202],"74":[2,202],"84":[2,202],"89":[2,202],"98":[2,202],"100":[2,202],"101":[2,202],"102":[2,202],"109":[2,202],"113":[2,202],"114":[2,202],"125":[2,202],"126":[2,202],"128":[2,202],"129":[2,202],"132":[2,202],"133":[2,202],"134":[2,202],"135":[2,202],"136":[2,202],"137":[2,202]},{"1":[2,179],"4":[2,179],"27":[2,179],"28":[2,179],"49":[2,179],"54":[2,179],"57":[2,179],"69":[2,179],"74":[2,179],"84":[2,179],"89":[2,179],"98":[2,179],"100":[2,179],"101":[2,179],"102":[2,179],"109":[2,179],"113":[2,179],"114":[2,179],"119":[2,179],"125":[2,179],"126":[2,179],"128":[2,179],"129":[2,179],"132":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179]},{"1":[2,132],"4":[2,132],"27":[2,132],"28":[2,132],"49":[2,132],"54":[2,132],"57":[2,132],"69":[2,132],"74":[2,132],"84":[2,132],"89":[2,132],"98":[2,132],"100":[2,132],"101":[2,132],"102":[2,132],"109":[2,132],"113":[2,132],"114":[2,132],"125":[2,132],"126":[2,132],"128":[2,132],"129":[2,132],"132":[2,132],"133":[2,132],"134":[2,132],"135":[2,132],"136":[2,132],"137":[2,132]},{"1":[2,133],"4":[2,133],"27":[2,133],"28":[2,133],"49":[2,133],"54":[2,133],"57":[2,133],"69":[2,133],"74":[2,133],"84":[2,133],"89":[2,133],"94":[2,133],"98":[2,133],"100":[2,133],"101":[2,133],"102":[2,133],"109":[2,133],"113":[2,133],"114":[2,133],"125":[2,133],"126":[2,133],"128":[2,133],"129":[2,133],"132":[2,133],"133":[2,133],"134":[2,133],"135":[2,133],"136":[2,133],"137":[2,133]},{"1":[2,169],"4":[2,169],"27":[2,169],"28":[2,169],"49":[2,169],"54":[2,169],"57":[2,169],"69":[2,169],"74":[2,169],"84":[2,169],"89":[2,169],"98":[2,169],"100":[2,169],"101":[2,169],"102":[2,169],"109":[2,169],"113":[2,169],"114":[2,169],"125":[2,169],"126":[2,169],"128":[2,169],"129":[2,169],"132":[2,169],"133":[2,169],"134":[2,169],"135":[2,169],"136":[2,169],"137":[2,169]},{"4":[1,118],"6":317,"27":[1,6]},{"28":[1,318]},{"4":[1,319],"28":[2,175],"119":[2,175],"121":[2,175]},{"8":320,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"4":[2,103],"15":166,"28":[2,103],"29":167,"30":[1,72],"31":168,"32":[1,70],"33":[1,71],"40":216,"41":164,"43":217,"44":169,"46":[1,48],"72":[1,215],"77":321,"78":214,"87":[1,116],"97":[1,55]},{"1":[2,94],"4":[2,94],"27":[2,94],"28":[2,94],"49":[2,94],"54":[2,94],"57":[2,94],"69":[2,94],"74":[2,94],"84":[2,94],"89":[2,94],"98":[2,94],"100":[2,94],"101":[2,94],"102":[2,94],"109":[2,94],"113":[2,94],"114":[2,94],"125":[2,94],"126":[2,94],"128":[2,94],"129":[2,94],"132":[2,94],"133":[2,94],"134":[2,94],"135":[2,94],"136":[2,94],"137":[2,94]},{"4":[2,105],"28":[2,105],"74":[2,105]},{"4":[2,106],"28":[2,106],"74":[2,106]},{"4":[2,101],"28":[2,101],"74":[2,101],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"8":322,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"4":[1,259],"28":[1,323]},{"1":[2,163],"4":[2,163],"27":[2,163],"28":[2,163],"49":[2,163],"54":[2,163],"57":[2,163],"69":[2,163],"74":[2,163],"84":[2,163],"89":[2,163],"98":[2,163],"100":[2,163],"101":[2,163],"102":[2,163],"109":[2,163],"113":[2,163],"114":[2,163],"125":[2,163],"126":[2,163],"128":[2,163],"129":[2,163],"132":[2,163],"133":[2,163],"134":[2,163],"135":[2,163],"136":[2,163],"137":[2,163]},{"1":[2,165],"4":[2,165],"27":[2,165],"28":[2,165],"49":[2,165],"54":[2,165],"57":[2,165],"69":[2,165],"74":[2,165],"84":[2,165],"89":[2,165],"98":[2,165],"100":[2,165],"101":[2,165],"102":[2,165],"109":[2,165],"113":[2,165],"114":[2,165],"125":[2,165],"126":[2,165],"128":[2,165],"129":[2,165],"132":[2,165],"133":[2,165],"134":[2,165],"135":[2,165],"136":[2,165],"137":[2,165]},{"8":324,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":325,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,168],"4":[2,168],"27":[2,168],"28":[2,168],"49":[2,168],"54":[2,168],"57":[2,168],"69":[2,168],"74":[2,168],"84":[2,168],"89":[2,168],"98":[2,168],"100":[2,168],"101":[2,168],"102":[2,168],"109":[2,168],"113":[2,168],"114":[2,168],"125":[2,168],"126":[2,168],"128":[2,168],"129":[2,168],"132":[2,168],"133":[2,168],"134":[2,168],"135":[2,168],"136":[2,168],"137":[2,168]},{"8":326,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":327,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"110":328,"111":[1,230]},{"111":[2,149]},{"4":[2,122],"27":[2,122],"28":[2,122],"54":[2,122],"84":[2,122],"89":[2,122]},{"4":[2,54],"27":[2,54],"28":[2,54],"53":329,"54":[1,233]},{"4":[2,123],"27":[2,123],"28":[2,123],"54":[2,123],"84":[2,123],"89":[2,123]},{"4":[2,90],"27":[2,90],"28":[2,90],"54":[2,90],"74":[2,90]},{"4":[2,54],"27":[2,54],"28":[2,54],"53":330,"54":[1,237]},{"28":[1,331],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"28":[1,332]},{"1":[2,172],"4":[2,172],"27":[2,172],"28":[2,172],"49":[2,172],"54":[2,172],"57":[2,172],"69":[2,172],"74":[2,172],"84":[2,172],"89":[2,172],"98":[2,172],"100":[2,172],"101":[2,172],"102":[2,172],"109":[2,172],"113":[2,172],"114":[2,172],"125":[2,172],"126":[2,172],"128":[2,172],"129":[2,172],"132":[2,172],"133":[2,172],"134":[2,172],"135":[2,172],"136":[2,172],"137":[2,172]},{"28":[2,176],"119":[2,176],"121":[2,176]},{"4":[2,128],"27":[2,128],"54":[2,128],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"4":[1,259],"28":[1,333]},{"28":[1,334],"99":88,"100":[1,64],"102":[1,65],"105":89,"114":[1,67],"125":[1,86],"126":[1,87],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,99],"4":[2,99],"27":[2,99],"28":[2,99],"49":[2,99],"54":[2,99],"57":[2,99],"69":[2,99],"74":[2,99],"84":[2,99],"89":[2,99],"98":[2,99],"100":[2,99],"101":[2,99],"102":[2,99],"109":[2,99],"113":[2,99],"114":[2,99],"125":[2,99],"126":[2,99],"128":[2,99],"129":[2,99],"132":[2,99],"133":[2,99],"134":[2,99],"135":[2,99],"136":[2,99],"137":[2,99]},{"1":[2,153],"4":[2,153],"27":[2,153],"28":[2,153],"49":[2,153],"54":[2,153],"57":[2,153],"69":[2,153],"74":[2,153],"84":[2,153],"89":[2,153],"98":[2,153],"99":88,"100":[1,64],"101":[2,153],"102":[1,65],"105":89,"109":[2,153],"113":[2,153],"114":[1,67],"125":[2,153],"126":[2,153],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,154],"4":[2,154],"27":[2,154],"28":[2,154],"49":[2,154],"54":[2,154],"57":[2,154],"69":[2,154],"74":[2,154],"84":[2,154],"89":[2,154],"98":[2,154],"99":88,"100":[1,64],"101":[1,335],"102":[1,65],"105":89,"109":[2,154],"113":[2,154],"114":[1,67],"125":[2,154],"126":[2,154],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,158],"4":[2,158],"27":[2,158],"28":[2,158],"49":[2,158],"54":[2,158],"57":[2,158],"69":[2,158],"74":[2,158],"84":[2,158],"89":[2,158],"98":[2,158],"99":88,"100":[1,64],"101":[1,336],"102":[1,65],"105":89,"109":[1,337],"113":[2,158],"114":[1,67],"125":[2,158],"126":[2,158],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,157],"4":[2,157],"27":[2,157],"28":[2,157],"49":[2,157],"54":[2,157],"57":[2,157],"69":[2,157],"74":[2,157],"84":[2,157],"89":[2,157],"98":[2,157],"99":88,"100":[1,64],"101":[2,157],"102":[1,65],"105":89,"109":[2,157],"113":[2,157],"114":[1,67],"125":[2,157],"126":[2,157],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,167],"4":[2,167],"27":[2,167],"28":[2,167],"49":[2,167],"54":[2,167],"57":[2,167],"69":[2,167],"74":[2,167],"84":[2,167],"89":[2,167],"98":[2,167],"100":[2,167],"101":[2,167],"102":[2,167],"109":[2,167],"113":[2,167],"114":[2,167],"125":[2,167],"126":[2,167],"128":[2,167],"129":[2,167],"132":[2,167],"133":[2,167],"134":[2,167],"135":[2,167],"136":[2,167],"137":[2,167]},{"4":[1,273],"27":[1,274],"28":[1,338]},{"4":[1,278],"27":[1,279],"28":[1,339]},{"4":[2,41],"27":[2,41],"28":[2,41],"54":[2,41],"74":[2,41]},{"1":[2,170],"4":[2,170],"27":[2,170],"28":[2,170],"49":[2,170],"54":[2,170],"57":[2,170],"69":[2,170],"74":[2,170],"84":[2,170],"89":[2,170],"98":[2,170],"100":[2,170],"101":[2,170],"102":[2,170],"109":[2,170],"113":[2,170],"114":[2,170],"125":[2,170],"126":[2,170],"128":[2,170],"129":[2,170],"132":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170]},{"1":[2,95],"4":[2,95],"27":[2,95],"28":[2,95],"49":[2,95],"54":[2,95],"57":[2,95],"69":[2,95],"74":[2,95],"84":[2,95],"89":[2,95],"98":[2,95],"100":[2,95],"101":[2,95],"102":[2,95],"109":[2,95],"113":[2,95],"114":[2,95],"125":[2,95],"126":[2,95],"128":[2,95],"129":[2,95],"132":[2,95],"133":[2,95],"134":[2,95],"135":[2,95],"136":[2,95],"137":[2,95]},{"4":[2,102],"28":[2,102],"74":[2,102]},{"8":340,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":341,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"8":342,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"4":[2,124],"27":[2,124],"28":[2,124],"54":[2,124],"84":[2,124],"89":[2,124]},{"4":[2,91],"27":[2,91],"28":[2,91],"54":[2,91],"74":[2,91]},{"1":[2,155],"4":[2,155],"27":[2,155],"28":[2,155],"49":[2,155],"54":[2,155],"57":[2,155],"69":[2,155],"74":[2,155],"84":[2,155],"89":[2,155],"98":[2,155],"99":88,"100":[1,64],"101":[2,155],"102":[1,65],"105":89,"109":[2,155],"113":[2,155],"114":[1,67],"125":[2,155],"126":[2,155],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,159],"4":[2,159],"27":[2,159],"28":[2,159],"49":[2,159],"54":[2,159],"57":[2,159],"69":[2,159],"74":[2,159],"84":[2,159],"89":[2,159],"98":[2,159],"99":88,"100":[1,64],"101":[2,159],"102":[1,65],"105":89,"109":[2,159],"113":[2,159],"114":[1,67],"125":[2,159],"126":[2,159],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"1":[2,160],"4":[2,160],"27":[2,160],"28":[2,160],"49":[2,160],"54":[2,160],"57":[2,160],"69":[2,160],"74":[2,160],"84":[2,160],"89":[2,160],"98":[2,160],"99":88,"100":[1,64],"101":[1,343],"102":[1,65],"105":89,"109":[2,160],"113":[2,160],"114":[1,67],"125":[2,160],"126":[2,160],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]},{"8":344,"9":120,"10":20,"11":21,"12":[1,22],"13":[1,23],"14":[1,24],"15":25,"16":9,"17":10,"18":11,"19":12,"20":13,"21":14,"22":15,"23":16,"24":17,"25":18,"26":19,"29":60,"30":[1,72],"31":51,"32":[1,70],"33":[1,71],"34":27,"35":[1,52],"36":[1,53],"37":[1,54],"38":26,"43":61,"44":28,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"61":38,"63":29,"72":[1,69],"75":[1,45],"81":[1,30],"86":[1,56],"87":[1,57],"88":[1,68],"92":[1,40],"96":[1,47],"97":[1,55],"99":41,"100":[1,64],"102":[1,65],"103":42,"104":[1,66],"105":43,"114":[1,67],"117":[1,44],"122":39,"123":[1,62],"124":[1,63],"127":[1,33],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37]},{"1":[2,161],"4":[2,161],"27":[2,161],"28":[2,161],"49":[2,161],"54":[2,161],"57":[2,161],"69":[2,161],"74":[2,161],"84":[2,161],"89":[2,161],"98":[2,161],"99":88,"100":[1,64],"101":[2,161],"102":[1,65],"105":89,"109":[2,161],"113":[2,161],"114":[1,67],"125":[2,161],"126":[2,161],"128":[1,80],"129":[1,79],"132":[1,78],"133":[1,81],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85]}], +defaultActions: {"75":[2,4],"96":[2,112],"310":[2,149]}, parseError: function parseError(str, hash) { throw new Error(str); }, diff --git a/src/grammar.coffee b/src/grammar.coffee index 13792d83..759daa29 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -100,7 +100,6 @@ grammar = o 'While' o 'For' o 'Switch' - o 'Extends' o 'Class' ] @@ -304,12 +303,6 @@ grammar = o '{ ClassBody }', -> $2 ] - # Extending an object by setting its prototype chain to reference a parent - # object. - Extends: [ - o 'SimpleAssignable EXTENDS Value', -> new Extends $1, $3 - ] - # Ordinary function invocation, or a chained series of calls. Invocation: [ o 'Value OptFuncExist Arguments', -> new Call $1, $3, $2 @@ -545,6 +538,7 @@ grammar = Expression', -> new Assign $1, $3, $2 o 'SimpleAssignable COMPOUND_ASSIGN INDENT Expression OUTDENT', -> new Assign $1, $4, $2 + o 'SimpleAssignable EXTENDS Expression', -> new Extends $1, $3 ] @@ -572,10 +566,10 @@ operators = [ ['left', 'COMPARE'] ['left', 'LOGIC'] ['nonassoc', 'INDENT', 'OUTDENT'] - ['right', '=', ':', 'COMPOUND_ASSIGN', 'RETURN'] + ['right', '=', ':', 'COMPOUND_ASSIGN', 'RETURN', 'EXTENDS'] ['right', 'WHEN', 'LEADING_WHEN', 'FORIN', 'FOROF', 'FROM', 'TO', 'BY', 'THROW', 'IF', 'UNLESS', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', - 'SUPER', 'CLASS', 'EXTENDS'] + 'SUPER', 'CLASS'] ['right', 'POST_IF', 'POST_UNLESS'] ] diff --git a/src/nodes.coffee b/src/nodes.coffee index 00632dc7..3007b085 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -1560,6 +1560,7 @@ UTILITIES = child.prototype = new ctor; if (typeof parent.extended === "function") parent.extended(child); child.__super__ = parent.prototype; + return child; } ''' diff --git a/test/test_classes.coffee b/test/test_classes.coffee index 1d89df9d..2940bc7c 100644 --- a/test/test_classes.coffee +++ b/test/test_classes.coffee @@ -78,19 +78,19 @@ Base::['func-func'] = (string) -> "dynamic-#{string}" FirstChild = -> -FirstChild extends Base -FirstChild::func = (string) -> - super('one/') + string - SecondChild = -> -SecondChild extends FirstChild -SecondChild::func = (string) -> - super('two/') + string - ThirdChild = -> @array = [1, 2, 3] this -ThirdChild extends SecondChild + +ThirdChild extends SecondChild extends FirstChild extends Base + +FirstChild::func = (string) -> + super('one/') + string + +SecondChild::func = (string) -> + super('two/') + string + ThirdChild::func = (string) -> super('three/') + string