diff --git a/lib/grammar.js b/lib/grammar.js index e1a4c1eb..78194c24 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -187,6 +187,7 @@ return new SplatNode($1); }) ], + // Variables and properties that can be assigned to. SimpleAssignable: [o("Identifier", function() { return new ValueNode($1); }), o("Value Accessor", function() { @@ -285,6 +286,7 @@ return $2.new_instance(); }), o("Super") ], + // Binds a function call to a context and/or arguments. Curry: [o("Value <- Arguments", function() { return new CurryNode($1, $3); }) @@ -448,7 +450,7 @@ }) ], // The source of a comprehension is an array or object with an optional filter - // clause. If it's an array comprehension, you can also choose to step throug + // clause. If it's an array comprehension, you can also choose to step through // in fixed-size increments. ForSource: [o("IN Expression", function() { return { @@ -459,12 +461,34 @@ source: $2, object: true }; - }), o("ForSource WHEN Expression", function() { - $1.filter = $3; - return $1; - }), o("ForSource BY Expression", function() { - $1.step = $3; - return $1; + }), o("IN Expression WHEN Expression", function() { + return { + source: $2, + filter: $4 + }; + }), o("OF Expression WHEN Expression", function() { + return { + source: $2, + filter: $4, + object: true + }; + }), o("IN Expression BY Expression", function() { + return { + source: $2, + step: $4 + }; + }), o("IN Expression WHEN Expression BY Expression", function() { + return { + source: $2, + filter: $4, + step: $6 + }; + }), o("IN Expression BY Expression WHEN Expression", function() { + return { + source: $2, + step: $4, + filter: $6 + }; }) ], // The CoffeeScript switch/when/else block replaces the JavaScript diff --git a/lib/parser.js b/lib/parser.js index 64dd0151..7d1fdce2 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -4,7 +4,7 @@ var parser = {trace: function trace() { }, yy: {}, symbols_: {"Root":2,"TERMINATOR":3,"Expressions":4,"Block":5,"Expression":6,"Value":7,"Call":8,"Curry":9,"Code":10,"Operation":11,"Assign":12,"If":13,"Try":14,"Throw":15,"Return":16,"While":17,"For":18,"Switch":19,"Extends":20,"Class":21,"Splat":22,"Existence":23,"Comment":24,"Extension":25,"INDENT":26,"OUTDENT":27,"Identifier":28,"IDENTIFIER":29,"AlphaNumeric":30,"NUMBER":31,"STRING":32,"Literal":33,"JS":34,"REGEX":35,"BREAK":36,"CONTINUE":37,"TRUE":38,"FALSE":39,"YES":40,"NO":41,"ON":42,"OFF":43,"Assignable":44,"ASSIGN":45,"AssignObj":46,"RETURN":47,"COMMENT":48,"?":49,"PARAM_START":50,"ParamList":51,"PARAM_END":52,"FuncGlyph":53,"->":54,"=>":55,"Param":56,",":57,"PARAM":58,".":59,"SimpleAssignable":60,"Accessor":61,"Invocation":62,"ThisProperty":63,"Array":64,"Object":65,"Parenthetical":66,"Range":67,"This":68,"NULL":69,"PROPERTY_ACCESS":70,"PROTOTYPE_ACCESS":71,"::":72,"SOAK_ACCESS":73,"Index":74,"Slice":75,"INDEX_START":76,"INDEX_END":77,"SOAKED_INDEX_START":78,"SOAKED_INDEX_END":79,"{":80,"AssignList":81,"}":82,"IndentedAssignList":83,"CLASS":84,"EXTENDS":85,"NEW":86,"Super":87,"<-":88,"Arguments":89,"CALL_START":90,"ArgList":91,"CALL_END":92,"SUPER":93,"THIS":94,"@":95,"[":96,"]":97,"SimpleArgs":98,"TRY":99,"Catch":100,"FINALLY":101,"CATCH":102,"THROW":103,"(":104,")":105,"EXTENSION":106,"WhileSource":107,"WHILE":108,"WHEN":109,"FOR":110,"ForVariables":111,"ForSource":112,"IN":113,"OF":114,"BY":115,"SWITCH":116,"Whens":117,"ELSE":118,"When":119,"LEADING_WHEN":120,"IfStart":121,"IF":122,"ElsIf":123,"IfBlock":124,"UNLESS":125,"!":126,"!!":127,"-":128,"+":129,"~":130,"--":131,"++":132,"DELETE":133,"TYPEOF":134,"*":135,"/":136,"%":137,"<<":138,">>":139,">>>":140,"&":141,"|":142,"^":143,"<=":144,"<":145,">":146,">=":147,"==":148,"!=":149,"&&":150,"||":151,"-=":152,"+=":153,"/=":154,"*=":155,"%=":156,"||=":157,"&&=":158,"?=":159,"INSTANCEOF":160,"$accept":0,"$end":1}, terminals_: {"3":"TERMINATOR","26":"INDENT","27":"OUTDENT","29":"IDENTIFIER","31":"NUMBER","32":"STRING","34":"JS","35":"REGEX","36":"BREAK","37":"CONTINUE","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"ASSIGN","47":"RETURN","48":"COMMENT","49":"?","50":"PARAM_START","52":"PARAM_END","54":"->","55":"=>","57":",","58":"PARAM","59":".","69":"NULL","70":"PROPERTY_ACCESS","71":"PROTOTYPE_ACCESS","72":"::","73":"SOAK_ACCESS","76":"INDEX_START","77":"INDEX_END","78":"SOAKED_INDEX_START","79":"SOAKED_INDEX_END","80":"{","82":"}","84":"CLASS","85":"EXTENDS","86":"NEW","88":"<-","90":"CALL_START","92":"CALL_END","93":"SUPER","94":"THIS","95":"@","96":"[","97":"]","99":"TRY","101":"FINALLY","102":"CATCH","103":"THROW","104":"(","105":")","106":"EXTENSION","108":"WHILE","109":"WHEN","110":"FOR","113":"IN","114":"OF","115":"BY","116":"SWITCH","118":"ELSE","120":"LEADING_WHEN","122":"IF","125":"UNLESS","126":"!","127":"!!","128":"-","129":"+","130":"~","131":"--","132":"++","133":"DELETE","134":"TYPEOF","135":"*","136":"/","137":"%","138":"<<","139":">>","140":">>>","141":"&","142":"|","143":"^","144":"<=","145":"<","146":">","147":">=","148":"==","149":"!=","150":"&&","151":"||","152":"-=","153":"+=","154":"/=","155":"*=","156":"%=","157":"||=","158":"&&=","159":"?=","160":"INSTANCEOF"}, -productions_: [0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[5,3],[5,2],[5,2],[28,1],[30,1],[30,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[12,3],[46,3],[46,3],[46,1],[16,2],[16,1],[24,1],[23,2],[10,5],[10,2],[53,1],[53,1],[51,0],[51,1],[51,3],[56,1],[56,4],[22,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,3],[65,3],[65,3],[65,4],[65,4],[21,2],[21,4],[21,3],[21,5],[81,0],[81,1],[81,3],[81,3],[81,4],[83,3],[83,4],[8,1],[8,2],[8,1],[9,3],[20,3],[62,2],[62,2],[89,3],[89,4],[87,4],[87,5],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,3],[64,4],[91,0],[91,1],[91,2],[91,3],[91,3],[91,4],[91,4],[91,2],[91,3],[98,1],[98,3],[14,3],[14,4],[14,5],[100,3],[15,2],[66,3],[25,1],[107,2],[107,4],[17,2],[17,2],[18,4],[18,4],[111,1],[111,3],[112,2],[112,2],[112,3],[112,3],[19,5],[19,7],[117,1],[117,2],[119,3],[119,4],[119,3],[121,3],[121,2],[124,1],[124,3],[123,4],[13,1],[13,3],[13,3],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3]], +productions_: [0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[5,3],[5,2],[5,2],[28,1],[30,1],[30,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[12,3],[46,3],[46,3],[46,1],[16,2],[16,1],[24,1],[23,2],[10,5],[10,2],[53,1],[53,1],[51,0],[51,1],[51,3],[56,1],[56,4],[22,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,3],[65,3],[65,3],[65,4],[65,4],[21,2],[21,4],[21,3],[21,5],[81,0],[81,1],[81,3],[81,3],[81,4],[83,3],[83,4],[8,1],[8,2],[8,1],[9,3],[20,3],[62,2],[62,2],[89,3],[89,4],[87,4],[87,5],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,3],[64,4],[91,0],[91,1],[91,2],[91,3],[91,3],[91,4],[91,4],[91,2],[91,3],[98,1],[98,3],[14,3],[14,4],[14,5],[100,3],[15,2],[66,3],[25,1],[107,2],[107,4],[17,2],[17,2],[18,4],[18,4],[111,1],[111,3],[112,2],[112,2],[112,4],[112,4],[112,4],[112,6],[112,6],[19,5],[19,7],[117,1],[117,2],[119,3],[119,4],[119,3],[121,3],[121,2],[124,1],[124,3],[123,4],[13,1],[13,3],[13,3],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -312,143 +312,161 @@ case 145:this.$ = { object: true }; break; -case 146:this.$ = (function () { - $$[$0-3+1-1].filter = $$[$0-3+3-1]; - return $$[$0-3+1-1]; - }()); +case 146:this.$ = { + source: $$[$0-4+2-1], + filter: $$[$0-4+4-1] + }; break; -case 147:this.$ = (function () { - $$[$0-3+1-1].step = $$[$0-3+3-1]; - return $$[$0-3+1-1]; - }()); +case 147:this.$ = { + source: $$[$0-4+2-1], + filter: $$[$0-4+4-1], + object: true + }; break; -case 148:this.$ = $$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]); +case 148:this.$ = { + source: $$[$0-4+2-1], + step: $$[$0-4+4-1] + }; break; -case 149:this.$ = $$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1], true); +case 149:this.$ = { + source: $$[$0-6+2-1], + filter: $$[$0-6+4-1], + step: $$[$0-6+6-1] + }; break; -case 150:this.$ = $$[$0-1+1-1]; +case 150:this.$ = { + source: $$[$0-6+2-1], + step: $$[$0-6+4-1], + filter: $$[$0-6+6-1] + }; break; -case 151:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 151:this.$ = $$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]); break; -case 152:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], null, { +case 152:this.$ = $$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1], true); +break; +case 153:this.$ = $$[$0-1+1-1]; +break; +case 154:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +break; +case 155:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], null, { statement: true }); break; -case 153:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], null, { +case 156:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], null, { statement: true }); break; -case 154:this.$ = (function () { +case 157:this.$ = (function () { $$[$0-3+3-1].comment = $$[$0-3+1-1]; return $$[$0-3+3-1]; }()); break; -case 155:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); +case 158:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 156:this.$ = $$[$0-2+1-1].add_else($$[$0-2+2-1]); -break; -case 157:this.$ = $$[$0-1+1-1]; -break; -case 158:this.$ = $$[$0-3+1-1].add_else($$[$0-3+3-1]); -break; -case 159:this.$ = (new IfNode($$[$0-4+3-1], $$[$0-4+4-1])).force_statement(); +case 159:this.$ = $$[$0-2+1-1].add_else($$[$0-2+2-1]); break; case 160:this.$ = $$[$0-1+1-1]; break; -case 161:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { +case 161:this.$ = $$[$0-3+1-1].add_else($$[$0-3+3-1]); +break; +case 162:this.$ = (new IfNode($$[$0-4+3-1], $$[$0-4+4-1])).force_statement(); +break; +case 163:this.$ = $$[$0-1+1-1]; +break; +case 164:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { statement: true }); break; -case 162:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { +case 165:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { statement: true, invert: true }); break; -case 163:this.$ = new OpNode('!', $$[$0-2+2-1]); +case 166:this.$ = new OpNode('!', $$[$0-2+2-1]); break; -case 164:this.$ = new OpNode('!!', $$[$0-2+2-1]); +case 167:this.$ = new OpNode('!!', $$[$0-2+2-1]); break; -case 165:this.$ = new OpNode('-', $$[$0-2+2-1]); +case 168:this.$ = new OpNode('-', $$[$0-2+2-1]); break; -case 166:this.$ = new OpNode('+', $$[$0-2+2-1]); +case 169:this.$ = new OpNode('+', $$[$0-2+2-1]); break; -case 167:this.$ = new OpNode('~', $$[$0-2+2-1]); +case 170:this.$ = new OpNode('~', $$[$0-2+2-1]); break; -case 168:this.$ = new OpNode('--', $$[$0-2+2-1]); +case 171:this.$ = new OpNode('--', $$[$0-2+2-1]); break; -case 169:this.$ = new OpNode('++', $$[$0-2+2-1]); +case 172:this.$ = new OpNode('++', $$[$0-2+2-1]); break; -case 170:this.$ = new OpNode('delete', $$[$0-2+2-1]); +case 173:this.$ = new OpNode('delete', $$[$0-2+2-1]); break; -case 171:this.$ = new OpNode('typeof', $$[$0-2+2-1]); +case 174:this.$ = new OpNode('typeof', $$[$0-2+2-1]); break; -case 172:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); +case 175:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); break; -case 173:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); +case 176:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); break; -case 174:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); +case 177:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 175:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); +case 178:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 176:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); +case 179:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 177:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 180:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 178:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 181:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 179:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 182:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 180:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 183:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 181:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 184:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 182:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 185:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 183:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); +case 186:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 184:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); +case 187:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 185:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 188:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 186:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 189:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 187:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 190:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 188:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 191:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 189:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); +case 192:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 190:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 193:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 191:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 194:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 192:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 193: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 194: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 195: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 196: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 197: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 198: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 199: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 200: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 201: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 202:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); +case 205:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 203:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +case 206:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); break; } }, -table: [{"1":[2,1],"2":1,"3":[1,2],"4":3,"5":4,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,6],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[3]},{"1":[2,2],"24":86,"48":[1,55]},{"1":[2,3],"3":[1,87]},{"3":[1,88]},{"1":[2,5],"3":[2,5],"27":[2,5],"49":[1,110],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"4":126,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[1,127],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,8],"3":[2,8],"26":[2,8],"27":[2,8],"49":[2,8],"57":[2,8],"59":[2,8],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,8],"78":[1,139],"79":[2,8],"82":[2,8],"88":[1,128],"89":129,"90":[1,131],"92":[2,8],"97":[2,8],"105":[2,8],"108":[2,8],"109":[2,8],"110":[2,8],"113":[2,8],"115":[2,8],"122":[2,8],"125":[2,8],"128":[2,8],"129":[2,8],"131":[2,8],"132":[2,8],"135":[2,8],"136":[2,8],"137":[2,8],"138":[2,8],"139":[2,8],"140":[2,8],"141":[2,8],"142":[2,8],"143":[2,8],"144":[2,8],"145":[2,8],"146":[2,8],"147":[2,8],"148":[2,8],"149":[2,8],"150":[2,8],"151":[2,8],"152":[2,8],"153":[2,8],"154":[2,8],"155":[2,8],"156":[2,8],"157":[2,8],"158":[2,8],"159":[2,8],"160":[2,8]},{"1":[2,9],"3":[2,9],"26":[2,9],"27":[2,9],"49":[2,9],"57":[2,9],"59":[2,9],"77":[2,9],"79":[2,9],"82":[2,9],"92":[2,9],"97":[2,9],"105":[2,9],"108":[2,9],"109":[2,9],"110":[2,9],"113":[2,9],"115":[2,9],"122":[2,9],"125":[2,9],"128":[2,9],"129":[2,9],"131":[2,9],"132":[2,9],"135":[2,9],"136":[2,9],"137":[2,9],"138":[2,9],"139":[2,9],"140":[2,9],"141":[2,9],"142":[2,9],"143":[2,9],"144":[2,9],"145":[2,9],"146":[2,9],"147":[2,9],"148":[2,9],"149":[2,9],"150":[2,9],"151":[2,9],"152":[2,9],"153":[2,9],"154":[2,9],"155":[2,9],"156":[2,9],"157":[2,9],"158":[2,9],"159":[2,9],"160":[2,9]},{"1":[2,10],"3":[2,10],"26":[2,10],"27":[2,10],"49":[2,10],"57":[2,10],"59":[2,10],"77":[2,10],"79":[2,10],"82":[2,10],"92":[2,10],"97":[2,10],"105":[2,10],"108":[2,10],"109":[2,10],"110":[2,10],"113":[2,10],"115":[2,10],"122":[2,10],"125":[2,10],"128":[2,10],"129":[2,10],"131":[2,10],"132":[2,10],"135":[2,10],"136":[2,10],"137":[2,10],"138":[2,10],"139":[2,10],"140":[2,10],"141":[2,10],"142":[2,10],"143":[2,10],"144":[2,10],"145":[2,10],"146":[2,10],"147":[2,10],"148":[2,10],"149":[2,10],"150":[2,10],"151":[2,10],"152":[2,10],"153":[2,10],"154":[2,10],"155":[2,10],"156":[2,10],"157":[2,10],"158":[2,10],"159":[2,10],"160":[2,10]},{"1":[2,11],"3":[2,11],"26":[2,11],"27":[2,11],"49":[2,11],"57":[2,11],"59":[2,11],"77":[2,11],"79":[2,11],"82":[2,11],"92":[2,11],"97":[2,11],"105":[2,11],"108":[2,11],"109":[2,11],"110":[2,11],"113":[2,11],"115":[2,11],"122":[2,11],"125":[2,11],"128":[2,11],"129":[2,11],"131":[2,11],"132":[2,11],"135":[2,11],"136":[2,11],"137":[2,11],"138":[2,11],"139":[2,11],"140":[2,11],"141":[2,11],"142":[2,11],"143":[2,11],"144":[2,11],"145":[2,11],"146":[2,11],"147":[2,11],"148":[2,11],"149":[2,11],"150":[2,11],"151":[2,11],"152":[2,11],"153":[2,11],"154":[2,11],"155":[2,11],"156":[2,11],"157":[2,11],"158":[2,11],"159":[2,11],"160":[2,11]},{"1":[2,12],"3":[2,12],"26":[2,12],"27":[2,12],"49":[2,12],"57":[2,12],"59":[2,12],"77":[2,12],"79":[2,12],"82":[2,12],"92":[2,12],"97":[2,12],"105":[2,12],"108":[2,12],"109":[2,12],"110":[2,12],"113":[2,12],"115":[2,12],"122":[2,12],"125":[2,12],"128":[2,12],"129":[2,12],"131":[2,12],"132":[2,12],"135":[2,12],"136":[2,12],"137":[2,12],"138":[2,12],"139":[2,12],"140":[2,12],"141":[2,12],"142":[2,12],"143":[2,12],"144":[2,12],"145":[2,12],"146":[2,12],"147":[2,12],"148":[2,12],"149":[2,12],"150":[2,12],"151":[2,12],"152":[2,12],"153":[2,12],"154":[2,12],"155":[2,12],"156":[2,12],"157":[2,12],"158":[2,12],"159":[2,12],"160":[2,12]},{"1":[2,13],"3":[2,13],"26":[2,13],"27":[2,13],"49":[2,13],"57":[2,13],"59":[2,13],"77":[2,13],"79":[2,13],"82":[2,13],"92":[2,13],"97":[2,13],"105":[2,13],"108":[2,13],"109":[2,13],"110":[2,13],"113":[2,13],"115":[2,13],"122":[2,13],"125":[2,13],"128":[2,13],"129":[2,13],"131":[2,13],"132":[2,13],"135":[2,13],"136":[2,13],"137":[2,13],"138":[2,13],"139":[2,13],"140":[2,13],"141":[2,13],"142":[2,13],"143":[2,13],"144":[2,13],"145":[2,13],"146":[2,13],"147":[2,13],"148":[2,13],"149":[2,13],"150":[2,13],"151":[2,13],"152":[2,13],"153":[2,13],"154":[2,13],"155":[2,13],"156":[2,13],"157":[2,13],"158":[2,13],"159":[2,13],"160":[2,13]},{"1":[2,14],"3":[2,14],"26":[2,14],"27":[2,14],"49":[2,14],"57":[2,14],"59":[2,14],"77":[2,14],"79":[2,14],"82":[2,14],"92":[2,14],"97":[2,14],"105":[2,14],"108":[2,14],"109":[2,14],"110":[2,14],"113":[2,14],"115":[2,14],"122":[2,14],"125":[2,14],"128":[2,14],"129":[2,14],"131":[2,14],"132":[2,14],"135":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[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]},{"1":[2,15],"3":[2,15],"26":[2,15],"27":[2,15],"49":[2,15],"57":[2,15],"59":[2,15],"77":[2,15],"79":[2,15],"82":[2,15],"92":[2,15],"97":[2,15],"105":[2,15],"108":[2,15],"109":[2,15],"110":[2,15],"113":[2,15],"115":[2,15],"122":[2,15],"125":[2,15],"128":[2,15],"129":[2,15],"131":[2,15],"132":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[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]},{"1":[2,16],"3":[2,16],"26":[2,16],"27":[2,16],"49":[2,16],"57":[2,16],"59":[2,16],"77":[2,16],"79":[2,16],"82":[2,16],"92":[2,16],"97":[2,16],"105":[2,16],"108":[2,16],"109":[2,16],"110":[2,16],"113":[2,16],"115":[2,16],"122":[2,16],"125":[2,16],"128":[2,16],"129":[2,16],"131":[2,16],"132":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[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]},{"1":[2,17],"3":[2,17],"26":[2,17],"27":[2,17],"49":[2,17],"57":[2,17],"59":[2,17],"77":[2,17],"79":[2,17],"82":[2,17],"92":[2,17],"97":[2,17],"105":[2,17],"108":[2,17],"109":[2,17],"110":[2,17],"113":[2,17],"115":[2,17],"122":[2,17],"125":[2,17],"128":[2,17],"129":[2,17],"131":[2,17],"132":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[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]},{"1":[2,18],"3":[2,18],"26":[2,18],"27":[2,18],"49":[2,18],"57":[2,18],"59":[2,18],"77":[2,18],"79":[2,18],"82":[2,18],"92":[2,18],"97":[2,18],"105":[2,18],"108":[2,18],"109":[2,18],"110":[2,18],"113":[2,18],"115":[2,18],"122":[2,18],"125":[2,18],"128":[2,18],"129":[2,18],"131":[2,18],"132":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[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]},{"1":[2,19],"3":[2,19],"26":[2,19],"27":[2,19],"49":[2,19],"57":[2,19],"59":[2,19],"77":[2,19],"79":[2,19],"82":[2,19],"92":[2,19],"97":[2,19],"105":[2,19],"108":[2,19],"109":[2,19],"110":[2,19],"113":[2,19],"115":[2,19],"122":[2,19],"125":[2,19],"128":[2,19],"129":[2,19],"131":[2,19],"132":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[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]},{"1":[2,20],"3":[2,20],"26":[2,20],"27":[2,20],"49":[2,20],"57":[2,20],"59":[2,20],"77":[2,20],"79":[2,20],"82":[2,20],"92":[2,20],"97":[2,20],"105":[2,20],"108":[2,20],"109":[2,20],"110":[2,20],"113":[2,20],"115":[2,20],"122":[2,20],"125":[2,20],"128":[2,20],"129":[2,20],"131":[2,20],"132":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[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]},{"1":[2,21],"3":[2,21],"26":[2,21],"27":[2,21],"49":[2,21],"57":[2,21],"59":[2,21],"77":[2,21],"79":[2,21],"82":[2,21],"92":[2,21],"97":[2,21],"105":[2,21],"108":[2,21],"109":[2,21],"110":[2,21],"113":[2,21],"115":[2,21],"122":[2,21],"125":[2,21],"128":[2,21],"129":[2,21],"131":[2,21],"132":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[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]},{"1":[2,22],"3":[2,22],"26":[2,22],"27":[2,22],"49":[2,22],"57":[2,22],"59":[2,22],"77":[2,22],"79":[2,22],"82":[2,22],"92":[2,22],"97":[2,22],"105":[2,22],"108":[2,22],"109":[2,22],"110":[2,22],"113":[2,22],"115":[2,22],"122":[2,22],"125":[2,22],"128":[2,22],"129":[2,22],"131":[2,22],"132":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[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]},{"1":[2,23],"3":[2,23],"26":[2,23],"27":[2,23],"49":[2,23],"57":[2,23],"59":[2,23],"77":[2,23],"79":[2,23],"82":[2,23],"92":[2,23],"97":[2,23],"105":[2,23],"108":[2,23],"109":[2,23],"110":[2,23],"113":[2,23],"115":[2,23],"122":[2,23],"125":[2,23],"128":[2,23],"129":[2,23],"131":[2,23],"132":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[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]},{"1":[2,24],"3":[2,24],"26":[2,24],"27":[2,24],"49":[2,24],"57":[2,24],"59":[2,24],"77":[2,24],"79":[2,24],"82":[2,24],"92":[2,24],"97":[2,24],"105":[2,24],"108":[2,24],"109":[2,24],"110":[2,24],"113":[2,24],"115":[2,24],"122":[2,24],"125":[2,24],"128":[2,24],"129":[2,24],"131":[2,24],"132":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[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]},{"1":[2,25],"3":[2,25],"26":[2,25],"27":[2,25],"49":[2,25],"57":[2,25],"59":[2,25],"77":[2,25],"79":[2,25],"82":[2,25],"92":[2,25],"97":[2,25],"105":[2,25],"108":[2,25],"109":[2,25],"110":[2,25],"113":[2,25],"115":[2,25],"122":[2,25],"125":[2,25],"128":[2,25],"129":[2,25],"131":[2,25],"132":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[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]},{"1":[2,26],"3":[2,26],"26":[2,26],"27":[2,26],"49":[2,26],"57":[2,26],"59":[2,26],"77":[2,26],"79":[2,26],"82":[2,26],"92":[2,26],"97":[2,26],"105":[2,26],"108":[2,26],"109":[2,26],"110":[2,26],"113":[2,26],"115":[2,26],"122":[2,26],"125":[2,26],"128":[2,26],"129":[2,26],"131":[2,26],"132":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[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]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"45":[1,140],"49":[2,69],"57":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"88":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"108":[2,69],"109":[2,69],"110":[2,69],"113":[2,69],"115":[2,69],"122":[2,69],"125":[2,69],"128":[2,69],"129":[2,69],"131":[2,69],"132":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[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]},{"1":[2,70],"3":[2,70],"26":[2,70],"27":[2,70],"49":[2,70],"57":[2,70],"59":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"76":[2,70],"77":[2,70],"78":[2,70],"79":[2,70],"82":[2,70],"88":[2,70],"90":[2,70],"92":[2,70],"97":[2,70],"105":[2,70],"108":[2,70],"109":[2,70],"110":[2,70],"113":[2,70],"115":[2,70],"122":[2,70],"125":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[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]},{"1":[2,71],"3":[2,71],"26":[2,71],"27":[2,71],"49":[2,71],"57":[2,71],"59":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"76":[2,71],"77":[2,71],"78":[2,71],"79":[2,71],"82":[2,71],"88":[2,71],"90":[2,71],"92":[2,71],"97":[2,71],"105":[2,71],"108":[2,71],"109":[2,71],"110":[2,71],"113":[2,71],"115":[2,71],"122":[2,71],"125":[2,71],"128":[2,71],"129":[2,71],"131":[2,71],"132":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[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]},{"1":[2,72],"3":[2,72],"26":[2,72],"27":[2,72],"49":[2,72],"57":[2,72],"59":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"77":[2,72],"78":[2,72],"79":[2,72],"82":[2,72],"88":[2,72],"90":[2,72],"92":[2,72],"97":[2,72],"105":[2,72],"108":[2,72],"109":[2,72],"110":[2,72],"113":[2,72],"115":[2,72],"122":[2,72],"125":[2,72],"128":[2,72],"129":[2,72],"131":[2,72],"132":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[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]},{"1":[2,73],"3":[2,73],"26":[2,73],"27":[2,73],"49":[2,73],"57":[2,73],"59":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"76":[2,73],"77":[2,73],"78":[2,73],"79":[2,73],"82":[2,73],"88":[2,73],"90":[2,73],"92":[2,73],"97":[2,73],"105":[2,73],"108":[2,73],"109":[2,73],"110":[2,73],"113":[2,73],"115":[2,73],"122":[2,73],"125":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[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]},{"1":[2,74],"3":[2,74],"26":[2,74],"27":[2,74],"49":[2,74],"57":[2,74],"59":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"76":[2,74],"77":[2,74],"78":[2,74],"79":[2,74],"82":[2,74],"88":[2,74],"90":[2,74],"92":[2,74],"97":[2,74],"105":[2,74],"108":[2,74],"109":[2,74],"110":[2,74],"113":[2,74],"115":[2,74],"122":[2,74],"125":[2,74],"128":[2,74],"129":[2,74],"131":[2,74],"132":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[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]},{"1":[2,98],"3":[2,98],"26":[2,98],"27":[2,98],"49":[2,98],"57":[2,98],"59":[2,98],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,98],"78":[1,139],"79":[2,98],"82":[2,98],"89":141,"90":[1,131],"92":[2,98],"97":[2,98],"105":[2,98],"108":[2,98],"109":[2,98],"110":[2,98],"113":[2,98],"115":[2,98],"122":[2,98],"125":[2,98],"128":[2,98],"129":[2,98],"131":[2,98],"132":[2,98],"135":[2,98],"136":[2,98],"137":[2,98],"138":[2,98],"139":[2,98],"140":[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]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":143,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"94":[1,72],"95":[1,73],"96":[1,71],"104":[1,70]},{"1":[2,100],"3":[2,100],"26":[2,100],"27":[2,100],"49":[2,100],"57":[2,100],"59":[2,100],"77":[2,100],"79":[2,100],"82":[2,100],"92":[2,100],"97":[2,100],"105":[2,100],"108":[2,100],"109":[2,100],"110":[2,100],"113":[2,100],"115":[2,100],"122":[2,100],"125":[2,100],"128":[2,100],"129":[2,100],"131":[2,100],"132":[2,100],"135":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[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]},{"51":147,"52":[2,56],"56":148,"57":[2,56],"58":[1,149]},{"3":[1,151],"5":150,"26":[1,6]},{"6":152,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":153,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":154,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":155,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":156,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":157,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":158,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":159,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":160,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,160],"3":[2,160],"26":[2,160],"27":[2,160],"49":[2,160],"57":[2,160],"59":[2,160],"77":[2,160],"79":[2,160],"82":[2,160],"92":[2,160],"97":[2,160],"105":[2,160],"108":[2,160],"109":[2,160],"110":[2,160],"113":[2,160],"115":[2,160],"122":[2,160],"125":[2,160],"128":[2,160],"129":[2,160],"131":[2,160],"132":[2,160],"135":[2,160],"136":[2,160],"137":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160]},{"3":[1,151],"5":161,"26":[1,6]},{"6":162,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,49],"3":[2,49],"6":163,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,49],"27":[2,49],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,49],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,49],"59":[2,49],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,49],"79":[2,49],"80":[1,81],"82":[2,49],"84":[1,54],"86":[1,33],"87":34,"92":[2,49],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"97":[2,49],"99":[1,47],"103":[1,48],"104":[1,70],"105":[2,49],"106":[1,56],"107":50,"108":[2,49],"109":[2,49],"110":[1,51],"113":[2,49],"115":[2,49],"116":[1,52],"121":77,"122":[2,49],"124":46,"125":[2,49],"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[2,49],"136":[2,49],"137":[2,49],"138":[2,49],"139":[2,49],"140":[2,49],"141":[2,49],"142":[2,49],"143":[2,49],"144":[2,49],"145":[2,49],"146":[2,49],"147":[2,49],"148":[2,49],"149":[2,49],"150":[2,49],"151":[2,49],"152":[2,49],"153":[2,49],"154":[2,49],"155":[2,49],"156":[2,49],"157":[2,49],"158":[2,49],"159":[2,49],"160":[2,49]},{"3":[1,151],"5":164,"26":[1,6]},{"28":166,"29":[1,85],"111":165},{"6":167,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"45":[2,66],"49":[2,66],"57":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"85":[1,168],"88":[2,66],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"108":[2,66],"109":[2,66],"110":[2,66],"113":[2,66],"115":[2,66],"122":[2,66],"125":[2,66],"128":[2,66],"129":[2,66],"131":[2,66],"132":[2,66],"135":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":169,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"94":[1,72],"95":[1,73],"96":[1,71],"104":[1,70]},{"1":[2,50],"3":[2,50],"26":[2,50],"27":[2,50],"48":[2,50],"49":[2,50],"57":[2,50],"59":[2,50],"77":[2,50],"79":[2,50],"82":[2,50],"92":[2,50],"97":[2,50],"101":[2,50],"102":[2,50],"105":[2,50],"108":[2,50],"109":[2,50],"110":[2,50],"113":[2,50],"115":[2,50],"118":[2,50],"120":[2,50],"122":[2,50],"125":[2,50],"128":[2,50],"129":[2,50],"131":[2,50],"132":[2,50],"135":[2,50],"136":[2,50],"137":[2,50],"138":[2,50],"139":[2,50],"140":[2,50],"141":[2,50],"142":[2,50],"143":[2,50],"144":[2,50],"145":[2,50],"146":[2,50],"147":[2,50],"148":[2,50],"149":[2,50],"150":[2,50],"151":[2,50],"152":[2,50],"153":[2,50],"154":[2,50],"155":[2,50],"156":[2,50],"157":[2,50],"158":[2,50],"159":[2,50],"160":[2,50]},{"1":[2,135],"3":[2,135],"26":[2,135],"27":[2,135],"49":[2,135],"57":[2,135],"59":[2,135],"77":[2,135],"79":[2,135],"82":[2,135],"92":[2,135],"97":[2,135],"105":[2,135],"108":[2,135],"109":[2,135],"110":[2,135],"113":[2,135],"115":[2,135],"122":[2,135],"125":[2,135],"128":[2,135],"129":[2,135],"131":[2,135],"132":[2,135],"135":[2,135],"136":[2,135],"137":[2,135],"138":[2,135],"139":[2,135],"140":[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]},{"1":[2,67],"3":[2,67],"26":[2,67],"27":[2,67],"45":[2,67],"49":[2,67],"57":[2,67],"59":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"76":[2,67],"77":[2,67],"78":[2,67],"79":[2,67],"82":[2,67],"88":[2,67],"90":[2,67],"92":[2,67],"97":[2,67],"105":[2,67],"108":[2,67],"109":[2,67],"110":[2,67],"113":[2,67],"115":[2,67],"122":[2,67],"125":[2,67],"128":[2,67],"129":[2,67],"131":[2,67],"132":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67]},{"1":[2,68],"3":[2,68],"26":[2,68],"27":[2,68],"45":[2,68],"49":[2,68],"57":[2,68],"59":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"76":[2,68],"77":[2,68],"78":[2,68],"79":[2,68],"82":[2,68],"88":[2,68],"90":[2,68],"92":[2,68],"97":[2,68],"105":[2,68],"108":[2,68],"109":[2,68],"110":[2,68],"113":[2,68],"115":[2,68],"122":[2,68],"125":[2,68],"128":[2,68],"129":[2,68],"131":[2,68],"132":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68],"140":[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]},{"1":[2,33],"3":[2,33],"26":[2,33],"27":[2,33],"49":[2,33],"57":[2,33],"59":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"76":[2,33],"77":[2,33],"78":[2,33],"79":[2,33],"82":[2,33],"88":[2,33],"90":[2,33],"92":[2,33],"97":[2,33],"105":[2,33],"108":[2,33],"109":[2,33],"110":[2,33],"113":[2,33],"115":[2,33],"122":[2,33],"125":[2,33],"128":[2,33],"129":[2,33],"131":[2,33],"132":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[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]},{"1":[2,34],"3":[2,34],"26":[2,34],"27":[2,34],"49":[2,34],"57":[2,34],"59":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"76":[2,34],"77":[2,34],"78":[2,34],"79":[2,34],"82":[2,34],"88":[2,34],"90":[2,34],"92":[2,34],"97":[2,34],"105":[2,34],"108":[2,34],"109":[2,34],"110":[2,34],"113":[2,34],"115":[2,34],"122":[2,34],"125":[2,34],"128":[2,34],"129":[2,34],"131":[2,34],"132":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[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]},{"1":[2,35],"3":[2,35],"26":[2,35],"27":[2,35],"49":[2,35],"57":[2,35],"59":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"76":[2,35],"77":[2,35],"78":[2,35],"79":[2,35],"82":[2,35],"88":[2,35],"90":[2,35],"92":[2,35],"97":[2,35],"105":[2,35],"108":[2,35],"109":[2,35],"110":[2,35],"113":[2,35],"115":[2,35],"122":[2,35],"125":[2,35],"128":[2,35],"129":[2,35],"131":[2,35],"132":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[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]},{"1":[2,36],"3":[2,36],"26":[2,36],"27":[2,36],"49":[2,36],"57":[2,36],"59":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"76":[2,36],"77":[2,36],"78":[2,36],"79":[2,36],"82":[2,36],"88":[2,36],"90":[2,36],"92":[2,36],"97":[2,36],"105":[2,36],"108":[2,36],"109":[2,36],"110":[2,36],"113":[2,36],"115":[2,36],"122":[2,36],"125":[2,36],"128":[2,36],"129":[2,36],"131":[2,36],"132":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[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]},{"1":[2,37],"3":[2,37],"26":[2,37],"27":[2,37],"49":[2,37],"57":[2,37],"59":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"76":[2,37],"77":[2,37],"78":[2,37],"79":[2,37],"82":[2,37],"88":[2,37],"90":[2,37],"92":[2,37],"97":[2,37],"105":[2,37],"108":[2,37],"109":[2,37],"110":[2,37],"113":[2,37],"115":[2,37],"122":[2,37],"125":[2,37],"128":[2,37],"129":[2,37],"131":[2,37],"132":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[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]},{"1":[2,38],"3":[2,38],"26":[2,38],"27":[2,38],"49":[2,38],"57":[2,38],"59":[2,38],"70":[2,38],"71":[2,38],"72":[2,38],"73":[2,38],"76":[2,38],"77":[2,38],"78":[2,38],"79":[2,38],"82":[2,38],"88":[2,38],"90":[2,38],"92":[2,38],"97":[2,38],"105":[2,38],"108":[2,38],"109":[2,38],"110":[2,38],"113":[2,38],"115":[2,38],"122":[2,38],"125":[2,38],"128":[2,38],"129":[2,38],"131":[2,38],"132":[2,38],"135":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[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]},{"1":[2,39],"3":[2,39],"26":[2,39],"27":[2,39],"49":[2,39],"57":[2,39],"59":[2,39],"70":[2,39],"71":[2,39],"72":[2,39],"73":[2,39],"76":[2,39],"77":[2,39],"78":[2,39],"79":[2,39],"82":[2,39],"88":[2,39],"90":[2,39],"92":[2,39],"97":[2,39],"105":[2,39],"108":[2,39],"109":[2,39],"110":[2,39],"113":[2,39],"115":[2,39],"122":[2,39],"125":[2,39],"128":[2,39],"129":[2,39],"131":[2,39],"132":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[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]},{"1":[2,40],"3":[2,40],"26":[2,40],"27":[2,40],"49":[2,40],"57":[2,40],"59":[2,40],"70":[2,40],"71":[2,40],"72":[2,40],"73":[2,40],"76":[2,40],"77":[2,40],"78":[2,40],"79":[2,40],"82":[2,40],"88":[2,40],"90":[2,40],"92":[2,40],"97":[2,40],"105":[2,40],"108":[2,40],"109":[2,40],"110":[2,40],"113":[2,40],"115":[2,40],"122":[2,40],"125":[2,40],"128":[2,40],"129":[2,40],"131":[2,40],"132":[2,40],"135":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[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]},{"1":[2,41],"3":[2,41],"26":[2,41],"27":[2,41],"49":[2,41],"57":[2,41],"59":[2,41],"70":[2,41],"71":[2,41],"72":[2,41],"73":[2,41],"76":[2,41],"77":[2,41],"78":[2,41],"79":[2,41],"82":[2,41],"88":[2,41],"90":[2,41],"92":[2,41],"97":[2,41],"105":[2,41],"108":[2,41],"109":[2,41],"110":[2,41],"113":[2,41],"115":[2,41],"122":[2,41],"125":[2,41],"128":[2,41],"129":[2,41],"131":[2,41],"132":[2,41],"135":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[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]},{"1":[2,42],"3":[2,42],"26":[2,42],"27":[2,42],"49":[2,42],"57":[2,42],"59":[2,42],"70":[2,42],"71":[2,42],"72":[2,42],"73":[2,42],"76":[2,42],"77":[2,42],"78":[2,42],"79":[2,42],"82":[2,42],"88":[2,42],"90":[2,42],"92":[2,42],"97":[2,42],"105":[2,42],"108":[2,42],"109":[2,42],"110":[2,42],"113":[2,42],"115":[2,42],"122":[2,42],"125":[2,42],"128":[2,42],"129":[2,42],"131":[2,42],"132":[2,42],"135":[2,42],"136":[2,42],"137":[2,42],"138":[2,42],"139":[2,42],"140":[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]},{"1":[2,43],"3":[2,43],"26":[2,43],"27":[2,43],"49":[2,43],"57":[2,43],"59":[2,43],"70":[2,43],"71":[2,43],"72":[2,43],"73":[2,43],"76":[2,43],"77":[2,43],"78":[2,43],"79":[2,43],"82":[2,43],"88":[2,43],"90":[2,43],"92":[2,43],"97":[2,43],"105":[2,43],"108":[2,43],"109":[2,43],"110":[2,43],"113":[2,43],"115":[2,43],"122":[2,43],"125":[2,43],"128":[2,43],"129":[2,43],"131":[2,43],"132":[2,43],"135":[2,43],"136":[2,43],"137":[2,43],"138":[2,43],"139":[2,43],"140":[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]},{"6":171,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[2,118],"6":172,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,118],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,118],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"91":173,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"97":[2,118],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,109],"3":[2,109],"26":[2,109],"27":[2,109],"49":[2,109],"57":[2,109],"59":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"76":[2,109],"77":[2,109],"78":[2,109],"79":[2,109],"82":[2,109],"88":[2,109],"90":[2,109],"92":[2,109],"97":[2,109],"105":[2,109],"108":[2,109],"109":[2,109],"110":[2,109],"113":[2,109],"115":[2,109],"122":[2,109],"125":[2,109],"128":[2,109],"129":[2,109],"131":[2,109],"132":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[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]},{"1":[2,110],"3":[2,110],"26":[2,110],"27":[2,110],"28":175,"29":[1,85],"49":[2,110],"57":[2,110],"59":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"73":[2,110],"76":[2,110],"77":[2,110],"78":[2,110],"79":[2,110],"82":[2,110],"88":[2,110],"90":[2,110],"92":[2,110],"97":[2,110],"105":[2,110],"108":[2,110],"109":[2,110],"110":[2,110],"113":[2,110],"115":[2,110],"122":[2,110],"125":[2,110],"128":[2,110],"129":[2,110],"131":[2,110],"132":[2,110],"135":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[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]},{"90":[1,176]},{"3":[2,54],"26":[2,54]},{"3":[2,55],"26":[2,55]},{"1":[2,157],"3":[2,157],"26":[2,157],"27":[2,157],"49":[2,157],"57":[2,157],"59":[2,157],"77":[2,157],"79":[2,157],"82":[2,157],"92":[2,157],"97":[2,157],"105":[2,157],"108":[2,157],"109":[2,157],"110":[2,157],"113":[2,157],"115":[2,157],"118":[1,177],"122":[2,157],"123":178,"125":[2,157],"128":[2,157],"129":[2,157],"131":[2,157],"132":[2,157],"135":[2,157],"136":[2,157],"137":[2,157],"138":[2,157],"139":[2,157],"140":[2,157],"141":[2,157],"142":[2,157],"143":[2,157],"144":[2,157],"145":[2,157],"146":[2,157],"147":[2,157],"148":[2,157],"149":[2,157],"150":[2,157],"151":[2,157],"152":[2,157],"153":[2,157],"154":[2,157],"155":[2,157],"156":[2,157],"157":[2,157],"158":[2,157],"159":[2,157],"160":[2,157]},{"6":179,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,62],"3":[2,62],"26":[2,62],"27":[2,62],"45":[2,62],"49":[2,62],"57":[2,62],"59":[2,62],"70":[2,62],"71":[2,62],"72":[2,62],"73":[2,62],"76":[2,62],"77":[2,62],"78":[2,62],"79":[2,62],"82":[2,62],"85":[2,62],"88":[2,62],"90":[2,62],"92":[2,62],"97":[2,62],"105":[2,62],"108":[2,62],"109":[2,62],"110":[2,62],"113":[2,62],"115":[2,62],"122":[2,62],"125":[2,62],"128":[2,62],"129":[2,62],"131":[2,62],"132":[2,62],"135":[2,62],"136":[2,62],"137":[2,62],"138":[2,62],"139":[2,62],"140":[2,62],"141":[2,62],"142":[2,62],"143":[2,62],"144":[2,62],"145":[2,62],"146":[2,62],"147":[2,62],"148":[2,62],"149":[2,62],"150":[2,62],"151":[2,62],"152":[2,62],"153":[2,62],"154":[2,62],"155":[2,62],"156":[2,62],"157":[2,62],"158":[2,62],"159":[2,62],"160":[2,62]},{"1":[2,65],"3":[2,65],"26":[2,65],"27":[2,65],"45":[2,65],"49":[2,65],"57":[2,65],"59":[2,65],"70":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"76":[2,65],"77":[2,65],"78":[2,65],"79":[2,65],"82":[2,65],"85":[2,65],"88":[2,65],"90":[2,65],"92":[2,65],"97":[2,65],"105":[2,65],"108":[2,65],"109":[2,65],"110":[2,65],"113":[2,65],"115":[2,65],"122":[2,65],"125":[2,65],"128":[2,65],"129":[2,65],"131":[2,65],"132":[2,65],"135":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65]},{"3":[2,91],"24":186,"26":[1,183],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,91],"81":180,"82":[2,91],"83":181},{"1":[2,31],"3":[2,31],"26":[2,31],"27":[2,31],"45":[2,31],"49":[2,31],"57":[2,31],"59":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"76":[2,31],"77":[2,31],"78":[2,31],"79":[2,31],"82":[2,31],"88":[2,31],"90":[2,31],"92":[2,31],"97":[2,31],"105":[2,31],"108":[2,31],"109":[2,31],"110":[2,31],"113":[2,31],"115":[2,31],"122":[2,31],"125":[2,31],"128":[2,31],"129":[2,31],"131":[2,31],"132":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[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]},{"1":[2,32],"3":[2,32],"26":[2,32],"27":[2,32],"45":[2,32],"49":[2,32],"57":[2,32],"59":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"76":[2,32],"77":[2,32],"78":[2,32],"79":[2,32],"82":[2,32],"88":[2,32],"90":[2,32],"92":[2,32],"97":[2,32],"105":[2,32],"108":[2,32],"109":[2,32],"110":[2,32],"113":[2,32],"115":[2,32],"122":[2,32],"125":[2,32],"128":[2,32],"129":[2,32],"131":[2,32],"132":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[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]},{"6":187,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,30],"3":[2,30],"26":[2,30],"27":[2,30],"45":[2,30],"49":[2,30],"57":[2,30],"59":[2,30],"70":[2,30],"71":[2,30],"72":[2,30],"73":[2,30],"76":[2,30],"77":[2,30],"78":[2,30],"79":[2,30],"82":[2,30],"85":[2,30],"88":[2,30],"90":[2,30],"92":[2,30],"97":[2,30],"105":[2,30],"108":[2,30],"109":[2,30],"110":[2,30],"113":[2,30],"114":[2,30],"115":[2,30],"122":[2,30],"125":[2,30],"128":[2,30],"129":[2,30],"131":[2,30],"132":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[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]},{"1":[2,29],"3":[2,29],"26":[2,29],"27":[2,29],"48":[2,29],"49":[2,29],"57":[2,29],"59":[2,29],"77":[2,29],"79":[2,29],"82":[2,29],"92":[2,29],"97":[2,29],"101":[2,29],"102":[2,29],"105":[2,29],"108":[2,29],"109":[2,29],"110":[2,29],"113":[2,29],"115":[2,29],"118":[2,29],"120":[2,29],"122":[2,29],"125":[2,29],"128":[2,29],"129":[2,29],"131":[2,29],"132":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[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]},{"1":[2,7],"3":[2,7],"6":188,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,7],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,4]},{"1":[2,172],"3":[2,172],"26":[2,172],"27":[2,172],"49":[2,172],"57":[2,172],"59":[2,172],"77":[2,172],"79":[2,172],"82":[2,172],"92":[2,172],"97":[2,172],"105":[2,172],"108":[2,172],"109":[2,172],"110":[2,172],"113":[2,172],"115":[2,172],"122":[2,172],"125":[2,172],"128":[2,172],"129":[2,172],"131":[2,172],"132":[2,172],"135":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172]},{"1":[2,173],"3":[2,173],"26":[2,173],"27":[2,173],"49":[2,173],"57":[2,173],"59":[2,173],"77":[2,173],"79":[2,173],"82":[2,173],"92":[2,173],"97":[2,173],"105":[2,173],"108":[2,173],"109":[2,173],"110":[2,173],"113":[2,173],"115":[2,173],"122":[2,173],"125":[2,173],"128":[2,173],"129":[2,173],"131":[2,173],"132":[2,173],"135":[2,173],"136":[2,173],"137":[2,173],"138":[2,173],"139":[2,173],"140":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173]},{"6":189,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":190,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":191,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":192,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":193,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":194,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":195,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":196,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":197,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":198,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":199,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":200,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":201,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":202,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":203,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":204,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":205,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":206,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":207,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,51],"3":[2,51],"6":208,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,51],"27":[2,51],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,51],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,51],"59":[2,51],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,51],"79":[2,51],"80":[1,81],"82":[2,51],"84":[1,54],"86":[1,33],"87":34,"92":[2,51],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"97":[2,51],"99":[1,47],"103":[1,48],"104":[1,70],"105":[2,51],"106":[1,56],"107":50,"108":[2,51],"109":[2,51],"110":[2,51],"113":[2,51],"115":[2,51],"116":[1,52],"121":77,"122":[2,51],"124":46,"125":[2,51],"126":[1,37],"127":[1,38],"128":[2,51],"129":[2,51],"130":[1,41],"131":[2,51],"132":[2,51],"133":[1,44],"134":[1,45],"135":[2,51],"136":[2,51],"137":[2,51],"138":[2,51],"139":[2,51],"140":[2,51],"141":[2,51],"142":[2,51],"143":[2,51],"144":[2,51],"145":[2,51],"146":[2,51],"147":[2,51],"148":[2,51],"149":[2,51],"150":[2,51],"151":[2,51],"152":[2,51],"153":[2,51],"154":[2,51],"155":[2,51],"156":[2,51],"157":[2,51],"158":[2,51],"159":[2,51],"160":[2,51]},{"6":209,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":210,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":211,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":212,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":213,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":214,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":215,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":216,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":217,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":218,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":219,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":220,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,139],"3":[2,139],"26":[2,139],"27":[2,139],"49":[2,139],"57":[2,139],"59":[2,139],"77":[2,139],"79":[2,139],"82":[2,139],"92":[2,139],"97":[2,139],"105":[2,139],"108":[2,139],"109":[2,139],"110":[2,139],"113":[2,139],"115":[2,139],"122":[2,139],"125":[2,139],"128":[2,139],"129":[2,139],"131":[2,139],"132":[2,139],"135":[2,139],"136":[2,139],"137":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139]},{"28":166,"29":[1,85],"111":221},{"59":[1,222]},{"3":[1,87],"27":[1,223]},{"1":[2,28],"3":[2,28],"26":[2,28],"27":[2,28],"48":[2,28],"49":[2,28],"57":[2,28],"59":[2,28],"77":[2,28],"79":[2,28],"82":[2,28],"92":[2,28],"97":[2,28],"101":[2,28],"102":[2,28],"105":[2,28],"108":[2,28],"109":[2,28],"110":[2,28],"113":[2,28],"115":[2,28],"118":[2,28],"120":[2,28],"122":[2,28],"125":[2,28],"128":[2,28],"129":[2,28],"131":[2,28],"132":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[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]},{"89":224,"90":[1,131]},{"1":[2,103],"3":[2,103],"26":[2,103],"27":[2,103],"49":[2,103],"57":[2,103],"59":[2,103],"70":[2,103],"71":[2,103],"72":[2,103],"73":[2,103],"76":[2,103],"77":[2,103],"78":[2,103],"79":[2,103],"82":[2,103],"90":[2,103],"92":[2,103],"97":[2,103],"105":[2,103],"108":[2,103],"109":[2,103],"110":[2,103],"113":[2,103],"115":[2,103],"122":[2,103],"125":[2,103],"128":[2,103],"129":[2,103],"131":[2,103],"132":[2,103],"135":[2,103],"136":[2,103],"137":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103]},{"1":[2,63],"3":[2,63],"26":[2,63],"27":[2,63],"45":[2,63],"49":[2,63],"57":[2,63],"59":[2,63],"70":[2,63],"71":[2,63],"72":[2,63],"73":[2,63],"76":[2,63],"77":[2,63],"78":[2,63],"79":[2,63],"82":[2,63],"85":[2,63],"88":[2,63],"90":[2,63],"92":[2,63],"97":[2,63],"105":[2,63],"108":[2,63],"109":[2,63],"110":[2,63],"113":[2,63],"115":[2,63],"122":[2,63],"125":[2,63],"128":[2,63],"129":[2,63],"131":[2,63],"132":[2,63],"135":[2,63],"136":[2,63],"137":[2,63],"138":[2,63],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63]},{"3":[2,118],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,118],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,118],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"91":225,"92":[2,118],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"28":227,"29":[1,85]},{"28":228,"29":[1,85]},{"1":[2,77],"3":[2,77],"26":[2,77],"27":[2,77],"45":[2,77],"49":[2,77],"57":[2,77],"59":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"76":[2,77],"77":[2,77],"78":[2,77],"79":[2,77],"82":[2,77],"85":[2,77],"88":[2,77],"90":[2,77],"92":[2,77],"97":[2,77],"105":[2,77],"108":[2,77],"109":[2,77],"110":[2,77],"113":[2,77],"115":[2,77],"122":[2,77],"125":[2,77],"128":[2,77],"129":[2,77],"131":[2,77],"132":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[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]},{"28":229,"29":[1,85]},{"1":[2,79],"3":[2,79],"26":[2,79],"27":[2,79],"45":[2,79],"49":[2,79],"57":[2,79],"59":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"76":[2,79],"77":[2,79],"78":[2,79],"79":[2,79],"82":[2,79],"85":[2,79],"88":[2,79],"90":[2,79],"92":[2,79],"97":[2,79],"105":[2,79],"108":[2,79],"109":[2,79],"110":[2,79],"113":[2,79],"115":[2,79],"122":[2,79],"125":[2,79],"128":[2,79],"129":[2,79],"131":[2,79],"132":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[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]},{"1":[2,80],"3":[2,80],"26":[2,80],"27":[2,80],"45":[2,80],"49":[2,80],"57":[2,80],"59":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"76":[2,80],"77":[2,80],"78":[2,80],"79":[2,80],"82":[2,80],"85":[2,80],"88":[2,80],"90":[2,80],"92":[2,80],"97":[2,80],"105":[2,80],"108":[2,80],"109":[2,80],"110":[2,80],"113":[2,80],"115":[2,80],"122":[2,80],"125":[2,80],"128":[2,80],"129":[2,80],"131":[2,80],"132":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[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]},{"6":230,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":231,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":232,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,104],"3":[2,104],"26":[2,104],"27":[2,104],"49":[2,104],"57":[2,104],"59":[2,104],"70":[2,104],"71":[2,104],"72":[2,104],"73":[2,104],"76":[2,104],"77":[2,104],"78":[2,104],"79":[2,104],"82":[2,104],"90":[2,104],"92":[2,104],"97":[2,104],"105":[2,104],"108":[2,104],"109":[2,104],"110":[2,104],"113":[2,104],"115":[2,104],"122":[2,104],"125":[2,104],"128":[2,104],"129":[2,104],"131":[2,104],"132":[2,104],"135":[2,104],"136":[2,104],"137":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104]},{"1":[2,64],"3":[2,64],"26":[2,64],"27":[2,64],"45":[2,64],"49":[2,64],"57":[2,64],"59":[2,64],"70":[2,64],"71":[2,64],"72":[2,64],"73":[2,64],"76":[2,64],"77":[2,64],"78":[2,64],"79":[2,64],"82":[2,64],"85":[2,64],"88":[2,64],"90":[2,64],"92":[2,64],"97":[2,64],"105":[2,64],"108":[2,64],"109":[2,64],"110":[2,64],"113":[2,64],"115":[2,64],"122":[2,64],"125":[2,64],"128":[2,64],"129":[2,64],"131":[2,64],"132":[2,64],"135":[2,64],"136":[2,64],"137":[2,64],"138":[2,64],"139":[2,64],"140":[2,64],"141":[2,64],"142":[2,64],"143":[2,64],"144":[2,64],"145":[2,64],"146":[2,64],"147":[2,64],"148":[2,64],"149":[2,64],"150":[2,64],"151":[2,64],"152":[2,64],"153":[2,64],"154":[2,64],"155":[2,64],"156":[2,64],"157":[2,64],"158":[2,64],"159":[2,64],"160":[2,64]},{"1":[2,99],"3":[2,99],"26":[2,99],"27":[2,99],"49":[2,99],"57":[2,99],"59":[2,99],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,99],"78":[1,139],"79":[2,99],"82":[2,99],"89":141,"90":[1,131],"92":[2,99],"97":[2,99],"105":[2,99],"108":[2,99],"109":[2,99],"110":[2,99],"113":[2,99],"115":[2,99],"122":[2,99],"125":[2,99],"128":[2,99],"129":[2,99],"131":[2,99],"132":[2,99],"135":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[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]},{"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"89":129,"90":[1,131]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"49":[2,69],"57":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"108":[2,69],"109":[2,69],"110":[2,69],"113":[2,69],"115":[2,69],"122":[2,69],"125":[2,69],"128":[2,69],"129":[2,69],"131":[2,69],"132":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[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]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"49":[2,66],"57":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"108":[2,66],"109":[2,66],"110":[2,66],"113":[2,66],"115":[2,66],"122":[2,66],"125":[2,66],"128":[2,66],"129":[2,66],"131":[2,66],"132":[2,66],"135":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66]},{"52":[1,233],"57":[1,234]},{"52":[2,57],"57":[2,57],"59":[1,235]},{"52":[2,59],"57":[2,59],"59":[2,59]},{"1":[2,53],"3":[2,53],"26":[2,53],"27":[2,53],"49":[2,53],"57":[2,53],"59":[2,53],"77":[2,53],"79":[2,53],"82":[2,53],"92":[2,53],"97":[2,53],"105":[2,53],"108":[2,53],"109":[2,53],"110":[2,53],"113":[2,53],"115":[2,53],"122":[2,53],"125":[2,53],"128":[2,53],"129":[2,53],"131":[2,53],"132":[2,53],"135":[2,53],"136":[2,53],"137":[2,53],"138":[2,53],"139":[2,53],"140":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53]},{"24":86,"48":[1,55]},{"1":[2,163],"3":[2,163],"26":[2,163],"27":[2,163],"49":[1,110],"57":[2,163],"59":[2,163],"77":[2,163],"79":[2,163],"82":[2,163],"92":[2,163],"97":[2,163],"105":[2,163],"107":123,"108":[2,163],"109":[2,163],"110":[2,163],"113":[2,163],"115":[2,163],"122":[2,163],"125":[2,163],"128":[2,163],"129":[2,163],"135":[2,163],"136":[2,163],"137":[2,163],"138":[2,163],"139":[2,163],"140":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163]},{"1":[2,164],"3":[2,164],"26":[2,164],"27":[2,164],"49":[1,110],"57":[2,164],"59":[2,164],"77":[2,164],"79":[2,164],"82":[2,164],"92":[2,164],"97":[2,164],"105":[2,164],"107":123,"108":[2,164],"109":[2,164],"110":[2,164],"113":[2,164],"115":[2,164],"122":[2,164],"125":[2,164],"128":[2,164],"129":[2,164],"135":[2,164],"136":[2,164],"137":[2,164],"138":[2,164],"139":[2,164],"140":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"148":[2,164],"149":[2,164],"150":[2,164],"151":[2,164],"152":[2,164],"153":[2,164],"154":[2,164],"155":[2,164],"156":[2,164],"157":[2,164],"158":[2,164],"159":[2,164],"160":[2,164]},{"1":[2,165],"3":[2,165],"26":[2,165],"27":[2,165],"49":[1,110],"57":[2,165],"59":[2,165],"77":[2,165],"79":[2,165],"82":[2,165],"92":[2,165],"97":[2,165],"105":[2,165],"107":123,"108":[2,165],"109":[2,165],"110":[2,165],"113":[2,165],"115":[2,165],"122":[2,165],"125":[2,165],"128":[2,165],"129":[2,165],"135":[2,165],"136":[2,165],"137":[2,165],"138":[2,165],"139":[2,165],"140":[2,165],"141":[2,165],"142":[2,165],"143":[2,165],"144":[2,165],"145":[2,165],"146":[2,165],"147":[2,165],"148":[2,165],"149":[2,165],"150":[2,165],"151":[2,165],"152":[2,165],"153":[2,165],"154":[2,165],"155":[2,165],"156":[2,165],"157":[2,165],"158":[2,165],"159":[2,165],"160":[2,165]},{"1":[2,166],"3":[2,166],"26":[2,166],"27":[2,166],"49":[1,110],"57":[2,166],"59":[2,166],"77":[2,166],"79":[2,166],"82":[2,166],"92":[2,166],"97":[2,166],"105":[2,166],"107":123,"108":[2,166],"109":[2,166],"110":[2,166],"113":[2,166],"115":[2,166],"122":[2,166],"125":[2,166],"128":[2,166],"129":[2,166],"135":[2,166],"136":[2,166],"137":[2,166],"138":[2,166],"139":[2,166],"140":[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]},{"1":[2,167],"3":[2,167],"26":[2,167],"27":[2,167],"49":[1,110],"57":[2,167],"59":[2,167],"77":[2,167],"79":[2,167],"82":[2,167],"92":[2,167],"97":[2,167],"105":[2,167],"107":123,"108":[2,167],"109":[2,167],"110":[2,167],"113":[2,167],"115":[2,167],"122":[2,167],"125":[2,167],"128":[2,167],"129":[2,167],"135":[2,167],"136":[2,167],"137":[2,167],"138":[2,167],"139":[2,167],"140":[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]},{"1":[2,168],"3":[2,168],"26":[2,168],"27":[2,168],"49":[1,110],"57":[2,168],"59":[2,168],"77":[2,168],"79":[2,168],"82":[2,168],"92":[2,168],"97":[2,168],"105":[2,168],"107":123,"108":[2,168],"109":[2,168],"110":[2,168],"113":[2,168],"115":[2,168],"122":[2,168],"125":[2,168],"128":[2,168],"129":[2,168],"135":[2,168],"136":[2,168],"137":[2,168],"138":[2,168],"139":[2,168],"140":[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]},{"1":[2,169],"3":[2,169],"26":[2,169],"27":[2,169],"49":[1,110],"57":[2,169],"59":[2,169],"77":[2,169],"79":[2,169],"82":[2,169],"92":[2,169],"97":[2,169],"105":[2,169],"107":123,"108":[2,169],"109":[2,169],"110":[2,169],"113":[2,169],"115":[2,169],"122":[2,169],"125":[2,169],"128":[2,169],"129":[2,169],"135":[2,169],"136":[2,169],"137":[2,169],"138":[2,169],"139":[2,169],"140":[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]},{"1":[2,170],"3":[2,170],"26":[2,170],"27":[2,170],"49":[1,110],"57":[2,170],"59":[2,170],"77":[2,170],"79":[2,170],"82":[2,170],"92":[2,170],"97":[2,170],"105":[2,170],"107":123,"108":[2,170],"109":[2,170],"110":[2,170],"113":[2,170],"115":[2,170],"122":[2,170],"125":[2,170],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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":[1,119]},{"1":[2,171],"3":[2,171],"26":[2,171],"27":[2,171],"49":[1,110],"57":[2,171],"59":[2,171],"77":[2,171],"79":[2,171],"82":[2,171],"92":[2,171],"97":[2,171],"105":[2,171],"107":123,"108":[2,171],"109":[2,171],"110":[2,171],"113":[2,171],"115":[2,171],"122":[2,171],"125":[2,171],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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":[1,119]},{"100":236,"101":[1,237],"102":[1,238]},{"1":[2,133],"3":[2,133],"26":[2,133],"27":[2,133],"49":[1,110],"57":[2,133],"59":[1,125],"77":[2,133],"79":[2,133],"82":[2,133],"92":[2,133],"97":[2,133],"105":[2,133],"107":123,"108":[2,133],"109":[2,133],"110":[2,133],"113":[1,120],"115":[2,133],"122":[2,133],"125":[2,133],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,48],"3":[2,48],"26":[2,48],"27":[2,48],"49":[1,110],"57":[2,48],"59":[1,125],"77":[2,48],"79":[2,48],"82":[2,48],"92":[2,48],"97":[2,48],"105":[2,48],"107":123,"108":[2,48],"109":[2,48],"110":[1,124],"113":[1,120],"115":[2,48],"122":[2,48],"125":[2,48],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,138],"3":[2,138],"26":[2,138],"27":[2,138],"49":[2,138],"57":[2,138],"59":[2,138],"77":[2,138],"79":[2,138],"82":[2,138],"92":[2,138],"97":[2,138],"105":[2,138],"108":[2,138],"109":[2,138],"110":[2,138],"113":[2,138],"115":[2,138],"122":[2,138],"125":[2,138],"128":[2,138],"129":[2,138],"131":[2,138],"132":[2,138],"135":[2,138],"136":[2,138],"137":[2,138],"138":[2,138],"139":[2,138],"140":[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]},{"112":239,"113":[1,240],"114":[1,241]},{"57":[1,242],"113":[2,142],"114":[2,142]},{"26":[1,243],"49":[1,110],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"7":244,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"94":[1,72],"95":[1,73],"96":[1,71],"104":[1,70]},{"1":[2,87],"3":[2,87],"26":[1,183],"27":[2,87],"49":[2,87],"57":[2,87],"59":[2,87],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,87],"78":[2,66],"79":[2,87],"82":[2,87],"83":246,"85":[1,245],"90":[2,66],"92":[2,87],"97":[2,87],"105":[2,87],"108":[2,87],"109":[2,87],"110":[2,87],"113":[2,87],"115":[2,87],"122":[2,87],"125":[2,87],"128":[2,87],"129":[2,87],"131":[2,87],"132":[2,87],"135":[2,87],"136":[2,87],"137":[2,87],"138":[2,87],"139":[2,87],"140":[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]},{"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"89":141,"90":[1,131]},{"49":[1,110],"59":[1,125],"105":[1,247],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[2,119],"27":[2,119],"49":[1,110],"57":[2,119],"59":[1,248],"97":[2,119],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,250],"97":[1,249]},{"6":253,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,111],"3":[2,111],"26":[2,111],"27":[2,111],"45":[2,111],"49":[2,111],"57":[2,111],"59":[2,111],"70":[2,111],"71":[2,111],"72":[2,111],"73":[2,111],"76":[2,111],"77":[2,111],"78":[2,111],"79":[2,111],"82":[2,111],"85":[2,111],"88":[2,111],"90":[2,111],"92":[2,111],"97":[2,111],"105":[2,111],"108":[2,111],"109":[2,111],"110":[2,111],"113":[2,111],"115":[2,111],"122":[2,111],"125":[2,111],"128":[2,111],"129":[2,111],"131":[2,111],"132":[2,111],"135":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[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]},{"3":[2,118],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,118],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,118],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"91":254,"92":[2,118],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[1,151],"5":255,"26":[1,6],"122":[1,256]},{"1":[2,156],"3":[2,156],"26":[2,156],"27":[2,156],"49":[2,156],"57":[2,156],"59":[2,156],"77":[2,156],"79":[2,156],"82":[2,156],"92":[2,156],"97":[2,156],"105":[2,156],"108":[2,156],"109":[2,156],"110":[2,156],"113":[2,156],"115":[2,156],"118":[2,156],"122":[2,156],"125":[2,156],"128":[2,156],"129":[2,156],"131":[2,156],"132":[2,156],"135":[2,156],"136":[2,156],"137":[2,156],"138":[2,156],"139":[2,156],"140":[2,156],"141":[2,156],"142":[2,156],"143":[2,156],"144":[2,156],"145":[2,156],"146":[2,156],"147":[2,156],"148":[2,156],"149":[2,156],"150":[2,156],"151":[2,156],"152":[2,156],"153":[2,156],"154":[2,156],"155":[2,156],"156":[2,156],"157":[2,156],"158":[2,156],"159":[2,156],"160":[2,156]},{"1":[2,136],"3":[2,136],"26":[2,136],"27":[2,136],"49":[1,110],"57":[2,136],"59":[1,125],"77":[2,136],"79":[2,136],"82":[2,136],"92":[2,136],"97":[2,136],"105":[2,136],"107":123,"108":[1,78],"109":[1,257],"110":[1,124],"113":[1,120],"115":[2,136],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[1,260],"57":[1,259],"82":[1,258]},{"57":[1,262],"82":[1,261]},{"3":[2,92],"27":[2,92],"57":[2,92],"82":[2,92]},{"3":[2,91],"24":186,"27":[2,91],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,91],"81":263},{"45":[1,264]},{"45":[1,265]},{"3":[2,47],"27":[2,47],"57":[2,47],"82":[2,47]},{"3":[1,151],"5":266,"26":[1,6],"49":[1,110],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,6],"3":[2,6],"27":[2,6],"49":[1,110],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,174],"3":[2,174],"26":[2,174],"27":[2,174],"49":[1,110],"57":[2,174],"59":[2,174],"77":[2,174],"79":[2,174],"82":[2,174],"92":[2,174],"97":[2,174],"105":[2,174],"107":123,"108":[2,174],"109":[2,174],"110":[2,174],"113":[2,174],"115":[2,174],"122":[2,174],"125":[2,174],"128":[2,174],"129":[2,174],"131":[1,89],"132":[1,90],"135":[2,174],"136":[2,174],"137":[2,174],"138":[2,174],"139":[2,174],"140":[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]},{"1":[2,175],"3":[2,175],"26":[2,175],"27":[2,175],"49":[1,110],"57":[2,175],"59":[2,175],"77":[2,175],"79":[2,175],"82":[2,175],"92":[2,175],"97":[2,175],"105":[2,175],"107":123,"108":[2,175],"109":[2,175],"110":[2,175],"113":[2,175],"115":[2,175],"122":[2,175],"125":[2,175],"128":[2,175],"129":[2,175],"131":[1,89],"132":[1,90],"135":[2,175],"136":[2,175],"137":[2,175],"138":[2,175],"139":[2,175],"140":[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]},{"1":[2,176],"3":[2,176],"26":[2,176],"27":[2,176],"49":[1,110],"57":[2,176],"59":[2,176],"77":[2,176],"79":[2,176],"82":[2,176],"92":[2,176],"97":[2,176],"105":[2,176],"107":123,"108":[2,176],"109":[2,176],"110":[2,176],"113":[2,176],"115":[2,176],"122":[2,176],"125":[2,176],"128":[2,176],"129":[2,176],"131":[1,89],"132":[1,90],"135":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176],"140":[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]},{"1":[2,177],"3":[2,177],"26":[2,177],"27":[2,177],"49":[1,110],"57":[2,177],"59":[2,177],"77":[2,177],"79":[2,177],"82":[2,177],"92":[2,177],"97":[2,177],"105":[2,177],"107":123,"108":[2,177],"109":[2,177],"110":[2,177],"113":[2,177],"115":[2,177],"122":[2,177],"125":[2,177],"128":[2,177],"129":[2,177],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[2,177],"139":[2,177],"140":[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]},{"1":[2,178],"3":[2,178],"26":[2,178],"27":[2,178],"49":[1,110],"57":[2,178],"59":[2,178],"77":[2,178],"79":[2,178],"82":[2,178],"92":[2,178],"97":[2,178],"105":[2,178],"107":123,"108":[2,178],"109":[2,178],"110":[2,178],"113":[2,178],"115":[2,178],"122":[2,178],"125":[2,178],"128":[2,178],"129":[2,178],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[2,178],"139":[2,178],"140":[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]},{"1":[2,179],"3":[2,179],"26":[2,179],"27":[2,179],"49":[1,110],"57":[2,179],"59":[2,179],"77":[2,179],"79":[2,179],"82":[2,179],"92":[2,179],"97":[2,179],"105":[2,179],"107":123,"108":[2,179],"109":[2,179],"110":[2,179],"113":[2,179],"115":[2,179],"122":[2,179],"125":[2,179],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[2,179],"139":[2,179],"140":[2,179],"141":[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]},{"1":[2,180],"3":[2,180],"26":[2,180],"27":[2,180],"49":[1,110],"57":[2,180],"59":[2,180],"77":[2,180],"79":[2,180],"82":[2,180],"92":[2,180],"97":[2,180],"105":[2,180],"107":123,"108":[2,180],"109":[2,180],"110":[2,180],"113":[2,180],"115":[2,180],"122":[2,180],"125":[2,180],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[2,180],"139":[2,180],"140":[2,180],"141":[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]},{"1":[2,181],"3":[2,181],"26":[2,181],"27":[2,181],"49":[1,110],"57":[2,181],"59":[2,181],"77":[2,181],"79":[2,181],"82":[2,181],"92":[2,181],"97":[2,181],"105":[2,181],"107":123,"108":[2,181],"109":[2,181],"110":[2,181],"113":[2,181],"115":[2,181],"122":[2,181],"125":[2,181],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181]},{"1":[2,182],"3":[2,182],"26":[2,182],"27":[2,182],"49":[1,110],"57":[2,182],"59":[2,182],"77":[2,182],"79":[2,182],"82":[2,182],"92":[2,182],"97":[2,182],"105":[2,182],"107":123,"108":[2,182],"109":[2,182],"110":[2,182],"113":[2,182],"115":[2,182],"122":[2,182],"125":[2,182],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182]},{"1":[2,183],"3":[2,183],"26":[2,183],"27":[2,183],"49":[1,110],"57":[2,183],"59":[2,183],"77":[2,183],"79":[2,183],"82":[2,183],"92":[2,183],"97":[2,183],"105":[2,183],"107":123,"108":[2,183],"109":[2,183],"110":[2,183],"113":[2,183],"115":[2,183],"122":[2,183],"125":[2,183],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"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]},{"1":[2,184],"3":[2,184],"26":[2,184],"27":[2,184],"49":[1,110],"57":[2,184],"59":[2,184],"77":[2,184],"79":[2,184],"82":[2,184],"92":[2,184],"97":[2,184],"105":[2,184],"107":123,"108":[2,184],"109":[2,184],"110":[2,184],"113":[2,184],"115":[2,184],"122":[2,184],"125":[2,184],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"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]},{"1":[2,185],"3":[2,185],"26":[2,185],"27":[2,185],"49":[1,110],"57":[2,185],"59":[2,185],"77":[2,185],"79":[2,185],"82":[2,185],"92":[2,185],"97":[2,185],"105":[2,185],"107":123,"108":[2,185],"109":[2,185],"110":[2,185],"113":[2,185],"115":[2,185],"122":[2,185],"125":[2,185],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"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]},{"1":[2,186],"3":[2,186],"26":[2,186],"27":[2,186],"49":[1,110],"57":[2,186],"59":[2,186],"77":[2,186],"79":[2,186],"82":[2,186],"92":[2,186],"97":[2,186],"105":[2,186],"107":123,"108":[2,186],"109":[2,186],"110":[2,186],"113":[2,186],"115":[2,186],"122":[2,186],"125":[2,186],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"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]},{"1":[2,187],"3":[2,187],"26":[2,187],"27":[2,187],"49":[1,110],"57":[2,187],"59":[2,187],"77":[2,187],"79":[2,187],"82":[2,187],"92":[2,187],"97":[2,187],"105":[2,187],"107":123,"108":[2,187],"109":[2,187],"110":[2,187],"113":[2,187],"115":[2,187],"122":[2,187],"125":[2,187],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"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]},{"1":[2,188],"3":[2,188],"26":[2,188],"27":[2,188],"49":[1,110],"57":[2,188],"59":[2,188],"77":[2,188],"79":[2,188],"82":[2,188],"92":[2,188],"97":[2,188],"105":[2,188],"107":123,"108":[2,188],"109":[2,188],"110":[2,188],"113":[2,188],"115":[2,188],"122":[2,188],"125":[2,188],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"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]},{"1":[2,189],"3":[2,189],"26":[2,189],"27":[2,189],"49":[1,110],"57":[2,189],"59":[2,189],"77":[2,189],"79":[2,189],"82":[2,189],"92":[2,189],"97":[2,189],"105":[2,189],"107":123,"108":[2,189],"109":[2,189],"110":[2,189],"113":[2,189],"115":[2,189],"122":[2,189],"125":[2,189],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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":[1,119]},{"1":[2,190],"3":[2,190],"26":[2,190],"27":[2,190],"49":[1,110],"57":[2,190],"59":[2,190],"77":[2,190],"79":[2,190],"82":[2,190],"92":[2,190],"97":[2,190],"105":[2,190],"107":123,"108":[2,190],"109":[2,190],"110":[2,190],"113":[2,190],"115":[2,190],"122":[2,190],"125":[2,190],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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":[1,119]},{"1":[2,191],"3":[2,191],"26":[2,191],"27":[2,191],"49":[1,110],"57":[2,191],"59":[2,191],"77":[2,191],"79":[2,191],"82":[2,191],"92":[2,191],"97":[2,191],"105":[2,191],"107":123,"108":[2,191],"109":[2,191],"110":[2,191],"113":[2,191],"115":[2,191],"122":[2,191],"125":[2,191],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"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":[1,119]},{"1":[2,192],"3":[2,192],"26":[2,192],"27":[2,192],"49":[1,110],"57":[2,192],"59":[2,192],"77":[2,192],"79":[2,192],"82":[2,192],"92":[2,192],"97":[2,192],"105":[2,192],"107":123,"108":[2,192],"109":[2,192],"110":[2,192],"113":[2,192],"115":[2,192],"122":[2,192],"125":[2,192],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"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":[1,119]},{"1":[2,193],"3":[2,193],"26":[2,193],"27":[2,193],"49":[2,193],"57":[2,193],"59":[2,193],"77":[2,193],"79":[2,193],"82":[2,193],"92":[2,193],"97":[2,193],"105":[2,193],"107":123,"108":[2,193],"109":[2,193],"110":[2,193],"113":[2,193],"115":[2,193],"122":[2,193],"125":[2,193],"128":[2,193],"129":[2,193],"131":[2,193],"132":[2,193],"135":[2,193],"136":[2,193],"137":[2,193],"138":[2,193],"139":[2,193],"140":[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]},{"1":[2,194],"3":[2,194],"26":[2,194],"27":[2,194],"49":[1,110],"57":[2,194],"59":[2,194],"77":[2,194],"79":[2,194],"82":[2,194],"92":[2,194],"97":[2,194],"105":[2,194],"107":123,"108":[2,194],"109":[2,194],"110":[2,194],"113":[2,194],"115":[2,194],"122":[2,194],"125":[2,194],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,195],"3":[2,195],"26":[2,195],"27":[2,195],"49":[1,110],"57":[2,195],"59":[2,195],"77":[2,195],"79":[2,195],"82":[2,195],"92":[2,195],"97":[2,195],"105":[2,195],"107":123,"108":[2,195],"109":[2,195],"110":[2,195],"113":[2,195],"115":[2,195],"122":[2,195],"125":[2,195],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,196],"3":[2,196],"26":[2,196],"27":[2,196],"49":[1,110],"57":[2,196],"59":[2,196],"77":[2,196],"79":[2,196],"82":[2,196],"92":[2,196],"97":[2,196],"105":[2,196],"107":123,"108":[2,196],"109":[2,196],"110":[2,196],"113":[2,196],"115":[2,196],"122":[2,196],"125":[2,196],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,197],"3":[2,197],"26":[2,197],"27":[2,197],"49":[1,110],"57":[2,197],"59":[2,197],"77":[2,197],"79":[2,197],"82":[2,197],"92":[2,197],"97":[2,197],"105":[2,197],"107":123,"108":[2,197],"109":[2,197],"110":[2,197],"113":[2,197],"115":[2,197],"122":[2,197],"125":[2,197],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,198],"3":[2,198],"26":[2,198],"27":[2,198],"49":[1,110],"57":[2,198],"59":[2,198],"77":[2,198],"79":[2,198],"82":[2,198],"92":[2,198],"97":[2,198],"105":[2,198],"107":123,"108":[2,198],"109":[2,198],"110":[2,198],"113":[2,198],"115":[2,198],"122":[2,198],"125":[2,198],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,199],"3":[2,199],"26":[2,199],"27":[2,199],"49":[1,110],"57":[2,199],"59":[2,199],"77":[2,199],"79":[2,199],"82":[2,199],"92":[2,199],"97":[2,199],"105":[2,199],"107":123,"108":[2,199],"109":[2,199],"110":[2,199],"113":[2,199],"115":[2,199],"122":[2,199],"125":[2,199],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,200],"3":[2,200],"26":[2,200],"27":[2,200],"49":[1,110],"57":[2,200],"59":[2,200],"77":[2,200],"79":[2,200],"82":[2,200],"92":[2,200],"97":[2,200],"105":[2,200],"107":123,"108":[2,200],"109":[2,200],"110":[2,200],"113":[2,200],"115":[2,200],"122":[2,200],"125":[2,200],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,201],"3":[2,201],"26":[2,201],"27":[2,201],"49":[1,110],"57":[2,201],"59":[2,201],"77":[2,201],"79":[2,201],"82":[2,201],"92":[2,201],"97":[2,201],"105":[2,201],"107":123,"108":[2,201],"109":[2,201],"110":[2,201],"113":[2,201],"115":[2,201],"122":[2,201],"125":[2,201],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,202],"3":[2,202],"26":[2,202],"27":[2,202],"49":[1,110],"57":[2,202],"59":[2,202],"77":[2,202],"79":[2,202],"82":[2,202],"92":[2,202],"97":[2,202],"105":[2,202],"107":123,"108":[2,202],"109":[2,202],"110":[2,202],"113":[2,202],"115":[2,202],"122":[2,202],"125":[2,202],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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":[1,119]},{"1":[2,203],"3":[2,203],"26":[2,203],"27":[2,203],"49":[1,110],"57":[2,203],"59":[1,125],"77":[2,203],"79":[2,203],"82":[2,203],"92":[2,203],"97":[2,203],"105":[2,203],"107":123,"108":[2,203],"109":[2,203],"110":[2,203],"113":[1,120],"115":[2,203],"122":[2,203],"125":[2,203],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,161],"3":[2,161],"26":[2,161],"27":[2,161],"49":[1,110],"57":[2,161],"59":[1,125],"77":[2,161],"79":[2,161],"82":[2,161],"92":[2,161],"97":[2,161],"105":[2,161],"107":123,"108":[1,78],"109":[2,161],"110":[1,124],"113":[1,120],"115":[2,161],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,162],"3":[2,162],"26":[2,162],"27":[2,162],"49":[1,110],"57":[2,162],"59":[1,125],"77":[2,162],"79":[2,162],"82":[2,162],"92":[2,162],"97":[2,162],"105":[2,162],"107":123,"108":[1,78],"109":[2,162],"110":[1,124],"113":[1,120],"115":[2,162],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"112":267,"113":[1,240],"114":[1,241]},{"59":[1,268]},{"1":[2,27],"3":[2,27],"26":[2,27],"27":[2,27],"48":[2,27],"49":[2,27],"57":[2,27],"59":[2,27],"77":[2,27],"79":[2,27],"82":[2,27],"92":[2,27],"97":[2,27],"101":[2,27],"102":[2,27],"105":[2,27],"108":[2,27],"109":[2,27],"110":[2,27],"113":[2,27],"115":[2,27],"118":[2,27],"120":[2,27],"122":[2,27],"125":[2,27],"128":[2,27],"129":[2,27],"131":[2,27],"132":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[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]},{"1":[2,101],"3":[2,101],"26":[2,101],"27":[2,101],"49":[2,101],"57":[2,101],"59":[2,101],"77":[2,101],"79":[2,101],"82":[2,101],"92":[2,101],"97":[2,101],"105":[2,101],"108":[2,101],"109":[2,101],"110":[2,101],"113":[2,101],"115":[2,101],"122":[2,101],"125":[2,101],"128":[2,101],"129":[2,101],"131":[2,101],"132":[2,101],"135":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[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]},{"3":[1,251],"27":[1,252],"57":[1,270],"92":[1,269]},{"3":[2,119],"27":[2,119],"49":[1,110],"57":[2,119],"59":[1,125],"92":[2,119],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,75],"3":[2,75],"26":[2,75],"27":[2,75],"45":[2,75],"49":[2,75],"57":[2,75],"59":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"76":[2,75],"77":[2,75],"78":[2,75],"79":[2,75],"82":[2,75],"85":[2,75],"88":[2,75],"90":[2,75],"92":[2,75],"97":[2,75],"105":[2,75],"108":[2,75],"109":[2,75],"110":[2,75],"113":[2,75],"115":[2,75],"122":[2,75],"125":[2,75],"128":[2,75],"129":[2,75],"131":[2,75],"132":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[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]},{"1":[2,76],"3":[2,76],"26":[2,76],"27":[2,76],"45":[2,76],"49":[2,76],"57":[2,76],"59":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"76":[2,76],"77":[2,76],"78":[2,76],"79":[2,76],"82":[2,76],"85":[2,76],"88":[2,76],"90":[2,76],"92":[2,76],"97":[2,76],"105":[2,76],"108":[2,76],"109":[2,76],"110":[2,76],"113":[2,76],"115":[2,76],"122":[2,76],"125":[2,76],"128":[2,76],"129":[2,76],"131":[2,76],"132":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[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]},{"1":[2,78],"3":[2,78],"26":[2,78],"27":[2,78],"45":[2,78],"49":[2,78],"57":[2,78],"59":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"76":[2,78],"77":[2,78],"78":[2,78],"79":[2,78],"82":[2,78],"85":[2,78],"88":[2,78],"90":[2,78],"92":[2,78],"97":[2,78],"105":[2,78],"108":[2,78],"109":[2,78],"110":[2,78],"113":[2,78],"115":[2,78],"122":[2,78],"125":[2,78],"128":[2,78],"129":[2,78],"131":[2,78],"132":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[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]},{"49":[1,110],"59":[1,272],"77":[1,271],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"49":[1,110],"59":[1,125],"79":[1,273],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,44],"3":[2,44],"26":[2,44],"27":[2,44],"49":[1,110],"57":[2,44],"59":[1,125],"77":[2,44],"79":[2,44],"82":[2,44],"92":[2,44],"97":[2,44],"105":[2,44],"107":123,"108":[2,44],"109":[2,44],"110":[1,124],"113":[1,120],"115":[2,44],"122":[2,44],"125":[2,44],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"53":274,"54":[1,75],"55":[1,76]},{"56":275,"58":[1,149]},{"59":[1,276]},{"1":[2,129],"3":[2,129],"26":[2,129],"27":[2,129],"49":[2,129],"57":[2,129],"59":[2,129],"77":[2,129],"79":[2,129],"82":[2,129],"92":[2,129],"97":[2,129],"101":[1,277],"105":[2,129],"108":[2,129],"109":[2,129],"110":[2,129],"113":[2,129],"115":[2,129],"122":[2,129],"125":[2,129],"128":[2,129],"129":[2,129],"131":[2,129],"132":[2,129],"135":[2,129],"136":[2,129],"137":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129]},{"3":[1,151],"5":278,"26":[1,6]},{"28":279,"29":[1,85]},{"3":[1,151],"5":280,"26":[1,6],"109":[1,281],"115":[1,282]},{"6":283,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":284,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"28":285,"29":[1,85]},{"24":289,"48":[1,55],"117":286,"119":287,"120":[1,288]},{"1":[2,102],"3":[2,102],"26":[2,102],"27":[2,102],"49":[2,102],"57":[2,102],"59":[2,102],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,102],"78":[1,139],"79":[2,102],"82":[2,102],"89":129,"90":[1,131],"92":[2,102],"97":[2,102],"105":[2,102],"108":[2,102],"109":[2,102],"110":[2,102],"113":[2,102],"115":[2,102],"122":[2,102],"125":[2,102],"128":[2,102],"129":[2,102],"131":[2,102],"132":[2,102],"135":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"147":[2,102],"148":[2,102],"149":[2,102],"150":[2,102],"151":[2,102],"152":[2,102],"153":[2,102],"154":[2,102],"155":[2,102],"156":[2,102],"157":[2,102],"158":[2,102],"159":[2,102],"160":[2,102]},{"7":290,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"94":[1,72],"95":[1,73],"96":[1,71],"104":[1,70]},{"1":[2,89],"3":[2,89],"26":[2,89],"27":[2,89],"49":[2,89],"57":[2,89],"59":[2,89],"77":[2,89],"79":[2,89],"82":[2,89],"92":[2,89],"97":[2,89],"105":[2,89],"108":[2,89],"109":[2,89],"110":[2,89],"113":[2,89],"115":[2,89],"122":[2,89],"125":[2,89],"128":[2,89],"129":[2,89],"131":[2,89],"132":[2,89],"135":[2,89],"136":[2,89],"137":[2,89],"138":[2,89],"139":[2,89],"140":[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]},{"1":[2,134],"3":[2,134],"26":[2,134],"27":[2,134],"49":[2,134],"57":[2,134],"59":[2,134],"70":[2,134],"71":[2,134],"72":[2,134],"73":[2,134],"76":[2,134],"77":[2,134],"78":[2,134],"79":[2,134],"82":[2,134],"88":[2,134],"90":[2,134],"92":[2,134],"97":[2,134],"105":[2,134],"108":[2,134],"109":[2,134],"110":[2,134],"113":[2,134],"115":[2,134],"122":[2,134],"125":[2,134],"128":[2,134],"129":[2,134],"131":[2,134],"132":[2,134],"135":[2,134],"136":[2,134],"137":[2,134],"138":[2,134],"139":[2,134],"140":[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]},{"59":[1,291]},{"1":[2,116],"3":[2,116],"26":[2,116],"27":[2,116],"45":[2,116],"49":[2,116],"57":[2,116],"59":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"73":[2,116],"76":[2,116],"77":[2,116],"78":[2,116],"79":[2,116],"82":[2,116],"88":[2,116],"90":[2,116],"92":[2,116],"97":[2,116],"105":[2,116],"108":[2,116],"109":[2,116],"110":[2,116],"113":[2,116],"115":[2,116],"122":[2,116],"125":[2,116],"128":[2,116],"129":[2,116],"131":[2,116],"132":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[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]},{"3":[1,294],"6":293,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,295],"27":[1,296],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"97":[1,292],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":297,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[2,125],"27":[2,125],"57":[2,125],"92":[2,125],"97":[2,125]},{"3":[2,120],"27":[2,120],"49":[1,110],"57":[2,120],"59":[1,125],"92":[2,120],"97":[2,120],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,299],"92":[1,298]},{"1":[2,158],"3":[2,158],"26":[2,158],"27":[2,158],"49":[2,158],"57":[2,158],"59":[2,158],"77":[2,158],"79":[2,158],"82":[2,158],"92":[2,158],"97":[2,158],"105":[2,158],"108":[2,158],"109":[2,158],"110":[2,158],"113":[2,158],"115":[2,158],"122":[2,158],"125":[2,158],"128":[2,158],"129":[2,158],"131":[2,158],"132":[2,158],"135":[2,158],"136":[2,158],"137":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"147":[2,158],"148":[2,158],"149":[2,158],"150":[2,158],"151":[2,158],"152":[2,158],"153":[2,158],"154":[2,158],"155":[2,158],"156":[2,158],"157":[2,158],"158":[2,158],"159":[2,158],"160":[2,158]},{"6":300,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":301,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,83],"3":[2,83],"26":[2,83],"27":[2,83],"45":[2,83],"49":[2,83],"57":[2,83],"59":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"76":[2,83],"77":[2,83],"78":[2,83],"79":[2,83],"82":[2,83],"88":[2,83],"90":[2,83],"92":[2,83],"97":[2,83],"105":[2,83],"108":[2,83],"109":[2,83],"110":[2,83],"113":[2,83],"115":[2,83],"122":[2,83],"125":[2,83],"128":[2,83],"129":[2,83],"131":[2,83],"132":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[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]},{"3":[1,304],"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":303,"48":[1,55],"82":[1,302]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":305,"48":[1,55]},{"1":[2,84],"3":[2,84],"26":[2,84],"27":[2,84],"45":[2,84],"49":[2,84],"57":[2,84],"59":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"76":[2,84],"77":[2,84],"78":[2,84],"79":[2,84],"82":[2,84],"88":[2,84],"90":[2,84],"92":[2,84],"97":[2,84],"105":[2,84],"108":[2,84],"109":[2,84],"110":[2,84],"113":[2,84],"115":[2,84],"122":[2,84],"125":[2,84],"128":[2,84],"129":[2,84],"131":[2,84],"132":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[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]},{"82":[1,306]},{"3":[1,260],"27":[1,307],"57":[1,308]},{"6":309,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":310,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,155],"3":[2,155],"26":[2,155],"27":[2,155],"49":[2,155],"57":[2,155],"59":[2,155],"77":[2,155],"79":[2,155],"82":[2,155],"92":[2,155],"97":[2,155],"105":[2,155],"108":[2,155],"109":[2,155],"110":[2,155],"113":[2,155],"115":[2,155],"118":[2,155],"122":[2,155],"125":[2,155],"128":[2,155],"129":[2,155],"131":[2,155],"132":[2,155],"135":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"146":[2,155],"147":[2,155],"148":[2,155],"149":[2,155],"150":[2,155],"151":[2,155],"152":[2,155],"153":[2,155],"154":[2,155],"155":[2,155],"156":[2,155],"157":[2,155],"158":[2,155],"159":[2,155],"160":[2,155]},{"1":[2,140],"3":[2,140],"26":[2,140],"27":[2,140],"49":[2,140],"57":[2,140],"59":[2,140],"77":[2,140],"79":[2,140],"82":[2,140],"92":[2,140],"97":[2,140],"105":[2,140],"108":[2,140],"109":[1,281],"110":[2,140],"113":[2,140],"115":[1,282],"122":[2,140],"125":[2,140],"128":[2,140],"129":[2,140],"131":[2,140],"132":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140]},{"1":[2,61],"3":[2,61],"26":[2,61],"27":[2,61],"49":[2,61],"57":[2,61],"59":[2,61],"77":[2,61],"79":[2,61],"82":[2,61],"92":[2,61],"97":[2,61],"105":[2,61],"108":[2,61],"109":[2,61],"110":[2,61],"113":[2,61],"115":[2,61],"122":[2,61],"125":[2,61],"128":[2,61],"129":[2,61],"131":[2,61],"132":[2,61],"135":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61]},{"1":[2,105],"3":[2,105],"26":[2,105],"27":[2,105],"49":[2,105],"57":[2,105],"59":[2,105],"70":[2,105],"71":[2,105],"72":[2,105],"73":[2,105],"76":[2,105],"77":[2,105],"78":[2,105],"79":[2,105],"82":[2,105],"90":[2,105],"92":[2,105],"97":[2,105],"105":[2,105],"108":[2,105],"109":[2,105],"110":[2,105],"113":[2,105],"115":[2,105],"122":[2,105],"125":[2,105],"128":[2,105],"129":[2,105],"131":[2,105],"132":[2,105],"135":[2,105],"136":[2,105],"137":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105]},{"3":[1,294],"6":293,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,295],"27":[1,296],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"92":[1,311],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,81],"3":[2,81],"26":[2,81],"27":[2,81],"45":[2,81],"49":[2,81],"57":[2,81],"59":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"76":[2,81],"77":[2,81],"78":[2,81],"79":[2,81],"82":[2,81],"85":[2,81],"88":[2,81],"90":[2,81],"92":[2,81],"97":[2,81],"105":[2,81],"108":[2,81],"109":[2,81],"110":[2,81],"113":[2,81],"115":[2,81],"122":[2,81],"125":[2,81],"128":[2,81],"129":[2,81],"131":[2,81],"132":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[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]},{"59":[1,312]},{"1":[2,82],"3":[2,82],"26":[2,82],"27":[2,82],"45":[2,82],"49":[2,82],"57":[2,82],"59":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"76":[2,82],"77":[2,82],"78":[2,82],"79":[2,82],"82":[2,82],"85":[2,82],"88":[2,82],"90":[2,82],"92":[2,82],"97":[2,82],"105":[2,82],"108":[2,82],"109":[2,82],"110":[2,82],"113":[2,82],"115":[2,82],"122":[2,82],"125":[2,82],"128":[2,82],"129":[2,82],"131":[2,82],"132":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[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]},{"3":[1,151],"5":313,"26":[1,6]},{"52":[2,58],"57":[2,58],"59":[1,235]},{"59":[1,314]},{"3":[1,151],"5":315,"26":[1,6]},{"1":[2,130],"3":[2,130],"26":[2,130],"27":[2,130],"49":[2,130],"57":[2,130],"59":[2,130],"77":[2,130],"79":[2,130],"82":[2,130],"92":[2,130],"97":[2,130],"105":[2,130],"108":[2,130],"109":[2,130],"110":[2,130],"113":[2,130],"115":[2,130],"122":[2,130],"125":[2,130],"128":[2,130],"129":[2,130],"131":[2,130],"132":[2,130],"135":[2,130],"136":[2,130],"137":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130]},{"3":[1,151],"5":316,"26":[1,6]},{"1":[2,141],"3":[2,141],"26":[2,141],"27":[2,141],"49":[2,141],"57":[2,141],"59":[2,141],"77":[2,141],"79":[2,141],"82":[2,141],"92":[2,141],"97":[2,141],"105":[2,141],"108":[2,141],"109":[2,141],"110":[2,141],"113":[2,141],"115":[2,141],"122":[2,141],"125":[2,141],"128":[2,141],"129":[2,141],"131":[2,141],"132":[2,141],"135":[2,141],"136":[2,141],"137":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141]},{"6":317,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":318,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,144],"3":[2,144],"26":[2,144],"27":[2,144],"49":[1,110],"57":[2,144],"59":[1,125],"77":[2,144],"79":[2,144],"82":[2,144],"92":[2,144],"97":[2,144],"105":[2,144],"107":123,"108":[2,144],"109":[2,144],"110":[2,144],"113":[1,120],"115":[2,144],"122":[2,144],"125":[2,144],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,145],"3":[2,145],"26":[2,145],"27":[2,145],"49":[1,110],"57":[2,145],"59":[1,125],"77":[2,145],"79":[2,145],"82":[2,145],"92":[2,145],"97":[2,145],"105":[2,145],"107":123,"108":[2,145],"109":[2,145],"110":[2,145],"113":[1,120],"115":[2,145],"122":[2,145],"125":[2,145],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"113":[2,143],"114":[2,143]},{"24":289,"27":[1,319],"48":[1,55],"118":[1,320],"119":321,"120":[1,288]},{"27":[2,150],"48":[2,150],"118":[2,150],"120":[2,150]},{"6":323,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"98":322,"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[1,324]},{"1":[2,88],"3":[2,88],"26":[1,183],"27":[2,88],"49":[2,88],"57":[2,88],"59":[2,88],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,88],"78":[1,139],"79":[2,88],"82":[2,88],"83":325,"89":129,"90":[1,131],"92":[2,88],"97":[2,88],"105":[2,88],"108":[2,88],"109":[2,88],"110":[2,88],"113":[2,88],"115":[2,88],"122":[2,88],"125":[2,88],"128":[2,88],"129":[2,88],"131":[2,88],"132":[2,88],"135":[2,88],"136":[2,88],"137":[2,88],"138":[2,88],"139":[2,88],"140":[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]},{"6":326,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,327],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,117],"3":[2,117],"26":[2,117],"27":[2,117],"45":[2,117],"49":[2,117],"57":[2,117],"59":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"73":[2,117],"76":[2,117],"77":[2,117],"78":[2,117],"79":[2,117],"82":[2,117],"88":[2,117],"90":[2,117],"92":[2,117],"97":[2,117],"105":[2,117],"108":[2,117],"109":[2,117],"110":[2,117],"113":[2,117],"115":[2,117],"122":[2,117],"125":[2,117],"128":[2,117],"129":[2,117],"131":[2,117],"132":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[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]},{"3":[2,121],"27":[2,121],"49":[1,110],"57":[2,121],"59":[1,125],"92":[2,121],"97":[2,121],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"6":328,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":329,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[2,126],"27":[2,126],"57":[2,126],"92":[2,126],"97":[2,126]},{"3":[2,122],"27":[2,122],"49":[1,110],"57":[2,122],"59":[1,125],"92":[2,122],"97":[2,122],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,107],"3":[2,107],"26":[2,107],"27":[2,107],"49":[2,107],"57":[2,107],"59":[2,107],"77":[2,107],"79":[2,107],"82":[2,107],"92":[2,107],"97":[2,107],"105":[2,107],"108":[2,107],"109":[2,107],"110":[2,107],"113":[2,107],"115":[2,107],"122":[2,107],"125":[2,107],"128":[2,107],"129":[2,107],"131":[2,107],"132":[2,107],"135":[2,107],"136":[2,107],"137":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107]},{"3":[1,294],"6":293,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,295],"27":[1,296],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"92":[1,330],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[1,151],"5":331,"26":[1,6],"49":[1,110],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,137],"3":[2,137],"26":[2,137],"27":[2,137],"49":[1,110],"57":[2,137],"59":[1,125],"77":[2,137],"79":[2,137],"82":[2,137],"92":[2,137],"97":[2,137],"105":[2,137],"107":123,"108":[1,78],"109":[2,137],"110":[1,124],"113":[1,120],"115":[2,137],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,85],"3":[2,85],"26":[2,85],"27":[2,85],"45":[2,85],"49":[2,85],"57":[2,85],"59":[2,85],"70":[2,85],"71":[2,85],"72":[2,85],"73":[2,85],"76":[2,85],"77":[2,85],"78":[2,85],"79":[2,85],"82":[2,85],"88":[2,85],"90":[2,85],"92":[2,85],"97":[2,85],"105":[2,85],"108":[2,85],"109":[2,85],"110":[2,85],"113":[2,85],"115":[2,85],"122":[2,85],"125":[2,85],"128":[2,85],"129":[2,85],"131":[2,85],"132":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[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]},{"3":[2,93],"27":[2,93],"57":[2,93],"82":[2,93]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":332,"48":[1,55]},{"3":[2,94],"27":[2,94],"57":[2,94],"82":[2,94]},{"1":[2,86],"3":[2,86],"26":[2,86],"27":[2,86],"45":[2,86],"49":[2,86],"57":[2,86],"59":[2,86],"70":[2,86],"71":[2,86],"72":[2,86],"73":[2,86],"76":[2,86],"77":[2,86],"78":[2,86],"79":[2,86],"82":[2,86],"88":[2,86],"90":[2,86],"92":[2,86],"97":[2,86],"105":[2,86],"108":[2,86],"109":[2,86],"110":[2,86],"113":[2,86],"115":[2,86],"122":[2,86],"125":[2,86],"128":[2,86],"129":[2,86],"131":[2,86],"132":[2,86],"135":[2,86],"136":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[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]},{"1":[2,96],"3":[2,96],"26":[2,96],"27":[2,96],"49":[2,96],"57":[2,96],"59":[2,96],"77":[2,96],"79":[2,96],"82":[2,96],"92":[2,96],"97":[2,96],"105":[2,96],"108":[2,96],"109":[2,96],"110":[2,96],"113":[2,96],"115":[2,96],"122":[2,96],"125":[2,96],"128":[2,96],"129":[2,96],"131":[2,96],"132":[2,96],"135":[2,96],"136":[2,96],"137":[2,96],"138":[2,96],"139":[2,96],"140":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96]},{"3":[1,304],"24":186,"27":[1,333],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":303,"48":[1,55]},{"3":[2,45],"27":[2,45],"49":[1,110],"57":[2,45],"59":[1,125],"82":[2,45],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[2,46],"27":[2,46],"49":[1,110],"57":[2,46],"59":[1,125],"82":[2,46],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,106],"3":[2,106],"26":[2,106],"27":[2,106],"49":[2,106],"57":[2,106],"59":[2,106],"70":[2,106],"71":[2,106],"72":[2,106],"73":[2,106],"76":[2,106],"77":[2,106],"78":[2,106],"79":[2,106],"82":[2,106],"90":[2,106],"92":[2,106],"97":[2,106],"105":[2,106],"108":[2,106],"109":[2,106],"110":[2,106],"113":[2,106],"115":[2,106],"122":[2,106],"125":[2,106],"128":[2,106],"129":[2,106],"131":[2,106],"132":[2,106],"135":[2,106],"136":[2,106],"137":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106]},{"6":334,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,335],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,52],"3":[2,52],"26":[2,52],"27":[2,52],"49":[2,52],"57":[2,52],"59":[2,52],"77":[2,52],"79":[2,52],"82":[2,52],"92":[2,52],"97":[2,52],"105":[2,52],"108":[2,52],"109":[2,52],"110":[2,52],"113":[2,52],"115":[2,52],"122":[2,52],"125":[2,52],"128":[2,52],"129":[2,52],"131":[2,52],"132":[2,52],"135":[2,52],"136":[2,52],"137":[2,52],"138":[2,52],"139":[2,52],"140":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52]},{"52":[2,60],"57":[2,60],"59":[2,60]},{"1":[2,131],"3":[2,131],"26":[2,131],"27":[2,131],"49":[2,131],"57":[2,131],"59":[2,131],"77":[2,131],"79":[2,131],"82":[2,131],"92":[2,131],"97":[2,131],"105":[2,131],"108":[2,131],"109":[2,131],"110":[2,131],"113":[2,131],"115":[2,131],"122":[2,131],"125":[2,131],"128":[2,131],"129":[2,131],"131":[2,131],"132":[2,131],"135":[2,131],"136":[2,131],"137":[2,131],"138":[2,131],"139":[2,131],"140":[2,131],"141":[2,131],"142":[2,131],"143":[2,131],"144":[2,131],"145":[2,131],"146":[2,131],"147":[2,131],"148":[2,131],"149":[2,131],"150":[2,131],"151":[2,131],"152":[2,131],"153":[2,131],"154":[2,131],"155":[2,131],"156":[2,131],"157":[2,131],"158":[2,131],"159":[2,131],"160":[2,131]},{"1":[2,132],"3":[2,132],"26":[2,132],"27":[2,132],"49":[2,132],"57":[2,132],"59":[2,132],"77":[2,132],"79":[2,132],"82":[2,132],"92":[2,132],"97":[2,132],"101":[2,132],"105":[2,132],"108":[2,132],"109":[2,132],"110":[2,132],"113":[2,132],"115":[2,132],"122":[2,132],"125":[2,132],"128":[2,132],"129":[2,132],"131":[2,132],"132":[2,132],"135":[2,132],"136":[2,132],"137":[2,132],"138":[2,132],"139":[2,132],"140":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132],"150":[2,132],"151":[2,132],"152":[2,132],"153":[2,132],"154":[2,132],"155":[2,132],"156":[2,132],"157":[2,132],"158":[2,132],"159":[2,132],"160":[2,132]},{"1":[2,146],"3":[2,146],"26":[2,146],"27":[2,146],"49":[1,110],"57":[2,146],"59":[1,125],"77":[2,146],"79":[2,146],"82":[2,146],"92":[2,146],"97":[2,146],"105":[2,146],"107":123,"108":[2,146],"109":[2,146],"110":[2,146],"113":[1,120],"115":[2,146],"122":[2,146],"125":[2,146],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,147],"3":[2,147],"26":[2,147],"27":[2,147],"49":[1,110],"57":[2,147],"59":[1,125],"77":[2,147],"79":[2,147],"82":[2,147],"92":[2,147],"97":[2,147],"105":[2,147],"107":123,"108":[2,147],"109":[2,147],"110":[2,147],"113":[1,120],"115":[2,147],"122":[2,147],"125":[2,147],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,148],"3":[2,148],"26":[2,148],"27":[2,148],"49":[2,148],"57":[2,148],"59":[2,148],"77":[2,148],"79":[2,148],"82":[2,148],"92":[2,148],"97":[2,148],"105":[2,148],"108":[2,148],"109":[2,148],"110":[2,148],"113":[2,148],"115":[2,148],"122":[2,148],"125":[2,148],"128":[2,148],"129":[2,148],"131":[2,148],"132":[2,148],"135":[2,148],"136":[2,148],"137":[2,148],"138":[2,148],"139":[2,148],"140":[2,148],"141":[2,148],"142":[2,148],"143":[2,148],"144":[2,148],"145":[2,148],"146":[2,148],"147":[2,148],"148":[2,148],"149":[2,148],"150":[2,148],"151":[2,148],"152":[2,148],"153":[2,148],"154":[2,148],"155":[2,148],"156":[2,148],"157":[2,148],"158":[2,148],"159":[2,148],"160":[2,148]},{"3":[1,151],"5":336,"26":[1,6]},{"27":[2,151],"48":[2,151],"118":[2,151],"120":[2,151]},{"3":[1,151],"5":337,"26":[1,6],"57":[1,338]},{"3":[2,127],"26":[2,127],"49":[1,110],"57":[2,127],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"24":289,"48":[1,55],"119":339,"120":[1,288]},{"1":[2,90],"3":[2,90],"26":[2,90],"27":[2,90],"49":[2,90],"57":[2,90],"59":[2,90],"77":[2,90],"79":[2,90],"82":[2,90],"92":[2,90],"97":[2,90],"105":[2,90],"108":[2,90],"109":[2,90],"110":[2,90],"113":[2,90],"115":[2,90],"122":[2,90],"125":[2,90],"128":[2,90],"129":[2,90],"131":[2,90],"132":[2,90],"135":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[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]},{"49":[1,110],"59":[1,125],"97":[1,340],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[2,61],"6":341,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,61],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,61],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"97":[2,61],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[2,61],"110":[2,61],"113":[2,61],"116":[1,52],"121":77,"122":[2,61],"124":46,"125":[2,61],"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61]},{"3":[2,123],"27":[2,123],"49":[1,110],"57":[2,123],"59":[1,125],"92":[2,123],"97":[2,123],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[2,124],"27":[2,124],"49":[1,110],"57":[2,124],"59":[1,125],"92":[2,124],"97":[2,124],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,108],"3":[2,108],"26":[2,108],"27":[2,108],"49":[2,108],"57":[2,108],"59":[2,108],"77":[2,108],"79":[2,108],"82":[2,108],"92":[2,108],"97":[2,108],"105":[2,108],"108":[2,108],"109":[2,108],"110":[2,108],"113":[2,108],"115":[2,108],"122":[2,108],"125":[2,108],"128":[2,108],"129":[2,108],"131":[2,108],"132":[2,108],"135":[2,108],"136":[2,108],"137":[2,108],"138":[2,108],"139":[2,108],"140":[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]},{"1":[2,159],"3":[2,159],"26":[2,159],"27":[2,159],"49":[2,159],"57":[2,159],"59":[2,159],"77":[2,159],"79":[2,159],"82":[2,159],"92":[2,159],"97":[2,159],"105":[2,159],"108":[2,159],"109":[2,159],"110":[2,159],"113":[2,159],"115":[2,159],"118":[2,159],"122":[2,159],"125":[2,159],"128":[2,159],"129":[2,159],"131":[2,159],"132":[2,159],"135":[2,159],"136":[2,159],"137":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"147":[2,159],"148":[2,159],"149":[2,159],"150":[2,159],"151":[2,159],"152":[2,159],"153":[2,159],"154":[2,159],"155":[2,159],"156":[2,159],"157":[2,159],"158":[2,159],"159":[2,159],"160":[2,159]},{"3":[2,95],"27":[2,95],"57":[2,95],"82":[2,95]},{"1":[2,97],"3":[2,97],"26":[2,97],"27":[2,97],"49":[2,97],"57":[2,97],"59":[2,97],"77":[2,97],"79":[2,97],"82":[2,97],"92":[2,97],"97":[2,97],"105":[2,97],"108":[2,97],"109":[2,97],"110":[2,97],"113":[2,97],"115":[2,97],"122":[2,97],"125":[2,97],"128":[2,97],"129":[2,97],"131":[2,97],"132":[2,97],"135":[2,97],"136":[2,97],"137":[2,97],"138":[2,97],"139":[2,97],"140":[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]},{"49":[1,110],"59":[1,125],"77":[1,342],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"6":343,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,61],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[2,61],"110":[2,61],"113":[2,61],"116":[1,52],"121":77,"122":[2,61],"124":46,"125":[2,61],"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61]},{"27":[1,344]},{"3":[1,345],"27":[2,152],"48":[2,152],"118":[2,152],"120":[2,152]},{"6":346,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"27":[2,154],"48":[2,154],"118":[2,154],"120":[2,154]},{"1":[2,112],"3":[2,112],"26":[2,112],"27":[2,112],"49":[2,112],"57":[2,112],"59":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"76":[2,112],"77":[2,112],"78":[2,112],"79":[2,112],"82":[2,112],"88":[2,112],"90":[2,112],"92":[2,112],"97":[2,112],"105":[2,112],"108":[2,112],"109":[2,112],"110":[2,112],"113":[2,112],"115":[2,112],"122":[2,112],"125":[2,112],"128":[2,112],"129":[2,112],"131":[2,112],"132":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[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]},{"49":[1,110],"59":[1,125],"97":[1,347],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,114],"3":[2,114],"26":[2,114],"27":[2,114],"45":[2,114],"49":[2,114],"57":[2,114],"59":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"76":[2,114],"77":[2,114],"78":[2,114],"79":[2,114],"82":[2,114],"85":[2,114],"88":[2,114],"90":[2,114],"92":[2,114],"97":[2,114],"105":[2,114],"108":[2,114],"109":[2,114],"110":[2,114],"113":[2,114],"115":[2,114],"122":[2,114],"125":[2,114],"128":[2,114],"129":[2,114],"131":[2,114],"132":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[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]},{"49":[1,110],"59":[1,125],"77":[1,348],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,149],"3":[2,149],"26":[2,149],"27":[2,149],"49":[2,149],"57":[2,149],"59":[2,149],"77":[2,149],"79":[2,149],"82":[2,149],"92":[2,149],"97":[2,149],"105":[2,149],"108":[2,149],"109":[2,149],"110":[2,149],"113":[2,149],"115":[2,149],"122":[2,149],"125":[2,149],"128":[2,149],"129":[2,149],"131":[2,149],"132":[2,149],"135":[2,149],"136":[2,149],"137":[2,149],"138":[2,149],"139":[2,149],"140":[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]},{"27":[2,153],"48":[2,153],"118":[2,153],"120":[2,153]},{"3":[2,128],"26":[2,128],"49":[1,110],"57":[2,128],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,113],"3":[2,113],"26":[2,113],"27":[2,113],"49":[2,113],"57":[2,113],"59":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"76":[2,113],"77":[2,113],"78":[2,113],"79":[2,113],"82":[2,113],"88":[2,113],"90":[2,113],"92":[2,113],"97":[2,113],"105":[2,113],"108":[2,113],"109":[2,113],"110":[2,113],"113":[2,113],"115":[2,113],"122":[2,113],"125":[2,113],"128":[2,113],"129":[2,113],"131":[2,113],"132":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[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]},{"1":[2,115],"3":[2,115],"26":[2,115],"27":[2,115],"45":[2,115],"49":[2,115],"57":[2,115],"59":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"73":[2,115],"76":[2,115],"77":[2,115],"78":[2,115],"79":[2,115],"82":[2,115],"85":[2,115],"88":[2,115],"90":[2,115],"92":[2,115],"97":[2,115],"105":[2,115],"108":[2,115],"109":[2,115],"110":[2,115],"113":[2,115],"115":[2,115],"122":[2,115],"125":[2,115],"128":[2,115],"129":[2,115],"131":[2,115],"132":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[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]}], +table: [{"1":[2,1],"2":1,"3":[1,2],"4":3,"5":4,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,6],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[3]},{"1":[2,2],"24":86,"48":[1,55]},{"1":[2,3],"3":[1,87]},{"3":[1,88]},{"1":[2,5],"3":[2,5],"27":[2,5],"49":[1,110],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"4":126,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[1,127],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,8],"3":[2,8],"26":[2,8],"27":[2,8],"49":[2,8],"57":[2,8],"59":[2,8],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,8],"78":[1,139],"79":[2,8],"82":[2,8],"88":[1,128],"89":129,"90":[1,131],"92":[2,8],"97":[2,8],"105":[2,8],"108":[2,8],"109":[2,8],"110":[2,8],"113":[2,8],"115":[2,8],"122":[2,8],"125":[2,8],"128":[2,8],"129":[2,8],"131":[2,8],"132":[2,8],"135":[2,8],"136":[2,8],"137":[2,8],"138":[2,8],"139":[2,8],"140":[2,8],"141":[2,8],"142":[2,8],"143":[2,8],"144":[2,8],"145":[2,8],"146":[2,8],"147":[2,8],"148":[2,8],"149":[2,8],"150":[2,8],"151":[2,8],"152":[2,8],"153":[2,8],"154":[2,8],"155":[2,8],"156":[2,8],"157":[2,8],"158":[2,8],"159":[2,8],"160":[2,8]},{"1":[2,9],"3":[2,9],"26":[2,9],"27":[2,9],"49":[2,9],"57":[2,9],"59":[2,9],"77":[2,9],"79":[2,9],"82":[2,9],"92":[2,9],"97":[2,9],"105":[2,9],"108":[2,9],"109":[2,9],"110":[2,9],"113":[2,9],"115":[2,9],"122":[2,9],"125":[2,9],"128":[2,9],"129":[2,9],"131":[2,9],"132":[2,9],"135":[2,9],"136":[2,9],"137":[2,9],"138":[2,9],"139":[2,9],"140":[2,9],"141":[2,9],"142":[2,9],"143":[2,9],"144":[2,9],"145":[2,9],"146":[2,9],"147":[2,9],"148":[2,9],"149":[2,9],"150":[2,9],"151":[2,9],"152":[2,9],"153":[2,9],"154":[2,9],"155":[2,9],"156":[2,9],"157":[2,9],"158":[2,9],"159":[2,9],"160":[2,9]},{"1":[2,10],"3":[2,10],"26":[2,10],"27":[2,10],"49":[2,10],"57":[2,10],"59":[2,10],"77":[2,10],"79":[2,10],"82":[2,10],"92":[2,10],"97":[2,10],"105":[2,10],"108":[2,10],"109":[2,10],"110":[2,10],"113":[2,10],"115":[2,10],"122":[2,10],"125":[2,10],"128":[2,10],"129":[2,10],"131":[2,10],"132":[2,10],"135":[2,10],"136":[2,10],"137":[2,10],"138":[2,10],"139":[2,10],"140":[2,10],"141":[2,10],"142":[2,10],"143":[2,10],"144":[2,10],"145":[2,10],"146":[2,10],"147":[2,10],"148":[2,10],"149":[2,10],"150":[2,10],"151":[2,10],"152":[2,10],"153":[2,10],"154":[2,10],"155":[2,10],"156":[2,10],"157":[2,10],"158":[2,10],"159":[2,10],"160":[2,10]},{"1":[2,11],"3":[2,11],"26":[2,11],"27":[2,11],"49":[2,11],"57":[2,11],"59":[2,11],"77":[2,11],"79":[2,11],"82":[2,11],"92":[2,11],"97":[2,11],"105":[2,11],"108":[2,11],"109":[2,11],"110":[2,11],"113":[2,11],"115":[2,11],"122":[2,11],"125":[2,11],"128":[2,11],"129":[2,11],"131":[2,11],"132":[2,11],"135":[2,11],"136":[2,11],"137":[2,11],"138":[2,11],"139":[2,11],"140":[2,11],"141":[2,11],"142":[2,11],"143":[2,11],"144":[2,11],"145":[2,11],"146":[2,11],"147":[2,11],"148":[2,11],"149":[2,11],"150":[2,11],"151":[2,11],"152":[2,11],"153":[2,11],"154":[2,11],"155":[2,11],"156":[2,11],"157":[2,11],"158":[2,11],"159":[2,11],"160":[2,11]},{"1":[2,12],"3":[2,12],"26":[2,12],"27":[2,12],"49":[2,12],"57":[2,12],"59":[2,12],"77":[2,12],"79":[2,12],"82":[2,12],"92":[2,12],"97":[2,12],"105":[2,12],"108":[2,12],"109":[2,12],"110":[2,12],"113":[2,12],"115":[2,12],"122":[2,12],"125":[2,12],"128":[2,12],"129":[2,12],"131":[2,12],"132":[2,12],"135":[2,12],"136":[2,12],"137":[2,12],"138":[2,12],"139":[2,12],"140":[2,12],"141":[2,12],"142":[2,12],"143":[2,12],"144":[2,12],"145":[2,12],"146":[2,12],"147":[2,12],"148":[2,12],"149":[2,12],"150":[2,12],"151":[2,12],"152":[2,12],"153":[2,12],"154":[2,12],"155":[2,12],"156":[2,12],"157":[2,12],"158":[2,12],"159":[2,12],"160":[2,12]},{"1":[2,13],"3":[2,13],"26":[2,13],"27":[2,13],"49":[2,13],"57":[2,13],"59":[2,13],"77":[2,13],"79":[2,13],"82":[2,13],"92":[2,13],"97":[2,13],"105":[2,13],"108":[2,13],"109":[2,13],"110":[2,13],"113":[2,13],"115":[2,13],"122":[2,13],"125":[2,13],"128":[2,13],"129":[2,13],"131":[2,13],"132":[2,13],"135":[2,13],"136":[2,13],"137":[2,13],"138":[2,13],"139":[2,13],"140":[2,13],"141":[2,13],"142":[2,13],"143":[2,13],"144":[2,13],"145":[2,13],"146":[2,13],"147":[2,13],"148":[2,13],"149":[2,13],"150":[2,13],"151":[2,13],"152":[2,13],"153":[2,13],"154":[2,13],"155":[2,13],"156":[2,13],"157":[2,13],"158":[2,13],"159":[2,13],"160":[2,13]},{"1":[2,14],"3":[2,14],"26":[2,14],"27":[2,14],"49":[2,14],"57":[2,14],"59":[2,14],"77":[2,14],"79":[2,14],"82":[2,14],"92":[2,14],"97":[2,14],"105":[2,14],"108":[2,14],"109":[2,14],"110":[2,14],"113":[2,14],"115":[2,14],"122":[2,14],"125":[2,14],"128":[2,14],"129":[2,14],"131":[2,14],"132":[2,14],"135":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[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]},{"1":[2,15],"3":[2,15],"26":[2,15],"27":[2,15],"49":[2,15],"57":[2,15],"59":[2,15],"77":[2,15],"79":[2,15],"82":[2,15],"92":[2,15],"97":[2,15],"105":[2,15],"108":[2,15],"109":[2,15],"110":[2,15],"113":[2,15],"115":[2,15],"122":[2,15],"125":[2,15],"128":[2,15],"129":[2,15],"131":[2,15],"132":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[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]},{"1":[2,16],"3":[2,16],"26":[2,16],"27":[2,16],"49":[2,16],"57":[2,16],"59":[2,16],"77":[2,16],"79":[2,16],"82":[2,16],"92":[2,16],"97":[2,16],"105":[2,16],"108":[2,16],"109":[2,16],"110":[2,16],"113":[2,16],"115":[2,16],"122":[2,16],"125":[2,16],"128":[2,16],"129":[2,16],"131":[2,16],"132":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[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]},{"1":[2,17],"3":[2,17],"26":[2,17],"27":[2,17],"49":[2,17],"57":[2,17],"59":[2,17],"77":[2,17],"79":[2,17],"82":[2,17],"92":[2,17],"97":[2,17],"105":[2,17],"108":[2,17],"109":[2,17],"110":[2,17],"113":[2,17],"115":[2,17],"122":[2,17],"125":[2,17],"128":[2,17],"129":[2,17],"131":[2,17],"132":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[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]},{"1":[2,18],"3":[2,18],"26":[2,18],"27":[2,18],"49":[2,18],"57":[2,18],"59":[2,18],"77":[2,18],"79":[2,18],"82":[2,18],"92":[2,18],"97":[2,18],"105":[2,18],"108":[2,18],"109":[2,18],"110":[2,18],"113":[2,18],"115":[2,18],"122":[2,18],"125":[2,18],"128":[2,18],"129":[2,18],"131":[2,18],"132":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[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]},{"1":[2,19],"3":[2,19],"26":[2,19],"27":[2,19],"49":[2,19],"57":[2,19],"59":[2,19],"77":[2,19],"79":[2,19],"82":[2,19],"92":[2,19],"97":[2,19],"105":[2,19],"108":[2,19],"109":[2,19],"110":[2,19],"113":[2,19],"115":[2,19],"122":[2,19],"125":[2,19],"128":[2,19],"129":[2,19],"131":[2,19],"132":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[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]},{"1":[2,20],"3":[2,20],"26":[2,20],"27":[2,20],"49":[2,20],"57":[2,20],"59":[2,20],"77":[2,20],"79":[2,20],"82":[2,20],"92":[2,20],"97":[2,20],"105":[2,20],"108":[2,20],"109":[2,20],"110":[2,20],"113":[2,20],"115":[2,20],"122":[2,20],"125":[2,20],"128":[2,20],"129":[2,20],"131":[2,20],"132":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[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]},{"1":[2,21],"3":[2,21],"26":[2,21],"27":[2,21],"49":[2,21],"57":[2,21],"59":[2,21],"77":[2,21],"79":[2,21],"82":[2,21],"92":[2,21],"97":[2,21],"105":[2,21],"108":[2,21],"109":[2,21],"110":[2,21],"113":[2,21],"115":[2,21],"122":[2,21],"125":[2,21],"128":[2,21],"129":[2,21],"131":[2,21],"132":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[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]},{"1":[2,22],"3":[2,22],"26":[2,22],"27":[2,22],"49":[2,22],"57":[2,22],"59":[2,22],"77":[2,22],"79":[2,22],"82":[2,22],"92":[2,22],"97":[2,22],"105":[2,22],"108":[2,22],"109":[2,22],"110":[2,22],"113":[2,22],"115":[2,22],"122":[2,22],"125":[2,22],"128":[2,22],"129":[2,22],"131":[2,22],"132":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[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]},{"1":[2,23],"3":[2,23],"26":[2,23],"27":[2,23],"49":[2,23],"57":[2,23],"59":[2,23],"77":[2,23],"79":[2,23],"82":[2,23],"92":[2,23],"97":[2,23],"105":[2,23],"108":[2,23],"109":[2,23],"110":[2,23],"113":[2,23],"115":[2,23],"122":[2,23],"125":[2,23],"128":[2,23],"129":[2,23],"131":[2,23],"132":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[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]},{"1":[2,24],"3":[2,24],"26":[2,24],"27":[2,24],"49":[2,24],"57":[2,24],"59":[2,24],"77":[2,24],"79":[2,24],"82":[2,24],"92":[2,24],"97":[2,24],"105":[2,24],"108":[2,24],"109":[2,24],"110":[2,24],"113":[2,24],"115":[2,24],"122":[2,24],"125":[2,24],"128":[2,24],"129":[2,24],"131":[2,24],"132":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[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]},{"1":[2,25],"3":[2,25],"26":[2,25],"27":[2,25],"49":[2,25],"57":[2,25],"59":[2,25],"77":[2,25],"79":[2,25],"82":[2,25],"92":[2,25],"97":[2,25],"105":[2,25],"108":[2,25],"109":[2,25],"110":[2,25],"113":[2,25],"115":[2,25],"122":[2,25],"125":[2,25],"128":[2,25],"129":[2,25],"131":[2,25],"132":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[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]},{"1":[2,26],"3":[2,26],"26":[2,26],"27":[2,26],"49":[2,26],"57":[2,26],"59":[2,26],"77":[2,26],"79":[2,26],"82":[2,26],"92":[2,26],"97":[2,26],"105":[2,26],"108":[2,26],"109":[2,26],"110":[2,26],"113":[2,26],"115":[2,26],"122":[2,26],"125":[2,26],"128":[2,26],"129":[2,26],"131":[2,26],"132":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[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]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"45":[1,140],"49":[2,69],"57":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"88":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"108":[2,69],"109":[2,69],"110":[2,69],"113":[2,69],"115":[2,69],"122":[2,69],"125":[2,69],"128":[2,69],"129":[2,69],"131":[2,69],"132":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[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]},{"1":[2,70],"3":[2,70],"26":[2,70],"27":[2,70],"49":[2,70],"57":[2,70],"59":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"76":[2,70],"77":[2,70],"78":[2,70],"79":[2,70],"82":[2,70],"88":[2,70],"90":[2,70],"92":[2,70],"97":[2,70],"105":[2,70],"108":[2,70],"109":[2,70],"110":[2,70],"113":[2,70],"115":[2,70],"122":[2,70],"125":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[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]},{"1":[2,71],"3":[2,71],"26":[2,71],"27":[2,71],"49":[2,71],"57":[2,71],"59":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"76":[2,71],"77":[2,71],"78":[2,71],"79":[2,71],"82":[2,71],"88":[2,71],"90":[2,71],"92":[2,71],"97":[2,71],"105":[2,71],"108":[2,71],"109":[2,71],"110":[2,71],"113":[2,71],"115":[2,71],"122":[2,71],"125":[2,71],"128":[2,71],"129":[2,71],"131":[2,71],"132":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[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]},{"1":[2,72],"3":[2,72],"26":[2,72],"27":[2,72],"49":[2,72],"57":[2,72],"59":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"77":[2,72],"78":[2,72],"79":[2,72],"82":[2,72],"88":[2,72],"90":[2,72],"92":[2,72],"97":[2,72],"105":[2,72],"108":[2,72],"109":[2,72],"110":[2,72],"113":[2,72],"115":[2,72],"122":[2,72],"125":[2,72],"128":[2,72],"129":[2,72],"131":[2,72],"132":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[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]},{"1":[2,73],"3":[2,73],"26":[2,73],"27":[2,73],"49":[2,73],"57":[2,73],"59":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"76":[2,73],"77":[2,73],"78":[2,73],"79":[2,73],"82":[2,73],"88":[2,73],"90":[2,73],"92":[2,73],"97":[2,73],"105":[2,73],"108":[2,73],"109":[2,73],"110":[2,73],"113":[2,73],"115":[2,73],"122":[2,73],"125":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[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]},{"1":[2,74],"3":[2,74],"26":[2,74],"27":[2,74],"49":[2,74],"57":[2,74],"59":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"76":[2,74],"77":[2,74],"78":[2,74],"79":[2,74],"82":[2,74],"88":[2,74],"90":[2,74],"92":[2,74],"97":[2,74],"105":[2,74],"108":[2,74],"109":[2,74],"110":[2,74],"113":[2,74],"115":[2,74],"122":[2,74],"125":[2,74],"128":[2,74],"129":[2,74],"131":[2,74],"132":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[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]},{"1":[2,98],"3":[2,98],"26":[2,98],"27":[2,98],"49":[2,98],"57":[2,98],"59":[2,98],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,98],"78":[1,139],"79":[2,98],"82":[2,98],"89":141,"90":[1,131],"92":[2,98],"97":[2,98],"105":[2,98],"108":[2,98],"109":[2,98],"110":[2,98],"113":[2,98],"115":[2,98],"122":[2,98],"125":[2,98],"128":[2,98],"129":[2,98],"131":[2,98],"132":[2,98],"135":[2,98],"136":[2,98],"137":[2,98],"138":[2,98],"139":[2,98],"140":[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]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":143,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"94":[1,72],"95":[1,73],"96":[1,71],"104":[1,70]},{"1":[2,100],"3":[2,100],"26":[2,100],"27":[2,100],"49":[2,100],"57":[2,100],"59":[2,100],"77":[2,100],"79":[2,100],"82":[2,100],"92":[2,100],"97":[2,100],"105":[2,100],"108":[2,100],"109":[2,100],"110":[2,100],"113":[2,100],"115":[2,100],"122":[2,100],"125":[2,100],"128":[2,100],"129":[2,100],"131":[2,100],"132":[2,100],"135":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[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]},{"51":147,"52":[2,56],"56":148,"57":[2,56],"58":[1,149]},{"3":[1,151],"5":150,"26":[1,6]},{"6":152,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":153,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":154,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":155,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":156,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":157,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":158,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":159,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":160,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,163],"3":[2,163],"26":[2,163],"27":[2,163],"49":[2,163],"57":[2,163],"59":[2,163],"77":[2,163],"79":[2,163],"82":[2,163],"92":[2,163],"97":[2,163],"105":[2,163],"108":[2,163],"109":[2,163],"110":[2,163],"113":[2,163],"115":[2,163],"122":[2,163],"125":[2,163],"128":[2,163],"129":[2,163],"131":[2,163],"132":[2,163],"135":[2,163],"136":[2,163],"137":[2,163],"138":[2,163],"139":[2,163],"140":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163]},{"3":[1,151],"5":161,"26":[1,6]},{"6":162,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,49],"3":[2,49],"6":163,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,49],"27":[2,49],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,49],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,49],"59":[2,49],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,49],"79":[2,49],"80":[1,81],"82":[2,49],"84":[1,54],"86":[1,33],"87":34,"92":[2,49],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"97":[2,49],"99":[1,47],"103":[1,48],"104":[1,70],"105":[2,49],"106":[1,56],"107":50,"108":[2,49],"109":[2,49],"110":[1,51],"113":[2,49],"115":[2,49],"116":[1,52],"121":77,"122":[2,49],"124":46,"125":[2,49],"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[2,49],"136":[2,49],"137":[2,49],"138":[2,49],"139":[2,49],"140":[2,49],"141":[2,49],"142":[2,49],"143":[2,49],"144":[2,49],"145":[2,49],"146":[2,49],"147":[2,49],"148":[2,49],"149":[2,49],"150":[2,49],"151":[2,49],"152":[2,49],"153":[2,49],"154":[2,49],"155":[2,49],"156":[2,49],"157":[2,49],"158":[2,49],"159":[2,49],"160":[2,49]},{"3":[1,151],"5":164,"26":[1,6]},{"28":166,"29":[1,85],"111":165},{"6":167,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"45":[2,66],"49":[2,66],"57":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"85":[1,168],"88":[2,66],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"108":[2,66],"109":[2,66],"110":[2,66],"113":[2,66],"115":[2,66],"122":[2,66],"125":[2,66],"128":[2,66],"129":[2,66],"131":[2,66],"132":[2,66],"135":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":169,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"94":[1,72],"95":[1,73],"96":[1,71],"104":[1,70]},{"1":[2,50],"3":[2,50],"26":[2,50],"27":[2,50],"48":[2,50],"49":[2,50],"57":[2,50],"59":[2,50],"77":[2,50],"79":[2,50],"82":[2,50],"92":[2,50],"97":[2,50],"101":[2,50],"102":[2,50],"105":[2,50],"108":[2,50],"109":[2,50],"110":[2,50],"113":[2,50],"115":[2,50],"118":[2,50],"120":[2,50],"122":[2,50],"125":[2,50],"128":[2,50],"129":[2,50],"131":[2,50],"132":[2,50],"135":[2,50],"136":[2,50],"137":[2,50],"138":[2,50],"139":[2,50],"140":[2,50],"141":[2,50],"142":[2,50],"143":[2,50],"144":[2,50],"145":[2,50],"146":[2,50],"147":[2,50],"148":[2,50],"149":[2,50],"150":[2,50],"151":[2,50],"152":[2,50],"153":[2,50],"154":[2,50],"155":[2,50],"156":[2,50],"157":[2,50],"158":[2,50],"159":[2,50],"160":[2,50]},{"1":[2,135],"3":[2,135],"26":[2,135],"27":[2,135],"49":[2,135],"57":[2,135],"59":[2,135],"77":[2,135],"79":[2,135],"82":[2,135],"92":[2,135],"97":[2,135],"105":[2,135],"108":[2,135],"109":[2,135],"110":[2,135],"113":[2,135],"115":[2,135],"122":[2,135],"125":[2,135],"128":[2,135],"129":[2,135],"131":[2,135],"132":[2,135],"135":[2,135],"136":[2,135],"137":[2,135],"138":[2,135],"139":[2,135],"140":[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]},{"1":[2,67],"3":[2,67],"26":[2,67],"27":[2,67],"45":[2,67],"49":[2,67],"57":[2,67],"59":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"76":[2,67],"77":[2,67],"78":[2,67],"79":[2,67],"82":[2,67],"88":[2,67],"90":[2,67],"92":[2,67],"97":[2,67],"105":[2,67],"108":[2,67],"109":[2,67],"110":[2,67],"113":[2,67],"115":[2,67],"122":[2,67],"125":[2,67],"128":[2,67],"129":[2,67],"131":[2,67],"132":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67]},{"1":[2,68],"3":[2,68],"26":[2,68],"27":[2,68],"45":[2,68],"49":[2,68],"57":[2,68],"59":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"76":[2,68],"77":[2,68],"78":[2,68],"79":[2,68],"82":[2,68],"88":[2,68],"90":[2,68],"92":[2,68],"97":[2,68],"105":[2,68],"108":[2,68],"109":[2,68],"110":[2,68],"113":[2,68],"115":[2,68],"122":[2,68],"125":[2,68],"128":[2,68],"129":[2,68],"131":[2,68],"132":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68],"140":[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]},{"1":[2,33],"3":[2,33],"26":[2,33],"27":[2,33],"49":[2,33],"57":[2,33],"59":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"76":[2,33],"77":[2,33],"78":[2,33],"79":[2,33],"82":[2,33],"88":[2,33],"90":[2,33],"92":[2,33],"97":[2,33],"105":[2,33],"108":[2,33],"109":[2,33],"110":[2,33],"113":[2,33],"115":[2,33],"122":[2,33],"125":[2,33],"128":[2,33],"129":[2,33],"131":[2,33],"132":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[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]},{"1":[2,34],"3":[2,34],"26":[2,34],"27":[2,34],"49":[2,34],"57":[2,34],"59":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"76":[2,34],"77":[2,34],"78":[2,34],"79":[2,34],"82":[2,34],"88":[2,34],"90":[2,34],"92":[2,34],"97":[2,34],"105":[2,34],"108":[2,34],"109":[2,34],"110":[2,34],"113":[2,34],"115":[2,34],"122":[2,34],"125":[2,34],"128":[2,34],"129":[2,34],"131":[2,34],"132":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[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]},{"1":[2,35],"3":[2,35],"26":[2,35],"27":[2,35],"49":[2,35],"57":[2,35],"59":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"76":[2,35],"77":[2,35],"78":[2,35],"79":[2,35],"82":[2,35],"88":[2,35],"90":[2,35],"92":[2,35],"97":[2,35],"105":[2,35],"108":[2,35],"109":[2,35],"110":[2,35],"113":[2,35],"115":[2,35],"122":[2,35],"125":[2,35],"128":[2,35],"129":[2,35],"131":[2,35],"132":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[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]},{"1":[2,36],"3":[2,36],"26":[2,36],"27":[2,36],"49":[2,36],"57":[2,36],"59":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"76":[2,36],"77":[2,36],"78":[2,36],"79":[2,36],"82":[2,36],"88":[2,36],"90":[2,36],"92":[2,36],"97":[2,36],"105":[2,36],"108":[2,36],"109":[2,36],"110":[2,36],"113":[2,36],"115":[2,36],"122":[2,36],"125":[2,36],"128":[2,36],"129":[2,36],"131":[2,36],"132":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[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]},{"1":[2,37],"3":[2,37],"26":[2,37],"27":[2,37],"49":[2,37],"57":[2,37],"59":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"76":[2,37],"77":[2,37],"78":[2,37],"79":[2,37],"82":[2,37],"88":[2,37],"90":[2,37],"92":[2,37],"97":[2,37],"105":[2,37],"108":[2,37],"109":[2,37],"110":[2,37],"113":[2,37],"115":[2,37],"122":[2,37],"125":[2,37],"128":[2,37],"129":[2,37],"131":[2,37],"132":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[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]},{"1":[2,38],"3":[2,38],"26":[2,38],"27":[2,38],"49":[2,38],"57":[2,38],"59":[2,38],"70":[2,38],"71":[2,38],"72":[2,38],"73":[2,38],"76":[2,38],"77":[2,38],"78":[2,38],"79":[2,38],"82":[2,38],"88":[2,38],"90":[2,38],"92":[2,38],"97":[2,38],"105":[2,38],"108":[2,38],"109":[2,38],"110":[2,38],"113":[2,38],"115":[2,38],"122":[2,38],"125":[2,38],"128":[2,38],"129":[2,38],"131":[2,38],"132":[2,38],"135":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[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]},{"1":[2,39],"3":[2,39],"26":[2,39],"27":[2,39],"49":[2,39],"57":[2,39],"59":[2,39],"70":[2,39],"71":[2,39],"72":[2,39],"73":[2,39],"76":[2,39],"77":[2,39],"78":[2,39],"79":[2,39],"82":[2,39],"88":[2,39],"90":[2,39],"92":[2,39],"97":[2,39],"105":[2,39],"108":[2,39],"109":[2,39],"110":[2,39],"113":[2,39],"115":[2,39],"122":[2,39],"125":[2,39],"128":[2,39],"129":[2,39],"131":[2,39],"132":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[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]},{"1":[2,40],"3":[2,40],"26":[2,40],"27":[2,40],"49":[2,40],"57":[2,40],"59":[2,40],"70":[2,40],"71":[2,40],"72":[2,40],"73":[2,40],"76":[2,40],"77":[2,40],"78":[2,40],"79":[2,40],"82":[2,40],"88":[2,40],"90":[2,40],"92":[2,40],"97":[2,40],"105":[2,40],"108":[2,40],"109":[2,40],"110":[2,40],"113":[2,40],"115":[2,40],"122":[2,40],"125":[2,40],"128":[2,40],"129":[2,40],"131":[2,40],"132":[2,40],"135":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[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]},{"1":[2,41],"3":[2,41],"26":[2,41],"27":[2,41],"49":[2,41],"57":[2,41],"59":[2,41],"70":[2,41],"71":[2,41],"72":[2,41],"73":[2,41],"76":[2,41],"77":[2,41],"78":[2,41],"79":[2,41],"82":[2,41],"88":[2,41],"90":[2,41],"92":[2,41],"97":[2,41],"105":[2,41],"108":[2,41],"109":[2,41],"110":[2,41],"113":[2,41],"115":[2,41],"122":[2,41],"125":[2,41],"128":[2,41],"129":[2,41],"131":[2,41],"132":[2,41],"135":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[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]},{"1":[2,42],"3":[2,42],"26":[2,42],"27":[2,42],"49":[2,42],"57":[2,42],"59":[2,42],"70":[2,42],"71":[2,42],"72":[2,42],"73":[2,42],"76":[2,42],"77":[2,42],"78":[2,42],"79":[2,42],"82":[2,42],"88":[2,42],"90":[2,42],"92":[2,42],"97":[2,42],"105":[2,42],"108":[2,42],"109":[2,42],"110":[2,42],"113":[2,42],"115":[2,42],"122":[2,42],"125":[2,42],"128":[2,42],"129":[2,42],"131":[2,42],"132":[2,42],"135":[2,42],"136":[2,42],"137":[2,42],"138":[2,42],"139":[2,42],"140":[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]},{"1":[2,43],"3":[2,43],"26":[2,43],"27":[2,43],"49":[2,43],"57":[2,43],"59":[2,43],"70":[2,43],"71":[2,43],"72":[2,43],"73":[2,43],"76":[2,43],"77":[2,43],"78":[2,43],"79":[2,43],"82":[2,43],"88":[2,43],"90":[2,43],"92":[2,43],"97":[2,43],"105":[2,43],"108":[2,43],"109":[2,43],"110":[2,43],"113":[2,43],"115":[2,43],"122":[2,43],"125":[2,43],"128":[2,43],"129":[2,43],"131":[2,43],"132":[2,43],"135":[2,43],"136":[2,43],"137":[2,43],"138":[2,43],"139":[2,43],"140":[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]},{"6":171,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[2,118],"6":172,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,118],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,118],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"91":173,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"97":[2,118],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,109],"3":[2,109],"26":[2,109],"27":[2,109],"49":[2,109],"57":[2,109],"59":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"76":[2,109],"77":[2,109],"78":[2,109],"79":[2,109],"82":[2,109],"88":[2,109],"90":[2,109],"92":[2,109],"97":[2,109],"105":[2,109],"108":[2,109],"109":[2,109],"110":[2,109],"113":[2,109],"115":[2,109],"122":[2,109],"125":[2,109],"128":[2,109],"129":[2,109],"131":[2,109],"132":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[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]},{"1":[2,110],"3":[2,110],"26":[2,110],"27":[2,110],"28":175,"29":[1,85],"49":[2,110],"57":[2,110],"59":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"73":[2,110],"76":[2,110],"77":[2,110],"78":[2,110],"79":[2,110],"82":[2,110],"88":[2,110],"90":[2,110],"92":[2,110],"97":[2,110],"105":[2,110],"108":[2,110],"109":[2,110],"110":[2,110],"113":[2,110],"115":[2,110],"122":[2,110],"125":[2,110],"128":[2,110],"129":[2,110],"131":[2,110],"132":[2,110],"135":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[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]},{"90":[1,176]},{"3":[2,54],"26":[2,54]},{"3":[2,55],"26":[2,55]},{"1":[2,160],"3":[2,160],"26":[2,160],"27":[2,160],"49":[2,160],"57":[2,160],"59":[2,160],"77":[2,160],"79":[2,160],"82":[2,160],"92":[2,160],"97":[2,160],"105":[2,160],"108":[2,160],"109":[2,160],"110":[2,160],"113":[2,160],"115":[2,160],"118":[1,177],"122":[2,160],"123":178,"125":[2,160],"128":[2,160],"129":[2,160],"131":[2,160],"132":[2,160],"135":[2,160],"136":[2,160],"137":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160]},{"6":179,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,62],"3":[2,62],"26":[2,62],"27":[2,62],"45":[2,62],"49":[2,62],"57":[2,62],"59":[2,62],"70":[2,62],"71":[2,62],"72":[2,62],"73":[2,62],"76":[2,62],"77":[2,62],"78":[2,62],"79":[2,62],"82":[2,62],"85":[2,62],"88":[2,62],"90":[2,62],"92":[2,62],"97":[2,62],"105":[2,62],"108":[2,62],"109":[2,62],"110":[2,62],"113":[2,62],"115":[2,62],"122":[2,62],"125":[2,62],"128":[2,62],"129":[2,62],"131":[2,62],"132":[2,62],"135":[2,62],"136":[2,62],"137":[2,62],"138":[2,62],"139":[2,62],"140":[2,62],"141":[2,62],"142":[2,62],"143":[2,62],"144":[2,62],"145":[2,62],"146":[2,62],"147":[2,62],"148":[2,62],"149":[2,62],"150":[2,62],"151":[2,62],"152":[2,62],"153":[2,62],"154":[2,62],"155":[2,62],"156":[2,62],"157":[2,62],"158":[2,62],"159":[2,62],"160":[2,62]},{"1":[2,65],"3":[2,65],"26":[2,65],"27":[2,65],"45":[2,65],"49":[2,65],"57":[2,65],"59":[2,65],"70":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"76":[2,65],"77":[2,65],"78":[2,65],"79":[2,65],"82":[2,65],"85":[2,65],"88":[2,65],"90":[2,65],"92":[2,65],"97":[2,65],"105":[2,65],"108":[2,65],"109":[2,65],"110":[2,65],"113":[2,65],"115":[2,65],"122":[2,65],"125":[2,65],"128":[2,65],"129":[2,65],"131":[2,65],"132":[2,65],"135":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65]},{"3":[2,91],"24":186,"26":[1,183],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,91],"81":180,"82":[2,91],"83":181},{"1":[2,31],"3":[2,31],"26":[2,31],"27":[2,31],"45":[2,31],"49":[2,31],"57":[2,31],"59":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"76":[2,31],"77":[2,31],"78":[2,31],"79":[2,31],"82":[2,31],"88":[2,31],"90":[2,31],"92":[2,31],"97":[2,31],"105":[2,31],"108":[2,31],"109":[2,31],"110":[2,31],"113":[2,31],"115":[2,31],"122":[2,31],"125":[2,31],"128":[2,31],"129":[2,31],"131":[2,31],"132":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[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]},{"1":[2,32],"3":[2,32],"26":[2,32],"27":[2,32],"45":[2,32],"49":[2,32],"57":[2,32],"59":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"76":[2,32],"77":[2,32],"78":[2,32],"79":[2,32],"82":[2,32],"88":[2,32],"90":[2,32],"92":[2,32],"97":[2,32],"105":[2,32],"108":[2,32],"109":[2,32],"110":[2,32],"113":[2,32],"115":[2,32],"122":[2,32],"125":[2,32],"128":[2,32],"129":[2,32],"131":[2,32],"132":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[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]},{"6":187,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,30],"3":[2,30],"26":[2,30],"27":[2,30],"45":[2,30],"49":[2,30],"57":[2,30],"59":[2,30],"70":[2,30],"71":[2,30],"72":[2,30],"73":[2,30],"76":[2,30],"77":[2,30],"78":[2,30],"79":[2,30],"82":[2,30],"85":[2,30],"88":[2,30],"90":[2,30],"92":[2,30],"97":[2,30],"105":[2,30],"108":[2,30],"109":[2,30],"110":[2,30],"113":[2,30],"114":[2,30],"115":[2,30],"122":[2,30],"125":[2,30],"128":[2,30],"129":[2,30],"131":[2,30],"132":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[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]},{"1":[2,29],"3":[2,29],"26":[2,29],"27":[2,29],"48":[2,29],"49":[2,29],"57":[2,29],"59":[2,29],"77":[2,29],"79":[2,29],"82":[2,29],"92":[2,29],"97":[2,29],"101":[2,29],"102":[2,29],"105":[2,29],"108":[2,29],"109":[2,29],"110":[2,29],"113":[2,29],"115":[2,29],"118":[2,29],"120":[2,29],"122":[2,29],"125":[2,29],"128":[2,29],"129":[2,29],"131":[2,29],"132":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[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]},{"1":[2,7],"3":[2,7],"6":188,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,7],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,4]},{"1":[2,175],"3":[2,175],"26":[2,175],"27":[2,175],"49":[2,175],"57":[2,175],"59":[2,175],"77":[2,175],"79":[2,175],"82":[2,175],"92":[2,175],"97":[2,175],"105":[2,175],"108":[2,175],"109":[2,175],"110":[2,175],"113":[2,175],"115":[2,175],"122":[2,175],"125":[2,175],"128":[2,175],"129":[2,175],"131":[2,175],"132":[2,175],"135":[2,175],"136":[2,175],"137":[2,175],"138":[2,175],"139":[2,175],"140":[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]},{"1":[2,176],"3":[2,176],"26":[2,176],"27":[2,176],"49":[2,176],"57":[2,176],"59":[2,176],"77":[2,176],"79":[2,176],"82":[2,176],"92":[2,176],"97":[2,176],"105":[2,176],"108":[2,176],"109":[2,176],"110":[2,176],"113":[2,176],"115":[2,176],"122":[2,176],"125":[2,176],"128":[2,176],"129":[2,176],"131":[2,176],"132":[2,176],"135":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176],"140":[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]},{"6":189,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":190,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":191,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":192,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":193,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":194,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":195,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":196,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":197,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":198,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":199,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":200,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":201,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":202,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":203,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":204,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":205,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":206,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":207,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,51],"3":[2,51],"6":208,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,51],"27":[2,51],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,51],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,51],"59":[2,51],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,51],"79":[2,51],"80":[1,81],"82":[2,51],"84":[1,54],"86":[1,33],"87":34,"92":[2,51],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"97":[2,51],"99":[1,47],"103":[1,48],"104":[1,70],"105":[2,51],"106":[1,56],"107":50,"108":[2,51],"109":[2,51],"110":[2,51],"113":[2,51],"115":[2,51],"116":[1,52],"121":77,"122":[2,51],"124":46,"125":[2,51],"126":[1,37],"127":[1,38],"128":[2,51],"129":[2,51],"130":[1,41],"131":[2,51],"132":[2,51],"133":[1,44],"134":[1,45],"135":[2,51],"136":[2,51],"137":[2,51],"138":[2,51],"139":[2,51],"140":[2,51],"141":[2,51],"142":[2,51],"143":[2,51],"144":[2,51],"145":[2,51],"146":[2,51],"147":[2,51],"148":[2,51],"149":[2,51],"150":[2,51],"151":[2,51],"152":[2,51],"153":[2,51],"154":[2,51],"155":[2,51],"156":[2,51],"157":[2,51],"158":[2,51],"159":[2,51],"160":[2,51]},{"6":209,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":210,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":211,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":212,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":213,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":214,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":215,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":216,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":217,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":218,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":219,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":220,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,139],"3":[2,139],"26":[2,139],"27":[2,139],"49":[2,139],"57":[2,139],"59":[2,139],"77":[2,139],"79":[2,139],"82":[2,139],"92":[2,139],"97":[2,139],"105":[2,139],"108":[2,139],"109":[2,139],"110":[2,139],"113":[2,139],"115":[2,139],"122":[2,139],"125":[2,139],"128":[2,139],"129":[2,139],"131":[2,139],"132":[2,139],"135":[2,139],"136":[2,139],"137":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139]},{"28":166,"29":[1,85],"111":221},{"59":[1,222]},{"3":[1,87],"27":[1,223]},{"1":[2,28],"3":[2,28],"26":[2,28],"27":[2,28],"48":[2,28],"49":[2,28],"57":[2,28],"59":[2,28],"77":[2,28],"79":[2,28],"82":[2,28],"92":[2,28],"97":[2,28],"101":[2,28],"102":[2,28],"105":[2,28],"108":[2,28],"109":[2,28],"110":[2,28],"113":[2,28],"115":[2,28],"118":[2,28],"120":[2,28],"122":[2,28],"125":[2,28],"128":[2,28],"129":[2,28],"131":[2,28],"132":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[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]},{"89":224,"90":[1,131]},{"1":[2,103],"3":[2,103],"26":[2,103],"27":[2,103],"49":[2,103],"57":[2,103],"59":[2,103],"70":[2,103],"71":[2,103],"72":[2,103],"73":[2,103],"76":[2,103],"77":[2,103],"78":[2,103],"79":[2,103],"82":[2,103],"90":[2,103],"92":[2,103],"97":[2,103],"105":[2,103],"108":[2,103],"109":[2,103],"110":[2,103],"113":[2,103],"115":[2,103],"122":[2,103],"125":[2,103],"128":[2,103],"129":[2,103],"131":[2,103],"132":[2,103],"135":[2,103],"136":[2,103],"137":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103]},{"1":[2,63],"3":[2,63],"26":[2,63],"27":[2,63],"45":[2,63],"49":[2,63],"57":[2,63],"59":[2,63],"70":[2,63],"71":[2,63],"72":[2,63],"73":[2,63],"76":[2,63],"77":[2,63],"78":[2,63],"79":[2,63],"82":[2,63],"85":[2,63],"88":[2,63],"90":[2,63],"92":[2,63],"97":[2,63],"105":[2,63],"108":[2,63],"109":[2,63],"110":[2,63],"113":[2,63],"115":[2,63],"122":[2,63],"125":[2,63],"128":[2,63],"129":[2,63],"131":[2,63],"132":[2,63],"135":[2,63],"136":[2,63],"137":[2,63],"138":[2,63],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63]},{"3":[2,118],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,118],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,118],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"91":225,"92":[2,118],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"28":227,"29":[1,85]},{"28":228,"29":[1,85]},{"1":[2,77],"3":[2,77],"26":[2,77],"27":[2,77],"45":[2,77],"49":[2,77],"57":[2,77],"59":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"76":[2,77],"77":[2,77],"78":[2,77],"79":[2,77],"82":[2,77],"85":[2,77],"88":[2,77],"90":[2,77],"92":[2,77],"97":[2,77],"105":[2,77],"108":[2,77],"109":[2,77],"110":[2,77],"113":[2,77],"115":[2,77],"122":[2,77],"125":[2,77],"128":[2,77],"129":[2,77],"131":[2,77],"132":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[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]},{"28":229,"29":[1,85]},{"1":[2,79],"3":[2,79],"26":[2,79],"27":[2,79],"45":[2,79],"49":[2,79],"57":[2,79],"59":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"76":[2,79],"77":[2,79],"78":[2,79],"79":[2,79],"82":[2,79],"85":[2,79],"88":[2,79],"90":[2,79],"92":[2,79],"97":[2,79],"105":[2,79],"108":[2,79],"109":[2,79],"110":[2,79],"113":[2,79],"115":[2,79],"122":[2,79],"125":[2,79],"128":[2,79],"129":[2,79],"131":[2,79],"132":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[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]},{"1":[2,80],"3":[2,80],"26":[2,80],"27":[2,80],"45":[2,80],"49":[2,80],"57":[2,80],"59":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"76":[2,80],"77":[2,80],"78":[2,80],"79":[2,80],"82":[2,80],"85":[2,80],"88":[2,80],"90":[2,80],"92":[2,80],"97":[2,80],"105":[2,80],"108":[2,80],"109":[2,80],"110":[2,80],"113":[2,80],"115":[2,80],"122":[2,80],"125":[2,80],"128":[2,80],"129":[2,80],"131":[2,80],"132":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[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]},{"6":230,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":231,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":232,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,104],"3":[2,104],"26":[2,104],"27":[2,104],"49":[2,104],"57":[2,104],"59":[2,104],"70":[2,104],"71":[2,104],"72":[2,104],"73":[2,104],"76":[2,104],"77":[2,104],"78":[2,104],"79":[2,104],"82":[2,104],"90":[2,104],"92":[2,104],"97":[2,104],"105":[2,104],"108":[2,104],"109":[2,104],"110":[2,104],"113":[2,104],"115":[2,104],"122":[2,104],"125":[2,104],"128":[2,104],"129":[2,104],"131":[2,104],"132":[2,104],"135":[2,104],"136":[2,104],"137":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104]},{"1":[2,64],"3":[2,64],"26":[2,64],"27":[2,64],"45":[2,64],"49":[2,64],"57":[2,64],"59":[2,64],"70":[2,64],"71":[2,64],"72":[2,64],"73":[2,64],"76":[2,64],"77":[2,64],"78":[2,64],"79":[2,64],"82":[2,64],"85":[2,64],"88":[2,64],"90":[2,64],"92":[2,64],"97":[2,64],"105":[2,64],"108":[2,64],"109":[2,64],"110":[2,64],"113":[2,64],"115":[2,64],"122":[2,64],"125":[2,64],"128":[2,64],"129":[2,64],"131":[2,64],"132":[2,64],"135":[2,64],"136":[2,64],"137":[2,64],"138":[2,64],"139":[2,64],"140":[2,64],"141":[2,64],"142":[2,64],"143":[2,64],"144":[2,64],"145":[2,64],"146":[2,64],"147":[2,64],"148":[2,64],"149":[2,64],"150":[2,64],"151":[2,64],"152":[2,64],"153":[2,64],"154":[2,64],"155":[2,64],"156":[2,64],"157":[2,64],"158":[2,64],"159":[2,64],"160":[2,64]},{"1":[2,99],"3":[2,99],"26":[2,99],"27":[2,99],"49":[2,99],"57":[2,99],"59":[2,99],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,99],"78":[1,139],"79":[2,99],"82":[2,99],"89":141,"90":[1,131],"92":[2,99],"97":[2,99],"105":[2,99],"108":[2,99],"109":[2,99],"110":[2,99],"113":[2,99],"115":[2,99],"122":[2,99],"125":[2,99],"128":[2,99],"129":[2,99],"131":[2,99],"132":[2,99],"135":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[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]},{"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"89":129,"90":[1,131]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"49":[2,69],"57":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"108":[2,69],"109":[2,69],"110":[2,69],"113":[2,69],"115":[2,69],"122":[2,69],"125":[2,69],"128":[2,69],"129":[2,69],"131":[2,69],"132":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[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]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"49":[2,66],"57":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"108":[2,66],"109":[2,66],"110":[2,66],"113":[2,66],"115":[2,66],"122":[2,66],"125":[2,66],"128":[2,66],"129":[2,66],"131":[2,66],"132":[2,66],"135":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66]},{"52":[1,233],"57":[1,234]},{"52":[2,57],"57":[2,57],"59":[1,235]},{"52":[2,59],"57":[2,59],"59":[2,59]},{"1":[2,53],"3":[2,53],"26":[2,53],"27":[2,53],"49":[2,53],"57":[2,53],"59":[2,53],"77":[2,53],"79":[2,53],"82":[2,53],"92":[2,53],"97":[2,53],"105":[2,53],"108":[2,53],"109":[2,53],"110":[2,53],"113":[2,53],"115":[2,53],"122":[2,53],"125":[2,53],"128":[2,53],"129":[2,53],"131":[2,53],"132":[2,53],"135":[2,53],"136":[2,53],"137":[2,53],"138":[2,53],"139":[2,53],"140":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53]},{"24":86,"48":[1,55]},{"1":[2,166],"3":[2,166],"26":[2,166],"27":[2,166],"49":[1,110],"57":[2,166],"59":[2,166],"77":[2,166],"79":[2,166],"82":[2,166],"92":[2,166],"97":[2,166],"105":[2,166],"107":123,"108":[2,166],"109":[2,166],"110":[2,166],"113":[2,166],"115":[2,166],"122":[2,166],"125":[2,166],"128":[2,166],"129":[2,166],"135":[2,166],"136":[2,166],"137":[2,166],"138":[2,166],"139":[2,166],"140":[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]},{"1":[2,167],"3":[2,167],"26":[2,167],"27":[2,167],"49":[1,110],"57":[2,167],"59":[2,167],"77":[2,167],"79":[2,167],"82":[2,167],"92":[2,167],"97":[2,167],"105":[2,167],"107":123,"108":[2,167],"109":[2,167],"110":[2,167],"113":[2,167],"115":[2,167],"122":[2,167],"125":[2,167],"128":[2,167],"129":[2,167],"135":[2,167],"136":[2,167],"137":[2,167],"138":[2,167],"139":[2,167],"140":[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]},{"1":[2,168],"3":[2,168],"26":[2,168],"27":[2,168],"49":[1,110],"57":[2,168],"59":[2,168],"77":[2,168],"79":[2,168],"82":[2,168],"92":[2,168],"97":[2,168],"105":[2,168],"107":123,"108":[2,168],"109":[2,168],"110":[2,168],"113":[2,168],"115":[2,168],"122":[2,168],"125":[2,168],"128":[2,168],"129":[2,168],"135":[2,168],"136":[2,168],"137":[2,168],"138":[2,168],"139":[2,168],"140":[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]},{"1":[2,169],"3":[2,169],"26":[2,169],"27":[2,169],"49":[1,110],"57":[2,169],"59":[2,169],"77":[2,169],"79":[2,169],"82":[2,169],"92":[2,169],"97":[2,169],"105":[2,169],"107":123,"108":[2,169],"109":[2,169],"110":[2,169],"113":[2,169],"115":[2,169],"122":[2,169],"125":[2,169],"128":[2,169],"129":[2,169],"135":[2,169],"136":[2,169],"137":[2,169],"138":[2,169],"139":[2,169],"140":[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]},{"1":[2,170],"3":[2,170],"26":[2,170],"27":[2,170],"49":[1,110],"57":[2,170],"59":[2,170],"77":[2,170],"79":[2,170],"82":[2,170],"92":[2,170],"97":[2,170],"105":[2,170],"107":123,"108":[2,170],"109":[2,170],"110":[2,170],"113":[2,170],"115":[2,170],"122":[2,170],"125":[2,170],"128":[2,170],"129":[2,170],"135":[2,170],"136":[2,170],"137":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[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]},{"1":[2,171],"3":[2,171],"26":[2,171],"27":[2,171],"49":[1,110],"57":[2,171],"59":[2,171],"77":[2,171],"79":[2,171],"82":[2,171],"92":[2,171],"97":[2,171],"105":[2,171],"107":123,"108":[2,171],"109":[2,171],"110":[2,171],"113":[2,171],"115":[2,171],"122":[2,171],"125":[2,171],"128":[2,171],"129":[2,171],"135":[2,171],"136":[2,171],"137":[2,171],"138":[2,171],"139":[2,171],"140":[2,171],"141":[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]},{"1":[2,172],"3":[2,172],"26":[2,172],"27":[2,172],"49":[1,110],"57":[2,172],"59":[2,172],"77":[2,172],"79":[2,172],"82":[2,172],"92":[2,172],"97":[2,172],"105":[2,172],"107":123,"108":[2,172],"109":[2,172],"110":[2,172],"113":[2,172],"115":[2,172],"122":[2,172],"125":[2,172],"128":[2,172],"129":[2,172],"135":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172]},{"1":[2,173],"3":[2,173],"26":[2,173],"27":[2,173],"49":[1,110],"57":[2,173],"59":[2,173],"77":[2,173],"79":[2,173],"82":[2,173],"92":[2,173],"97":[2,173],"105":[2,173],"107":123,"108":[2,173],"109":[2,173],"110":[2,173],"113":[2,173],"115":[2,173],"122":[2,173],"125":[2,173],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[1,119]},{"1":[2,174],"3":[2,174],"26":[2,174],"27":[2,174],"49":[1,110],"57":[2,174],"59":[2,174],"77":[2,174],"79":[2,174],"82":[2,174],"92":[2,174],"97":[2,174],"105":[2,174],"107":123,"108":[2,174],"109":[2,174],"110":[2,174],"113":[2,174],"115":[2,174],"122":[2,174],"125":[2,174],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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":[1,119]},{"100":236,"101":[1,237],"102":[1,238]},{"1":[2,133],"3":[2,133],"26":[2,133],"27":[2,133],"49":[1,110],"57":[2,133],"59":[1,125],"77":[2,133],"79":[2,133],"82":[2,133],"92":[2,133],"97":[2,133],"105":[2,133],"107":123,"108":[2,133],"109":[2,133],"110":[2,133],"113":[1,120],"115":[2,133],"122":[2,133],"125":[2,133],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,48],"3":[2,48],"26":[2,48],"27":[2,48],"49":[1,110],"57":[2,48],"59":[1,125],"77":[2,48],"79":[2,48],"82":[2,48],"92":[2,48],"97":[2,48],"105":[2,48],"107":123,"108":[2,48],"109":[2,48],"110":[1,124],"113":[1,120],"115":[2,48],"122":[2,48],"125":[2,48],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,138],"3":[2,138],"26":[2,138],"27":[2,138],"49":[2,138],"57":[2,138],"59":[2,138],"77":[2,138],"79":[2,138],"82":[2,138],"92":[2,138],"97":[2,138],"105":[2,138],"108":[2,138],"109":[2,138],"110":[2,138],"113":[2,138],"115":[2,138],"122":[2,138],"125":[2,138],"128":[2,138],"129":[2,138],"131":[2,138],"132":[2,138],"135":[2,138],"136":[2,138],"137":[2,138],"138":[2,138],"139":[2,138],"140":[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]},{"112":239,"113":[1,240],"114":[1,241]},{"57":[1,242],"113":[2,142],"114":[2,142]},{"26":[1,243],"49":[1,110],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"7":244,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"94":[1,72],"95":[1,73],"96":[1,71],"104":[1,70]},{"1":[2,87],"3":[2,87],"26":[1,183],"27":[2,87],"49":[2,87],"57":[2,87],"59":[2,87],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,87],"78":[2,66],"79":[2,87],"82":[2,87],"83":246,"85":[1,245],"90":[2,66],"92":[2,87],"97":[2,87],"105":[2,87],"108":[2,87],"109":[2,87],"110":[2,87],"113":[2,87],"115":[2,87],"122":[2,87],"125":[2,87],"128":[2,87],"129":[2,87],"131":[2,87],"132":[2,87],"135":[2,87],"136":[2,87],"137":[2,87],"138":[2,87],"139":[2,87],"140":[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]},{"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"89":141,"90":[1,131]},{"49":[1,110],"59":[1,125],"105":[1,247],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[2,119],"27":[2,119],"49":[1,110],"57":[2,119],"59":[1,248],"97":[2,119],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,250],"97":[1,249]},{"6":253,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,111],"3":[2,111],"26":[2,111],"27":[2,111],"45":[2,111],"49":[2,111],"57":[2,111],"59":[2,111],"70":[2,111],"71":[2,111],"72":[2,111],"73":[2,111],"76":[2,111],"77":[2,111],"78":[2,111],"79":[2,111],"82":[2,111],"85":[2,111],"88":[2,111],"90":[2,111],"92":[2,111],"97":[2,111],"105":[2,111],"108":[2,111],"109":[2,111],"110":[2,111],"113":[2,111],"115":[2,111],"122":[2,111],"125":[2,111],"128":[2,111],"129":[2,111],"131":[2,111],"132":[2,111],"135":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[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]},{"3":[2,118],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,118],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,118],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"91":254,"92":[2,118],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[1,151],"5":255,"26":[1,6],"122":[1,256]},{"1":[2,159],"3":[2,159],"26":[2,159],"27":[2,159],"49":[2,159],"57":[2,159],"59":[2,159],"77":[2,159],"79":[2,159],"82":[2,159],"92":[2,159],"97":[2,159],"105":[2,159],"108":[2,159],"109":[2,159],"110":[2,159],"113":[2,159],"115":[2,159],"118":[2,159],"122":[2,159],"125":[2,159],"128":[2,159],"129":[2,159],"131":[2,159],"132":[2,159],"135":[2,159],"136":[2,159],"137":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"147":[2,159],"148":[2,159],"149":[2,159],"150":[2,159],"151":[2,159],"152":[2,159],"153":[2,159],"154":[2,159],"155":[2,159],"156":[2,159],"157":[2,159],"158":[2,159],"159":[2,159],"160":[2,159]},{"1":[2,136],"3":[2,136],"26":[2,136],"27":[2,136],"49":[1,110],"57":[2,136],"59":[1,125],"77":[2,136],"79":[2,136],"82":[2,136],"92":[2,136],"97":[2,136],"105":[2,136],"107":123,"108":[1,78],"109":[1,257],"110":[1,124],"113":[1,120],"115":[2,136],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[1,260],"57":[1,259],"82":[1,258]},{"57":[1,262],"82":[1,261]},{"3":[2,92],"27":[2,92],"57":[2,92],"82":[2,92]},{"3":[2,91],"24":186,"27":[2,91],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,91],"81":263},{"45":[1,264]},{"45":[1,265]},{"3":[2,47],"27":[2,47],"57":[2,47],"82":[2,47]},{"3":[1,151],"5":266,"26":[1,6],"49":[1,110],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,6],"3":[2,6],"27":[2,6],"49":[1,110],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,177],"3":[2,177],"26":[2,177],"27":[2,177],"49":[1,110],"57":[2,177],"59":[2,177],"77":[2,177],"79":[2,177],"82":[2,177],"92":[2,177],"97":[2,177],"105":[2,177],"107":123,"108":[2,177],"109":[2,177],"110":[2,177],"113":[2,177],"115":[2,177],"122":[2,177],"125":[2,177],"128":[2,177],"129":[2,177],"131":[1,89],"132":[1,90],"135":[2,177],"136":[2,177],"137":[2,177],"138":[2,177],"139":[2,177],"140":[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]},{"1":[2,178],"3":[2,178],"26":[2,178],"27":[2,178],"49":[1,110],"57":[2,178],"59":[2,178],"77":[2,178],"79":[2,178],"82":[2,178],"92":[2,178],"97":[2,178],"105":[2,178],"107":123,"108":[2,178],"109":[2,178],"110":[2,178],"113":[2,178],"115":[2,178],"122":[2,178],"125":[2,178],"128":[2,178],"129":[2,178],"131":[1,89],"132":[1,90],"135":[2,178],"136":[2,178],"137":[2,178],"138":[2,178],"139":[2,178],"140":[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]},{"1":[2,179],"3":[2,179],"26":[2,179],"27":[2,179],"49":[1,110],"57":[2,179],"59":[2,179],"77":[2,179],"79":[2,179],"82":[2,179],"92":[2,179],"97":[2,179],"105":[2,179],"107":123,"108":[2,179],"109":[2,179],"110":[2,179],"113":[2,179],"115":[2,179],"122":[2,179],"125":[2,179],"128":[2,179],"129":[2,179],"131":[1,89],"132":[1,90],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[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]},{"1":[2,180],"3":[2,180],"26":[2,180],"27":[2,180],"49":[1,110],"57":[2,180],"59":[2,180],"77":[2,180],"79":[2,180],"82":[2,180],"92":[2,180],"97":[2,180],"105":[2,180],"107":123,"108":[2,180],"109":[2,180],"110":[2,180],"113":[2,180],"115":[2,180],"122":[2,180],"125":[2,180],"128":[2,180],"129":[2,180],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[2,180],"139":[2,180],"140":[2,180],"141":[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]},{"1":[2,181],"3":[2,181],"26":[2,181],"27":[2,181],"49":[1,110],"57":[2,181],"59":[2,181],"77":[2,181],"79":[2,181],"82":[2,181],"92":[2,181],"97":[2,181],"105":[2,181],"107":123,"108":[2,181],"109":[2,181],"110":[2,181],"113":[2,181],"115":[2,181],"122":[2,181],"125":[2,181],"128":[2,181],"129":[2,181],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181]},{"1":[2,182],"3":[2,182],"26":[2,182],"27":[2,182],"49":[1,110],"57":[2,182],"59":[2,182],"77":[2,182],"79":[2,182],"82":[2,182],"92":[2,182],"97":[2,182],"105":[2,182],"107":123,"108":[2,182],"109":[2,182],"110":[2,182],"113":[2,182],"115":[2,182],"122":[2,182],"125":[2,182],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182]},{"1":[2,183],"3":[2,183],"26":[2,183],"27":[2,183],"49":[1,110],"57":[2,183],"59":[2,183],"77":[2,183],"79":[2,183],"82":[2,183],"92":[2,183],"97":[2,183],"105":[2,183],"107":123,"108":[2,183],"109":[2,183],"110":[2,183],"113":[2,183],"115":[2,183],"122":[2,183],"125":[2,183],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[2,183],"139":[2,183],"140":[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]},{"1":[2,184],"3":[2,184],"26":[2,184],"27":[2,184],"49":[1,110],"57":[2,184],"59":[2,184],"77":[2,184],"79":[2,184],"82":[2,184],"92":[2,184],"97":[2,184],"105":[2,184],"107":123,"108":[2,184],"109":[2,184],"110":[2,184],"113":[2,184],"115":[2,184],"122":[2,184],"125":[2,184],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[2,184],"139":[2,184],"140":[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]},{"1":[2,185],"3":[2,185],"26":[2,185],"27":[2,185],"49":[1,110],"57":[2,185],"59":[2,185],"77":[2,185],"79":[2,185],"82":[2,185],"92":[2,185],"97":[2,185],"105":[2,185],"107":123,"108":[2,185],"109":[2,185],"110":[2,185],"113":[2,185],"115":[2,185],"122":[2,185],"125":[2,185],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"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]},{"1":[2,186],"3":[2,186],"26":[2,186],"27":[2,186],"49":[1,110],"57":[2,186],"59":[2,186],"77":[2,186],"79":[2,186],"82":[2,186],"92":[2,186],"97":[2,186],"105":[2,186],"107":123,"108":[2,186],"109":[2,186],"110":[2,186],"113":[2,186],"115":[2,186],"122":[2,186],"125":[2,186],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"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]},{"1":[2,187],"3":[2,187],"26":[2,187],"27":[2,187],"49":[1,110],"57":[2,187],"59":[2,187],"77":[2,187],"79":[2,187],"82":[2,187],"92":[2,187],"97":[2,187],"105":[2,187],"107":123,"108":[2,187],"109":[2,187],"110":[2,187],"113":[2,187],"115":[2,187],"122":[2,187],"125":[2,187],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"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]},{"1":[2,188],"3":[2,188],"26":[2,188],"27":[2,188],"49":[1,110],"57":[2,188],"59":[2,188],"77":[2,188],"79":[2,188],"82":[2,188],"92":[2,188],"97":[2,188],"105":[2,188],"107":123,"108":[2,188],"109":[2,188],"110":[2,188],"113":[2,188],"115":[2,188],"122":[2,188],"125":[2,188],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"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]},{"1":[2,189],"3":[2,189],"26":[2,189],"27":[2,189],"49":[1,110],"57":[2,189],"59":[2,189],"77":[2,189],"79":[2,189],"82":[2,189],"92":[2,189],"97":[2,189],"105":[2,189],"107":123,"108":[2,189],"109":[2,189],"110":[2,189],"113":[2,189],"115":[2,189],"122":[2,189],"125":[2,189],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"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]},{"1":[2,190],"3":[2,190],"26":[2,190],"27":[2,190],"49":[1,110],"57":[2,190],"59":[2,190],"77":[2,190],"79":[2,190],"82":[2,190],"92":[2,190],"97":[2,190],"105":[2,190],"107":123,"108":[2,190],"109":[2,190],"110":[2,190],"113":[2,190],"115":[2,190],"122":[2,190],"125":[2,190],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"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]},{"1":[2,191],"3":[2,191],"26":[2,191],"27":[2,191],"49":[1,110],"57":[2,191],"59":[2,191],"77":[2,191],"79":[2,191],"82":[2,191],"92":[2,191],"97":[2,191],"105":[2,191],"107":123,"108":[2,191],"109":[2,191],"110":[2,191],"113":[2,191],"115":[2,191],"122":[2,191],"125":[2,191],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"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]},{"1":[2,192],"3":[2,192],"26":[2,192],"27":[2,192],"49":[1,110],"57":[2,192],"59":[2,192],"77":[2,192],"79":[2,192],"82":[2,192],"92":[2,192],"97":[2,192],"105":[2,192],"107":123,"108":[2,192],"109":[2,192],"110":[2,192],"113":[2,192],"115":[2,192],"122":[2,192],"125":[2,192],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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":[1,119]},{"1":[2,193],"3":[2,193],"26":[2,193],"27":[2,193],"49":[1,110],"57":[2,193],"59":[2,193],"77":[2,193],"79":[2,193],"82":[2,193],"92":[2,193],"97":[2,193],"105":[2,193],"107":123,"108":[2,193],"109":[2,193],"110":[2,193],"113":[2,193],"115":[2,193],"122":[2,193],"125":[2,193],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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":[1,119]},{"1":[2,194],"3":[2,194],"26":[2,194],"27":[2,194],"49":[1,110],"57":[2,194],"59":[2,194],"77":[2,194],"79":[2,194],"82":[2,194],"92":[2,194],"97":[2,194],"105":[2,194],"107":123,"108":[2,194],"109":[2,194],"110":[2,194],"113":[2,194],"115":[2,194],"122":[2,194],"125":[2,194],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"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":[1,119]},{"1":[2,195],"3":[2,195],"26":[2,195],"27":[2,195],"49":[1,110],"57":[2,195],"59":[2,195],"77":[2,195],"79":[2,195],"82":[2,195],"92":[2,195],"97":[2,195],"105":[2,195],"107":123,"108":[2,195],"109":[2,195],"110":[2,195],"113":[2,195],"115":[2,195],"122":[2,195],"125":[2,195],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"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":[1,119]},{"1":[2,196],"3":[2,196],"26":[2,196],"27":[2,196],"49":[2,196],"57":[2,196],"59":[2,196],"77":[2,196],"79":[2,196],"82":[2,196],"92":[2,196],"97":[2,196],"105":[2,196],"107":123,"108":[2,196],"109":[2,196],"110":[2,196],"113":[2,196],"115":[2,196],"122":[2,196],"125":[2,196],"128":[2,196],"129":[2,196],"131":[2,196],"132":[2,196],"135":[2,196],"136":[2,196],"137":[2,196],"138":[2,196],"139":[2,196],"140":[2,196],"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]},{"1":[2,197],"3":[2,197],"26":[2,197],"27":[2,197],"49":[1,110],"57":[2,197],"59":[2,197],"77":[2,197],"79":[2,197],"82":[2,197],"92":[2,197],"97":[2,197],"105":[2,197],"107":123,"108":[2,197],"109":[2,197],"110":[2,197],"113":[2,197],"115":[2,197],"122":[2,197],"125":[2,197],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,198],"3":[2,198],"26":[2,198],"27":[2,198],"49":[1,110],"57":[2,198],"59":[2,198],"77":[2,198],"79":[2,198],"82":[2,198],"92":[2,198],"97":[2,198],"105":[2,198],"107":123,"108":[2,198],"109":[2,198],"110":[2,198],"113":[2,198],"115":[2,198],"122":[2,198],"125":[2,198],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,199],"3":[2,199],"26":[2,199],"27":[2,199],"49":[1,110],"57":[2,199],"59":[2,199],"77":[2,199],"79":[2,199],"82":[2,199],"92":[2,199],"97":[2,199],"105":[2,199],"107":123,"108":[2,199],"109":[2,199],"110":[2,199],"113":[2,199],"115":[2,199],"122":[2,199],"125":[2,199],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,200],"3":[2,200],"26":[2,200],"27":[2,200],"49":[1,110],"57":[2,200],"59":[2,200],"77":[2,200],"79":[2,200],"82":[2,200],"92":[2,200],"97":[2,200],"105":[2,200],"107":123,"108":[2,200],"109":[2,200],"110":[2,200],"113":[2,200],"115":[2,200],"122":[2,200],"125":[2,200],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,201],"3":[2,201],"26":[2,201],"27":[2,201],"49":[1,110],"57":[2,201],"59":[2,201],"77":[2,201],"79":[2,201],"82":[2,201],"92":[2,201],"97":[2,201],"105":[2,201],"107":123,"108":[2,201],"109":[2,201],"110":[2,201],"113":[2,201],"115":[2,201],"122":[2,201],"125":[2,201],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,202],"3":[2,202],"26":[2,202],"27":[2,202],"49":[1,110],"57":[2,202],"59":[2,202],"77":[2,202],"79":[2,202],"82":[2,202],"92":[2,202],"97":[2,202],"105":[2,202],"107":123,"108":[2,202],"109":[2,202],"110":[2,202],"113":[2,202],"115":[2,202],"122":[2,202],"125":[2,202],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,203],"3":[2,203],"26":[2,203],"27":[2,203],"49":[1,110],"57":[2,203],"59":[2,203],"77":[2,203],"79":[2,203],"82":[2,203],"92":[2,203],"97":[2,203],"105":[2,203],"107":123,"108":[2,203],"109":[2,203],"110":[2,203],"113":[2,203],"115":[2,203],"122":[2,203],"125":[2,203],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,204],"3":[2,204],"26":[2,204],"27":[2,204],"49":[1,110],"57":[2,204],"59":[2,204],"77":[2,204],"79":[2,204],"82":[2,204],"92":[2,204],"97":[2,204],"105":[2,204],"107":123,"108":[2,204],"109":[2,204],"110":[2,204],"113":[2,204],"115":[2,204],"122":[2,204],"125":[2,204],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,205],"3":[2,205],"26":[2,205],"27":[2,205],"49":[1,110],"57":[2,205],"59":[2,205],"77":[2,205],"79":[2,205],"82":[2,205],"92":[2,205],"97":[2,205],"105":[2,205],"107":123,"108":[2,205],"109":[2,205],"110":[2,205],"113":[2,205],"115":[2,205],"122":[2,205],"125":[2,205],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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":[1,119]},{"1":[2,206],"3":[2,206],"26":[2,206],"27":[2,206],"49":[1,110],"57":[2,206],"59":[1,125],"77":[2,206],"79":[2,206],"82":[2,206],"92":[2,206],"97":[2,206],"105":[2,206],"107":123,"108":[2,206],"109":[2,206],"110":[2,206],"113":[1,120],"115":[2,206],"122":[2,206],"125":[2,206],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,164],"3":[2,164],"26":[2,164],"27":[2,164],"49":[1,110],"57":[2,164],"59":[1,125],"77":[2,164],"79":[2,164],"82":[2,164],"92":[2,164],"97":[2,164],"105":[2,164],"107":123,"108":[1,78],"109":[2,164],"110":[1,124],"113":[1,120],"115":[2,164],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,165],"3":[2,165],"26":[2,165],"27":[2,165],"49":[1,110],"57":[2,165],"59":[1,125],"77":[2,165],"79":[2,165],"82":[2,165],"92":[2,165],"97":[2,165],"105":[2,165],"107":123,"108":[1,78],"109":[2,165],"110":[1,124],"113":[1,120],"115":[2,165],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"112":267,"113":[1,240],"114":[1,241]},{"59":[1,268]},{"1":[2,27],"3":[2,27],"26":[2,27],"27":[2,27],"48":[2,27],"49":[2,27],"57":[2,27],"59":[2,27],"77":[2,27],"79":[2,27],"82":[2,27],"92":[2,27],"97":[2,27],"101":[2,27],"102":[2,27],"105":[2,27],"108":[2,27],"109":[2,27],"110":[2,27],"113":[2,27],"115":[2,27],"118":[2,27],"120":[2,27],"122":[2,27],"125":[2,27],"128":[2,27],"129":[2,27],"131":[2,27],"132":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[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]},{"1":[2,101],"3":[2,101],"26":[2,101],"27":[2,101],"49":[2,101],"57":[2,101],"59":[2,101],"77":[2,101],"79":[2,101],"82":[2,101],"92":[2,101],"97":[2,101],"105":[2,101],"108":[2,101],"109":[2,101],"110":[2,101],"113":[2,101],"115":[2,101],"122":[2,101],"125":[2,101],"128":[2,101],"129":[2,101],"131":[2,101],"132":[2,101],"135":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[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]},{"3":[1,251],"27":[1,252],"57":[1,270],"92":[1,269]},{"3":[2,119],"27":[2,119],"49":[1,110],"57":[2,119],"59":[1,125],"92":[2,119],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,75],"3":[2,75],"26":[2,75],"27":[2,75],"45":[2,75],"49":[2,75],"57":[2,75],"59":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"76":[2,75],"77":[2,75],"78":[2,75],"79":[2,75],"82":[2,75],"85":[2,75],"88":[2,75],"90":[2,75],"92":[2,75],"97":[2,75],"105":[2,75],"108":[2,75],"109":[2,75],"110":[2,75],"113":[2,75],"115":[2,75],"122":[2,75],"125":[2,75],"128":[2,75],"129":[2,75],"131":[2,75],"132":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[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]},{"1":[2,76],"3":[2,76],"26":[2,76],"27":[2,76],"45":[2,76],"49":[2,76],"57":[2,76],"59":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"76":[2,76],"77":[2,76],"78":[2,76],"79":[2,76],"82":[2,76],"85":[2,76],"88":[2,76],"90":[2,76],"92":[2,76],"97":[2,76],"105":[2,76],"108":[2,76],"109":[2,76],"110":[2,76],"113":[2,76],"115":[2,76],"122":[2,76],"125":[2,76],"128":[2,76],"129":[2,76],"131":[2,76],"132":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[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]},{"1":[2,78],"3":[2,78],"26":[2,78],"27":[2,78],"45":[2,78],"49":[2,78],"57":[2,78],"59":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"76":[2,78],"77":[2,78],"78":[2,78],"79":[2,78],"82":[2,78],"85":[2,78],"88":[2,78],"90":[2,78],"92":[2,78],"97":[2,78],"105":[2,78],"108":[2,78],"109":[2,78],"110":[2,78],"113":[2,78],"115":[2,78],"122":[2,78],"125":[2,78],"128":[2,78],"129":[2,78],"131":[2,78],"132":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[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]},{"49":[1,110],"59":[1,272],"77":[1,271],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"49":[1,110],"59":[1,125],"79":[1,273],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,44],"3":[2,44],"26":[2,44],"27":[2,44],"49":[1,110],"57":[2,44],"59":[1,125],"77":[2,44],"79":[2,44],"82":[2,44],"92":[2,44],"97":[2,44],"105":[2,44],"107":123,"108":[2,44],"109":[2,44],"110":[1,124],"113":[1,120],"115":[2,44],"122":[2,44],"125":[2,44],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"53":274,"54":[1,75],"55":[1,76]},{"56":275,"58":[1,149]},{"59":[1,276]},{"1":[2,129],"3":[2,129],"26":[2,129],"27":[2,129],"49":[2,129],"57":[2,129],"59":[2,129],"77":[2,129],"79":[2,129],"82":[2,129],"92":[2,129],"97":[2,129],"101":[1,277],"105":[2,129],"108":[2,129],"109":[2,129],"110":[2,129],"113":[2,129],"115":[2,129],"122":[2,129],"125":[2,129],"128":[2,129],"129":[2,129],"131":[2,129],"132":[2,129],"135":[2,129],"136":[2,129],"137":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129]},{"3":[1,151],"5":278,"26":[1,6]},{"28":279,"29":[1,85]},{"3":[1,151],"5":280,"26":[1,6]},{"6":281,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":282,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"28":283,"29":[1,85]},{"24":287,"48":[1,55],"117":284,"119":285,"120":[1,286]},{"1":[2,102],"3":[2,102],"26":[2,102],"27":[2,102],"49":[2,102],"57":[2,102],"59":[2,102],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,102],"78":[1,139],"79":[2,102],"82":[2,102],"89":129,"90":[1,131],"92":[2,102],"97":[2,102],"105":[2,102],"108":[2,102],"109":[2,102],"110":[2,102],"113":[2,102],"115":[2,102],"122":[2,102],"125":[2,102],"128":[2,102],"129":[2,102],"131":[2,102],"132":[2,102],"135":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"147":[2,102],"148":[2,102],"149":[2,102],"150":[2,102],"151":[2,102],"152":[2,102],"153":[2,102],"154":[2,102],"155":[2,102],"156":[2,102],"157":[2,102],"158":[2,102],"159":[2,102],"160":[2,102]},{"7":288,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"94":[1,72],"95":[1,73],"96":[1,71],"104":[1,70]},{"1":[2,89],"3":[2,89],"26":[2,89],"27":[2,89],"49":[2,89],"57":[2,89],"59":[2,89],"77":[2,89],"79":[2,89],"82":[2,89],"92":[2,89],"97":[2,89],"105":[2,89],"108":[2,89],"109":[2,89],"110":[2,89],"113":[2,89],"115":[2,89],"122":[2,89],"125":[2,89],"128":[2,89],"129":[2,89],"131":[2,89],"132":[2,89],"135":[2,89],"136":[2,89],"137":[2,89],"138":[2,89],"139":[2,89],"140":[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]},{"1":[2,134],"3":[2,134],"26":[2,134],"27":[2,134],"49":[2,134],"57":[2,134],"59":[2,134],"70":[2,134],"71":[2,134],"72":[2,134],"73":[2,134],"76":[2,134],"77":[2,134],"78":[2,134],"79":[2,134],"82":[2,134],"88":[2,134],"90":[2,134],"92":[2,134],"97":[2,134],"105":[2,134],"108":[2,134],"109":[2,134],"110":[2,134],"113":[2,134],"115":[2,134],"122":[2,134],"125":[2,134],"128":[2,134],"129":[2,134],"131":[2,134],"132":[2,134],"135":[2,134],"136":[2,134],"137":[2,134],"138":[2,134],"139":[2,134],"140":[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]},{"59":[1,289]},{"1":[2,116],"3":[2,116],"26":[2,116],"27":[2,116],"45":[2,116],"49":[2,116],"57":[2,116],"59":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"73":[2,116],"76":[2,116],"77":[2,116],"78":[2,116],"79":[2,116],"82":[2,116],"88":[2,116],"90":[2,116],"92":[2,116],"97":[2,116],"105":[2,116],"108":[2,116],"109":[2,116],"110":[2,116],"113":[2,116],"115":[2,116],"122":[2,116],"125":[2,116],"128":[2,116],"129":[2,116],"131":[2,116],"132":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[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]},{"3":[1,292],"6":291,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,293],"27":[1,294],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"97":[1,290],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":295,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[2,125],"27":[2,125],"57":[2,125],"92":[2,125],"97":[2,125]},{"3":[2,120],"27":[2,120],"49":[1,110],"57":[2,120],"59":[1,125],"92":[2,120],"97":[2,120],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,297],"92":[1,296]},{"1":[2,161],"3":[2,161],"26":[2,161],"27":[2,161],"49":[2,161],"57":[2,161],"59":[2,161],"77":[2,161],"79":[2,161],"82":[2,161],"92":[2,161],"97":[2,161],"105":[2,161],"108":[2,161],"109":[2,161],"110":[2,161],"113":[2,161],"115":[2,161],"122":[2,161],"125":[2,161],"128":[2,161],"129":[2,161],"131":[2,161],"132":[2,161],"135":[2,161],"136":[2,161],"137":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161]},{"6":298,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":299,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,83],"3":[2,83],"26":[2,83],"27":[2,83],"45":[2,83],"49":[2,83],"57":[2,83],"59":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"76":[2,83],"77":[2,83],"78":[2,83],"79":[2,83],"82":[2,83],"88":[2,83],"90":[2,83],"92":[2,83],"97":[2,83],"105":[2,83],"108":[2,83],"109":[2,83],"110":[2,83],"113":[2,83],"115":[2,83],"122":[2,83],"125":[2,83],"128":[2,83],"129":[2,83],"131":[2,83],"132":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[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]},{"3":[1,302],"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":301,"48":[1,55],"82":[1,300]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":303,"48":[1,55]},{"1":[2,84],"3":[2,84],"26":[2,84],"27":[2,84],"45":[2,84],"49":[2,84],"57":[2,84],"59":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"76":[2,84],"77":[2,84],"78":[2,84],"79":[2,84],"82":[2,84],"88":[2,84],"90":[2,84],"92":[2,84],"97":[2,84],"105":[2,84],"108":[2,84],"109":[2,84],"110":[2,84],"113":[2,84],"115":[2,84],"122":[2,84],"125":[2,84],"128":[2,84],"129":[2,84],"131":[2,84],"132":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[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]},{"82":[1,304]},{"3":[1,260],"27":[1,305],"57":[1,306]},{"6":307,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":308,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,158],"3":[2,158],"26":[2,158],"27":[2,158],"49":[2,158],"57":[2,158],"59":[2,158],"77":[2,158],"79":[2,158],"82":[2,158],"92":[2,158],"97":[2,158],"105":[2,158],"108":[2,158],"109":[2,158],"110":[2,158],"113":[2,158],"115":[2,158],"118":[2,158],"122":[2,158],"125":[2,158],"128":[2,158],"129":[2,158],"131":[2,158],"132":[2,158],"135":[2,158],"136":[2,158],"137":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"147":[2,158],"148":[2,158],"149":[2,158],"150":[2,158],"151":[2,158],"152":[2,158],"153":[2,158],"154":[2,158],"155":[2,158],"156":[2,158],"157":[2,158],"158":[2,158],"159":[2,158],"160":[2,158]},{"1":[2,140],"3":[2,140],"26":[2,140],"27":[2,140],"49":[2,140],"57":[2,140],"59":[2,140],"77":[2,140],"79":[2,140],"82":[2,140],"92":[2,140],"97":[2,140],"105":[2,140],"108":[2,140],"109":[2,140],"110":[2,140],"113":[2,140],"115":[2,140],"122":[2,140],"125":[2,140],"128":[2,140],"129":[2,140],"131":[2,140],"132":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140]},{"1":[2,61],"3":[2,61],"26":[2,61],"27":[2,61],"49":[2,61],"57":[2,61],"59":[2,61],"77":[2,61],"79":[2,61],"82":[2,61],"92":[2,61],"97":[2,61],"105":[2,61],"108":[2,61],"109":[2,61],"110":[2,61],"113":[2,61],"115":[2,61],"122":[2,61],"125":[2,61],"128":[2,61],"129":[2,61],"131":[2,61],"132":[2,61],"135":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61]},{"1":[2,105],"3":[2,105],"26":[2,105],"27":[2,105],"49":[2,105],"57":[2,105],"59":[2,105],"70":[2,105],"71":[2,105],"72":[2,105],"73":[2,105],"76":[2,105],"77":[2,105],"78":[2,105],"79":[2,105],"82":[2,105],"90":[2,105],"92":[2,105],"97":[2,105],"105":[2,105],"108":[2,105],"109":[2,105],"110":[2,105],"113":[2,105],"115":[2,105],"122":[2,105],"125":[2,105],"128":[2,105],"129":[2,105],"131":[2,105],"132":[2,105],"135":[2,105],"136":[2,105],"137":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105]},{"3":[1,292],"6":291,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,293],"27":[1,294],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"92":[1,309],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,81],"3":[2,81],"26":[2,81],"27":[2,81],"45":[2,81],"49":[2,81],"57":[2,81],"59":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"76":[2,81],"77":[2,81],"78":[2,81],"79":[2,81],"82":[2,81],"85":[2,81],"88":[2,81],"90":[2,81],"92":[2,81],"97":[2,81],"105":[2,81],"108":[2,81],"109":[2,81],"110":[2,81],"113":[2,81],"115":[2,81],"122":[2,81],"125":[2,81],"128":[2,81],"129":[2,81],"131":[2,81],"132":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[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]},{"59":[1,310]},{"1":[2,82],"3":[2,82],"26":[2,82],"27":[2,82],"45":[2,82],"49":[2,82],"57":[2,82],"59":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"76":[2,82],"77":[2,82],"78":[2,82],"79":[2,82],"82":[2,82],"85":[2,82],"88":[2,82],"90":[2,82],"92":[2,82],"97":[2,82],"105":[2,82],"108":[2,82],"109":[2,82],"110":[2,82],"113":[2,82],"115":[2,82],"122":[2,82],"125":[2,82],"128":[2,82],"129":[2,82],"131":[2,82],"132":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[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]},{"3":[1,151],"5":311,"26":[1,6]},{"52":[2,58],"57":[2,58],"59":[1,235]},{"59":[1,312]},{"3":[1,151],"5":313,"26":[1,6]},{"1":[2,130],"3":[2,130],"26":[2,130],"27":[2,130],"49":[2,130],"57":[2,130],"59":[2,130],"77":[2,130],"79":[2,130],"82":[2,130],"92":[2,130],"97":[2,130],"105":[2,130],"108":[2,130],"109":[2,130],"110":[2,130],"113":[2,130],"115":[2,130],"122":[2,130],"125":[2,130],"128":[2,130],"129":[2,130],"131":[2,130],"132":[2,130],"135":[2,130],"136":[2,130],"137":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130]},{"3":[1,151],"5":314,"26":[1,6]},{"1":[2,141],"3":[2,141],"26":[2,141],"27":[2,141],"49":[2,141],"57":[2,141],"59":[2,141],"77":[2,141],"79":[2,141],"82":[2,141],"92":[2,141],"97":[2,141],"105":[2,141],"108":[2,141],"109":[2,141],"110":[2,141],"113":[2,141],"115":[2,141],"122":[2,141],"125":[2,141],"128":[2,141],"129":[2,141],"131":[2,141],"132":[2,141],"135":[2,141],"136":[2,141],"137":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141]},{"1":[2,144],"3":[2,144],"26":[2,144],"27":[2,144],"49":[1,110],"57":[2,144],"59":[1,125],"77":[2,144],"79":[2,144],"82":[2,144],"92":[2,144],"97":[2,144],"105":[2,144],"107":123,"108":[2,144],"109":[1,315],"110":[2,144],"113":[1,120],"115":[1,316],"122":[2,144],"125":[2,144],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,145],"3":[2,145],"26":[2,145],"27":[2,145],"49":[1,110],"57":[2,145],"59":[1,125],"77":[2,145],"79":[2,145],"82":[2,145],"92":[2,145],"97":[2,145],"105":[2,145],"107":123,"108":[2,145],"109":[1,317],"110":[2,145],"113":[1,120],"115":[2,145],"122":[2,145],"125":[2,145],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"113":[2,143],"114":[2,143]},{"24":287,"27":[1,318],"48":[1,55],"118":[1,319],"119":320,"120":[1,286]},{"27":[2,153],"48":[2,153],"118":[2,153],"120":[2,153]},{"6":322,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"98":321,"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[1,323]},{"1":[2,88],"3":[2,88],"26":[1,183],"27":[2,88],"49":[2,88],"57":[2,88],"59":[2,88],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,88],"78":[1,139],"79":[2,88],"82":[2,88],"83":324,"89":129,"90":[1,131],"92":[2,88],"97":[2,88],"105":[2,88],"108":[2,88],"109":[2,88],"110":[2,88],"113":[2,88],"115":[2,88],"122":[2,88],"125":[2,88],"128":[2,88],"129":[2,88],"131":[2,88],"132":[2,88],"135":[2,88],"136":[2,88],"137":[2,88],"138":[2,88],"139":[2,88],"140":[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]},{"6":325,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,326],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,117],"3":[2,117],"26":[2,117],"27":[2,117],"45":[2,117],"49":[2,117],"57":[2,117],"59":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"73":[2,117],"76":[2,117],"77":[2,117],"78":[2,117],"79":[2,117],"82":[2,117],"88":[2,117],"90":[2,117],"92":[2,117],"97":[2,117],"105":[2,117],"108":[2,117],"109":[2,117],"110":[2,117],"113":[2,117],"115":[2,117],"122":[2,117],"125":[2,117],"128":[2,117],"129":[2,117],"131":[2,117],"132":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[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]},{"3":[2,121],"27":[2,121],"49":[1,110],"57":[2,121],"59":[1,125],"92":[2,121],"97":[2,121],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"6":327,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":328,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[2,126],"27":[2,126],"57":[2,126],"92":[2,126],"97":[2,126]},{"3":[2,122],"27":[2,122],"49":[1,110],"57":[2,122],"59":[1,125],"92":[2,122],"97":[2,122],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,107],"3":[2,107],"26":[2,107],"27":[2,107],"49":[2,107],"57":[2,107],"59":[2,107],"77":[2,107],"79":[2,107],"82":[2,107],"92":[2,107],"97":[2,107],"105":[2,107],"108":[2,107],"109":[2,107],"110":[2,107],"113":[2,107],"115":[2,107],"122":[2,107],"125":[2,107],"128":[2,107],"129":[2,107],"131":[2,107],"132":[2,107],"135":[2,107],"136":[2,107],"137":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107]},{"3":[1,292],"6":291,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,293],"27":[1,294],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"92":[1,329],"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"3":[1,151],"5":330,"26":[1,6],"49":[1,110],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,137],"3":[2,137],"26":[2,137],"27":[2,137],"49":[1,110],"57":[2,137],"59":[1,125],"77":[2,137],"79":[2,137],"82":[2,137],"92":[2,137],"97":[2,137],"105":[2,137],"107":123,"108":[1,78],"109":[2,137],"110":[1,124],"113":[1,120],"115":[2,137],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,85],"3":[2,85],"26":[2,85],"27":[2,85],"45":[2,85],"49":[2,85],"57":[2,85],"59":[2,85],"70":[2,85],"71":[2,85],"72":[2,85],"73":[2,85],"76":[2,85],"77":[2,85],"78":[2,85],"79":[2,85],"82":[2,85],"88":[2,85],"90":[2,85],"92":[2,85],"97":[2,85],"105":[2,85],"108":[2,85],"109":[2,85],"110":[2,85],"113":[2,85],"115":[2,85],"122":[2,85],"125":[2,85],"128":[2,85],"129":[2,85],"131":[2,85],"132":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[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]},{"3":[2,93],"27":[2,93],"57":[2,93],"82":[2,93]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":331,"48":[1,55]},{"3":[2,94],"27":[2,94],"57":[2,94],"82":[2,94]},{"1":[2,86],"3":[2,86],"26":[2,86],"27":[2,86],"45":[2,86],"49":[2,86],"57":[2,86],"59":[2,86],"70":[2,86],"71":[2,86],"72":[2,86],"73":[2,86],"76":[2,86],"77":[2,86],"78":[2,86],"79":[2,86],"82":[2,86],"88":[2,86],"90":[2,86],"92":[2,86],"97":[2,86],"105":[2,86],"108":[2,86],"109":[2,86],"110":[2,86],"113":[2,86],"115":[2,86],"122":[2,86],"125":[2,86],"128":[2,86],"129":[2,86],"131":[2,86],"132":[2,86],"135":[2,86],"136":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[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]},{"1":[2,96],"3":[2,96],"26":[2,96],"27":[2,96],"49":[2,96],"57":[2,96],"59":[2,96],"77":[2,96],"79":[2,96],"82":[2,96],"92":[2,96],"97":[2,96],"105":[2,96],"108":[2,96],"109":[2,96],"110":[2,96],"113":[2,96],"115":[2,96],"122":[2,96],"125":[2,96],"128":[2,96],"129":[2,96],"131":[2,96],"132":[2,96],"135":[2,96],"136":[2,96],"137":[2,96],"138":[2,96],"139":[2,96],"140":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96]},{"3":[1,302],"24":186,"27":[1,332],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":301,"48":[1,55]},{"3":[2,45],"27":[2,45],"49":[1,110],"57":[2,45],"59":[1,125],"82":[2,45],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[2,46],"27":[2,46],"49":[1,110],"57":[2,46],"59":[1,125],"82":[2,46],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,106],"3":[2,106],"26":[2,106],"27":[2,106],"49":[2,106],"57":[2,106],"59":[2,106],"70":[2,106],"71":[2,106],"72":[2,106],"73":[2,106],"76":[2,106],"77":[2,106],"78":[2,106],"79":[2,106],"82":[2,106],"90":[2,106],"92":[2,106],"97":[2,106],"105":[2,106],"108":[2,106],"109":[2,106],"110":[2,106],"113":[2,106],"115":[2,106],"122":[2,106],"125":[2,106],"128":[2,106],"129":[2,106],"131":[2,106],"132":[2,106],"135":[2,106],"136":[2,106],"137":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106]},{"6":333,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,334],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,52],"3":[2,52],"26":[2,52],"27":[2,52],"49":[2,52],"57":[2,52],"59":[2,52],"77":[2,52],"79":[2,52],"82":[2,52],"92":[2,52],"97":[2,52],"105":[2,52],"108":[2,52],"109":[2,52],"110":[2,52],"113":[2,52],"115":[2,52],"122":[2,52],"125":[2,52],"128":[2,52],"129":[2,52],"131":[2,52],"132":[2,52],"135":[2,52],"136":[2,52],"137":[2,52],"138":[2,52],"139":[2,52],"140":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52]},{"52":[2,60],"57":[2,60],"59":[2,60]},{"1":[2,131],"3":[2,131],"26":[2,131],"27":[2,131],"49":[2,131],"57":[2,131],"59":[2,131],"77":[2,131],"79":[2,131],"82":[2,131],"92":[2,131],"97":[2,131],"105":[2,131],"108":[2,131],"109":[2,131],"110":[2,131],"113":[2,131],"115":[2,131],"122":[2,131],"125":[2,131],"128":[2,131],"129":[2,131],"131":[2,131],"132":[2,131],"135":[2,131],"136":[2,131],"137":[2,131],"138":[2,131],"139":[2,131],"140":[2,131],"141":[2,131],"142":[2,131],"143":[2,131],"144":[2,131],"145":[2,131],"146":[2,131],"147":[2,131],"148":[2,131],"149":[2,131],"150":[2,131],"151":[2,131],"152":[2,131],"153":[2,131],"154":[2,131],"155":[2,131],"156":[2,131],"157":[2,131],"158":[2,131],"159":[2,131],"160":[2,131]},{"1":[2,132],"3":[2,132],"26":[2,132],"27":[2,132],"49":[2,132],"57":[2,132],"59":[2,132],"77":[2,132],"79":[2,132],"82":[2,132],"92":[2,132],"97":[2,132],"101":[2,132],"105":[2,132],"108":[2,132],"109":[2,132],"110":[2,132],"113":[2,132],"115":[2,132],"122":[2,132],"125":[2,132],"128":[2,132],"129":[2,132],"131":[2,132],"132":[2,132],"135":[2,132],"136":[2,132],"137":[2,132],"138":[2,132],"139":[2,132],"140":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132],"150":[2,132],"151":[2,132],"152":[2,132],"153":[2,132],"154":[2,132],"155":[2,132],"156":[2,132],"157":[2,132],"158":[2,132],"159":[2,132],"160":[2,132]},{"6":335,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":336,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":337,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,151],"3":[2,151],"26":[2,151],"27":[2,151],"49":[2,151],"57":[2,151],"59":[2,151],"77":[2,151],"79":[2,151],"82":[2,151],"92":[2,151],"97":[2,151],"105":[2,151],"108":[2,151],"109":[2,151],"110":[2,151],"113":[2,151],"115":[2,151],"122":[2,151],"125":[2,151],"128":[2,151],"129":[2,151],"131":[2,151],"132":[2,151],"135":[2,151],"136":[2,151],"137":[2,151],"138":[2,151],"139":[2,151],"140":[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]},{"3":[1,151],"5":338,"26":[1,6]},{"27":[2,154],"48":[2,154],"118":[2,154],"120":[2,154]},{"3":[1,151],"5":339,"26":[1,6],"57":[1,340]},{"3":[2,127],"26":[2,127],"49":[1,110],"57":[2,127],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"24":287,"48":[1,55],"119":341,"120":[1,286]},{"1":[2,90],"3":[2,90],"26":[2,90],"27":[2,90],"49":[2,90],"57":[2,90],"59":[2,90],"77":[2,90],"79":[2,90],"82":[2,90],"92":[2,90],"97":[2,90],"105":[2,90],"108":[2,90],"109":[2,90],"110":[2,90],"113":[2,90],"115":[2,90],"122":[2,90],"125":[2,90],"128":[2,90],"129":[2,90],"131":[2,90],"132":[2,90],"135":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[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]},{"49":[1,110],"59":[1,125],"97":[1,342],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[2,61],"6":343,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,61],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,61],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"97":[2,61],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[2,61],"110":[2,61],"113":[2,61],"116":[1,52],"121":77,"122":[2,61],"124":46,"125":[2,61],"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61]},{"3":[2,123],"27":[2,123],"49":[1,110],"57":[2,123],"59":[1,125],"92":[2,123],"97":[2,123],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"3":[2,124],"27":[2,124],"49":[1,110],"57":[2,124],"59":[1,125],"92":[2,124],"97":[2,124],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,108],"3":[2,108],"26":[2,108],"27":[2,108],"49":[2,108],"57":[2,108],"59":[2,108],"77":[2,108],"79":[2,108],"82":[2,108],"92":[2,108],"97":[2,108],"105":[2,108],"108":[2,108],"109":[2,108],"110":[2,108],"113":[2,108],"115":[2,108],"122":[2,108],"125":[2,108],"128":[2,108],"129":[2,108],"131":[2,108],"132":[2,108],"135":[2,108],"136":[2,108],"137":[2,108],"138":[2,108],"139":[2,108],"140":[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]},{"1":[2,162],"3":[2,162],"26":[2,162],"27":[2,162],"49":[2,162],"57":[2,162],"59":[2,162],"77":[2,162],"79":[2,162],"82":[2,162],"92":[2,162],"97":[2,162],"105":[2,162],"108":[2,162],"109":[2,162],"110":[2,162],"113":[2,162],"115":[2,162],"118":[2,162],"122":[2,162],"125":[2,162],"128":[2,162],"129":[2,162],"131":[2,162],"132":[2,162],"135":[2,162],"136":[2,162],"137":[2,162],"138":[2,162],"139":[2,162],"140":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162]},{"3":[2,95],"27":[2,95],"57":[2,95],"82":[2,95]},{"1":[2,97],"3":[2,97],"26":[2,97],"27":[2,97],"49":[2,97],"57":[2,97],"59":[2,97],"77":[2,97],"79":[2,97],"82":[2,97],"92":[2,97],"97":[2,97],"105":[2,97],"108":[2,97],"109":[2,97],"110":[2,97],"113":[2,97],"115":[2,97],"122":[2,97],"125":[2,97],"128":[2,97],"129":[2,97],"131":[2,97],"132":[2,97],"135":[2,97],"136":[2,97],"137":[2,97],"138":[2,97],"139":[2,97],"140":[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]},{"49":[1,110],"59":[1,125],"77":[1,344],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"6":345,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,61],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[2,61],"110":[2,61],"113":[2,61],"116":[1,52],"121":77,"122":[2,61],"124":46,"125":[2,61],"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61]},{"1":[2,146],"3":[2,146],"26":[2,146],"27":[2,146],"49":[1,110],"57":[2,146],"59":[1,125],"77":[2,146],"79":[2,146],"82":[2,146],"92":[2,146],"97":[2,146],"105":[2,146],"107":123,"108":[2,146],"109":[2,146],"110":[2,146],"113":[1,120],"115":[1,346],"122":[2,146],"125":[2,146],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,148],"3":[2,148],"26":[2,148],"27":[2,148],"49":[1,110],"57":[2,148],"59":[1,125],"77":[2,148],"79":[2,148],"82":[2,148],"92":[2,148],"97":[2,148],"105":[2,148],"107":123,"108":[2,148],"109":[1,347],"110":[2,148],"113":[1,120],"115":[2,148],"122":[2,148],"125":[2,148],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,147],"3":[2,147],"26":[2,147],"27":[2,147],"49":[1,110],"57":[2,147],"59":[1,125],"77":[2,147],"79":[2,147],"82":[2,147],"92":[2,147],"97":[2,147],"105":[2,147],"107":123,"108":[2,147],"109":[2,147],"110":[2,147],"113":[1,120],"115":[2,147],"122":[2,147],"125":[2,147],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"27":[1,348]},{"3":[1,349],"27":[2,155],"48":[2,155],"118":[2,155],"120":[2,155]},{"6":350,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"27":[2,157],"48":[2,157],"118":[2,157],"120":[2,157]},{"1":[2,112],"3":[2,112],"26":[2,112],"27":[2,112],"49":[2,112],"57":[2,112],"59":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"76":[2,112],"77":[2,112],"78":[2,112],"79":[2,112],"82":[2,112],"88":[2,112],"90":[2,112],"92":[2,112],"97":[2,112],"105":[2,112],"108":[2,112],"109":[2,112],"110":[2,112],"113":[2,112],"115":[2,112],"122":[2,112],"125":[2,112],"128":[2,112],"129":[2,112],"131":[2,112],"132":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[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]},{"49":[1,110],"59":[1,125],"97":[1,351],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,114],"3":[2,114],"26":[2,114],"27":[2,114],"45":[2,114],"49":[2,114],"57":[2,114],"59":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"76":[2,114],"77":[2,114],"78":[2,114],"79":[2,114],"82":[2,114],"85":[2,114],"88":[2,114],"90":[2,114],"92":[2,114],"97":[2,114],"105":[2,114],"108":[2,114],"109":[2,114],"110":[2,114],"113":[2,114],"115":[2,114],"122":[2,114],"125":[2,114],"128":[2,114],"129":[2,114],"131":[2,114],"132":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[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]},{"49":[1,110],"59":[1,125],"77":[1,352],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"6":353,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"6":354,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"86":[1,33],"87":34,"93":[1,74],"94":[1,72],"95":[1,73],"96":[1,71],"99":[1,47],"103":[1,48],"104":[1,70],"106":[1,56],"107":50,"108":[1,78],"110":[1,51],"116":[1,52],"121":77,"122":[1,84],"124":46,"126":[1,37],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45]},{"1":[2,152],"3":[2,152],"26":[2,152],"27":[2,152],"49":[2,152],"57":[2,152],"59":[2,152],"77":[2,152],"79":[2,152],"82":[2,152],"92":[2,152],"97":[2,152],"105":[2,152],"108":[2,152],"109":[2,152],"110":[2,152],"113":[2,152],"115":[2,152],"122":[2,152],"125":[2,152],"128":[2,152],"129":[2,152],"131":[2,152],"132":[2,152],"135":[2,152],"136":[2,152],"137":[2,152],"138":[2,152],"139":[2,152],"140":[2,152],"141":[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]},{"27":[2,156],"48":[2,156],"118":[2,156],"120":[2,156]},{"3":[2,128],"26":[2,128],"49":[1,110],"57":[2,128],"59":[1,125],"107":123,"108":[1,78],"110":[1,124],"113":[1,120],"122":[1,121],"125":[1,122],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,113],"3":[2,113],"26":[2,113],"27":[2,113],"49":[2,113],"57":[2,113],"59":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"76":[2,113],"77":[2,113],"78":[2,113],"79":[2,113],"82":[2,113],"88":[2,113],"90":[2,113],"92":[2,113],"97":[2,113],"105":[2,113],"108":[2,113],"109":[2,113],"110":[2,113],"113":[2,113],"115":[2,113],"122":[2,113],"125":[2,113],"128":[2,113],"129":[2,113],"131":[2,113],"132":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[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]},{"1":[2,115],"3":[2,115],"26":[2,115],"27":[2,115],"45":[2,115],"49":[2,115],"57":[2,115],"59":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"73":[2,115],"76":[2,115],"77":[2,115],"78":[2,115],"79":[2,115],"82":[2,115],"85":[2,115],"88":[2,115],"90":[2,115],"92":[2,115],"97":[2,115],"105":[2,115],"108":[2,115],"109":[2,115],"110":[2,115],"113":[2,115],"115":[2,115],"122":[2,115],"125":[2,115],"128":[2,115],"129":[2,115],"131":[2,115],"132":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[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]},{"1":[2,149],"3":[2,149],"26":[2,149],"27":[2,149],"49":[1,110],"57":[2,149],"59":[1,125],"77":[2,149],"79":[2,149],"82":[2,149],"92":[2,149],"97":[2,149],"105":[2,149],"107":123,"108":[2,149],"109":[2,149],"110":[2,149],"113":[1,120],"115":[2,149],"122":[2,149],"125":[2,149],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]},{"1":[2,150],"3":[2,150],"26":[2,150],"27":[2,150],"49":[1,110],"57":[2,150],"59":[1,125],"77":[2,150],"79":[2,150],"82":[2,150],"92":[2,150],"97":[2,150],"105":[2,150],"107":123,"108":[2,150],"109":[2,150],"110":[2,150],"113":[1,120],"115":[2,150],"122":[2,150],"125":[2,150],"128":[1,95],"129":[1,94],"131":[1,89],"132":[1,90],"135":[1,91],"136":[1,92],"137":[1,93],"138":[1,96],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119]}], parseError: function parseError(str, hash) { throw new Error(str); }, diff --git a/src/grammar.coffee b/src/grammar.coffee index 1805ebee..3b57c258 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -195,6 +195,7 @@ grammar: { o "Expression . . .", -> new SplatNode $1 ] + # Variables and properties that can be assigned to. SimpleAssignable: [ o "Identifier", -> new ValueNode $1 o "Value Accessor", -> $1.push $2 @@ -278,6 +279,7 @@ grammar: { o "Super" ] + # Binds a function call to a context and/or arguments. Curry: [ o "Value <- Arguments", -> new CurryNode $1, $3 ] @@ -420,13 +422,16 @@ grammar: { ] # The source of a comprehension is an array or object with an optional filter - # clause. If it's an array comprehension, you can also choose to step throug + # clause. If it's an array comprehension, you can also choose to step through # in fixed-size increments. ForSource: [ - o "IN Expression", -> {source: $2} - o "OF Expression", -> {source: $2, object: true} - o "ForSource WHEN Expression", -> $1.filter: $3; $1 - o "ForSource BY Expression", -> $1.step: $3; $1 + o "IN Expression", -> {source: $2} + o "OF Expression", -> {source: $2, object: true} + o "IN Expression WHEN Expression", -> {source: $2, filter: $4} + o "OF Expression WHEN Expression", -> {source: $2, filter: $4, object: true} + o "IN Expression BY Expression", -> {source: $2, step: $4} + o "IN Expression WHEN Expression BY Expression", -> {source: $2, filter: $4; step: $6} + o "IN Expression BY Expression WHEN Expression", -> {source: $2, step: $4, filter: $6} ] # The CoffeeScript switch/when/else block replaces the JavaScript