From 62c59a7f53f5b559fb054c1682a395c040f16509 Mon Sep 17 00:00:00 2001 From: satyr Date: Tue, 2 Aug 2011 19:22:45 +0900 Subject: [PATCH] closes #75; implemented after-loop `else` clause --- lib/ast.js | 19 +++++-- lib/grammar.js | 4 +- lib/parser.js | 132 +++++++++++++++++++++++++------------------------ src/ast.co | 10 +++- src/grammar.co | 3 +- test/loop.co | 14 ++++++ 6 files changed, 110 insertions(+), 72 deletions(-) diff --git a/lib/ast.js b/lib/ast.js index 38db60623..33ed3d833 100644 --- a/lib/ast.js +++ b/lib/ast.js @@ -1591,7 +1591,7 @@ exports.Assign = Assign = (function(_super){ lvar = left instanceof Var; sign = op.replace(':', ''); name = (left.front = true, left).compile(o, LEVEL_LIST); - code = !o.level && right instanceof While && (lvar || left.isSimpleAccess()) + code = !o.level && right instanceof While && !right['else'] && (lvar || left.isSimpleAccess()) ? (res = o.scope.temporary('res')) + " = [];\n" + this.tab + right.makeReturn(res).compile(o) + "\n" + this.tab + name + " " + sign + " " + o.scope.free(res) : (name + " " + sign + " ") + (right.assigned = true, right).compile(o, LEVEL_LIST); if (lvar) { @@ -2392,7 +2392,7 @@ exports.While = While = (function(_super){ this.test = test; } } - prototype.children = ['test', 'body', 'update']; + prototype.children = ['test', 'body', 'update', 'else']; prototype.aSource = 'test'; prototype.aTargets = ['body', 'update']; prototype.show = function(){ @@ -2419,6 +2419,10 @@ exports.While = While = (function(_super){ } return this; }; + prototype.addElse = function($else){ + this['else'] = $else; + return this; + }; prototype.makeReturn = function(it){ if (it) { this.body.makeReturn(it); @@ -2443,7 +2447,7 @@ exports.While = While = (function(_super){ return head + ') {' + this.compileBody((o.indent += TAB, o)); }; prototype.compileBody = function(o, potest){ - var lines, ret, code, last, res, that; + var lines, ret, code, last, res, run, that; lines = this.body.lines; code = ret = ''; if (this.returns) { @@ -2452,6 +2456,9 @@ exports.While = While = (function(_super){ } ret = "\n" + this.tab + "return " + (res || '[]') + ";"; } + if (this['else']) { + lines.unshift(JS((run = o.scope.temporary('run')) + " = true;")); + } if (that = this.body.compile(o, LEVEL_TOP)) { code += "\n" + that + "\n" + this.tab; } @@ -2459,6 +2466,12 @@ exports.While = While = (function(_super){ if (potest) { code += " while (" + potest.compile((o.tab = this.tab, o), LEVEL_PAREN) + ");"; } + if (run) { + if (this.returns) { + this['else'].makeReturn(); + } + code += " if (!" + run + ") " + this.compileBlock(o, this['else']); + } return code + ret; }; prototype.pluckDirectCalls = function(o){ diff --git a/lib/grammar.js b/lib/grammar.js index eaafcce55..3ae7e0ba3 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -129,8 +129,10 @@ bnf = { return $1.addElse($3); }), o('Expression POST_IF Expression', function(){ return If($3, $1, $2 === 'unless'); - }), o('LoopHead Block', function(){ + }), o('LoopHead Block', function(){ return $1.addBody($2); + }), o('LoopHead Block ELSE Block', function(){ + return $1.addBody($2).addElse($4); }), o('Expression LoopHead', function(){ return $2.addBody(Block($1)); }), o('DO Block WHILE Expression', function(){ diff --git a/lib/parser.js b/lib/parser.js index 9339a8547..08f4ba03d 100644 --- a/lib/parser.js +++ b/lib/parser.js @@ -2,7 +2,7 @@ exports.parser = {trace: function trace() { }, yy: {}, symbols_: {"error":2,"Chain":3,"Assignable":4,"Parenthetical":5,"STRNUM":6,"LITERAL":7,"SUPER":8,"CALL(":9,"ArgList":10,"OptComma":11,")CALL":12,"LET":13,"Block":14,"WITH":15,"Expression":16,"SimpleAssignable":17,"ID":18,"DOT":19,"Key":20,"[":21,"]":22,"KeyBase":23,"Arg":24,",":25,"TERMINATOR":26,"INDENT":27,"DEDENT":28,"...":29,"Body":30,"Line":31,"LABEL":32,"PARAM(":33,")PARAM":34,"<-":35,"COMMENT":36,"ASSIGN":37,"IMPORT":38,"CREMENT":39,"+-":40,"COMPARE":41,"LOGIC":42,"MATH":43,"SHIFT":44,"BITWISE":45,"RELATION":46,"UNARY":47,"!?":48,"Function":49,"FUNCTION":50,"IfBlock":51,"ELSE":52,"POST_IF":53,"LoopHead":54,"DO":55,"WHILE":56,"HURL":57,"JUMP":58,"SWITCH":59,"Cases":60,"DEFAULT":61,"TRY":62,"CATCH":63,"FINALLY":64,"CLASS":65,"EXTENDS":66,"KeyValue":67,"Property":68,":":69,"Properties":70,"IF":71,"(":72,")":73,"{":74,"}":75,"?":76,"CLONE":77,"->":78,"FOR":79,"OF":80,"BY":81,"IN":82,"OWN":83,"FROM":84,"TO":85,"CASE":86,"Exprs":87,"Root":88,"$accept":0,"$end":1}, terminals_: {2:"error",6:"STRNUM",7:"LITERAL",8:"SUPER",9:"CALL(",12:")CALL",13:"LET",15:"WITH",18:"ID",19:"DOT",21:"[",22:"]",25:",",26:"TERMINATOR",27:"INDENT",28:"DEDENT",29:"...",32:"LABEL",33:"PARAM(",34:")PARAM",35:"<-",36:"COMMENT",37:"ASSIGN",38:"IMPORT",39:"CREMENT",40:"+-",41:"COMPARE",42:"LOGIC",43:"MATH",44:"SHIFT",45:"BITWISE",46:"RELATION",47:"UNARY",48:"!?",50:"FUNCTION",52:"ELSE",53:"POST_IF",55:"DO",56:"WHILE",57:"HURL",58:"JUMP",59:"SWITCH",61:"DEFAULT",62:"TRY",63:"CATCH",64:"FINALLY",65:"CLASS",66:"EXTENDS",69:":",71:"IF",72:"(",73:")",74:"{",75:"}",76:"?",77:"CLONE",78:"->",79:"FOR",80:"OF",81:"BY",82:"IN",83:"OWN",84:"FROM",85:"TO",86:"CASE"}, -productions_: [0,[3,1],[3,1],[3,1],[3,1],[3,1],[3,5],[3,6],[3,3],[17,1],[17,3],[17,6],[20,1],[20,1],[23,1],[23,1],[10,0],[10,1],[10,3],[10,4],[10,6],[24,1],[24,2],[24,1],[11,0],[11,1],[30,1],[30,3],[30,2],[30,2],[31,1],[31,2],[31,6],[31,1],[31,1],[14,3],[14,2],[16,1],[16,3],[16,6],[16,3],[16,6],[16,2],[16,2],[16,3],[16,3],[16,3],[16,3],[16,3],[16,3],[16,3],[16,2],[16,2],[16,2],[16,1],[16,2],[16,6],[16,1],[16,3],[16,3],[16,2],[16,2],[16,4],[16,2],[16,5],[16,1],[16,1],[16,2],[16,3],[16,5],[16,2],[16,4],[16,2],[16,2],[16,4],[16,6],[16,4],[16,2],[16,4],[16,3],[16,5],[16,3],[16,2],[67,1],[67,3],[67,3],[68,3],[68,6],[68,1],[68,3],[68,2],[68,2],[68,1],[70,0],[70,1],[70,3],[70,4],[70,6],[51,3],[51,5],[5,3],[5,5],[4,1],[4,4],[4,4],[4,2],[4,6],[49,6],[49,2],[54,4],[54,6],[54,4],[54,6],[54,5],[54,7],[54,6],[54,8],[54,2],[54,4],[60,3],[60,4],[87,1],[87,3],[88,1],[88,2],[88,3],[88,0]], +productions_: [0,[3,1],[3,1],[3,1],[3,1],[3,1],[3,5],[3,6],[3,3],[17,1],[17,3],[17,6],[20,1],[20,1],[23,1],[23,1],[10,0],[10,1],[10,3],[10,4],[10,6],[24,1],[24,2],[24,1],[11,0],[11,1],[30,1],[30,3],[30,2],[30,2],[31,1],[31,2],[31,6],[31,1],[31,1],[14,3],[14,2],[16,1],[16,3],[16,6],[16,3],[16,6],[16,2],[16,2],[16,3],[16,3],[16,3],[16,3],[16,3],[16,3],[16,3],[16,2],[16,2],[16,2],[16,1],[16,2],[16,6],[16,1],[16,3],[16,3],[16,2],[16,4],[16,2],[16,4],[16,2],[16,5],[16,1],[16,1],[16,2],[16,3],[16,5],[16,2],[16,4],[16,2],[16,2],[16,4],[16,6],[16,4],[16,2],[16,4],[16,3],[16,5],[16,3],[16,2],[67,1],[67,3],[67,3],[68,3],[68,6],[68,1],[68,3],[68,2],[68,2],[68,1],[70,0],[70,1],[70,3],[70,4],[70,6],[51,3],[51,5],[5,3],[5,5],[4,1],[4,4],[4,4],[4,2],[4,6],[49,6],[49,2],[54,4],[54,6],[54,4],[54,6],[54,5],[54,7],[54,6],[54,8],[54,2],[54,4],[60,3],[60,4],[87,1],[87,3],[88,1],[88,2],[88,3],[88,0]], performAction: function anonymous(yytext,yyleng,yylineno,yy,yystate,$$) { var $0 = $$.length - 1; @@ -106,117 +106,119 @@ case 59:this.$ = yy.If($$[$0], $$[$0-2], $$[$0-1] === 'unless'); break; case 60:this.$ = $$[$0-1].addBody($$[$0]); break; -case 61:this.$ = $$[$0].addBody(yy.Block($$[$0-1])); +case 61:this.$ = $$[$0-3].addBody($$[$0-2]).addElse($$[$0]); break; -case 62:this.$ = new yy.While($$[$0], $$[$0-1] === 'until', true).addBody($$[$0-2]); +case 62:this.$ = $$[$0].addBody(yy.Block($$[$0-1])); break; -case 63:this.$ = yy.Jump[$$[$0-1]]($$[$0]); +case 63:this.$ = new yy.While($$[$0], $$[$0-1] === 'until', true).addBody($$[$0-2]); break; -case 64:this.$ = yy.Jump[$$[$0-4]](yy.Arr.maybe($$[$0-2])); +case 64:this.$ = yy.Jump[$$[$0-1]]($$[$0]); break; -case 65:this.$ = yy.L(yylineno, yy.Jump[$$[$0]]()); +case 65:this.$ = yy.Jump[$$[$0-4]](yy.Arr.maybe($$[$0-2])); break; -case 66:this.$ = yy.L(yylineno, new yy.Jump($$[$0])); +case 66:this.$ = yy.L(yylineno, yy.Jump[$$[$0]]()); break; -case 67:this.$ = yy.L(yylineno, new yy.Jump($$[$0-1], $$[$0])); +case 67:this.$ = yy.L(yylineno, new yy.Jump($$[$0])); break; -case 68:this.$ = new yy.Switch($$[$0-1], $$[$0]); +case 68:this.$ = yy.L(yylineno, new yy.Jump($$[$0-1], $$[$0])); break; -case 69:this.$ = new yy.Switch($$[$0-3], $$[$0-2], $$[$0]); +case 69:this.$ = new yy.Switch($$[$0-1], $$[$0]); break; -case 70:this.$ = new yy.Switch(null, $$[$0]); +case 70:this.$ = new yy.Switch($$[$0-3], $$[$0-2], $$[$0]); break; -case 71:this.$ = new yy.Switch(null, $$[$0-2], $$[$0]); +case 71:this.$ = new yy.Switch(null, $$[$0]); break; -case 72:this.$ = new yy.Switch(null, [], $$[$0]); +case 72:this.$ = new yy.Switch(null, $$[$0-2], $$[$0]); break; -case 73:this.$ = new yy.Try($$[$0]); +case 73:this.$ = new yy.Switch(null, [], $$[$0]); break; -case 74:this.$ = new yy.Try($$[$0-2], $$[$0-1], $$[$0]); +case 74:this.$ = new yy.Try($$[$0]); break; -case 75:this.$ = new yy.Try($$[$0-4], $$[$0-3], $$[$0-2], $$[$0]); +case 75:this.$ = new yy.Try($$[$0-2], $$[$0-1], $$[$0]); break; -case 76:this.$ = new yy.Try($$[$0-2], null, null, $$[$0]); +case 76:this.$ = new yy.Try($$[$0-4], $$[$0-3], $$[$0-2], $$[$0]); break; -case 77:this.$ = new yy.Class(null, null, $$[$0]); +case 77:this.$ = new yy.Try($$[$0-2], null, null, $$[$0]); break; -case 78:this.$ = new yy.Class(null, $$[$0-1], $$[$0]); +case 78:this.$ = new yy.Class(null, null, $$[$0]); break; -case 79:this.$ = new yy.Class($$[$0-1], null, $$[$0]); +case 79:this.$ = new yy.Class(null, $$[$0-1], $$[$0]); break; -case 80:this.$ = new yy.Class($$[$0-3], $$[$0-1], $$[$0]); +case 80:this.$ = new yy.Class($$[$0-1], null, $$[$0]); break; -case 81:this.$ = yy.Util.Extends($$[$0-2].unwrap(), $$[$0]); +case 81:this.$ = new yy.Class($$[$0-3], $$[$0-1], $$[$0]); break; -case 82:this.$ = new yy.Label($$[$0-1], $$[$0]); +case 82:this.$ = yy.Util.Extends($$[$0-2].unwrap(), $$[$0]); break; -case 84:this.$ = yy.Prop($$[$0], yy.Chain(yy.Literal($$[$0-2]), [yy.Index($$[$0], $$[$0-1])])); +case 83:this.$ = new yy.Label($$[$0-1], $$[$0]); break; -case 85:this.$ = yy.Prop($$[$0], yy.Chain($$[$0-2], [yy.Index($$[$0], $$[$0-1])])); +case 85:this.$ = yy.Prop($$[$0], yy.Chain(yy.Literal($$[$0-2]), [yy.Index($$[$0], $$[$0-1])])); break; -case 86:this.$ = yy.Prop($$[$0-2], $$[$0]); +case 86:this.$ = yy.Prop($$[$0], yy.Chain($$[$0-2], [yy.Index($$[$0], $$[$0-1])])); break; -case 87:this.$ = yy.Prop($$[$0-5], yy.Arr.maybe($$[$0-2])); +case 87:this.$ = yy.Prop($$[$0-2], $$[$0]); break; -case 89:this.$ = yy.Op($$[$0-1], $$[$0-2], $$[$0]); +case 88:this.$ = yy.Prop($$[$0-5], yy.Arr.maybe($$[$0-2])); break; -case 90:this.$ = yy.Prop($$[$0].maybeKey(), yy.Literal($$[$0-1] === '+')); +case 90:this.$ = yy.Op($$[$0-1], $$[$0-2], $$[$0]); break; -case 91:this.$ = yy.Splat($$[$0]); +case 91:this.$ = yy.Prop($$[$0].maybeKey(), yy.Literal($$[$0-1] === '+')); break; -case 92:this.$ = yy.L(yylineno, yy.JS($$[$0], true, true)); +case 92:this.$ = yy.Splat($$[$0]); break; -case 93:this.$ = []; +case 93:this.$ = yy.L(yylineno, yy.JS($$[$0], true, true)); break; -case 94:this.$ = [$$[$0]]; +case 94:this.$ = []; break; -case 95:this.$ = $$[$0-2].concat($$[$0]); +case 95:this.$ = [$$[$0]]; break; -case 96:this.$ = $$[$0-3].concat($$[$0]); +case 96:this.$ = $$[$0-2].concat($$[$0]); break; -case 97:this.$ = $$[$0-5].concat($$[$0-2]); +case 97:this.$ = $$[$0-3].concat($$[$0]); break; -case 98:this.$ = yy.If($$[$0-1], $$[$0], $$[$0-2] === 'unless'); +case 98:this.$ = $$[$0-5].concat($$[$0-2]); break; -case 99:this.$ = $$[$0-4].addElse(yy.If($$[$0-1], $$[$0], $$[$0-2] === 'unless')); +case 99:this.$ = yy.If($$[$0-1], $$[$0], $$[$0-2] === 'unless'); break; -case 100:this.$ = yy.Parens($$[$0-1].chomp().unwrap(), false, $$[$0-2] === '"'); +case 100:this.$ = $$[$0-4].addElse(yy.If($$[$0-1], $$[$0], $$[$0-2] === 'unless')); break; -case 101:this.$ = yy.Parens($$[$0-2].chomp().unwrap(), false, $$[$0-4] === '"'); +case 101:this.$ = yy.Parens($$[$0-1].chomp().unwrap(), false, $$[$0-2] === '"'); break; -case 103:this.$ = yy.L(yylineno, yy.Arr($$[$0-2])); +case 102:this.$ = yy.Parens($$[$0-2].chomp().unwrap(), false, $$[$0-4] === '"'); break; -case 104:this.$ = yy.L(yylineno, yy.Obj($$[$0-2])); +case 104:this.$ = yy.L(yylineno, yy.Arr($$[$0-2])); break; -case 105:this.$ = yy.Existence($$[$0-1].unwrap()); +case 105:this.$ = yy.L(yylineno, yy.Obj($$[$0-2])); break; -case 106:this.$ = yy.Clone($$[$0-5].unwrap(), $$[$0-2]); +case 106:this.$ = yy.Existence($$[$0-1].unwrap()); break; -case 107:this.$ = yy.L(yylineno, yy.Fun($$[$0-4], $$[$0], $$[$0-1])); +case 107:this.$ = yy.Clone($$[$0-5].unwrap(), $$[$0-2]); break; -case 108:this.$ = yy.L(yylineno, yy.Fun([], $$[$0], $$[$0-1])); +case 108:this.$ = yy.L(yylineno, yy.Fun($$[$0-4], $$[$0], $$[$0-1])); break; -case 109:this.$ = new yy.For({ +case 109:this.$ = yy.L(yylineno, yy.Fun([], $$[$0], $$[$0-1])); +break; +case 110:this.$ = new yy.For({ name: $$[$0-2], index: $$[$0-1], source: $$[$0] }); break; -case 110:this.$ = new yy.For({ +case 111:this.$ = new yy.For({ name: $$[$0-4], index: $$[$0-3], source: $$[$0-2], step: $$[$0] }); break; -case 111:this.$ = new yy.For({ +case 112:this.$ = new yy.For({ object: true, own: false, index: $$[$0-2], source: $$[$0] }); break; -case 112:this.$ = new yy.For({ +case 113:this.$ = new yy.For({ object: true, own: false, index: $$[$0-4], @@ -224,14 +226,14 @@ case 112:this.$ = new yy.For({ source: $$[$0] }); break; -case 113:this.$ = new yy.For({ +case 114:this.$ = new yy.For({ object: true, own: true, index: $$[$0-2], source: $$[$0] }); break; -case 114:this.$ = new yy.For({ +case 115:this.$ = new yy.For({ object: true, own: true, index: $$[$0-4], @@ -239,14 +241,14 @@ case 114:this.$ = new yy.For({ source: $$[$0] }); break; -case 115:this.$ = new yy.For({ +case 116:this.$ = new yy.For({ index: $$[$0-4], from: $$[$0-2], op: $$[$0-1], to: $$[$0] }); break; -case 116:this.$ = new yy.For({ +case 117:this.$ = new yy.For({ index: $$[$0-6], from: $$[$0-4], op: $$[$0-3], @@ -254,25 +256,25 @@ case 116:this.$ = new yy.For({ step: $$[$0] }); break; -case 117:this.$ = new yy.While($$[$0], $$[$0-1] === 'until'); +case 118:this.$ = new yy.While($$[$0], $$[$0-1] === 'until'); break; -case 118:this.$ = new yy.While($$[$0-2], $$[$0-3] === 'until', $$[$0]); +case 119:this.$ = new yy.While($$[$0-2], $$[$0-3] === 'until', $$[$0]); break; -case 119:this.$ = [new yy.Case($$[$0-1], $$[$0])]; +case 120:this.$ = [new yy.Case($$[$0-1], $$[$0])]; break; -case 120:this.$ = $$[$0-3].concat(new yy.Case($$[$0-1], $$[$0])); +case 121:this.$ = $$[$0-3].concat(new yy.Case($$[$0-1], $$[$0])); break; -case 121:this.$ = [$$[$0]]; +case 122:this.$ = [$$[$0]]; break; -case 122:this.$ = $$[$0-2].concat($$[$0]); +case 123:this.$ = $$[$0-2].concat($$[$0]); break; -case 123: -case 124:return this.$; -case 125:return $$[$0-2].add($$[$0]); -case 126:return yy.Block(); +case 124: +case 125:return this.$; +case 126:return $$[$0-2].add($$[$0]); +case 127:return yy.Block(); } }, -table: [{1:[2,126],3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],14:3,15:[1,32],16:6,17:14,18:[1,35],21:[1,33],27:[1,5],29:[1,10],30:2,31:4,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38],88:1},{1:[3]},{1:[2,123],14:42,26:[1,41],27:[1,5]},{26:[1,43]},{1:[2,26],26:[2,26],27:[2,26],28:[2,26],73:[2,26]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:6,17:14,18:[1,35],21:[1,33],28:[1,45],29:[1,10],30:44,31:4,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,30],26:[2,30],27:[2,30],28:[2,30],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],73:[2,30],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],14:57,15:[1,32],16:56,17:14,18:[1,35],21:[1,33],27:[1,5],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:60,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],34:[2,16],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,33],26:[2,33],27:[2,33],28:[2,33],73:[2,33]},{1:[2,34],26:[2,34],27:[2,34],28:[2,34],73:[2,34]},{1:[2,37],9:[1,66],12:[2,37],19:[1,69],22:[2,37],25:[2,37],26:[2,37],27:[2,37],28:[2,37],34:[2,37],38:[2,37],40:[2,37],41:[2,37],42:[2,37],43:[2,37],44:[2,37],45:[2,37],46:[2,37],48:[1,64],53:[2,37],56:[2,37],66:[1,65],73:[2,37],75:[2,37],76:[1,67],77:[1,68],79:[2,37],81:[2,37],85:[2,37],86:[2,37]},{1:[2,1],9:[2,1],12:[2,1],19:[2,1],22:[2,1],25:[2,1],26:[2,1],27:[2,1],28:[2,1],34:[2,1],37:[1,70],38:[2,1],40:[2,1],41:[2,1],42:[2,1],43:[2,1],44:[2,1],45:[2,1],46:[2,1],48:[2,1],53:[2,1],56:[2,1],66:[2,1],73:[2,1],75:[2,1],76:[2,1],77:[2,1],79:[2,1],81:[2,1],85:[2,1],86:[2,1]},{3:72,4:73,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],17:71,18:[1,35],21:[1,33],72:[1,40],74:[1,34]},{1:[2,102],9:[2,102],12:[2,102],19:[2,102],22:[2,102],25:[2,102],26:[2,102],27:[2,102],28:[2,102],34:[2,102],37:[2,102],38:[2,102],39:[1,74],40:[2,102],41:[2,102],42:[2,102],43:[2,102],44:[2,102],45:[2,102],46:[2,102],48:[2,102],53:[2,102],56:[2,102],66:[2,102],73:[2,102],75:[2,102],76:[2,102],77:[2,102],79:[2,102],81:[2,102],85:[2,102],86:[2,102]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:75,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:76,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,54],12:[2,54],22:[2,54],25:[2,54],26:[2,54],27:[2,54],28:[2,54],34:[2,54],38:[2,54],40:[2,54],41:[2,54],42:[2,54],43:[2,54],44:[2,54],45:[2,54],46:[2,54],53:[2,54],56:[2,54],73:[2,54],75:[2,54],79:[2,54],81:[2,54],85:[2,54],86:[2,54]},{9:[1,78],33:[1,59],49:77,78:[1,36]},{1:[2,57],12:[2,57],22:[2,57],25:[2,57],26:[2,57],27:[2,57],28:[2,57],34:[2,57],38:[2,57],40:[2,57],41:[2,57],42:[2,57],43:[2,57],44:[2,57],45:[2,57],46:[2,57],52:[1,79],53:[2,57],56:[2,57],73:[2,57],75:[2,57],79:[2,57],81:[2,57],85:[2,57],86:[2,57]},{14:80,27:[1,5]},{14:81,27:[1,5]},{1:[2,65],3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],12:[2,65],13:[1,31],15:[1,32],16:82,17:14,18:[1,35],21:[1,33],22:[2,65],25:[2,65],26:[2,65],27:[1,83],28:[2,65],32:[1,58],33:[1,59],34:[2,65],38:[2,65],39:[1,13],40:[1,16],41:[2,65],42:[2,65],43:[2,65],44:[2,65],45:[2,65],46:[2,65],47:[1,15],49:17,50:[1,18],51:19,53:[2,65],54:20,55:[1,21],56:[2,65],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],73:[2,65],74:[1,34],75:[2,65],78:[1,36],79:[2,65],81:[2,65],85:[2,65],86:[2,65]},{1:[2,66],12:[2,66],18:[1,84],22:[2,66],25:[2,66],26:[2,66],27:[2,66],28:[2,66],34:[2,66],38:[2,66],40:[2,66],41:[2,66],42:[2,66],43:[2,66],44:[2,66],45:[2,66],46:[2,66],53:[2,66],56:[2,66],73:[2,66],75:[2,66],79:[2,66],81:[2,66],85:[2,66],86:[2,66]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],14:87,15:[1,32],16:85,17:14,18:[1,35],21:[1,33],27:[1,5],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],60:86,62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38],86:[1,88]},{14:89,27:[1,5]},{3:72,4:73,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],14:90,15:[1,32],17:92,18:[1,35],21:[1,33],27:[1,5],66:[1,91],72:[1,40],74:[1,34]},{1:[2,2],9:[2,2],12:[2,2],19:[2,2],22:[2,2],25:[2,2],26:[2,2],27:[2,2],28:[2,2],34:[2,2],38:[2,2],40:[2,2],41:[2,2],42:[2,2],43:[2,2],44:[2,2],45:[2,2],46:[2,2],48:[2,2],53:[2,2],56:[2,2],66:[2,2],73:[2,2],75:[2,2],76:[2,2],77:[2,2],79:[2,2],81:[2,2],85:[2,2],86:[2,2]},{1:[2,3],9:[2,3],12:[2,3],19:[2,3],22:[2,3],25:[2,3],26:[2,3],27:[2,3],28:[2,3],34:[2,3],38:[2,3],40:[2,3],41:[2,3],42:[2,3],43:[2,3],44:[2,3],45:[2,3],46:[2,3],48:[2,3],53:[2,3],56:[2,3],66:[2,3],73:[2,3],75:[2,3],76:[2,3],77:[2,3],79:[2,3],81:[2,3],85:[2,3],86:[2,3]},{1:[2,4],9:[2,4],12:[2,4],19:[2,4],22:[2,4],25:[2,4],26:[2,4],27:[2,4],28:[2,4],34:[2,4],38:[2,4],40:[2,4],41:[2,4],42:[2,4],43:[2,4],44:[2,4],45:[2,4],46:[2,4],48:[2,4],53:[2,4],56:[2,4],66:[2,4],73:[2,4],75:[2,4],76:[2,4],77:[2,4],79:[2,4],81:[2,4],85:[2,4],86:[2,4]},{1:[2,5],9:[2,5],12:[2,5],19:[2,5],22:[2,5],25:[2,5],26:[2,5],27:[2,5],28:[2,5],34:[2,5],38:[2,5],40:[2,5],41:[2,5],42:[2,5],43:[2,5],44:[2,5],45:[2,5],46:[2,5],48:[2,5],53:[2,5],56:[2,5],66:[2,5],73:[2,5],75:[2,5],76:[2,5],77:[2,5],79:[2,5],81:[2,5],85:[2,5],86:[2,5]},{9:[1,93]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:94,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:95,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],22:[2,16],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{5:104,6:[1,107],7:[1,105],18:[1,106],20:98,23:103,25:[2,93],26:[2,93],27:[2,93],29:[1,101],36:[1,102],40:[1,100],67:99,68:97,70:96,72:[1,40],75:[2,93]},{1:[2,9],9:[2,9],12:[2,9],19:[2,9],22:[2,9],25:[2,9],26:[2,9],27:[2,9],28:[2,9],34:[2,9],37:[2,9],38:[2,9],39:[2,9],40:[2,9],41:[2,9],42:[2,9],43:[2,9],44:[2,9],45:[2,9],46:[2,9],48:[2,9],53:[2,9],56:[2,9],66:[2,9],73:[2,9],75:[2,9],76:[2,9],77:[2,9],79:[2,9],81:[2,9],82:[2,9],85:[2,9],86:[2,9]},{14:108,27:[1,5]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:109,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:72,4:110,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],17:113,18:[1,111],21:[1,33],72:[1,40],74:[1,34],83:[1,112]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:114,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:6,17:14,18:[1,35],21:[1,33],27:[1,116],29:[1,10],30:115,31:4,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,29],3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:6,17:14,18:[1,35],21:[1,33],26:[2,29],27:[2,29],28:[2,29],29:[1,10],31:117,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],73:[2,29],74:[1,34],78:[1,36],79:[1,38]},{1:[2,28],26:[2,28],27:[2,28],28:[2,28],73:[2,28]},{1:[2,124],3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:6,17:14,18:[1,35],21:[1,33],29:[1,10],30:118,31:4,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{14:42,26:[1,41],27:[1,5],28:[1,119]},{1:[2,36],9:[2,36],12:[2,36],19:[2,36],22:[2,36],25:[2,36],26:[2,36],27:[2,36],28:[2,36],34:[2,36],38:[2,36],40:[2,36],41:[2,36],42:[2,36],43:[2,36],44:[2,36],45:[2,36],46:[2,36],48:[2,36],52:[2,36],53:[2,36],56:[2,36],61:[2,36],63:[2,36],64:[2,36],66:[2,36],73:[2,36],75:[2,36],76:[2,36],77:[2,36],79:[2,36],81:[2,36],85:[2,36],86:[2,36]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:120,17:14,18:[1,35],21:[1,33],27:[1,121],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:122,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:123,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:124,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:125,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:126,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:127,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:128,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:129,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,61],12:[2,61],22:[2,61],25:[2,61],26:[2,61],27:[2,61],28:[2,61],34:[2,61],38:[2,61],40:[2,61],41:[2,61],42:[2,61],43:[2,61],44:[2,61],45:[2,61],46:[2,61],53:[2,61],56:[2,61],73:[2,61],75:[2,61],79:[2,61],81:[2,61],85:[2,61],86:[2,61]},{1:[2,31],26:[2,31],27:[2,31],28:[2,31],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],73:[2,31],79:[1,38]},{1:[2,82],12:[2,82],22:[2,82],25:[2,82],26:[2,82],27:[2,82],28:[2,82],34:[2,82],38:[2,82],40:[2,82],41:[2,82],42:[2,82],43:[2,82],44:[2,82],45:[2,82],46:[2,82],53:[2,82],56:[2,82],73:[2,82],75:[2,82],79:[2,82],81:[2,82],85:[2,82],86:[2,82]},{14:57,27:[1,5]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:130,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],34:[2,16],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{11:131,25:[1,132],26:[2,24],27:[2,24],34:[2,24]},{12:[2,17],22:[2,17],25:[2,17],26:[2,17],27:[2,17],28:[2,17],34:[2,17]},{12:[2,21],22:[2,21],25:[2,21],26:[2,21],27:[2,21],28:[2,21],34:[2,21],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],12:[2,23],13:[1,31],15:[1,32],16:133,17:14,18:[1,35],21:[1,33],22:[2,23],25:[2,23],26:[2,23],27:[2,23],28:[2,23],32:[1,58],33:[1,59],34:[2,23],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,53],12:[2,53],22:[2,53],25:[2,53],26:[2,53],27:[2,53],28:[2,53],34:[2,53],38:[2,53],40:[2,53],41:[2,53],42:[2,53],43:[2,53],44:[2,53],45:[2,53],46:[2,53],53:[2,53],56:[2,53],73:[2,53],75:[2,53],79:[2,53],81:[2,53],85:[2,53],86:[2,53]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:134,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:135,12:[2,16],13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,105],9:[2,105],12:[2,105],19:[2,105],22:[2,105],25:[2,105],26:[2,105],27:[2,105],28:[2,105],34:[2,105],37:[2,105],38:[2,105],40:[2,105],41:[2,105],42:[2,105],43:[2,105],44:[2,105],45:[2,105],46:[2,105],48:[2,105],53:[2,105],56:[2,105],66:[2,105],73:[2,105],75:[2,105],76:[2,105],77:[2,105],79:[2,105],80:[2,105],81:[2,105],82:[2,105],85:[2,105],86:[2,105]},{74:[1,136]},{5:104,6:[1,107],18:[1,106],20:137,21:[1,138],23:103,72:[1,40]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:139,17:14,18:[1,35],21:[1,33],27:[1,140],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,42],9:[2,102],12:[2,42],19:[2,102],22:[2,42],25:[2,42],26:[2,42],27:[2,42],28:[2,42],34:[2,42],38:[2,42],40:[2,42],41:[2,42],42:[2,42],43:[2,42],44:[2,42],45:[2,42],46:[2,42],53:[2,42],56:[2,42],73:[2,42],75:[2,42],76:[2,102],77:[2,102],79:[2,42],81:[2,42],85:[2,42],86:[2,42]},{9:[1,66],19:[1,69],76:[1,67],77:[1,68]},{9:[2,1],19:[2,1],76:[2,1],77:[2,1]},{1:[2,43],12:[2,43],22:[2,43],25:[2,43],26:[2,43],27:[2,43],28:[2,43],34:[2,43],38:[2,43],40:[2,43],41:[2,43],42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[2,43],53:[2,43],56:[2,43],73:[2,43],75:[2,43],79:[2,43],81:[2,43],85:[2,43],86:[2,43]},{1:[2,51],12:[2,51],22:[2,51],25:[2,51],26:[2,51],27:[2,51],28:[2,51],34:[2,51],38:[2,51],40:[2,51],41:[2,51],42:[2,51],43:[2,51],44:[2,51],45:[2,51],46:[2,51],53:[2,51],54:55,56:[2,51],73:[2,51],75:[2,51],79:[2,51],81:[2,51],85:[2,51],86:[2,51]},{1:[2,52],12:[2,52],22:[2,52],25:[2,52],26:[2,52],27:[2,52],28:[2,52],34:[2,52],38:[2,52],40:[2,52],41:[2,52],42:[2,52],43:[2,52],44:[2,52],45:[2,52],46:[2,52],53:[2,52],54:55,56:[2,52],73:[2,52],75:[2,52],79:[2,52],81:[2,52],85:[2,52],86:[2,52]},{1:[2,55],12:[2,55],22:[2,55],25:[2,55],26:[2,55],27:[2,55],28:[2,55],34:[2,55],38:[2,55],40:[2,55],41:[2,55],42:[2,55],43:[2,55],44:[2,55],45:[2,55],46:[2,55],53:[2,55],56:[2,55],73:[2,55],75:[2,55],79:[2,55],81:[2,55],85:[2,55],86:[2,55]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:141,12:[2,16],13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{14:142,27:[1,5],71:[1,143]},{1:[2,60],12:[2,60],22:[2,60],25:[2,60],26:[2,60],27:[2,60],28:[2,60],34:[2,60],38:[2,60],40:[2,60],41:[2,60],42:[2,60],43:[2,60],44:[2,60],45:[2,60],46:[2,60],53:[2,60],56:[2,60],73:[2,60],75:[2,60],79:[2,60],81:[2,60],85:[2,60],86:[2,60]},{56:[1,144]},{1:[2,63],12:[2,63],22:[2,63],25:[2,63],26:[2,63],27:[2,63],28:[2,63],34:[2,63],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,63],54:55,56:[2,63],73:[2,63],75:[2,63],79:[2,63],81:[2,63],85:[2,63],86:[2,63]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:145,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],28:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,67],12:[2,67],22:[2,67],25:[2,67],26:[2,67],27:[2,67],28:[2,67],34:[2,67],38:[2,67],40:[2,67],41:[2,67],42:[2,67],43:[2,67],44:[2,67],45:[2,67],46:[2,67],53:[2,67],56:[2,67],73:[2,67],75:[2,67],79:[2,67],81:[2,67],85:[2,67],86:[2,67]},{38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],60:146,79:[1,38],86:[1,88]},{1:[2,70],12:[2,70],22:[2,70],25:[2,70],26:[2,70],27:[2,70],28:[2,70],34:[2,70],38:[2,70],40:[2,70],41:[2,70],42:[2,70],43:[2,70],44:[2,70],45:[2,70],46:[2,70],53:[2,70],56:[2,70],61:[1,147],73:[2,70],75:[2,70],79:[2,70],81:[2,70],85:[2,70],86:[1,148]},{1:[2,72],12:[2,72],22:[2,72],25:[2,72],26:[2,72],27:[2,72],28:[2,72],34:[2,72],38:[2,72],40:[2,72],41:[2,72],42:[2,72],43:[2,72],44:[2,72],45:[2,72],46:[2,72],53:[2,72],56:[2,72],73:[2,72],75:[2,72],79:[2,72],81:[2,72],85:[2,72],86:[2,72]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:150,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38],87:149},{1:[2,73],12:[2,73],22:[2,73],25:[2,73],26:[2,73],27:[2,73],28:[2,73],34:[2,73],38:[2,73],40:[2,73],41:[2,73],42:[2,73],43:[2,73],44:[2,73],45:[2,73],46:[2,73],53:[2,73],56:[2,73],63:[1,151],64:[1,152],73:[2,73],75:[2,73],79:[2,73],81:[2,73],85:[2,73],86:[2,73]},{1:[2,77],12:[2,77],22:[2,77],25:[2,77],26:[2,77],27:[2,77],28:[2,77],34:[2,77],38:[2,77],40:[2,77],41:[2,77],42:[2,77],43:[2,77],44:[2,77],45:[2,77],46:[2,77],53:[2,77],56:[2,77],73:[2,77],75:[2,77],79:[2,77],81:[2,77],85:[2,77],86:[2,77]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:153,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{9:[2,102],14:154,19:[2,102],27:[1,5],66:[1,155],76:[2,102],77:[2,102]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:156,12:[2,16],13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{14:157,27:[1,5],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{11:158,22:[2,24],25:[1,132],26:[2,24],27:[2,24]},{11:159,25:[1,160],26:[2,24],27:[2,24],75:[2,24]},{25:[2,94],26:[2,94],27:[2,94],28:[2,94],75:[2,94]},{19:[1,162],25:[2,83],26:[2,83],27:[2,83],28:[2,83],42:[2,83],69:[1,161],75:[2,83]},{25:[2,88],26:[2,88],27:[2,88],28:[2,88],42:[1,163],75:[2,88]},{5:104,6:[1,107],18:[1,106],20:164,23:103,72:[1,40]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:165,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{25:[2,92],26:[2,92],27:[2,92],28:[2,92],75:[2,92]},{1:[2,12],9:[2,12],12:[2,12],19:[2,12],22:[2,12],25:[2,12],26:[2,12],27:[2,12],28:[2,12],34:[2,12],37:[2,12],38:[2,12],39:[2,12],40:[2,12],41:[2,12],42:[2,12],43:[2,12],44:[2,12],45:[2,12],46:[2,12],48:[2,12],53:[2,12],56:[2,12],66:[2,12],69:[2,12],73:[2,12],75:[2,12],76:[2,12],77:[2,12],79:[2,12],80:[2,12],81:[2,12],82:[2,12],85:[2,12],86:[2,12]},{1:[2,13],9:[2,13],12:[2,13],19:[2,13],22:[2,13],25:[2,13],26:[2,13],27:[2,13],28:[2,13],34:[2,13],37:[2,13],38:[2,13],39:[2,13],40:[2,13],41:[2,13],42:[2,13],43:[2,13],44:[2,13],45:[2,13],46:[2,13],48:[2,13],53:[2,13],56:[2,13],66:[2,13],69:[2,13],73:[2,13],75:[2,13],76:[2,13],77:[2,13],79:[2,13],80:[2,13],81:[2,13],82:[2,13],85:[2,13],86:[2,13]},{19:[1,166]},{1:[2,14],9:[2,14],12:[2,14],19:[2,14],22:[2,14],25:[2,14],26:[2,14],27:[2,14],28:[2,14],34:[2,14],37:[2,14],38:[2,14],39:[2,14],40:[2,14],41:[2,14],42:[2,14],43:[2,14],44:[2,14],45:[2,14],46:[2,14],48:[2,14],53:[2,14],56:[2,14],66:[2,14],69:[2,14],73:[2,14],75:[2,14],76:[2,14],77:[2,14],79:[2,14],80:[2,14],81:[2,14],82:[2,14],85:[2,14],86:[2,14]},{1:[2,15],9:[2,15],12:[2,15],19:[2,15],22:[2,15],25:[2,15],26:[2,15],27:[2,15],28:[2,15],34:[2,15],37:[2,15],38:[2,15],39:[2,15],40:[2,15],41:[2,15],42:[2,15],43:[2,15],44:[2,15],45:[2,15],46:[2,15],48:[2,15],53:[2,15],56:[2,15],66:[2,15],69:[2,15],73:[2,15],75:[2,15],76:[2,15],77:[2,15],79:[2,15],80:[2,15],81:[2,15],82:[2,15],85:[2,15],86:[2,15]},{1:[2,108],12:[2,108],22:[2,108],25:[2,108],26:[2,108],27:[2,108],28:[2,108],34:[2,108],38:[2,108],40:[2,108],41:[2,108],42:[2,108],43:[2,108],44:[2,108],45:[2,108],46:[2,108],53:[2,108],56:[2,108],73:[2,108],75:[2,108],79:[2,108],81:[2,108],85:[2,108],86:[2,108]},{14:167,27:[1,5],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{9:[2,1],19:[2,1],76:[2,1],77:[2,1],80:[1,168]},{9:[2,9],19:[2,9],25:[1,170],76:[2,9],77:[2,9],80:[2,9],82:[1,169],84:[1,171]},{18:[1,172]},{9:[2,102],19:[2,102],76:[2,102],77:[2,102],80:[2,102],82:[2,102]},{1:[2,117],12:[2,117],22:[2,117],25:[1,173],26:[2,117],27:[2,117],28:[2,117],34:[2,117],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,117],54:55,56:[2,117],73:[2,117],75:[2,117],79:[2,117],81:[2,117],85:[2,117],86:[2,117]},{14:42,26:[1,41],27:[1,5],73:[1,174]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:6,17:14,18:[1,35],21:[1,33],29:[1,10],30:175,31:4,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,27],26:[2,27],27:[2,27],28:[2,27],73:[2,27]},{1:[2,125],14:42,26:[1,41],27:[1,5]},{1:[2,35],9:[2,35],12:[2,35],19:[2,35],22:[2,35],25:[2,35],26:[2,35],27:[2,35],28:[2,35],34:[2,35],38:[2,35],40:[2,35],41:[2,35],42:[2,35],43:[2,35],44:[2,35],45:[2,35],46:[2,35],48:[2,35],52:[2,35],53:[2,35],56:[2,35],61:[2,35],63:[2,35],64:[2,35],66:[2,35],73:[2,35],75:[2,35],76:[2,35],77:[2,35],79:[2,35],81:[2,35],85:[2,35],86:[2,35]},{1:[2,40],12:[2,40],22:[2,40],25:[2,40],26:[2,40],27:[2,40],28:[2,40],34:[2,40],38:[2,40],40:[1,47],41:[2,40],42:[2,40],43:[1,50],44:[2,40],45:[2,40],46:[2,40],53:[2,40],54:55,56:[2,40],73:[2,40],75:[2,40],79:[2,40],81:[2,40],85:[2,40],86:[2,40]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:176,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],28:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,44],12:[2,44],22:[2,44],25:[2,44],26:[2,44],27:[2,44],28:[2,44],34:[2,44],38:[2,44],40:[2,44],41:[2,44],42:[2,44],43:[1,50],44:[2,44],45:[2,44],46:[2,44],53:[2,44],54:55,56:[2,44],73:[2,44],75:[2,44],79:[2,44],81:[2,44],85:[2,44],86:[2,44]},{1:[2,45],12:[2,45],22:[2,45],25:[2,45],26:[2,45],27:[2,45],28:[2,45],34:[2,45],38:[1,46],40:[1,47],41:[1,48],42:[2,45],43:[1,50],44:[1,51],45:[2,45],46:[1,53],53:[2,45],54:55,56:[2,45],73:[2,45],75:[2,45],79:[2,45],81:[2,45],85:[2,45],86:[2,45]},{1:[2,46],12:[2,46],22:[2,46],25:[2,46],26:[2,46],27:[2,46],28:[2,46],34:[2,46],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,46],54:55,56:[2,46],73:[2,46],75:[2,46],79:[2,46],81:[2,46],85:[2,46],86:[2,46]},{1:[2,47],12:[2,47],22:[2,47],25:[2,47],26:[2,47],27:[2,47],28:[2,47],34:[2,47],38:[2,47],40:[2,47],41:[2,47],42:[2,47],43:[2,47],44:[2,47],45:[2,47],46:[2,47],53:[2,47],54:55,56:[2,47],73:[2,47],75:[2,47],79:[2,47],81:[2,47],85:[2,47],86:[2,47]},{1:[2,48],12:[2,48],22:[2,48],25:[2,48],26:[2,48],27:[2,48],28:[2,48],34:[2,48],38:[2,48],40:[1,47],41:[2,48],42:[2,48],43:[1,50],44:[2,48],45:[2,48],46:[2,48],53:[2,48],54:55,56:[2,48],73:[2,48],75:[2,48],79:[2,48],81:[2,48],85:[2,48],86:[2,48]},{1:[2,49],12:[2,49],22:[2,49],25:[2,49],26:[2,49],27:[2,49],28:[2,49],34:[2,49],38:[1,46],40:[1,47],41:[1,48],42:[2,49],43:[1,50],44:[1,51],45:[2,49],46:[1,53],53:[2,49],54:55,56:[2,49],73:[2,49],75:[2,49],79:[2,49],81:[2,49],85:[2,49],86:[2,49]},{1:[2,50],12:[2,50],22:[2,50],25:[2,50],26:[2,50],27:[2,50],28:[2,50],34:[2,50],38:[1,46],40:[1,47],41:[2,50],42:[2,50],43:[1,50],44:[1,51],45:[2,50],46:[2,50],53:[2,50],54:55,56:[2,50],73:[2,50],75:[2,50],79:[2,50],81:[2,50],85:[2,50],86:[2,50]},{1:[2,59],12:[2,59],22:[2,59],25:[2,59],26:[2,59],27:[2,59],28:[2,59],34:[2,59],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,59],54:55,56:[2,59],73:[2,59],75:[2,59],79:[2,59],81:[2,59],85:[2,59],86:[2,59]},{11:177,25:[1,132],26:[2,24],27:[2,24],34:[2,24]},{26:[1,179],27:[1,180],34:[1,178]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],12:[2,25],13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],22:[2,25],24:181,26:[2,25],27:[2,25],28:[2,25],29:[1,63],32:[1,58],33:[1,59],34:[2,25],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{12:[2,22],22:[2,22],25:[2,22],26:[2,22],27:[2,22],28:[2,22],34:[2,22],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{1:[2,81],12:[2,81],22:[2,81],25:[2,81],26:[2,81],27:[2,81],28:[2,81],34:[2,81],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,81],54:55,56:[2,81],73:[2,81],75:[2,81],79:[2,81],81:[2,81],85:[2,81],86:[2,81]},{11:182,12:[2,24],25:[1,132],26:[2,24],27:[2,24]},{5:104,6:[1,107],7:[1,105],18:[1,106],20:98,23:103,25:[2,93],26:[2,93],27:[2,93],29:[1,101],36:[1,102],40:[1,100],67:99,68:97,70:183,72:[1,40],75:[2,93]},{1:[2,10],9:[2,10],12:[2,10],19:[2,10],22:[2,10],25:[2,10],26:[2,10],27:[2,10],28:[2,10],34:[2,10],37:[2,10],38:[2,10],39:[2,10],40:[2,10],41:[2,10],42:[2,10],43:[2,10],44:[2,10],45:[2,10],46:[2,10],48:[2,10],53:[2,10],56:[2,10],66:[2,10],73:[2,10],75:[2,10],76:[2,10],77:[2,10],79:[2,10],80:[2,10],81:[2,10],82:[2,10],85:[2,10],86:[2,10]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:184,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],22:[2,16],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,38],12:[2,38],22:[2,38],25:[2,38],26:[2,38],27:[2,38],28:[2,38],34:[2,38],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,38],54:55,56:[2,38],73:[2,38],75:[2,38],79:[2,38],81:[2,38],85:[2,38],86:[2,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:185,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],28:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{11:186,12:[2,24],25:[1,132],26:[2,24],27:[2,24]},{1:[2,58],12:[2,58],22:[2,58],25:[2,58],26:[2,58],27:[2,58],28:[2,58],34:[2,58],38:[2,58],40:[2,58],41:[2,58],42:[2,58],43:[2,58],44:[2,58],45:[2,58],46:[2,58],53:[2,58],56:[2,58],73:[2,58],75:[2,58],79:[2,58],81:[2,58],85:[2,58],86:[2,58]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:187,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:188,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{11:189,25:[1,132],26:[2,24],27:[2,24],28:[2,24]},{1:[2,68],12:[2,68],22:[2,68],25:[2,68],26:[2,68],27:[2,68],28:[2,68],34:[2,68],38:[2,68],40:[2,68],41:[2,68],42:[2,68],43:[2,68],44:[2,68],45:[2,68],46:[2,68],53:[2,68],56:[2,68],61:[1,190],73:[2,68],75:[2,68],79:[2,68],81:[2,68],85:[2,68],86:[1,148]},{14:191,27:[1,5]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:150,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38],87:192},{14:193,25:[1,194],27:[1,5]},{25:[2,121],27:[2,121],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{14:195,27:[1,5]},{14:196,27:[1,5]},{14:197,27:[1,5],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{1:[2,79],12:[2,79],22:[2,79],25:[2,79],26:[2,79],27:[2,79],28:[2,79],34:[2,79],38:[2,79],40:[2,79],41:[2,79],42:[2,79],43:[2,79],44:[2,79],45:[2,79],46:[2,79],53:[2,79],56:[2,79],73:[2,79],75:[2,79],79:[2,79],81:[2,79],85:[2,79],86:[2,79]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:198,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{11:199,12:[2,24],25:[1,132],26:[2,24],27:[2,24]},{1:[2,8],9:[2,8],12:[2,8],19:[2,8],22:[2,8],25:[2,8],26:[2,8],27:[2,8],28:[2,8],34:[2,8],38:[2,8],40:[2,8],41:[2,8],42:[2,8],43:[2,8],44:[2,8],45:[2,8],46:[2,8],48:[2,8],53:[2,8],56:[2,8],66:[2,8],73:[2,8],75:[2,8],76:[2,8],77:[2,8],79:[2,8],81:[2,8],85:[2,8],86:[2,8]},{22:[1,200],26:[1,179],27:[1,180]},{26:[1,202],27:[1,203],75:[1,201]},{5:104,6:[1,107],7:[1,105],18:[1,106],20:98,23:103,26:[2,25],27:[2,25],28:[2,25],29:[1,101],36:[1,102],40:[1,100],67:99,68:204,72:[1,40],75:[2,25]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:205,17:14,18:[1,35],21:[1,33],27:[1,206],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{6:[1,107],18:[1,106],23:207},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:208,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{25:[2,90],26:[2,90],27:[2,90],28:[2,90],75:[2,90]},{25:[2,91],26:[2,91],27:[2,91],28:[2,91],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],75:[2,91],79:[1,38]},{6:[1,107],18:[1,106],23:209},{1:[2,98],12:[2,98],22:[2,98],25:[2,98],26:[2,98],27:[2,98],28:[2,98],34:[2,98],38:[2,98],40:[2,98],41:[2,98],42:[2,98],43:[2,98],44:[2,98],45:[2,98],46:[2,98],52:[2,98],53:[2,98],56:[2,98],73:[2,98],75:[2,98],79:[2,98],81:[2,98],85:[2,98],86:[2,98]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:210,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:211,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:72,4:212,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],17:113,18:[1,35],21:[1,33],72:[1,40],74:[1,34]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:213,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{25:[1,215],82:[1,214]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:216,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,100],9:[2,100],12:[2,100],19:[2,100],22:[2,100],25:[2,100],26:[2,100],27:[2,100],28:[2,100],34:[2,100],37:[2,100],38:[2,100],39:[2,100],40:[2,100],41:[2,100],42:[2,100],43:[2,100],44:[2,100],45:[2,100],46:[2,100],48:[2,100],53:[2,100],56:[2,100],66:[2,100],69:[2,100],73:[2,100],75:[2,100],76:[2,100],77:[2,100],79:[2,100],80:[2,100],81:[2,100],82:[2,100],85:[2,100],86:[2,100]},{14:42,26:[1,41],27:[1,5],28:[1,217]},{11:218,25:[1,132],26:[2,24],27:[2,24],28:[2,24]},{26:[1,179],27:[1,180],34:[1,219]},{35:[1,220],78:[1,221]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:222,29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:223,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],28:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{12:[2,18],22:[2,18],25:[2,18],26:[2,18],27:[2,18],28:[2,18],34:[2,18]},{12:[1,224],26:[1,179],27:[1,180]},{11:225,25:[1,160],26:[2,24],27:[2,24],75:[2,24]},{11:226,22:[2,24],25:[1,132],26:[2,24],27:[2,24]},{11:227,25:[1,132],26:[2,24],27:[2,24],28:[2,24]},{12:[1,228],26:[1,179],27:[1,180]},{14:229,27:[1,5],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{1:[2,62],12:[2,62],22:[2,62],25:[2,62],26:[2,62],27:[2,62],28:[2,62],34:[2,62],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,62],54:55,56:[2,62],73:[2,62],75:[2,62],79:[2,62],81:[2,62],85:[2,62],86:[2,62]},{26:[1,179],27:[1,180],28:[1,230]},{14:231,27:[1,5]},{1:[2,71],12:[2,71],22:[2,71],25:[2,71],26:[2,71],27:[2,71],28:[2,71],34:[2,71],38:[2,71],40:[2,71],41:[2,71],42:[2,71],43:[2,71],44:[2,71],45:[2,71],46:[2,71],53:[2,71],56:[2,71],73:[2,71],75:[2,71],79:[2,71],81:[2,71],85:[2,71],86:[2,71]},{14:232,25:[1,194],27:[1,5]},{1:[2,119],12:[2,119],22:[2,119],25:[2,119],26:[2,119],27:[2,119],28:[2,119],34:[2,119],38:[2,119],40:[2,119],41:[2,119],42:[2,119],43:[2,119],44:[2,119],45:[2,119],46:[2,119],53:[2,119],56:[2,119],61:[2,119],73:[2,119],75:[2,119],79:[2,119],81:[2,119],85:[2,119],86:[2,119]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:233,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,74],12:[2,74],22:[2,74],25:[2,74],26:[2,74],27:[2,74],28:[2,74],34:[2,74],38:[2,74],40:[2,74],41:[2,74],42:[2,74],43:[2,74],44:[2,74],45:[2,74],46:[2,74],53:[2,74],56:[2,74],64:[1,234],73:[2,74],75:[2,74],79:[2,74],81:[2,74],85:[2,74],86:[2,74]},{1:[2,76],12:[2,76],22:[2,76],25:[2,76],26:[2,76],27:[2,76],28:[2,76],34:[2,76],38:[2,76],40:[2,76],41:[2,76],42:[2,76],43:[2,76],44:[2,76],45:[2,76],46:[2,76],53:[2,76],56:[2,76],73:[2,76],75:[2,76],79:[2,76],81:[2,76],85:[2,76],86:[2,76]},{1:[2,78],12:[2,78],22:[2,78],25:[2,78],26:[2,78],27:[2,78],28:[2,78],34:[2,78],38:[2,78],40:[2,78],41:[2,78],42:[2,78],43:[2,78],44:[2,78],45:[2,78],46:[2,78],53:[2,78],56:[2,78],73:[2,78],75:[2,78],79:[2,78],81:[2,78],85:[2,78],86:[2,78]},{14:235,27:[1,5],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{12:[1,236],26:[1,179],27:[1,180]},{1:[2,103],9:[2,103],12:[2,103],19:[2,103],22:[2,103],25:[2,103],26:[2,103],27:[2,103],28:[2,103],34:[2,103],37:[2,103],38:[2,103],40:[2,103],41:[2,103],42:[2,103],43:[2,103],44:[2,103],45:[2,103],46:[2,103],48:[2,103],53:[2,103],56:[2,103],66:[2,103],73:[2,103],75:[2,103],76:[2,103],77:[2,103],79:[2,103],80:[2,103],81:[2,103],82:[2,103],85:[2,103],86:[2,103]},{1:[2,104],9:[2,104],12:[2,104],19:[2,104],22:[2,104],25:[2,104],26:[2,104],27:[2,104],28:[2,104],34:[2,104],37:[2,104],38:[2,104],40:[2,104],41:[2,104],42:[2,104],43:[2,104],44:[2,104],45:[2,104],46:[2,104],48:[2,104],53:[2,104],56:[2,104],66:[2,104],73:[2,104],75:[2,104],76:[2,104],77:[2,104],79:[2,104],80:[2,104],81:[2,104],82:[2,104],85:[2,104],86:[2,104]},{5:104,6:[1,107],7:[1,105],18:[1,106],20:98,23:103,29:[1,101],36:[1,102],40:[1,100],67:99,68:237,72:[1,40]},{5:104,6:[1,107],7:[1,105],18:[1,106],20:98,23:103,25:[2,93],26:[2,93],27:[2,93],28:[2,93],29:[1,101],36:[1,102],40:[1,100],67:99,68:97,70:238,72:[1,40]},{25:[2,95],26:[2,95],27:[2,95],28:[2,95],75:[2,95]},{25:[2,86],26:[2,86],27:[2,86],28:[2,86],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],75:[2,86],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:239,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],28:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{25:[2,85],26:[2,85],27:[2,85],28:[2,85],42:[2,85],75:[2,85]},{25:[2,89],26:[2,89],27:[2,89],28:[2,89],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],75:[2,89],79:[1,38]},{25:[2,84],26:[2,84],27:[2,84],28:[2,84],42:[2,84],75:[2,84]},{1:[2,109],12:[2,109],22:[2,109],25:[2,109],26:[2,109],27:[2,109],28:[2,109],34:[2,109],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,109],54:55,56:[2,109],73:[2,109],75:[2,109],79:[2,109],81:[1,240],85:[2,109],86:[2,109]},{1:[2,111],12:[2,111],22:[2,111],25:[2,111],26:[2,111],27:[2,111],28:[2,111],34:[2,111],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,111],54:55,56:[2,111],73:[2,111],75:[2,111],79:[2,111],81:[2,111],85:[2,111],86:[2,111]},{9:[2,1],19:[2,1],76:[2,1],77:[2,1],82:[1,241]},{38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38],85:[1,242]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:243,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:72,4:244,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],17:113,18:[1,35],21:[1,33],72:[1,40],74:[1,34]},{1:[2,118],12:[2,118],22:[2,118],25:[2,118],26:[2,118],27:[2,118],28:[2,118],34:[2,118],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,118],54:55,56:[2,118],73:[2,118],75:[2,118],79:[2,118],81:[2,118],85:[2,118],86:[2,118]},{73:[1,245]},{26:[1,179],27:[1,180],28:[1,246]},{78:[1,221]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:247,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{14:248,27:[1,5]},{12:[2,19],22:[2,19],25:[2,19],26:[2,19],27:[2,19],28:[2,19],34:[2,19]},{11:249,25:[1,132],26:[2,24],27:[2,24],28:[2,24]},{1:[2,6],9:[2,6],12:[2,6],19:[2,6],22:[2,6],25:[2,6],26:[2,6],27:[2,6],28:[2,6],34:[2,6],38:[2,6],40:[2,6],41:[2,6],42:[2,6],43:[2,6],44:[2,6],45:[2,6],46:[2,6],48:[2,6],53:[2,6],56:[2,6],66:[2,6],73:[2,6],75:[2,6],76:[2,6],77:[2,6],79:[2,6],81:[2,6],85:[2,6],86:[2,6]},{26:[1,202],27:[1,203],75:[1,250]},{22:[1,251],26:[1,179],27:[1,180]},{26:[1,179],27:[1,180],28:[1,252]},{14:253,27:[1,5]},{1:[2,99],12:[2,99],22:[2,99],25:[2,99],26:[2,99],27:[2,99],28:[2,99],34:[2,99],38:[2,99],40:[2,99],41:[2,99],42:[2,99],43:[2,99],44:[2,99],45:[2,99],46:[2,99],52:[2,99],53:[2,99],56:[2,99],73:[2,99],75:[2,99],79:[2,99],81:[2,99],85:[2,99],86:[2,99]},{1:[2,64],12:[2,64],22:[2,64],25:[2,64],26:[2,64],27:[2,64],28:[2,64],34:[2,64],38:[2,64],40:[2,64],41:[2,64],42:[2,64],43:[2,64],44:[2,64],45:[2,64],46:[2,64],53:[2,64],56:[2,64],73:[2,64],75:[2,64],79:[2,64],81:[2,64],85:[2,64],86:[2,64]},{1:[2,69],12:[2,69],22:[2,69],25:[2,69],26:[2,69],27:[2,69],28:[2,69],34:[2,69],38:[2,69],40:[2,69],41:[2,69],42:[2,69],43:[2,69],44:[2,69],45:[2,69],46:[2,69],53:[2,69],56:[2,69],73:[2,69],75:[2,69],79:[2,69],81:[2,69],85:[2,69],86:[2,69]},{1:[2,120],12:[2,120],22:[2,120],25:[2,120],26:[2,120],27:[2,120],28:[2,120],34:[2,120],38:[2,120],40:[2,120],41:[2,120],42:[2,120],43:[2,120],44:[2,120],45:[2,120],46:[2,120],53:[2,120],56:[2,120],61:[2,120],73:[2,120],75:[2,120],79:[2,120],81:[2,120],85:[2,120],86:[2,120]},{25:[2,122],27:[2,122],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{14:254,27:[1,5]},{1:[2,80],12:[2,80],22:[2,80],25:[2,80],26:[2,80],27:[2,80],28:[2,80],34:[2,80],38:[2,80],40:[2,80],41:[2,80],42:[2,80],43:[2,80],44:[2,80],45:[2,80],46:[2,80],53:[2,80],56:[2,80],73:[2,80],75:[2,80],79:[2,80],81:[2,80],85:[2,80],86:[2,80]},{14:255,27:[1,5]},{25:[2,96],26:[2,96],27:[2,96],28:[2,96],75:[2,96]},{11:256,25:[1,160],26:[2,24],27:[2,24],28:[2,24]},{11:257,25:[1,132],26:[2,24],27:[2,24],28:[2,24]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:258,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:259,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:260,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,113],12:[2,113],22:[2,113],25:[2,113],26:[2,113],27:[2,113],28:[2,113],34:[2,113],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,113],54:55,56:[2,113],73:[2,113],75:[2,113],79:[2,113],81:[2,113],85:[2,113],86:[2,113]},{9:[2,1],19:[2,1],76:[2,1],77:[2,1],82:[1,261]},{1:[2,101],9:[2,101],12:[2,101],19:[2,101],22:[2,101],25:[2,101],26:[2,101],27:[2,101],28:[2,101],34:[2,101],37:[2,101],38:[2,101],39:[2,101],40:[2,101],41:[2,101],42:[2,101],43:[2,101],44:[2,101],45:[2,101],46:[2,101],48:[2,101],53:[2,101],56:[2,101],66:[2,101],69:[2,101],73:[2,101],75:[2,101],76:[2,101],77:[2,101],79:[2,101],80:[2,101],81:[2,101],82:[2,101],85:[2,101],86:[2,101]},{1:[2,41],12:[2,41],22:[2,41],25:[2,41],26:[2,41],27:[2,41],28:[2,41],34:[2,41],38:[2,41],40:[2,41],41:[2,41],42:[2,41],43:[2,41],44:[2,41],45:[2,41],46:[2,41],53:[2,41],56:[2,41],73:[2,41],75:[2,41],79:[2,41],81:[2,41],85:[2,41],86:[2,41]},{1:[2,32],26:[2,32],27:[2,32],28:[2,32],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],73:[2,32],79:[1,38]},{1:[2,107],12:[2,107],22:[2,107],25:[2,107],26:[2,107],27:[2,107],28:[2,107],34:[2,107],38:[2,107],40:[2,107],41:[2,107],42:[2,107],43:[2,107],44:[2,107],45:[2,107],46:[2,107],53:[2,107],56:[2,107],73:[2,107],75:[2,107],79:[2,107],81:[2,107],85:[2,107],86:[2,107]},{26:[1,179],27:[1,180],28:[1,262]},{1:[2,106],9:[2,106],12:[2,106],19:[2,106],22:[2,106],25:[2,106],26:[2,106],27:[2,106],28:[2,106],34:[2,106],37:[2,106],38:[2,106],40:[2,106],41:[2,106],42:[2,106],43:[2,106],44:[2,106],45:[2,106],46:[2,106],48:[2,106],53:[2,106],56:[2,106],66:[2,106],73:[2,106],75:[2,106],76:[2,106],77:[2,106],79:[2,106],80:[2,106],81:[2,106],82:[2,106],85:[2,106],86:[2,106]},{1:[2,11],9:[2,11],12:[2,11],19:[2,11],22:[2,11],25:[2,11],26:[2,11],27:[2,11],28:[2,11],34:[2,11],37:[2,11],38:[2,11],39:[2,11],40:[2,11],41:[2,11],42:[2,11],43:[2,11],44:[2,11],45:[2,11],46:[2,11],48:[2,11],53:[2,11],56:[2,11],66:[2,11],73:[2,11],75:[2,11],76:[2,11],77:[2,11],79:[2,11],80:[2,11],81:[2,11],82:[2,11],85:[2,11],86:[2,11]},{1:[2,39],12:[2,39],22:[2,39],25:[2,39],26:[2,39],27:[2,39],28:[2,39],34:[2,39],38:[2,39],40:[2,39],41:[2,39],42:[2,39],43:[2,39],44:[2,39],45:[2,39],46:[2,39],53:[2,39],56:[2,39],73:[2,39],75:[2,39],79:[2,39],81:[2,39],85:[2,39],86:[2,39]},{1:[2,56],12:[2,56],22:[2,56],25:[2,56],26:[2,56],27:[2,56],28:[2,56],34:[2,56],38:[2,56],40:[2,56],41:[2,56],42:[2,56],43:[2,56],44:[2,56],45:[2,56],46:[2,56],53:[2,56],56:[2,56],73:[2,56],75:[2,56],79:[2,56],81:[2,56],85:[2,56],86:[2,56]},{1:[2,75],12:[2,75],22:[2,75],25:[2,75],26:[2,75],27:[2,75],28:[2,75],34:[2,75],38:[2,75],40:[2,75],41:[2,75],42:[2,75],43:[2,75],44:[2,75],45:[2,75],46:[2,75],53:[2,75],56:[2,75],73:[2,75],75:[2,75],79:[2,75],81:[2,75],85:[2,75],86:[2,75]},{1:[2,7],9:[2,7],12:[2,7],19:[2,7],22:[2,7],25:[2,7],26:[2,7],27:[2,7],28:[2,7],34:[2,7],38:[2,7],40:[2,7],41:[2,7],42:[2,7],43:[2,7],44:[2,7],45:[2,7],46:[2,7],48:[2,7],53:[2,7],56:[2,7],66:[2,7],73:[2,7],75:[2,7],76:[2,7],77:[2,7],79:[2,7],81:[2,7],85:[2,7],86:[2,7]},{26:[1,202],27:[1,203],28:[1,263]},{26:[1,179],27:[1,180],28:[1,264]},{1:[2,110],12:[2,110],22:[2,110],25:[2,110],26:[2,110],27:[2,110],28:[2,110],34:[2,110],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,110],54:55,56:[2,110],73:[2,110],75:[2,110],79:[2,110],81:[2,110],85:[2,110],86:[2,110]},{1:[2,112],12:[2,112],22:[2,112],25:[2,112],26:[2,112],27:[2,112],28:[2,112],34:[2,112],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,112],54:55,56:[2,112],73:[2,112],75:[2,112],79:[2,112],81:[2,112],85:[2,112],86:[2,112]},{1:[2,115],12:[2,115],22:[2,115],25:[2,115],26:[2,115],27:[2,115],28:[2,115],34:[2,115],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,115],54:55,56:[2,115],73:[2,115],75:[2,115],79:[2,115],81:[1,265],85:[2,115],86:[2,115]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:266,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{12:[2,20],22:[2,20],25:[2,20],26:[2,20],27:[2,20],28:[2,20],34:[2,20]},{25:[2,97],26:[2,97],27:[2,97],28:[2,97],75:[2,97]},{25:[2,87],26:[2,87],27:[2,87],28:[2,87],75:[2,87]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:267,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,114],12:[2,114],22:[2,114],25:[2,114],26:[2,114],27:[2,114],28:[2,114],34:[2,114],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,114],54:55,56:[2,114],73:[2,114],75:[2,114],79:[2,114],81:[2,114],85:[2,114],86:[2,114]},{1:[2,116],12:[2,116],22:[2,116],25:[2,116],26:[2,116],27:[2,116],28:[2,116],34:[2,116],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,116],54:55,56:[2,116],73:[2,116],75:[2,116],79:[2,116],81:[2,116],85:[2,116],86:[2,116]}], +table: [{1:[2,127],3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],14:3,15:[1,32],16:6,17:14,18:[1,35],21:[1,33],27:[1,5],29:[1,10],30:2,31:4,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38],88:1},{1:[3]},{1:[2,124],14:42,26:[1,41],27:[1,5]},{26:[1,43]},{1:[2,26],26:[2,26],27:[2,26],28:[2,26],73:[2,26]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:6,17:14,18:[1,35],21:[1,33],28:[1,45],29:[1,10],30:44,31:4,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,30],26:[2,30],27:[2,30],28:[2,30],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],73:[2,30],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],14:57,15:[1,32],16:56,17:14,18:[1,35],21:[1,33],27:[1,5],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:60,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],34:[2,16],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,33],26:[2,33],27:[2,33],28:[2,33],73:[2,33]},{1:[2,34],26:[2,34],27:[2,34],28:[2,34],73:[2,34]},{1:[2,37],9:[1,66],12:[2,37],19:[1,69],22:[2,37],25:[2,37],26:[2,37],27:[2,37],28:[2,37],34:[2,37],38:[2,37],40:[2,37],41:[2,37],42:[2,37],43:[2,37],44:[2,37],45:[2,37],46:[2,37],48:[1,64],53:[2,37],56:[2,37],66:[1,65],73:[2,37],75:[2,37],76:[1,67],77:[1,68],79:[2,37],81:[2,37],85:[2,37],86:[2,37]},{1:[2,1],9:[2,1],12:[2,1],19:[2,1],22:[2,1],25:[2,1],26:[2,1],27:[2,1],28:[2,1],34:[2,1],37:[1,70],38:[2,1],40:[2,1],41:[2,1],42:[2,1],43:[2,1],44:[2,1],45:[2,1],46:[2,1],48:[2,1],53:[2,1],56:[2,1],66:[2,1],73:[2,1],75:[2,1],76:[2,1],77:[2,1],79:[2,1],81:[2,1],85:[2,1],86:[2,1]},{3:72,4:73,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],17:71,18:[1,35],21:[1,33],72:[1,40],74:[1,34]},{1:[2,103],9:[2,103],12:[2,103],19:[2,103],22:[2,103],25:[2,103],26:[2,103],27:[2,103],28:[2,103],34:[2,103],37:[2,103],38:[2,103],39:[1,74],40:[2,103],41:[2,103],42:[2,103],43:[2,103],44:[2,103],45:[2,103],46:[2,103],48:[2,103],53:[2,103],56:[2,103],66:[2,103],73:[2,103],75:[2,103],76:[2,103],77:[2,103],79:[2,103],81:[2,103],85:[2,103],86:[2,103]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:75,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:76,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,54],12:[2,54],22:[2,54],25:[2,54],26:[2,54],27:[2,54],28:[2,54],34:[2,54],38:[2,54],40:[2,54],41:[2,54],42:[2,54],43:[2,54],44:[2,54],45:[2,54],46:[2,54],53:[2,54],56:[2,54],73:[2,54],75:[2,54],79:[2,54],81:[2,54],85:[2,54],86:[2,54]},{9:[1,78],33:[1,59],49:77,78:[1,36]},{1:[2,57],12:[2,57],22:[2,57],25:[2,57],26:[2,57],27:[2,57],28:[2,57],34:[2,57],38:[2,57],40:[2,57],41:[2,57],42:[2,57],43:[2,57],44:[2,57],45:[2,57],46:[2,57],52:[1,79],53:[2,57],56:[2,57],73:[2,57],75:[2,57],79:[2,57],81:[2,57],85:[2,57],86:[2,57]},{14:80,27:[1,5]},{14:81,27:[1,5]},{1:[2,66],3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],12:[2,66],13:[1,31],15:[1,32],16:82,17:14,18:[1,35],21:[1,33],22:[2,66],25:[2,66],26:[2,66],27:[1,83],28:[2,66],32:[1,58],33:[1,59],34:[2,66],38:[2,66],39:[1,13],40:[1,16],41:[2,66],42:[2,66],43:[2,66],44:[2,66],45:[2,66],46:[2,66],47:[1,15],49:17,50:[1,18],51:19,53:[2,66],54:20,55:[1,21],56:[2,66],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],73:[2,66],74:[1,34],75:[2,66],78:[1,36],79:[2,66],81:[2,66],85:[2,66],86:[2,66]},{1:[2,67],12:[2,67],18:[1,84],22:[2,67],25:[2,67],26:[2,67],27:[2,67],28:[2,67],34:[2,67],38:[2,67],40:[2,67],41:[2,67],42:[2,67],43:[2,67],44:[2,67],45:[2,67],46:[2,67],53:[2,67],56:[2,67],73:[2,67],75:[2,67],79:[2,67],81:[2,67],85:[2,67],86:[2,67]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],14:87,15:[1,32],16:85,17:14,18:[1,35],21:[1,33],27:[1,5],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],60:86,62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38],86:[1,88]},{14:89,27:[1,5]},{3:72,4:73,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],14:90,15:[1,32],17:92,18:[1,35],21:[1,33],27:[1,5],66:[1,91],72:[1,40],74:[1,34]},{1:[2,2],9:[2,2],12:[2,2],19:[2,2],22:[2,2],25:[2,2],26:[2,2],27:[2,2],28:[2,2],34:[2,2],38:[2,2],40:[2,2],41:[2,2],42:[2,2],43:[2,2],44:[2,2],45:[2,2],46:[2,2],48:[2,2],53:[2,2],56:[2,2],66:[2,2],73:[2,2],75:[2,2],76:[2,2],77:[2,2],79:[2,2],81:[2,2],85:[2,2],86:[2,2]},{1:[2,3],9:[2,3],12:[2,3],19:[2,3],22:[2,3],25:[2,3],26:[2,3],27:[2,3],28:[2,3],34:[2,3],38:[2,3],40:[2,3],41:[2,3],42:[2,3],43:[2,3],44:[2,3],45:[2,3],46:[2,3],48:[2,3],53:[2,3],56:[2,3],66:[2,3],73:[2,3],75:[2,3],76:[2,3],77:[2,3],79:[2,3],81:[2,3],85:[2,3],86:[2,3]},{1:[2,4],9:[2,4],12:[2,4],19:[2,4],22:[2,4],25:[2,4],26:[2,4],27:[2,4],28:[2,4],34:[2,4],38:[2,4],40:[2,4],41:[2,4],42:[2,4],43:[2,4],44:[2,4],45:[2,4],46:[2,4],48:[2,4],53:[2,4],56:[2,4],66:[2,4],73:[2,4],75:[2,4],76:[2,4],77:[2,4],79:[2,4],81:[2,4],85:[2,4],86:[2,4]},{1:[2,5],9:[2,5],12:[2,5],19:[2,5],22:[2,5],25:[2,5],26:[2,5],27:[2,5],28:[2,5],34:[2,5],38:[2,5],40:[2,5],41:[2,5],42:[2,5],43:[2,5],44:[2,5],45:[2,5],46:[2,5],48:[2,5],53:[2,5],56:[2,5],66:[2,5],73:[2,5],75:[2,5],76:[2,5],77:[2,5],79:[2,5],81:[2,5],85:[2,5],86:[2,5]},{9:[1,93]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:94,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:95,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],22:[2,16],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{5:104,6:[1,107],7:[1,105],18:[1,106],20:98,23:103,25:[2,94],26:[2,94],27:[2,94],29:[1,101],36:[1,102],40:[1,100],67:99,68:97,70:96,72:[1,40],75:[2,94]},{1:[2,9],9:[2,9],12:[2,9],19:[2,9],22:[2,9],25:[2,9],26:[2,9],27:[2,9],28:[2,9],34:[2,9],37:[2,9],38:[2,9],39:[2,9],40:[2,9],41:[2,9],42:[2,9],43:[2,9],44:[2,9],45:[2,9],46:[2,9],48:[2,9],53:[2,9],56:[2,9],66:[2,9],73:[2,9],75:[2,9],76:[2,9],77:[2,9],79:[2,9],81:[2,9],82:[2,9],85:[2,9],86:[2,9]},{14:108,27:[1,5]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:109,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:72,4:110,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],17:113,18:[1,111],21:[1,33],72:[1,40],74:[1,34],83:[1,112]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:114,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:6,17:14,18:[1,35],21:[1,33],27:[1,116],29:[1,10],30:115,31:4,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,29],3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:6,17:14,18:[1,35],21:[1,33],26:[2,29],27:[2,29],28:[2,29],29:[1,10],31:117,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],73:[2,29],74:[1,34],78:[1,36],79:[1,38]},{1:[2,28],26:[2,28],27:[2,28],28:[2,28],73:[2,28]},{1:[2,125],3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:6,17:14,18:[1,35],21:[1,33],29:[1,10],30:118,31:4,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{14:42,26:[1,41],27:[1,5],28:[1,119]},{1:[2,36],9:[2,36],12:[2,36],19:[2,36],22:[2,36],25:[2,36],26:[2,36],27:[2,36],28:[2,36],34:[2,36],38:[2,36],40:[2,36],41:[2,36],42:[2,36],43:[2,36],44:[2,36],45:[2,36],46:[2,36],48:[2,36],52:[2,36],53:[2,36],56:[2,36],61:[2,36],63:[2,36],64:[2,36],66:[2,36],73:[2,36],75:[2,36],76:[2,36],77:[2,36],79:[2,36],81:[2,36],85:[2,36],86:[2,36]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:120,17:14,18:[1,35],21:[1,33],27:[1,121],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:122,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:123,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:124,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:125,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:126,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:127,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:128,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:129,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,62],12:[2,62],22:[2,62],25:[2,62],26:[2,62],27:[2,62],28:[2,62],34:[2,62],38:[2,62],40:[2,62],41:[2,62],42:[2,62],43:[2,62],44:[2,62],45:[2,62],46:[2,62],53:[2,62],56:[2,62],73:[2,62],75:[2,62],79:[2,62],81:[2,62],85:[2,62],86:[2,62]},{1:[2,31],26:[2,31],27:[2,31],28:[2,31],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],73:[2,31],79:[1,38]},{1:[2,83],12:[2,83],22:[2,83],25:[2,83],26:[2,83],27:[2,83],28:[2,83],34:[2,83],38:[2,83],40:[2,83],41:[2,83],42:[2,83],43:[2,83],44:[2,83],45:[2,83],46:[2,83],53:[2,83],56:[2,83],73:[2,83],75:[2,83],79:[2,83],81:[2,83],85:[2,83],86:[2,83]},{14:57,27:[1,5]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:130,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],34:[2,16],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{11:131,25:[1,132],26:[2,24],27:[2,24],34:[2,24]},{12:[2,17],22:[2,17],25:[2,17],26:[2,17],27:[2,17],28:[2,17],34:[2,17]},{12:[2,21],22:[2,21],25:[2,21],26:[2,21],27:[2,21],28:[2,21],34:[2,21],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],12:[2,23],13:[1,31],15:[1,32],16:133,17:14,18:[1,35],21:[1,33],22:[2,23],25:[2,23],26:[2,23],27:[2,23],28:[2,23],32:[1,58],33:[1,59],34:[2,23],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,53],12:[2,53],22:[2,53],25:[2,53],26:[2,53],27:[2,53],28:[2,53],34:[2,53],38:[2,53],40:[2,53],41:[2,53],42:[2,53],43:[2,53],44:[2,53],45:[2,53],46:[2,53],53:[2,53],56:[2,53],73:[2,53],75:[2,53],79:[2,53],81:[2,53],85:[2,53],86:[2,53]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:134,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:135,12:[2,16],13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,106],9:[2,106],12:[2,106],19:[2,106],22:[2,106],25:[2,106],26:[2,106],27:[2,106],28:[2,106],34:[2,106],37:[2,106],38:[2,106],40:[2,106],41:[2,106],42:[2,106],43:[2,106],44:[2,106],45:[2,106],46:[2,106],48:[2,106],53:[2,106],56:[2,106],66:[2,106],73:[2,106],75:[2,106],76:[2,106],77:[2,106],79:[2,106],80:[2,106],81:[2,106],82:[2,106],85:[2,106],86:[2,106]},{74:[1,136]},{5:104,6:[1,107],18:[1,106],20:137,21:[1,138],23:103,72:[1,40]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:139,17:14,18:[1,35],21:[1,33],27:[1,140],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,42],9:[2,103],12:[2,42],19:[2,103],22:[2,42],25:[2,42],26:[2,42],27:[2,42],28:[2,42],34:[2,42],38:[2,42],40:[2,42],41:[2,42],42:[2,42],43:[2,42],44:[2,42],45:[2,42],46:[2,42],53:[2,42],56:[2,42],73:[2,42],75:[2,42],76:[2,103],77:[2,103],79:[2,42],81:[2,42],85:[2,42],86:[2,42]},{9:[1,66],19:[1,69],76:[1,67],77:[1,68]},{9:[2,1],19:[2,1],76:[2,1],77:[2,1]},{1:[2,43],12:[2,43],22:[2,43],25:[2,43],26:[2,43],27:[2,43],28:[2,43],34:[2,43],38:[2,43],40:[2,43],41:[2,43],42:[2,43],43:[2,43],44:[2,43],45:[2,43],46:[2,43],53:[2,43],56:[2,43],73:[2,43],75:[2,43],79:[2,43],81:[2,43],85:[2,43],86:[2,43]},{1:[2,51],12:[2,51],22:[2,51],25:[2,51],26:[2,51],27:[2,51],28:[2,51],34:[2,51],38:[2,51],40:[2,51],41:[2,51],42:[2,51],43:[2,51],44:[2,51],45:[2,51],46:[2,51],53:[2,51],54:55,56:[2,51],73:[2,51],75:[2,51],79:[2,51],81:[2,51],85:[2,51],86:[2,51]},{1:[2,52],12:[2,52],22:[2,52],25:[2,52],26:[2,52],27:[2,52],28:[2,52],34:[2,52],38:[2,52],40:[2,52],41:[2,52],42:[2,52],43:[2,52],44:[2,52],45:[2,52],46:[2,52],53:[2,52],54:55,56:[2,52],73:[2,52],75:[2,52],79:[2,52],81:[2,52],85:[2,52],86:[2,52]},{1:[2,55],12:[2,55],22:[2,55],25:[2,55],26:[2,55],27:[2,55],28:[2,55],34:[2,55],38:[2,55],40:[2,55],41:[2,55],42:[2,55],43:[2,55],44:[2,55],45:[2,55],46:[2,55],53:[2,55],56:[2,55],73:[2,55],75:[2,55],79:[2,55],81:[2,55],85:[2,55],86:[2,55]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:141,12:[2,16],13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{14:142,27:[1,5],71:[1,143]},{1:[2,60],12:[2,60],22:[2,60],25:[2,60],26:[2,60],27:[2,60],28:[2,60],34:[2,60],38:[2,60],40:[2,60],41:[2,60],42:[2,60],43:[2,60],44:[2,60],45:[2,60],46:[2,60],52:[1,144],53:[2,60],56:[2,60],73:[2,60],75:[2,60],79:[2,60],81:[2,60],85:[2,60],86:[2,60]},{56:[1,145]},{1:[2,64],12:[2,64],22:[2,64],25:[2,64],26:[2,64],27:[2,64],28:[2,64],34:[2,64],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,64],54:55,56:[2,64],73:[2,64],75:[2,64],79:[2,64],81:[2,64],85:[2,64],86:[2,64]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:146,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],28:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,68],12:[2,68],22:[2,68],25:[2,68],26:[2,68],27:[2,68],28:[2,68],34:[2,68],38:[2,68],40:[2,68],41:[2,68],42:[2,68],43:[2,68],44:[2,68],45:[2,68],46:[2,68],53:[2,68],56:[2,68],73:[2,68],75:[2,68],79:[2,68],81:[2,68],85:[2,68],86:[2,68]},{38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],60:147,79:[1,38],86:[1,88]},{1:[2,71],12:[2,71],22:[2,71],25:[2,71],26:[2,71],27:[2,71],28:[2,71],34:[2,71],38:[2,71],40:[2,71],41:[2,71],42:[2,71],43:[2,71],44:[2,71],45:[2,71],46:[2,71],53:[2,71],56:[2,71],61:[1,148],73:[2,71],75:[2,71],79:[2,71],81:[2,71],85:[2,71],86:[1,149]},{1:[2,73],12:[2,73],22:[2,73],25:[2,73],26:[2,73],27:[2,73],28:[2,73],34:[2,73],38:[2,73],40:[2,73],41:[2,73],42:[2,73],43:[2,73],44:[2,73],45:[2,73],46:[2,73],53:[2,73],56:[2,73],73:[2,73],75:[2,73],79:[2,73],81:[2,73],85:[2,73],86:[2,73]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:151,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38],87:150},{1:[2,74],12:[2,74],22:[2,74],25:[2,74],26:[2,74],27:[2,74],28:[2,74],34:[2,74],38:[2,74],40:[2,74],41:[2,74],42:[2,74],43:[2,74],44:[2,74],45:[2,74],46:[2,74],53:[2,74],56:[2,74],63:[1,152],64:[1,153],73:[2,74],75:[2,74],79:[2,74],81:[2,74],85:[2,74],86:[2,74]},{1:[2,78],12:[2,78],22:[2,78],25:[2,78],26:[2,78],27:[2,78],28:[2,78],34:[2,78],38:[2,78],40:[2,78],41:[2,78],42:[2,78],43:[2,78],44:[2,78],45:[2,78],46:[2,78],53:[2,78],56:[2,78],73:[2,78],75:[2,78],79:[2,78],81:[2,78],85:[2,78],86:[2,78]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:154,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{9:[2,103],14:155,19:[2,103],27:[1,5],66:[1,156],76:[2,103],77:[2,103]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:157,12:[2,16],13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{14:158,27:[1,5],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{11:159,22:[2,24],25:[1,132],26:[2,24],27:[2,24]},{11:160,25:[1,161],26:[2,24],27:[2,24],75:[2,24]},{25:[2,95],26:[2,95],27:[2,95],28:[2,95],75:[2,95]},{19:[1,163],25:[2,84],26:[2,84],27:[2,84],28:[2,84],42:[2,84],69:[1,162],75:[2,84]},{25:[2,89],26:[2,89],27:[2,89],28:[2,89],42:[1,164],75:[2,89]},{5:104,6:[1,107],18:[1,106],20:165,23:103,72:[1,40]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:166,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{25:[2,93],26:[2,93],27:[2,93],28:[2,93],75:[2,93]},{1:[2,12],9:[2,12],12:[2,12],19:[2,12],22:[2,12],25:[2,12],26:[2,12],27:[2,12],28:[2,12],34:[2,12],37:[2,12],38:[2,12],39:[2,12],40:[2,12],41:[2,12],42:[2,12],43:[2,12],44:[2,12],45:[2,12],46:[2,12],48:[2,12],53:[2,12],56:[2,12],66:[2,12],69:[2,12],73:[2,12],75:[2,12],76:[2,12],77:[2,12],79:[2,12],80:[2,12],81:[2,12],82:[2,12],85:[2,12],86:[2,12]},{1:[2,13],9:[2,13],12:[2,13],19:[2,13],22:[2,13],25:[2,13],26:[2,13],27:[2,13],28:[2,13],34:[2,13],37:[2,13],38:[2,13],39:[2,13],40:[2,13],41:[2,13],42:[2,13],43:[2,13],44:[2,13],45:[2,13],46:[2,13],48:[2,13],53:[2,13],56:[2,13],66:[2,13],69:[2,13],73:[2,13],75:[2,13],76:[2,13],77:[2,13],79:[2,13],80:[2,13],81:[2,13],82:[2,13],85:[2,13],86:[2,13]},{19:[1,167]},{1:[2,14],9:[2,14],12:[2,14],19:[2,14],22:[2,14],25:[2,14],26:[2,14],27:[2,14],28:[2,14],34:[2,14],37:[2,14],38:[2,14],39:[2,14],40:[2,14],41:[2,14],42:[2,14],43:[2,14],44:[2,14],45:[2,14],46:[2,14],48:[2,14],53:[2,14],56:[2,14],66:[2,14],69:[2,14],73:[2,14],75:[2,14],76:[2,14],77:[2,14],79:[2,14],80:[2,14],81:[2,14],82:[2,14],85:[2,14],86:[2,14]},{1:[2,15],9:[2,15],12:[2,15],19:[2,15],22:[2,15],25:[2,15],26:[2,15],27:[2,15],28:[2,15],34:[2,15],37:[2,15],38:[2,15],39:[2,15],40:[2,15],41:[2,15],42:[2,15],43:[2,15],44:[2,15],45:[2,15],46:[2,15],48:[2,15],53:[2,15],56:[2,15],66:[2,15],69:[2,15],73:[2,15],75:[2,15],76:[2,15],77:[2,15],79:[2,15],80:[2,15],81:[2,15],82:[2,15],85:[2,15],86:[2,15]},{1:[2,109],12:[2,109],22:[2,109],25:[2,109],26:[2,109],27:[2,109],28:[2,109],34:[2,109],38:[2,109],40:[2,109],41:[2,109],42:[2,109],43:[2,109],44:[2,109],45:[2,109],46:[2,109],53:[2,109],56:[2,109],73:[2,109],75:[2,109],79:[2,109],81:[2,109],85:[2,109],86:[2,109]},{14:168,27:[1,5],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{9:[2,1],19:[2,1],76:[2,1],77:[2,1],80:[1,169]},{9:[2,9],19:[2,9],25:[1,171],76:[2,9],77:[2,9],80:[2,9],82:[1,170],84:[1,172]},{18:[1,173]},{9:[2,103],19:[2,103],76:[2,103],77:[2,103],80:[2,103],82:[2,103]},{1:[2,118],12:[2,118],22:[2,118],25:[1,174],26:[2,118],27:[2,118],28:[2,118],34:[2,118],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,118],54:55,56:[2,118],73:[2,118],75:[2,118],79:[2,118],81:[2,118],85:[2,118],86:[2,118]},{14:42,26:[1,41],27:[1,5],73:[1,175]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:6,17:14,18:[1,35],21:[1,33],29:[1,10],30:176,31:4,32:[1,7],33:[1,8],36:[1,9],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,27],26:[2,27],27:[2,27],28:[2,27],73:[2,27]},{1:[2,126],14:42,26:[1,41],27:[1,5]},{1:[2,35],9:[2,35],12:[2,35],19:[2,35],22:[2,35],25:[2,35],26:[2,35],27:[2,35],28:[2,35],34:[2,35],38:[2,35],40:[2,35],41:[2,35],42:[2,35],43:[2,35],44:[2,35],45:[2,35],46:[2,35],48:[2,35],52:[2,35],53:[2,35],56:[2,35],61:[2,35],63:[2,35],64:[2,35],66:[2,35],73:[2,35],75:[2,35],76:[2,35],77:[2,35],79:[2,35],81:[2,35],85:[2,35],86:[2,35]},{1:[2,40],12:[2,40],22:[2,40],25:[2,40],26:[2,40],27:[2,40],28:[2,40],34:[2,40],38:[2,40],40:[1,47],41:[2,40],42:[2,40],43:[1,50],44:[2,40],45:[2,40],46:[2,40],53:[2,40],54:55,56:[2,40],73:[2,40],75:[2,40],79:[2,40],81:[2,40],85:[2,40],86:[2,40]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:177,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],28:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,44],12:[2,44],22:[2,44],25:[2,44],26:[2,44],27:[2,44],28:[2,44],34:[2,44],38:[2,44],40:[2,44],41:[2,44],42:[2,44],43:[1,50],44:[2,44],45:[2,44],46:[2,44],53:[2,44],54:55,56:[2,44],73:[2,44],75:[2,44],79:[2,44],81:[2,44],85:[2,44],86:[2,44]},{1:[2,45],12:[2,45],22:[2,45],25:[2,45],26:[2,45],27:[2,45],28:[2,45],34:[2,45],38:[1,46],40:[1,47],41:[1,48],42:[2,45],43:[1,50],44:[1,51],45:[2,45],46:[1,53],53:[2,45],54:55,56:[2,45],73:[2,45],75:[2,45],79:[2,45],81:[2,45],85:[2,45],86:[2,45]},{1:[2,46],12:[2,46],22:[2,46],25:[2,46],26:[2,46],27:[2,46],28:[2,46],34:[2,46],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,46],54:55,56:[2,46],73:[2,46],75:[2,46],79:[2,46],81:[2,46],85:[2,46],86:[2,46]},{1:[2,47],12:[2,47],22:[2,47],25:[2,47],26:[2,47],27:[2,47],28:[2,47],34:[2,47],38:[2,47],40:[2,47],41:[2,47],42:[2,47],43:[2,47],44:[2,47],45:[2,47],46:[2,47],53:[2,47],54:55,56:[2,47],73:[2,47],75:[2,47],79:[2,47],81:[2,47],85:[2,47],86:[2,47]},{1:[2,48],12:[2,48],22:[2,48],25:[2,48],26:[2,48],27:[2,48],28:[2,48],34:[2,48],38:[2,48],40:[1,47],41:[2,48],42:[2,48],43:[1,50],44:[2,48],45:[2,48],46:[2,48],53:[2,48],54:55,56:[2,48],73:[2,48],75:[2,48],79:[2,48],81:[2,48],85:[2,48],86:[2,48]},{1:[2,49],12:[2,49],22:[2,49],25:[2,49],26:[2,49],27:[2,49],28:[2,49],34:[2,49],38:[1,46],40:[1,47],41:[1,48],42:[2,49],43:[1,50],44:[1,51],45:[2,49],46:[1,53],53:[2,49],54:55,56:[2,49],73:[2,49],75:[2,49],79:[2,49],81:[2,49],85:[2,49],86:[2,49]},{1:[2,50],12:[2,50],22:[2,50],25:[2,50],26:[2,50],27:[2,50],28:[2,50],34:[2,50],38:[1,46],40:[1,47],41:[2,50],42:[2,50],43:[1,50],44:[1,51],45:[2,50],46:[2,50],53:[2,50],54:55,56:[2,50],73:[2,50],75:[2,50],79:[2,50],81:[2,50],85:[2,50],86:[2,50]},{1:[2,59],12:[2,59],22:[2,59],25:[2,59],26:[2,59],27:[2,59],28:[2,59],34:[2,59],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,59],54:55,56:[2,59],73:[2,59],75:[2,59],79:[2,59],81:[2,59],85:[2,59],86:[2,59]},{11:178,25:[1,132],26:[2,24],27:[2,24],34:[2,24]},{26:[1,180],27:[1,181],34:[1,179]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],12:[2,25],13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],22:[2,25],24:182,26:[2,25],27:[2,25],28:[2,25],29:[1,63],32:[1,58],33:[1,59],34:[2,25],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{12:[2,22],22:[2,22],25:[2,22],26:[2,22],27:[2,22],28:[2,22],34:[2,22],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{1:[2,82],12:[2,82],22:[2,82],25:[2,82],26:[2,82],27:[2,82],28:[2,82],34:[2,82],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,82],54:55,56:[2,82],73:[2,82],75:[2,82],79:[2,82],81:[2,82],85:[2,82],86:[2,82]},{11:183,12:[2,24],25:[1,132],26:[2,24],27:[2,24]},{5:104,6:[1,107],7:[1,105],18:[1,106],20:98,23:103,25:[2,94],26:[2,94],27:[2,94],29:[1,101],36:[1,102],40:[1,100],67:99,68:97,70:184,72:[1,40],75:[2,94]},{1:[2,10],9:[2,10],12:[2,10],19:[2,10],22:[2,10],25:[2,10],26:[2,10],27:[2,10],28:[2,10],34:[2,10],37:[2,10],38:[2,10],39:[2,10],40:[2,10],41:[2,10],42:[2,10],43:[2,10],44:[2,10],45:[2,10],46:[2,10],48:[2,10],53:[2,10],56:[2,10],66:[2,10],73:[2,10],75:[2,10],76:[2,10],77:[2,10],79:[2,10],80:[2,10],81:[2,10],82:[2,10],85:[2,10],86:[2,10]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:185,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],22:[2,16],24:61,25:[2,16],26:[2,16],27:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,38],12:[2,38],22:[2,38],25:[2,38],26:[2,38],27:[2,38],28:[2,38],34:[2,38],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,38],54:55,56:[2,38],73:[2,38],75:[2,38],79:[2,38],81:[2,38],85:[2,38],86:[2,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:186,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],28:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{11:187,12:[2,24],25:[1,132],26:[2,24],27:[2,24]},{1:[2,58],12:[2,58],22:[2,58],25:[2,58],26:[2,58],27:[2,58],28:[2,58],34:[2,58],38:[2,58],40:[2,58],41:[2,58],42:[2,58],43:[2,58],44:[2,58],45:[2,58],46:[2,58],53:[2,58],56:[2,58],73:[2,58],75:[2,58],79:[2,58],81:[2,58],85:[2,58],86:[2,58]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:188,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{14:189,27:[1,5]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:190,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{11:191,25:[1,132],26:[2,24],27:[2,24],28:[2,24]},{1:[2,69],12:[2,69],22:[2,69],25:[2,69],26:[2,69],27:[2,69],28:[2,69],34:[2,69],38:[2,69],40:[2,69],41:[2,69],42:[2,69],43:[2,69],44:[2,69],45:[2,69],46:[2,69],53:[2,69],56:[2,69],61:[1,192],73:[2,69],75:[2,69],79:[2,69],81:[2,69],85:[2,69],86:[1,149]},{14:193,27:[1,5]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:151,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38],87:194},{14:195,25:[1,196],27:[1,5]},{25:[2,122],27:[2,122],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{14:197,27:[1,5]},{14:198,27:[1,5]},{14:199,27:[1,5],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{1:[2,80],12:[2,80],22:[2,80],25:[2,80],26:[2,80],27:[2,80],28:[2,80],34:[2,80],38:[2,80],40:[2,80],41:[2,80],42:[2,80],43:[2,80],44:[2,80],45:[2,80],46:[2,80],53:[2,80],56:[2,80],73:[2,80],75:[2,80],79:[2,80],81:[2,80],85:[2,80],86:[2,80]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:200,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{11:201,12:[2,24],25:[1,132],26:[2,24],27:[2,24]},{1:[2,8],9:[2,8],12:[2,8],19:[2,8],22:[2,8],25:[2,8],26:[2,8],27:[2,8],28:[2,8],34:[2,8],38:[2,8],40:[2,8],41:[2,8],42:[2,8],43:[2,8],44:[2,8],45:[2,8],46:[2,8],48:[2,8],53:[2,8],56:[2,8],66:[2,8],73:[2,8],75:[2,8],76:[2,8],77:[2,8],79:[2,8],81:[2,8],85:[2,8],86:[2,8]},{22:[1,202],26:[1,180],27:[1,181]},{26:[1,204],27:[1,205],75:[1,203]},{5:104,6:[1,107],7:[1,105],18:[1,106],20:98,23:103,26:[2,25],27:[2,25],28:[2,25],29:[1,101],36:[1,102],40:[1,100],67:99,68:206,72:[1,40],75:[2,25]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:207,17:14,18:[1,35],21:[1,33],27:[1,208],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{6:[1,107],18:[1,106],23:209},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:210,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{25:[2,91],26:[2,91],27:[2,91],28:[2,91],75:[2,91]},{25:[2,92],26:[2,92],27:[2,92],28:[2,92],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],75:[2,92],79:[1,38]},{6:[1,107],18:[1,106],23:211},{1:[2,99],12:[2,99],22:[2,99],25:[2,99],26:[2,99],27:[2,99],28:[2,99],34:[2,99],38:[2,99],40:[2,99],41:[2,99],42:[2,99],43:[2,99],44:[2,99],45:[2,99],46:[2,99],52:[2,99],53:[2,99],56:[2,99],73:[2,99],75:[2,99],79:[2,99],81:[2,99],85:[2,99],86:[2,99]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:212,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:213,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:72,4:214,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],17:113,18:[1,35],21:[1,33],72:[1,40],74:[1,34]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:215,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{25:[1,217],82:[1,216]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:218,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,101],9:[2,101],12:[2,101],19:[2,101],22:[2,101],25:[2,101],26:[2,101],27:[2,101],28:[2,101],34:[2,101],37:[2,101],38:[2,101],39:[2,101],40:[2,101],41:[2,101],42:[2,101],43:[2,101],44:[2,101],45:[2,101],46:[2,101],48:[2,101],53:[2,101],56:[2,101],66:[2,101],69:[2,101],73:[2,101],75:[2,101],76:[2,101],77:[2,101],79:[2,101],80:[2,101],81:[2,101],82:[2,101],85:[2,101],86:[2,101]},{14:42,26:[1,41],27:[1,5],28:[1,219]},{11:220,25:[1,132],26:[2,24],27:[2,24],28:[2,24]},{26:[1,180],27:[1,181],34:[1,221]},{35:[1,222],78:[1,223]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:224,29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:225,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],28:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{12:[2,18],22:[2,18],25:[2,18],26:[2,18],27:[2,18],28:[2,18],34:[2,18]},{12:[1,226],26:[1,180],27:[1,181]},{11:227,25:[1,161],26:[2,24],27:[2,24],75:[2,24]},{11:228,22:[2,24],25:[1,132],26:[2,24],27:[2,24]},{11:229,25:[1,132],26:[2,24],27:[2,24],28:[2,24]},{12:[1,230],26:[1,180],27:[1,181]},{14:231,27:[1,5],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{1:[2,61],12:[2,61],22:[2,61],25:[2,61],26:[2,61],27:[2,61],28:[2,61],34:[2,61],38:[2,61],40:[2,61],41:[2,61],42:[2,61],43:[2,61],44:[2,61],45:[2,61],46:[2,61],53:[2,61],56:[2,61],73:[2,61],75:[2,61],79:[2,61],81:[2,61],85:[2,61],86:[2,61]},{1:[2,63],12:[2,63],22:[2,63],25:[2,63],26:[2,63],27:[2,63],28:[2,63],34:[2,63],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,63],54:55,56:[2,63],73:[2,63],75:[2,63],79:[2,63],81:[2,63],85:[2,63],86:[2,63]},{26:[1,180],27:[1,181],28:[1,232]},{14:233,27:[1,5]},{1:[2,72],12:[2,72],22:[2,72],25:[2,72],26:[2,72],27:[2,72],28:[2,72],34:[2,72],38:[2,72],40:[2,72],41:[2,72],42:[2,72],43:[2,72],44:[2,72],45:[2,72],46:[2,72],53:[2,72],56:[2,72],73:[2,72],75:[2,72],79:[2,72],81:[2,72],85:[2,72],86:[2,72]},{14:234,25:[1,196],27:[1,5]},{1:[2,120],12:[2,120],22:[2,120],25:[2,120],26:[2,120],27:[2,120],28:[2,120],34:[2,120],38:[2,120],40:[2,120],41:[2,120],42:[2,120],43:[2,120],44:[2,120],45:[2,120],46:[2,120],53:[2,120],56:[2,120],61:[2,120],73:[2,120],75:[2,120],79:[2,120],81:[2,120],85:[2,120],86:[2,120]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:235,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,75],12:[2,75],22:[2,75],25:[2,75],26:[2,75],27:[2,75],28:[2,75],34:[2,75],38:[2,75],40:[2,75],41:[2,75],42:[2,75],43:[2,75],44:[2,75],45:[2,75],46:[2,75],53:[2,75],56:[2,75],64:[1,236],73:[2,75],75:[2,75],79:[2,75],81:[2,75],85:[2,75],86:[2,75]},{1:[2,77],12:[2,77],22:[2,77],25:[2,77],26:[2,77],27:[2,77],28:[2,77],34:[2,77],38:[2,77],40:[2,77],41:[2,77],42:[2,77],43:[2,77],44:[2,77],45:[2,77],46:[2,77],53:[2,77],56:[2,77],73:[2,77],75:[2,77],79:[2,77],81:[2,77],85:[2,77],86:[2,77]},{1:[2,79],12:[2,79],22:[2,79],25:[2,79],26:[2,79],27:[2,79],28:[2,79],34:[2,79],38:[2,79],40:[2,79],41:[2,79],42:[2,79],43:[2,79],44:[2,79],45:[2,79],46:[2,79],53:[2,79],56:[2,79],73:[2,79],75:[2,79],79:[2,79],81:[2,79],85:[2,79],86:[2,79]},{14:237,27:[1,5],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{12:[1,238],26:[1,180],27:[1,181]},{1:[2,104],9:[2,104],12:[2,104],19:[2,104],22:[2,104],25:[2,104],26:[2,104],27:[2,104],28:[2,104],34:[2,104],37:[2,104],38:[2,104],40:[2,104],41:[2,104],42:[2,104],43:[2,104],44:[2,104],45:[2,104],46:[2,104],48:[2,104],53:[2,104],56:[2,104],66:[2,104],73:[2,104],75:[2,104],76:[2,104],77:[2,104],79:[2,104],80:[2,104],81:[2,104],82:[2,104],85:[2,104],86:[2,104]},{1:[2,105],9:[2,105],12:[2,105],19:[2,105],22:[2,105],25:[2,105],26:[2,105],27:[2,105],28:[2,105],34:[2,105],37:[2,105],38:[2,105],40:[2,105],41:[2,105],42:[2,105],43:[2,105],44:[2,105],45:[2,105],46:[2,105],48:[2,105],53:[2,105],56:[2,105],66:[2,105],73:[2,105],75:[2,105],76:[2,105],77:[2,105],79:[2,105],80:[2,105],81:[2,105],82:[2,105],85:[2,105],86:[2,105]},{5:104,6:[1,107],7:[1,105],18:[1,106],20:98,23:103,29:[1,101],36:[1,102],40:[1,100],67:99,68:239,72:[1,40]},{5:104,6:[1,107],7:[1,105],18:[1,106],20:98,23:103,25:[2,94],26:[2,94],27:[2,94],28:[2,94],29:[1,101],36:[1,102],40:[1,100],67:99,68:97,70:240,72:[1,40]},{25:[2,96],26:[2,96],27:[2,96],28:[2,96],75:[2,96]},{25:[2,87],26:[2,87],27:[2,87],28:[2,87],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],75:[2,87],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],10:241,13:[1,31],15:[1,32],16:62,17:14,18:[1,35],21:[1,33],24:61,25:[2,16],26:[2,16],27:[2,16],28:[2,16],29:[1,63],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{25:[2,86],26:[2,86],27:[2,86],28:[2,86],42:[2,86],75:[2,86]},{25:[2,90],26:[2,90],27:[2,90],28:[2,90],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],75:[2,90],79:[1,38]},{25:[2,85],26:[2,85],27:[2,85],28:[2,85],42:[2,85],75:[2,85]},{1:[2,110],12:[2,110],22:[2,110],25:[2,110],26:[2,110],27:[2,110],28:[2,110],34:[2,110],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,110],54:55,56:[2,110],73:[2,110],75:[2,110],79:[2,110],81:[1,242],85:[2,110],86:[2,110]},{1:[2,112],12:[2,112],22:[2,112],25:[2,112],26:[2,112],27:[2,112],28:[2,112],34:[2,112],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,112],54:55,56:[2,112],73:[2,112],75:[2,112],79:[2,112],81:[2,112],85:[2,112],86:[2,112]},{9:[2,1],19:[2,1],76:[2,1],77:[2,1],82:[1,243]},{38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38],85:[1,244]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:245,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:72,4:246,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],17:113,18:[1,35],21:[1,33],72:[1,40],74:[1,34]},{1:[2,119],12:[2,119],22:[2,119],25:[2,119],26:[2,119],27:[2,119],28:[2,119],34:[2,119],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,119],54:55,56:[2,119],73:[2,119],75:[2,119],79:[2,119],81:[2,119],85:[2,119],86:[2,119]},{73:[1,247]},{26:[1,180],27:[1,181],28:[1,248]},{78:[1,223]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:249,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{14:250,27:[1,5]},{12:[2,19],22:[2,19],25:[2,19],26:[2,19],27:[2,19],28:[2,19],34:[2,19]},{11:251,25:[1,132],26:[2,24],27:[2,24],28:[2,24]},{1:[2,6],9:[2,6],12:[2,6],19:[2,6],22:[2,6],25:[2,6],26:[2,6],27:[2,6],28:[2,6],34:[2,6],38:[2,6],40:[2,6],41:[2,6],42:[2,6],43:[2,6],44:[2,6],45:[2,6],46:[2,6],48:[2,6],53:[2,6],56:[2,6],66:[2,6],73:[2,6],75:[2,6],76:[2,6],77:[2,6],79:[2,6],81:[2,6],85:[2,6],86:[2,6]},{26:[1,204],27:[1,205],75:[1,252]},{22:[1,253],26:[1,180],27:[1,181]},{26:[1,180],27:[1,181],28:[1,254]},{14:255,27:[1,5]},{1:[2,100],12:[2,100],22:[2,100],25:[2,100],26:[2,100],27:[2,100],28:[2,100],34:[2,100],38:[2,100],40:[2,100],41:[2,100],42:[2,100],43:[2,100],44:[2,100],45:[2,100],46:[2,100],52:[2,100],53:[2,100],56:[2,100],73:[2,100],75:[2,100],79:[2,100],81:[2,100],85:[2,100],86:[2,100]},{1:[2,65],12:[2,65],22:[2,65],25:[2,65],26:[2,65],27:[2,65],28:[2,65],34:[2,65],38:[2,65],40:[2,65],41:[2,65],42:[2,65],43:[2,65],44:[2,65],45:[2,65],46:[2,65],53:[2,65],56:[2,65],73:[2,65],75:[2,65],79:[2,65],81:[2,65],85:[2,65],86:[2,65]},{1:[2,70],12:[2,70],22:[2,70],25:[2,70],26:[2,70],27:[2,70],28:[2,70],34:[2,70],38:[2,70],40:[2,70],41:[2,70],42:[2,70],43:[2,70],44:[2,70],45:[2,70],46:[2,70],53:[2,70],56:[2,70],73:[2,70],75:[2,70],79:[2,70],81:[2,70],85:[2,70],86:[2,70]},{1:[2,121],12:[2,121],22:[2,121],25:[2,121],26:[2,121],27:[2,121],28:[2,121],34:[2,121],38:[2,121],40:[2,121],41:[2,121],42:[2,121],43:[2,121],44:[2,121],45:[2,121],46:[2,121],53:[2,121],56:[2,121],61:[2,121],73:[2,121],75:[2,121],79:[2,121],81:[2,121],85:[2,121],86:[2,121]},{25:[2,123],27:[2,123],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],79:[1,38]},{14:256,27:[1,5]},{1:[2,81],12:[2,81],22:[2,81],25:[2,81],26:[2,81],27:[2,81],28:[2,81],34:[2,81],38:[2,81],40:[2,81],41:[2,81],42:[2,81],43:[2,81],44:[2,81],45:[2,81],46:[2,81],53:[2,81],56:[2,81],73:[2,81],75:[2,81],79:[2,81],81:[2,81],85:[2,81],86:[2,81]},{14:257,27:[1,5]},{25:[2,97],26:[2,97],27:[2,97],28:[2,97],75:[2,97]},{11:258,25:[1,161],26:[2,24],27:[2,24],28:[2,24]},{11:259,25:[1,132],26:[2,24],27:[2,24],28:[2,24]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:260,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:261,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:262,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,114],12:[2,114],22:[2,114],25:[2,114],26:[2,114],27:[2,114],28:[2,114],34:[2,114],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,114],54:55,56:[2,114],73:[2,114],75:[2,114],79:[2,114],81:[2,114],85:[2,114],86:[2,114]},{9:[2,1],19:[2,1],76:[2,1],77:[2,1],82:[1,263]},{1:[2,102],9:[2,102],12:[2,102],19:[2,102],22:[2,102],25:[2,102],26:[2,102],27:[2,102],28:[2,102],34:[2,102],37:[2,102],38:[2,102],39:[2,102],40:[2,102],41:[2,102],42:[2,102],43:[2,102],44:[2,102],45:[2,102],46:[2,102],48:[2,102],53:[2,102],56:[2,102],66:[2,102],69:[2,102],73:[2,102],75:[2,102],76:[2,102],77:[2,102],79:[2,102],80:[2,102],81:[2,102],82:[2,102],85:[2,102],86:[2,102]},{1:[2,41],12:[2,41],22:[2,41],25:[2,41],26:[2,41],27:[2,41],28:[2,41],34:[2,41],38:[2,41],40:[2,41],41:[2,41],42:[2,41],43:[2,41],44:[2,41],45:[2,41],46:[2,41],53:[2,41],56:[2,41],73:[2,41],75:[2,41],79:[2,41],81:[2,41],85:[2,41],86:[2,41]},{1:[2,32],26:[2,32],27:[2,32],28:[2,32],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[1,54],54:55,56:[1,39],73:[2,32],79:[1,38]},{1:[2,108],12:[2,108],22:[2,108],25:[2,108],26:[2,108],27:[2,108],28:[2,108],34:[2,108],38:[2,108],40:[2,108],41:[2,108],42:[2,108],43:[2,108],44:[2,108],45:[2,108],46:[2,108],53:[2,108],56:[2,108],73:[2,108],75:[2,108],79:[2,108],81:[2,108],85:[2,108],86:[2,108]},{26:[1,180],27:[1,181],28:[1,264]},{1:[2,107],9:[2,107],12:[2,107],19:[2,107],22:[2,107],25:[2,107],26:[2,107],27:[2,107],28:[2,107],34:[2,107],37:[2,107],38:[2,107],40:[2,107],41:[2,107],42:[2,107],43:[2,107],44:[2,107],45:[2,107],46:[2,107],48:[2,107],53:[2,107],56:[2,107],66:[2,107],73:[2,107],75:[2,107],76:[2,107],77:[2,107],79:[2,107],80:[2,107],81:[2,107],82:[2,107],85:[2,107],86:[2,107]},{1:[2,11],9:[2,11],12:[2,11],19:[2,11],22:[2,11],25:[2,11],26:[2,11],27:[2,11],28:[2,11],34:[2,11],37:[2,11],38:[2,11],39:[2,11],40:[2,11],41:[2,11],42:[2,11],43:[2,11],44:[2,11],45:[2,11],46:[2,11],48:[2,11],53:[2,11],56:[2,11],66:[2,11],73:[2,11],75:[2,11],76:[2,11],77:[2,11],79:[2,11],80:[2,11],81:[2,11],82:[2,11],85:[2,11],86:[2,11]},{1:[2,39],12:[2,39],22:[2,39],25:[2,39],26:[2,39],27:[2,39],28:[2,39],34:[2,39],38:[2,39],40:[2,39],41:[2,39],42:[2,39],43:[2,39],44:[2,39],45:[2,39],46:[2,39],53:[2,39],56:[2,39],73:[2,39],75:[2,39],79:[2,39],81:[2,39],85:[2,39],86:[2,39]},{1:[2,56],12:[2,56],22:[2,56],25:[2,56],26:[2,56],27:[2,56],28:[2,56],34:[2,56],38:[2,56],40:[2,56],41:[2,56],42:[2,56],43:[2,56],44:[2,56],45:[2,56],46:[2,56],53:[2,56],56:[2,56],73:[2,56],75:[2,56],79:[2,56],81:[2,56],85:[2,56],86:[2,56]},{1:[2,76],12:[2,76],22:[2,76],25:[2,76],26:[2,76],27:[2,76],28:[2,76],34:[2,76],38:[2,76],40:[2,76],41:[2,76],42:[2,76],43:[2,76],44:[2,76],45:[2,76],46:[2,76],53:[2,76],56:[2,76],73:[2,76],75:[2,76],79:[2,76],81:[2,76],85:[2,76],86:[2,76]},{1:[2,7],9:[2,7],12:[2,7],19:[2,7],22:[2,7],25:[2,7],26:[2,7],27:[2,7],28:[2,7],34:[2,7],38:[2,7],40:[2,7],41:[2,7],42:[2,7],43:[2,7],44:[2,7],45:[2,7],46:[2,7],48:[2,7],53:[2,7],56:[2,7],66:[2,7],73:[2,7],75:[2,7],76:[2,7],77:[2,7],79:[2,7],81:[2,7],85:[2,7],86:[2,7]},{26:[1,204],27:[1,205],28:[1,265]},{26:[1,180],27:[1,181],28:[1,266]},{1:[2,111],12:[2,111],22:[2,111],25:[2,111],26:[2,111],27:[2,111],28:[2,111],34:[2,111],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,111],54:55,56:[2,111],73:[2,111],75:[2,111],79:[2,111],81:[2,111],85:[2,111],86:[2,111]},{1:[2,113],12:[2,113],22:[2,113],25:[2,113],26:[2,113],27:[2,113],28:[2,113],34:[2,113],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,113],54:55,56:[2,113],73:[2,113],75:[2,113],79:[2,113],81:[2,113],85:[2,113],86:[2,113]},{1:[2,116],12:[2,116],22:[2,116],25:[2,116],26:[2,116],27:[2,116],28:[2,116],34:[2,116],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,116],54:55,56:[2,116],73:[2,116],75:[2,116],79:[2,116],81:[1,267],85:[2,116],86:[2,116]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:268,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{12:[2,20],22:[2,20],25:[2,20],26:[2,20],27:[2,20],28:[2,20],34:[2,20]},{25:[2,98],26:[2,98],27:[2,98],28:[2,98],75:[2,98]},{25:[2,88],26:[2,88],27:[2,88],28:[2,88],75:[2,88]},{3:11,4:12,5:27,6:[1,28],7:[1,29],8:[1,30],13:[1,31],15:[1,32],16:269,17:14,18:[1,35],21:[1,33],32:[1,58],33:[1,59],39:[1,13],40:[1,16],47:[1,15],49:17,50:[1,18],51:19,54:20,55:[1,21],56:[1,39],57:[1,22],58:[1,23],59:[1,24],62:[1,25],65:[1,26],71:[1,37],72:[1,40],74:[1,34],78:[1,36],79:[1,38]},{1:[2,115],12:[2,115],22:[2,115],25:[2,115],26:[2,115],27:[2,115],28:[2,115],34:[2,115],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,115],54:55,56:[2,115],73:[2,115],75:[2,115],79:[2,115],81:[2,115],85:[2,115],86:[2,115]},{1:[2,117],12:[2,117],22:[2,117],25:[2,117],26:[2,117],27:[2,117],28:[2,117],34:[2,117],38:[1,46],40:[1,47],41:[1,48],42:[1,49],43:[1,50],44:[1,51],45:[1,52],46:[1,53],53:[2,117],54:55,56:[2,117],73:[2,117],75:[2,117],79:[2,117],81:[2,117],85:[2,117],86:[2,117]}], defaultActions: {}, parseError: function parseError(str, hash) { throw new Error(str); diff --git a/src/ast.co b/src/ast.co index 5aa2c6624..499120ba4 100644 --- a/src/ast.co +++ b/src/ast.co @@ -934,7 +934,7 @@ class exports.Assign extends Node lvar = left instanceof Var sign = op.replace \: '' name = (left <<< {+front})compile o, LEVEL_LIST - code = if not o.level and right instanceof While and + code = if not o.level and right instanceof While and not right.else and (lvar or left.isSimpleAccess()) # Optimize `a = while ...`. """#{ res = o.scope.temporary \res } = []; @@ -1447,7 +1447,7 @@ class exports.While extends Node # `while true` `until false` => `for (;;)` import {test} if @post or test.value is not ''+!un - children: <[ test body update ]> + children: <[ test body update else ]> aSource: \test, aTargets: <[ body update ]> @@ -1462,6 +1462,8 @@ class exports.While extends Node body.lines.length = 0 if top?verb is \continue and not top.label this + addElse: (@else) -> this + makeReturn: -> if it then @body.makeReturn it @@ -1484,9 +1486,13 @@ class exports.While extends Node if (last = lines[*-1]) and last not instanceof Throw lines[*-1] = last.makeReturn res = o.scope.assign \_results '[]' ret = "\n#{@tab}return #{ res or '[]' };" + lines.unshift JS "#{ run = o.scope.temporary \run } = true;" if @else code += "\n#that\n#{@tab}" if @body.compile o, LEVEL_TOP code += \} code += " while (#{ potest.compile o<<<{@tab} LEVEL_PAREN });" if potest + if run + @else.makeReturn() if @returns + code += " if (!#run) #{ @compileBlock o, @else }" code + ret pluckDirectCalls: (o) -> diff --git a/src/grammar.co b/src/grammar.co index 5fac01673..2e2fd4512 100644 --- a/src/grammar.co +++ b/src/grammar.co @@ -172,7 +172,8 @@ bnf = # Loops can either be normal, with a block of expressions # to execute, or postfix, with a single expression. - o 'LoopHead Block' -> $1.addBody $2 + o 'LoopHead Block' -> $1.addBody $2 + o 'LoopHead Block ELSE Block' -> $1.addBody $2 .addElse $4 o 'Expression LoopHead' -> $2.addBody Block $1 o 'DO Block WHILE Expression' , -> new While($4, $3 is \until, true)addBody $2 diff --git a/test/loop.co b/test/loop.co index 63433c80e..e230ed78d 100644 --- a/test/loop.co +++ b/test/loop.co @@ -266,3 +266,17 @@ a = [1 2 3] b = [] continue while a.pop(), b.push that eq '3,2,1' ''+b + + +### `else` clause +for cond of [true false] + while cond + break + else + ok not cond + +r = for i til 1 then i else [9] +eq 0 r.0 + +r = for i til 0 then i else [9] +eq 9 r.0