From 051a863ff5d58d6d181a6f25487db743d65100f6 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Tue, 27 Jul 2010 22:38:38 -0400 Subject: [PATCH] adding slightly optimized syntax for range comprehensions that could care less about the index variable. Issue #547 --- lib/grammar.js | 25 ++-- lib/nodes.js | 2 +- lib/parser.js | 212 ++++++++++++++++---------------- src/grammar.coffee | 11 +- src/nodes.coffee | 2 +- test/test_comprehensions.coffee | 6 + 6 files changed, 140 insertions(+), 118 deletions(-) diff --git a/lib/grammar.js b/lib/grammar.js index eed1d6ab..dbf6b6ad 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -389,15 +389,24 @@ }) ], For: [ - o("Statement ForStart ForSource", function() { - $3.raw = $2.raw; - return new ForNode($1, $3, $2[0], $2[1]); - }), o("Expression ForStart ForSource", function() { - $3.raw = $2.raw; - return new ForNode($1, $3, $2[0], $2[1]); - }), o("ForStart ForSource Block", function() { + o("Statement ForBody", function() { + return new ForNode($1, $2, $2.vars[0], $2.vars[1]); + }), o("Expression ForBody", function() { + return new ForNode($1, $2, $2.vars[0], $2.vars[1]); + }), o("ForBody Block", function() { + return new ForNode($2, $1, $1.vars[0], $1.vars[1]); + }) + ], + ForBody: [ + o("FOR Range", function() { + return { + source: new ValueNode($2), + vars: [] + }; + }), o("ForStart ForSource", function() { $2.raw = $1.raw; - return new ForNode($3, $2, $1[0], $1[1]); + $2.vars = $1; + return $2; }) ], ForStart: [ diff --git a/lib/nodes.js b/lib/nodes.js index 0b88eedf..897771a4 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -1435,7 +1435,7 @@ return n instanceof CodeNode; }); scope = o.scope; - name = this.name && this.name.compile(o); + name = (this.name && this.name.compile(o)) || scope.freeVariable(); index = this.index && this.index.compile(o); if (name && !this.pattern && !codeInBody) { scope.find(name); diff --git a/lib/parser.js b/lib/parser.js index 01d24e64..dd5d5a42 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,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"TRUE":39,"FALSE":40,"YES":41,"NO":42,"ON":43,"OFF":44,"Assignable":45,"=":46,"AssignObj":47,":":48,"RETURN":49,"HERECOMMENT":50,"?":51,"PARAM_START":52,"ParamList":53,"PARAM_END":54,"FuncGlyph":55,"->":56,"=>":57,"OptComma":58,",":59,"Param":60,"PARAM":61,".":62,"SimpleAssignable":63,"Accessor":64,"Invocation":65,"ThisProperty":66,"Array":67,"Object":68,"Parenthetical":69,"Range":70,"This":71,"NULL":72,"PROPERTY_ACCESS":73,"PROTOTYPE_ACCESS":74,"::":75,"SOAK_ACCESS":76,"Index":77,"Slice":78,"INDEX_START":79,"INDEX_END":80,"INDEX_SOAK":81,"INDEX_PROTO":82,"{":83,"AssignList":84,"}":85,"CLASS":86,"EXTENDS":87,"ClassBody":88,"ClassAssign":89,"Super":90,"NEW":91,"Arguments":92,"CALL_START":93,"ArgList":94,"CALL_END":95,"SUPER":96,"THIS":97,"@":98,"[":99,"]":100,"SimpleArgs":101,"TRY":102,"Catch":103,"FINALLY":104,"CATCH":105,"THROW":106,"(":107,")":108,"WhileSource":109,"WHILE":110,"WHEN":111,"UNTIL":112,"Loop":113,"LOOP":114,"ForStart":115,"ForSource":116,"FOR":117,"ForVariables":118,"ALL":119,"ForValue":120,"IN":121,"OF":122,"BY":123,"SWITCH":124,"Whens":125,"ELSE":126,"When":127,"LEADING_WHEN":128,"IfBlock":129,"IF":130,"UNLESS":131,"!":132,"!!":133,"-":134,"+":135,"~":136,"--":137,"++":138,"DELETE":139,"TYPEOF":140,"*":141,"/":142,"%":143,"<<":144,">>":145,">>>":146,"&":147,"|":148,"^":149,"<=":150,"<":151,">":152,">=":153,"==":154,"!=":155,"&&":156,"||":157,"OP?":158,"-=":159,"+=":160,"/=":161,"*=":162,"%=":163,"||=":164,"&&=":165,"?=":166,"INSTANCEOF":167,"$accept":0,"$end":1}, -terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"=","48":":","49":"RETURN","50":"HERECOMMENT","51":"?","52":"PARAM_START","54":"PARAM_END","56":"->","57":"=>","59":",","61":"PARAM","62":".","72":"NULL","73":"PROPERTY_ACCESS","74":"PROTOTYPE_ACCESS","75":"::","76":"SOAK_ACCESS","79":"INDEX_START","80":"INDEX_END","81":"INDEX_SOAK","82":"INDEX_PROTO","83":"{","85":"}","86":"CLASS","87":"EXTENDS","91":"NEW","93":"CALL_START","95":"CALL_END","96":"SUPER","97":"THIS","98":"@","99":"[","100":"]","102":"TRY","104":"FINALLY","105":"CATCH","106":"THROW","107":"(","108":")","110":"WHILE","111":"WHEN","112":"UNTIL","114":"LOOP","117":"FOR","119":"ALL","121":"IN","122":"OF","123":"BY","124":"SWITCH","126":"ELSE","128":"LEADING_WHEN","130":"IF","131":"UNLESS","132":"!","133":"!!","134":"-","135":"+","136":"~","137":"--","138":"++","139":"DELETE","140":"TYPEOF","141":"*","142":"/","143":"%","144":"<<","145":">>","146":">>>","147":"&","148":"|","149":"^","150":"<=","151":"<","152":">","153":">=","154":"==","155":"!=","156":"&&","157":"||","158":"OP?","159":"-=","160":"+=","161":"/=","162":"*=","163":"%=","164":"||=","165":"&&=","166":"?=","167":"INSTANCEOF"}, -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],[8,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],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[18,5],[47,1],[47,1],[47,3],[47,3],[47,5],[47,5],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[55,1],[55,1],[58,0],[58,1],[53,0],[53,1],[53,3],[60,1],[60,4],[26,4],[63,1],[63,2],[63,2],[63,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[64,2],[64,2],[64,1],[64,2],[64,1],[64,1],[77,3],[77,2],[77,2],[68,4],[84,0],[84,1],[84,3],[84,4],[84,6],[25,2],[25,4],[25,5],[25,7],[25,4],[89,1],[89,3],[88,0],[88,1],[88,3],[88,3],[15,1],[15,1],[15,2],[15,2],[24,3],[65,2],[65,2],[92,4],[90,1],[90,2],[71,1],[71,1],[66,2],[70,6],[70,7],[78,6],[78,7],[67,4],[94,0],[94,1],[94,3],[94,4],[94,6],[101,1],[101,3],[20,3],[20,4],[20,5],[103,3],[11,2],[69,3],[109,2],[109,4],[109,2],[109,4],[21,2],[21,2],[21,2],[21,1],[113,2],[113,2],[22,3],[22,3],[22,3],[115,2],[115,3],[120,1],[120,1],[120,1],[118,1],[118,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[23,4],[23,6],[125,1],[125,2],[127,3],[127,4],[129,3],[129,3],[129,5],[129,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], +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,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"TRUE":39,"FALSE":40,"YES":41,"NO":42,"ON":43,"OFF":44,"Assignable":45,"=":46,"AssignObj":47,":":48,"RETURN":49,"HERECOMMENT":50,"?":51,"PARAM_START":52,"ParamList":53,"PARAM_END":54,"FuncGlyph":55,"->":56,"=>":57,"OptComma":58,",":59,"Param":60,"PARAM":61,".":62,"SimpleAssignable":63,"Accessor":64,"Invocation":65,"ThisProperty":66,"Array":67,"Object":68,"Parenthetical":69,"Range":70,"This":71,"NULL":72,"PROPERTY_ACCESS":73,"PROTOTYPE_ACCESS":74,"::":75,"SOAK_ACCESS":76,"Index":77,"Slice":78,"INDEX_START":79,"INDEX_END":80,"INDEX_SOAK":81,"INDEX_PROTO":82,"{":83,"AssignList":84,"}":85,"CLASS":86,"EXTENDS":87,"ClassBody":88,"ClassAssign":89,"Super":90,"NEW":91,"Arguments":92,"CALL_START":93,"ArgList":94,"CALL_END":95,"SUPER":96,"THIS":97,"@":98,"[":99,"]":100,"SimpleArgs":101,"TRY":102,"Catch":103,"FINALLY":104,"CATCH":105,"THROW":106,"(":107,")":108,"WhileSource":109,"WHILE":110,"WHEN":111,"UNTIL":112,"Loop":113,"LOOP":114,"ForBody":115,"FOR":116,"ForStart":117,"ForSource":118,"ForVariables":119,"ALL":120,"ForValue":121,"IN":122,"OF":123,"BY":124,"SWITCH":125,"Whens":126,"ELSE":127,"When":128,"LEADING_WHEN":129,"IfBlock":130,"IF":131,"UNLESS":132,"!":133,"!!":134,"-":135,"+":136,"~":137,"--":138,"++":139,"DELETE":140,"TYPEOF":141,"*":142,"/":143,"%":144,"<<":145,">>":146,">>>":147,"&":148,"|":149,"^":150,"<=":151,"<":152,">":153,">=":154,"==":155,"!=":156,"&&":157,"||":158,"OP?":159,"-=":160,"+=":161,"/=":162,"*=":163,"%=":164,"||=":165,"&&=":166,"?=":167,"INSTANCEOF":168,"$accept":0,"$end":1}, +terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"=","48":":","49":"RETURN","50":"HERECOMMENT","51":"?","52":"PARAM_START","54":"PARAM_END","56":"->","57":"=>","59":",","61":"PARAM","62":".","72":"NULL","73":"PROPERTY_ACCESS","74":"PROTOTYPE_ACCESS","75":"::","76":"SOAK_ACCESS","79":"INDEX_START","80":"INDEX_END","81":"INDEX_SOAK","82":"INDEX_PROTO","83":"{","85":"}","86":"CLASS","87":"EXTENDS","91":"NEW","93":"CALL_START","95":"CALL_END","96":"SUPER","97":"THIS","98":"@","99":"[","100":"]","102":"TRY","104":"FINALLY","105":"CATCH","106":"THROW","107":"(","108":")","110":"WHILE","111":"WHEN","112":"UNTIL","114":"LOOP","116":"FOR","120":"ALL","122":"IN","123":"OF","124":"BY","125":"SWITCH","127":"ELSE","129":"LEADING_WHEN","131":"IF","132":"UNLESS","133":"!","134":"!!","135":"-","136":"+","137":"~","138":"--","139":"++","140":"DELETE","141":"TYPEOF","142":"*","143":"/","144":"%","145":"<<","146":">>","147":">>>","148":"&","149":"|","150":"^","151":"<=","152":"<","153":">","154":">=","155":"==","156":"!=","157":"&&","158":"||","159":"OP?","160":"-=","161":"+=","162":"/=","163":"*=","164":"%=","165":"||=","166":"&&=","167":"?=","168":"INSTANCEOF"}, +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],[8,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],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[18,5],[47,1],[47,1],[47,3],[47,3],[47,5],[47,5],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[55,1],[55,1],[58,0],[58,1],[53,0],[53,1],[53,3],[60,1],[60,4],[26,4],[63,1],[63,2],[63,2],[63,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[64,2],[64,2],[64,1],[64,2],[64,1],[64,1],[77,3],[77,2],[77,2],[68,4],[84,0],[84,1],[84,3],[84,4],[84,6],[25,2],[25,4],[25,5],[25,7],[25,4],[89,1],[89,3],[88,0],[88,1],[88,3],[88,3],[15,1],[15,1],[15,2],[15,2],[24,3],[65,2],[65,2],[92,4],[90,1],[90,2],[71,1],[71,1],[66,2],[70,6],[70,7],[78,6],[78,7],[67,4],[94,0],[94,1],[94,3],[94,4],[94,6],[101,1],[101,3],[20,3],[20,4],[20,5],[103,3],[11,2],[69,3],[109,2],[109,4],[109,2],[109,4],[21,2],[21,2],[21,2],[21,1],[113,2],[113,2],[22,2],[22,2],[22,2],[115,2],[115,2],[117,2],[117,3],[121,1],[121,1],[121,1],[119,1],[119,3],[118,2],[118,2],[118,4],[118,4],[118,4],[118,6],[118,6],[23,5],[23,7],[23,4],[23,6],[126,1],[126,2],[128,3],[128,4],[130,3],[130,3],[130,5],[130,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -318,217 +318,219 @@ case 147:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); break; case 148:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); break; -case 149:this.$ = (function () { - $$[$0-3+3-1].raw = $$[$0-3+2-1].raw; - return new ForNode($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1][0], $$[$0-3+2-1][1]); - }()); +case 149:this.$ = new ForNode($$[$0-2+1-1], $$[$0-2+2-1], $$[$0-2+2-1].vars[0], $$[$0-2+2-1].vars[1]); break; -case 150:this.$ = (function () { - $$[$0-3+3-1].raw = $$[$0-3+2-1].raw; - return new ForNode($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1][0], $$[$0-3+2-1][1]); - }()); +case 150:this.$ = new ForNode($$[$0-2+1-1], $$[$0-2+2-1], $$[$0-2+2-1].vars[0], $$[$0-2+2-1].vars[1]); break; -case 151:this.$ = (function () { - $$[$0-3+2-1].raw = $$[$0-3+1-1].raw; - return new ForNode($$[$0-3+3-1], $$[$0-3+2-1], $$[$0-3+1-1][0], $$[$0-3+1-1][1]); - }()); +case 151:this.$ = new ForNode($$[$0-2+2-1], $$[$0-2+1-1], $$[$0-2+1-1].vars[0], $$[$0-2+1-1].vars[1]); break; -case 152:this.$ = $$[$0-2+2-1]; +case 152:this.$ = { + source: new ValueNode($$[$0-2+2-1]), + vars: [] + }; break; case 153:this.$ = (function () { + $$[$0-2+2-1].raw = $$[$0-2+1-1].raw; + $$[$0-2+2-1].vars = $$[$0-2+1-1]; + return $$[$0-2+2-1]; + }()); +break; +case 154:this.$ = $$[$0-2+2-1]; +break; +case 155:this.$ = (function () { $$[$0-3+3-1].raw = true; return $$[$0-3+3-1]; }()); break; -case 154:this.$ = $$[$0-1+1-1]; +case 156:this.$ = $$[$0-1+1-1]; break; -case 155:this.$ = new ValueNode($$[$0-1+1-1]); +case 157:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 156:this.$ = new ValueNode($$[$0-1+1-1]); +case 158:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 157:this.$ = [$$[$0-1+1-1]]; +case 159:this.$ = [$$[$0-1+1-1]]; break; -case 158:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; +case 160:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; break; -case 159:this.$ = { +case 161:this.$ = { source: $$[$0-2+2-1] }; break; -case 160:this.$ = { - source: $$[$0-2+2-1], - object: true - }; -break; -case 161:this.$ = { - source: $$[$0-4+2-1], - guard: $$[$0-4+4-1] - }; -break; case 162:this.$ = { - source: $$[$0-4+2-1], - guard: $$[$0-4+4-1], + source: $$[$0-2+2-1], object: true }; break; case 163:this.$ = { source: $$[$0-4+2-1], - step: $$[$0-4+4-1] + guard: $$[$0-4+4-1] }; break; case 164:this.$ = { + source: $$[$0-4+2-1], + guard: $$[$0-4+4-1], + object: true + }; +break; +case 165:this.$ = { + source: $$[$0-4+2-1], + step: $$[$0-4+4-1] + }; +break; +case 166:this.$ = { source: $$[$0-6+2-1], guard: $$[$0-6+4-1], step: $$[$0-6+6-1] }; break; -case 165:this.$ = { +case 167:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 166:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); +case 168:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); break; -case 167:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); +case 169:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); break; -case 168:this.$ = $$[$0-4+3-1]; +case 170:this.$ = $$[$0-4+3-1]; break; -case 169:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); +case 171:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); break; -case 170:this.$ = $$[$0-1+1-1]; +case 172:this.$ = $$[$0-1+1-1]; break; -case 171:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); +case 173:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); break; -case 172:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { +case 174:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { statement: true }); break; -case 173:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { +case 175:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { statement: true }); break; -case 174:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); +case 176:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 175:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { +case 177:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { invert: true }); break; -case 176:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); +case 178:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); break; -case 177:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); +case 179:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); break; -case 178:this.$ = $$[$0-1+1-1]; -break; -case 179:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { - statement: true - }); -break; -case 180:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { - statement: true - }); +case 180:this.$ = $$[$0-1+1-1]; break; case 181:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { - statement: true, - invert: true + statement: true }); break; case 182:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); +break; +case 183:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 183:this.$ = new OpNode('!', $$[$0-2+2-1]); +case 184:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); break; -case 184:this.$ = new OpNode('!!', $$[$0-2+2-1]); +case 185:this.$ = new OpNode('!', $$[$0-2+2-1]); break; -case 185:this.$ = new OpNode('-', $$[$0-2+2-1]); +case 186:this.$ = new OpNode('!!', $$[$0-2+2-1]); break; -case 186:this.$ = new OpNode('+', $$[$0-2+2-1]); +case 187:this.$ = new OpNode('-', $$[$0-2+2-1]); break; -case 187:this.$ = new OpNode('~', $$[$0-2+2-1]); +case 188:this.$ = new OpNode('+', $$[$0-2+2-1]); break; -case 188:this.$ = new OpNode('--', $$[$0-2+2-1]); +case 189:this.$ = new OpNode('~', $$[$0-2+2-1]); break; -case 189:this.$ = new OpNode('++', $$[$0-2+2-1]); +case 190:this.$ = new OpNode('--', $$[$0-2+2-1]); break; -case 190:this.$ = new OpNode('delete', $$[$0-2+2-1]); +case 191:this.$ = new OpNode('++', $$[$0-2+2-1]); break; -case 191:this.$ = new OpNode('typeof', $$[$0-2+2-1]); +case 192:this.$ = new OpNode('delete', $$[$0-2+2-1]); break; -case 192:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); +case 193:this.$ = new OpNode('typeof', $$[$0-2+2-1]); break; -case 193:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); +case 194:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); break; -case 194:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); break; -case 195:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); +case 196:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 196:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); +case 197:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 197:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 198:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 198:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 199:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 199:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 200:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 200:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 201:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 201:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 202:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 202:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 203:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 203:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); +case 204:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 204:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); +case 205:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 205:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 206:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 206:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 207:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 207:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 208:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 208:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 209:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 209:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); +case 210:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 210:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 211:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 211:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 212:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 212:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); +case 213:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 213:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); +case 214:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 214:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 215:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 215:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 216:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 216:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 217:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 217:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 218:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 218:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 219:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 219:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 220:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 220:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 221:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 221:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 222:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 222:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); +case 223:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 223:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 224:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 224:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +case 225:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 225:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); +case 226:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 226:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); +case 227:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); +break; +case 228:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[3]},{"1":[2,2],"28":89,"50":[1,56]},{"1":[2,3],"4":[1,90]},{"4":[1,91]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":92,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,93],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,8],"4":[2,8],"30":[2,8],"51":[1,133],"62":[1,132],"108":[2,8],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,9],"4":[2,9],"30":[2,9],"108":[2,9],"109":136,"110":[1,79],"112":[1,80],"115":137,"117":[1,82],"130":[1,134],"131":[1,135]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"51":[2,14],"59":[2,14],"62":[2,14],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,14],"81":[1,148],"82":[1,149],"85":[2,14],"92":138,"93":[1,140],"95":[2,14],"100":[2,14],"108":[2,14],"110":[2,14],"111":[2,14],"112":[2,14],"117":[2,14],"121":[2,14],"122":[2,14],"123":[2,14],"130":[2,14],"131":[2,14],"132":[2,14],"134":[2,14],"135":[2,14],"137":[2,14],"138":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14],"164":[2,14],"165":[2,14],"166":[2,14],"167":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"51":[2,15],"59":[2,15],"62":[2,15],"80":[2,15],"85":[2,15],"95":[2,15],"100":[2,15],"108":[2,15],"110":[2,15],"111":[2,15],"112":[2,15],"117":[2,15],"121":[2,15],"122":[2,15],"123":[2,15],"130":[2,15],"131":[2,15],"132":[2,15],"134":[2,15],"135":[2,15],"137":[2,15],"138":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15],"164":[2,15],"165":[2,15],"166":[2,15],"167":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"51":[2,16],"59":[2,16],"62":[2,16],"80":[2,16],"85":[2,16],"95":[2,16],"100":[2,16],"108":[2,16],"110":[2,16],"111":[2,16],"112":[2,16],"117":[2,16],"121":[2,16],"122":[2,16],"123":[2,16],"130":[2,16],"131":[2,16],"132":[2,16],"134":[2,16],"135":[2,16],"137":[2,16],"138":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16],"164":[2,16],"165":[2,16],"166":[2,16],"167":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"51":[2,17],"59":[2,17],"62":[2,17],"80":[2,17],"85":[2,17],"95":[2,17],"100":[2,17],"108":[2,17],"110":[2,17],"111":[2,17],"112":[2,17],"117":[2,17],"121":[2,17],"122":[2,17],"123":[2,17],"130":[2,17],"131":[2,17],"132":[2,17],"134":[2,17],"135":[2,17],"137":[2,17],"138":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17],"164":[2,17],"165":[2,17],"166":[2,17],"167":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"51":[2,18],"59":[2,18],"62":[2,18],"80":[2,18],"85":[2,18],"95":[2,18],"100":[2,18],"108":[2,18],"110":[2,18],"111":[2,18],"112":[2,18],"117":[2,18],"121":[2,18],"122":[2,18],"123":[2,18],"130":[2,18],"131":[2,18],"132":[2,18],"134":[2,18],"135":[2,18],"137":[2,18],"138":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18],"164":[2,18],"165":[2,18],"166":[2,18],"167":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"51":[2,19],"59":[2,19],"62":[2,19],"80":[2,19],"85":[2,19],"95":[2,19],"100":[2,19],"108":[2,19],"110":[2,19],"111":[2,19],"112":[2,19],"117":[2,19],"121":[2,19],"122":[2,19],"123":[2,19],"130":[2,19],"131":[2,19],"132":[2,19],"134":[2,19],"135":[2,19],"137":[2,19],"138":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19],"164":[2,19],"165":[2,19],"166":[2,19],"167":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"51":[2,20],"59":[2,20],"62":[2,20],"80":[2,20],"85":[2,20],"95":[2,20],"100":[2,20],"108":[2,20],"110":[2,20],"111":[2,20],"112":[2,20],"117":[2,20],"121":[2,20],"122":[2,20],"123":[2,20],"130":[2,20],"131":[2,20],"132":[2,20],"134":[2,20],"135":[2,20],"137":[2,20],"138":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20],"164":[2,20],"165":[2,20],"166":[2,20],"167":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"51":[2,21],"59":[2,21],"62":[2,21],"80":[2,21],"85":[2,21],"95":[2,21],"100":[2,21],"108":[2,21],"110":[2,21],"111":[2,21],"112":[2,21],"117":[2,21],"121":[2,21],"122":[2,21],"123":[2,21],"130":[2,21],"131":[2,21],"132":[2,21],"134":[2,21],"135":[2,21],"137":[2,21],"138":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21],"164":[2,21],"165":[2,21],"166":[2,21],"167":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"51":[2,22],"59":[2,22],"62":[2,22],"80":[2,22],"85":[2,22],"95":[2,22],"100":[2,22],"108":[2,22],"110":[2,22],"111":[2,22],"112":[2,22],"117":[2,22],"121":[2,22],"122":[2,22],"123":[2,22],"130":[2,22],"131":[2,22],"132":[2,22],"134":[2,22],"135":[2,22],"137":[2,22],"138":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22],"164":[2,22],"165":[2,22],"166":[2,22],"167":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"51":[2,23],"59":[2,23],"62":[2,23],"80":[2,23],"85":[2,23],"95":[2,23],"100":[2,23],"108":[2,23],"110":[2,23],"111":[2,23],"112":[2,23],"117":[2,23],"121":[2,23],"122":[2,23],"123":[2,23],"130":[2,23],"131":[2,23],"132":[2,23],"134":[2,23],"135":[2,23],"137":[2,23],"138":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23],"164":[2,23],"165":[2,23],"166":[2,23],"167":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"51":[2,24],"59":[2,24],"62":[2,24],"80":[2,24],"85":[2,24],"95":[2,24],"100":[2,24],"108":[2,24],"110":[2,24],"111":[2,24],"112":[2,24],"117":[2,24],"121":[2,24],"122":[2,24],"123":[2,24],"130":[2,24],"131":[2,24],"132":[2,24],"134":[2,24],"135":[2,24],"137":[2,24],"138":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24],"164":[2,24],"165":[2,24],"166":[2,24],"167":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"51":[2,25],"59":[2,25],"62":[2,25],"80":[2,25],"85":[2,25],"95":[2,25],"100":[2,25],"108":[2,25],"110":[2,25],"111":[2,25],"112":[2,25],"117":[2,25],"121":[2,25],"122":[2,25],"123":[2,25],"130":[2,25],"131":[2,25],"132":[2,25],"134":[2,25],"135":[2,25],"137":[2,25],"138":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25],"164":[2,25],"165":[2,25],"166":[2,25],"167":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"51":[2,26],"59":[2,26],"62":[2,26],"80":[2,26],"85":[2,26],"95":[2,26],"100":[2,26],"108":[2,26],"110":[2,26],"111":[2,26],"112":[2,26],"117":[2,26],"121":[2,26],"122":[2,26],"123":[2,26],"130":[2,26],"131":[2,26],"132":[2,26],"134":[2,26],"135":[2,26],"137":[2,26],"138":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26],"164":[2,26],"165":[2,26],"166":[2,26],"167":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"51":[2,27],"59":[2,27],"62":[2,27],"80":[2,27],"85":[2,27],"95":[2,27],"100":[2,27],"108":[2,27],"110":[2,27],"111":[2,27],"112":[2,27],"117":[2,27],"121":[2,27],"122":[2,27],"123":[2,27],"130":[2,27],"131":[2,27],"132":[2,27],"134":[2,27],"135":[2,27],"137":[2,27],"138":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27],"164":[2,27],"165":[2,27],"166":[2,27],"167":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"51":[2,28],"59":[2,28],"62":[2,28],"80":[2,28],"85":[2,28],"95":[2,28],"100":[2,28],"108":[2,28],"110":[2,28],"111":[2,28],"112":[2,28],"117":[2,28],"121":[2,28],"122":[2,28],"123":[2,28],"130":[2,28],"131":[2,28],"132":[2,28],"134":[2,28],"135":[2,28],"137":[2,28],"138":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28],"164":[2,28],"165":[2,28],"166":[2,28],"167":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"108":[2,10],"110":[2,10],"112":[2,10],"117":[2,10],"130":[2,10],"131":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"108":[2,11],"110":[2,11],"112":[2,11],"117":[2,11],"130":[2,11],"131":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"108":[2,12],"110":[2,12],"112":[2,12],"117":[2,12],"130":[2,12],"131":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"108":[2,13],"110":[2,13],"112":[2,13],"117":[2,13],"130":[2,13],"131":[2,13]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"46":[1,150],"51":[2,76],"59":[2,76],"62":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"85":[2,76],"93":[2,76],"95":[2,76],"100":[2,76],"108":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"117":[2,76],"121":[2,76],"122":[2,76],"123":[2,76],"130":[2,76],"131":[2,76],"132":[2,76],"134":[2,76],"135":[2,76],"137":[2,76],"138":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76],"165":[2,76],"166":[2,76],"167":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"51":[2,77],"59":[2,77],"62":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"85":[2,77],"93":[2,77],"95":[2,77],"100":[2,77],"108":[2,77],"110":[2,77],"111":[2,77],"112":[2,77],"117":[2,77],"121":[2,77],"122":[2,77],"123":[2,77],"130":[2,77],"131":[2,77],"132":[2,77],"134":[2,77],"135":[2,77],"137":[2,77],"138":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77],"164":[2,77],"165":[2,77],"166":[2,77],"167":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"51":[2,78],"59":[2,78],"62":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"85":[2,78],"93":[2,78],"95":[2,78],"100":[2,78],"108":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"117":[2,78],"121":[2,78],"122":[2,78],"123":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"134":[2,78],"135":[2,78],"137":[2,78],"138":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78],"164":[2,78],"165":[2,78],"166":[2,78],"167":[2,78]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"51":[2,79],"59":[2,79],"62":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"85":[2,79],"93":[2,79],"95":[2,79],"100":[2,79],"108":[2,79],"110":[2,79],"111":[2,79],"112":[2,79],"117":[2,79],"121":[2,79],"122":[2,79],"123":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"134":[2,79],"135":[2,79],"137":[2,79],"138":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79],"164":[2,79],"165":[2,79],"166":[2,79],"167":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"51":[2,80],"59":[2,80],"62":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"82":[2,80],"85":[2,80],"93":[2,80],"95":[2,80],"100":[2,80],"108":[2,80],"110":[2,80],"111":[2,80],"112":[2,80],"117":[2,80],"121":[2,80],"122":[2,80],"123":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"134":[2,80],"135":[2,80],"137":[2,80],"138":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80],"164":[2,80],"165":[2,80],"166":[2,80],"167":[2,80]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"51":[2,81],"59":[2,81],"62":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"82":[2,81],"85":[2,81],"93":[2,81],"95":[2,81],"100":[2,81],"108":[2,81],"110":[2,81],"111":[2,81],"112":[2,81],"117":[2,81],"121":[2,81],"122":[2,81],"123":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"134":[2,81],"135":[2,81],"137":[2,81],"138":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81],"164":[2,81],"165":[2,81],"166":[2,81],"167":[2,81]},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"51":[2,108],"59":[2,108],"62":[2,108],"64":152,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,108],"81":[1,148],"82":[1,149],"85":[2,108],"92":151,"93":[1,140],"95":[2,108],"100":[2,108],"108":[2,108],"110":[2,108],"111":[2,108],"112":[2,108],"117":[2,108],"121":[2,108],"122":[2,108],"123":[2,108],"130":[2,108],"131":[2,108],"132":[2,108],"134":[2,108],"135":[2,108],"137":[2,108],"138":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108],"164":[2,108],"165":[2,108],"166":[2,108],"167":[2,108]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"51":[2,109],"59":[2,109],"62":[2,109],"80":[2,109],"85":[2,109],"95":[2,109],"100":[2,109],"108":[2,109],"110":[2,109],"111":[2,109],"112":[2,109],"117":[2,109],"121":[2,109],"122":[2,109],"123":[2,109],"130":[2,109],"131":[2,109],"132":[2,109],"134":[2,109],"135":[2,109],"137":[2,109],"138":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109],"164":[2,109],"165":[2,109],"166":[2,109],"167":[2,109]},{"14":154,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":156,"65":153,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"53":157,"54":[2,63],"59":[2,63],"60":158,"61":[1,159]},{"4":[1,161],"6":160,"29":[1,6]},{"8":162,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":164,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":165,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":166,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":167,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":168,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":169,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":170,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":171,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"51":[2,178],"59":[2,178],"62":[2,178],"80":[2,178],"85":[2,178],"95":[2,178],"100":[2,178],"108":[2,178],"110":[2,178],"111":[2,178],"112":[2,178],"117":[2,178],"121":[2,178],"122":[2,178],"123":[2,178],"126":[1,172],"130":[2,178],"131":[2,178],"132":[2,178],"134":[2,178],"135":[2,178],"137":[2,178],"138":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178],"162":[2,178],"163":[2,178],"164":[2,178],"165":[2,178],"166":[2,178],"167":[2,178]},{"4":[1,161],"6":173,"29":[1,6]},{"4":[1,161],"6":174,"29":[1,6]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"51":[2,146],"59":[2,146],"62":[2,146],"80":[2,146],"85":[2,146],"95":[2,146],"100":[2,146],"108":[2,146],"110":[2,146],"111":[2,146],"112":[2,146],"117":[2,146],"121":[2,146],"122":[2,146],"123":[2,146],"130":[2,146],"131":[2,146],"132":[2,146],"134":[2,146],"135":[2,146],"137":[2,146],"138":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146],"149":[2,146],"150":[2,146],"151":[2,146],"152":[2,146],"153":[2,146],"154":[2,146],"155":[2,146],"156":[2,146],"157":[2,146],"158":[2,146],"159":[2,146],"160":[2,146],"161":[2,146],"162":[2,146],"163":[2,146],"164":[2,146],"165":[2,146],"166":[2,146],"167":[2,146]},{"116":175,"121":[1,176],"122":[1,177]},{"8":178,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,179],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[2,73],"51":[2,73],"59":[2,73],"62":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"85":[2,73],"87":[1,180],"93":[2,73],"95":[2,73],"100":[2,73],"108":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"117":[2,73],"121":[2,73],"122":[2,73],"123":[2,73],"130":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"137":[2,73],"138":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73],"165":[2,73],"166":[2,73],"167":[2,73]},{"14":183,"29":[1,182],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":181,"65":184,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"51":[2,55],"59":[2,55],"62":[2,55],"80":[2,55],"85":[2,55],"95":[2,55],"100":[2,55],"104":[2,55],"105":[2,55],"108":[2,55],"110":[2,55],"111":[2,55],"112":[2,55],"117":[2,55],"121":[2,55],"122":[2,55],"123":[2,55],"126":[2,55],"128":[2,55],"130":[2,55],"131":[2,55],"132":[2,55],"134":[2,55],"135":[2,55],"137":[2,55],"138":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55],"164":[2,55],"165":[2,55],"166":[2,55],"167":[2,55]},{"1":[2,54],"4":[2,54],"8":185,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,54],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"108":[2,54],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[2,54],"131":[2,54],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":186,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"46":[2,74],"51":[2,74],"59":[2,74],"62":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"85":[2,74],"93":[2,74],"95":[2,74],"100":[2,74],"108":[2,74],"110":[2,74],"111":[2,74],"112":[2,74],"117":[2,74],"121":[2,74],"122":[2,74],"123":[2,74],"130":[2,74],"131":[2,74],"132":[2,74],"134":[2,74],"135":[2,74],"137":[2,74],"138":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74],"164":[2,74],"165":[2,74],"166":[2,74],"167":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"46":[2,75],"51":[2,75],"59":[2,75],"62":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"85":[2,75],"93":[2,75],"95":[2,75],"100":[2,75],"108":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"117":[2,75],"121":[2,75],"122":[2,75],"123":[2,75],"130":[2,75],"131":[2,75],"132":[2,75],"134":[2,75],"135":[2,75],"137":[2,75],"138":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75],"165":[2,75],"166":[2,75],"167":[2,75]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"51":[2,35],"59":[2,35],"62":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"82":[2,35],"85":[2,35],"93":[2,35],"95":[2,35],"100":[2,35],"108":[2,35],"110":[2,35],"111":[2,35],"112":[2,35],"117":[2,35],"121":[2,35],"122":[2,35],"123":[2,35],"130":[2,35],"131":[2,35],"132":[2,35],"134":[2,35],"135":[2,35],"137":[2,35],"138":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35],"164":[2,35],"165":[2,35],"166":[2,35],"167":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"51":[2,36],"59":[2,36],"62":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"82":[2,36],"85":[2,36],"93":[2,36],"95":[2,36],"100":[2,36],"108":[2,36],"110":[2,36],"111":[2,36],"112":[2,36],"117":[2,36],"121":[2,36],"122":[2,36],"123":[2,36],"130":[2,36],"131":[2,36],"132":[2,36],"134":[2,36],"135":[2,36],"137":[2,36],"138":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36],"164":[2,36],"165":[2,36],"166":[2,36],"167":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"51":[2,37],"59":[2,37],"62":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"82":[2,37],"85":[2,37],"93":[2,37],"95":[2,37],"100":[2,37],"108":[2,37],"110":[2,37],"111":[2,37],"112":[2,37],"117":[2,37],"121":[2,37],"122":[2,37],"123":[2,37],"130":[2,37],"131":[2,37],"132":[2,37],"134":[2,37],"135":[2,37],"137":[2,37],"138":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37],"164":[2,37],"165":[2,37],"166":[2,37],"167":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"51":[2,38],"59":[2,38],"62":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"82":[2,38],"85":[2,38],"93":[2,38],"95":[2,38],"100":[2,38],"108":[2,38],"110":[2,38],"111":[2,38],"112":[2,38],"117":[2,38],"121":[2,38],"122":[2,38],"123":[2,38],"130":[2,38],"131":[2,38],"132":[2,38],"134":[2,38],"135":[2,38],"137":[2,38],"138":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38],"164":[2,38],"165":[2,38],"166":[2,38],"167":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"51":[2,39],"59":[2,39],"62":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"76":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"82":[2,39],"85":[2,39],"93":[2,39],"95":[2,39],"100":[2,39],"108":[2,39],"110":[2,39],"111":[2,39],"112":[2,39],"117":[2,39],"121":[2,39],"122":[2,39],"123":[2,39],"130":[2,39],"131":[2,39],"132":[2,39],"134":[2,39],"135":[2,39],"137":[2,39],"138":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39],"164":[2,39],"165":[2,39],"166":[2,39],"167":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"51":[2,40],"59":[2,40],"62":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"76":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"82":[2,40],"85":[2,40],"93":[2,40],"95":[2,40],"100":[2,40],"108":[2,40],"110":[2,40],"111":[2,40],"112":[2,40],"117":[2,40],"121":[2,40],"122":[2,40],"123":[2,40],"130":[2,40],"131":[2,40],"132":[2,40],"134":[2,40],"135":[2,40],"137":[2,40],"138":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40],"164":[2,40],"165":[2,40],"166":[2,40],"167":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"51":[2,41],"59":[2,41],"62":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"76":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"82":[2,41],"85":[2,41],"93":[2,41],"95":[2,41],"100":[2,41],"108":[2,41],"110":[2,41],"111":[2,41],"112":[2,41],"117":[2,41],"121":[2,41],"122":[2,41],"123":[2,41],"130":[2,41],"131":[2,41],"132":[2,41],"134":[2,41],"135":[2,41],"137":[2,41],"138":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41],"164":[2,41],"165":[2,41],"166":[2,41],"167":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"51":[2,42],"59":[2,42],"62":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"76":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"82":[2,42],"85":[2,42],"93":[2,42],"95":[2,42],"100":[2,42],"108":[2,42],"110":[2,42],"111":[2,42],"112":[2,42],"117":[2,42],"121":[2,42],"122":[2,42],"123":[2,42],"130":[2,42],"131":[2,42],"132":[2,42],"134":[2,42],"135":[2,42],"137":[2,42],"138":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42],"164":[2,42],"165":[2,42],"166":[2,42],"167":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"51":[2,43],"59":[2,43],"62":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"76":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"82":[2,43],"85":[2,43],"93":[2,43],"95":[2,43],"100":[2,43],"108":[2,43],"110":[2,43],"111":[2,43],"112":[2,43],"117":[2,43],"121":[2,43],"122":[2,43],"123":[2,43],"130":[2,43],"131":[2,43],"132":[2,43],"134":[2,43],"135":[2,43],"137":[2,43],"138":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43],"164":[2,43],"165":[2,43],"166":[2,43],"167":[2,43]},{"7":187,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,126],"8":188,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,126],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,126],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":189,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,126],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"51":[2,118],"59":[2,118],"62":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"76":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"82":[2,118],"85":[2,118],"93":[2,118],"95":[2,118],"100":[2,118],"108":[2,118],"110":[2,118],"111":[2,118],"112":[2,118],"117":[2,118],"121":[2,118],"122":[2,118],"123":[2,118],"130":[2,118],"131":[2,118],"132":[2,118],"134":[2,118],"135":[2,118],"137":[2,118],"138":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118],"164":[2,118],"165":[2,118],"166":[2,118],"167":[2,118]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"31":190,"32":[1,88],"51":[2,119],"59":[2,119],"62":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"82":[2,119],"85":[2,119],"93":[2,119],"95":[2,119],"100":[2,119],"108":[2,119],"110":[2,119],"111":[2,119],"112":[2,119],"117":[2,119],"121":[2,119],"122":[2,119],"123":[2,119],"130":[2,119],"131":[2,119],"132":[2,119],"134":[2,119],"135":[2,119],"137":[2,119],"138":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119],"164":[2,119],"165":[2,119],"166":[2,119],"167":[2,119]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"51":[2,116],"59":[2,116],"62":[2,116],"80":[2,116],"85":[2,116],"92":191,"93":[1,140],"95":[2,116],"100":[2,116],"108":[2,116],"110":[2,116],"111":[2,116],"112":[2,116],"117":[2,116],"121":[2,116],"122":[2,116],"123":[2,116],"130":[2,116],"131":[2,116],"132":[2,116],"134":[2,116],"135":[2,116],"137":[2,116],"138":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116],"164":[2,116],"165":[2,116],"166":[2,116],"167":[2,116]},{"4":[2,59],"29":[2,59]},{"4":[2,60],"29":[2,60]},{"8":192,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":193,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":194,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":195,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[1,161],"6":196,"8":197,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"31":201,"32":[1,88],"67":202,"68":203,"83":[1,85],"99":[1,204],"118":198,"119":[1,199],"120":200},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"46":[2,69],"51":[2,69],"59":[2,69],"62":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"76":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"82":[2,69],"85":[2,69],"87":[2,69],"93":[2,69],"95":[2,69],"100":[2,69],"108":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"117":[2,69],"121":[2,69],"122":[2,69],"123":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"134":[2,69],"135":[2,69],"137":[2,69],"138":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69],"164":[2,69],"165":[2,69],"166":[2,69],"167":[2,69]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"51":[2,72],"59":[2,72],"62":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"82":[2,72],"85":[2,72],"87":[2,72],"93":[2,72],"95":[2,72],"100":[2,72],"108":[2,72],"110":[2,72],"111":[2,72],"112":[2,72],"117":[2,72],"121":[2,72],"122":[2,72],"123":[2,72],"130":[2,72],"131":[2,72],"132":[2,72],"134":[2,72],"135":[2,72],"137":[2,72],"138":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72],"165":[2,72],"166":[2,72],"167":[2,72]},{"4":[2,92],"28":209,"29":[2,92],"31":207,"32":[1,88],"33":208,"34":[1,86],"35":[1,87],"47":206,"50":[1,56],"59":[2,92],"84":205,"85":[2,92]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"48":[2,33],"51":[2,33],"59":[2,33],"62":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"79":[2,33],"80":[2,33],"81":[2,33],"82":[2,33],"85":[2,33],"93":[2,33],"95":[2,33],"100":[2,33],"108":[2,33],"110":[2,33],"111":[2,33],"112":[2,33],"117":[2,33],"121":[2,33],"122":[2,33],"123":[2,33],"130":[2,33],"131":[2,33],"132":[2,33],"134":[2,33],"135":[2,33],"137":[2,33],"138":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33],"164":[2,33],"165":[2,33],"166":[2,33],"167":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"48":[2,34],"51":[2,34],"59":[2,34],"62":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"82":[2,34],"85":[2,34],"93":[2,34],"95":[2,34],"100":[2,34],"108":[2,34],"110":[2,34],"111":[2,34],"112":[2,34],"117":[2,34],"121":[2,34],"122":[2,34],"123":[2,34],"130":[2,34],"131":[2,34],"132":[2,34],"134":[2,34],"135":[2,34],"137":[2,34],"138":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34],"164":[2,34],"165":[2,34],"166":[2,34],"167":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"48":[2,32],"51":[2,32],"59":[2,32],"62":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"82":[2,32],"85":[2,32],"87":[2,32],"93":[2,32],"95":[2,32],"100":[2,32],"108":[2,32],"110":[2,32],"111":[2,32],"112":[2,32],"117":[2,32],"121":[2,32],"122":[2,32],"123":[2,32],"130":[2,32],"131":[2,32],"132":[2,32],"134":[2,32],"135":[2,32],"137":[2,32],"138":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32],"164":[2,32],"165":[2,32],"166":[2,32],"167":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"51":[2,31],"59":[2,31],"62":[2,31],"80":[2,31],"85":[2,31],"95":[2,31],"100":[2,31],"104":[2,31],"105":[2,31],"108":[2,31],"110":[2,31],"111":[2,31],"112":[2,31],"117":[2,31],"121":[2,31],"122":[2,31],"123":[2,31],"126":[2,31],"128":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"134":[2,31],"135":[2,31],"137":[2,31],"138":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31],"164":[2,31],"165":[2,31],"166":[2,31],"167":[2,31]},{"1":[2,7],"4":[2,7],"7":210,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,4]},{"4":[1,90],"30":[1,211]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"51":[2,30],"59":[2,30],"62":[2,30],"80":[2,30],"85":[2,30],"95":[2,30],"100":[2,30],"104":[2,30],"105":[2,30],"108":[2,30],"110":[2,30],"111":[2,30],"112":[2,30],"117":[2,30],"121":[2,30],"122":[2,30],"123":[2,30],"126":[2,30],"128":[2,30],"130":[2,30],"131":[2,30],"132":[2,30],"134":[2,30],"135":[2,30],"137":[2,30],"138":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30],"164":[2,30],"165":[2,30],"166":[2,30],"167":[2,30]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"51":[2,192],"59":[2,192],"62":[2,192],"80":[2,192],"85":[2,192],"95":[2,192],"100":[2,192],"108":[2,192],"110":[2,192],"111":[2,192],"112":[2,192],"117":[2,192],"121":[2,192],"122":[2,192],"123":[2,192],"130":[2,192],"131":[2,192],"132":[2,192],"134":[2,192],"135":[2,192],"137":[2,192],"138":[2,192],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192],"164":[2,192],"165":[2,192],"166":[2,192],"167":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"51":[2,193],"59":[2,193],"62":[2,193],"80":[2,193],"85":[2,193],"95":[2,193],"100":[2,193],"108":[2,193],"110":[2,193],"111":[2,193],"112":[2,193],"117":[2,193],"121":[2,193],"122":[2,193],"123":[2,193],"130":[2,193],"131":[2,193],"132":[2,193],"134":[2,193],"135":[2,193],"137":[2,193],"138":[2,193],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193],"164":[2,193],"165":[2,193],"166":[2,193],"167":[2,193]},{"8":212,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":213,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":214,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":215,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":216,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":217,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":218,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":219,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":220,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":221,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":222,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":223,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":224,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":225,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":226,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":227,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":228,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":229,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":230,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":231,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":232,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":233,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":234,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":235,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":236,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":237,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":238,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":239,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":240,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":241,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":242,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"121":[1,243],"122":[1,244]},{"8":245,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":246,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"51":[2,145],"59":[2,145],"62":[2,145],"80":[2,145],"85":[2,145],"95":[2,145],"100":[2,145],"108":[2,145],"110":[2,145],"111":[2,145],"112":[2,145],"117":[2,145],"121":[2,145],"122":[2,145],"123":[2,145],"130":[2,145],"131":[2,145],"132":[2,145],"134":[2,145],"135":[2,145],"137":[2,145],"138":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145],"164":[2,145],"165":[2,145],"166":[2,145],"167":[2,145]},{"116":247,"121":[1,176],"122":[1,177]},{"62":[1,248]},{"1":[2,56],"4":[2,56],"29":[2,56],"30":[2,56],"51":[2,56],"59":[2,56],"62":[2,56],"80":[2,56],"85":[2,56],"95":[2,56],"100":[2,56],"108":[2,56],"110":[2,56],"111":[2,56],"112":[2,56],"117":[2,56],"121":[2,56],"122":[2,56],"123":[2,56],"130":[2,56],"131":[2,56],"132":[2,56],"134":[2,56],"135":[2,56],"137":[2,56],"138":[2,56],"141":[2,56],"142":[2,56],"143":[2,56],"144":[2,56],"145":[2,56],"146":[2,56],"147":[2,56],"148":[2,56],"149":[2,56],"150":[2,56],"151":[2,56],"152":[2,56],"153":[2,56],"154":[2,56],"155":[2,56],"156":[2,56],"157":[2,56],"158":[2,56],"159":[2,56],"160":[2,56],"161":[2,56],"162":[2,56],"163":[2,56],"164":[2,56],"165":[2,56],"166":[2,56],"167":[2,56]},{"8":249,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":250,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"51":[2,144],"59":[2,144],"62":[2,144],"80":[2,144],"85":[2,144],"95":[2,144],"100":[2,144],"108":[2,144],"110":[2,144],"111":[2,144],"112":[2,144],"117":[2,144],"121":[2,144],"122":[2,144],"123":[2,144],"130":[2,144],"131":[2,144],"132":[2,144],"134":[2,144],"135":[2,144],"137":[2,144],"138":[2,144],"141":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"148":[2,144],"149":[2,144],"150":[2,144],"151":[2,144],"152":[2,144],"153":[2,144],"154":[2,144],"155":[2,144],"156":[2,144],"157":[2,144],"158":[2,144],"159":[2,144],"160":[2,144],"161":[2,144],"162":[2,144],"163":[2,144],"164":[2,144],"165":[2,144],"166":[2,144],"167":[2,144]},{"116":251,"121":[1,176],"122":[1,177]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"51":[2,113],"59":[2,113],"62":[2,113],"73":[2,113],"74":[2,113],"75":[2,113],"76":[2,113],"79":[2,113],"80":[2,113],"81":[2,113],"82":[2,113],"85":[2,113],"93":[2,113],"95":[2,113],"100":[2,113],"108":[2,113],"110":[2,113],"111":[2,113],"112":[2,113],"117":[2,113],"121":[2,113],"122":[2,113],"123":[2,113],"130":[2,113],"131":[2,113],"132":[2,113],"134":[2,113],"135":[2,113],"137":[2,113],"138":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113],"164":[2,113],"165":[2,113],"166":[2,113],"167":[2,113]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"46":[2,70],"51":[2,70],"59":[2,70],"62":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"82":[2,70],"85":[2,70],"87":[2,70],"93":[2,70],"95":[2,70],"100":[2,70],"108":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"117":[2,70],"121":[2,70],"122":[2,70],"123":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"137":[2,70],"138":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70],"165":[2,70],"166":[2,70],"167":[2,70]},{"4":[2,126],"8":253,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,126],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,126],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":252,"95":[2,126],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"31":254,"32":[1,88]},{"31":255,"32":[1,88]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"51":[2,84],"59":[2,84],"62":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"82":[2,84],"85":[2,84],"87":[2,84],"93":[2,84],"95":[2,84],"100":[2,84],"108":[2,84],"110":[2,84],"111":[2,84],"112":[2,84],"117":[2,84],"121":[2,84],"122":[2,84],"123":[2,84],"130":[2,84],"131":[2,84],"132":[2,84],"134":[2,84],"135":[2,84],"137":[2,84],"138":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84],"164":[2,84],"165":[2,84],"166":[2,84],"167":[2,84]},{"31":256,"32":[1,88]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"51":[2,86],"59":[2,86],"62":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"82":[2,86],"85":[2,86],"87":[2,86],"93":[2,86],"95":[2,86],"100":[2,86],"108":[2,86],"110":[2,86],"111":[2,86],"112":[2,86],"117":[2,86],"121":[2,86],"122":[2,86],"123":[2,86],"130":[2,86],"131":[2,86],"132":[2,86],"134":[2,86],"135":[2,86],"137":[2,86],"138":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86],"164":[2,86],"165":[2,86],"166":[2,86],"167":[2,86]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"51":[2,87],"59":[2,87],"62":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"76":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"82":[2,87],"85":[2,87],"87":[2,87],"93":[2,87],"95":[2,87],"100":[2,87],"108":[2,87],"110":[2,87],"111":[2,87],"112":[2,87],"117":[2,87],"121":[2,87],"122":[2,87],"123":[2,87],"130":[2,87],"131":[2,87],"132":[2,87],"134":[2,87],"135":[2,87],"137":[2,87],"138":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87],"164":[2,87],"165":[2,87],"166":[2,87],"167":[2,87]},{"8":257,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"77":258,"79":[1,259],"81":[1,148],"82":[1,149]},{"77":260,"79":[1,259],"81":[1,148],"82":[1,149]},{"8":261,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,262],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"51":[2,114],"59":[2,114],"62":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"76":[2,114],"79":[2,114],"80":[2,114],"81":[2,114],"82":[2,114],"85":[2,114],"93":[2,114],"95":[2,114],"100":[2,114],"108":[2,114],"110":[2,114],"111":[2,114],"112":[2,114],"117":[2,114],"121":[2,114],"122":[2,114],"123":[2,114],"130":[2,114],"131":[2,114],"132":[2,114],"134":[2,114],"135":[2,114],"137":[2,114],"138":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114],"164":[2,114],"165":[2,114],"166":[2,114],"167":[2,114]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"51":[2,71],"59":[2,71],"62":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"76":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"82":[2,71],"85":[2,71],"87":[2,71],"93":[2,71],"95":[2,71],"100":[2,71],"108":[2,71],"110":[2,71],"111":[2,71],"112":[2,71],"117":[2,71],"121":[2,71],"122":[2,71],"123":[2,71],"130":[2,71],"131":[2,71],"132":[2,71],"134":[2,71],"135":[2,71],"137":[2,71],"138":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71],"164":[2,71],"165":[2,71],"166":[2,71],"167":[2,71]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"51":[2,110],"59":[2,110],"62":[2,110],"64":152,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,110],"81":[1,148],"82":[1,149],"85":[2,110],"92":151,"93":[1,140],"95":[2,110],"100":[2,110],"108":[2,110],"110":[2,110],"111":[2,110],"112":[2,110],"117":[2,110],"121":[2,110],"122":[2,110],"123":[2,110],"130":[2,110],"131":[2,110],"132":[2,110],"134":[2,110],"135":[2,110],"137":[2,110],"138":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110],"164":[2,110],"165":[2,110],"166":[2,110],"167":[2,110]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"51":[2,111],"59":[2,111],"62":[2,111],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,111],"81":[1,148],"82":[1,149],"85":[2,111],"92":138,"93":[1,140],"95":[2,111],"100":[2,111],"108":[2,111],"110":[2,111],"111":[2,111],"112":[2,111],"117":[2,111],"121":[2,111],"122":[2,111],"123":[2,111],"130":[2,111],"131":[2,111],"132":[2,111],"134":[2,111],"135":[2,111],"137":[2,111],"138":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111],"164":[2,111],"165":[2,111],"166":[2,111],"167":[2,111]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"51":[2,76],"59":[2,76],"62":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"85":[2,76],"93":[2,76],"95":[2,76],"100":[2,76],"108":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"117":[2,76],"121":[2,76],"122":[2,76],"123":[2,76],"130":[2,76],"131":[2,76],"132":[2,76],"134":[2,76],"135":[2,76],"137":[2,76],"138":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76],"165":[2,76],"166":[2,76],"167":[2,76]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"51":[2,73],"59":[2,73],"62":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"85":[2,73],"93":[2,73],"95":[2,73],"100":[2,73],"108":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"117":[2,73],"121":[2,73],"122":[2,73],"123":[2,73],"130":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"137":[2,73],"138":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73],"165":[2,73],"166":[2,73],"167":[2,73]},{"54":[1,263],"59":[1,264]},{"54":[2,64],"59":[2,64],"62":[1,265]},{"54":[2,66],"59":[2,66],"62":[2,66]},{"1":[2,58],"4":[2,58],"29":[2,58],"30":[2,58],"51":[2,58],"59":[2,58],"62":[2,58],"80":[2,58],"85":[2,58],"95":[2,58],"100":[2,58],"108":[2,58],"110":[2,58],"111":[2,58],"112":[2,58],"117":[2,58],"121":[2,58],"122":[2,58],"123":[2,58],"130":[2,58],"131":[2,58],"132":[2,58],"134":[2,58],"135":[2,58],"137":[2,58],"138":[2,58],"141":[2,58],"142":[2,58],"143":[2,58],"144":[2,58],"145":[2,58],"146":[2,58],"147":[2,58],"148":[2,58],"149":[2,58],"150":[2,58],"151":[2,58],"152":[2,58],"153":[2,58],"154":[2,58],"155":[2,58],"156":[2,58],"157":[2,58],"158":[2,58],"159":[2,58],"160":[2,58],"161":[2,58],"162":[2,58],"163":[2,58],"164":[2,58],"165":[2,58],"166":[2,58],"167":[2,58]},{"28":89,"50":[1,56]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"51":[1,133],"59":[2,183],"62":[2,183],"80":[2,183],"85":[2,183],"95":[2,183],"100":[2,183],"108":[2,183],"109":130,"110":[2,183],"111":[2,183],"112":[2,183],"115":131,"117":[2,183],"121":[2,183],"122":[2,183],"123":[2,183],"130":[2,183],"131":[2,183],"134":[2,183],"135":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[2,183],"164":[2,183],"165":[2,183],"166":[2,183],"167":[2,183]},{"109":136,"110":[1,79],"112":[1,80],"115":137,"117":[1,82],"130":[1,134],"131":[1,135]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"51":[1,133],"59":[2,184],"62":[2,184],"80":[2,184],"85":[2,184],"95":[2,184],"100":[2,184],"108":[2,184],"109":130,"110":[2,184],"111":[2,184],"112":[2,184],"115":131,"117":[2,184],"121":[2,184],"122":[2,184],"123":[2,184],"130":[2,184],"131":[2,184],"134":[2,184],"135":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[2,184],"164":[2,184],"165":[2,184],"166":[2,184],"167":[2,184]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"51":[1,133],"59":[2,185],"62":[2,185],"80":[2,185],"85":[2,185],"95":[2,185],"100":[2,185],"108":[2,185],"109":130,"110":[2,185],"111":[2,185],"112":[2,185],"115":131,"117":[2,185],"121":[2,185],"122":[2,185],"123":[2,185],"130":[2,185],"131":[2,185],"134":[2,185],"135":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185],"164":[2,185],"165":[2,185],"166":[2,185],"167":[2,185]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"51":[1,133],"59":[2,186],"62":[2,186],"80":[2,186],"85":[2,186],"95":[2,186],"100":[2,186],"108":[2,186],"109":130,"110":[2,186],"111":[2,186],"112":[2,186],"115":131,"117":[2,186],"121":[2,186],"122":[2,186],"123":[2,186],"130":[2,186],"131":[2,186],"134":[2,186],"135":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186],"164":[2,186],"165":[2,186],"166":[2,186],"167":[2,186]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"51":[1,133],"59":[2,187],"62":[2,187],"80":[2,187],"85":[2,187],"95":[2,187],"100":[2,187],"108":[2,187],"109":130,"110":[2,187],"111":[2,187],"112":[2,187],"115":131,"117":[2,187],"121":[2,187],"122":[2,187],"123":[2,187],"130":[2,187],"131":[2,187],"134":[2,187],"135":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187],"164":[2,187],"165":[2,187],"166":[2,187],"167":[2,187]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"51":[1,133],"59":[2,188],"62":[2,188],"80":[2,188],"85":[2,188],"95":[2,188],"100":[2,188],"108":[2,188],"109":130,"110":[2,188],"111":[2,188],"112":[2,188],"115":131,"117":[2,188],"121":[2,188],"122":[2,188],"123":[2,188],"130":[2,188],"131":[2,188],"134":[2,188],"135":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188],"164":[2,188],"165":[2,188],"166":[2,188],"167":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"51":[1,133],"59":[2,189],"62":[2,189],"80":[2,189],"85":[2,189],"95":[2,189],"100":[2,189],"108":[2,189],"109":130,"110":[2,189],"111":[2,189],"112":[2,189],"115":131,"117":[2,189],"121":[2,189],"122":[2,189],"123":[2,189],"130":[2,189],"131":[2,189],"134":[2,189],"135":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189],"164":[2,189],"165":[2,189],"166":[2,189],"167":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"51":[1,133],"59":[2,190],"62":[2,190],"80":[2,190],"85":[2,190],"95":[2,190],"100":[2,190],"108":[2,190],"109":130,"110":[2,190],"111":[2,190],"112":[2,190],"115":131,"117":[2,190],"121":[2,190],"122":[2,190],"123":[2,190],"130":[2,190],"131":[2,190],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190],"164":[2,190],"165":[2,190],"166":[2,190],"167":[1,124]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"51":[1,133],"59":[2,191],"62":[2,191],"80":[2,191],"85":[2,191],"95":[2,191],"100":[2,191],"108":[2,191],"109":130,"110":[2,191],"111":[2,191],"112":[2,191],"115":131,"117":[2,191],"121":[2,191],"122":[2,191],"123":[2,191],"130":[2,191],"131":[2,191],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191],"164":[2,191],"165":[2,191],"166":[2,191],"167":[1,124]},{"4":[1,161],"6":267,"29":[1,6],"130":[1,266]},{"103":268,"104":[1,269],"105":[1,270]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"51":[2,143],"59":[2,143],"62":[2,143],"80":[2,143],"85":[2,143],"95":[2,143],"100":[2,143],"108":[2,143],"110":[2,143],"111":[2,143],"112":[2,143],"117":[2,143],"121":[2,143],"122":[2,143],"123":[2,143],"130":[2,143],"131":[2,143],"132":[2,143],"134":[2,143],"135":[2,143],"137":[2,143],"138":[2,143],"141":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"147":[2,143],"148":[2,143],"149":[2,143],"150":[2,143],"151":[2,143],"152":[2,143],"153":[2,143],"154":[2,143],"155":[2,143],"156":[2,143],"157":[2,143],"158":[2,143],"159":[2,143],"160":[2,143],"161":[2,143],"162":[2,143],"163":[2,143],"164":[2,143],"165":[2,143],"166":[2,143],"167":[2,143]},{"4":[1,161],"6":271,"29":[1,6]},{"8":272,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":273,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"29":[1,274],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"125":275,"127":276,"128":[1,277]},{"14":278,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":156,"65":184,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"1":[2,97],"4":[2,97],"29":[1,280],"30":[2,97],"51":[2,97],"59":[2,97],"62":[2,97],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"80":[2,97],"81":[2,73],"82":[2,73],"85":[2,97],"87":[1,279],"93":[2,73],"95":[2,97],"100":[2,97],"108":[2,97],"110":[2,97],"111":[2,97],"112":[2,97],"117":[2,97],"121":[2,97],"122":[2,97],"123":[2,97],"130":[2,97],"131":[2,97],"132":[2,97],"134":[2,97],"135":[2,97],"137":[2,97],"138":[2,97],"141":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97],"164":[2,97],"165":[2,97],"166":[2,97],"167":[2,97]},{"4":[2,104],"28":209,"30":[2,104],"31":207,"32":[1,88],"33":208,"34":[1,86],"35":[1,87],"47":284,"50":[1,56],"66":285,"83":[1,283],"88":281,"89":282,"98":[1,286]},{"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"81":[1,148],"82":[1,149],"92":138,"93":[1,140]},{"64":152,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"81":[1,148],"82":[1,149],"92":151,"93":[1,140]},{"1":[2,53],"4":[2,53],"30":[2,53],"51":[1,133],"62":[1,132],"108":[2,53],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[2,53],"131":[2,53],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,137],"4":[2,137],"30":[2,137],"51":[1,133],"62":[1,132],"108":[2,137],"109":130,"110":[2,137],"112":[2,137],"115":131,"117":[2,137],"121":[1,125],"122":[1,126],"130":[2,137],"131":[2,137],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"108":[1,287]},{"4":[2,127],"29":[2,127],"51":[1,133],"59":[2,127],"62":[1,288],"100":[2,127],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,61],"29":[2,61],"58":289,"59":[1,290],"100":[2,61]},{"1":[2,120],"4":[2,120],"29":[2,120],"30":[2,120],"46":[2,120],"48":[2,120],"51":[2,120],"59":[2,120],"62":[2,120],"73":[2,120],"74":[2,120],"75":[2,120],"76":[2,120],"79":[2,120],"80":[2,120],"81":[2,120],"82":[2,120],"85":[2,120],"87":[2,120],"93":[2,120],"95":[2,120],"100":[2,120],"108":[2,120],"110":[2,120],"111":[2,120],"112":[2,120],"117":[2,120],"121":[2,120],"122":[2,120],"123":[2,120],"130":[2,120],"131":[2,120],"132":[2,120],"134":[2,120],"135":[2,120],"137":[2,120],"138":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120],"163":[2,120],"164":[2,120],"165":[2,120],"166":[2,120],"167":[2,120]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"51":[2,117],"59":[2,117],"62":[2,117],"80":[2,117],"85":[2,117],"95":[2,117],"100":[2,117],"108":[2,117],"110":[2,117],"111":[2,117],"112":[2,117],"117":[2,117],"121":[2,117],"122":[2,117],"123":[2,117],"130":[2,117],"131":[2,117],"132":[2,117],"134":[2,117],"135":[2,117],"137":[2,117],"138":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117],"164":[2,117],"165":[2,117],"166":[2,117],"167":[2,117]},{"4":[1,161],"6":291,"29":[1,6],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,161],"6":292,"29":[1,6],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"51":[1,133],"59":[2,139],"62":[1,132],"80":[2,139],"85":[2,139],"95":[2,139],"100":[2,139],"108":[2,139],"109":130,"110":[1,79],"111":[1,293],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,139],"130":[2,139],"131":[2,139],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"51":[1,133],"59":[2,141],"62":[1,132],"80":[2,141],"85":[2,141],"95":[2,141],"100":[2,141],"108":[2,141],"109":130,"110":[1,79],"111":[1,294],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,141],"130":[2,141],"131":[2,141],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,147],"4":[2,147],"29":[2,147],"30":[2,147],"51":[2,147],"59":[2,147],"62":[2,147],"80":[2,147],"85":[2,147],"95":[2,147],"100":[2,147],"108":[2,147],"110":[2,147],"111":[2,147],"112":[2,147],"117":[2,147],"121":[2,147],"122":[2,147],"123":[2,147],"130":[2,147],"131":[2,147],"132":[2,147],"134":[2,147],"135":[2,147],"137":[2,147],"138":[2,147],"141":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"146":[2,147],"147":[2,147],"148":[2,147],"149":[2,147],"150":[2,147],"151":[2,147],"152":[2,147],"153":[2,147],"154":[2,147],"155":[2,147],"156":[2,147],"157":[2,147],"158":[2,147],"159":[2,147],"160":[2,147],"161":[2,147],"162":[2,147],"163":[2,147],"164":[2,147],"165":[2,147],"166":[2,147],"167":[2,147]},{"1":[2,148],"4":[2,148],"29":[2,148],"30":[2,148],"51":[1,133],"59":[2,148],"62":[1,132],"80":[2,148],"85":[2,148],"95":[2,148],"100":[2,148],"108":[2,148],"109":130,"110":[1,79],"111":[2,148],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,148],"130":[2,148],"131":[2,148],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"121":[2,152],"122":[2,152]},{"31":201,"32":[1,88],"67":202,"68":203,"83":[1,85],"99":[1,204],"118":295,"120":200},{"59":[1,296],"121":[2,157],"122":[2,157]},{"59":[2,154],"121":[2,154],"122":[2,154]},{"59":[2,155],"121":[2,155],"122":[2,155]},{"59":[2,156],"121":[2,156],"122":[2,156]},{"4":[2,126],"8":253,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,126],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,126],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":189,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,126],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,61],"29":[2,61],"58":297,"59":[1,298],"85":[2,61]},{"4":[2,93],"29":[2,93],"30":[2,93],"59":[2,93],"85":[2,93]},{"4":[2,46],"29":[2,46],"30":[2,46],"48":[1,299],"59":[2,46],"85":[2,46]},{"4":[2,47],"29":[2,47],"30":[2,47],"48":[1,300],"59":[2,47],"85":[2,47]},{"4":[2,52],"29":[2,52],"30":[2,52],"59":[2,52],"85":[2,52]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"51":[2,29],"59":[2,29],"62":[2,29],"80":[2,29],"85":[2,29],"95":[2,29],"100":[2,29],"104":[2,29],"105":[2,29],"108":[2,29],"110":[2,29],"111":[2,29],"112":[2,29],"117":[2,29],"121":[2,29],"122":[2,29],"123":[2,29],"126":[2,29],"128":[2,29],"130":[2,29],"131":[2,29],"132":[2,29],"134":[2,29],"135":[2,29],"137":[2,29],"138":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29],"164":[2,29],"165":[2,29],"166":[2,29],"167":[2,29]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"51":[1,133],"59":[2,194],"62":[2,194],"80":[2,194],"85":[2,194],"95":[2,194],"100":[2,194],"108":[2,194],"109":130,"110":[2,194],"111":[2,194],"112":[2,194],"115":131,"117":[2,194],"121":[2,194],"122":[2,194],"123":[2,194],"130":[2,194],"131":[2,194],"132":[1,127],"134":[2,194],"135":[2,194],"137":[1,94],"138":[1,95],"141":[2,194],"142":[2,194],"143":[2,194],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194],"164":[2,194],"165":[2,194],"166":[2,194],"167":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"51":[1,133],"59":[2,195],"62":[2,195],"80":[2,195],"85":[2,195],"95":[2,195],"100":[2,195],"108":[2,195],"109":130,"110":[2,195],"111":[2,195],"112":[2,195],"115":131,"117":[2,195],"121":[2,195],"122":[2,195],"123":[2,195],"130":[2,195],"131":[2,195],"132":[1,127],"134":[2,195],"135":[2,195],"137":[1,94],"138":[1,95],"141":[2,195],"142":[2,195],"143":[2,195],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195],"164":[2,195],"165":[2,195],"166":[2,195],"167":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"51":[1,133],"59":[2,196],"62":[2,196],"80":[2,196],"85":[2,196],"95":[2,196],"100":[2,196],"108":[2,196],"109":130,"110":[2,196],"111":[2,196],"112":[2,196],"115":131,"117":[2,196],"121":[2,196],"122":[2,196],"123":[2,196],"130":[2,196],"131":[2,196],"132":[1,127],"134":[2,196],"135":[2,196],"137":[1,94],"138":[1,95],"141":[2,196],"142":[2,196],"143":[2,196],"144":[2,196],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196],"164":[2,196],"165":[2,196],"166":[2,196],"167":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"51":[1,133],"59":[2,197],"62":[2,197],"80":[2,197],"85":[2,197],"95":[2,197],"100":[2,197],"108":[2,197],"109":130,"110":[2,197],"111":[2,197],"112":[2,197],"115":131,"117":[2,197],"121":[2,197],"122":[2,197],"123":[2,197],"130":[2,197],"131":[2,197],"132":[1,127],"134":[2,197],"135":[2,197],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,197],"145":[2,197],"146":[2,197],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197],"164":[2,197],"165":[2,197],"166":[2,197],"167":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"51":[1,133],"59":[2,198],"62":[2,198],"80":[2,198],"85":[2,198],"95":[2,198],"100":[2,198],"108":[2,198],"109":130,"110":[2,198],"111":[2,198],"112":[2,198],"115":131,"117":[2,198],"121":[2,198],"122":[2,198],"123":[2,198],"130":[2,198],"131":[2,198],"132":[1,127],"134":[2,198],"135":[2,198],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,198],"145":[2,198],"146":[2,198],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198],"164":[2,198],"165":[2,198],"166":[2,198],"167":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"51":[1,133],"59":[2,199],"62":[2,199],"80":[2,199],"85":[2,199],"95":[2,199],"100":[2,199],"108":[2,199],"109":130,"110":[2,199],"111":[2,199],"112":[2,199],"115":131,"117":[2,199],"121":[2,199],"122":[2,199],"123":[2,199],"130":[2,199],"131":[2,199],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,199],"145":[2,199],"146":[2,199],"147":[2,199],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199],"164":[2,199],"165":[2,199],"166":[2,199],"167":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"51":[1,133],"59":[2,200],"62":[2,200],"80":[2,200],"85":[2,200],"95":[2,200],"100":[2,200],"108":[2,200],"109":130,"110":[2,200],"111":[2,200],"112":[2,200],"115":131,"117":[2,200],"121":[2,200],"122":[2,200],"123":[2,200],"130":[2,200],"131":[2,200],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,200],"145":[2,200],"146":[2,200],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200],"164":[2,200],"165":[2,200],"166":[2,200],"167":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"51":[1,133],"59":[2,201],"62":[2,201],"80":[2,201],"85":[2,201],"95":[2,201],"100":[2,201],"108":[2,201],"109":130,"110":[2,201],"111":[2,201],"112":[2,201],"115":131,"117":[2,201],"121":[2,201],"122":[2,201],"123":[2,201],"130":[2,201],"131":[2,201],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,201],"145":[2,201],"146":[2,201],"147":[2,201],"148":[2,201],"149":[2,201],"150":[2,201],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201],"164":[2,201],"165":[2,201],"166":[2,201],"167":[2,201]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"51":[1,133],"59":[2,202],"62":[2,202],"80":[2,202],"85":[2,202],"95":[2,202],"100":[2,202],"108":[2,202],"109":130,"110":[2,202],"111":[2,202],"112":[2,202],"115":131,"117":[2,202],"121":[2,202],"122":[2,202],"123":[2,202],"130":[2,202],"131":[2,202],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[2,202],"148":[2,202],"149":[2,202],"150":[2,202],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[2,202],"164":[2,202],"165":[2,202],"166":[2,202],"167":[2,202]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"51":[1,133],"59":[2,203],"62":[2,203],"80":[2,203],"85":[2,203],"95":[2,203],"100":[2,203],"108":[2,203],"109":130,"110":[2,203],"111":[2,203],"112":[2,203],"115":131,"117":[2,203],"121":[2,203],"122":[2,203],"123":[2,203],"130":[2,203],"131":[2,203],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[2,203],"148":[2,203],"149":[2,203],"150":[2,203],"151":[2,203],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[2,203],"165":[2,203],"166":[2,203],"167":[2,203]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"51":[1,133],"59":[2,204],"62":[2,204],"80":[2,204],"85":[2,204],"95":[2,204],"100":[2,204],"108":[2,204],"109":130,"110":[2,204],"111":[2,204],"112":[2,204],"115":131,"117":[2,204],"121":[2,204],"122":[2,204],"123":[2,204],"130":[2,204],"131":[2,204],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[2,204],"148":[2,204],"149":[2,204],"150":[2,204],"151":[2,204],"152":[2,204],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[2,204],"165":[2,204],"166":[2,204],"167":[2,204]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"51":[1,133],"59":[2,205],"62":[2,205],"80":[2,205],"85":[2,205],"95":[2,205],"100":[2,205],"108":[2,205],"109":130,"110":[2,205],"111":[2,205],"112":[2,205],"115":131,"117":[2,205],"121":[2,205],"122":[2,205],"123":[2,205],"130":[2,205],"131":[2,205],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,205],"151":[2,205],"152":[2,205],"153":[2,205],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205],"164":[2,205],"165":[2,205],"166":[2,205],"167":[2,205]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"51":[1,133],"59":[2,206],"62":[2,206],"80":[2,206],"85":[2,206],"95":[2,206],"100":[2,206],"108":[2,206],"109":130,"110":[2,206],"111":[2,206],"112":[2,206],"115":131,"117":[2,206],"121":[2,206],"122":[2,206],"123":[2,206],"130":[2,206],"131":[2,206],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,206],"151":[2,206],"152":[2,206],"153":[2,206],"154":[2,206],"155":[2,206],"156":[2,206],"157":[2,206],"158":[2,206],"159":[2,206],"160":[2,206],"161":[2,206],"162":[2,206],"163":[2,206],"164":[2,206],"165":[2,206],"166":[2,206],"167":[2,206]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"51":[1,133],"59":[2,207],"62":[2,207],"80":[2,207],"85":[2,207],"95":[2,207],"100":[2,207],"108":[2,207],"109":130,"110":[2,207],"111":[2,207],"112":[2,207],"115":131,"117":[2,207],"121":[2,207],"122":[2,207],"123":[2,207],"130":[2,207],"131":[2,207],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,207],"151":[2,207],"152":[2,207],"153":[2,207],"154":[2,207],"155":[2,207],"156":[2,207],"157":[2,207],"158":[2,207],"159":[2,207],"160":[2,207],"161":[2,207],"162":[2,207],"163":[2,207],"164":[2,207],"165":[2,207],"166":[2,207],"167":[2,207]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"51":[1,133],"59":[2,208],"62":[2,208],"80":[2,208],"85":[2,208],"95":[2,208],"100":[2,208],"108":[2,208],"109":130,"110":[2,208],"111":[2,208],"112":[2,208],"115":131,"117":[2,208],"121":[2,208],"122":[2,208],"123":[2,208],"130":[2,208],"131":[2,208],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,208],"151":[2,208],"152":[2,208],"153":[2,208],"154":[2,208],"155":[2,208],"156":[2,208],"157":[2,208],"158":[2,208],"159":[2,208],"160":[2,208],"161":[2,208],"162":[2,208],"163":[2,208],"164":[2,208],"165":[2,208],"166":[2,208],"167":[2,208]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"51":[1,133],"59":[2,209],"62":[2,209],"80":[2,209],"85":[2,209],"95":[2,209],"100":[2,209],"108":[2,209],"109":130,"110":[2,209],"111":[2,209],"112":[2,209],"115":131,"117":[2,209],"121":[2,209],"122":[2,209],"123":[2,209],"130":[2,209],"131":[2,209],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,209],"155":[2,209],"156":[2,209],"157":[2,209],"158":[2,209],"159":[2,209],"160":[2,209],"161":[2,209],"162":[2,209],"163":[2,209],"164":[2,209],"165":[2,209],"166":[2,209],"167":[1,124]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"51":[1,133],"59":[2,210],"62":[2,210],"80":[2,210],"85":[2,210],"95":[2,210],"100":[2,210],"108":[2,210],"109":130,"110":[2,210],"111":[2,210],"112":[2,210],"115":131,"117":[2,210],"121":[2,210],"122":[2,210],"123":[2,210],"130":[2,210],"131":[2,210],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,210],"155":[2,210],"156":[2,210],"157":[2,210],"158":[2,210],"159":[2,210],"160":[2,210],"161":[2,210],"162":[2,210],"163":[2,210],"164":[2,210],"165":[2,210],"166":[2,210],"167":[1,124]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"51":[1,133],"59":[2,211],"62":[2,211],"80":[2,211],"85":[2,211],"95":[2,211],"100":[2,211],"108":[2,211],"109":130,"110":[2,211],"111":[2,211],"112":[2,211],"115":131,"117":[2,211],"121":[2,211],"122":[2,211],"123":[2,211],"130":[2,211],"131":[2,211],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[2,211],"157":[2,211],"158":[2,211],"159":[2,211],"160":[2,211],"161":[2,211],"162":[2,211],"163":[2,211],"164":[2,211],"165":[2,211],"166":[2,211],"167":[1,124]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"51":[1,133],"59":[2,212],"62":[2,212],"80":[2,212],"85":[2,212],"95":[2,212],"100":[2,212],"108":[2,212],"109":130,"110":[2,212],"111":[2,212],"112":[2,212],"115":131,"117":[2,212],"121":[2,212],"122":[2,212],"123":[2,212],"130":[2,212],"131":[2,212],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[2,212],"157":[2,212],"158":[2,212],"159":[2,212],"160":[2,212],"161":[2,212],"162":[2,212],"163":[2,212],"164":[2,212],"165":[2,212],"166":[2,212],"167":[1,124]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"51":[1,133],"59":[2,213],"62":[2,213],"80":[2,213],"85":[2,213],"95":[2,213],"100":[2,213],"108":[2,213],"109":130,"110":[2,213],"111":[2,213],"112":[2,213],"115":131,"117":[2,213],"121":[2,213],"122":[2,213],"123":[2,213],"130":[2,213],"131":[2,213],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[2,213],"157":[2,213],"158":[2,213],"159":[2,213],"160":[2,213],"161":[2,213],"162":[2,213],"163":[2,213],"164":[2,213],"165":[2,213],"166":[2,213],"167":[1,124]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"51":[1,133],"59":[2,214],"62":[2,214],"80":[2,214],"85":[2,214],"95":[2,214],"100":[2,214],"108":[2,214],"109":130,"110":[2,214],"111":[2,214],"112":[2,214],"115":131,"117":[2,214],"121":[2,214],"122":[2,214],"123":[2,214],"130":[2,214],"131":[2,214],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"51":[1,133],"59":[2,215],"62":[2,215],"80":[2,215],"85":[2,215],"95":[2,215],"100":[2,215],"108":[2,215],"109":130,"110":[2,215],"111":[2,215],"112":[2,215],"115":131,"117":[2,215],"121":[2,215],"122":[2,215],"123":[2,215],"130":[2,215],"131":[2,215],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"51":[1,133],"59":[2,216],"62":[2,216],"80":[2,216],"85":[2,216],"95":[2,216],"100":[2,216],"108":[2,216],"109":130,"110":[2,216],"111":[2,216],"112":[2,216],"115":131,"117":[2,216],"121":[2,216],"122":[2,216],"123":[2,216],"130":[2,216],"131":[2,216],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"51":[1,133],"59":[2,217],"62":[2,217],"80":[2,217],"85":[2,217],"95":[2,217],"100":[2,217],"108":[2,217],"109":130,"110":[2,217],"111":[2,217],"112":[2,217],"115":131,"117":[2,217],"121":[2,217],"122":[2,217],"123":[2,217],"130":[2,217],"131":[2,217],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"51":[1,133],"59":[2,218],"62":[2,218],"80":[2,218],"85":[2,218],"95":[2,218],"100":[2,218],"108":[2,218],"109":130,"110":[2,218],"111":[2,218],"112":[2,218],"115":131,"117":[2,218],"121":[2,218],"122":[2,218],"123":[2,218],"130":[2,218],"131":[2,218],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,219],"4":[2,219],"29":[2,219],"30":[2,219],"51":[1,133],"59":[2,219],"62":[2,219],"80":[2,219],"85":[2,219],"95":[2,219],"100":[2,219],"108":[2,219],"109":130,"110":[2,219],"111":[2,219],"112":[2,219],"115":131,"117":[2,219],"121":[2,219],"122":[2,219],"123":[2,219],"130":[2,219],"131":[2,219],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,220],"4":[2,220],"29":[2,220],"30":[2,220],"51":[1,133],"59":[2,220],"62":[2,220],"80":[2,220],"85":[2,220],"95":[2,220],"100":[2,220],"108":[2,220],"109":130,"110":[2,220],"111":[2,220],"112":[2,220],"115":131,"117":[2,220],"121":[2,220],"122":[2,220],"123":[2,220],"130":[2,220],"131":[2,220],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,221],"4":[2,221],"29":[2,221],"30":[2,221],"51":[1,133],"59":[2,221],"62":[2,221],"80":[2,221],"85":[2,221],"95":[2,221],"100":[2,221],"108":[2,221],"109":130,"110":[2,221],"111":[2,221],"112":[2,221],"115":131,"117":[2,221],"121":[2,221],"122":[2,221],"123":[2,221],"130":[2,221],"131":[2,221],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,222],"4":[2,222],"29":[2,222],"30":[2,222],"51":[1,133],"59":[2,222],"62":[2,222],"80":[2,222],"85":[2,222],"95":[2,222],"100":[2,222],"108":[2,222],"109":130,"110":[2,222],"111":[2,222],"112":[2,222],"115":131,"117":[2,222],"121":[2,222],"122":[2,222],"123":[2,222],"130":[2,222],"131":[2,222],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,222],"155":[2,222],"156":[2,222],"157":[2,222],"158":[2,222],"159":[2,222],"160":[2,222],"161":[2,222],"162":[2,222],"163":[2,222],"164":[2,222],"165":[2,222],"166":[2,222],"167":[1,124]},{"1":[2,223],"4":[2,223],"29":[2,223],"30":[2,223],"51":[1,133],"59":[2,223],"62":[1,132],"80":[2,223],"85":[2,223],"95":[2,223],"100":[2,223],"108":[2,223],"109":130,"110":[2,223],"111":[2,223],"112":[2,223],"115":131,"117":[2,223],"121":[1,125],"122":[1,126],"123":[2,223],"130":[2,223],"131":[2,223],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,224],"4":[2,224],"29":[2,224],"30":[2,224],"51":[1,133],"59":[2,224],"62":[1,132],"80":[2,224],"85":[2,224],"95":[2,224],"100":[2,224],"108":[2,224],"109":130,"110":[2,224],"111":[2,224],"112":[2,224],"115":131,"117":[2,224],"121":[1,125],"122":[1,126],"123":[2,224],"130":[2,224],"131":[2,224],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"8":301,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":302,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"51":[1,133],"59":[2,180],"62":[1,132],"80":[2,180],"85":[2,180],"95":[2,180],"100":[2,180],"108":[2,180],"109":130,"110":[1,79],"111":[2,180],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,180],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"51":[1,133],"59":[2,182],"62":[1,132],"80":[2,182],"85":[2,182],"95":[2,182],"100":[2,182],"108":[2,182],"109":130,"110":[1,79],"111":[2,182],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,182],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,150],"4":[2,150],"29":[2,150],"30":[2,150],"51":[2,150],"59":[2,150],"62":[2,150],"80":[2,150],"85":[2,150],"95":[2,150],"100":[2,150],"108":[2,150],"110":[2,150],"111":[2,150],"112":[2,150],"117":[2,150],"121":[2,150],"122":[2,150],"123":[2,150],"130":[2,150],"131":[2,150],"132":[2,150],"134":[2,150],"135":[2,150],"137":[2,150],"138":[2,150],"141":[2,150],"142":[2,150],"143":[2,150],"144":[2,150],"145":[2,150],"146":[2,150],"147":[2,150],"148":[2,150],"149":[2,150],"150":[2,150],"151":[2,150],"152":[2,150],"153":[2,150],"154":[2,150],"155":[2,150],"156":[2,150],"157":[2,150],"158":[2,150],"159":[2,150],"160":[2,150],"161":[2,150],"162":[2,150],"163":[2,150],"164":[2,150],"165":[2,150],"166":[2,150],"167":[2,150]},{"62":[1,303]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"51":[1,133],"59":[2,179],"62":[1,132],"80":[2,179],"85":[2,179],"95":[2,179],"100":[2,179],"108":[2,179],"109":130,"110":[1,79],"111":[2,179],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,179],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"51":[1,133],"59":[2,181],"62":[1,132],"80":[2,181],"85":[2,181],"95":[2,181],"100":[2,181],"108":[2,181],"109":130,"110":[1,79],"111":[2,181],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,181],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,149],"4":[2,149],"29":[2,149],"30":[2,149],"51":[2,149],"59":[2,149],"62":[2,149],"80":[2,149],"85":[2,149],"95":[2,149],"100":[2,149],"108":[2,149],"110":[2,149],"111":[2,149],"112":[2,149],"117":[2,149],"121":[2,149],"122":[2,149],"123":[2,149],"130":[2,149],"131":[2,149],"132":[2,149],"134":[2,149],"135":[2,149],"137":[2,149],"138":[2,149],"141":[2,149],"142":[2,149],"143":[2,149],"144":[2,149],"145":[2,149],"146":[2,149],"147":[2,149],"148":[2,149],"149":[2,149],"150":[2,149],"151":[2,149],"152":[2,149],"153":[2,149],"154":[2,149],"155":[2,149],"156":[2,149],"157":[2,149],"158":[2,149],"159":[2,149],"160":[2,149],"161":[2,149],"162":[2,149],"163":[2,149],"164":[2,149],"165":[2,149],"166":[2,149],"167":[2,149]},{"4":[2,61],"29":[2,61],"58":304,"59":[1,290],"95":[2,61]},{"4":[2,127],"29":[2,127],"30":[2,127],"51":[1,133],"59":[2,127],"62":[1,132],"95":[2,127],"100":[2,127],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"46":[2,82],"51":[2,82],"59":[2,82],"62":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"82":[2,82],"85":[2,82],"87":[2,82],"93":[2,82],"95":[2,82],"100":[2,82],"108":[2,82],"110":[2,82],"111":[2,82],"112":[2,82],"117":[2,82],"121":[2,82],"122":[2,82],"123":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"134":[2,82],"135":[2,82],"137":[2,82],"138":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82],"164":[2,82],"165":[2,82],"166":[2,82],"167":[2,82]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"46":[2,83],"51":[2,83],"59":[2,83],"62":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"82":[2,83],"85":[2,83],"87":[2,83],"93":[2,83],"95":[2,83],"100":[2,83],"108":[2,83],"110":[2,83],"111":[2,83],"112":[2,83],"117":[2,83],"121":[2,83],"122":[2,83],"123":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"134":[2,83],"135":[2,83],"137":[2,83],"138":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83],"164":[2,83],"165":[2,83],"166":[2,83],"167":[2,83]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"51":[2,85],"59":[2,85],"62":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"82":[2,85],"85":[2,85],"87":[2,85],"93":[2,85],"95":[2,85],"100":[2,85],"108":[2,85],"110":[2,85],"111":[2,85],"112":[2,85],"117":[2,85],"121":[2,85],"122":[2,85],"123":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"134":[2,85],"135":[2,85],"137":[2,85],"138":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85],"164":[2,85],"165":[2,85],"166":[2,85],"167":[2,85]},{"51":[1,133],"62":[1,306],"80":[1,305],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,89],"4":[2,89],"29":[2,89],"30":[2,89],"46":[2,89],"51":[2,89],"59":[2,89],"62":[2,89],"73":[2,89],"74":[2,89],"75":[2,89],"76":[2,89],"79":[2,89],"80":[2,89],"81":[2,89],"82":[2,89],"85":[2,89],"87":[2,89],"93":[2,89],"95":[2,89],"100":[2,89],"108":[2,89],"110":[2,89],"111":[2,89],"112":[2,89],"117":[2,89],"121":[2,89],"122":[2,89],"123":[2,89],"130":[2,89],"131":[2,89],"132":[2,89],"134":[2,89],"135":[2,89],"137":[2,89],"138":[2,89],"141":[2,89],"142":[2,89],"143":[2,89],"144":[2,89],"145":[2,89],"146":[2,89],"147":[2,89],"148":[2,89],"149":[2,89],"150":[2,89],"151":[2,89],"152":[2,89],"153":[2,89],"154":[2,89],"155":[2,89],"156":[2,89],"157":[2,89],"158":[2,89],"159":[2,89],"160":[2,89],"161":[2,89],"162":[2,89],"163":[2,89],"164":[2,89],"165":[2,89],"166":[2,89],"167":[2,89]},{"8":307,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,90],"4":[2,90],"29":[2,90],"30":[2,90],"46":[2,90],"51":[2,90],"59":[2,90],"62":[2,90],"73":[2,90],"74":[2,90],"75":[2,90],"76":[2,90],"79":[2,90],"80":[2,90],"81":[2,90],"82":[2,90],"85":[2,90],"87":[2,90],"93":[2,90],"95":[2,90],"100":[2,90],"108":[2,90],"110":[2,90],"111":[2,90],"112":[2,90],"117":[2,90],"121":[2,90],"122":[2,90],"123":[2,90],"130":[2,90],"131":[2,90],"132":[2,90],"134":[2,90],"135":[2,90],"137":[2,90],"138":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90],"151":[2,90],"152":[2,90],"153":[2,90],"154":[2,90],"155":[2,90],"156":[2,90],"157":[2,90],"158":[2,90],"159":[2,90],"160":[2,90],"161":[2,90],"162":[2,90],"163":[2,90],"164":[2,90],"165":[2,90],"166":[2,90],"167":[2,90]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"51":[1,133],"59":[2,44],"62":[1,132],"80":[2,44],"85":[2,44],"95":[2,44],"100":[2,44],"108":[2,44],"109":130,"110":[1,79],"111":[2,44],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,44],"130":[2,44],"131":[2,44],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"8":308,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"55":309,"56":[1,75],"57":[1,76]},{"60":310,"61":[1,159]},{"62":[1,311]},{"8":312,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"51":[2,177],"59":[2,177],"62":[2,177],"80":[2,177],"85":[2,177],"95":[2,177],"100":[2,177],"108":[2,177],"110":[2,177],"111":[2,177],"112":[2,177],"117":[2,177],"121":[2,177],"122":[2,177],"123":[2,177],"126":[2,177],"130":[2,177],"131":[2,177],"132":[2,177],"134":[2,177],"135":[2,177],"137":[2,177],"138":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177],"162":[2,177],"163":[2,177],"164":[2,177],"165":[2,177],"166":[2,177],"167":[2,177]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"51":[2,133],"59":[2,133],"62":[2,133],"80":[2,133],"85":[2,133],"95":[2,133],"100":[2,133],"104":[1,313],"108":[2,133],"110":[2,133],"111":[2,133],"112":[2,133],"117":[2,133],"121":[2,133],"122":[2,133],"123":[2,133],"130":[2,133],"131":[2,133],"132":[2,133],"134":[2,133],"135":[2,133],"137":[2,133],"138":[2,133],"141":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133],"162":[2,133],"163":[2,133],"164":[2,133],"165":[2,133],"166":[2,133],"167":[2,133]},{"4":[1,161],"6":314,"29":[1,6]},{"31":315,"32":[1,88]},{"1":[2,151],"4":[2,151],"29":[2,151],"30":[2,151],"51":[2,151],"59":[2,151],"62":[2,151],"80":[2,151],"85":[2,151],"95":[2,151],"100":[2,151],"108":[2,151],"110":[2,151],"111":[2,151],"112":[2,151],"117":[2,151],"121":[2,151],"122":[2,151],"123":[2,151],"130":[2,151],"131":[2,151],"132":[2,151],"134":[2,151],"135":[2,151],"137":[2,151],"138":[2,151],"141":[2,151],"142":[2,151],"143":[2,151],"144":[2,151],"145":[2,151],"146":[2,151],"147":[2,151],"148":[2,151],"149":[2,151],"150":[2,151],"151":[2,151],"152":[2,151],"153":[2,151],"154":[2,151],"155":[2,151],"156":[2,151],"157":[2,151],"158":[2,151],"159":[2,151],"160":[2,151],"161":[2,151],"162":[2,151],"163":[2,151],"164":[2,151],"165":[2,151],"166":[2,151],"167":[2,151]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"51":[1,133],"59":[2,159],"62":[1,132],"80":[2,159],"85":[2,159],"95":[2,159],"100":[2,159],"108":[2,159],"109":130,"110":[2,159],"111":[1,316],"112":[2,159],"115":131,"117":[2,159],"121":[1,125],"122":[1,126],"123":[1,317],"130":[2,159],"131":[2,159],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"51":[1,133],"59":[2,160],"62":[1,132],"80":[2,160],"85":[2,160],"95":[2,160],"100":[2,160],"108":[2,160],"109":130,"110":[2,160],"111":[1,318],"112":[2,160],"115":131,"117":[2,160],"121":[1,125],"122":[1,126],"123":[2,160],"130":[2,160],"131":[2,160],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"125":319,"127":276,"128":[1,277]},{"30":[1,320],"126":[1,321],"127":322,"128":[1,277]},{"30":[2,170],"126":[2,170],"128":[2,170]},{"8":324,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"101":323,"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"51":[2,112],"59":[2,112],"62":[2,112],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,112],"81":[1,148],"82":[1,149],"85":[2,112],"92":138,"93":[1,140],"95":[2,112],"100":[2,112],"108":[2,112],"110":[2,112],"111":[2,112],"112":[2,112],"117":[2,112],"121":[2,112],"122":[2,112],"123":[2,112],"130":[2,112],"131":[2,112],"132":[2,112],"134":[2,112],"135":[2,112],"137":[2,112],"138":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112],"164":[2,112],"165":[2,112],"166":[2,112],"167":[2,112]},{"14":325,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":156,"65":184,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"4":[2,104],"28":209,"30":[2,104],"31":207,"32":[1,88],"33":208,"34":[1,86],"35":[1,87],"47":284,"50":[1,56],"66":285,"83":[1,283],"88":326,"89":282,"98":[1,286]},{"4":[1,328],"30":[1,327]},{"4":[2,105],"30":[2,105],"85":[2,105]},{"4":[2,104],"28":209,"31":207,"32":[1,88],"33":208,"34":[1,86],"35":[1,87],"47":284,"50":[1,56],"66":285,"83":[1,283],"85":[2,104],"88":329,"89":282,"98":[1,286]},{"4":[2,102],"30":[2,102],"85":[2,102]},{"48":[1,330]},{"31":190,"32":[1,88]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"51":[2,138],"59":[2,138],"62":[2,138],"73":[2,138],"74":[2,138],"75":[2,138],"76":[2,138],"79":[2,138],"80":[2,138],"81":[2,138],"82":[2,138],"85":[2,138],"93":[2,138],"95":[2,138],"100":[2,138],"108":[2,138],"110":[2,138],"111":[2,138],"112":[2,138],"117":[2,138],"121":[2,138],"122":[2,138],"123":[2,138],"130":[2,138],"131":[2,138],"132":[2,138],"134":[2,138],"135":[2,138],"137":[2,138],"138":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138],"162":[2,138],"163":[2,138],"164":[2,138],"165":[2,138],"166":[2,138],"167":[2,138]},{"62":[1,331]},{"4":[1,333],"29":[1,334],"100":[1,332]},{"4":[2,62],"8":335,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,62],"30":[2,62],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"95":[2,62],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,62],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"51":[2,174],"59":[2,174],"62":[2,174],"80":[2,174],"85":[2,174],"95":[2,174],"100":[2,174],"108":[2,174],"110":[2,174],"111":[2,174],"112":[2,174],"117":[2,174],"121":[2,174],"122":[2,174],"123":[2,174],"126":[2,174],"130":[2,174],"131":[2,174],"132":[2,174],"134":[2,174],"135":[2,174],"137":[2,174],"138":[2,174],"141":[2,174],"142":[2,174],"143":[2,174],"144":[2,174],"145":[2,174],"146":[2,174],"147":[2,174],"148":[2,174],"149":[2,174],"150":[2,174],"151":[2,174],"152":[2,174],"153":[2,174],"154":[2,174],"155":[2,174],"156":[2,174],"157":[2,174],"158":[2,174],"159":[2,174],"160":[2,174],"161":[2,174],"162":[2,174],"163":[2,174],"164":[2,174],"165":[2,174],"166":[2,174],"167":[2,174]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"51":[2,175],"59":[2,175],"62":[2,175],"80":[2,175],"85":[2,175],"95":[2,175],"100":[2,175],"108":[2,175],"110":[2,175],"111":[2,175],"112":[2,175],"117":[2,175],"121":[2,175],"122":[2,175],"123":[2,175],"126":[2,175],"130":[2,175],"131":[2,175],"132":[2,175],"134":[2,175],"135":[2,175],"137":[2,175],"138":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175],"162":[2,175],"163":[2,175],"164":[2,175],"165":[2,175],"166":[2,175],"167":[2,175]},{"8":336,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":337,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"121":[2,153],"122":[2,153]},{"31":201,"32":[1,88],"67":202,"68":203,"83":[1,85],"99":[1,204],"120":338},{"4":[1,340],"29":[1,341],"85":[1,339]},{"4":[2,62],"28":209,"29":[2,62],"30":[2,62],"31":207,"32":[1,88],"33":208,"34":[1,86],"35":[1,87],"47":342,"50":[1,56],"85":[2,62]},{"8":343,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,344],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":345,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,346],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,225],"4":[2,225],"29":[2,225],"30":[2,225],"51":[1,133],"59":[2,225],"62":[2,225],"80":[2,225],"85":[2,225],"95":[2,225],"100":[2,225],"108":[2,225],"109":130,"110":[2,225],"111":[2,225],"112":[2,225],"115":131,"117":[2,225],"121":[2,225],"122":[2,225],"123":[2,225],"130":[2,225],"131":[2,225],"134":[2,225],"135":[2,225],"141":[2,225],"142":[2,225],"143":[2,225],"144":[2,225],"145":[2,225],"146":[2,225],"147":[2,225],"148":[2,225],"149":[2,225],"150":[2,225],"151":[2,225],"152":[2,225],"153":[2,225],"154":[2,225],"155":[2,225],"156":[2,225],"157":[2,225],"158":[2,225],"159":[2,225],"160":[2,225],"161":[2,225],"162":[2,225],"163":[2,225],"164":[2,225],"165":[2,225],"166":[2,225],"167":[2,225]},{"1":[2,226],"4":[2,226],"29":[2,226],"30":[2,226],"51":[1,133],"59":[2,226],"62":[2,226],"80":[2,226],"85":[2,226],"95":[2,226],"100":[2,226],"108":[2,226],"109":130,"110":[2,226],"111":[2,226],"112":[2,226],"115":131,"117":[2,226],"121":[2,226],"122":[2,226],"123":[2,226],"130":[2,226],"131":[2,226],"134":[2,226],"135":[2,226],"141":[2,226],"142":[2,226],"143":[2,226],"144":[2,226],"145":[2,226],"146":[2,226],"147":[2,226],"148":[2,226],"149":[2,226],"150":[2,226],"151":[2,226],"152":[2,226],"153":[2,226],"154":[2,226],"155":[2,226],"156":[2,226],"157":[2,226],"158":[2,226],"159":[2,226],"160":[2,226],"161":[2,226],"162":[2,226],"163":[2,226],"164":[2,226],"165":[2,226],"166":[2,226],"167":[2,226]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"51":[2,68],"59":[2,68],"62":[2,68],"80":[2,68],"85":[2,68],"95":[2,68],"100":[2,68],"108":[2,68],"110":[2,68],"111":[2,68],"112":[2,68],"117":[2,68],"121":[2,68],"122":[2,68],"123":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"134":[2,68],"135":[2,68],"137":[2,68],"138":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68],"165":[2,68],"166":[2,68],"167":[2,68]},{"4":[1,333],"29":[1,334],"95":[1,347]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"51":[2,88],"59":[2,88],"62":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"76":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"82":[2,88],"85":[2,88],"87":[2,88],"93":[2,88],"95":[2,88],"100":[2,88],"108":[2,88],"110":[2,88],"111":[2,88],"112":[2,88],"117":[2,88],"121":[2,88],"122":[2,88],"123":[2,88],"130":[2,88],"131":[2,88],"132":[2,88],"134":[2,88],"135":[2,88],"137":[2,88],"138":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88],"164":[2,88],"165":[2,88],"166":[2,88],"167":[2,88]},{"62":[1,348]},{"51":[1,133],"62":[1,132],"80":[1,305],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"30":[1,349],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,161],"6":350,"29":[1,6]},{"54":[2,65],"59":[2,65],"62":[1,265]},{"62":[1,351]},{"4":[1,161],"6":352,"29":[1,6],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,161],"6":353,"29":[1,6]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"51":[2,134],"59":[2,134],"62":[2,134],"80":[2,134],"85":[2,134],"95":[2,134],"100":[2,134],"108":[2,134],"110":[2,134],"111":[2,134],"112":[2,134],"117":[2,134],"121":[2,134],"122":[2,134],"123":[2,134],"130":[2,134],"131":[2,134],"132":[2,134],"134":[2,134],"135":[2,134],"137":[2,134],"138":[2,134],"141":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134],"162":[2,134],"163":[2,134],"164":[2,134],"165":[2,134],"166":[2,134],"167":[2,134]},{"4":[1,161],"6":354,"29":[1,6]},{"8":355,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":356,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":357,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"30":[1,358],"126":[1,359],"127":322,"128":[1,277]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"51":[2,168],"59":[2,168],"62":[2,168],"80":[2,168],"85":[2,168],"95":[2,168],"100":[2,168],"108":[2,168],"110":[2,168],"111":[2,168],"112":[2,168],"117":[2,168],"121":[2,168],"122":[2,168],"123":[2,168],"130":[2,168],"131":[2,168],"132":[2,168],"134":[2,168],"135":[2,168],"137":[2,168],"138":[2,168],"141":[2,168],"142":[2,168],"143":[2,168],"144":[2,168],"145":[2,168],"146":[2,168],"147":[2,168],"148":[2,168],"149":[2,168],"150":[2,168],"151":[2,168],"152":[2,168],"153":[2,168],"154":[2,168],"155":[2,168],"156":[2,168],"157":[2,168],"158":[2,168],"159":[2,168],"160":[2,168],"161":[2,168],"162":[2,168],"163":[2,168],"164":[2,168],"165":[2,168],"166":[2,168],"167":[2,168]},{"4":[1,161],"6":360,"29":[1,6]},{"30":[2,171],"126":[2,171],"128":[2,171]},{"4":[1,161],"6":361,"29":[1,6],"59":[1,362]},{"4":[2,131],"29":[2,131],"51":[1,133],"59":[2,131],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,98],"4":[2,98],"29":[1,363],"30":[2,98],"51":[2,98],"59":[2,98],"62":[2,98],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,98],"81":[1,148],"82":[1,149],"85":[2,98],"92":138,"93":[1,140],"95":[2,98],"100":[2,98],"108":[2,98],"110":[2,98],"111":[2,98],"112":[2,98],"117":[2,98],"121":[2,98],"122":[2,98],"123":[2,98],"130":[2,98],"131":[2,98],"132":[2,98],"134":[2,98],"135":[2,98],"137":[2,98],"138":[2,98],"141":[2,98],"142":[2,98],"143":[2,98],"144":[2,98],"145":[2,98],"146":[2,98],"147":[2,98],"148":[2,98],"149":[2,98],"150":[2,98],"151":[2,98],"152":[2,98],"153":[2,98],"154":[2,98],"155":[2,98],"156":[2,98],"157":[2,98],"158":[2,98],"159":[2,98],"160":[2,98],"161":[2,98],"162":[2,98],"163":[2,98],"164":[2,98],"165":[2,98],"166":[2,98],"167":[2,98]},{"4":[1,328],"30":[1,364]},{"1":[2,101],"4":[2,101],"29":[2,101],"30":[2,101],"51":[2,101],"59":[2,101],"62":[2,101],"80":[2,101],"85":[2,101],"95":[2,101],"100":[2,101],"108":[2,101],"110":[2,101],"111":[2,101],"112":[2,101],"117":[2,101],"121":[2,101],"122":[2,101],"123":[2,101],"130":[2,101],"131":[2,101],"132":[2,101],"134":[2,101],"135":[2,101],"137":[2,101],"138":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"147":[2,101],"148":[2,101],"149":[2,101],"150":[2,101],"151":[2,101],"152":[2,101],"153":[2,101],"154":[2,101],"155":[2,101],"156":[2,101],"157":[2,101],"158":[2,101],"159":[2,101],"160":[2,101],"161":[2,101],"162":[2,101],"163":[2,101],"164":[2,101],"165":[2,101],"166":[2,101],"167":[2,101]},{"28":209,"31":207,"32":[1,88],"33":208,"34":[1,86],"35":[1,87],"47":284,"50":[1,56],"66":285,"89":365,"98":[1,286]},{"4":[1,328],"85":[1,366]},{"8":367,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":368,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[1,369],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,125],"4":[2,125],"29":[2,125],"30":[2,125],"46":[2,125],"51":[2,125],"59":[2,125],"62":[2,125],"73":[2,125],"74":[2,125],"75":[2,125],"76":[2,125],"79":[2,125],"80":[2,125],"81":[2,125],"82":[2,125],"85":[2,125],"93":[2,125],"95":[2,125],"100":[2,125],"108":[2,125],"110":[2,125],"111":[2,125],"112":[2,125],"117":[2,125],"121":[2,125],"122":[2,125],"123":[2,125],"130":[2,125],"131":[2,125],"132":[2,125],"134":[2,125],"135":[2,125],"137":[2,125],"138":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125],"149":[2,125],"150":[2,125],"151":[2,125],"152":[2,125],"153":[2,125],"154":[2,125],"155":[2,125],"156":[2,125],"157":[2,125],"158":[2,125],"159":[2,125],"160":[2,125],"161":[2,125],"162":[2,125],"163":[2,125],"164":[2,125],"165":[2,125],"166":[2,125],"167":[2,125]},{"8":370,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,126],"8":253,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,126],"30":[2,126],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,126],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":371,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,128],"29":[2,128],"30":[2,128],"51":[1,133],"59":[2,128],"62":[1,132],"95":[2,128],"100":[2,128],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"51":[1,133],"59":[2,140],"62":[1,132],"80":[2,140],"85":[2,140],"95":[2,140],"100":[2,140],"108":[2,140],"109":130,"110":[1,79],"111":[2,140],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,140],"130":[2,140],"131":[2,140],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"51":[1,133],"59":[2,142],"62":[1,132],"80":[2,142],"85":[2,142],"95":[2,142],"100":[2,142],"108":[2,142],"109":130,"110":[1,79],"111":[2,142],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,142],"130":[2,142],"131":[2,142],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"121":[2,158],"122":[2,158]},{"1":[2,91],"4":[2,91],"29":[2,91],"30":[2,91],"46":[2,91],"51":[2,91],"59":[2,91],"62":[2,91],"73":[2,91],"74":[2,91],"75":[2,91],"76":[2,91],"79":[2,91],"80":[2,91],"81":[2,91],"82":[2,91],"85":[2,91],"93":[2,91],"95":[2,91],"100":[2,91],"108":[2,91],"110":[2,91],"111":[2,91],"112":[2,91],"117":[2,91],"121":[2,91],"122":[2,91],"123":[2,91],"130":[2,91],"131":[2,91],"132":[2,91],"134":[2,91],"135":[2,91],"137":[2,91],"138":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91],"149":[2,91],"150":[2,91],"151":[2,91],"152":[2,91],"153":[2,91],"154":[2,91],"155":[2,91],"156":[2,91],"157":[2,91],"158":[2,91],"159":[2,91],"160":[2,91],"161":[2,91],"162":[2,91],"163":[2,91],"164":[2,91],"165":[2,91],"166":[2,91],"167":[2,91]},{"28":209,"31":207,"32":[1,88],"33":208,"34":[1,86],"35":[1,87],"47":372,"50":[1,56]},{"4":[2,92],"28":209,"29":[2,92],"30":[2,92],"31":207,"32":[1,88],"33":208,"34":[1,86],"35":[1,87],"47":206,"50":[1,56],"59":[2,92],"84":373},{"4":[2,94],"29":[2,94],"30":[2,94],"59":[2,94],"85":[2,94]},{"4":[2,48],"29":[2,48],"30":[2,48],"51":[1,133],"59":[2,48],"62":[1,132],"85":[2,48],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"8":374,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,49],"29":[2,49],"30":[2,49],"51":[1,133],"59":[2,49],"62":[1,132],"85":[2,49],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"8":375,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"51":[2,115],"59":[2,115],"62":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"76":[2,115],"79":[2,115],"80":[2,115],"81":[2,115],"82":[2,115],"85":[2,115],"93":[2,115],"95":[2,115],"100":[2,115],"108":[2,115],"110":[2,115],"111":[2,115],"112":[2,115],"117":[2,115],"121":[2,115],"122":[2,115],"123":[2,115],"130":[2,115],"131":[2,115],"132":[2,115],"134":[2,115],"135":[2,115],"137":[2,115],"138":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115],"164":[2,115],"165":[2,115],"166":[2,115],"167":[2,115]},{"8":376,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[1,377],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,45],"4":[2,45],"29":[2,45],"30":[2,45],"51":[2,45],"59":[2,45],"62":[2,45],"80":[2,45],"85":[2,45],"95":[2,45],"100":[2,45],"108":[2,45],"110":[2,45],"111":[2,45],"112":[2,45],"117":[2,45],"121":[2,45],"122":[2,45],"123":[2,45],"130":[2,45],"131":[2,45],"132":[2,45],"134":[2,45],"135":[2,45],"137":[2,45],"138":[2,45],"141":[2,45],"142":[2,45],"143":[2,45],"144":[2,45],"145":[2,45],"146":[2,45],"147":[2,45],"148":[2,45],"149":[2,45],"150":[2,45],"151":[2,45],"152":[2,45],"153":[2,45],"154":[2,45],"155":[2,45],"156":[2,45],"157":[2,45],"158":[2,45],"159":[2,45],"160":[2,45],"161":[2,45],"162":[2,45],"163":[2,45],"164":[2,45],"165":[2,45],"166":[2,45],"167":[2,45]},{"1":[2,57],"4":[2,57],"29":[2,57],"30":[2,57],"51":[2,57],"59":[2,57],"62":[2,57],"80":[2,57],"85":[2,57],"95":[2,57],"100":[2,57],"108":[2,57],"110":[2,57],"111":[2,57],"112":[2,57],"117":[2,57],"121":[2,57],"122":[2,57],"123":[2,57],"130":[2,57],"131":[2,57],"132":[2,57],"134":[2,57],"135":[2,57],"137":[2,57],"138":[2,57],"141":[2,57],"142":[2,57],"143":[2,57],"144":[2,57],"145":[2,57],"146":[2,57],"147":[2,57],"148":[2,57],"149":[2,57],"150":[2,57],"151":[2,57],"152":[2,57],"153":[2,57],"154":[2,57],"155":[2,57],"156":[2,57],"157":[2,57],"158":[2,57],"159":[2,57],"160":[2,57],"161":[2,57],"162":[2,57],"163":[2,57],"164":[2,57],"165":[2,57],"166":[2,57],"167":[2,57]},{"54":[2,67],"59":[2,67],"62":[2,67]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"51":[2,176],"59":[2,176],"62":[2,176],"80":[2,176],"85":[2,176],"95":[2,176],"100":[2,176],"108":[2,176],"110":[2,176],"111":[2,176],"112":[2,176],"117":[2,176],"121":[2,176],"122":[2,176],"123":[2,176],"126":[2,176],"130":[2,176],"131":[2,176],"132":[2,176],"134":[2,176],"135":[2,176],"137":[2,176],"138":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176],"162":[2,176],"163":[2,176],"164":[2,176],"165":[2,176],"166":[2,176],"167":[2,176]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"51":[2,135],"59":[2,135],"62":[2,135],"80":[2,135],"85":[2,135],"95":[2,135],"100":[2,135],"108":[2,135],"110":[2,135],"111":[2,135],"112":[2,135],"117":[2,135],"121":[2,135],"122":[2,135],"123":[2,135],"130":[2,135],"131":[2,135],"132":[2,135],"134":[2,135],"135":[2,135],"137":[2,135],"138":[2,135],"141":[2,135],"142":[2,135],"143":[2,135],"144":[2,135],"145":[2,135],"146":[2,135],"147":[2,135],"148":[2,135],"149":[2,135],"150":[2,135],"151":[2,135],"152":[2,135],"153":[2,135],"154":[2,135],"155":[2,135],"156":[2,135],"157":[2,135],"158":[2,135],"159":[2,135],"160":[2,135],"161":[2,135],"162":[2,135],"163":[2,135],"164":[2,135],"165":[2,135],"166":[2,135],"167":[2,135]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"51":[2,136],"59":[2,136],"62":[2,136],"80":[2,136],"85":[2,136],"95":[2,136],"100":[2,136],"104":[2,136],"108":[2,136],"110":[2,136],"111":[2,136],"112":[2,136],"117":[2,136],"121":[2,136],"122":[2,136],"123":[2,136],"130":[2,136],"131":[2,136],"132":[2,136],"134":[2,136],"135":[2,136],"137":[2,136],"138":[2,136],"141":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"146":[2,136],"147":[2,136],"148":[2,136],"149":[2,136],"150":[2,136],"151":[2,136],"152":[2,136],"153":[2,136],"154":[2,136],"155":[2,136],"156":[2,136],"157":[2,136],"158":[2,136],"159":[2,136],"160":[2,136],"161":[2,136],"162":[2,136],"163":[2,136],"164":[2,136],"165":[2,136],"166":[2,136],"167":[2,136]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"51":[1,133],"59":[2,161],"62":[1,132],"80":[2,161],"85":[2,161],"95":[2,161],"100":[2,161],"108":[2,161],"109":130,"110":[2,161],"111":[2,161],"112":[2,161],"115":131,"117":[2,161],"121":[1,125],"122":[1,126],"123":[1,378],"130":[2,161],"131":[2,161],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,163],"4":[2,163],"29":[2,163],"30":[2,163],"51":[1,133],"59":[2,163],"62":[1,132],"80":[2,163],"85":[2,163],"95":[2,163],"100":[2,163],"108":[2,163],"109":130,"110":[2,163],"111":[1,379],"112":[2,163],"115":131,"117":[2,163],"121":[1,125],"122":[1,126],"123":[2,163],"130":[2,163],"131":[2,163],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,162],"4":[2,162],"29":[2,162],"30":[2,162],"51":[1,133],"59":[2,162],"62":[1,132],"80":[2,162],"85":[2,162],"95":[2,162],"100":[2,162],"108":[2,162],"109":130,"110":[2,162],"111":[2,162],"112":[2,162],"115":131,"117":[2,162],"121":[1,125],"122":[1,126],"123":[2,162],"130":[2,162],"131":[2,162],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"51":[2,166],"59":[2,166],"62":[2,166],"80":[2,166],"85":[2,166],"95":[2,166],"100":[2,166],"108":[2,166],"110":[2,166],"111":[2,166],"112":[2,166],"117":[2,166],"121":[2,166],"122":[2,166],"123":[2,166],"130":[2,166],"131":[2,166],"132":[2,166],"134":[2,166],"135":[2,166],"137":[2,166],"138":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"148":[2,166],"149":[2,166],"150":[2,166],"151":[2,166],"152":[2,166],"153":[2,166],"154":[2,166],"155":[2,166],"156":[2,166],"157":[2,166],"158":[2,166],"159":[2,166],"160":[2,166],"161":[2,166],"162":[2,166],"163":[2,166],"164":[2,166],"165":[2,166],"166":[2,166],"167":[2,166]},{"4":[1,161],"6":380,"29":[1,6]},{"30":[1,381]},{"4":[1,382],"30":[2,172],"126":[2,172],"128":[2,172]},{"8":383,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,104],"28":209,"30":[2,104],"31":207,"32":[1,88],"33":208,"34":[1,86],"35":[1,87],"47":284,"50":[1,56],"66":285,"83":[1,283],"88":384,"89":282,"98":[1,286]},{"1":[2,99],"4":[2,99],"29":[2,99],"30":[2,99],"51":[2,99],"59":[2,99],"62":[2,99],"80":[2,99],"85":[2,99],"95":[2,99],"100":[2,99],"108":[2,99],"110":[2,99],"111":[2,99],"112":[2,99],"117":[2,99],"121":[2,99],"122":[2,99],"123":[2,99],"130":[2,99],"131":[2,99],"132":[2,99],"134":[2,99],"135":[2,99],"137":[2,99],"138":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99],"162":[2,99],"163":[2,99],"164":[2,99],"165":[2,99],"166":[2,99],"167":[2,99]},{"4":[2,106],"30":[2,106],"85":[2,106]},{"4":[2,107],"30":[2,107],"85":[2,107]},{"4":[2,103],"30":[2,103],"51":[1,133],"62":[1,132],"85":[2,103],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"51":[1,133],"62":[1,132],"100":[1,385],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,68],"8":386,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,68],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"51":[2,68],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,68],"62":[2,68],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,68],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[2,68],"112":[2,68],"113":51,"114":[1,81],"115":52,"117":[2,68],"121":[2,68],"122":[2,68],"124":[1,53],"129":48,"130":[2,68],"131":[2,68],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68],"165":[2,68],"166":[2,68],"167":[2,68]},{"4":[2,129],"29":[2,129],"30":[2,129],"51":[1,133],"59":[2,129],"62":[1,132],"95":[2,129],"100":[2,129],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,61],"29":[2,61],"30":[2,61],"58":387,"59":[1,290]},{"4":[2,95],"29":[2,95],"30":[2,95],"59":[2,95],"85":[2,95]},{"4":[2,61],"29":[2,61],"30":[2,61],"58":388,"59":[1,298]},{"30":[1,389],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"30":[1,390],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"51":[1,133],"62":[1,132],"80":[1,391],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"8":392,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"51":[2,68],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[2,68],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"80":[2,68],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[2,68],"112":[2,68],"113":51,"114":[1,81],"115":52,"117":[2,68],"121":[2,68],"122":[2,68],"124":[1,53],"129":48,"130":[2,68],"131":[2,68],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68],"165":[2,68],"166":[2,68],"167":[2,68]},{"8":393,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":394,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"30":[1,395]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"51":[2,169],"59":[2,169],"62":[2,169],"80":[2,169],"85":[2,169],"95":[2,169],"100":[2,169],"108":[2,169],"110":[2,169],"111":[2,169],"112":[2,169],"117":[2,169],"121":[2,169],"122":[2,169],"123":[2,169],"130":[2,169],"131":[2,169],"132":[2,169],"134":[2,169],"135":[2,169],"137":[2,169],"138":[2,169],"141":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169],"164":[2,169],"165":[2,169],"166":[2,169],"167":[2,169]},{"30":[2,173],"126":[2,173],"128":[2,173]},{"4":[2,132],"29":[2,132],"51":[1,133],"59":[2,132],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,328],"30":[1,396]},{"1":[2,121],"4":[2,121],"29":[2,121],"30":[2,121],"51":[2,121],"59":[2,121],"62":[2,121],"73":[2,121],"74":[2,121],"75":[2,121],"76":[2,121],"79":[2,121],"80":[2,121],"81":[2,121],"82":[2,121],"85":[2,121],"93":[2,121],"95":[2,121],"100":[2,121],"108":[2,121],"110":[2,121],"111":[2,121],"112":[2,121],"117":[2,121],"121":[2,121],"122":[2,121],"123":[2,121],"130":[2,121],"131":[2,121],"132":[2,121],"134":[2,121],"135":[2,121],"137":[2,121],"138":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121],"149":[2,121],"150":[2,121],"151":[2,121],"152":[2,121],"153":[2,121],"154":[2,121],"155":[2,121],"156":[2,121],"157":[2,121],"158":[2,121],"159":[2,121],"160":[2,121],"161":[2,121],"162":[2,121],"163":[2,121],"164":[2,121],"165":[2,121],"166":[2,121],"167":[2,121]},{"51":[1,133],"62":[1,132],"100":[1,397],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,333],"29":[1,334],"30":[1,398]},{"4":[1,340],"29":[1,341],"30":[1,399]},{"4":[2,50],"29":[2,50],"30":[2,50],"59":[2,50],"85":[2,50]},{"4":[2,51],"29":[2,51],"30":[2,51],"59":[2,51],"85":[2,51]},{"1":[2,123],"4":[2,123],"29":[2,123],"30":[2,123],"46":[2,123],"51":[2,123],"59":[2,123],"62":[2,123],"73":[2,123],"74":[2,123],"75":[2,123],"76":[2,123],"79":[2,123],"80":[2,123],"81":[2,123],"82":[2,123],"85":[2,123],"87":[2,123],"93":[2,123],"95":[2,123],"100":[2,123],"108":[2,123],"110":[2,123],"111":[2,123],"112":[2,123],"117":[2,123],"121":[2,123],"122":[2,123],"123":[2,123],"130":[2,123],"131":[2,123],"132":[2,123],"134":[2,123],"135":[2,123],"137":[2,123],"138":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123],"149":[2,123],"150":[2,123],"151":[2,123],"152":[2,123],"153":[2,123],"154":[2,123],"155":[2,123],"156":[2,123],"157":[2,123],"158":[2,123],"159":[2,123],"160":[2,123],"161":[2,123],"162":[2,123],"163":[2,123],"164":[2,123],"165":[2,123],"166":[2,123],"167":[2,123]},{"51":[1,133],"62":[1,132],"80":[1,400],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,164],"4":[2,164],"29":[2,164],"30":[2,164],"51":[1,133],"59":[2,164],"62":[1,132],"80":[2,164],"85":[2,164],"95":[2,164],"100":[2,164],"108":[2,164],"109":130,"110":[2,164],"111":[2,164],"112":[2,164],"115":131,"117":[2,164],"121":[1,125],"122":[1,126],"123":[2,164],"130":[2,164],"131":[2,164],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,165],"4":[2,165],"29":[2,165],"30":[2,165],"51":[1,133],"59":[2,165],"62":[1,132],"80":[2,165],"85":[2,165],"95":[2,165],"100":[2,165],"108":[2,165],"109":130,"110":[2,165],"111":[2,165],"112":[2,165],"115":131,"117":[2,165],"121":[1,125],"122":[1,126],"123":[2,165],"130":[2,165],"131":[2,165],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"51":[2,167],"59":[2,167],"62":[2,167],"80":[2,167],"85":[2,167],"95":[2,167],"100":[2,167],"108":[2,167],"110":[2,167],"111":[2,167],"112":[2,167],"117":[2,167],"121":[2,167],"122":[2,167],"123":[2,167],"130":[2,167],"131":[2,167],"132":[2,167],"134":[2,167],"135":[2,167],"137":[2,167],"138":[2,167],"141":[2,167],"142":[2,167],"143":[2,167],"144":[2,167],"145":[2,167],"146":[2,167],"147":[2,167],"148":[2,167],"149":[2,167],"150":[2,167],"151":[2,167],"152":[2,167],"153":[2,167],"154":[2,167],"155":[2,167],"156":[2,167],"157":[2,167],"158":[2,167],"159":[2,167],"160":[2,167],"161":[2,167],"162":[2,167],"163":[2,167],"164":[2,167],"165":[2,167],"166":[2,167],"167":[2,167]},{"1":[2,100],"4":[2,100],"29":[2,100],"30":[2,100],"51":[2,100],"59":[2,100],"62":[2,100],"80":[2,100],"85":[2,100],"95":[2,100],"100":[2,100],"108":[2,100],"110":[2,100],"111":[2,100],"112":[2,100],"117":[2,100],"121":[2,100],"122":[2,100],"123":[2,100],"130":[2,100],"131":[2,100],"132":[2,100],"134":[2,100],"135":[2,100],"137":[2,100],"138":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"147":[2,100],"148":[2,100],"149":[2,100],"150":[2,100],"151":[2,100],"152":[2,100],"153":[2,100],"154":[2,100],"155":[2,100],"156":[2,100],"157":[2,100],"158":[2,100],"159":[2,100],"160":[2,100],"161":[2,100],"162":[2,100],"163":[2,100],"164":[2,100],"165":[2,100],"166":[2,100],"167":[2,100]},{"1":[2,122],"4":[2,122],"29":[2,122],"30":[2,122],"51":[2,122],"59":[2,122],"62":[2,122],"73":[2,122],"74":[2,122],"75":[2,122],"76":[2,122],"79":[2,122],"80":[2,122],"81":[2,122],"82":[2,122],"85":[2,122],"93":[2,122],"95":[2,122],"100":[2,122],"108":[2,122],"110":[2,122],"111":[2,122],"112":[2,122],"117":[2,122],"121":[2,122],"122":[2,122],"123":[2,122],"130":[2,122],"131":[2,122],"132":[2,122],"134":[2,122],"135":[2,122],"137":[2,122],"138":[2,122],"141":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122],"148":[2,122],"149":[2,122],"150":[2,122],"151":[2,122],"152":[2,122],"153":[2,122],"154":[2,122],"155":[2,122],"156":[2,122],"157":[2,122],"158":[2,122],"159":[2,122],"160":[2,122],"161":[2,122],"162":[2,122],"163":[2,122],"164":[2,122],"165":[2,122],"166":[2,122],"167":[2,122]},{"4":[2,130],"29":[2,130],"30":[2,130],"59":[2,130],"95":[2,130],"100":[2,130]},{"4":[2,96],"29":[2,96],"30":[2,96],"59":[2,96],"85":[2,96]},{"1":[2,124],"4":[2,124],"29":[2,124],"30":[2,124],"46":[2,124],"51":[2,124],"59":[2,124],"62":[2,124],"73":[2,124],"74":[2,124],"75":[2,124],"76":[2,124],"79":[2,124],"80":[2,124],"81":[2,124],"82":[2,124],"85":[2,124],"87":[2,124],"93":[2,124],"95":[2,124],"100":[2,124],"108":[2,124],"110":[2,124],"111":[2,124],"112":[2,124],"117":[2,124],"121":[2,124],"122":[2,124],"123":[2,124],"130":[2,124],"131":[2,124],"132":[2,124],"134":[2,124],"135":[2,124],"137":[2,124],"138":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124],"150":[2,124],"151":[2,124],"152":[2,124],"153":[2,124],"154":[2,124],"155":[2,124],"156":[2,124],"157":[2,124],"158":[2,124],"159":[2,124],"160":[2,124],"161":[2,124],"162":[2,124],"163":[2,124],"164":[2,124],"165":[2,124],"166":[2,124],"167":[2,124]}], -defaultActions: {"91":[2,4]}, +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[3]},{"1":[2,2],"28":90,"50":[1,56]},{"1":[2,3],"4":[1,91]},{"4":[1,92]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":93,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,94],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,8],"4":[2,8],"30":[2,8],"51":[1,134],"62":[1,133],"108":[2,8],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,9],"4":[2,9],"30":[2,9],"108":[2,9],"109":137,"110":[1,79],"112":[1,80],"115":138,"116":[1,82],"117":83,"131":[1,135],"132":[1,136]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"51":[2,14],"59":[2,14],"62":[2,14],"64":140,"73":[1,142],"74":[1,143],"75":[1,144],"76":[1,145],"77":146,"78":147,"79":[1,148],"80":[2,14],"81":[1,149],"82":[1,150],"85":[2,14],"92":139,"93":[1,141],"95":[2,14],"100":[2,14],"108":[2,14],"110":[2,14],"111":[2,14],"112":[2,14],"116":[2,14],"122":[2,14],"123":[2,14],"124":[2,14],"131":[2,14],"132":[2,14],"133":[2,14],"135":[2,14],"136":[2,14],"138":[2,14],"139":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14],"164":[2,14],"165":[2,14],"166":[2,14],"167":[2,14],"168":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"51":[2,15],"59":[2,15],"62":[2,15],"80":[2,15],"85":[2,15],"95":[2,15],"100":[2,15],"108":[2,15],"110":[2,15],"111":[2,15],"112":[2,15],"116":[2,15],"122":[2,15],"123":[2,15],"124":[2,15],"131":[2,15],"132":[2,15],"133":[2,15],"135":[2,15],"136":[2,15],"138":[2,15],"139":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15],"164":[2,15],"165":[2,15],"166":[2,15],"167":[2,15],"168":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"51":[2,16],"59":[2,16],"62":[2,16],"80":[2,16],"85":[2,16],"95":[2,16],"100":[2,16],"108":[2,16],"110":[2,16],"111":[2,16],"112":[2,16],"116":[2,16],"122":[2,16],"123":[2,16],"124":[2,16],"131":[2,16],"132":[2,16],"133":[2,16],"135":[2,16],"136":[2,16],"138":[2,16],"139":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16],"164":[2,16],"165":[2,16],"166":[2,16],"167":[2,16],"168":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"51":[2,17],"59":[2,17],"62":[2,17],"80":[2,17],"85":[2,17],"95":[2,17],"100":[2,17],"108":[2,17],"110":[2,17],"111":[2,17],"112":[2,17],"116":[2,17],"122":[2,17],"123":[2,17],"124":[2,17],"131":[2,17],"132":[2,17],"133":[2,17],"135":[2,17],"136":[2,17],"138":[2,17],"139":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17],"164":[2,17],"165":[2,17],"166":[2,17],"167":[2,17],"168":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"51":[2,18],"59":[2,18],"62":[2,18],"80":[2,18],"85":[2,18],"95":[2,18],"100":[2,18],"108":[2,18],"110":[2,18],"111":[2,18],"112":[2,18],"116":[2,18],"122":[2,18],"123":[2,18],"124":[2,18],"131":[2,18],"132":[2,18],"133":[2,18],"135":[2,18],"136":[2,18],"138":[2,18],"139":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18],"164":[2,18],"165":[2,18],"166":[2,18],"167":[2,18],"168":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"51":[2,19],"59":[2,19],"62":[2,19],"80":[2,19],"85":[2,19],"95":[2,19],"100":[2,19],"108":[2,19],"110":[2,19],"111":[2,19],"112":[2,19],"116":[2,19],"122":[2,19],"123":[2,19],"124":[2,19],"131":[2,19],"132":[2,19],"133":[2,19],"135":[2,19],"136":[2,19],"138":[2,19],"139":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19],"164":[2,19],"165":[2,19],"166":[2,19],"167":[2,19],"168":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"51":[2,20],"59":[2,20],"62":[2,20],"80":[2,20],"85":[2,20],"95":[2,20],"100":[2,20],"108":[2,20],"110":[2,20],"111":[2,20],"112":[2,20],"116":[2,20],"122":[2,20],"123":[2,20],"124":[2,20],"131":[2,20],"132":[2,20],"133":[2,20],"135":[2,20],"136":[2,20],"138":[2,20],"139":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20],"164":[2,20],"165":[2,20],"166":[2,20],"167":[2,20],"168":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"51":[2,21],"59":[2,21],"62":[2,21],"80":[2,21],"85":[2,21],"95":[2,21],"100":[2,21],"108":[2,21],"110":[2,21],"111":[2,21],"112":[2,21],"116":[2,21],"122":[2,21],"123":[2,21],"124":[2,21],"131":[2,21],"132":[2,21],"133":[2,21],"135":[2,21],"136":[2,21],"138":[2,21],"139":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21],"164":[2,21],"165":[2,21],"166":[2,21],"167":[2,21],"168":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"51":[2,22],"59":[2,22],"62":[2,22],"80":[2,22],"85":[2,22],"95":[2,22],"100":[2,22],"108":[2,22],"110":[2,22],"111":[2,22],"112":[2,22],"116":[2,22],"122":[2,22],"123":[2,22],"124":[2,22],"131":[2,22],"132":[2,22],"133":[2,22],"135":[2,22],"136":[2,22],"138":[2,22],"139":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22],"164":[2,22],"165":[2,22],"166":[2,22],"167":[2,22],"168":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"51":[2,23],"59":[2,23],"62":[2,23],"80":[2,23],"85":[2,23],"95":[2,23],"100":[2,23],"108":[2,23],"110":[2,23],"111":[2,23],"112":[2,23],"116":[2,23],"122":[2,23],"123":[2,23],"124":[2,23],"131":[2,23],"132":[2,23],"133":[2,23],"135":[2,23],"136":[2,23],"138":[2,23],"139":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23],"164":[2,23],"165":[2,23],"166":[2,23],"167":[2,23],"168":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"51":[2,24],"59":[2,24],"62":[2,24],"80":[2,24],"85":[2,24],"95":[2,24],"100":[2,24],"108":[2,24],"110":[2,24],"111":[2,24],"112":[2,24],"116":[2,24],"122":[2,24],"123":[2,24],"124":[2,24],"131":[2,24],"132":[2,24],"133":[2,24],"135":[2,24],"136":[2,24],"138":[2,24],"139":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24],"164":[2,24],"165":[2,24],"166":[2,24],"167":[2,24],"168":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"51":[2,25],"59":[2,25],"62":[2,25],"80":[2,25],"85":[2,25],"95":[2,25],"100":[2,25],"108":[2,25],"110":[2,25],"111":[2,25],"112":[2,25],"116":[2,25],"122":[2,25],"123":[2,25],"124":[2,25],"131":[2,25],"132":[2,25],"133":[2,25],"135":[2,25],"136":[2,25],"138":[2,25],"139":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25],"164":[2,25],"165":[2,25],"166":[2,25],"167":[2,25],"168":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"51":[2,26],"59":[2,26],"62":[2,26],"80":[2,26],"85":[2,26],"95":[2,26],"100":[2,26],"108":[2,26],"110":[2,26],"111":[2,26],"112":[2,26],"116":[2,26],"122":[2,26],"123":[2,26],"124":[2,26],"131":[2,26],"132":[2,26],"133":[2,26],"135":[2,26],"136":[2,26],"138":[2,26],"139":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26],"164":[2,26],"165":[2,26],"166":[2,26],"167":[2,26],"168":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"51":[2,27],"59":[2,27],"62":[2,27],"80":[2,27],"85":[2,27],"95":[2,27],"100":[2,27],"108":[2,27],"110":[2,27],"111":[2,27],"112":[2,27],"116":[2,27],"122":[2,27],"123":[2,27],"124":[2,27],"131":[2,27],"132":[2,27],"133":[2,27],"135":[2,27],"136":[2,27],"138":[2,27],"139":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27],"164":[2,27],"165":[2,27],"166":[2,27],"167":[2,27],"168":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"51":[2,28],"59":[2,28],"62":[2,28],"80":[2,28],"85":[2,28],"95":[2,28],"100":[2,28],"108":[2,28],"110":[2,28],"111":[2,28],"112":[2,28],"116":[2,28],"122":[2,28],"123":[2,28],"124":[2,28],"131":[2,28],"132":[2,28],"133":[2,28],"135":[2,28],"136":[2,28],"138":[2,28],"139":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28],"164":[2,28],"165":[2,28],"166":[2,28],"167":[2,28],"168":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"108":[2,10],"110":[2,10],"112":[2,10],"116":[2,10],"131":[2,10],"132":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"108":[2,11],"110":[2,11],"112":[2,11],"116":[2,11],"131":[2,11],"132":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"108":[2,12],"110":[2,12],"112":[2,12],"116":[2,12],"131":[2,12],"132":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"108":[2,13],"110":[2,13],"112":[2,13],"116":[2,13],"131":[2,13],"132":[2,13]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"46":[1,151],"51":[2,76],"59":[2,76],"62":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"85":[2,76],"93":[2,76],"95":[2,76],"100":[2,76],"108":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"116":[2,76],"122":[2,76],"123":[2,76],"124":[2,76],"131":[2,76],"132":[2,76],"133":[2,76],"135":[2,76],"136":[2,76],"138":[2,76],"139":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76],"165":[2,76],"166":[2,76],"167":[2,76],"168":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"51":[2,77],"59":[2,77],"62":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"85":[2,77],"93":[2,77],"95":[2,77],"100":[2,77],"108":[2,77],"110":[2,77],"111":[2,77],"112":[2,77],"116":[2,77],"122":[2,77],"123":[2,77],"124":[2,77],"131":[2,77],"132":[2,77],"133":[2,77],"135":[2,77],"136":[2,77],"138":[2,77],"139":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77],"164":[2,77],"165":[2,77],"166":[2,77],"167":[2,77],"168":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"51":[2,78],"59":[2,78],"62":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"85":[2,78],"93":[2,78],"95":[2,78],"100":[2,78],"108":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"116":[2,78],"122":[2,78],"123":[2,78],"124":[2,78],"131":[2,78],"132":[2,78],"133":[2,78],"135":[2,78],"136":[2,78],"138":[2,78],"139":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78],"164":[2,78],"165":[2,78],"166":[2,78],"167":[2,78],"168":[2,78]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"51":[2,79],"59":[2,79],"62":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"85":[2,79],"93":[2,79],"95":[2,79],"100":[2,79],"108":[2,79],"110":[2,79],"111":[2,79],"112":[2,79],"116":[2,79],"122":[2,79],"123":[2,79],"124":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"135":[2,79],"136":[2,79],"138":[2,79],"139":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79],"164":[2,79],"165":[2,79],"166":[2,79],"167":[2,79],"168":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"51":[2,80],"59":[2,80],"62":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"82":[2,80],"85":[2,80],"93":[2,80],"95":[2,80],"100":[2,80],"108":[2,80],"110":[2,80],"111":[2,80],"112":[2,80],"116":[2,80],"122":[2,80],"123":[2,80],"124":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"135":[2,80],"136":[2,80],"138":[2,80],"139":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80],"164":[2,80],"165":[2,80],"166":[2,80],"167":[2,80],"168":[2,80]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"51":[2,81],"59":[2,81],"62":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"82":[2,81],"85":[2,81],"93":[2,81],"95":[2,81],"100":[2,81],"108":[2,81],"110":[2,81],"111":[2,81],"112":[2,81],"116":[2,81],"122":[2,81],"123":[2,81],"124":[2,81],"131":[2,81],"132":[2,81],"133":[2,81],"135":[2,81],"136":[2,81],"138":[2,81],"139":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81],"164":[2,81],"165":[2,81],"166":[2,81],"167":[2,81],"168":[2,81]},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"51":[2,108],"59":[2,108],"62":[2,108],"64":153,"73":[1,142],"74":[1,143],"75":[1,144],"76":[1,145],"77":146,"78":147,"79":[1,148],"80":[2,108],"81":[1,149],"82":[1,150],"85":[2,108],"92":152,"93":[1,141],"95":[2,108],"100":[2,108],"108":[2,108],"110":[2,108],"111":[2,108],"112":[2,108],"116":[2,108],"122":[2,108],"123":[2,108],"124":[2,108],"131":[2,108],"132":[2,108],"133":[2,108],"135":[2,108],"136":[2,108],"138":[2,108],"139":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108],"164":[2,108],"165":[2,108],"166":[2,108],"167":[2,108],"168":[2,108]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"51":[2,109],"59":[2,109],"62":[2,109],"80":[2,109],"85":[2,109],"95":[2,109],"100":[2,109],"108":[2,109],"110":[2,109],"111":[2,109],"112":[2,109],"116":[2,109],"122":[2,109],"123":[2,109],"124":[2,109],"131":[2,109],"132":[2,109],"133":[2,109],"135":[2,109],"136":[2,109],"138":[2,109],"139":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109],"164":[2,109],"165":[2,109],"166":[2,109],"167":[2,109],"168":[2,109]},{"14":155,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":156,"63":157,"65":154,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"53":158,"54":[2,63],"59":[2,63],"60":159,"61":[1,160]},{"4":[1,162],"6":161,"29":[1,6]},{"8":163,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":165,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":166,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":167,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":168,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":169,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":170,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":171,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":172,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"51":[2,180],"59":[2,180],"62":[2,180],"80":[2,180],"85":[2,180],"95":[2,180],"100":[2,180],"108":[2,180],"110":[2,180],"111":[2,180],"112":[2,180],"116":[2,180],"122":[2,180],"123":[2,180],"124":[2,180],"127":[1,173],"131":[2,180],"132":[2,180],"133":[2,180],"135":[2,180],"136":[2,180],"138":[2,180],"139":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180],"164":[2,180],"165":[2,180],"166":[2,180],"167":[2,180],"168":[2,180]},{"4":[1,162],"6":174,"29":[1,6]},{"4":[1,162],"6":175,"29":[1,6]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"51":[2,146],"59":[2,146],"62":[2,146],"80":[2,146],"85":[2,146],"95":[2,146],"100":[2,146],"108":[2,146],"110":[2,146],"111":[2,146],"112":[2,146],"116":[2,146],"122":[2,146],"123":[2,146],"124":[2,146],"131":[2,146],"132":[2,146],"133":[2,146],"135":[2,146],"136":[2,146],"138":[2,146],"139":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146],"149":[2,146],"150":[2,146],"151":[2,146],"152":[2,146],"153":[2,146],"154":[2,146],"155":[2,146],"156":[2,146],"157":[2,146],"158":[2,146],"159":[2,146],"160":[2,146],"161":[2,146],"162":[2,146],"163":[2,146],"164":[2,146],"165":[2,146],"166":[2,146],"167":[2,146],"168":[2,146]},{"4":[1,162],"6":176,"29":[1,6]},{"8":177,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,178],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[2,73],"51":[2,73],"59":[2,73],"62":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"85":[2,73],"87":[1,179],"93":[2,73],"95":[2,73],"100":[2,73],"108":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"116":[2,73],"122":[2,73],"123":[2,73],"124":[2,73],"131":[2,73],"132":[2,73],"133":[2,73],"135":[2,73],"136":[2,73],"138":[2,73],"139":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73],"165":[2,73],"166":[2,73],"167":[2,73],"168":[2,73]},{"14":182,"29":[1,181],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":156,"63":180,"65":183,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"51":[2,55],"59":[2,55],"62":[2,55],"80":[2,55],"85":[2,55],"95":[2,55],"100":[2,55],"104":[2,55],"105":[2,55],"108":[2,55],"110":[2,55],"111":[2,55],"112":[2,55],"116":[2,55],"122":[2,55],"123":[2,55],"124":[2,55],"127":[2,55],"129":[2,55],"131":[2,55],"132":[2,55],"133":[2,55],"135":[2,55],"136":[2,55],"138":[2,55],"139":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55],"164":[2,55],"165":[2,55],"166":[2,55],"167":[2,55],"168":[2,55]},{"1":[2,54],"4":[2,54],"8":184,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,54],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"108":[2,54],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[2,54],"132":[2,54],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":185,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"46":[2,74],"51":[2,74],"59":[2,74],"62":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"85":[2,74],"93":[2,74],"95":[2,74],"100":[2,74],"108":[2,74],"110":[2,74],"111":[2,74],"112":[2,74],"116":[2,74],"122":[2,74],"123":[2,74],"124":[2,74],"131":[2,74],"132":[2,74],"133":[2,74],"135":[2,74],"136":[2,74],"138":[2,74],"139":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74],"164":[2,74],"165":[2,74],"166":[2,74],"167":[2,74],"168":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"46":[2,75],"51":[2,75],"59":[2,75],"62":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"85":[2,75],"93":[2,75],"95":[2,75],"100":[2,75],"108":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"116":[2,75],"122":[2,75],"123":[2,75],"124":[2,75],"131":[2,75],"132":[2,75],"133":[2,75],"135":[2,75],"136":[2,75],"138":[2,75],"139":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75],"165":[2,75],"166":[2,75],"167":[2,75],"168":[2,75]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"51":[2,35],"59":[2,35],"62":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"82":[2,35],"85":[2,35],"93":[2,35],"95":[2,35],"100":[2,35],"108":[2,35],"110":[2,35],"111":[2,35],"112":[2,35],"116":[2,35],"122":[2,35],"123":[2,35],"124":[2,35],"131":[2,35],"132":[2,35],"133":[2,35],"135":[2,35],"136":[2,35],"138":[2,35],"139":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35],"164":[2,35],"165":[2,35],"166":[2,35],"167":[2,35],"168":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"51":[2,36],"59":[2,36],"62":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"82":[2,36],"85":[2,36],"93":[2,36],"95":[2,36],"100":[2,36],"108":[2,36],"110":[2,36],"111":[2,36],"112":[2,36],"116":[2,36],"122":[2,36],"123":[2,36],"124":[2,36],"131":[2,36],"132":[2,36],"133":[2,36],"135":[2,36],"136":[2,36],"138":[2,36],"139":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36],"164":[2,36],"165":[2,36],"166":[2,36],"167":[2,36],"168":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"51":[2,37],"59":[2,37],"62":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"82":[2,37],"85":[2,37],"93":[2,37],"95":[2,37],"100":[2,37],"108":[2,37],"110":[2,37],"111":[2,37],"112":[2,37],"116":[2,37],"122":[2,37],"123":[2,37],"124":[2,37],"131":[2,37],"132":[2,37],"133":[2,37],"135":[2,37],"136":[2,37],"138":[2,37],"139":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37],"164":[2,37],"165":[2,37],"166":[2,37],"167":[2,37],"168":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"51":[2,38],"59":[2,38],"62":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"82":[2,38],"85":[2,38],"93":[2,38],"95":[2,38],"100":[2,38],"108":[2,38],"110":[2,38],"111":[2,38],"112":[2,38],"116":[2,38],"122":[2,38],"123":[2,38],"124":[2,38],"131":[2,38],"132":[2,38],"133":[2,38],"135":[2,38],"136":[2,38],"138":[2,38],"139":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38],"164":[2,38],"165":[2,38],"166":[2,38],"167":[2,38],"168":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"51":[2,39],"59":[2,39],"62":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"76":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"82":[2,39],"85":[2,39],"93":[2,39],"95":[2,39],"100":[2,39],"108":[2,39],"110":[2,39],"111":[2,39],"112":[2,39],"116":[2,39],"122":[2,39],"123":[2,39],"124":[2,39],"131":[2,39],"132":[2,39],"133":[2,39],"135":[2,39],"136":[2,39],"138":[2,39],"139":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39],"164":[2,39],"165":[2,39],"166":[2,39],"167":[2,39],"168":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"51":[2,40],"59":[2,40],"62":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"76":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"82":[2,40],"85":[2,40],"93":[2,40],"95":[2,40],"100":[2,40],"108":[2,40],"110":[2,40],"111":[2,40],"112":[2,40],"116":[2,40],"122":[2,40],"123":[2,40],"124":[2,40],"131":[2,40],"132":[2,40],"133":[2,40],"135":[2,40],"136":[2,40],"138":[2,40],"139":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40],"164":[2,40],"165":[2,40],"166":[2,40],"167":[2,40],"168":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"51":[2,41],"59":[2,41],"62":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"76":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"82":[2,41],"85":[2,41],"93":[2,41],"95":[2,41],"100":[2,41],"108":[2,41],"110":[2,41],"111":[2,41],"112":[2,41],"116":[2,41],"122":[2,41],"123":[2,41],"124":[2,41],"131":[2,41],"132":[2,41],"133":[2,41],"135":[2,41],"136":[2,41],"138":[2,41],"139":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41],"164":[2,41],"165":[2,41],"166":[2,41],"167":[2,41],"168":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"51":[2,42],"59":[2,42],"62":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"76":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"82":[2,42],"85":[2,42],"93":[2,42],"95":[2,42],"100":[2,42],"108":[2,42],"110":[2,42],"111":[2,42],"112":[2,42],"116":[2,42],"122":[2,42],"123":[2,42],"124":[2,42],"131":[2,42],"132":[2,42],"133":[2,42],"135":[2,42],"136":[2,42],"138":[2,42],"139":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42],"164":[2,42],"165":[2,42],"166":[2,42],"167":[2,42],"168":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"51":[2,43],"59":[2,43],"62":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"76":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"82":[2,43],"85":[2,43],"93":[2,43],"95":[2,43],"100":[2,43],"108":[2,43],"110":[2,43],"111":[2,43],"112":[2,43],"116":[2,43],"122":[2,43],"123":[2,43],"124":[2,43],"131":[2,43],"132":[2,43],"133":[2,43],"135":[2,43],"136":[2,43],"138":[2,43],"139":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43],"164":[2,43],"165":[2,43],"166":[2,43],"167":[2,43],"168":[2,43]},{"7":186,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"4":[2,126],"8":187,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,126],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,126],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"94":188,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,126],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"51":[2,118],"59":[2,118],"62":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"76":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"82":[2,118],"85":[2,118],"93":[2,118],"95":[2,118],"100":[2,118],"108":[2,118],"110":[2,118],"111":[2,118],"112":[2,118],"116":[2,118],"122":[2,118],"123":[2,118],"124":[2,118],"131":[2,118],"132":[2,118],"133":[2,118],"135":[2,118],"136":[2,118],"138":[2,118],"139":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118],"164":[2,118],"165":[2,118],"166":[2,118],"167":[2,118],"168":[2,118]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"31":189,"32":[1,89],"51":[2,119],"59":[2,119],"62":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"82":[2,119],"85":[2,119],"93":[2,119],"95":[2,119],"100":[2,119],"108":[2,119],"110":[2,119],"111":[2,119],"112":[2,119],"116":[2,119],"122":[2,119],"123":[2,119],"124":[2,119],"131":[2,119],"132":[2,119],"133":[2,119],"135":[2,119],"136":[2,119],"138":[2,119],"139":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119],"164":[2,119],"165":[2,119],"166":[2,119],"167":[2,119],"168":[2,119]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"51":[2,116],"59":[2,116],"62":[2,116],"80":[2,116],"85":[2,116],"92":190,"93":[1,141],"95":[2,116],"100":[2,116],"108":[2,116],"110":[2,116],"111":[2,116],"112":[2,116],"116":[2,116],"122":[2,116],"123":[2,116],"124":[2,116],"131":[2,116],"132":[2,116],"133":[2,116],"135":[2,116],"136":[2,116],"138":[2,116],"139":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116],"164":[2,116],"165":[2,116],"166":[2,116],"167":[2,116],"168":[2,116]},{"4":[2,59],"29":[2,59]},{"4":[2,60],"29":[2,60]},{"8":191,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":192,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":193,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":194,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"4":[1,162],"6":195,"8":196,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"31":201,"32":[1,89],"67":202,"68":203,"70":197,"83":[1,86],"99":[1,71],"119":198,"120":[1,199],"121":200},{"118":204,"122":[1,205],"123":[1,206]},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"46":[2,69],"51":[2,69],"59":[2,69],"62":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"76":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"82":[2,69],"85":[2,69],"87":[2,69],"93":[2,69],"95":[2,69],"100":[2,69],"108":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"116":[2,69],"122":[2,69],"123":[2,69],"124":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"135":[2,69],"136":[2,69],"138":[2,69],"139":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69],"164":[2,69],"165":[2,69],"166":[2,69],"167":[2,69],"168":[2,69]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"51":[2,72],"59":[2,72],"62":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"82":[2,72],"85":[2,72],"87":[2,72],"93":[2,72],"95":[2,72],"100":[2,72],"108":[2,72],"110":[2,72],"111":[2,72],"112":[2,72],"116":[2,72],"122":[2,72],"123":[2,72],"124":[2,72],"131":[2,72],"132":[2,72],"133":[2,72],"135":[2,72],"136":[2,72],"138":[2,72],"139":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72],"165":[2,72],"166":[2,72],"167":[2,72],"168":[2,72]},{"4":[2,92],"28":211,"29":[2,92],"31":209,"32":[1,89],"33":210,"34":[1,87],"35":[1,88],"47":208,"50":[1,56],"59":[2,92],"84":207,"85":[2,92]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"48":[2,33],"51":[2,33],"59":[2,33],"62":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"79":[2,33],"80":[2,33],"81":[2,33],"82":[2,33],"85":[2,33],"93":[2,33],"95":[2,33],"100":[2,33],"108":[2,33],"110":[2,33],"111":[2,33],"112":[2,33],"116":[2,33],"122":[2,33],"123":[2,33],"124":[2,33],"131":[2,33],"132":[2,33],"133":[2,33],"135":[2,33],"136":[2,33],"138":[2,33],"139":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33],"164":[2,33],"165":[2,33],"166":[2,33],"167":[2,33],"168":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"48":[2,34],"51":[2,34],"59":[2,34],"62":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"82":[2,34],"85":[2,34],"93":[2,34],"95":[2,34],"100":[2,34],"108":[2,34],"110":[2,34],"111":[2,34],"112":[2,34],"116":[2,34],"122":[2,34],"123":[2,34],"124":[2,34],"131":[2,34],"132":[2,34],"133":[2,34],"135":[2,34],"136":[2,34],"138":[2,34],"139":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34],"164":[2,34],"165":[2,34],"166":[2,34],"167":[2,34],"168":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"48":[2,32],"51":[2,32],"59":[2,32],"62":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"82":[2,32],"85":[2,32],"87":[2,32],"93":[2,32],"95":[2,32],"100":[2,32],"108":[2,32],"110":[2,32],"111":[2,32],"112":[2,32],"116":[2,32],"122":[2,32],"123":[2,32],"124":[2,32],"131":[2,32],"132":[2,32],"133":[2,32],"135":[2,32],"136":[2,32],"138":[2,32],"139":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32],"164":[2,32],"165":[2,32],"166":[2,32],"167":[2,32],"168":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"51":[2,31],"59":[2,31],"62":[2,31],"80":[2,31],"85":[2,31],"95":[2,31],"100":[2,31],"104":[2,31],"105":[2,31],"108":[2,31],"110":[2,31],"111":[2,31],"112":[2,31],"116":[2,31],"122":[2,31],"123":[2,31],"124":[2,31],"127":[2,31],"129":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"135":[2,31],"136":[2,31],"138":[2,31],"139":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31],"164":[2,31],"165":[2,31],"166":[2,31],"167":[2,31],"168":[2,31]},{"1":[2,7],"4":[2,7],"7":212,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,4]},{"4":[1,91],"30":[1,213]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"51":[2,30],"59":[2,30],"62":[2,30],"80":[2,30],"85":[2,30],"95":[2,30],"100":[2,30],"104":[2,30],"105":[2,30],"108":[2,30],"110":[2,30],"111":[2,30],"112":[2,30],"116":[2,30],"122":[2,30],"123":[2,30],"124":[2,30],"127":[2,30],"129":[2,30],"131":[2,30],"132":[2,30],"133":[2,30],"135":[2,30],"136":[2,30],"138":[2,30],"139":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30],"164":[2,30],"165":[2,30],"166":[2,30],"167":[2,30],"168":[2,30]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"51":[2,194],"59":[2,194],"62":[2,194],"80":[2,194],"85":[2,194],"95":[2,194],"100":[2,194],"108":[2,194],"110":[2,194],"111":[2,194],"112":[2,194],"116":[2,194],"122":[2,194],"123":[2,194],"124":[2,194],"131":[2,194],"132":[2,194],"133":[2,194],"135":[2,194],"136":[2,194],"138":[2,194],"139":[2,194],"142":[2,194],"143":[2,194],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194],"164":[2,194],"165":[2,194],"166":[2,194],"167":[2,194],"168":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"51":[2,195],"59":[2,195],"62":[2,195],"80":[2,195],"85":[2,195],"95":[2,195],"100":[2,195],"108":[2,195],"110":[2,195],"111":[2,195],"112":[2,195],"116":[2,195],"122":[2,195],"123":[2,195],"124":[2,195],"131":[2,195],"132":[2,195],"133":[2,195],"135":[2,195],"136":[2,195],"138":[2,195],"139":[2,195],"142":[2,195],"143":[2,195],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195],"164":[2,195],"165":[2,195],"166":[2,195],"167":[2,195],"168":[2,195]},{"8":214,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":215,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":216,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":217,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":218,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":219,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":220,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":221,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":222,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":223,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":224,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":225,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":226,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":227,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":228,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":229,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":230,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":231,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":232,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":233,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":234,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":235,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":236,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":237,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":238,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":239,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":240,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":241,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":242,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":243,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":244,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"122":[1,245],"123":[1,246]},{"8":247,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":248,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"51":[2,145],"59":[2,145],"62":[2,145],"80":[2,145],"85":[2,145],"95":[2,145],"100":[2,145],"108":[2,145],"110":[2,145],"111":[2,145],"112":[2,145],"116":[2,145],"122":[2,145],"123":[2,145],"124":[2,145],"131":[2,145],"132":[2,145],"133":[2,145],"135":[2,145],"136":[2,145],"138":[2,145],"139":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145],"164":[2,145],"165":[2,145],"166":[2,145],"167":[2,145],"168":[2,145]},{"1":[2,150],"4":[2,150],"29":[2,150],"30":[2,150],"51":[2,150],"59":[2,150],"62":[2,150],"80":[2,150],"85":[2,150],"95":[2,150],"100":[2,150],"108":[2,150],"110":[2,150],"111":[2,150],"112":[2,150],"116":[2,150],"122":[2,150],"123":[2,150],"124":[2,150],"131":[2,150],"132":[2,150],"133":[2,150],"135":[2,150],"136":[2,150],"138":[2,150],"139":[2,150],"142":[2,150],"143":[2,150],"144":[2,150],"145":[2,150],"146":[2,150],"147":[2,150],"148":[2,150],"149":[2,150],"150":[2,150],"151":[2,150],"152":[2,150],"153":[2,150],"154":[2,150],"155":[2,150],"156":[2,150],"157":[2,150],"158":[2,150],"159":[2,150],"160":[2,150],"161":[2,150],"162":[2,150],"163":[2,150],"164":[2,150],"165":[2,150],"166":[2,150],"167":[2,150],"168":[2,150]},{"62":[1,249]},{"1":[2,56],"4":[2,56],"29":[2,56],"30":[2,56],"51":[2,56],"59":[2,56],"62":[2,56],"80":[2,56],"85":[2,56],"95":[2,56],"100":[2,56],"108":[2,56],"110":[2,56],"111":[2,56],"112":[2,56],"116":[2,56],"122":[2,56],"123":[2,56],"124":[2,56],"131":[2,56],"132":[2,56],"133":[2,56],"135":[2,56],"136":[2,56],"138":[2,56],"139":[2,56],"142":[2,56],"143":[2,56],"144":[2,56],"145":[2,56],"146":[2,56],"147":[2,56],"148":[2,56],"149":[2,56],"150":[2,56],"151":[2,56],"152":[2,56],"153":[2,56],"154":[2,56],"155":[2,56],"156":[2,56],"157":[2,56],"158":[2,56],"159":[2,56],"160":[2,56],"161":[2,56],"162":[2,56],"163":[2,56],"164":[2,56],"165":[2,56],"166":[2,56],"167":[2,56],"168":[2,56]},{"8":250,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":251,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"51":[2,144],"59":[2,144],"62":[2,144],"80":[2,144],"85":[2,144],"95":[2,144],"100":[2,144],"108":[2,144],"110":[2,144],"111":[2,144],"112":[2,144],"116":[2,144],"122":[2,144],"123":[2,144],"124":[2,144],"131":[2,144],"132":[2,144],"133":[2,144],"135":[2,144],"136":[2,144],"138":[2,144],"139":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"148":[2,144],"149":[2,144],"150":[2,144],"151":[2,144],"152":[2,144],"153":[2,144],"154":[2,144],"155":[2,144],"156":[2,144],"157":[2,144],"158":[2,144],"159":[2,144],"160":[2,144],"161":[2,144],"162":[2,144],"163":[2,144],"164":[2,144],"165":[2,144],"166":[2,144],"167":[2,144],"168":[2,144]},{"1":[2,149],"4":[2,149],"29":[2,149],"30":[2,149],"51":[2,149],"59":[2,149],"62":[2,149],"80":[2,149],"85":[2,149],"95":[2,149],"100":[2,149],"108":[2,149],"110":[2,149],"111":[2,149],"112":[2,149],"116":[2,149],"122":[2,149],"123":[2,149],"124":[2,149],"131":[2,149],"132":[2,149],"133":[2,149],"135":[2,149],"136":[2,149],"138":[2,149],"139":[2,149],"142":[2,149],"143":[2,149],"144":[2,149],"145":[2,149],"146":[2,149],"147":[2,149],"148":[2,149],"149":[2,149],"150":[2,149],"151":[2,149],"152":[2,149],"153":[2,149],"154":[2,149],"155":[2,149],"156":[2,149],"157":[2,149],"158":[2,149],"159":[2,149],"160":[2,149],"161":[2,149],"162":[2,149],"163":[2,149],"164":[2,149],"165":[2,149],"166":[2,149],"167":[2,149],"168":[2,149]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"51":[2,113],"59":[2,113],"62":[2,113],"73":[2,113],"74":[2,113],"75":[2,113],"76":[2,113],"79":[2,113],"80":[2,113],"81":[2,113],"82":[2,113],"85":[2,113],"93":[2,113],"95":[2,113],"100":[2,113],"108":[2,113],"110":[2,113],"111":[2,113],"112":[2,113],"116":[2,113],"122":[2,113],"123":[2,113],"124":[2,113],"131":[2,113],"132":[2,113],"133":[2,113],"135":[2,113],"136":[2,113],"138":[2,113],"139":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113],"164":[2,113],"165":[2,113],"166":[2,113],"167":[2,113],"168":[2,113]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"46":[2,70],"51":[2,70],"59":[2,70],"62":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"82":[2,70],"85":[2,70],"87":[2,70],"93":[2,70],"95":[2,70],"100":[2,70],"108":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"116":[2,70],"122":[2,70],"123":[2,70],"124":[2,70],"131":[2,70],"132":[2,70],"133":[2,70],"135":[2,70],"136":[2,70],"138":[2,70],"139":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70],"165":[2,70],"166":[2,70],"167":[2,70],"168":[2,70]},{"4":[2,126],"8":253,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,126],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,126],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"94":252,"95":[2,126],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"31":254,"32":[1,89]},{"31":255,"32":[1,89]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"51":[2,84],"59":[2,84],"62":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"82":[2,84],"85":[2,84],"87":[2,84],"93":[2,84],"95":[2,84],"100":[2,84],"108":[2,84],"110":[2,84],"111":[2,84],"112":[2,84],"116":[2,84],"122":[2,84],"123":[2,84],"124":[2,84],"131":[2,84],"132":[2,84],"133":[2,84],"135":[2,84],"136":[2,84],"138":[2,84],"139":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84],"164":[2,84],"165":[2,84],"166":[2,84],"167":[2,84],"168":[2,84]},{"31":256,"32":[1,89]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"51":[2,86],"59":[2,86],"62":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"82":[2,86],"85":[2,86],"87":[2,86],"93":[2,86],"95":[2,86],"100":[2,86],"108":[2,86],"110":[2,86],"111":[2,86],"112":[2,86],"116":[2,86],"122":[2,86],"123":[2,86],"124":[2,86],"131":[2,86],"132":[2,86],"133":[2,86],"135":[2,86],"136":[2,86],"138":[2,86],"139":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86],"164":[2,86],"165":[2,86],"166":[2,86],"167":[2,86],"168":[2,86]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"51":[2,87],"59":[2,87],"62":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"76":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"82":[2,87],"85":[2,87],"87":[2,87],"93":[2,87],"95":[2,87],"100":[2,87],"108":[2,87],"110":[2,87],"111":[2,87],"112":[2,87],"116":[2,87],"122":[2,87],"123":[2,87],"124":[2,87],"131":[2,87],"132":[2,87],"133":[2,87],"135":[2,87],"136":[2,87],"138":[2,87],"139":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87],"164":[2,87],"165":[2,87],"166":[2,87],"167":[2,87],"168":[2,87]},{"8":257,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"77":258,"79":[1,259],"81":[1,149],"82":[1,150]},{"77":260,"79":[1,259],"81":[1,149],"82":[1,150]},{"8":261,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,262],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"51":[2,114],"59":[2,114],"62":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"76":[2,114],"79":[2,114],"80":[2,114],"81":[2,114],"82":[2,114],"85":[2,114],"93":[2,114],"95":[2,114],"100":[2,114],"108":[2,114],"110":[2,114],"111":[2,114],"112":[2,114],"116":[2,114],"122":[2,114],"123":[2,114],"124":[2,114],"131":[2,114],"132":[2,114],"133":[2,114],"135":[2,114],"136":[2,114],"138":[2,114],"139":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114],"164":[2,114],"165":[2,114],"166":[2,114],"167":[2,114],"168":[2,114]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"51":[2,71],"59":[2,71],"62":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"76":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"82":[2,71],"85":[2,71],"87":[2,71],"93":[2,71],"95":[2,71],"100":[2,71],"108":[2,71],"110":[2,71],"111":[2,71],"112":[2,71],"116":[2,71],"122":[2,71],"123":[2,71],"124":[2,71],"131":[2,71],"132":[2,71],"133":[2,71],"135":[2,71],"136":[2,71],"138":[2,71],"139":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71],"164":[2,71],"165":[2,71],"166":[2,71],"167":[2,71],"168":[2,71]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"51":[2,110],"59":[2,110],"62":[2,110],"64":153,"73":[1,142],"74":[1,143],"75":[1,144],"76":[1,145],"77":146,"78":147,"79":[1,148],"80":[2,110],"81":[1,149],"82":[1,150],"85":[2,110],"92":152,"93":[1,141],"95":[2,110],"100":[2,110],"108":[2,110],"110":[2,110],"111":[2,110],"112":[2,110],"116":[2,110],"122":[2,110],"123":[2,110],"124":[2,110],"131":[2,110],"132":[2,110],"133":[2,110],"135":[2,110],"136":[2,110],"138":[2,110],"139":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110],"164":[2,110],"165":[2,110],"166":[2,110],"167":[2,110],"168":[2,110]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"51":[2,111],"59":[2,111],"62":[2,111],"64":140,"73":[1,142],"74":[1,143],"75":[1,144],"76":[1,145],"77":146,"78":147,"79":[1,148],"80":[2,111],"81":[1,149],"82":[1,150],"85":[2,111],"92":139,"93":[1,141],"95":[2,111],"100":[2,111],"108":[2,111],"110":[2,111],"111":[2,111],"112":[2,111],"116":[2,111],"122":[2,111],"123":[2,111],"124":[2,111],"131":[2,111],"132":[2,111],"133":[2,111],"135":[2,111],"136":[2,111],"138":[2,111],"139":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111],"164":[2,111],"165":[2,111],"166":[2,111],"167":[2,111],"168":[2,111]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"51":[2,76],"59":[2,76],"62":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"85":[2,76],"93":[2,76],"95":[2,76],"100":[2,76],"108":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"116":[2,76],"122":[2,76],"123":[2,76],"124":[2,76],"131":[2,76],"132":[2,76],"133":[2,76],"135":[2,76],"136":[2,76],"138":[2,76],"139":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76],"165":[2,76],"166":[2,76],"167":[2,76],"168":[2,76]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"51":[2,73],"59":[2,73],"62":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"85":[2,73],"93":[2,73],"95":[2,73],"100":[2,73],"108":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"116":[2,73],"122":[2,73],"123":[2,73],"124":[2,73],"131":[2,73],"132":[2,73],"133":[2,73],"135":[2,73],"136":[2,73],"138":[2,73],"139":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73],"165":[2,73],"166":[2,73],"167":[2,73],"168":[2,73]},{"54":[1,263],"59":[1,264]},{"54":[2,64],"59":[2,64],"62":[1,265]},{"54":[2,66],"59":[2,66],"62":[2,66]},{"1":[2,58],"4":[2,58],"29":[2,58],"30":[2,58],"51":[2,58],"59":[2,58],"62":[2,58],"80":[2,58],"85":[2,58],"95":[2,58],"100":[2,58],"108":[2,58],"110":[2,58],"111":[2,58],"112":[2,58],"116":[2,58],"122":[2,58],"123":[2,58],"124":[2,58],"131":[2,58],"132":[2,58],"133":[2,58],"135":[2,58],"136":[2,58],"138":[2,58],"139":[2,58],"142":[2,58],"143":[2,58],"144":[2,58],"145":[2,58],"146":[2,58],"147":[2,58],"148":[2,58],"149":[2,58],"150":[2,58],"151":[2,58],"152":[2,58],"153":[2,58],"154":[2,58],"155":[2,58],"156":[2,58],"157":[2,58],"158":[2,58],"159":[2,58],"160":[2,58],"161":[2,58],"162":[2,58],"163":[2,58],"164":[2,58],"165":[2,58],"166":[2,58],"167":[2,58],"168":[2,58]},{"28":90,"50":[1,56]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"51":[1,134],"59":[2,185],"62":[2,185],"80":[2,185],"85":[2,185],"95":[2,185],"100":[2,185],"108":[2,185],"109":131,"110":[2,185],"111":[2,185],"112":[2,185],"115":132,"116":[2,185],"117":83,"122":[2,185],"123":[2,185],"124":[2,185],"131":[2,185],"132":[2,185],"135":[2,185],"136":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185],"164":[2,185],"165":[2,185],"166":[2,185],"167":[2,185],"168":[2,185]},{"109":137,"110":[1,79],"112":[1,80],"115":138,"116":[1,82],"117":83,"131":[1,135],"132":[1,136]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"51":[1,134],"59":[2,186],"62":[2,186],"80":[2,186],"85":[2,186],"95":[2,186],"100":[2,186],"108":[2,186],"109":131,"110":[2,186],"111":[2,186],"112":[2,186],"115":132,"116":[2,186],"117":83,"122":[2,186],"123":[2,186],"124":[2,186],"131":[2,186],"132":[2,186],"135":[2,186],"136":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186],"164":[2,186],"165":[2,186],"166":[2,186],"167":[2,186],"168":[2,186]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"51":[1,134],"59":[2,187],"62":[2,187],"80":[2,187],"85":[2,187],"95":[2,187],"100":[2,187],"108":[2,187],"109":131,"110":[2,187],"111":[2,187],"112":[2,187],"115":132,"116":[2,187],"117":83,"122":[2,187],"123":[2,187],"124":[2,187],"131":[2,187],"132":[2,187],"135":[2,187],"136":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187],"164":[2,187],"165":[2,187],"166":[2,187],"167":[2,187],"168":[2,187]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"51":[1,134],"59":[2,188],"62":[2,188],"80":[2,188],"85":[2,188],"95":[2,188],"100":[2,188],"108":[2,188],"109":131,"110":[2,188],"111":[2,188],"112":[2,188],"115":132,"116":[2,188],"117":83,"122":[2,188],"123":[2,188],"124":[2,188],"131":[2,188],"132":[2,188],"135":[2,188],"136":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188],"164":[2,188],"165":[2,188],"166":[2,188],"167":[2,188],"168":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"51":[1,134],"59":[2,189],"62":[2,189],"80":[2,189],"85":[2,189],"95":[2,189],"100":[2,189],"108":[2,189],"109":131,"110":[2,189],"111":[2,189],"112":[2,189],"115":132,"116":[2,189],"117":83,"122":[2,189],"123":[2,189],"124":[2,189],"131":[2,189],"132":[2,189],"135":[2,189],"136":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189],"164":[2,189],"165":[2,189],"166":[2,189],"167":[2,189],"168":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"51":[1,134],"59":[2,190],"62":[2,190],"80":[2,190],"85":[2,190],"95":[2,190],"100":[2,190],"108":[2,190],"109":131,"110":[2,190],"111":[2,190],"112":[2,190],"115":132,"116":[2,190],"117":83,"122":[2,190],"123":[2,190],"124":[2,190],"131":[2,190],"132":[2,190],"135":[2,190],"136":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190],"164":[2,190],"165":[2,190],"166":[2,190],"167":[2,190],"168":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"51":[1,134],"59":[2,191],"62":[2,191],"80":[2,191],"85":[2,191],"95":[2,191],"100":[2,191],"108":[2,191],"109":131,"110":[2,191],"111":[2,191],"112":[2,191],"115":132,"116":[2,191],"117":83,"122":[2,191],"123":[2,191],"124":[2,191],"131":[2,191],"132":[2,191],"135":[2,191],"136":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191],"164":[2,191],"165":[2,191],"166":[2,191],"167":[2,191],"168":[2,191]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"51":[1,134],"59":[2,192],"62":[2,192],"80":[2,192],"85":[2,192],"95":[2,192],"100":[2,192],"108":[2,192],"109":131,"110":[2,192],"111":[2,192],"112":[2,192],"115":132,"116":[2,192],"117":83,"122":[2,192],"123":[2,192],"124":[2,192],"131":[2,192],"132":[2,192],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192],"164":[2,192],"165":[2,192],"166":[2,192],"167":[2,192],"168":[1,125]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"51":[1,134],"59":[2,193],"62":[2,193],"80":[2,193],"85":[2,193],"95":[2,193],"100":[2,193],"108":[2,193],"109":131,"110":[2,193],"111":[2,193],"112":[2,193],"115":132,"116":[2,193],"117":83,"122":[2,193],"123":[2,193],"124":[2,193],"131":[2,193],"132":[2,193],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193],"164":[2,193],"165":[2,193],"166":[2,193],"167":[2,193],"168":[1,125]},{"4":[1,162],"6":267,"29":[1,6],"131":[1,266]},{"103":268,"104":[1,269],"105":[1,270]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"51":[2,143],"59":[2,143],"62":[2,143],"80":[2,143],"85":[2,143],"95":[2,143],"100":[2,143],"108":[2,143],"110":[2,143],"111":[2,143],"112":[2,143],"116":[2,143],"122":[2,143],"123":[2,143],"124":[2,143],"131":[2,143],"132":[2,143],"133":[2,143],"135":[2,143],"136":[2,143],"138":[2,143],"139":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"147":[2,143],"148":[2,143],"149":[2,143],"150":[2,143],"151":[2,143],"152":[2,143],"153":[2,143],"154":[2,143],"155":[2,143],"156":[2,143],"157":[2,143],"158":[2,143],"159":[2,143],"160":[2,143],"161":[2,143],"162":[2,143],"163":[2,143],"164":[2,143],"165":[2,143],"166":[2,143],"167":[2,143],"168":[2,143]},{"1":[2,151],"4":[2,151],"29":[2,151],"30":[2,151],"51":[2,151],"59":[2,151],"62":[2,151],"80":[2,151],"85":[2,151],"95":[2,151],"100":[2,151],"108":[2,151],"110":[2,151],"111":[2,151],"112":[2,151],"116":[2,151],"122":[2,151],"123":[2,151],"124":[2,151],"131":[2,151],"132":[2,151],"133":[2,151],"135":[2,151],"136":[2,151],"138":[2,151],"139":[2,151],"142":[2,151],"143":[2,151],"144":[2,151],"145":[2,151],"146":[2,151],"147":[2,151],"148":[2,151],"149":[2,151],"150":[2,151],"151":[2,151],"152":[2,151],"153":[2,151],"154":[2,151],"155":[2,151],"156":[2,151],"157":[2,151],"158":[2,151],"159":[2,151],"160":[2,151],"161":[2,151],"162":[2,151],"163":[2,151],"164":[2,151],"165":[2,151],"166":[2,151],"167":[2,151],"168":[2,151]},{"29":[1,271],"51":[1,134],"62":[1,133],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"126":272,"128":273,"129":[1,274]},{"14":275,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":156,"63":157,"65":183,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"1":[2,97],"4":[2,97],"29":[1,277],"30":[2,97],"51":[2,97],"59":[2,97],"62":[2,97],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"80":[2,97],"81":[2,73],"82":[2,73],"85":[2,97],"87":[1,276],"93":[2,73],"95":[2,97],"100":[2,97],"108":[2,97],"110":[2,97],"111":[2,97],"112":[2,97],"116":[2,97],"122":[2,97],"123":[2,97],"124":[2,97],"131":[2,97],"132":[2,97],"133":[2,97],"135":[2,97],"136":[2,97],"138":[2,97],"139":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97],"164":[2,97],"165":[2,97],"166":[2,97],"167":[2,97],"168":[2,97]},{"4":[2,104],"28":211,"30":[2,104],"31":209,"32":[1,89],"33":210,"34":[1,87],"35":[1,88],"47":281,"50":[1,56],"66":282,"83":[1,280],"88":278,"89":279,"98":[1,283]},{"64":140,"73":[1,142],"74":[1,143],"75":[1,144],"76":[1,145],"77":146,"78":147,"79":[1,148],"81":[1,149],"82":[1,150],"92":139,"93":[1,141]},{"64":153,"73":[1,142],"74":[1,143],"75":[1,144],"76":[1,145],"77":146,"78":147,"79":[1,148],"81":[1,149],"82":[1,150],"92":152,"93":[1,141]},{"1":[2,53],"4":[2,53],"30":[2,53],"51":[1,134],"62":[1,133],"108":[2,53],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[2,53],"132":[2,53],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,137],"4":[2,137],"30":[2,137],"51":[1,134],"62":[1,133],"108":[2,137],"109":131,"110":[2,137],"112":[2,137],"115":132,"116":[2,137],"117":83,"122":[1,126],"123":[1,127],"131":[2,137],"132":[2,137],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"108":[1,284]},{"4":[2,127],"29":[2,127],"51":[1,134],"59":[2,127],"62":[1,285],"100":[2,127],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[2,61],"29":[2,61],"58":286,"59":[1,287],"100":[2,61]},{"1":[2,120],"4":[2,120],"29":[2,120],"30":[2,120],"46":[2,120],"48":[2,120],"51":[2,120],"59":[2,120],"62":[2,120],"73":[2,120],"74":[2,120],"75":[2,120],"76":[2,120],"79":[2,120],"80":[2,120],"81":[2,120],"82":[2,120],"85":[2,120],"87":[2,120],"93":[2,120],"95":[2,120],"100":[2,120],"108":[2,120],"110":[2,120],"111":[2,120],"112":[2,120],"116":[2,120],"122":[2,120],"123":[2,120],"124":[2,120],"131":[2,120],"132":[2,120],"133":[2,120],"135":[2,120],"136":[2,120],"138":[2,120],"139":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120],"163":[2,120],"164":[2,120],"165":[2,120],"166":[2,120],"167":[2,120],"168":[2,120]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"51":[2,117],"59":[2,117],"62":[2,117],"80":[2,117],"85":[2,117],"95":[2,117],"100":[2,117],"108":[2,117],"110":[2,117],"111":[2,117],"112":[2,117],"116":[2,117],"122":[2,117],"123":[2,117],"124":[2,117],"131":[2,117],"132":[2,117],"133":[2,117],"135":[2,117],"136":[2,117],"138":[2,117],"139":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117],"164":[2,117],"165":[2,117],"166":[2,117],"167":[2,117],"168":[2,117]},{"4":[1,162],"6":288,"29":[1,6],"51":[1,134],"62":[1,133],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[1,162],"6":289,"29":[1,6],"51":[1,134],"62":[1,133],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"51":[1,134],"59":[2,139],"62":[1,133],"80":[2,139],"85":[2,139],"95":[2,139],"100":[2,139],"108":[2,139],"109":131,"110":[1,79],"111":[1,290],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"124":[2,139],"131":[2,139],"132":[2,139],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"51":[1,134],"59":[2,141],"62":[1,133],"80":[2,141],"85":[2,141],"95":[2,141],"100":[2,141],"108":[2,141],"109":131,"110":[1,79],"111":[1,291],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"124":[2,141],"131":[2,141],"132":[2,141],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,147],"4":[2,147],"29":[2,147],"30":[2,147],"51":[2,147],"59":[2,147],"62":[2,147],"80":[2,147],"85":[2,147],"95":[2,147],"100":[2,147],"108":[2,147],"110":[2,147],"111":[2,147],"112":[2,147],"116":[2,147],"122":[2,147],"123":[2,147],"124":[2,147],"131":[2,147],"132":[2,147],"133":[2,147],"135":[2,147],"136":[2,147],"138":[2,147],"139":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"146":[2,147],"147":[2,147],"148":[2,147],"149":[2,147],"150":[2,147],"151":[2,147],"152":[2,147],"153":[2,147],"154":[2,147],"155":[2,147],"156":[2,147],"157":[2,147],"158":[2,147],"159":[2,147],"160":[2,147],"161":[2,147],"162":[2,147],"163":[2,147],"164":[2,147],"165":[2,147],"166":[2,147],"167":[2,147],"168":[2,147]},{"1":[2,148],"4":[2,148],"29":[2,148],"30":[2,148],"51":[1,134],"59":[2,148],"62":[1,133],"80":[2,148],"85":[2,148],"95":[2,148],"100":[2,148],"108":[2,148],"109":131,"110":[1,79],"111":[2,148],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"124":[2,148],"131":[2,148],"132":[2,148],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"51":[2,152],"59":[2,152],"62":[2,152],"80":[2,152],"85":[2,152],"95":[2,152],"100":[2,152],"108":[2,152],"110":[2,152],"111":[2,152],"112":[2,152],"116":[2,152],"122":[2,152],"123":[2,152],"124":[2,152],"131":[2,152],"132":[2,152],"133":[2,152],"135":[2,152],"136":[2,152],"138":[2,152],"139":[2,152],"142":[2,152],"143":[2,152],"144":[2,152],"145":[2,152],"146":[2,152],"147":[2,152],"148":[2,152],"149":[2,152],"150":[2,152],"151":[2,152],"152":[2,152],"153":[2,152],"154":[2,152],"155":[2,152],"156":[2,152],"157":[2,152],"158":[2,152],"159":[2,152],"160":[2,152],"161":[2,152],"162":[2,152],"163":[2,152],"164":[2,152],"165":[2,152],"166":[2,152],"167":[2,152],"168":[2,152]},{"122":[2,154],"123":[2,154]},{"31":201,"32":[1,89],"67":202,"68":203,"83":[1,86],"99":[1,293],"119":292,"121":200},{"59":[1,294],"122":[2,159],"123":[2,159]},{"59":[2,156],"122":[2,156],"123":[2,156]},{"59":[2,157],"122":[2,157],"123":[2,157]},{"59":[2,158],"122":[2,158],"123":[2,158]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"51":[2,153],"59":[2,153],"62":[2,153],"80":[2,153],"85":[2,153],"95":[2,153],"100":[2,153],"108":[2,153],"110":[2,153],"111":[2,153],"112":[2,153],"116":[2,153],"122":[2,153],"123":[2,153],"124":[2,153],"131":[2,153],"132":[2,153],"133":[2,153],"135":[2,153],"136":[2,153],"138":[2,153],"139":[2,153],"142":[2,153],"143":[2,153],"144":[2,153],"145":[2,153],"146":[2,153],"147":[2,153],"148":[2,153],"149":[2,153],"150":[2,153],"151":[2,153],"152":[2,153],"153":[2,153],"154":[2,153],"155":[2,153],"156":[2,153],"157":[2,153],"158":[2,153],"159":[2,153],"160":[2,153],"161":[2,153],"162":[2,153],"163":[2,153],"164":[2,153],"165":[2,153],"166":[2,153],"167":[2,153],"168":[2,153]},{"8":295,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":296,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"4":[2,61],"29":[2,61],"58":297,"59":[1,298],"85":[2,61]},{"4":[2,93],"29":[2,93],"30":[2,93],"59":[2,93],"85":[2,93]},{"4":[2,46],"29":[2,46],"30":[2,46],"48":[1,299],"59":[2,46],"85":[2,46]},{"4":[2,47],"29":[2,47],"30":[2,47],"48":[1,300],"59":[2,47],"85":[2,47]},{"4":[2,52],"29":[2,52],"30":[2,52],"59":[2,52],"85":[2,52]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"51":[2,29],"59":[2,29],"62":[2,29],"80":[2,29],"85":[2,29],"95":[2,29],"100":[2,29],"104":[2,29],"105":[2,29],"108":[2,29],"110":[2,29],"111":[2,29],"112":[2,29],"116":[2,29],"122":[2,29],"123":[2,29],"124":[2,29],"127":[2,29],"129":[2,29],"131":[2,29],"132":[2,29],"133":[2,29],"135":[2,29],"136":[2,29],"138":[2,29],"139":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29],"164":[2,29],"165":[2,29],"166":[2,29],"167":[2,29],"168":[2,29]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"51":[1,134],"59":[2,196],"62":[2,196],"80":[2,196],"85":[2,196],"95":[2,196],"100":[2,196],"108":[2,196],"109":131,"110":[2,196],"111":[2,196],"112":[2,196],"115":132,"116":[2,196],"117":83,"122":[2,196],"123":[2,196],"124":[2,196],"131":[2,196],"132":[2,196],"133":[1,128],"135":[2,196],"136":[2,196],"138":[1,95],"139":[1,96],"142":[2,196],"143":[2,196],"144":[2,196],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196],"164":[2,196],"165":[2,196],"166":[2,196],"167":[2,196],"168":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"51":[1,134],"59":[2,197],"62":[2,197],"80":[2,197],"85":[2,197],"95":[2,197],"100":[2,197],"108":[2,197],"109":131,"110":[2,197],"111":[2,197],"112":[2,197],"115":132,"116":[2,197],"117":83,"122":[2,197],"123":[2,197],"124":[2,197],"131":[2,197],"132":[2,197],"133":[1,128],"135":[2,197],"136":[2,197],"138":[1,95],"139":[1,96],"142":[2,197],"143":[2,197],"144":[2,197],"145":[2,197],"146":[2,197],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197],"164":[2,197],"165":[2,197],"166":[2,197],"167":[2,197],"168":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"51":[1,134],"59":[2,198],"62":[2,198],"80":[2,198],"85":[2,198],"95":[2,198],"100":[2,198],"108":[2,198],"109":131,"110":[2,198],"111":[2,198],"112":[2,198],"115":132,"116":[2,198],"117":83,"122":[2,198],"123":[2,198],"124":[2,198],"131":[2,198],"132":[2,198],"133":[1,128],"135":[2,198],"136":[2,198],"138":[1,95],"139":[1,96],"142":[2,198],"143":[2,198],"144":[2,198],"145":[2,198],"146":[2,198],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198],"164":[2,198],"165":[2,198],"166":[2,198],"167":[2,198],"168":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"51":[1,134],"59":[2,199],"62":[2,199],"80":[2,199],"85":[2,199],"95":[2,199],"100":[2,199],"108":[2,199],"109":131,"110":[2,199],"111":[2,199],"112":[2,199],"115":132,"116":[2,199],"117":83,"122":[2,199],"123":[2,199],"124":[2,199],"131":[2,199],"132":[2,199],"133":[1,128],"135":[2,199],"136":[2,199],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[2,199],"146":[2,199],"147":[2,199],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199],"164":[2,199],"165":[2,199],"166":[2,199],"167":[2,199],"168":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"51":[1,134],"59":[2,200],"62":[2,200],"80":[2,200],"85":[2,200],"95":[2,200],"100":[2,200],"108":[2,200],"109":131,"110":[2,200],"111":[2,200],"112":[2,200],"115":132,"116":[2,200],"117":83,"122":[2,200],"123":[2,200],"124":[2,200],"131":[2,200],"132":[2,200],"133":[1,128],"135":[2,200],"136":[2,200],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[2,200],"146":[2,200],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200],"164":[2,200],"165":[2,200],"166":[2,200],"167":[2,200],"168":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"51":[1,134],"59":[2,201],"62":[2,201],"80":[2,201],"85":[2,201],"95":[2,201],"100":[2,201],"108":[2,201],"109":131,"110":[2,201],"111":[2,201],"112":[2,201],"115":132,"116":[2,201],"117":83,"122":[2,201],"123":[2,201],"124":[2,201],"131":[2,201],"132":[2,201],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[2,201],"146":[2,201],"147":[2,201],"148":[2,201],"149":[2,201],"150":[2,201],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201],"164":[2,201],"165":[2,201],"166":[2,201],"167":[2,201],"168":[2,201]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"51":[1,134],"59":[2,202],"62":[2,202],"80":[2,202],"85":[2,202],"95":[2,202],"100":[2,202],"108":[2,202],"109":131,"110":[2,202],"111":[2,202],"112":[2,202],"115":132,"116":[2,202],"117":83,"122":[2,202],"123":[2,202],"124":[2,202],"131":[2,202],"132":[2,202],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[2,202],"146":[2,202],"147":[2,202],"148":[2,202],"149":[2,202],"150":[2,202],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[2,202],"164":[2,202],"165":[2,202],"166":[2,202],"167":[2,202],"168":[2,202]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"51":[1,134],"59":[2,203],"62":[2,203],"80":[2,203],"85":[2,203],"95":[2,203],"100":[2,203],"108":[2,203],"109":131,"110":[2,203],"111":[2,203],"112":[2,203],"115":132,"116":[2,203],"117":83,"122":[2,203],"123":[2,203],"124":[2,203],"131":[2,203],"132":[2,203],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[2,203],"146":[2,203],"147":[2,203],"148":[2,203],"149":[2,203],"150":[2,203],"151":[2,203],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[2,203],"165":[2,203],"166":[2,203],"167":[2,203],"168":[2,203]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"51":[1,134],"59":[2,204],"62":[2,204],"80":[2,204],"85":[2,204],"95":[2,204],"100":[2,204],"108":[2,204],"109":131,"110":[2,204],"111":[2,204],"112":[2,204],"115":132,"116":[2,204],"117":83,"122":[2,204],"123":[2,204],"124":[2,204],"131":[2,204],"132":[2,204],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[2,204],"149":[2,204],"150":[2,204],"151":[2,204],"152":[2,204],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[2,204],"165":[2,204],"166":[2,204],"167":[2,204],"168":[2,204]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"51":[1,134],"59":[2,205],"62":[2,205],"80":[2,205],"85":[2,205],"95":[2,205],"100":[2,205],"108":[2,205],"109":131,"110":[2,205],"111":[2,205],"112":[2,205],"115":132,"116":[2,205],"117":83,"122":[2,205],"123":[2,205],"124":[2,205],"131":[2,205],"132":[2,205],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[2,205],"149":[2,205],"150":[2,205],"151":[2,205],"152":[2,205],"153":[2,205],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205],"164":[2,205],"165":[2,205],"166":[2,205],"167":[2,205],"168":[2,205]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"51":[1,134],"59":[2,206],"62":[2,206],"80":[2,206],"85":[2,206],"95":[2,206],"100":[2,206],"108":[2,206],"109":131,"110":[2,206],"111":[2,206],"112":[2,206],"115":132,"116":[2,206],"117":83,"122":[2,206],"123":[2,206],"124":[2,206],"131":[2,206],"132":[2,206],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[2,206],"149":[2,206],"150":[2,206],"151":[2,206],"152":[2,206],"153":[2,206],"154":[2,206],"155":[2,206],"156":[2,206],"157":[2,206],"158":[2,206],"159":[2,206],"160":[2,206],"161":[2,206],"162":[2,206],"163":[2,206],"164":[2,206],"165":[2,206],"166":[2,206],"167":[2,206],"168":[2,206]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"51":[1,134],"59":[2,207],"62":[2,207],"80":[2,207],"85":[2,207],"95":[2,207],"100":[2,207],"108":[2,207],"109":131,"110":[2,207],"111":[2,207],"112":[2,207],"115":132,"116":[2,207],"117":83,"122":[2,207],"123":[2,207],"124":[2,207],"131":[2,207],"132":[2,207],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[2,207],"152":[2,207],"153":[2,207],"154":[2,207],"155":[2,207],"156":[2,207],"157":[2,207],"158":[2,207],"159":[2,207],"160":[2,207],"161":[2,207],"162":[2,207],"163":[2,207],"164":[2,207],"165":[2,207],"166":[2,207],"167":[2,207],"168":[2,207]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"51":[1,134],"59":[2,208],"62":[2,208],"80":[2,208],"85":[2,208],"95":[2,208],"100":[2,208],"108":[2,208],"109":131,"110":[2,208],"111":[2,208],"112":[2,208],"115":132,"116":[2,208],"117":83,"122":[2,208],"123":[2,208],"124":[2,208],"131":[2,208],"132":[2,208],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[2,208],"152":[2,208],"153":[2,208],"154":[2,208],"155":[2,208],"156":[2,208],"157":[2,208],"158":[2,208],"159":[2,208],"160":[2,208],"161":[2,208],"162":[2,208],"163":[2,208],"164":[2,208],"165":[2,208],"166":[2,208],"167":[2,208],"168":[2,208]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"51":[1,134],"59":[2,209],"62":[2,209],"80":[2,209],"85":[2,209],"95":[2,209],"100":[2,209],"108":[2,209],"109":131,"110":[2,209],"111":[2,209],"112":[2,209],"115":132,"116":[2,209],"117":83,"122":[2,209],"123":[2,209],"124":[2,209],"131":[2,209],"132":[2,209],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[2,209],"152":[2,209],"153":[2,209],"154":[2,209],"155":[2,209],"156":[2,209],"157":[2,209],"158":[2,209],"159":[2,209],"160":[2,209],"161":[2,209],"162":[2,209],"163":[2,209],"164":[2,209],"165":[2,209],"166":[2,209],"167":[2,209],"168":[2,209]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"51":[1,134],"59":[2,210],"62":[2,210],"80":[2,210],"85":[2,210],"95":[2,210],"100":[2,210],"108":[2,210],"109":131,"110":[2,210],"111":[2,210],"112":[2,210],"115":132,"116":[2,210],"117":83,"122":[2,210],"123":[2,210],"124":[2,210],"131":[2,210],"132":[2,210],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[2,210],"152":[2,210],"153":[2,210],"154":[2,210],"155":[2,210],"156":[2,210],"157":[2,210],"158":[2,210],"159":[2,210],"160":[2,210],"161":[2,210],"162":[2,210],"163":[2,210],"164":[2,210],"165":[2,210],"166":[2,210],"167":[2,210],"168":[2,210]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"51":[1,134],"59":[2,211],"62":[2,211],"80":[2,211],"85":[2,211],"95":[2,211],"100":[2,211],"108":[2,211],"109":131,"110":[2,211],"111":[2,211],"112":[2,211],"115":132,"116":[2,211],"117":83,"122":[2,211],"123":[2,211],"124":[2,211],"131":[2,211],"132":[2,211],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[2,211],"156":[2,211],"157":[2,211],"158":[2,211],"159":[2,211],"160":[2,211],"161":[2,211],"162":[2,211],"163":[2,211],"164":[2,211],"165":[2,211],"166":[2,211],"167":[2,211],"168":[1,125]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"51":[1,134],"59":[2,212],"62":[2,212],"80":[2,212],"85":[2,212],"95":[2,212],"100":[2,212],"108":[2,212],"109":131,"110":[2,212],"111":[2,212],"112":[2,212],"115":132,"116":[2,212],"117":83,"122":[2,212],"123":[2,212],"124":[2,212],"131":[2,212],"132":[2,212],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[2,212],"156":[2,212],"157":[2,212],"158":[2,212],"159":[2,212],"160":[2,212],"161":[2,212],"162":[2,212],"163":[2,212],"164":[2,212],"165":[2,212],"166":[2,212],"167":[2,212],"168":[1,125]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"51":[1,134],"59":[2,213],"62":[2,213],"80":[2,213],"85":[2,213],"95":[2,213],"100":[2,213],"108":[2,213],"109":131,"110":[2,213],"111":[2,213],"112":[2,213],"115":132,"116":[2,213],"117":83,"122":[2,213],"123":[2,213],"124":[2,213],"131":[2,213],"132":[2,213],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[2,213],"158":[2,213],"159":[2,213],"160":[2,213],"161":[2,213],"162":[2,213],"163":[2,213],"164":[2,213],"165":[2,213],"166":[2,213],"167":[2,213],"168":[1,125]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"51":[1,134],"59":[2,214],"62":[2,214],"80":[2,214],"85":[2,214],"95":[2,214],"100":[2,214],"108":[2,214],"109":131,"110":[2,214],"111":[2,214],"112":[2,214],"115":132,"116":[2,214],"117":83,"122":[2,214],"123":[2,214],"124":[2,214],"131":[2,214],"132":[2,214],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[2,214],"158":[2,214],"159":[2,214],"160":[2,214],"161":[2,214],"162":[2,214],"163":[2,214],"164":[2,214],"165":[2,214],"166":[2,214],"167":[2,214],"168":[1,125]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"51":[1,134],"59":[2,215],"62":[2,215],"80":[2,215],"85":[2,215],"95":[2,215],"100":[2,215],"108":[2,215],"109":131,"110":[2,215],"111":[2,215],"112":[2,215],"115":132,"116":[2,215],"117":83,"122":[2,215],"123":[2,215],"124":[2,215],"131":[2,215],"132":[2,215],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[2,215],"158":[2,215],"159":[2,215],"160":[2,215],"161":[2,215],"162":[2,215],"163":[2,215],"164":[2,215],"165":[2,215],"166":[2,215],"167":[2,215],"168":[1,125]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"51":[1,134],"59":[2,216],"62":[2,216],"80":[2,216],"85":[2,216],"95":[2,216],"100":[2,216],"108":[2,216],"109":131,"110":[2,216],"111":[2,216],"112":[2,216],"115":132,"116":[2,216],"117":83,"122":[2,216],"123":[2,216],"124":[2,216],"131":[2,216],"132":[2,216],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"51":[1,134],"59":[2,217],"62":[2,217],"80":[2,217],"85":[2,217],"95":[2,217],"100":[2,217],"108":[2,217],"109":131,"110":[2,217],"111":[2,217],"112":[2,217],"115":132,"116":[2,217],"117":83,"122":[2,217],"123":[2,217],"124":[2,217],"131":[2,217],"132":[2,217],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"51":[1,134],"59":[2,218],"62":[2,218],"80":[2,218],"85":[2,218],"95":[2,218],"100":[2,218],"108":[2,218],"109":131,"110":[2,218],"111":[2,218],"112":[2,218],"115":132,"116":[2,218],"117":83,"122":[2,218],"123":[2,218],"124":[2,218],"131":[2,218],"132":[2,218],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,219],"4":[2,219],"29":[2,219],"30":[2,219],"51":[1,134],"59":[2,219],"62":[2,219],"80":[2,219],"85":[2,219],"95":[2,219],"100":[2,219],"108":[2,219],"109":131,"110":[2,219],"111":[2,219],"112":[2,219],"115":132,"116":[2,219],"117":83,"122":[2,219],"123":[2,219],"124":[2,219],"131":[2,219],"132":[2,219],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,220],"4":[2,220],"29":[2,220],"30":[2,220],"51":[1,134],"59":[2,220],"62":[2,220],"80":[2,220],"85":[2,220],"95":[2,220],"100":[2,220],"108":[2,220],"109":131,"110":[2,220],"111":[2,220],"112":[2,220],"115":132,"116":[2,220],"117":83,"122":[2,220],"123":[2,220],"124":[2,220],"131":[2,220],"132":[2,220],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,221],"4":[2,221],"29":[2,221],"30":[2,221],"51":[1,134],"59":[2,221],"62":[2,221],"80":[2,221],"85":[2,221],"95":[2,221],"100":[2,221],"108":[2,221],"109":131,"110":[2,221],"111":[2,221],"112":[2,221],"115":132,"116":[2,221],"117":83,"122":[2,221],"123":[2,221],"124":[2,221],"131":[2,221],"132":[2,221],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,222],"4":[2,222],"29":[2,222],"30":[2,222],"51":[1,134],"59":[2,222],"62":[2,222],"80":[2,222],"85":[2,222],"95":[2,222],"100":[2,222],"108":[2,222],"109":131,"110":[2,222],"111":[2,222],"112":[2,222],"115":132,"116":[2,222],"117":83,"122":[2,222],"123":[2,222],"124":[2,222],"131":[2,222],"132":[2,222],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,223],"4":[2,223],"29":[2,223],"30":[2,223],"51":[1,134],"59":[2,223],"62":[2,223],"80":[2,223],"85":[2,223],"95":[2,223],"100":[2,223],"108":[2,223],"109":131,"110":[2,223],"111":[2,223],"112":[2,223],"115":132,"116":[2,223],"117":83,"122":[2,223],"123":[2,223],"124":[2,223],"131":[2,223],"132":[2,223],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,224],"4":[2,224],"29":[2,224],"30":[2,224],"51":[1,134],"59":[2,224],"62":[2,224],"80":[2,224],"85":[2,224],"95":[2,224],"100":[2,224],"108":[2,224],"109":131,"110":[2,224],"111":[2,224],"112":[2,224],"115":132,"116":[2,224],"117":83,"122":[2,224],"123":[2,224],"124":[2,224],"131":[2,224],"132":[2,224],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[2,224],"156":[2,224],"157":[2,224],"158":[2,224],"159":[2,224],"160":[2,224],"161":[2,224],"162":[2,224],"163":[2,224],"164":[2,224],"165":[2,224],"166":[2,224],"167":[2,224],"168":[1,125]},{"1":[2,225],"4":[2,225],"29":[2,225],"30":[2,225],"51":[1,134],"59":[2,225],"62":[1,133],"80":[2,225],"85":[2,225],"95":[2,225],"100":[2,225],"108":[2,225],"109":131,"110":[2,225],"111":[2,225],"112":[2,225],"115":132,"116":[2,225],"117":83,"122":[1,126],"123":[1,127],"124":[2,225],"131":[2,225],"132":[2,225],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,226],"4":[2,226],"29":[2,226],"30":[2,226],"51":[1,134],"59":[2,226],"62":[1,133],"80":[2,226],"85":[2,226],"95":[2,226],"100":[2,226],"108":[2,226],"109":131,"110":[2,226],"111":[2,226],"112":[2,226],"115":132,"116":[2,226],"117":83,"122":[1,126],"123":[1,127],"124":[2,226],"131":[2,226],"132":[2,226],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"8":301,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":302,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"51":[1,134],"59":[2,182],"62":[1,133],"80":[2,182],"85":[2,182],"95":[2,182],"100":[2,182],"108":[2,182],"109":131,"110":[1,79],"111":[2,182],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"124":[2,182],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"51":[1,134],"59":[2,184],"62":[1,133],"80":[2,184],"85":[2,184],"95":[2,184],"100":[2,184],"108":[2,184],"109":131,"110":[1,79],"111":[2,184],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"124":[2,184],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"62":[1,303]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"51":[1,134],"59":[2,181],"62":[1,133],"80":[2,181],"85":[2,181],"95":[2,181],"100":[2,181],"108":[2,181],"109":131,"110":[1,79],"111":[2,181],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"124":[2,181],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"51":[1,134],"59":[2,183],"62":[1,133],"80":[2,183],"85":[2,183],"95":[2,183],"100":[2,183],"108":[2,183],"109":131,"110":[1,79],"111":[2,183],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"124":[2,183],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[2,61],"29":[2,61],"58":304,"59":[1,287],"95":[2,61]},{"4":[2,127],"29":[2,127],"30":[2,127],"51":[1,134],"59":[2,127],"62":[1,133],"95":[2,127],"100":[2,127],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"46":[2,82],"51":[2,82],"59":[2,82],"62":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"82":[2,82],"85":[2,82],"87":[2,82],"93":[2,82],"95":[2,82],"100":[2,82],"108":[2,82],"110":[2,82],"111":[2,82],"112":[2,82],"116":[2,82],"122":[2,82],"123":[2,82],"124":[2,82],"131":[2,82],"132":[2,82],"133":[2,82],"135":[2,82],"136":[2,82],"138":[2,82],"139":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82],"164":[2,82],"165":[2,82],"166":[2,82],"167":[2,82],"168":[2,82]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"46":[2,83],"51":[2,83],"59":[2,83],"62":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"82":[2,83],"85":[2,83],"87":[2,83],"93":[2,83],"95":[2,83],"100":[2,83],"108":[2,83],"110":[2,83],"111":[2,83],"112":[2,83],"116":[2,83],"122":[2,83],"123":[2,83],"124":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"135":[2,83],"136":[2,83],"138":[2,83],"139":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83],"164":[2,83],"165":[2,83],"166":[2,83],"167":[2,83],"168":[2,83]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"51":[2,85],"59":[2,85],"62":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"82":[2,85],"85":[2,85],"87":[2,85],"93":[2,85],"95":[2,85],"100":[2,85],"108":[2,85],"110":[2,85],"111":[2,85],"112":[2,85],"116":[2,85],"122":[2,85],"123":[2,85],"124":[2,85],"131":[2,85],"132":[2,85],"133":[2,85],"135":[2,85],"136":[2,85],"138":[2,85],"139":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85],"164":[2,85],"165":[2,85],"166":[2,85],"167":[2,85],"168":[2,85]},{"51":[1,134],"62":[1,306],"80":[1,305],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,89],"4":[2,89],"29":[2,89],"30":[2,89],"46":[2,89],"51":[2,89],"59":[2,89],"62":[2,89],"73":[2,89],"74":[2,89],"75":[2,89],"76":[2,89],"79":[2,89],"80":[2,89],"81":[2,89],"82":[2,89],"85":[2,89],"87":[2,89],"93":[2,89],"95":[2,89],"100":[2,89],"108":[2,89],"110":[2,89],"111":[2,89],"112":[2,89],"116":[2,89],"122":[2,89],"123":[2,89],"124":[2,89],"131":[2,89],"132":[2,89],"133":[2,89],"135":[2,89],"136":[2,89],"138":[2,89],"139":[2,89],"142":[2,89],"143":[2,89],"144":[2,89],"145":[2,89],"146":[2,89],"147":[2,89],"148":[2,89],"149":[2,89],"150":[2,89],"151":[2,89],"152":[2,89],"153":[2,89],"154":[2,89],"155":[2,89],"156":[2,89],"157":[2,89],"158":[2,89],"159":[2,89],"160":[2,89],"161":[2,89],"162":[2,89],"163":[2,89],"164":[2,89],"165":[2,89],"166":[2,89],"167":[2,89],"168":[2,89]},{"8":307,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,90],"4":[2,90],"29":[2,90],"30":[2,90],"46":[2,90],"51":[2,90],"59":[2,90],"62":[2,90],"73":[2,90],"74":[2,90],"75":[2,90],"76":[2,90],"79":[2,90],"80":[2,90],"81":[2,90],"82":[2,90],"85":[2,90],"87":[2,90],"93":[2,90],"95":[2,90],"100":[2,90],"108":[2,90],"110":[2,90],"111":[2,90],"112":[2,90],"116":[2,90],"122":[2,90],"123":[2,90],"124":[2,90],"131":[2,90],"132":[2,90],"133":[2,90],"135":[2,90],"136":[2,90],"138":[2,90],"139":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90],"151":[2,90],"152":[2,90],"153":[2,90],"154":[2,90],"155":[2,90],"156":[2,90],"157":[2,90],"158":[2,90],"159":[2,90],"160":[2,90],"161":[2,90],"162":[2,90],"163":[2,90],"164":[2,90],"165":[2,90],"166":[2,90],"167":[2,90],"168":[2,90]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"51":[1,134],"59":[2,44],"62":[1,133],"80":[2,44],"85":[2,44],"95":[2,44],"100":[2,44],"108":[2,44],"109":131,"110":[1,79],"111":[2,44],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"124":[2,44],"131":[2,44],"132":[2,44],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"8":308,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"55":309,"56":[1,75],"57":[1,76]},{"60":310,"61":[1,160]},{"62":[1,311]},{"8":312,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"51":[2,179],"59":[2,179],"62":[2,179],"80":[2,179],"85":[2,179],"95":[2,179],"100":[2,179],"108":[2,179],"110":[2,179],"111":[2,179],"112":[2,179],"116":[2,179],"122":[2,179],"123":[2,179],"124":[2,179],"127":[2,179],"131":[2,179],"132":[2,179],"133":[2,179],"135":[2,179],"136":[2,179],"138":[2,179],"139":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179],"164":[2,179],"165":[2,179],"166":[2,179],"167":[2,179],"168":[2,179]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"51":[2,133],"59":[2,133],"62":[2,133],"80":[2,133],"85":[2,133],"95":[2,133],"100":[2,133],"104":[1,313],"108":[2,133],"110":[2,133],"111":[2,133],"112":[2,133],"116":[2,133],"122":[2,133],"123":[2,133],"124":[2,133],"131":[2,133],"132":[2,133],"133":[2,133],"135":[2,133],"136":[2,133],"138":[2,133],"139":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133],"162":[2,133],"163":[2,133],"164":[2,133],"165":[2,133],"166":[2,133],"167":[2,133],"168":[2,133]},{"4":[1,162],"6":314,"29":[1,6]},{"31":315,"32":[1,89]},{"126":316,"128":273,"129":[1,274]},{"30":[1,317],"127":[1,318],"128":319,"129":[1,274]},{"30":[2,172],"127":[2,172],"129":[2,172]},{"8":321,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"101":320,"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"51":[2,112],"59":[2,112],"62":[2,112],"64":140,"73":[1,142],"74":[1,143],"75":[1,144],"76":[1,145],"77":146,"78":147,"79":[1,148],"80":[2,112],"81":[1,149],"82":[1,150],"85":[2,112],"92":139,"93":[1,141],"95":[2,112],"100":[2,112],"108":[2,112],"110":[2,112],"111":[2,112],"112":[2,112],"116":[2,112],"122":[2,112],"123":[2,112],"124":[2,112],"131":[2,112],"132":[2,112],"133":[2,112],"135":[2,112],"136":[2,112],"138":[2,112],"139":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112],"164":[2,112],"165":[2,112],"166":[2,112],"167":[2,112],"168":[2,112]},{"14":322,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":156,"63":157,"65":183,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"4":[2,104],"28":211,"30":[2,104],"31":209,"32":[1,89],"33":210,"34":[1,87],"35":[1,88],"47":281,"50":[1,56],"66":282,"83":[1,280],"88":323,"89":279,"98":[1,283]},{"4":[1,325],"30":[1,324]},{"4":[2,105],"30":[2,105],"85":[2,105]},{"4":[2,104],"28":211,"31":209,"32":[1,89],"33":210,"34":[1,87],"35":[1,88],"47":281,"50":[1,56],"66":282,"83":[1,280],"85":[2,104],"88":326,"89":279,"98":[1,283]},{"4":[2,102],"30":[2,102],"85":[2,102]},{"48":[1,327]},{"31":189,"32":[1,89]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"51":[2,138],"59":[2,138],"62":[2,138],"73":[2,138],"74":[2,138],"75":[2,138],"76":[2,138],"79":[2,138],"80":[2,138],"81":[2,138],"82":[2,138],"85":[2,138],"93":[2,138],"95":[2,138],"100":[2,138],"108":[2,138],"110":[2,138],"111":[2,138],"112":[2,138],"116":[2,138],"122":[2,138],"123":[2,138],"124":[2,138],"131":[2,138],"132":[2,138],"133":[2,138],"135":[2,138],"136":[2,138],"138":[2,138],"139":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138],"162":[2,138],"163":[2,138],"164":[2,138],"165":[2,138],"166":[2,138],"167":[2,138],"168":[2,138]},{"62":[1,328]},{"4":[1,330],"29":[1,331],"100":[1,329]},{"4":[2,62],"8":332,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,62],"30":[2,62],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"95":[2,62],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,62],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"51":[2,176],"59":[2,176],"62":[2,176],"80":[2,176],"85":[2,176],"95":[2,176],"100":[2,176],"108":[2,176],"110":[2,176],"111":[2,176],"112":[2,176],"116":[2,176],"122":[2,176],"123":[2,176],"124":[2,176],"127":[2,176],"131":[2,176],"132":[2,176],"133":[2,176],"135":[2,176],"136":[2,176],"138":[2,176],"139":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176],"162":[2,176],"163":[2,176],"164":[2,176],"165":[2,176],"166":[2,176],"167":[2,176],"168":[2,176]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"51":[2,177],"59":[2,177],"62":[2,177],"80":[2,177],"85":[2,177],"95":[2,177],"100":[2,177],"108":[2,177],"110":[2,177],"111":[2,177],"112":[2,177],"116":[2,177],"122":[2,177],"123":[2,177],"124":[2,177],"127":[2,177],"131":[2,177],"132":[2,177],"133":[2,177],"135":[2,177],"136":[2,177],"138":[2,177],"139":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177],"162":[2,177],"163":[2,177],"164":[2,177],"165":[2,177],"166":[2,177],"167":[2,177],"168":[2,177]},{"8":333,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":334,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"122":[2,155],"123":[2,155]},{"4":[2,126],"8":253,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,126],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,126],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"94":188,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,126],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"31":201,"32":[1,89],"67":202,"68":203,"83":[1,86],"99":[1,293],"121":335},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"51":[1,134],"59":[2,161],"62":[1,133],"80":[2,161],"85":[2,161],"95":[2,161],"100":[2,161],"108":[2,161],"109":131,"110":[2,161],"111":[1,336],"112":[2,161],"115":132,"116":[2,161],"117":83,"122":[1,126],"123":[1,127],"124":[1,337],"131":[2,161],"132":[2,161],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,162],"4":[2,162],"29":[2,162],"30":[2,162],"51":[1,134],"59":[2,162],"62":[1,133],"80":[2,162],"85":[2,162],"95":[2,162],"100":[2,162],"108":[2,162],"109":131,"110":[2,162],"111":[1,338],"112":[2,162],"115":132,"116":[2,162],"117":83,"122":[1,126],"123":[1,127],"124":[2,162],"131":[2,162],"132":[2,162],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[1,340],"29":[1,341],"85":[1,339]},{"4":[2,62],"28":211,"29":[2,62],"30":[2,62],"31":209,"32":[1,89],"33":210,"34":[1,87],"35":[1,88],"47":342,"50":[1,56],"85":[2,62]},{"8":343,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,344],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":345,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,346],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,227],"4":[2,227],"29":[2,227],"30":[2,227],"51":[1,134],"59":[2,227],"62":[2,227],"80":[2,227],"85":[2,227],"95":[2,227],"100":[2,227],"108":[2,227],"109":131,"110":[2,227],"111":[2,227],"112":[2,227],"115":132,"116":[2,227],"117":83,"122":[2,227],"123":[2,227],"124":[2,227],"131":[2,227],"132":[2,227],"135":[2,227],"136":[2,227],"142":[2,227],"143":[2,227],"144":[2,227],"145":[2,227],"146":[2,227],"147":[2,227],"148":[2,227],"149":[2,227],"150":[2,227],"151":[2,227],"152":[2,227],"153":[2,227],"154":[2,227],"155":[2,227],"156":[2,227],"157":[2,227],"158":[2,227],"159":[2,227],"160":[2,227],"161":[2,227],"162":[2,227],"163":[2,227],"164":[2,227],"165":[2,227],"166":[2,227],"167":[2,227],"168":[2,227]},{"1":[2,228],"4":[2,228],"29":[2,228],"30":[2,228],"51":[1,134],"59":[2,228],"62":[2,228],"80":[2,228],"85":[2,228],"95":[2,228],"100":[2,228],"108":[2,228],"109":131,"110":[2,228],"111":[2,228],"112":[2,228],"115":132,"116":[2,228],"117":83,"122":[2,228],"123":[2,228],"124":[2,228],"131":[2,228],"132":[2,228],"135":[2,228],"136":[2,228],"142":[2,228],"143":[2,228],"144":[2,228],"145":[2,228],"146":[2,228],"147":[2,228],"148":[2,228],"149":[2,228],"150":[2,228],"151":[2,228],"152":[2,228],"153":[2,228],"154":[2,228],"155":[2,228],"156":[2,228],"157":[2,228],"158":[2,228],"159":[2,228],"160":[2,228],"161":[2,228],"162":[2,228],"163":[2,228],"164":[2,228],"165":[2,228],"166":[2,228],"167":[2,228],"168":[2,228]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"51":[2,68],"59":[2,68],"62":[2,68],"80":[2,68],"85":[2,68],"95":[2,68],"100":[2,68],"108":[2,68],"110":[2,68],"111":[2,68],"112":[2,68],"116":[2,68],"122":[2,68],"123":[2,68],"124":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"135":[2,68],"136":[2,68],"138":[2,68],"139":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68],"165":[2,68],"166":[2,68],"167":[2,68],"168":[2,68]},{"4":[1,330],"29":[1,331],"95":[1,347]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"51":[2,88],"59":[2,88],"62":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"76":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"82":[2,88],"85":[2,88],"87":[2,88],"93":[2,88],"95":[2,88],"100":[2,88],"108":[2,88],"110":[2,88],"111":[2,88],"112":[2,88],"116":[2,88],"122":[2,88],"123":[2,88],"124":[2,88],"131":[2,88],"132":[2,88],"133":[2,88],"135":[2,88],"136":[2,88],"138":[2,88],"139":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88],"164":[2,88],"165":[2,88],"166":[2,88],"167":[2,88],"168":[2,88]},{"62":[1,348]},{"51":[1,134],"62":[1,133],"80":[1,305],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"30":[1,349],"51":[1,134],"62":[1,133],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[1,162],"6":350,"29":[1,6]},{"54":[2,65],"59":[2,65],"62":[1,265]},{"62":[1,351]},{"4":[1,162],"6":352,"29":[1,6],"51":[1,134],"62":[1,133],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[1,162],"6":353,"29":[1,6]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"51":[2,134],"59":[2,134],"62":[2,134],"80":[2,134],"85":[2,134],"95":[2,134],"100":[2,134],"108":[2,134],"110":[2,134],"111":[2,134],"112":[2,134],"116":[2,134],"122":[2,134],"123":[2,134],"124":[2,134],"131":[2,134],"132":[2,134],"133":[2,134],"135":[2,134],"136":[2,134],"138":[2,134],"139":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134],"162":[2,134],"163":[2,134],"164":[2,134],"165":[2,134],"166":[2,134],"167":[2,134],"168":[2,134]},{"4":[1,162],"6":354,"29":[1,6]},{"30":[1,355],"127":[1,356],"128":319,"129":[1,274]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"51":[2,170],"59":[2,170],"62":[2,170],"80":[2,170],"85":[2,170],"95":[2,170],"100":[2,170],"108":[2,170],"110":[2,170],"111":[2,170],"112":[2,170],"116":[2,170],"122":[2,170],"123":[2,170],"124":[2,170],"131":[2,170],"132":[2,170],"133":[2,170],"135":[2,170],"136":[2,170],"138":[2,170],"139":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170],"164":[2,170],"165":[2,170],"166":[2,170],"167":[2,170],"168":[2,170]},{"4":[1,162],"6":357,"29":[1,6]},{"30":[2,173],"127":[2,173],"129":[2,173]},{"4":[1,162],"6":358,"29":[1,6],"59":[1,359]},{"4":[2,131],"29":[2,131],"51":[1,134],"59":[2,131],"62":[1,133],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,98],"4":[2,98],"29":[1,360],"30":[2,98],"51":[2,98],"59":[2,98],"62":[2,98],"64":140,"73":[1,142],"74":[1,143],"75":[1,144],"76":[1,145],"77":146,"78":147,"79":[1,148],"80":[2,98],"81":[1,149],"82":[1,150],"85":[2,98],"92":139,"93":[1,141],"95":[2,98],"100":[2,98],"108":[2,98],"110":[2,98],"111":[2,98],"112":[2,98],"116":[2,98],"122":[2,98],"123":[2,98],"124":[2,98],"131":[2,98],"132":[2,98],"133":[2,98],"135":[2,98],"136":[2,98],"138":[2,98],"139":[2,98],"142":[2,98],"143":[2,98],"144":[2,98],"145":[2,98],"146":[2,98],"147":[2,98],"148":[2,98],"149":[2,98],"150":[2,98],"151":[2,98],"152":[2,98],"153":[2,98],"154":[2,98],"155":[2,98],"156":[2,98],"157":[2,98],"158":[2,98],"159":[2,98],"160":[2,98],"161":[2,98],"162":[2,98],"163":[2,98],"164":[2,98],"165":[2,98],"166":[2,98],"167":[2,98],"168":[2,98]},{"4":[1,325],"30":[1,361]},{"1":[2,101],"4":[2,101],"29":[2,101],"30":[2,101],"51":[2,101],"59":[2,101],"62":[2,101],"80":[2,101],"85":[2,101],"95":[2,101],"100":[2,101],"108":[2,101],"110":[2,101],"111":[2,101],"112":[2,101],"116":[2,101],"122":[2,101],"123":[2,101],"124":[2,101],"131":[2,101],"132":[2,101],"133":[2,101],"135":[2,101],"136":[2,101],"138":[2,101],"139":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"147":[2,101],"148":[2,101],"149":[2,101],"150":[2,101],"151":[2,101],"152":[2,101],"153":[2,101],"154":[2,101],"155":[2,101],"156":[2,101],"157":[2,101],"158":[2,101],"159":[2,101],"160":[2,101],"161":[2,101],"162":[2,101],"163":[2,101],"164":[2,101],"165":[2,101],"166":[2,101],"167":[2,101],"168":[2,101]},{"28":211,"31":209,"32":[1,89],"33":210,"34":[1,87],"35":[1,88],"47":281,"50":[1,56],"66":282,"89":362,"98":[1,283]},{"4":[1,325],"85":[1,363]},{"8":364,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":365,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[1,366],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,125],"4":[2,125],"29":[2,125],"30":[2,125],"46":[2,125],"51":[2,125],"59":[2,125],"62":[2,125],"73":[2,125],"74":[2,125],"75":[2,125],"76":[2,125],"79":[2,125],"80":[2,125],"81":[2,125],"82":[2,125],"85":[2,125],"93":[2,125],"95":[2,125],"100":[2,125],"108":[2,125],"110":[2,125],"111":[2,125],"112":[2,125],"116":[2,125],"122":[2,125],"123":[2,125],"124":[2,125],"131":[2,125],"132":[2,125],"133":[2,125],"135":[2,125],"136":[2,125],"138":[2,125],"139":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125],"149":[2,125],"150":[2,125],"151":[2,125],"152":[2,125],"153":[2,125],"154":[2,125],"155":[2,125],"156":[2,125],"157":[2,125],"158":[2,125],"159":[2,125],"160":[2,125],"161":[2,125],"162":[2,125],"163":[2,125],"164":[2,125],"165":[2,125],"166":[2,125],"167":[2,125],"168":[2,125]},{"8":367,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"4":[2,126],"8":253,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,126],"30":[2,126],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,126],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"94":368,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"4":[2,128],"29":[2,128],"30":[2,128],"51":[1,134],"59":[2,128],"62":[1,133],"95":[2,128],"100":[2,128],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"51":[1,134],"59":[2,140],"62":[1,133],"80":[2,140],"85":[2,140],"95":[2,140],"100":[2,140],"108":[2,140],"109":131,"110":[1,79],"111":[2,140],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"124":[2,140],"131":[2,140],"132":[2,140],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"51":[1,134],"59":[2,142],"62":[1,133],"80":[2,142],"85":[2,142],"95":[2,142],"100":[2,142],"108":[2,142],"109":131,"110":[1,79],"111":[2,142],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"124":[2,142],"131":[2,142],"132":[2,142],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"122":[2,160],"123":[2,160]},{"8":369,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":370,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":371,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,91],"4":[2,91],"29":[2,91],"30":[2,91],"46":[2,91],"51":[2,91],"59":[2,91],"62":[2,91],"73":[2,91],"74":[2,91],"75":[2,91],"76":[2,91],"79":[2,91],"80":[2,91],"81":[2,91],"82":[2,91],"85":[2,91],"93":[2,91],"95":[2,91],"100":[2,91],"108":[2,91],"110":[2,91],"111":[2,91],"112":[2,91],"116":[2,91],"122":[2,91],"123":[2,91],"124":[2,91],"131":[2,91],"132":[2,91],"133":[2,91],"135":[2,91],"136":[2,91],"138":[2,91],"139":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91],"149":[2,91],"150":[2,91],"151":[2,91],"152":[2,91],"153":[2,91],"154":[2,91],"155":[2,91],"156":[2,91],"157":[2,91],"158":[2,91],"159":[2,91],"160":[2,91],"161":[2,91],"162":[2,91],"163":[2,91],"164":[2,91],"165":[2,91],"166":[2,91],"167":[2,91],"168":[2,91]},{"28":211,"31":209,"32":[1,89],"33":210,"34":[1,87],"35":[1,88],"47":372,"50":[1,56]},{"4":[2,92],"28":211,"29":[2,92],"30":[2,92],"31":209,"32":[1,89],"33":210,"34":[1,87],"35":[1,88],"47":208,"50":[1,56],"59":[2,92],"84":373},{"4":[2,94],"29":[2,94],"30":[2,94],"59":[2,94],"85":[2,94]},{"4":[2,48],"29":[2,48],"30":[2,48],"51":[1,134],"59":[2,48],"62":[1,133],"85":[2,48],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"8":374,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"4":[2,49],"29":[2,49],"30":[2,49],"51":[1,134],"59":[2,49],"62":[1,133],"85":[2,49],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"8":375,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"51":[2,115],"59":[2,115],"62":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"76":[2,115],"79":[2,115],"80":[2,115],"81":[2,115],"82":[2,115],"85":[2,115],"93":[2,115],"95":[2,115],"100":[2,115],"108":[2,115],"110":[2,115],"111":[2,115],"112":[2,115],"116":[2,115],"122":[2,115],"123":[2,115],"124":[2,115],"131":[2,115],"132":[2,115],"133":[2,115],"135":[2,115],"136":[2,115],"138":[2,115],"139":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115],"164":[2,115],"165":[2,115],"166":[2,115],"167":[2,115],"168":[2,115]},{"8":376,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[1,377],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"1":[2,45],"4":[2,45],"29":[2,45],"30":[2,45],"51":[2,45],"59":[2,45],"62":[2,45],"80":[2,45],"85":[2,45],"95":[2,45],"100":[2,45],"108":[2,45],"110":[2,45],"111":[2,45],"112":[2,45],"116":[2,45],"122":[2,45],"123":[2,45],"124":[2,45],"131":[2,45],"132":[2,45],"133":[2,45],"135":[2,45],"136":[2,45],"138":[2,45],"139":[2,45],"142":[2,45],"143":[2,45],"144":[2,45],"145":[2,45],"146":[2,45],"147":[2,45],"148":[2,45],"149":[2,45],"150":[2,45],"151":[2,45],"152":[2,45],"153":[2,45],"154":[2,45],"155":[2,45],"156":[2,45],"157":[2,45],"158":[2,45],"159":[2,45],"160":[2,45],"161":[2,45],"162":[2,45],"163":[2,45],"164":[2,45],"165":[2,45],"166":[2,45],"167":[2,45],"168":[2,45]},{"1":[2,57],"4":[2,57],"29":[2,57],"30":[2,57],"51":[2,57],"59":[2,57],"62":[2,57],"80":[2,57],"85":[2,57],"95":[2,57],"100":[2,57],"108":[2,57],"110":[2,57],"111":[2,57],"112":[2,57],"116":[2,57],"122":[2,57],"123":[2,57],"124":[2,57],"131":[2,57],"132":[2,57],"133":[2,57],"135":[2,57],"136":[2,57],"138":[2,57],"139":[2,57],"142":[2,57],"143":[2,57],"144":[2,57],"145":[2,57],"146":[2,57],"147":[2,57],"148":[2,57],"149":[2,57],"150":[2,57],"151":[2,57],"152":[2,57],"153":[2,57],"154":[2,57],"155":[2,57],"156":[2,57],"157":[2,57],"158":[2,57],"159":[2,57],"160":[2,57],"161":[2,57],"162":[2,57],"163":[2,57],"164":[2,57],"165":[2,57],"166":[2,57],"167":[2,57],"168":[2,57]},{"54":[2,67],"59":[2,67],"62":[2,67]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"51":[2,178],"59":[2,178],"62":[2,178],"80":[2,178],"85":[2,178],"95":[2,178],"100":[2,178],"108":[2,178],"110":[2,178],"111":[2,178],"112":[2,178],"116":[2,178],"122":[2,178],"123":[2,178],"124":[2,178],"127":[2,178],"131":[2,178],"132":[2,178],"133":[2,178],"135":[2,178],"136":[2,178],"138":[2,178],"139":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178],"162":[2,178],"163":[2,178],"164":[2,178],"165":[2,178],"166":[2,178],"167":[2,178],"168":[2,178]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"51":[2,135],"59":[2,135],"62":[2,135],"80":[2,135],"85":[2,135],"95":[2,135],"100":[2,135],"108":[2,135],"110":[2,135],"111":[2,135],"112":[2,135],"116":[2,135],"122":[2,135],"123":[2,135],"124":[2,135],"131":[2,135],"132":[2,135],"133":[2,135],"135":[2,135],"136":[2,135],"138":[2,135],"139":[2,135],"142":[2,135],"143":[2,135],"144":[2,135],"145":[2,135],"146":[2,135],"147":[2,135],"148":[2,135],"149":[2,135],"150":[2,135],"151":[2,135],"152":[2,135],"153":[2,135],"154":[2,135],"155":[2,135],"156":[2,135],"157":[2,135],"158":[2,135],"159":[2,135],"160":[2,135],"161":[2,135],"162":[2,135],"163":[2,135],"164":[2,135],"165":[2,135],"166":[2,135],"167":[2,135],"168":[2,135]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"51":[2,136],"59":[2,136],"62":[2,136],"80":[2,136],"85":[2,136],"95":[2,136],"100":[2,136],"104":[2,136],"108":[2,136],"110":[2,136],"111":[2,136],"112":[2,136],"116":[2,136],"122":[2,136],"123":[2,136],"124":[2,136],"131":[2,136],"132":[2,136],"133":[2,136],"135":[2,136],"136":[2,136],"138":[2,136],"139":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"146":[2,136],"147":[2,136],"148":[2,136],"149":[2,136],"150":[2,136],"151":[2,136],"152":[2,136],"153":[2,136],"154":[2,136],"155":[2,136],"156":[2,136],"157":[2,136],"158":[2,136],"159":[2,136],"160":[2,136],"161":[2,136],"162":[2,136],"163":[2,136],"164":[2,136],"165":[2,136],"166":[2,136],"167":[2,136],"168":[2,136]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"51":[2,168],"59":[2,168],"62":[2,168],"80":[2,168],"85":[2,168],"95":[2,168],"100":[2,168],"108":[2,168],"110":[2,168],"111":[2,168],"112":[2,168],"116":[2,168],"122":[2,168],"123":[2,168],"124":[2,168],"131":[2,168],"132":[2,168],"133":[2,168],"135":[2,168],"136":[2,168],"138":[2,168],"139":[2,168],"142":[2,168],"143":[2,168],"144":[2,168],"145":[2,168],"146":[2,168],"147":[2,168],"148":[2,168],"149":[2,168],"150":[2,168],"151":[2,168],"152":[2,168],"153":[2,168],"154":[2,168],"155":[2,168],"156":[2,168],"157":[2,168],"158":[2,168],"159":[2,168],"160":[2,168],"161":[2,168],"162":[2,168],"163":[2,168],"164":[2,168],"165":[2,168],"166":[2,168],"167":[2,168],"168":[2,168]},{"4":[1,162],"6":378,"29":[1,6]},{"30":[1,379]},{"4":[1,380],"30":[2,174],"127":[2,174],"129":[2,174]},{"8":381,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"4":[2,104],"28":211,"30":[2,104],"31":209,"32":[1,89],"33":210,"34":[1,87],"35":[1,88],"47":281,"50":[1,56],"66":282,"83":[1,280],"88":382,"89":279,"98":[1,283]},{"1":[2,99],"4":[2,99],"29":[2,99],"30":[2,99],"51":[2,99],"59":[2,99],"62":[2,99],"80":[2,99],"85":[2,99],"95":[2,99],"100":[2,99],"108":[2,99],"110":[2,99],"111":[2,99],"112":[2,99],"116":[2,99],"122":[2,99],"123":[2,99],"124":[2,99],"131":[2,99],"132":[2,99],"133":[2,99],"135":[2,99],"136":[2,99],"138":[2,99],"139":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99],"162":[2,99],"163":[2,99],"164":[2,99],"165":[2,99],"166":[2,99],"167":[2,99],"168":[2,99]},{"4":[2,106],"30":[2,106],"85":[2,106]},{"4":[2,107],"30":[2,107],"85":[2,107]},{"4":[2,103],"30":[2,103],"51":[1,134],"62":[1,133],"85":[2,103],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"51":[1,134],"62":[1,133],"100":[1,383],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[2,68],"8":384,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,68],"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"51":[2,68],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,68],"62":[2,68],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,68],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[2,68],"112":[2,68],"113":51,"114":[1,81],"115":52,"116":[2,68],"117":83,"122":[2,68],"123":[2,68],"125":[1,53],"130":48,"131":[2,68],"132":[2,68],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68],"165":[2,68],"166":[2,68],"167":[2,68],"168":[2,68]},{"4":[2,129],"29":[2,129],"30":[2,129],"51":[1,134],"59":[2,129],"62":[1,133],"95":[2,129],"100":[2,129],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[2,61],"29":[2,61],"30":[2,61],"58":385,"59":[1,287]},{"1":[2,163],"4":[2,163],"29":[2,163],"30":[2,163],"51":[1,134],"59":[2,163],"62":[1,133],"80":[2,163],"85":[2,163],"95":[2,163],"100":[2,163],"108":[2,163],"109":131,"110":[2,163],"111":[2,163],"112":[2,163],"115":132,"116":[2,163],"117":83,"122":[1,126],"123":[1,127],"124":[1,386],"131":[2,163],"132":[2,163],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,165],"4":[2,165],"29":[2,165],"30":[2,165],"51":[1,134],"59":[2,165],"62":[1,133],"80":[2,165],"85":[2,165],"95":[2,165],"100":[2,165],"108":[2,165],"109":131,"110":[2,165],"111":[1,387],"112":[2,165],"115":132,"116":[2,165],"117":83,"122":[1,126],"123":[1,127],"124":[2,165],"131":[2,165],"132":[2,165],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,164],"4":[2,164],"29":[2,164],"30":[2,164],"51":[1,134],"59":[2,164],"62":[1,133],"80":[2,164],"85":[2,164],"95":[2,164],"100":[2,164],"108":[2,164],"109":131,"110":[2,164],"111":[2,164],"112":[2,164],"115":132,"116":[2,164],"117":83,"122":[1,126],"123":[1,127],"124":[2,164],"131":[2,164],"132":[2,164],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[2,95],"29":[2,95],"30":[2,95],"59":[2,95],"85":[2,95]},{"4":[2,61],"29":[2,61],"30":[2,61],"58":388,"59":[1,298]},{"30":[1,389],"51":[1,134],"62":[1,133],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"30":[1,390],"51":[1,134],"62":[1,133],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"51":[1,134],"62":[1,133],"80":[1,391],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"8":392,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"51":[2,68],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[2,68],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"80":[2,68],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[2,68],"112":[2,68],"113":51,"114":[1,81],"115":52,"116":[2,68],"117":83,"122":[2,68],"123":[2,68],"125":[1,53],"130":48,"131":[2,68],"132":[2,68],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68],"165":[2,68],"166":[2,68],"167":[2,68],"168":[2,68]},{"30":[1,393]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"51":[2,171],"59":[2,171],"62":[2,171],"80":[2,171],"85":[2,171],"95":[2,171],"100":[2,171],"108":[2,171],"110":[2,171],"111":[2,171],"112":[2,171],"116":[2,171],"122":[2,171],"123":[2,171],"124":[2,171],"131":[2,171],"132":[2,171],"133":[2,171],"135":[2,171],"136":[2,171],"138":[2,171],"139":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171],"162":[2,171],"163":[2,171],"164":[2,171],"165":[2,171],"166":[2,171],"167":[2,171],"168":[2,171]},{"30":[2,175],"127":[2,175],"129":[2,175]},{"4":[2,132],"29":[2,132],"51":[1,134],"59":[2,132],"62":[1,133],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[1,325],"30":[1,394]},{"1":[2,121],"4":[2,121],"29":[2,121],"30":[2,121],"51":[2,121],"59":[2,121],"62":[2,121],"73":[2,121],"74":[2,121],"75":[2,121],"76":[2,121],"79":[2,121],"80":[2,121],"81":[2,121],"82":[2,121],"85":[2,121],"93":[2,121],"95":[2,121],"100":[2,121],"108":[2,121],"110":[2,121],"111":[2,121],"112":[2,121],"116":[2,121],"122":[2,121],"123":[2,121],"124":[2,121],"131":[2,121],"132":[2,121],"133":[2,121],"135":[2,121],"136":[2,121],"138":[2,121],"139":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121],"149":[2,121],"150":[2,121],"151":[2,121],"152":[2,121],"153":[2,121],"154":[2,121],"155":[2,121],"156":[2,121],"157":[2,121],"158":[2,121],"159":[2,121],"160":[2,121],"161":[2,121],"162":[2,121],"163":[2,121],"164":[2,121],"165":[2,121],"166":[2,121],"167":[2,121],"168":[2,121]},{"51":[1,134],"62":[1,133],"100":[1,395],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[1,330],"29":[1,331],"30":[1,396]},{"8":397,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"8":398,"9":164,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":84,"32":[1,89],"33":61,"34":[1,87],"35":[1,88],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":85,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,86],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"116":[1,82],"117":83,"125":[1,53],"130":48,"131":[1,77],"132":[1,78],"133":[1,39],"134":[1,40],"135":[1,41],"136":[1,42],"137":[1,43],"138":[1,44],"139":[1,45],"140":[1,46],"141":[1,47]},{"4":[1,340],"29":[1,341],"30":[1,399]},{"4":[2,50],"29":[2,50],"30":[2,50],"59":[2,50],"85":[2,50]},{"4":[2,51],"29":[2,51],"30":[2,51],"59":[2,51],"85":[2,51]},{"1":[2,123],"4":[2,123],"29":[2,123],"30":[2,123],"46":[2,123],"51":[2,123],"59":[2,123],"62":[2,123],"73":[2,123],"74":[2,123],"75":[2,123],"76":[2,123],"79":[2,123],"80":[2,123],"81":[2,123],"82":[2,123],"85":[2,123],"87":[2,123],"93":[2,123],"95":[2,123],"100":[2,123],"108":[2,123],"110":[2,123],"111":[2,123],"112":[2,123],"116":[2,123],"122":[2,123],"123":[2,123],"124":[2,123],"131":[2,123],"132":[2,123],"133":[2,123],"135":[2,123],"136":[2,123],"138":[2,123],"139":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123],"149":[2,123],"150":[2,123],"151":[2,123],"152":[2,123],"153":[2,123],"154":[2,123],"155":[2,123],"156":[2,123],"157":[2,123],"158":[2,123],"159":[2,123],"160":[2,123],"161":[2,123],"162":[2,123],"163":[2,123],"164":[2,123],"165":[2,123],"166":[2,123],"167":[2,123],"168":[2,123]},{"51":[1,134],"62":[1,133],"80":[1,400],"109":131,"110":[1,79],"112":[1,80],"115":132,"116":[1,82],"117":83,"122":[1,126],"123":[1,127],"131":[1,129],"132":[1,130],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"51":[2,169],"59":[2,169],"62":[2,169],"80":[2,169],"85":[2,169],"95":[2,169],"100":[2,169],"108":[2,169],"110":[2,169],"111":[2,169],"112":[2,169],"116":[2,169],"122":[2,169],"123":[2,169],"124":[2,169],"131":[2,169],"132":[2,169],"133":[2,169],"135":[2,169],"136":[2,169],"138":[2,169],"139":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169],"164":[2,169],"165":[2,169],"166":[2,169],"167":[2,169],"168":[2,169]},{"1":[2,100],"4":[2,100],"29":[2,100],"30":[2,100],"51":[2,100],"59":[2,100],"62":[2,100],"80":[2,100],"85":[2,100],"95":[2,100],"100":[2,100],"108":[2,100],"110":[2,100],"111":[2,100],"112":[2,100],"116":[2,100],"122":[2,100],"123":[2,100],"124":[2,100],"131":[2,100],"132":[2,100],"133":[2,100],"135":[2,100],"136":[2,100],"138":[2,100],"139":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"147":[2,100],"148":[2,100],"149":[2,100],"150":[2,100],"151":[2,100],"152":[2,100],"153":[2,100],"154":[2,100],"155":[2,100],"156":[2,100],"157":[2,100],"158":[2,100],"159":[2,100],"160":[2,100],"161":[2,100],"162":[2,100],"163":[2,100],"164":[2,100],"165":[2,100],"166":[2,100],"167":[2,100],"168":[2,100]},{"1":[2,122],"4":[2,122],"29":[2,122],"30":[2,122],"51":[2,122],"59":[2,122],"62":[2,122],"73":[2,122],"74":[2,122],"75":[2,122],"76":[2,122],"79":[2,122],"80":[2,122],"81":[2,122],"82":[2,122],"85":[2,122],"93":[2,122],"95":[2,122],"100":[2,122],"108":[2,122],"110":[2,122],"111":[2,122],"112":[2,122],"116":[2,122],"122":[2,122],"123":[2,122],"124":[2,122],"131":[2,122],"132":[2,122],"133":[2,122],"135":[2,122],"136":[2,122],"138":[2,122],"139":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122],"148":[2,122],"149":[2,122],"150":[2,122],"151":[2,122],"152":[2,122],"153":[2,122],"154":[2,122],"155":[2,122],"156":[2,122],"157":[2,122],"158":[2,122],"159":[2,122],"160":[2,122],"161":[2,122],"162":[2,122],"163":[2,122],"164":[2,122],"165":[2,122],"166":[2,122],"167":[2,122],"168":[2,122]},{"4":[2,130],"29":[2,130],"30":[2,130],"59":[2,130],"95":[2,130],"100":[2,130]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"51":[1,134],"59":[2,166],"62":[1,133],"80":[2,166],"85":[2,166],"95":[2,166],"100":[2,166],"108":[2,166],"109":131,"110":[2,166],"111":[2,166],"112":[2,166],"115":132,"116":[2,166],"117":83,"122":[1,126],"123":[1,127],"124":[2,166],"131":[2,166],"132":[2,166],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"51":[1,134],"59":[2,167],"62":[1,133],"80":[2,167],"85":[2,167],"95":[2,167],"100":[2,167],"108":[2,167],"109":131,"110":[2,167],"111":[2,167],"112":[2,167],"115":132,"116":[2,167],"117":83,"122":[1,126],"123":[1,127],"124":[2,167],"131":[2,167],"132":[2,167],"133":[1,128],"135":[1,101],"136":[1,100],"138":[1,95],"139":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124],"168":[1,125]},{"4":[2,96],"29":[2,96],"30":[2,96],"59":[2,96],"85":[2,96]},{"1":[2,124],"4":[2,124],"29":[2,124],"30":[2,124],"46":[2,124],"51":[2,124],"59":[2,124],"62":[2,124],"73":[2,124],"74":[2,124],"75":[2,124],"76":[2,124],"79":[2,124],"80":[2,124],"81":[2,124],"82":[2,124],"85":[2,124],"87":[2,124],"93":[2,124],"95":[2,124],"100":[2,124],"108":[2,124],"110":[2,124],"111":[2,124],"112":[2,124],"116":[2,124],"122":[2,124],"123":[2,124],"124":[2,124],"131":[2,124],"132":[2,124],"133":[2,124],"135":[2,124],"136":[2,124],"138":[2,124],"139":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124],"150":[2,124],"151":[2,124],"152":[2,124],"153":[2,124],"154":[2,124],"155":[2,124],"156":[2,124],"157":[2,124],"158":[2,124],"159":[2,124],"160":[2,124],"161":[2,124],"162":[2,124],"163":[2,124],"164":[2,124],"165":[2,124],"166":[2,124],"167":[2,124],"168":[2,124]}], +defaultActions: {"92":[2,4]}, parseError: function parseError(str, hash) { throw new Error(str); }, diff --git a/src/grammar.coffee b/src/grammar.coffee index 8d139d46..ea366cb6 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -425,9 +425,14 @@ grammar = { # Comprehensions can either be normal, with a block of expressions to execute, # or postfix, with a single expression. For: [ - o "Statement ForStart ForSource", -> $3.raw = $2.raw; new ForNode $1, $3, $2[0], $2[1] - o "Expression ForStart ForSource", -> $3.raw = $2.raw; new ForNode $1, $3, $2[0], $2[1] - o "ForStart ForSource Block", -> $2.raw = $1.raw; new ForNode $3, $2, $1[0], $1[1] + o "Statement ForBody", -> new ForNode $1, $2, $2.vars[0], $2.vars[1] + o "Expression ForBody", -> new ForNode $1, $2, $2.vars[0], $2.vars[1] + o "ForBody Block", -> new ForNode $2, $1, $1.vars[0], $1.vars[1] + ] + + ForBody: [ + o "FOR Range", -> {source: new ValueNode($2), vars: []} + o "ForStart ForSource", -> $2.raw = $1.raw; $2.vars = $1; $2 ] ForStart: [ diff --git a/src/nodes.coffee b/src/nodes.coffee index d051d697..897e734d 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -1279,7 +1279,7 @@ exports.ForNode = class ForNode extends BaseNode source = if range then @source.base else @source codeInBody = @body.contains (n) -> n instanceof CodeNode scope = o.scope - name = @name and @name.compile o + name = (@name and @name.compile(o)) or scope.freeVariable() index = @index and @index.compile o scope.find name if name and not @pattern and not codeInBody scope.find index if index diff --git a/test/test_comprehensions.coffee b/test/test_comprehensions.coffee index 2cddca0b..b87cd717 100644 --- a/test/test_comprehensions.coffee +++ b/test/test_comprehensions.coffee @@ -126,3 +126,9 @@ all = value for all key, value of whiskers ok own.join(' ') is 'Whiskers' ok all.sort().join(' ') is 'Whiskers cream tabby' + + +# Optimized range comprehensions. +exxes = 'x' for [0...10] +ok exxes.join(' ') is 'x x x x x x x x x x' +