From 1602e0e823179d93a1dc55e256d6d894fa8e8eb6 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 7 Mar 2010 11:41:56 -0500 Subject: [PATCH] adding complete documentation for the grammar --- documentation/docs/grammar.html | 643 +++++++++++---------- lib/command.js | 2 +- lib/grammar.js | 838 ++++++++++++++------------- lib/parser.js | 388 +++++++------ src/grammar.coffee | 973 ++++++++++++++++++-------------- 5 files changed, 1539 insertions(+), 1305 deletions(-) diff --git a/documentation/docs/grammar.html b/documentation/docs/grammar.html index 4f96b3f2..98fe0d7b 100644 --- a/documentation/docs/grammar.html +++ b/documentation/docs/grammar.html @@ -1,9 +1,345 @@ - grammar.coffee

grammar.coffee

#
Parser: require('jison').Parser
#

DSL ===================================================================

#

Detect functions: [

unwrap: /function\s*\(\)\s*\{\s*return\s*([\s\S]*);\s*\}/
#

Quickie DSL for Jison access.

o: (pattern_string, func, options) ->
-  if func
-    func: if match: (func + '').match(unwrap) then match[1] else "($func())"
-    [pattern_string, "$$ = $func;", options]
-  else
-    [pattern_string, '$$ = $1;', options]
#

Precedence ===========================================================

operators: [
+      grammar.coffee           

grammar.coffee

#

The CoffeeScript parser is generated by Jison +from this grammar file. Jison is a bottom-up parser generator, similar in +style to Bison, implemented in JavaScript. +It can recognize LALR(1), LR(0), SLR(1), and LR(1) +type grammars. To create the Jison parser, we list the pattern to match +on the left-hand side, and the action to take (usually the creation of syntax +tree nodes) on the right. As the parser runs, it +shifts tokens from our token stream, from left to right, and +attempts to match +the token sequence against the rules below. When a match can be made, it +reduces into the nonterminal +(the enclosing name at the top), and we proceed from there.

+ +

If you run the cake build:parser command, Jison constructs a parse table +from our rules and saves it into lib/parser.js.

#

The only dependency is on the Jison.Parser.

Parser: require('jison').Parser
#

Jison DSL

#

Since we're going to be wrapped in a function by Jison in any case, if our +action immediately returns a value, we can optimize by removing the function +wrapper and just returning the value directly.

unwrap: /function\s*\(\)\s*\{\s*return\s*([\s\S]*);\s*\}/
#

Our handy DSL for Jison grammar generation, thanks to +Tim Caswell. For every rule in the grammar, +we pass the pattern-defining string, the action to run, and extra options, +optionally. If no action is specified, we simply pass the value of the +previous nonterminal.

o: (pattern_string, action, options) ->
+  return [pattern_string, '$$ = $1;', options] unless action
+  action: if match: (action + '').match(unwrap) then match[1] else "($action())"
+  [pattern_string, "$$ = $action;", options]
#

Grammatical Rules

#

In all of the rules that follow, you'll see the name of the nonterminal as +the key to a list of alternative matches. With each match's action, the +dollar-sign variables are provided by Jison as references to the value of +their numeric position, so in this rule:

+ +
"Expression UNLESS Expression"
+
+ +

$1 would be the value of the first Expression, $2 would be the token +for the UNLESS terminal, and $3 would be the value of the second +Expression.

grammar: {
#

The Root is the top-level node in the syntax tree. Since we parse bottom-up, +all parsing must end here.

  Root: [
+    o "",                                  -> new Expressions()
+    o "TERMINATOR",                        -> new Expressions()
+    o "Expressions"
+    o "Block TERMINATOR"
+  ]
#

Any list of expressions or method body, seperated by line breaks or +semicolons.

  Expressions: [
+    o "Expression",                        -> Expressions.wrap [$1]
+    o "Expressions TERMINATOR Expression", -> $1.push $3
+    o "Expressions TERMINATOR"
+  ]
#

All the different types of expressions in our language. The basic unit of +CoffeeScript is the Expression -- you'll notice that there is no +"statement" nonterminal. Expressions serve as the building blocks +of many other rules, making them somewhat circular.

  Expression: [
+    o "Value"
+    o "Call"
+    o "Code"
+    o "Operation"
+    o "Assign"
+    o "If"
+    o "Try"
+    o "Throw"
+    o "Return"
+    o "While"
+    o "For"
+    o "Switch"
+    o "Extends"
+    o "Class"
+    o "Splat"
+    o "Existence"
+    o "Comment"
+  ]
#

A an indented block of expressions. Note that the Rewriter +will convert some postfix forms into blocks for us, by adjusting the +token stream.

  Block: [
+    o "INDENT Expressions OUTDENT",             -> $2
+    o "INDENT OUTDENT",                         -> new Expressions()
+  ]
#

A literal identifier, a variable name or property.

  Identifier: [
+    o "IDENTIFIER",                             -> new LiteralNode yytext
+  ]
#

Alphanumerics are separated from the other Literal matchers because +they can also serve as keys in object literals.

  AlphaNumeric: [
+    o "NUMBER",                                 -> new LiteralNode yytext
+    o "STRING",                                 -> new LiteralNode yytext
+  ]
#

All of our immediate values. These can (in general), be passed straight +through and printed to JavaScript.

  Literal: [
+    o "AlphaNumeric"
+    o "JS",                                     -> new LiteralNode yytext
+    o "REGEX",                                  -> new LiteralNode yytext
+    o "BREAK",                                  -> new LiteralNode yytext
+    o "CONTINUE",                               -> new LiteralNode yytext
+    o "TRUE",                                   -> new LiteralNode true
+    o "FALSE",                                  -> new LiteralNode false
+    o "YES",                                    -> new LiteralNode true
+    o "NO",                                     -> new LiteralNode false
+    o "ON",                                     -> new LiteralNode true
+    o "OFF",                                    -> new LiteralNode false
+  ]
#

Assignment of a variable, property, or index to a value.

  Assign: [
+    o "Value ASSIGN Expression",                -> new AssignNode $1, $3
+  ]
#

Assignment when it happens within an object literal. The difference from +the ordinary Assign is that these allow numbers and strings as keys.

  AssignObj: [
+    o "Identifier ASSIGN Expression",           -> new AssignNode new ValueNode($1), $3, 'object'
+    o "AlphaNumeric ASSIGN Expression",         -> new AssignNode new ValueNode($1), $3, 'object'
+    o "Comment"
+  ]
#

A return statement from a function body.

  Return: [
+    o "RETURN Expression",                      -> new ReturnNode $2
+    o "RETURN",                                 -> new ReturnNode new ValueNode new LiteralNode 'null'
+  ]
#

A comment. Because CoffeeScript passes comments through to JavaScript, we +have to parse comments like any other construct, and identify all of the +positions in which they can occur in the grammar.

  Comment: [
+    o "COMMENT",                                -> new CommentNode yytext
+  ]
#

The existential operator.

  Existence: [
+    o "Expression ?",                           -> new ExistenceNode $1
+  ]
#

The Code node is the function literal. It's defined by an indented block +of Expressions preceded by a function arrow, with an optional parameter +list.

  Code: [
+    o "PARAM_START ParamList PARAM_END FuncGlyph Block", -> new CodeNode $2, $5, $4
+    o "FuncGlyph Block",                        -> new CodeNode [], $2, $1
+  ]
#

CoffeeScript has two different symbols for functions. -> is for ordinary +functions, and => is for functions bound to the current value of this.

  FuncGlyph: [
+    o "->",                                     -> 'func'
+    o "=>",                                     -> 'boundfunc'
+  ]
#

The list of parameters that a function accepts can be of any length.

  ParamList: [
+    o "",                                       -> []
+    o "Param",                                  -> [$1]
+    o "ParamList , Param",                      -> $1.concat [$3]
+  ]
#

A single parameter in a function definition can be ordinary, or a splat +that hoovers up the remaining arguments.

  Param: [
+    o "PARAM",                                  -> new LiteralNode yytext
+    o "Param . . .",                            -> new SplatNode $1
+  ]
#

A splat that occurs outside of a parameter list.

  Splat: [
+    o "Expression . . .",                       -> new SplatNode $1
+  ]
#

The types of things that can be treated as values -- assigned to, invoked +as functions, indexed into, named as a class, etc.

  Value: [
+    o "Identifier",                             -> new ValueNode $1
+    o "Literal",                                -> new ValueNode $1
+    o "Array",                                  -> new ValueNode $1
+    o "Object",                                 -> new ValueNode $1
+    o "Parenthetical",                          -> new ValueNode $1
+    o "Range",                                  -> new ValueNode $1
+    o "This"
+    o "Value Accessor",                         -> $1.push $2
+    o "Invocation Accessor",                    -> new ValueNode $1, [$2]
+  ]
#

The general group of accessors into an object, by property, by prototype +or by array index or slice.

  Accessor: [
+    o "PROPERTY_ACCESS Identifier",             -> new AccessorNode $2
+    o "PROTOTYPE_ACCESS Identifier",            -> new AccessorNode $2, 'prototype'
+    o "SOAK_ACCESS Identifier",                 -> new AccessorNode $2, 'soak'
+    o "Index"
+    o "Slice",                                  -> new SliceNode $1
+  ]
#

Indexing into an object or array using bracket notation.

  Index: [
+    o "INDEX_START Expression INDEX_END",       -> new IndexNode $2
+    o "SOAKED_INDEX_START Expression SOAKED_INDEX_END", -> new IndexNode $2, 'soak'
+  ]
#

In CoffeeScript, an object literal is simply a list of assignments.

  Object: [
+    o "{ AssignList }",                         -> new ObjectNode $2
+    o "{ IndentedAssignList }",                 -> new ObjectNode $2
+  ]
#

Class definitions have optional bodies of prototype property assignments, +and optional references to the superclass.

  Class: [
+    o "CLASS Value",                            -> new ClassNode $2
+    o "CLASS Value EXTENDS Value",              -> new ClassNode $2, $4
+    o "CLASS Value IndentedAssignList",         -> new ClassNode $2, null, $3
+    o "CLASS Value EXTENDS Value IndentedAssignList", -> new ClassNode $2, $4, $5
+  ]
#

Assignment of properties within an object literal can be separated by +comma, as in JavaScript, or simply by newline.

  AssignList: [
+    o "",                                       -> []
+    o "AssignObj",                              -> [$1]
+    o "AssignList , AssignObj",                 -> $1.concat [$3]
+    o "AssignList TERMINATOR AssignObj",        -> $1.concat [$3]
+    o "AssignList , TERMINATOR AssignObj",      -> $1.concat [$4]
+  ]
#

An AssignList within a block indentation.

  IndentedAssignList: [
+    o "INDENT AssignList OUTDENT",              -> $2
+  ]
#

The three flavors of function call: normal, object instantiation with new, +and calling super()

  Call: [
+    o "Invocation"
+    o "NEW Invocation",                         -> $2.new_instance()
+    o "Super"
+  ]
#

Extending an object by setting its prototype chain to reference a parent +object.

  Extends: [
+    o "Value EXTENDS Value",                    -> new ExtendsNode $1, $3
+  ]
#

Ordinary function invocation, or a chained series of calls.

  Invocation: [
+    o "Value Arguments",                        -> new CallNode $1, $2
+    o "Invocation Arguments",                   -> new CallNode $1, $2
+  ]
#

The list of arguments to a function call.

  Arguments: [
+    o "CALL_START ArgList CALL_END",            -> $2
+  ]
#

Calling super.

  Super: [
+    o "SUPER CALL_START ArgList CALL_END",      -> new CallNode 'super', $3
+  ]
#

A reference to the this current object, either naked or to a property.

  This: [
+    o "@",                                      -> new ValueNode new LiteralNode 'this'
+    o "@ Identifier",                           -> new ValueNode new LiteralNode('this'), [new AccessorNode($2)]
+  ]
#

The CoffeeScript range literal.

  Range: [
+    o "[ Expression . . Expression ]",          -> new RangeNode $2, $5
+    o "[ Expression . . . Expression ]",        -> new RangeNode $2, $6, true
+  ]
#

The slice literal.

  Slice: [
+    o "INDEX_START Expression . . Expression INDEX_END", -> new RangeNode $2, $5
+    o "INDEX_START Expression . . . Expression INDEX_END", -> new RangeNode $2, $6, true
+  ]
#

The array literal.

  Array: [
+    o "[ ArgList ]",                            -> new ArrayNode $2
+  ]
#

The ArgList is both the list of objects passed into a function call, +as well as the contents of an array literal +(i.e. comma-separated expressions). Newlines work as well.

  ArgList: [
+    o "",                                       -> []
+    o "Expression",                             -> [$1]
+    o "INDENT Expression",                      -> [$2]
+    o "ArgList , Expression",                   -> $1.concat [$3]
+    o "ArgList TERMINATOR Expression",          -> $1.concat [$3]
+    o "ArgList , TERMINATOR Expression",        -> $1.concat [$4]
+    o "ArgList , INDENT Expression",            -> $1.concat [$4]
+    o "ArgList OUTDENT"
+  ]
#

Just simple, comma-separated, required arguments (no fancy syntax). We need +this to be separate from the ArgList for use in Switch blocks, where +having the newlines wouldn't make sense.

  SimpleArgs: [
+    o "Expression"
+    o "SimpleArgs , Expression",                ->
+      if $1 instanceof Array then $1.concat([$3]) else [$1].concat([$3])
+  ]
#

The variants of try/catch/finally exception handling blocks.

  Try: [
+    o "TRY Block Catch",                        -> new TryNode $2, $3[0], $3[1]
+    o "TRY Block FINALLY Block",                -> new TryNode $2, null, null, $4
+    o "TRY Block Catch FINALLY Block",          -> new TryNode $2, $3[0], $3[1], $5
+  ]
#

A catch clause names its error and runs a block of code.

  Catch: [
+    o "CATCH Identifier Block",                 -> [$2, $3]
+  ]
#

Throw an exception object.

  Throw: [
+    o "THROW Expression",                       -> new ThrowNode $2
+  ]
#

Parenthetical expressions. Note that the Parenthetical is a Value, +not an Expression, so if you need to use an expression in a place +where only values are accepted, wrapping it in parentheses will always do +the trick.

  Parenthetical: [
+    o "( Expression )",                         -> new ParentheticalNode $2
+  ]
#

The condition portion of a while loop.

  WhileSource: [
+    o "WHILE Expression",                       -> new WhileNode $2
+    o "WHILE Expression WHEN Expression",       -> new WhileNode $2, {filter : $4}
+  ]
#

The while loop can either be normal, with a block of expressions to execute, +or postfix, with a single expression. There is no do..while.

  While: [
+    o "WhileSource Block",                      -> $1.add_body $2
+    o "Expression WhileSource",                 -> $2.add_body $1
+  ]
#

Array, object, and range comprehensions, at the most generic level. +Comprehensions can either be normal, with a block of expressions to execute, +or postfix, with a single expression.

  For: [
+    o "Expression FOR ForVariables ForSource",  -> new ForNode $1, $4, $3[0], $3[1]
+    o "FOR ForVariables ForSource Block",       -> new ForNode $4, $3, $2[0], $2[1]
+  ]
#

An array or range comprehension has variables for the current element and +(optional) reference to the current index. Or, key, value, in the case +of object comprehensions.

  ForVariables: [
+    o "Identifier",                             -> [$1]
+    o "Identifier , Identifier",                -> [$1, $3]
+  ]
#

The source of a comprehension is an array or object with an optional filter +clause. If it's an array comprehension, you can also choose to step throug +in fixed-size increments.

  ForSource: [
+    o "IN Expression",                          -> {source:   $2}
+    o "OF Expression",                          -> {source:   $2, object: true}
+    o "ForSource WHEN Expression",              -> $1.filter: $3; $1
+    o "ForSource BY Expression",                -> $1.step:   $3; $1
+  ]
#

The CoffeeScript switch/when/else block replaces the JavaScript +switch/case/default by compiling into an if-else chain.

  Switch: [
+    o "SWITCH Expression INDENT Whens OUTDENT", -> $4.rewrite_condition $2
+    o "SWITCH Expression INDENT Whens ELSE Block OUTDENT", -> $4.rewrite_condition($2).add_else $6, true
+  ]
#

The inner list of whens is left recursive. At code-generation time, the +IfNode will rewrite them into a proper chain.

  Whens: [
+    o "When"
+    o "Whens When",                             -> $1.push $2
+  ]
#

An individual When clause, with action.

  When: [
+    o "LEADING_WHEN SimpleArgs Block",          -> new IfNode $2, $3, null, {statement: true}
+    o "LEADING_WHEN SimpleArgs Block TERMINATOR", -> new IfNode $2, $3, null, {statement: true}
+    o "Comment TERMINATOR When",                -> $3.comment: $1; $3
+  ]
#

The most basic form of if is a condition and an action. The following +if-related rules are broken up along these lines in order to avoid +ambiguity.

  IfStart: [
+    o "IF Expression Block",                    -> new IfNode $2, $3
+    o "IfStart ElsIf",                          -> $1.add_else $2
+  ]
#

An IfStart can optionally be followed by an else block.

  IfBlock: [
+    o "IfStart"
+    o "IfStart ELSE Block",                     -> $1.add_else $3
+  ]
#

An else if continuation of the if expression.

  ElsIf: [
+    o "ELSE IF Expression Block",               -> (new IfNode($3, $4)).force_statement()
+  ]
#

The full complement of if expressions, including postfix one-liner +if and unless.

  If: [
+    o "IfBlock"
+    o "Expression IF Expression",               -> new IfNode $3, Expressions.wrap([$1]), null, {statement: true}
+    o "Expression UNLESS Expression",           -> new IfNode $3, Expressions.wrap([$1]), null, {statement: true, invert: true}
+  ]
#

Arithmetic and logical operators, working on one or more operands. +Here they are grouped by order of precedence. The actual precedence rules +are defined at the bottom of the page. It would be shorter if we could +combine most of these rules into a single generic Operand OpSymbol Operand +-type rule, but in order to make the precedence binding possible, separate +rules are necessary.

  Operation: [
+    o "! Expression",                           -> new OpNode '!', $2
+    o "!! Expression",                          -> new OpNode '!!', $2
+    o("- Expression",                           (-> new OpNode('-', $2)), {prec: 'UMINUS'})
+    o("+ Expression",                           (-> new OpNode('+', $2)), {prec: 'UPLUS'})
+    o "NOT Expression",                         -> new OpNode 'not', $2
+    o "~ Expression",                           -> new OpNode '~', $2
+    o "-- Expression",                          -> new OpNode '--', $2
+    o "++ Expression",                          -> new OpNode '++', $2
+    o "DELETE Expression",                      -> new OpNode 'delete', $2
+    o "TYPEOF Expression",                      -> new OpNode 'typeof', $2
+    o "Expression --",                          -> new OpNode '--', $1, null, true
+    o "Expression ++",                          -> new OpNode '++', $1, null, true
+
+    o "Expression * Expression",                -> new OpNode '*', $1, $3
+    o "Expression / Expression",                -> new OpNode '/', $1, $3
+    o "Expression % Expression",                -> new OpNode '%', $1, $3
+
+    o "Expression + Expression",                -> new OpNode '+', $1, $3
+    o "Expression - Expression",                -> new OpNode '-', $1, $3
+
+    o "Expression << Expression",               -> new OpNode '<<', $1, $3
+    o "Expression >> Expression",               -> new OpNode '>>', $1, $3
+    o "Expression >>> Expression",              -> new OpNode '>>>', $1, $3
+    o "Expression & Expression",                -> new OpNode '&', $1, $3
+    o "Expression | Expression",                -> new OpNode '|', $1, $3
+    o "Expression ^ Expression",                -> new OpNode '^', $1, $3
+
+    o "Expression <= Expression",               -> new OpNode '<=', $1, $3
+    o "Expression < Expression",                -> new OpNode '<', $1, $3
+    o "Expression > Expression",                -> new OpNode '>', $1, $3
+    o "Expression >= Expression",               -> new OpNode '>=', $1, $3
+
+    o "Expression == Expression",               -> new OpNode '==', $1, $3
+    o "Expression != Expression",               -> new OpNode '!=', $1, $3
+    o "Expression IS Expression",               -> new OpNode 'is', $1, $3
+    o "Expression ISNT Expression",             -> new OpNode 'isnt', $1, $3
+
+    o "Expression && Expression",               -> new OpNode '&&', $1, $3
+    o "Expression || Expression",               -> new OpNode '||', $1, $3
+    o "Expression AND Expression",              -> new OpNode 'and', $1, $3
+    o "Expression OR Expression",               -> new OpNode 'or', $1, $3
+    o "Expression ? Expression",                -> new OpNode '?', $1, $3
+
+    o "Expression -= Expression",               -> new OpNode '-=', $1, $3
+    o "Expression += Expression",               -> new OpNode '+=', $1, $3
+    o "Expression /= Expression",               -> new OpNode '/=', $1, $3
+    o "Expression *= Expression",               -> new OpNode '*=', $1, $3
+    o "Expression %= Expression",               -> new OpNode '%=', $1, $3
+    o "Expression ||= Expression",              -> new OpNode '||=', $1, $3
+    o "Expression &&= Expression",              -> new OpNode '&&=', $1, $3
+    o "Expression ?= Expression",               -> new OpNode '?=', $1, $3
+
+    o "Expression INSTANCEOF Expression",       -> new OpNode 'instanceof', $1, $3
+    o "Expression IN Expression",               -> new OpNode 'in', $1, $3
+  ]
+
+}
#

Precedence

#

Operators at the top of this list have higher precedence than the ones lower +down. Following these rules is what makes 2 + 3 * 4 parse as:

+ +
2 + (3 * 4)
+
+ +

And not:

+ +
(2 + 3) * 4
+
operators: [
   ["left",      '?']
   ["nonassoc",  'UMINUS', 'UPLUS', 'NOT', '!', '!!', '~', '++', '--']
   ["left",      '*', '/', '%']
@@ -23,282 +359,23 @@
   ["left",      'EXTENDS']
   ["right",     'ASSIGN', 'RETURN']
   ["right",     '->', '=>', 'UNLESS', 'IF', 'ELSE', 'WHILE']
-]
#

Grammar ==============================================================

grammar: {
#

All parsing will end in this rule, being the trunk of the AST.

  Root: [
-    o "",                                  -> new Expressions()
-    o "TERMINATOR",                        -> new Expressions()
-    o "Expressions",                       -> $1
-    o "Block TERMINATOR",                  -> $1
-  ]
#

Any list of expressions or method body, seperated by line breaks or semis.

  Expressions: [
-    o "Expression",                        -> Expressions.wrap([$1])
-    o "Expressions TERMINATOR Expression", -> $1.push($3)
-    o "Expressions TERMINATOR",            -> $1
-  ]
#

All types of expressions in our language. The basic unit of CoffeeScript -is the expression.

  Expression: [
-    o "Value"
-    o "Call"
-    o "Code"
-    o "Operation"
-    o "Assign"
-    o "If"
-    o "Try"
-    o "Throw"
-    o "Return"
-    o "While"
-    o "For"
-    o "Switch"
-    o "Extends"
-    o "Class"
-    o "Splat"
-    o "Existence"
-    o "Comment"
-  ]
#

A block of expressions. Note that the Rewriter will convert some postfix -forms into blocks for us, by altering the token stream.

  Block: [
-    o "INDENT Expressions OUTDENT",             -> $2
-    o "INDENT OUTDENT",                         -> new Expressions()
-  ]
-
-  Identifier: [
-    o "IDENTIFIER",                             -> new LiteralNode(yytext)
-  ]
-
-  AlphaNumeric: [
-    o "NUMBER",                                 -> new LiteralNode(yytext)
-    o "STRING",                                 -> new LiteralNode(yytext)
-  ]
#

All hard-coded values. These can be printed straight to JavaScript.

  Literal: [
-    o "AlphaNumeric",                           -> $1
-    o "JS",                                     -> new LiteralNode(yytext)
-    o "REGEX",                                  -> new LiteralNode(yytext)
-    o "BREAK",                                  -> new LiteralNode(yytext)
-    o "CONTINUE",                               -> new LiteralNode(yytext)
-    o "TRUE",                                   -> new LiteralNode(true)
-    o "FALSE",                                  -> new LiteralNode(false)
-    o "YES",                                    -> new LiteralNode(true)
-    o "NO",                                     -> new LiteralNode(false)
-    o "ON",                                     -> new LiteralNode(true)
-    o "OFF",                                    -> new LiteralNode(false)
-  ]
#

Assignment to a variable (or index).

  Assign: [
-    o "Value ASSIGN Expression",                -> new AssignNode($1, $3)
-  ]
#

Assignment within an object literal (can be quoted).

  AssignObj: [
-    o "Identifier ASSIGN Expression",           -> new AssignNode(new ValueNode($1), $3, 'object')
-    o "AlphaNumeric ASSIGN Expression",         -> new AssignNode(new ValueNode($1), $3, 'object')
-    o "Comment"
-  ]
#

A return statement.

  Return: [
-    o "RETURN Expression",                      -> new ReturnNode($2)
-    o "RETURN",                                 -> new ReturnNode(new ValueNode(new LiteralNode('null')))
-  ]
#

A comment.

  Comment: [
-    o "COMMENT",                                -> new CommentNode(yytext)
-  ]
#

Arithmetic and logical operators -For Ruby's Operator precedence, see: [ -https://www.cs.auckland.ac.nz/references/ruby/ProgrammingRuby/language.html

  Operation: [
-    o "! Expression",                           -> new OpNode('!', $2)
-    o "!! Expression",                          -> new OpNode('!!', $2)
-    o("- Expression",                           (-> new OpNode('-', $2)), {prec: 'UMINUS'})
-    o("+ Expression",                           (-> new OpNode('+', $2)), {prec: 'UPLUS'})
-    o "NOT Expression",                         -> new OpNode('not', $2)
-    o "~ Expression",                           -> new OpNode('~', $2)
-    o "-- Expression",                          -> new OpNode('--', $2)
-    o "++ Expression",                          -> new OpNode('++', $2)
-    o "DELETE Expression",                      -> new OpNode('delete', $2)
-    o "TYPEOF Expression",                      -> new OpNode('typeof', $2)
-    o "Expression --",                          -> new OpNode('--', $1, null, true)
-    o "Expression ++",                          -> new OpNode('++', $1, null, true)
-
-    o "Expression * Expression",                -> new OpNode('*', $1, $3)
-    o "Expression / Expression",                -> new OpNode('/', $1, $3)
-    o "Expression % Expression",                -> new OpNode('%', $1, $3)
-
-    o "Expression + Expression",                -> new OpNode('+', $1, $3)
-    o "Expression - Expression",                -> new OpNode('-', $1, $3)
-
-    o "Expression << Expression",               -> new OpNode('<<', $1, $3)
-    o "Expression >> Expression",               -> new OpNode('>>', $1, $3)
-    o "Expression >>> Expression",              -> new OpNode('>>>', $1, $3)
-    o "Expression & Expression",                -> new OpNode('&', $1, $3)
-    o "Expression | Expression",                -> new OpNode('|', $1, $3)
-    o "Expression ^ Expression",                -> new OpNode('^', $1, $3)
-
-    o "Expression <= Expression",               -> new OpNode('<=', $1, $3)
-    o "Expression < Expression",                -> new OpNode('<', $1, $3)
-    o "Expression > Expression",                -> new OpNode('>', $1, $3)
-    o "Expression >= Expression",               -> new OpNode('>=', $1, $3)
-
-    o "Expression == Expression",               -> new OpNode('==', $1, $3)
-    o "Expression != Expression",               -> new OpNode('!=', $1, $3)
-    o "Expression IS Expression",               -> new OpNode('is', $1, $3)
-    o "Expression ISNT Expression",             -> new OpNode('isnt', $1, $3)
-
-    o "Expression && Expression",               -> new OpNode('&&', $1, $3)
-    o "Expression || Expression",               -> new OpNode('||', $1, $3)
-    o "Expression AND Expression",              -> new OpNode('and', $1, $3)
-    o "Expression OR Expression",               -> new OpNode('or', $1, $3)
-    o "Expression ? Expression",                -> new OpNode('?', $1, $3)
-
-    o "Expression -= Expression",               -> new OpNode('-=', $1, $3)
-    o "Expression += Expression",               -> new OpNode('+=', $1, $3)
-    o "Expression /= Expression",               -> new OpNode('/=', $1, $3)
-    o "Expression *= Expression",               -> new OpNode('*=', $1, $3)
-    o "Expression %= Expression",               -> new OpNode('%=', $1, $3)
-    o "Expression ||= Expression",              -> new OpNode('||=', $1, $3)
-    o "Expression &&= Expression",              -> new OpNode('&&=', $1, $3)
-    o "Expression ?= Expression",               -> new OpNode('?=', $1, $3)
-
-    o "Expression INSTANCEOF Expression",       -> new OpNode('instanceof', $1, $3)
-    o "Expression IN Expression",               -> new OpNode('in', $1, $3)
-  ]
#

The existence operator.

  Existence: [
-    o "Expression ?",                           -> new ExistenceNode($1)
-  ]
#

Function definition.

  Code: [
-    o "PARAM_START ParamList PARAM_END FuncGlyph Block", -> new CodeNode($2, $5, $4)
-    o "FuncGlyph Block",                        -> new CodeNode([], $2, $1)
-  ]
#

The symbols to signify functions, and bound functions.

  FuncGlyph: [
-    o "->",                                     -> 'func'
-    o "=>",                                     -> 'boundfunc'
-  ]
#

The parameters to a function definition.

  ParamList: [
-    o "",                                       -> []
-    o "Param",                                  -> [$1]
-    o "ParamList , Param",                      -> $1.concat [$3]
-  ]
#

A Parameter (or ParamSplat) in a function definition.

  Param: [
-    o "PARAM",                                  -> new LiteralNode(yytext)
-    o "Param . . .",                            -> new SplatNode($1)
-  ]
#

A regular splat.

  Splat: [
-    o "Expression . . .",                       -> new SplatNode($1)
-  ]
#

Expressions that can be treated as values.

  Value: [
-    o "Identifier",                             -> new ValueNode($1)
-    o "Literal",                                -> new ValueNode($1)
-    o "Array",                                  -> new ValueNode($1)
-    o "Object",                                 -> new ValueNode($1)
-    o "Parenthetical",                          -> new ValueNode($1)
-    o "Range",                                  -> new ValueNode($1)
-    o "This",                                   -> $1
-    o "Value Accessor",                         -> $1.push($2)
-    o "Invocation Accessor",                    -> new ValueNode($1, [$2])
-  ]
#

Accessing into an object or array, through dot or index notation.

  Accessor: [
-    o "PROPERTY_ACCESS Identifier",             -> new AccessorNode($2)
-    o "PROTOTYPE_ACCESS Identifier",            -> new AccessorNode($2, 'prototype')
-    o "SOAK_ACCESS Identifier",                 -> new AccessorNode($2, 'soak')
-    o "Index"
-    o "Slice",                                  -> new SliceNode($1)
-  ]
#

Indexing into an object or array.

  Index: [
-    o "INDEX_START Expression INDEX_END",       -> new IndexNode($2)
-    o "SOAKED_INDEX_START Expression SOAKED_INDEX_END", -> new IndexNode($2, 'soak')
-  ]
#

An object literal.

  Object: [
-    o "{ AssignList }",                         -> new ObjectNode($2)
-    o "{ IndentedAssignList }",                 -> new ObjectNode($2)
-  ]
#

A class literal.

  Class: [
-    o "CLASS Value",                            -> new ClassNode($2)
-    o "CLASS Value EXTENDS Value",              -> new ClassNode($2, $4)
-    o "CLASS Value IndentedAssignList",         -> new ClassNode($2, null, $3)
-    o "CLASS Value EXTENDS Value IndentedAssignList", -> new ClassNode($2, $4, $5)
-  ]
#

Assignment within an object literal (comma or newline separated).

  AssignList: [
-    o "",                                       -> []
-    o "AssignObj",                              -> [$1]
-    o "AssignList , AssignObj",                 -> $1.concat [$3]
-    o "AssignList TERMINATOR AssignObj",        -> $1.concat [$3]
-    o "AssignList , TERMINATOR AssignObj",      -> $1.concat [$4]
-  ]
#

A list of assignments in a block indentation.

  IndentedAssignList: [
-    o "INDENT AssignList OUTDENT",              -> $2
-  ]
#

All flavors of function call (instantiation, super, and regular).

  Call: [
-    o "Invocation",                             -> $1
-    o "NEW Invocation",                         -> $2.new_instance()
-    o "Super",                                  -> $1
-  ]
#

Extending an object's prototype.

  Extends: [
-    o "Value EXTENDS Value",                    -> new ExtendsNode($1, $3)
-  ]
#

A generic function invocation.

  Invocation: [
-    o "Value Arguments",                        -> new CallNode($1, $2)
-    o "Invocation Arguments",                   -> new CallNode($1, $2)
-  ]
#

The list of arguments to a function invocation.

  Arguments: [
-    o "CALL_START ArgList CALL_END",            -> $2
-  ]
#

Calling super.

  Super: [
-    o "SUPER CALL_START ArgList CALL_END",      -> new CallNode('super', $3)
-  ]
#

This references, either naked or to a property.

  This: [
-    o "@",                                      -> new ValueNode(new LiteralNode('this'))
-    o "@ Identifier",                           -> new ValueNode(new LiteralNode('this'), [new AccessorNode($2)])
-  ]
#

The range literal.

  Range: [
-    o "[ Expression . . Expression ]",          -> new RangeNode($2, $5)
-    o "[ Expression . . . Expression ]",        -> new RangeNode($2, $6, true)
-  ]
#

The slice literal.

  Slice: [
-    o "INDEX_START Expression . . Expression INDEX_END", -> new RangeNode($2, $5)
-    o "INDEX_START Expression . . . Expression INDEX_END", -> new RangeNode($2, $6, true)
-  ]
#

The array literal.

  Array: [
-    o "[ ArgList ]",                            -> new ArrayNode($2)
-  ]
#

A list of arguments to a method call, or as the contents of an array.

  ArgList: [
-    o "",                                       -> []
-    o "Expression",                             -> [$1]
-    o "INDENT Expression",                      -> [$2]
-    o "ArgList , Expression",                   -> $1.concat [$3]
-    o "ArgList TERMINATOR Expression",          -> $1.concat [$3]
-    o "ArgList , TERMINATOR Expression",        -> $1.concat [$4]
-    o "ArgList , INDENT Expression",            -> $1.concat [$4]
-    o "ArgList OUTDENT",                        -> $1
-  ]
#

Just simple, comma-separated, required arguments (no fancy syntax).

  SimpleArgs: [
-    o "Expression",                             -> $1
-    o "SimpleArgs , Expression",                ->
-      if $1 instanceof Array then $1.concat([$3]) else [$1].concat([$3])
-  ]
#

Try/catch/finally exception handling blocks.

  Try: [
-    o "TRY Block Catch",                        -> new TryNode($2, $3[0], $3[1])
-    o "TRY Block FINALLY Block",                -> new TryNode($2, null, null, $4)
-    o "TRY Block Catch FINALLY Block",          -> new TryNode($2, $3[0], $3[1], $5)
-  ]
#

A catch clause.

  Catch: [
-    o "CATCH Identifier Block",                 -> [$2, $3]
-  ]
#

Throw an exception.

  Throw: [
-    o "THROW Expression",                       -> new ThrowNode($2)
-  ]
#

Parenthetical expressions.

  Parenthetical: [
-    o "( Expression )",                         -> new ParentheticalNode($2)
-  ]
#

The condition for a while loop.

  WhileSource: [
-    o "WHILE Expression",                       -> new WhileNode($2)
-    o "WHILE Expression WHEN Expression",       -> new WhileNode($2, {filter : $4})
-  ]
#

The while loop. (there is no do..while).

  While: [
-    o "WhileSource Block",                      -> $1.add_body $2
-    o "Expression WhileSource",                 -> $2.add_body $1
-  ]
#

Array comprehensions, including guard and current index. -Looks a little confusing, check nodes.rb for the arguments to ForNode.

  For: [
-    o "Expression FOR ForVariables ForSource",  -> new ForNode($1, $4, $3[0], $3[1])
-    o "FOR ForVariables ForSource Block",       -> new ForNode($4, $3, $2[0], $2[1])
-  ]
#

An array comprehension has variables for the current element and index.

  ForVariables: [
-    o "Identifier",                             -> [$1]
-    o "Identifier , Identifier",                -> [$1, $3]
-  ]
#

The source of the array comprehension can optionally be filtered.

  ForSource: [
-    o "IN Expression",                          -> {source:   $2}
-    o "OF Expression",                          -> {source:   $2, object: true}
-    o "ForSource WHEN Expression",              -> $1.filter: $3; $1
-    o "ForSource BY Expression",                -> $1.step:   $3; $1
-  ]
#

Switch/When blocks.

  Switch: [
-    o "SWITCH Expression INDENT Whens OUTDENT", -> $4.rewrite_condition($2)
-    o "SWITCH Expression INDENT Whens ELSE Block OUTDENT", -> $4.rewrite_condition($2).add_else($6, true)
-  ]
#

The inner list of whens.

  Whens: [
-    o "When",                                   -> $1
-    o "Whens When",                             -> $1.push $2
-  ]
#

An individual when.

  When: [
-    o "LEADING_WHEN SimpleArgs Block",          -> new IfNode($2, $3, null, {statement: true})
-    o "LEADING_WHEN SimpleArgs Block TERMINATOR", -> new IfNode($2, $3, null, {statement: true})
-    o "Comment TERMINATOR When",                -> $3.comment: $1; $3
-  ]
#

The most basic form of "if".

  IfStart: [
-    o "IF Expression Block",                    -> new IfNode($2, $3)
-    o "IfStart ElsIfs",                         -> $1.add_else($2)
-  ]
-
-  IfBlock: [
-    o "IfStart",                                -> $1
-    o "IfStart ELSE Block",                     -> $1.add_else($3)
-  ]
#

Multiple elsifs can be chained together.

  ElsIfs: [
-    o "ELSE IF Expression Block",               -> (new IfNode($3, $4)).force_statement()
-    o "ElsIfs ElsIf",                           -> $1.add_else($2)
-  ]
#

The full complement of if blocks, including postfix one-liner ifs and unlesses.

  If: [
-    o "IfBlock",                                -> $1
-    o "Expression IF Expression",               -> new IfNode($3, Expressions.wrap([$1]), null, {statement: true})
-    o "Expression UNLESS Expression",           -> new IfNode($3, Expressions.wrap([$1]), null, {statement: true, invert: true})
-  ]
-
-}
#

Helpers ==============================================================

#

Make the Jison parser.

bnf: {}
-tokens: []
-for name, non_terminal of grammar
-  bnf[name]: for option in non_terminal
-    for part in option[0].split(" ")
-      if !grammar[part]
-        tokens.push(part)
-    if name == "Root"
-      option[1] = "return ${option[1]}"
-    option
-tokens: tokens.join(" ")
-exports.parser: new Parser({tokens: tokens, bnf: bnf, operators: operators.reverse(), startSymbol: 'Root'}, {debug: false})
+]
#

Wrapping Up

#

Finally, now what we have our grammar and our operators, we can create +our Jison.Parser. We do this by processing all of our rules, recording all +terminals (every symbol which does not appear as the name of a rule above) +as "tokens".

tokens: []
+for name, alternatives of grammar
+  grammar[name]: for alt in alternatives
+    for token in alt[0].split ' '
+      tokens.push token unless grammar[token]
+    alt[1] = "return ${alt[1]}" if name is 'Root'
+    alt
#

Initialize the Parser with our list of terminal tokens, our grammar +rules, and the name of the root. Reverse the operators because Jison orders +precedence from low to high, and we have it high to low +(as in Yacc).

exports.parser: new Parser {
+  tokens:       tokens.join ' '
+  bnf:          grammar
+  operators:    operators.reverse()
+  startSymbol:  'Root'
+}
 
 
\ No newline at end of file diff --git a/lib/command.js b/lib/command.js index 88b460d3..d23568d9 100644 --- a/lib/command.js +++ b/lib/command.js @@ -214,7 +214,7 @@ puts(option_parser.help()); return process.exit(0); }; - // Print the "--version" message and exit. + // Print the `--version` message and exit. version = function version() { puts("CoffeeScript version " + (CoffeeScript.VERSION)); return process.exit(0); diff --git a/lib/grammar.js b/lib/grammar.js index e13ba3bb..0cad597d 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -1,69 +1,100 @@ (function(){ - var Parser, _a, _b, _c, _d, _e, _f, _g, _h, bnf, grammar, name, non_terminal, o, operators, option, part, tokens, unwrap; + var Parser, _a, _b, _c, _d, _e, _f, _g, _h, alt, alternatives, grammar, name, o, operators, token, tokens, unwrap; var __hasProp = Object.prototype.hasOwnProperty; + // The CoffeeScript parser is generated by [Jison](http://github.com/zaach/jison) + // from this grammar file. Jison is a bottom-up parser generator, similar in + // style to [Bison](http://www.gnu.org/software/bison), implemented in JavaScript. + // It can recognize + // [LALR(1), LR(0), SLR(1), and LR(1)](http://en.wikipedia.org/wiki/LR_grammar) + // type grammars. To create the Jison parser, we list the pattern to match + // on the left-hand side, and the action to take (usually the creation of syntax + // tree nodes) on the right. As the parser runs, it + // shifts tokens from our token stream, from left to right, and + // [attempts to match](http://en.wikipedia.org/wiki/Bottom-up_parsing) + // the token sequence against the rules below. When a match can be made, it + // reduces into the + // [nonterminal](http://en.wikipedia.org/wiki/Terminal_and_nonterminal_symbols) + // (the enclosing name at the top), and we proceed from there. + // If you run the `cake build:parser` command, Jison constructs a parse table + // from our rules and saves it into `lib/parser.js`. + // The only dependency is on the **Jison.Parser**. Parser = require('jison').Parser; - // DSL =================================================================== - // Detect functions: [ + // Jison DSL + // --------- + // Since we're going to be wrapped in a function by Jison in any case, if our + // action immediately returns a value, we can optimize by removing the function + // wrapper and just returning the value directly. unwrap = /function\s*\(\)\s*\{\s*return\s*([\s\S]*);\s*\}/; - // Quickie DSL for Jison access. - o = function o(pattern_string, func, options) { + // Our handy DSL for Jison grammar generation, thanks to + // [Tim Caswell](http://github.com/creationix). For every rule in the grammar, + // we pass the pattern-defining string, the action to run, and extra options, + // optionally. If no action is specified, we simply pass the value of the + // previous nonterminal. + o = function o(pattern_string, action, options) { var match; - if (func) { - func = (match = (func + '').match(unwrap)) ? match[1] : "(" + func + "())"; - return [pattern_string, "$$ = " + func + ";", options]; - } else { + if (!(action)) { return [pattern_string, '$$ = $1;', options]; } + action = (match = (action + '').match(unwrap)) ? match[1] : "(" + action + "())"; + return [pattern_string, "$$ = " + action + ";", options]; }; - // Precedence =========================================================== - operators = [["left", '?'], ["nonassoc", 'UMINUS', 'UPLUS', 'NOT', '!', '!!', '~', '++', '--'], ["left", '*', '/', '%'], ["left", '+', '-'], ["left", '<<', '>>', '>>>'], ["left", '&', '|', '^'], ["left", '<=', '<', '>', '>='], ["right", 'DELETE', 'INSTANCEOF', 'TYPEOF'], ["left", '==', '!=', 'IS', 'ISNT'], ["left", '&&', '||', 'AND', 'OR'], ["right", '-=', '+=', '/=', '*=', '%=', '||=', '&&=', '?='], ["left", '.'], ["right", 'INDENT'], ["left", 'OUTDENT'], ["right", 'WHEN', 'LEADING_WHEN', 'IN', 'OF', 'BY', 'THROW'], ["right", 'FOR', 'NEW', 'SUPER', 'CLASS'], ["left", 'EXTENDS'], ["right", 'ASSIGN', 'RETURN'], ["right", '->', '=>', 'UNLESS', 'IF', 'ELSE', 'WHILE']]; - // Grammar ============================================================== + // Grammatical Rules + // ----------------- + // In all of the rules that follow, you'll see the name of the nonterminal as + // the key to a list of alternative matches. With each match's action, the + // dollar-sign variables are provided by Jison as references to the value of + // their numeric position, so in this rule: + // "Expression UNLESS Expression" + // `$1` would be the value of the first `Expression`, `$2` would be the token + // for the `UNLESS` terminal, and `$3` would be the value of the second + // `Expression`. grammar = { - // All parsing will end in this rule, being the trunk of the AST. + // The **Root** is the top-level node in the syntax tree. Since we parse bottom-up, + // all parsing must end here. Root: [o("", function() { return new Expressions(); }), o("TERMINATOR", function() { return new Expressions(); - }), o("Expressions", function() { - return $1; - }), o("Block TERMINATOR", function() { - return $1; - }) + }), o("Expressions"), o("Block TERMINATOR") ], - // Any list of expressions or method body, seperated by line breaks or semis. + // Any list of expressions or method body, seperated by line breaks or + // semicolons. Expressions: [o("Expression", function() { return Expressions.wrap([$1]); }), o("Expressions TERMINATOR Expression", function() { return $1.push($3); - }), o("Expressions TERMINATOR", function() { - return $1; - }) + }), o("Expressions TERMINATOR") ], - // All types of expressions in our language. The basic unit of CoffeeScript - // is the expression. + // All the different types of expressions in our language. The basic unit of + // CoffeeScript is the **Expression** -- you'll notice that there is no + // "statement" nonterminal. Expressions serve as the building blocks + // of many other rules, making them somewhat circular. Expression: [o("Value"), o("Call"), o("Code"), o("Operation"), o("Assign"), o("If"), o("Try"), o("Throw"), o("Return"), o("While"), o("For"), o("Switch"), o("Extends"), o("Class"), o("Splat"), o("Existence"), o("Comment")], - // A block of expressions. Note that the Rewriter will convert some postfix - // forms into blocks for us, by altering the token stream. + // A an indented block of expressions. Note that the [Rewriter](rewriter.html) + // will convert some postfix forms into blocks for us, by adjusting the + // token stream. Block: [o("INDENT Expressions OUTDENT", function() { return $2; }), o("INDENT OUTDENT", function() { return new Expressions(); }) ], + // A literal identifier, a variable name or property. Identifier: [o("IDENTIFIER", function() { return new LiteralNode(yytext); }) ], + // Alphanumerics are separated from the other **Literal** matchers because + // they can also serve as keys in object literals. AlphaNumeric: [o("NUMBER", function() { return new LiteralNode(yytext); }), o("STRING", function() { return new LiteralNode(yytext); }) ], - // All hard-coded values. These can be printed straight to JavaScript. - Literal: [o("AlphaNumeric", function() { - return $1; - }), o("JS", function() { + // All of our immediate values. These can (in general), be passed straight + // through and printed to JavaScript. + Literal: [o("AlphaNumeric"), o("JS", function() { return new LiteralNode(yytext); }), o("REGEX", function() { return new LiteralNode(yytext); @@ -85,33 +116,383 @@ return new LiteralNode(false); }) ], - // Assignment to a variable (or index). + // Assignment of a variable, property, or index to a value. Assign: [o("Value ASSIGN Expression", function() { return new AssignNode($1, $3); }) ], - // Assignment within an object literal (can be quoted). + // Assignment when it happens within an object literal. The difference from + // the ordinary **Assign** is that these allow numbers and strings as keys. AssignObj: [o("Identifier ASSIGN Expression", function() { return new AssignNode(new ValueNode($1), $3, 'object'); }), o("AlphaNumeric ASSIGN Expression", function() { return new AssignNode(new ValueNode($1), $3, 'object'); }), o("Comment") ], - // A return statement. + // A return statement from a function body. Return: [o("RETURN Expression", function() { return new ReturnNode($2); }), o("RETURN", function() { return new ReturnNode(new ValueNode(new LiteralNode('null'))); }) ], - // A comment. + // A comment. Because CoffeeScript passes comments through to JavaScript, we + // have to parse comments like any other construct, and identify all of the + // positions in which they can occur in the grammar. Comment: [o("COMMENT", function() { return new CommentNode(yytext); }) ], - // Arithmetic and logical operators - // For Ruby's Operator precedence, see: [ - // https://www.cs.auckland.ac.nz/references/ruby/ProgrammingRuby/language.html + // [The existential operator](http://jashkenas.github.com/coffee-script/#existence). + Existence: [o("Expression ?", function() { + return new ExistenceNode($1); + }) + ], + // The **Code** node is the function literal. It's defined by an indented block + // of **Expressions** preceded by a function arrow, with an optional parameter + // list. + Code: [o("PARAM_START ParamList PARAM_END FuncGlyph Block", function() { + return new CodeNode($2, $5, $4); + }), o("FuncGlyph Block", function() { + return new CodeNode([], $2, $1); + }) + ], + // CoffeeScript has two different symbols for functions. `->` is for ordinary + // functions, and `=>` is for functions bound to the current value of *this*. + FuncGlyph: [o("->", function() { + return 'func'; + }), o("=>", function() { + return 'boundfunc'; + }) + ], + // The list of parameters that a function accepts can be of any length. + ParamList: [o("", function() { + return []; + }), o("Param", function() { + return [$1]; + }), o("ParamList , Param", function() { + return $1.concat([$3]); + }) + ], + // A single parameter in a function definition can be ordinary, or a splat + // that hoovers up the remaining arguments. + Param: [o("PARAM", function() { + return new LiteralNode(yytext); + }), o("Param . . .", function() { + return new SplatNode($1); + }) + ], + // A splat that occurs outside of a parameter list. + Splat: [o("Expression . . .", function() { + return new SplatNode($1); + }) + ], + // The types of things that can be treated as values -- assigned to, invoked + // as functions, indexed into, named as a class, etc. + Value: [o("Identifier", function() { + return new ValueNode($1); + }), o("Literal", function() { + return new ValueNode($1); + }), o("Array", function() { + return new ValueNode($1); + }), o("Object", function() { + return new ValueNode($1); + }), o("Parenthetical", function() { + return new ValueNode($1); + }), o("Range", function() { + return new ValueNode($1); + }), o("This"), o("Value Accessor", function() { + return $1.push($2); + }), o("Invocation Accessor", function() { + return new ValueNode($1, [$2]); + }) + ], + // The general group of accessors into an object, by property, by prototype + // or by array index or slice. + Accessor: [o("PROPERTY_ACCESS Identifier", function() { + return new AccessorNode($2); + }), o("PROTOTYPE_ACCESS Identifier", function() { + return new AccessorNode($2, 'prototype'); + }), o("SOAK_ACCESS Identifier", function() { + return new AccessorNode($2, 'soak'); + }), o("Index"), o("Slice", function() { + return new SliceNode($1); + }) + ], + // Indexing into an object or array using bracket notation. + Index: [o("INDEX_START Expression INDEX_END", function() { + return new IndexNode($2); + }), o("SOAKED_INDEX_START Expression SOAKED_INDEX_END", function() { + return new IndexNode($2, 'soak'); + }) + ], + // In CoffeeScript, an object literal is simply a list of assignments. + Object: [o("{ AssignList }", function() { + return new ObjectNode($2); + }), o("{ IndentedAssignList }", function() { + return new ObjectNode($2); + }) + ], + // Class definitions have optional bodies of prototype property assignments, + // and optional references to the superclass. + Class: [o("CLASS Value", function() { + return new ClassNode($2); + }), o("CLASS Value EXTENDS Value", function() { + return new ClassNode($2, $4); + }), o("CLASS Value IndentedAssignList", function() { + return new ClassNode($2, null, $3); + }), o("CLASS Value EXTENDS Value IndentedAssignList", function() { + return new ClassNode($2, $4, $5); + }) + ], + // Assignment of properties within an object literal can be separated by + // comma, as in JavaScript, or simply by newline. + AssignList: [o("", function() { + return []; + }), o("AssignObj", function() { + return [$1]; + }), o("AssignList , AssignObj", function() { + return $1.concat([$3]); + }), o("AssignList TERMINATOR AssignObj", function() { + return $1.concat([$3]); + }), o("AssignList , TERMINATOR AssignObj", function() { + return $1.concat([$4]); + }) + ], + // An **AssignList** within a block indentation. + IndentedAssignList: [o("INDENT AssignList OUTDENT", function() { + return $2; + }) + ], + // The three flavors of function call: normal, object instantiation with `new`, + // and calling `super()` + Call: [o("Invocation"), o("NEW Invocation", function() { + return $2.new_instance(); + }), o("Super") + ], + // Extending an object by setting its prototype chain to reference a parent + // object. + Extends: [o("Value EXTENDS Value", function() { + return new ExtendsNode($1, $3); + }) + ], + // Ordinary function invocation, or a chained series of calls. + Invocation: [o("Value Arguments", function() { + return new CallNode($1, $2); + }), o("Invocation Arguments", function() { + return new CallNode($1, $2); + }) + ], + // The list of arguments to a function call. + Arguments: [o("CALL_START ArgList CALL_END", function() { + return $2; + }) + ], + // Calling super. + Super: [o("SUPER CALL_START ArgList CALL_END", function() { + return new CallNode('super', $3); + }) + ], + // A reference to the *this* current object, either naked or to a property. + This: [o("@", function() { + return new ValueNode(new LiteralNode('this')); + }), o("@ Identifier", function() { + return new ValueNode(new LiteralNode('this'), [new AccessorNode($2)]); + }) + ], + // The CoffeeScript range literal. + Range: [o("[ Expression . . Expression ]", function() { + return new RangeNode($2, $5); + }), o("[ Expression . . . Expression ]", function() { + return new RangeNode($2, $6, true); + }) + ], + // The slice literal. + Slice: [o("INDEX_START Expression . . Expression INDEX_END", function() { + return new RangeNode($2, $5); + }), o("INDEX_START Expression . . . Expression INDEX_END", function() { + return new RangeNode($2, $6, true); + }) + ], + // The array literal. + Array: [o("[ ArgList ]", function() { + return new ArrayNode($2); + }) + ], + // The **ArgList** is both the list of objects passed into a function call, + // as well as the contents of an array literal + // (i.e. comma-separated expressions). Newlines work as well. + ArgList: [o("", function() { + return []; + }), o("Expression", function() { + return [$1]; + }), o("INDENT Expression", function() { + return [$2]; + }), o("ArgList , Expression", function() { + return $1.concat([$3]); + }), o("ArgList TERMINATOR Expression", function() { + return $1.concat([$3]); + }), o("ArgList , TERMINATOR Expression", function() { + return $1.concat([$4]); + }), o("ArgList , INDENT Expression", function() { + return $1.concat([$4]); + }), o("ArgList OUTDENT") + ], + // Just simple, comma-separated, required arguments (no fancy syntax). We need + // this to be separate from the **ArgList** for use in **Switch** blocks, where + // having the newlines wouldn't make sense. + SimpleArgs: [o("Expression"), o("SimpleArgs , Expression", function() { + return $1 instanceof Array ? $1.concat([$3]) : [$1].concat([$3]); + }) + ], + // The variants of *try/catch/finally* exception handling blocks. + Try: [o("TRY Block Catch", function() { + return new TryNode($2, $3[0], $3[1]); + }), o("TRY Block FINALLY Block", function() { + return new TryNode($2, null, null, $4); + }), o("TRY Block Catch FINALLY Block", function() { + return new TryNode($2, $3[0], $3[1], $5); + }) + ], + // A catch clause names its error and runs a block of code. + Catch: [o("CATCH Identifier Block", function() { + return [$2, $3]; + }) + ], + // Throw an exception object. + Throw: [o("THROW Expression", function() { + return new ThrowNode($2); + }) + ], + // Parenthetical expressions. Note that the **Parenthetical** is a **Value**, + // not an **Expression**, so if you need to use an expression in a place + // where only values are accepted, wrapping it in parentheses will always do + // the trick. + Parenthetical: [o("( Expression )", function() { + return new ParentheticalNode($2); + }) + ], + // The condition portion of a while loop. + WhileSource: [o("WHILE Expression", function() { + return new WhileNode($2); + }), o("WHILE Expression WHEN Expression", function() { + return new WhileNode($2, { + filter: $4 + }); + }) + ], + // The while loop can either be normal, with a block of expressions to execute, + // or postfix, with a single expression. There is no do..while. + While: [o("WhileSource Block", function() { + return $1.add_body($2); + }), o("Expression WhileSource", function() { + return $2.add_body($1); + }) + ], + // Array, object, and range comprehensions, at the most generic level. + // Comprehensions can either be normal, with a block of expressions to execute, + // or postfix, with a single expression. + For: [o("Expression FOR ForVariables ForSource", function() { + return new ForNode($1, $4, $3[0], $3[1]); + }), o("FOR ForVariables ForSource Block", function() { + return new ForNode($4, $3, $2[0], $2[1]); + }) + ], + // An array or range comprehension has variables for the current element and + // (optional) reference to the current index. Or, *key, value*, in the case + // of object comprehensions. + ForVariables: [o("Identifier", function() { + return [$1]; + }), o("Identifier , Identifier", function() { + return [$1, $3]; + }) + ], + // The source of a comprehension is an array or object with an optional filter + // clause. If it's an array comprehension, you can also choose to step throug + // in fixed-size increments. + ForSource: [o("IN Expression", function() { + return { + source: $2 + }; + }), o("OF Expression", function() { + return { + source: $2, + object: true + }; + }), o("ForSource WHEN Expression", function() { + $1.filter = $3; + return $1; + }), o("ForSource BY Expression", function() { + $1.step = $3; + return $1; + }) + ], + // The CoffeeScript switch/when/else block replaces the JavaScript + // switch/case/default by compiling into an if-else chain. + Switch: [o("SWITCH Expression INDENT Whens OUTDENT", function() { + return $4.rewrite_condition($2); + }), o("SWITCH Expression INDENT Whens ELSE Block OUTDENT", function() { + return $4.rewrite_condition($2).add_else($6, true); + }) + ], + // The inner list of whens is left recursive. At code-generation time, the + // IfNode will rewrite them into a proper chain. + Whens: [o("When"), o("Whens When", function() { + return $1.push($2); + }) + ], + // An individual **When** clause, with action. + When: [o("LEADING_WHEN SimpleArgs Block", function() { + return new IfNode($2, $3, null, { + statement: true + }); + }), o("LEADING_WHEN SimpleArgs Block TERMINATOR", function() { + return new IfNode($2, $3, null, { + statement: true + }); + }), o("Comment TERMINATOR When", function() { + $3.comment = $1; + return $3; + }) + ], + // The most basic form of *if* is a condition and an action. The following + // if-related rules are broken up along these lines in order to avoid + // ambiguity. + IfStart: [o("IF Expression Block", function() { + return new IfNode($2, $3); + }), o("IfStart ElsIf", function() { + return $1.add_else($2); + }) + ], + // An **IfStart** can optionally be followed by an else block. + IfBlock: [o("IfStart"), o("IfStart ELSE Block", function() { + return $1.add_else($3); + }) + ], + // An *else if* continuation of the *if* expression. + ElsIf: [o("ELSE IF Expression Block", function() { + return (new IfNode($3, $4)).force_statement(); + }) + ], + // The full complement of *if* expressions, including postfix one-liner + // *if* and *unless*. + If: [o("IfBlock"), o("Expression IF Expression", function() { + return new IfNode($3, Expressions.wrap([$1]), null, { + statement: true + }); + }), o("Expression UNLESS Expression", function() { + return new IfNode($3, Expressions.wrap([$1]), null, { + statement: true, + invert: true + }); + }) + ], + // Arithmetic and logical operators, working on one or more operands. + // Here they are grouped by order of precedence. The actual precedence rules + // are defined at the bottom of the page. It would be shorter if we could + // combine most of these rules into a single generic *Operand OpSymbol Operand* + // -type rule, but in order to make the precedence binding possible, separate + // rules are necessary. Operation: [o("! Expression", function() { return new OpNode('!', $2); }), o("!! Expression", function() { @@ -209,372 +590,55 @@ }), o("Expression IN Expression", function() { return new OpNode('in', $1, $3); }) - ], - // The existence operator. - Existence: [o("Expression ?", function() { - return new ExistenceNode($1); - }) - ], - // Function definition. - Code: [o("PARAM_START ParamList PARAM_END FuncGlyph Block", function() { - return new CodeNode($2, $5, $4); - }), o("FuncGlyph Block", function() { - return new CodeNode([], $2, $1); - }) - ], - // The symbols to signify functions, and bound functions. - FuncGlyph: [o("->", function() { - return 'func'; - }), o("=>", function() { - return 'boundfunc'; - }) - ], - // The parameters to a function definition. - ParamList: [o("", function() { - return []; - }), o("Param", function() { - return [$1]; - }), o("ParamList , Param", function() { - return $1.concat([$3]); - }) - ], - // A Parameter (or ParamSplat) in a function definition. - Param: [o("PARAM", function() { - return new LiteralNode(yytext); - }), o("Param . . .", function() { - return new SplatNode($1); - }) - ], - // A regular splat. - Splat: [o("Expression . . .", function() { - return new SplatNode($1); - }) - ], - // Expressions that can be treated as values. - Value: [o("Identifier", function() { - return new ValueNode($1); - }), o("Literal", function() { - return new ValueNode($1); - }), o("Array", function() { - return new ValueNode($1); - }), o("Object", function() { - return new ValueNode($1); - }), o("Parenthetical", function() { - return new ValueNode($1); - }), o("Range", function() { - return new ValueNode($1); - }), o("This", function() { - return $1; - }), o("Value Accessor", function() { - return $1.push($2); - }), o("Invocation Accessor", function() { - return new ValueNode($1, [$2]); - }) - ], - // Accessing into an object or array, through dot or index notation. - Accessor: [o("PROPERTY_ACCESS Identifier", function() { - return new AccessorNode($2); - }), o("PROTOTYPE_ACCESS Identifier", function() { - return new AccessorNode($2, 'prototype'); - }), o("SOAK_ACCESS Identifier", function() { - return new AccessorNode($2, 'soak'); - }), o("Index"), o("Slice", function() { - return new SliceNode($1); - }) - ], - // Indexing into an object or array. - Index: [o("INDEX_START Expression INDEX_END", function() { - return new IndexNode($2); - }), o("SOAKED_INDEX_START Expression SOAKED_INDEX_END", function() { - return new IndexNode($2, 'soak'); - }) - ], - // An object literal. - Object: [o("{ AssignList }", function() { - return new ObjectNode($2); - }), o("{ IndentedAssignList }", function() { - return new ObjectNode($2); - }) - ], - // A class literal. - Class: [o("CLASS Value", function() { - return new ClassNode($2); - }), o("CLASS Value EXTENDS Value", function() { - return new ClassNode($2, $4); - }), o("CLASS Value IndentedAssignList", function() { - return new ClassNode($2, null, $3); - }), o("CLASS Value EXTENDS Value IndentedAssignList", function() { - return new ClassNode($2, $4, $5); - }) - ], - // Assignment within an object literal (comma or newline separated). - AssignList: [o("", function() { - return []; - }), o("AssignObj", function() { - return [$1]; - }), o("AssignList , AssignObj", function() { - return $1.concat([$3]); - }), o("AssignList TERMINATOR AssignObj", function() { - return $1.concat([$3]); - }), o("AssignList , TERMINATOR AssignObj", function() { - return $1.concat([$4]); - }) - ], - // A list of assignments in a block indentation. - IndentedAssignList: [o("INDENT AssignList OUTDENT", function() { - return $2; - }) - ], - // All flavors of function call (instantiation, super, and regular). - Call: [o("Invocation", function() { - return $1; - }), o("NEW Invocation", function() { - return $2.new_instance(); - }), o("Super", function() { - return $1; - }) - ], - // Extending an object's prototype. - Extends: [o("Value EXTENDS Value", function() { - return new ExtendsNode($1, $3); - }) - ], - // A generic function invocation. - Invocation: [o("Value Arguments", function() { - return new CallNode($1, $2); - }), o("Invocation Arguments", function() { - return new CallNode($1, $2); - }) - ], - // The list of arguments to a function invocation. - Arguments: [o("CALL_START ArgList CALL_END", function() { - return $2; - }) - ], - // Calling super. - Super: [o("SUPER CALL_START ArgList CALL_END", function() { - return new CallNode('super', $3); - }) - ], - // This references, either naked or to a property. - This: [o("@", function() { - return new ValueNode(new LiteralNode('this')); - }), o("@ Identifier", function() { - return new ValueNode(new LiteralNode('this'), [new AccessorNode($2)]); - }) - ], - // The range literal. - Range: [o("[ Expression . . Expression ]", function() { - return new RangeNode($2, $5); - }), o("[ Expression . . . Expression ]", function() { - return new RangeNode($2, $6, true); - }) - ], - // The slice literal. - Slice: [o("INDEX_START Expression . . Expression INDEX_END", function() { - return new RangeNode($2, $5); - }), o("INDEX_START Expression . . . Expression INDEX_END", function() { - return new RangeNode($2, $6, true); - }) - ], - // The array literal. - Array: [o("[ ArgList ]", function() { - return new ArrayNode($2); - }) - ], - // A list of arguments to a method call, or as the contents of an array. - ArgList: [o("", function() { - return []; - }), o("Expression", function() { - return [$1]; - }), o("INDENT Expression", function() { - return [$2]; - }), o("ArgList , Expression", function() { - return $1.concat([$3]); - }), o("ArgList TERMINATOR Expression", function() { - return $1.concat([$3]); - }), o("ArgList , TERMINATOR Expression", function() { - return $1.concat([$4]); - }), o("ArgList , INDENT Expression", function() { - return $1.concat([$4]); - }), o("ArgList OUTDENT", function() { - return $1; - }) - ], - // Just simple, comma-separated, required arguments (no fancy syntax). - SimpleArgs: [o("Expression", function() { - return $1; - }), o("SimpleArgs , Expression", function() { - return $1 instanceof Array ? $1.concat([$3]) : [$1].concat([$3]); - }) - ], - // Try/catch/finally exception handling blocks. - Try: [o("TRY Block Catch", function() { - return new TryNode($2, $3[0], $3[1]); - }), o("TRY Block FINALLY Block", function() { - return new TryNode($2, null, null, $4); - }), o("TRY Block Catch FINALLY Block", function() { - return new TryNode($2, $3[0], $3[1], $5); - }) - ], - // A catch clause. - Catch: [o("CATCH Identifier Block", function() { - return [$2, $3]; - }) - ], - // Throw an exception. - Throw: [o("THROW Expression", function() { - return new ThrowNode($2); - }) - ], - // Parenthetical expressions. - Parenthetical: [o("( Expression )", function() { - return new ParentheticalNode($2); - }) - ], - // The condition for a while loop. - WhileSource: [o("WHILE Expression", function() { - return new WhileNode($2); - }), o("WHILE Expression WHEN Expression", function() { - return new WhileNode($2, { - filter: $4 - }); - }) - ], - // The while loop. (there is no do..while). - While: [o("WhileSource Block", function() { - return $1.add_body($2); - }), o("Expression WhileSource", function() { - return $2.add_body($1); - }) - ], - // Array comprehensions, including guard and current index. - // Looks a little confusing, check nodes.rb for the arguments to ForNode. - For: [o("Expression FOR ForVariables ForSource", function() { - return new ForNode($1, $4, $3[0], $3[1]); - }), o("FOR ForVariables ForSource Block", function() { - return new ForNode($4, $3, $2[0], $2[1]); - }) - ], - // An array comprehension has variables for the current element and index. - ForVariables: [o("Identifier", function() { - return [$1]; - }), o("Identifier , Identifier", function() { - return [$1, $3]; - }) - ], - // The source of the array comprehension can optionally be filtered. - ForSource: [o("IN Expression", function() { - return { - source: $2 - }; - }), o("OF Expression", function() { - return { - source: $2, - object: true - }; - }), o("ForSource WHEN Expression", function() { - $1.filter = $3; - return $1; - }), o("ForSource BY Expression", function() { - $1.step = $3; - return $1; - }) - ], - // Switch/When blocks. - Switch: [o("SWITCH Expression INDENT Whens OUTDENT", function() { - return $4.rewrite_condition($2); - }), o("SWITCH Expression INDENT Whens ELSE Block OUTDENT", function() { - return $4.rewrite_condition($2).add_else($6, true); - }) - ], - // The inner list of whens. - Whens: [o("When", function() { - return $1; - }), o("Whens When", function() { - return $1.push($2); - }) - ], - // An individual when. - When: [o("LEADING_WHEN SimpleArgs Block", function() { - return new IfNode($2, $3, null, { - statement: true - }); - }), o("LEADING_WHEN SimpleArgs Block TERMINATOR", function() { - return new IfNode($2, $3, null, { - statement: true - }); - }), o("Comment TERMINATOR When", function() { - $3.comment = $1; - return $3; - }) - ], - // The most basic form of "if". - IfStart: [o("IF Expression Block", function() { - return new IfNode($2, $3); - }), o("IfStart ElsIfs", function() { - return $1.add_else($2); - }) - ], - IfBlock: [o("IfStart", function() { - return $1; - }), o("IfStart ELSE Block", function() { - return $1.add_else($3); - }) - ], - // Multiple elsifs can be chained together. - ElsIfs: [o("ELSE IF Expression Block", function() { - return (new IfNode($3, $4)).force_statement(); - }), o("ElsIfs ElsIf", function() { - return $1.add_else($2); - }) - ], - // The full complement of if blocks, including postfix one-liner ifs and unlesses. - If: [o("IfBlock", function() { - return $1; - }), o("Expression IF Expression", function() { - return new IfNode($3, Expressions.wrap([$1]), null, { - statement: true - }); - }), o("Expression UNLESS Expression", function() { - return new IfNode($3, Expressions.wrap([$1]), null, { - statement: true, - invert: true - }); - }) ] }; - // Helpers ============================================================== - // Make the Jison parser. - bnf = {}; + // Precedence + // ---------- + // Operators at the top of this list have higher precedence than the ones lower + // down. Following these rules is what makes `2 + 3 * 4` parse as: + // 2 + (3 * 4) + // And not: + // (2 + 3) * 4 + operators = [["left", '?'], ["nonassoc", 'UMINUS', 'UPLUS', 'NOT', '!', '!!', '~', '++', '--'], ["left", '*', '/', '%'], ["left", '+', '-'], ["left", '<<', '>>', '>>>'], ["left", '&', '|', '^'], ["left", '<=', '<', '>', '>='], ["right", 'DELETE', 'INSTANCEOF', 'TYPEOF'], ["left", '==', '!=', 'IS', 'ISNT'], ["left", '&&', '||', 'AND', 'OR'], ["right", '-=', '+=', '/=', '*=', '%=', '||=', '&&=', '?='], ["left", '.'], ["right", 'INDENT'], ["left", 'OUTDENT'], ["right", 'WHEN', 'LEADING_WHEN', 'IN', 'OF', 'BY', 'THROW'], ["right", 'FOR', 'NEW', 'SUPER', 'CLASS'], ["left", 'EXTENDS'], ["right", 'ASSIGN', 'RETURN'], ["right", '->', '=>', 'UNLESS', 'IF', 'ELSE', 'WHILE']]; + // Wrapping Up + // ----------- + // Finally, now what we have our **grammar** and our **operators**, we can create + // our **Jison.Parser**. We do this by processing all of our rules, recording all + // terminals (every symbol which does not appear as the name of a rule above) + // as "tokens". tokens = []; _a = grammar; for (name in _a) { if (__hasProp.call(_a, name)) { - non_terminal = _a[name]; - bnf[name] = (function() { - _b = []; _c = non_terminal; + alternatives = _a[name]; + grammar[name] = (function() { + _b = []; _c = alternatives; for (_d = 0, _e = _c.length; _d < _e; _d++) { - option = _c[_d]; + alt = _c[_d]; _b.push((function() { - _f = option[0].split(" "); + _f = alt[0].split(' '); for (_g = 0, _h = _f.length; _g < _h; _g++) { - part = _f[_g]; - !grammar[part] ? tokens.push(part) : null; + token = _f[_g]; + if (!(grammar[token])) { + tokens.push(token); + } } - name === "Root" ? (option[1] = "return " + (option[1])) : null; - return option; + if (name === 'Root') { + alt[1] = "return " + (alt[1]); + } + return alt; }).call(this)); } return _b; }).call(this); }} - tokens = tokens.join(" "); + // Initialize the **Parser** with our list of terminal **tokens**, our **grammar** + // rules, and the name of the root. Reverse the operators because Jison orders + // precedence from low to high, and we have it high to low + // (as in [Yacc](http://dinosaur.compilertools.net/yacc/index.html)). exports.parser = new Parser({ - tokens: tokens, - bnf: bnf, + tokens: tokens.join(' '), + bnf: grammar, operators: operators.reverse(), startSymbol: 'Root' - }, { - debug: false }); })(); diff --git a/lib/parser.js b/lib/parser.js index de269fec..0dcb43c0 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -2,9 +2,9 @@ var parser = (function(){ var parser = {trace: function trace() { }, yy: {}, -symbols_: {"Root":2,"TERMINATOR":3,"Expressions":4,"Block":5,"Expression":6,"Value":7,"Call":8,"Code":9,"Operation":10,"Assign":11,"If":12,"Try":13,"Throw":14,"Return":15,"While":16,"For":17,"Switch":18,"Extends":19,"Class":20,"Splat":21,"Existence":22,"Comment":23,"INDENT":24,"OUTDENT":25,"Identifier":26,"IDENTIFIER":27,"AlphaNumeric":28,"NUMBER":29,"STRING":30,"Literal":31,"JS":32,"REGEX":33,"BREAK":34,"CONTINUE":35,"TRUE":36,"FALSE":37,"YES":38,"NO":39,"ON":40,"OFF":41,"ASSIGN":42,"AssignObj":43,"RETURN":44,"COMMENT":45,"!":46,"!!":47,"-":48,"+":49,"NOT":50,"~":51,"--":52,"++":53,"DELETE":54,"TYPEOF":55,"*":56,"/":57,"%":58,"<<":59,">>":60,">>>":61,"&":62,"|":63,"^":64,"<=":65,"<":66,">":67,">=":68,"==":69,"!=":70,"IS":71,"ISNT":72,"&&":73,"||":74,"AND":75,"OR":76,"?":77,"-=":78,"+=":79,"/=":80,"*=":81,"%=":82,"||=":83,"&&=":84,"?=":85,"INSTANCEOF":86,"IN":87,"PARAM_START":88,"ParamList":89,"PARAM_END":90,"FuncGlyph":91,"->":92,"=>":93,"Param":94,",":95,"PARAM":96,".":97,"Array":98,"Object":99,"Parenthetical":100,"Range":101,"This":102,"Accessor":103,"Invocation":104,"PROPERTY_ACCESS":105,"PROTOTYPE_ACCESS":106,"SOAK_ACCESS":107,"Index":108,"Slice":109,"INDEX_START":110,"INDEX_END":111,"SOAKED_INDEX_START":112,"SOAKED_INDEX_END":113,"{":114,"AssignList":115,"}":116,"IndentedAssignList":117,"CLASS":118,"EXTENDS":119,"NEW":120,"Super":121,"Arguments":122,"CALL_START":123,"ArgList":124,"CALL_END":125,"SUPER":126,"@":127,"[":128,"]":129,"SimpleArgs":130,"TRY":131,"Catch":132,"FINALLY":133,"CATCH":134,"THROW":135,"(":136,")":137,"WhileSource":138,"WHILE":139,"WHEN":140,"FOR":141,"ForVariables":142,"ForSource":143,"OF":144,"BY":145,"SWITCH":146,"Whens":147,"ELSE":148,"When":149,"LEADING_WHEN":150,"IfStart":151,"IF":152,"ElsIfs":153,"IfBlock":154,"ElsIf":155,"UNLESS":156,"$accept":0,"$end":1}, -terminals_: {"3":"TERMINATOR","24":"INDENT","25":"OUTDENT","27":"IDENTIFIER","29":"NUMBER","30":"STRING","32":"JS","33":"REGEX","34":"BREAK","35":"CONTINUE","36":"TRUE","37":"FALSE","38":"YES","39":"NO","40":"ON","41":"OFF","42":"ASSIGN","44":"RETURN","45":"COMMENT","46":"!","47":"!!","48":"-","49":"+","50":"NOT","51":"~","52":"--","53":"++","54":"DELETE","55":"TYPEOF","56":"*","57":"/","58":"%","59":"<<","60":">>","61":">>>","62":"&","63":"|","64":"^","65":"<=","66":"<","67":">","68":">=","69":"==","70":"!=","71":"IS","72":"ISNT","73":"&&","74":"||","75":"AND","76":"OR","77":"?","78":"-=","79":"+=","80":"/=","81":"*=","82":"%=","83":"||=","84":"&&=","85":"?=","86":"INSTANCEOF","87":"IN","88":"PARAM_START","90":"PARAM_END","92":"->","93":"=>","95":",","96":"PARAM","97":".","105":"PROPERTY_ACCESS","106":"PROTOTYPE_ACCESS","107":"SOAK_ACCESS","110":"INDEX_START","111":"INDEX_END","112":"SOAKED_INDEX_START","113":"SOAKED_INDEX_END","114":"{","116":"}","118":"CLASS","119":"EXTENDS","120":"NEW","123":"CALL_START","125":"CALL_END","126":"SUPER","127":"@","128":"[","129":"]","131":"TRY","133":"FINALLY","134":"CATCH","135":"THROW","136":"(","137":")","139":"WHILE","140":"WHEN","141":"FOR","144":"OF","145":"BY","146":"SWITCH","148":"ELSE","150":"LEADING_WHEN","152":"IF","155":"ElsIf","156":"UNLESS"}, -productions_: [0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[5,3],[5,2],[26,1],[28,1],[28,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[11,3],[43,3],[43,3],[43,1],[15,2],[15,1],[23,1],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[22,2],[9,5],[9,2],[91,1],[91,1],[89,0],[89,1],[89,3],[94,1],[94,4],[21,4],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,2],[7,2],[103,2],[103,2],[103,2],[103,1],[103,1],[108,3],[108,3],[99,3],[99,3],[20,2],[20,4],[20,3],[20,5],[115,0],[115,1],[115,3],[115,3],[115,4],[117,3],[8,1],[8,2],[8,1],[19,3],[104,2],[104,2],[122,3],[121,4],[102,1],[102,2],[101,6],[101,7],[109,6],[109,7],[98,3],[124,0],[124,1],[124,2],[124,3],[124,3],[124,4],[124,4],[124,2],[130,1],[130,3],[13,3],[13,4],[13,5],[132,3],[14,2],[100,3],[138,2],[138,4],[16,2],[16,2],[17,4],[17,4],[142,1],[142,3],[143,2],[143,2],[143,3],[143,3],[18,5],[18,7],[147,1],[147,2],[149,3],[149,4],[149,3],[151,3],[151,2],[154,1],[154,3],[153,4],[153,2],[12,1],[12,3],[12,3]], +symbols_: {"Root":2,"TERMINATOR":3,"Expressions":4,"Block":5,"Expression":6,"Value":7,"Call":8,"Code":9,"Operation":10,"Assign":11,"If":12,"Try":13,"Throw":14,"Return":15,"While":16,"For":17,"Switch":18,"Extends":19,"Class":20,"Splat":21,"Existence":22,"Comment":23,"INDENT":24,"OUTDENT":25,"Identifier":26,"IDENTIFIER":27,"AlphaNumeric":28,"NUMBER":29,"STRING":30,"Literal":31,"JS":32,"REGEX":33,"BREAK":34,"CONTINUE":35,"TRUE":36,"FALSE":37,"YES":38,"NO":39,"ON":40,"OFF":41,"ASSIGN":42,"AssignObj":43,"RETURN":44,"COMMENT":45,"?":46,"PARAM_START":47,"ParamList":48,"PARAM_END":49,"FuncGlyph":50,"->":51,"=>":52,"Param":53,",":54,"PARAM":55,".":56,"Array":57,"Object":58,"Parenthetical":59,"Range":60,"This":61,"Accessor":62,"Invocation":63,"PROPERTY_ACCESS":64,"PROTOTYPE_ACCESS":65,"SOAK_ACCESS":66,"Index":67,"Slice":68,"INDEX_START":69,"INDEX_END":70,"SOAKED_INDEX_START":71,"SOAKED_INDEX_END":72,"{":73,"AssignList":74,"}":75,"IndentedAssignList":76,"CLASS":77,"EXTENDS":78,"NEW":79,"Super":80,"Arguments":81,"CALL_START":82,"ArgList":83,"CALL_END":84,"SUPER":85,"@":86,"[":87,"]":88,"SimpleArgs":89,"TRY":90,"Catch":91,"FINALLY":92,"CATCH":93,"THROW":94,"(":95,")":96,"WhileSource":97,"WHILE":98,"WHEN":99,"FOR":100,"ForVariables":101,"ForSource":102,"IN":103,"OF":104,"BY":105,"SWITCH":106,"Whens":107,"ELSE":108,"When":109,"LEADING_WHEN":110,"IfStart":111,"IF":112,"ElsIf":113,"IfBlock":114,"UNLESS":115,"!":116,"!!":117,"-":118,"+":119,"NOT":120,"~":121,"--":122,"++":123,"DELETE":124,"TYPEOF":125,"*":126,"/":127,"%":128,"<<":129,">>":130,">>>":131,"&":132,"|":133,"^":134,"<=":135,"<":136,">":137,">=":138,"==":139,"!=":140,"IS":141,"ISNT":142,"&&":143,"||":144,"AND":145,"OR":146,"-=":147,"+=":148,"/=":149,"*=":150,"%=":151,"||=":152,"&&=":153,"?=":154,"INSTANCEOF":155,"$accept":0,"$end":1}, +terminals_: {"3":"TERMINATOR","24":"INDENT","25":"OUTDENT","27":"IDENTIFIER","29":"NUMBER","30":"STRING","32":"JS","33":"REGEX","34":"BREAK","35":"CONTINUE","36":"TRUE","37":"FALSE","38":"YES","39":"NO","40":"ON","41":"OFF","42":"ASSIGN","44":"RETURN","45":"COMMENT","46":"?","47":"PARAM_START","49":"PARAM_END","51":"->","52":"=>","54":",","55":"PARAM","56":".","64":"PROPERTY_ACCESS","65":"PROTOTYPE_ACCESS","66":"SOAK_ACCESS","69":"INDEX_START","70":"INDEX_END","71":"SOAKED_INDEX_START","72":"SOAKED_INDEX_END","73":"{","75":"}","77":"CLASS","78":"EXTENDS","79":"NEW","82":"CALL_START","84":"CALL_END","85":"SUPER","86":"@","87":"[","88":"]","90":"TRY","92":"FINALLY","93":"CATCH","94":"THROW","95":"(","96":")","98":"WHILE","99":"WHEN","100":"FOR","103":"IN","104":"OF","105":"BY","106":"SWITCH","108":"ELSE","110":"LEADING_WHEN","112":"IF","115":"UNLESS","116":"!","117":"!!","118":"-","119":"+","120":"NOT","121":"~","122":"--","123":"++","124":"DELETE","125":"TYPEOF","126":"*","127":"/","128":"%","129":"<<","130":">>","131":">>>","132":"&","133":"|","134":"^","135":"<=","136":"<","137":">","138":">=","139":"==","140":"!=","141":"IS","142":"ISNT","143":"&&","144":"||","145":"AND","146":"OR","147":"-=","148":"+=","149":"/=","150":"*=","151":"%=","152":"||=","153":"&&=","154":"?=","155":"INSTANCEOF"}, +productions_: [0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[5,3],[5,2],[26,1],[28,1],[28,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[31,1],[11,3],[43,3],[43,3],[43,1],[15,2],[15,1],[23,1],[22,2],[9,5],[9,2],[50,1],[50,1],[48,0],[48,1],[48,3],[53,1],[53,4],[21,4],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,2],[7,2],[62,2],[62,2],[62,2],[62,1],[62,1],[67,3],[67,3],[58,3],[58,3],[20,2],[20,4],[20,3],[20,5],[74,0],[74,1],[74,3],[74,3],[74,4],[76,3],[8,1],[8,2],[8,1],[19,3],[63,2],[63,2],[81,3],[80,4],[61,1],[61,2],[60,6],[60,7],[68,6],[68,7],[57,3],[83,0],[83,1],[83,2],[83,3],[83,3],[83,4],[83,4],[83,2],[89,1],[89,3],[13,3],[13,4],[13,5],[91,3],[14,2],[59,3],[97,2],[97,4],[16,2],[16,2],[17,4],[17,4],[101,1],[101,3],[102,2],[102,2],[102,3],[102,3],[18,5],[18,7],[107,1],[107,2],[109,3],[109,4],[109,3],[111,3],[111,2],[114,1],[114,3],[113,4],[12,1],[12,3],[12,3],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,2],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3],[10,3]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -103,322 +103,320 @@ case 46:this.$ = new ReturnNode(new ValueNode(new LiteralNode('null'))); break; case 47:this.$ = new CommentNode(yytext); break; -case 48:this.$ = new OpNode('!', $$[$0-2+2-1]); +case 48:this.$ = new ExistenceNode($$[$0-2+1-1]); break; -case 49:this.$ = new OpNode('!!', $$[$0-2+2-1]); +case 49:this.$ = new CodeNode($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); break; -case 50:this.$ = new OpNode('-', $$[$0-2+2-1]); +case 50:this.$ = new CodeNode([], $$[$0-2+2-1], $$[$0-2+1-1]); break; -case 51:this.$ = new OpNode('+', $$[$0-2+2-1]); +case 51:this.$ = 'func'; break; -case 52:this.$ = new OpNode('not', $$[$0-2+2-1]); +case 52:this.$ = 'boundfunc'; break; -case 53:this.$ = new OpNode('~', $$[$0-2+2-1]); +case 53:this.$ = []; break; -case 54:this.$ = new OpNode('--', $$[$0-2+2-1]); +case 54:this.$ = [$$[$0-1+1-1]]; break; -case 55:this.$ = new OpNode('++', $$[$0-2+2-1]); +case 55:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 56:this.$ = new OpNode('delete', $$[$0-2+2-1]); +case 56:this.$ = new LiteralNode(yytext); break; -case 57:this.$ = new OpNode('typeof', $$[$0-2+2-1]); +case 57:this.$ = new SplatNode($$[$0-4+1-1]); break; -case 58:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); +case 58:this.$ = new SplatNode($$[$0-4+1-1]); break; -case 59:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); +case 59:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 60:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); +case 60:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 61:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); +case 61:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 62:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); +case 62:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 63:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 63:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 64:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 64:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 65:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 65:this.$ = $$[$0-1+1-1]; break; -case 66:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 66:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); break; -case 67:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 67:this.$ = new ValueNode($$[$0-2+1-1], [$$[$0-2+2-1]]); break; -case 68:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 68:this.$ = new AccessorNode($$[$0-2+2-1]); break; -case 69:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); +case 69:this.$ = new AccessorNode($$[$0-2+2-1], 'prototype'); break; -case 70:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); +case 70:this.$ = new AccessorNode($$[$0-2+2-1], 'soak'); break; -case 71:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 71:this.$ = $$[$0-1+1-1]; break; -case 72:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 72:this.$ = new SliceNode($$[$0-1+1-1]); break; -case 73:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 73:this.$ = new IndexNode($$[$0-3+2-1]); break; -case 74:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 74:this.$ = new IndexNode($$[$0-3+2-1], 'soak'); break; -case 75:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); +case 75:this.$ = new ObjectNode($$[$0-3+2-1]); break; -case 76:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 76:this.$ = new ObjectNode($$[$0-3+2-1]); break; -case 77:this.$ = new OpNode('is', $$[$0-3+1-1], $$[$0-3+3-1]); +case 77:this.$ = new ClassNode($$[$0-2+2-1]); break; -case 78:this.$ = new OpNode('isnt', $$[$0-3+1-1], $$[$0-3+3-1]); +case 78:this.$ = new ClassNode($$[$0-4+2-1], $$[$0-4+4-1]); break; -case 79:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 79:this.$ = new ClassNode($$[$0-3+2-1], null, $$[$0-3+3-1]); break; -case 80:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); +case 80:this.$ = new ClassNode($$[$0-5+2-1], $$[$0-5+4-1], $$[$0-5+5-1]); break; -case 81:this.$ = new OpNode('and', $$[$0-3+1-1], $$[$0-3+3-1]); +case 81:this.$ = []; break; -case 82:this.$ = new OpNode('or', $$[$0-3+1-1], $$[$0-3+3-1]); +case 82:this.$ = [$$[$0-1+1-1]]; break; -case 83:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); +case 83:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 84:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 84:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 85:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 85:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); break; -case 86:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 86:this.$ = $$[$0-3+2-1]; break; -case 87:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 87:this.$ = $$[$0-1+1-1]; break; -case 88:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 88:this.$ = $$[$0-2+2-1].new_instance(); break; -case 89:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 89:this.$ = $$[$0-1+1-1]; break; -case 90:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 90:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 91:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 91:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 92:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); +case 92:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 93:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +case 93:this.$ = $$[$0-3+2-1]; break; -case 94:this.$ = new ExistenceNode($$[$0-2+1-1]); +case 94:this.$ = new CallNode('super', $$[$0-4+3-1]); break; -case 95:this.$ = new CodeNode($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); +case 95:this.$ = new ValueNode(new LiteralNode('this')); break; -case 96:this.$ = new CodeNode([], $$[$0-2+2-1], $$[$0-2+1-1]); +case 96:this.$ = new ValueNode(new LiteralNode('this'), [new AccessorNode($$[$0-2+2-1])]); break; -case 97:this.$ = 'func'; +case 97:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); break; -case 98:this.$ = 'boundfunc'; +case 98:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); break; -case 99:this.$ = []; +case 99:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); break; -case 100:this.$ = [$$[$0-1+1-1]]; +case 100:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); break; -case 101:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +case 101:this.$ = new ArrayNode($$[$0-3+2-1]); break; -case 102:this.$ = new LiteralNode(yytext); +case 102:this.$ = []; break; -case 103:this.$ = new SplatNode($$[$0-4+1-1]); +case 103:this.$ = [$$[$0-1+1-1]]; break; -case 104:this.$ = new SplatNode($$[$0-4+1-1]); +case 104:this.$ = [$$[$0-2+2-1]]; break; -case 105:this.$ = new ValueNode($$[$0-1+1-1]); +case 105:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 106:this.$ = new ValueNode($$[$0-1+1-1]); +case 106:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 107:this.$ = new ValueNode($$[$0-1+1-1]); +case 107:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); break; -case 108:this.$ = new ValueNode($$[$0-1+1-1]); +case 108:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); break; -case 109:this.$ = new ValueNode($$[$0-1+1-1]); +case 109:this.$ = $$[$0-2+1-1]; break; -case 110:this.$ = new ValueNode($$[$0-1+1-1]); +case 110:this.$ = $$[$0-1+1-1]; break; -case 111:this.$ = $$[$0-1+1-1]; +case 111:this.$ = $$[$0-3+1-1] instanceof Array ? $$[$0-3+1-1].concat([$$[$0-3+3-1]]) : [$$[$0-3+1-1]].concat([$$[$0-3+3-1]]); break; -case 112:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 112:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); break; -case 113:this.$ = new ValueNode($$[$0-2+1-1], [$$[$0-2+2-1]]); +case 113:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); break; -case 114:this.$ = new AccessorNode($$[$0-2+2-1]); +case 114:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); break; -case 115:this.$ = new AccessorNode($$[$0-2+2-1], 'prototype'); +case 115:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 116:this.$ = new AccessorNode($$[$0-2+2-1], 'soak'); +case 116:this.$ = new ThrowNode($$[$0-2+2-1]); break; -case 117:this.$ = $$[$0-1+1-1]; +case 117:this.$ = new ParentheticalNode($$[$0-3+2-1]); break; -case 118:this.$ = new SliceNode($$[$0-1+1-1]); +case 118:this.$ = new WhileNode($$[$0-2+2-1]); break; -case 119:this.$ = new IndexNode($$[$0-3+2-1]); -break; -case 120:this.$ = new IndexNode($$[$0-3+2-1], 'soak'); -break; -case 121:this.$ = new ObjectNode($$[$0-3+2-1]); -break; -case 122:this.$ = new ObjectNode($$[$0-3+2-1]); -break; -case 123:this.$ = new ClassNode($$[$0-2+2-1]); -break; -case 124:this.$ = new ClassNode($$[$0-4+2-1], $$[$0-4+4-1]); -break; -case 125:this.$ = new ClassNode($$[$0-3+2-1], null, $$[$0-3+3-1]); -break; -case 126:this.$ = new ClassNode($$[$0-5+2-1], $$[$0-5+4-1], $$[$0-5+5-1]); -break; -case 127:this.$ = []; -break; -case 128:this.$ = [$$[$0-1+1-1]]; -break; -case 129:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); -break; -case 130:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); -break; -case 131:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); -break; -case 132:this.$ = $$[$0-3+2-1]; -break; -case 133:this.$ = $$[$0-1+1-1]; -break; -case 134:this.$ = $$[$0-2+2-1].new_instance(); -break; -case 135:this.$ = $$[$0-1+1-1]; -break; -case 136:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); -break; -case 137:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); -break; -case 138:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); -break; -case 139:this.$ = $$[$0-3+2-1]; -break; -case 140:this.$ = new CallNode('super', $$[$0-4+3-1]); -break; -case 141:this.$ = new ValueNode(new LiteralNode('this')); -break; -case 142:this.$ = new ValueNode(new LiteralNode('this'), [new AccessorNode($$[$0-2+2-1])]); -break; -case 143:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); -break; -case 144:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); -break; -case 145:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); -break; -case 146:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); -break; -case 147:this.$ = new ArrayNode($$[$0-3+2-1]); -break; -case 148:this.$ = []; -break; -case 149:this.$ = [$$[$0-1+1-1]]; -break; -case 150:this.$ = [$$[$0-2+2-1]]; -break; -case 151:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); -break; -case 152:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); -break; -case 153:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); -break; -case 154:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); -break; -case 155:this.$ = $$[$0-2+1-1]; -break; -case 156:this.$ = $$[$0-1+1-1]; -break; -case 157:this.$ = $$[$0-3+1-1] instanceof Array ? $$[$0-3+1-1].concat([$$[$0-3+3-1]]) : [$$[$0-3+1-1]].concat([$$[$0-3+3-1]]); -break; -case 158:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); -break; -case 159:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); -break; -case 160:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); -break; -case 161:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; -break; -case 162:this.$ = new ThrowNode($$[$0-2+2-1]); -break; -case 163:this.$ = new ParentheticalNode($$[$0-3+2-1]); -break; -case 164:this.$ = new WhileNode($$[$0-2+2-1]); -break; -case 165:this.$ = new WhileNode($$[$0-4+2-1], { +case 119:this.$ = new WhileNode($$[$0-4+2-1], { filter: $$[$0-4+4-1] }); break; -case 166:this.$ = $$[$0-2+1-1].add_body($$[$0-2+2-1]); +case 120:this.$ = $$[$0-2+1-1].add_body($$[$0-2+2-1]); break; -case 167:this.$ = $$[$0-2+2-1].add_body($$[$0-2+1-1]); +case 121:this.$ = $$[$0-2+2-1].add_body($$[$0-2+1-1]); break; -case 168:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); +case 122:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); break; -case 169:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); +case 123:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); break; -case 170:this.$ = [$$[$0-1+1-1]]; +case 124:this.$ = [$$[$0-1+1-1]]; break; -case 171:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; +case 125:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; break; -case 172:this.$ = { +case 126:this.$ = { source: $$[$0-2+2-1] }; break; -case 173:this.$ = { +case 127:this.$ = { source: $$[$0-2+2-1], object: true }; break; -case 174:this.$ = (function () { +case 128:this.$ = (function () { $$[$0-3+1-1].filter = $$[$0-3+3-1]; return $$[$0-3+1-1]; }()); break; -case 175:this.$ = (function () { +case 129:this.$ = (function () { $$[$0-3+1-1].step = $$[$0-3+3-1]; return $$[$0-3+1-1]; }()); break; -case 176:this.$ = $$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]); +case 130:this.$ = $$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]); break; -case 177:this.$ = $$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1], true); +case 131:this.$ = $$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1], true); break; -case 178:this.$ = $$[$0-1+1-1]; +case 132:this.$ = $$[$0-1+1-1]; break; -case 179:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 133:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); break; -case 180:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], null, { +case 134:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], null, { statement: true }); break; -case 181:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], null, { +case 135:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], null, { statement: true }); break; -case 182:this.$ = (function () { +case 136:this.$ = (function () { $$[$0-3+3-1].comment = $$[$0-3+1-1]; return $$[$0-3+3-1]; }()); break; -case 183:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); +case 137:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 184:this.$ = $$[$0-2+1-1].add_else($$[$0-2+2-1]); +case 138:this.$ = $$[$0-2+1-1].add_else($$[$0-2+2-1]); break; -case 185:this.$ = $$[$0-1+1-1]; +case 139:this.$ = $$[$0-1+1-1]; break; -case 186:this.$ = $$[$0-3+1-1].add_else($$[$0-3+3-1]); +case 140:this.$ = $$[$0-3+1-1].add_else($$[$0-3+3-1]); break; -case 187:this.$ = (new IfNode($$[$0-4+3-1], $$[$0-4+4-1])).force_statement(); +case 141:this.$ = (new IfNode($$[$0-4+3-1], $$[$0-4+4-1])).force_statement(); break; -case 188:this.$ = $$[$0-2+1-1].add_else($$[$0-2+2-1]); +case 142:this.$ = $$[$0-1+1-1]; break; -case 189:this.$ = $$[$0-1+1-1]; -break; -case 190:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { +case 143:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { statement: true }); break; -case 191:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { +case 144:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { statement: true, invert: true }); break; +case 145:this.$ = new OpNode('!', $$[$0-2+2-1]); +break; +case 146:this.$ = new OpNode('!!', $$[$0-2+2-1]); +break; +case 147:this.$ = new OpNode('-', $$[$0-2+2-1]); +break; +case 148:this.$ = new OpNode('+', $$[$0-2+2-1]); +break; +case 149:this.$ = new OpNode('not', $$[$0-2+2-1]); +break; +case 150:this.$ = new OpNode('~', $$[$0-2+2-1]); +break; +case 151:this.$ = new OpNode('--', $$[$0-2+2-1]); +break; +case 152:this.$ = new OpNode('++', $$[$0-2+2-1]); +break; +case 153:this.$ = new OpNode('delete', $$[$0-2+2-1]); +break; +case 154:this.$ = new OpNode('typeof', $$[$0-2+2-1]); +break; +case 155:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); +break; +case 156:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); +break; +case 157:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 158:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 159:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 160:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 161:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 162:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 163:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 164:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 165:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 166:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 167:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 168:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 169:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 170:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 171:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 172:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 173:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 174:this.$ = new OpNode('is', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 175:this.$ = new OpNode('isnt', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 176:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 177:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 178:this.$ = new OpNode('and', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 179:this.$ = new OpNode('or', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 180:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 181:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 182:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 183:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 184:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 185:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 186:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 187:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 188:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 189:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 190:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +break; } }, -table: [{"1":[[2,1]],"2":1,"3":[[1,2]],"4":3,"5":4,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[1,6]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[3]]},{"1":[[2,2]]},{"1":[[2,3]],"3":[[1,79]]},{"3":[[1,80]]},{"1":[[2,5]],"3":[[2,5]],"25":[[2,5]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"4":122,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"25":[[1,123]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,8]],"3":[[2,8]],"24":[[2,8]],"25":[[2,8]],"42":[[1,125]],"48":[[2,8]],"49":[[2,8]],"52":[[2,8]],"53":[[2,8]],"56":[[2,8]],"57":[[2,8]],"58":[[2,8]],"59":[[2,8]],"60":[[2,8]],"61":[[2,8]],"62":[[2,8]],"63":[[2,8]],"64":[[2,8]],"65":[[2,8]],"66":[[2,8]],"67":[[2,8]],"68":[[2,8]],"69":[[2,8]],"70":[[2,8]],"71":[[2,8]],"72":[[2,8]],"73":[[2,8]],"74":[[2,8]],"75":[[2,8]],"76":[[2,8]],"77":[[2,8]],"78":[[2,8]],"79":[[2,8]],"80":[[2,8]],"81":[[2,8]],"82":[[2,8]],"83":[[2,8]],"84":[[2,8]],"85":[[2,8]],"86":[[2,8]],"87":[[2,8]],"95":[[2,8]],"97":[[2,8]],"103":124,"105":[[1,128]],"106":[[1,129]],"107":[[1,130]],"108":131,"109":132,"110":[[1,134]],"111":[[2,8]],"112":[[1,135]],"113":[[2,8]],"116":[[2,8]],"119":[[1,126]],"122":127,"123":[[1,133]],"125":[[2,8]],"129":[[2,8]],"137":[[2,8]],"139":[[2,8]],"140":[[2,8]],"141":[[2,8]],"145":[[2,8]],"152":[[2,8]],"156":[[2,8]]},{"1":[[2,9]],"3":[[2,9]],"24":[[2,9]],"25":[[2,9]],"48":[[2,9]],"49":[[2,9]],"52":[[2,9]],"53":[[2,9]],"56":[[2,9]],"57":[[2,9]],"58":[[2,9]],"59":[[2,9]],"60":[[2,9]],"61":[[2,9]],"62":[[2,9]],"63":[[2,9]],"64":[[2,9]],"65":[[2,9]],"66":[[2,9]],"67":[[2,9]],"68":[[2,9]],"69":[[2,9]],"70":[[2,9]],"71":[[2,9]],"72":[[2,9]],"73":[[2,9]],"74":[[2,9]],"75":[[2,9]],"76":[[2,9]],"77":[[2,9]],"78":[[2,9]],"79":[[2,9]],"80":[[2,9]],"81":[[2,9]],"82":[[2,9]],"83":[[2,9]],"84":[[2,9]],"85":[[2,9]],"86":[[2,9]],"87":[[2,9]],"95":[[2,9]],"97":[[2,9]],"111":[[2,9]],"113":[[2,9]],"116":[[2,9]],"125":[[2,9]],"129":[[2,9]],"137":[[2,9]],"139":[[2,9]],"140":[[2,9]],"141":[[2,9]],"145":[[2,9]],"152":[[2,9]],"156":[[2,9]]},{"1":[[2,10]],"3":[[2,10]],"24":[[2,10]],"25":[[2,10]],"48":[[2,10]],"49":[[2,10]],"52":[[2,10]],"53":[[2,10]],"56":[[2,10]],"57":[[2,10]],"58":[[2,10]],"59":[[2,10]],"60":[[2,10]],"61":[[2,10]],"62":[[2,10]],"63":[[2,10]],"64":[[2,10]],"65":[[2,10]],"66":[[2,10]],"67":[[2,10]],"68":[[2,10]],"69":[[2,10]],"70":[[2,10]],"71":[[2,10]],"72":[[2,10]],"73":[[2,10]],"74":[[2,10]],"75":[[2,10]],"76":[[2,10]],"77":[[2,10]],"78":[[2,10]],"79":[[2,10]],"80":[[2,10]],"81":[[2,10]],"82":[[2,10]],"83":[[2,10]],"84":[[2,10]],"85":[[2,10]],"86":[[2,10]],"87":[[2,10]],"95":[[2,10]],"97":[[2,10]],"111":[[2,10]],"113":[[2,10]],"116":[[2,10]],"125":[[2,10]],"129":[[2,10]],"137":[[2,10]],"139":[[2,10]],"140":[[2,10]],"141":[[2,10]],"145":[[2,10]],"152":[[2,10]],"156":[[2,10]]},{"1":[[2,11]],"3":[[2,11]],"24":[[2,11]],"25":[[2,11]],"48":[[2,11]],"49":[[2,11]],"52":[[2,11]],"53":[[2,11]],"56":[[2,11]],"57":[[2,11]],"58":[[2,11]],"59":[[2,11]],"60":[[2,11]],"61":[[2,11]],"62":[[2,11]],"63":[[2,11]],"64":[[2,11]],"65":[[2,11]],"66":[[2,11]],"67":[[2,11]],"68":[[2,11]],"69":[[2,11]],"70":[[2,11]],"71":[[2,11]],"72":[[2,11]],"73":[[2,11]],"74":[[2,11]],"75":[[2,11]],"76":[[2,11]],"77":[[2,11]],"78":[[2,11]],"79":[[2,11]],"80":[[2,11]],"81":[[2,11]],"82":[[2,11]],"83":[[2,11]],"84":[[2,11]],"85":[[2,11]],"86":[[2,11]],"87":[[2,11]],"95":[[2,11]],"97":[[2,11]],"111":[[2,11]],"113":[[2,11]],"116":[[2,11]],"125":[[2,11]],"129":[[2,11]],"137":[[2,11]],"139":[[2,11]],"140":[[2,11]],"141":[[2,11]],"145":[[2,11]],"152":[[2,11]],"156":[[2,11]]},{"1":[[2,12]],"3":[[2,12]],"24":[[2,12]],"25":[[2,12]],"48":[[2,12]],"49":[[2,12]],"52":[[2,12]],"53":[[2,12]],"56":[[2,12]],"57":[[2,12]],"58":[[2,12]],"59":[[2,12]],"60":[[2,12]],"61":[[2,12]],"62":[[2,12]],"63":[[2,12]],"64":[[2,12]],"65":[[2,12]],"66":[[2,12]],"67":[[2,12]],"68":[[2,12]],"69":[[2,12]],"70":[[2,12]],"71":[[2,12]],"72":[[2,12]],"73":[[2,12]],"74":[[2,12]],"75":[[2,12]],"76":[[2,12]],"77":[[2,12]],"78":[[2,12]],"79":[[2,12]],"80":[[2,12]],"81":[[2,12]],"82":[[2,12]],"83":[[2,12]],"84":[[2,12]],"85":[[2,12]],"86":[[2,12]],"87":[[2,12]],"95":[[2,12]],"97":[[2,12]],"111":[[2,12]],"113":[[2,12]],"116":[[2,12]],"125":[[2,12]],"129":[[2,12]],"137":[[2,12]],"139":[[2,12]],"140":[[2,12]],"141":[[2,12]],"145":[[2,12]],"152":[[2,12]],"156":[[2,12]]},{"1":[[2,13]],"3":[[2,13]],"24":[[2,13]],"25":[[2,13]],"48":[[2,13]],"49":[[2,13]],"52":[[2,13]],"53":[[2,13]],"56":[[2,13]],"57":[[2,13]],"58":[[2,13]],"59":[[2,13]],"60":[[2,13]],"61":[[2,13]],"62":[[2,13]],"63":[[2,13]],"64":[[2,13]],"65":[[2,13]],"66":[[2,13]],"67":[[2,13]],"68":[[2,13]],"69":[[2,13]],"70":[[2,13]],"71":[[2,13]],"72":[[2,13]],"73":[[2,13]],"74":[[2,13]],"75":[[2,13]],"76":[[2,13]],"77":[[2,13]],"78":[[2,13]],"79":[[2,13]],"80":[[2,13]],"81":[[2,13]],"82":[[2,13]],"83":[[2,13]],"84":[[2,13]],"85":[[2,13]],"86":[[2,13]],"87":[[2,13]],"95":[[2,13]],"97":[[2,13]],"111":[[2,13]],"113":[[2,13]],"116":[[2,13]],"125":[[2,13]],"129":[[2,13]],"137":[[2,13]],"139":[[2,13]],"140":[[2,13]],"141":[[2,13]],"145":[[2,13]],"152":[[2,13]],"156":[[2,13]]},{"1":[[2,14]],"3":[[2,14]],"24":[[2,14]],"25":[[2,14]],"48":[[2,14]],"49":[[2,14]],"52":[[2,14]],"53":[[2,14]],"56":[[2,14]],"57":[[2,14]],"58":[[2,14]],"59":[[2,14]],"60":[[2,14]],"61":[[2,14]],"62":[[2,14]],"63":[[2,14]],"64":[[2,14]],"65":[[2,14]],"66":[[2,14]],"67":[[2,14]],"68":[[2,14]],"69":[[2,14]],"70":[[2,14]],"71":[[2,14]],"72":[[2,14]],"73":[[2,14]],"74":[[2,14]],"75":[[2,14]],"76":[[2,14]],"77":[[2,14]],"78":[[2,14]],"79":[[2,14]],"80":[[2,14]],"81":[[2,14]],"82":[[2,14]],"83":[[2,14]],"84":[[2,14]],"85":[[2,14]],"86":[[2,14]],"87":[[2,14]],"95":[[2,14]],"97":[[2,14]],"111":[[2,14]],"113":[[2,14]],"116":[[2,14]],"125":[[2,14]],"129":[[2,14]],"137":[[2,14]],"139":[[2,14]],"140":[[2,14]],"141":[[2,14]],"145":[[2,14]],"152":[[2,14]],"156":[[2,14]]},{"1":[[2,15]],"3":[[2,15]],"24":[[2,15]],"25":[[2,15]],"48":[[2,15]],"49":[[2,15]],"52":[[2,15]],"53":[[2,15]],"56":[[2,15]],"57":[[2,15]],"58":[[2,15]],"59":[[2,15]],"60":[[2,15]],"61":[[2,15]],"62":[[2,15]],"63":[[2,15]],"64":[[2,15]],"65":[[2,15]],"66":[[2,15]],"67":[[2,15]],"68":[[2,15]],"69":[[2,15]],"70":[[2,15]],"71":[[2,15]],"72":[[2,15]],"73":[[2,15]],"74":[[2,15]],"75":[[2,15]],"76":[[2,15]],"77":[[2,15]],"78":[[2,15]],"79":[[2,15]],"80":[[2,15]],"81":[[2,15]],"82":[[2,15]],"83":[[2,15]],"84":[[2,15]],"85":[[2,15]],"86":[[2,15]],"87":[[2,15]],"95":[[2,15]],"97":[[2,15]],"111":[[2,15]],"113":[[2,15]],"116":[[2,15]],"125":[[2,15]],"129":[[2,15]],"137":[[2,15]],"139":[[2,15]],"140":[[2,15]],"141":[[2,15]],"145":[[2,15]],"152":[[2,15]],"156":[[2,15]]},{"1":[[2,16]],"3":[[2,16]],"24":[[2,16]],"25":[[2,16]],"48":[[2,16]],"49":[[2,16]],"52":[[2,16]],"53":[[2,16]],"56":[[2,16]],"57":[[2,16]],"58":[[2,16]],"59":[[2,16]],"60":[[2,16]],"61":[[2,16]],"62":[[2,16]],"63":[[2,16]],"64":[[2,16]],"65":[[2,16]],"66":[[2,16]],"67":[[2,16]],"68":[[2,16]],"69":[[2,16]],"70":[[2,16]],"71":[[2,16]],"72":[[2,16]],"73":[[2,16]],"74":[[2,16]],"75":[[2,16]],"76":[[2,16]],"77":[[2,16]],"78":[[2,16]],"79":[[2,16]],"80":[[2,16]],"81":[[2,16]],"82":[[2,16]],"83":[[2,16]],"84":[[2,16]],"85":[[2,16]],"86":[[2,16]],"87":[[2,16]],"95":[[2,16]],"97":[[2,16]],"111":[[2,16]],"113":[[2,16]],"116":[[2,16]],"125":[[2,16]],"129":[[2,16]],"137":[[2,16]],"139":[[2,16]],"140":[[2,16]],"141":[[2,16]],"145":[[2,16]],"152":[[2,16]],"156":[[2,16]]},{"1":[[2,17]],"3":[[2,17]],"24":[[2,17]],"25":[[2,17]],"48":[[2,17]],"49":[[2,17]],"52":[[2,17]],"53":[[2,17]],"56":[[2,17]],"57":[[2,17]],"58":[[2,17]],"59":[[2,17]],"60":[[2,17]],"61":[[2,17]],"62":[[2,17]],"63":[[2,17]],"64":[[2,17]],"65":[[2,17]],"66":[[2,17]],"67":[[2,17]],"68":[[2,17]],"69":[[2,17]],"70":[[2,17]],"71":[[2,17]],"72":[[2,17]],"73":[[2,17]],"74":[[2,17]],"75":[[2,17]],"76":[[2,17]],"77":[[2,17]],"78":[[2,17]],"79":[[2,17]],"80":[[2,17]],"81":[[2,17]],"82":[[2,17]],"83":[[2,17]],"84":[[2,17]],"85":[[2,17]],"86":[[2,17]],"87":[[2,17]],"95":[[2,17]],"97":[[2,17]],"111":[[2,17]],"113":[[2,17]],"116":[[2,17]],"125":[[2,17]],"129":[[2,17]],"137":[[2,17]],"139":[[2,17]],"140":[[2,17]],"141":[[2,17]],"145":[[2,17]],"152":[[2,17]],"156":[[2,17]]},{"1":[[2,18]],"3":[[2,18]],"24":[[2,18]],"25":[[2,18]],"48":[[2,18]],"49":[[2,18]],"52":[[2,18]],"53":[[2,18]],"56":[[2,18]],"57":[[2,18]],"58":[[2,18]],"59":[[2,18]],"60":[[2,18]],"61":[[2,18]],"62":[[2,18]],"63":[[2,18]],"64":[[2,18]],"65":[[2,18]],"66":[[2,18]],"67":[[2,18]],"68":[[2,18]],"69":[[2,18]],"70":[[2,18]],"71":[[2,18]],"72":[[2,18]],"73":[[2,18]],"74":[[2,18]],"75":[[2,18]],"76":[[2,18]],"77":[[2,18]],"78":[[2,18]],"79":[[2,18]],"80":[[2,18]],"81":[[2,18]],"82":[[2,18]],"83":[[2,18]],"84":[[2,18]],"85":[[2,18]],"86":[[2,18]],"87":[[2,18]],"95":[[2,18]],"97":[[2,18]],"111":[[2,18]],"113":[[2,18]],"116":[[2,18]],"125":[[2,18]],"129":[[2,18]],"137":[[2,18]],"139":[[2,18]],"140":[[2,18]],"141":[[2,18]],"145":[[2,18]],"152":[[2,18]],"156":[[2,18]]},{"1":[[2,19]],"3":[[2,19]],"24":[[2,19]],"25":[[2,19]],"48":[[2,19]],"49":[[2,19]],"52":[[2,19]],"53":[[2,19]],"56":[[2,19]],"57":[[2,19]],"58":[[2,19]],"59":[[2,19]],"60":[[2,19]],"61":[[2,19]],"62":[[2,19]],"63":[[2,19]],"64":[[2,19]],"65":[[2,19]],"66":[[2,19]],"67":[[2,19]],"68":[[2,19]],"69":[[2,19]],"70":[[2,19]],"71":[[2,19]],"72":[[2,19]],"73":[[2,19]],"74":[[2,19]],"75":[[2,19]],"76":[[2,19]],"77":[[2,19]],"78":[[2,19]],"79":[[2,19]],"80":[[2,19]],"81":[[2,19]],"82":[[2,19]],"83":[[2,19]],"84":[[2,19]],"85":[[2,19]],"86":[[2,19]],"87":[[2,19]],"95":[[2,19]],"97":[[2,19]],"111":[[2,19]],"113":[[2,19]],"116":[[2,19]],"125":[[2,19]],"129":[[2,19]],"137":[[2,19]],"139":[[2,19]],"140":[[2,19]],"141":[[2,19]],"145":[[2,19]],"152":[[2,19]],"156":[[2,19]]},{"1":[[2,20]],"3":[[2,20]],"24":[[2,20]],"25":[[2,20]],"48":[[2,20]],"49":[[2,20]],"52":[[2,20]],"53":[[2,20]],"56":[[2,20]],"57":[[2,20]],"58":[[2,20]],"59":[[2,20]],"60":[[2,20]],"61":[[2,20]],"62":[[2,20]],"63":[[2,20]],"64":[[2,20]],"65":[[2,20]],"66":[[2,20]],"67":[[2,20]],"68":[[2,20]],"69":[[2,20]],"70":[[2,20]],"71":[[2,20]],"72":[[2,20]],"73":[[2,20]],"74":[[2,20]],"75":[[2,20]],"76":[[2,20]],"77":[[2,20]],"78":[[2,20]],"79":[[2,20]],"80":[[2,20]],"81":[[2,20]],"82":[[2,20]],"83":[[2,20]],"84":[[2,20]],"85":[[2,20]],"86":[[2,20]],"87":[[2,20]],"95":[[2,20]],"97":[[2,20]],"111":[[2,20]],"113":[[2,20]],"116":[[2,20]],"125":[[2,20]],"129":[[2,20]],"137":[[2,20]],"139":[[2,20]],"140":[[2,20]],"141":[[2,20]],"145":[[2,20]],"152":[[2,20]],"156":[[2,20]]},{"1":[[2,21]],"3":[[2,21]],"24":[[2,21]],"25":[[2,21]],"48":[[2,21]],"49":[[2,21]],"52":[[2,21]],"53":[[2,21]],"56":[[2,21]],"57":[[2,21]],"58":[[2,21]],"59":[[2,21]],"60":[[2,21]],"61":[[2,21]],"62":[[2,21]],"63":[[2,21]],"64":[[2,21]],"65":[[2,21]],"66":[[2,21]],"67":[[2,21]],"68":[[2,21]],"69":[[2,21]],"70":[[2,21]],"71":[[2,21]],"72":[[2,21]],"73":[[2,21]],"74":[[2,21]],"75":[[2,21]],"76":[[2,21]],"77":[[2,21]],"78":[[2,21]],"79":[[2,21]],"80":[[2,21]],"81":[[2,21]],"82":[[2,21]],"83":[[2,21]],"84":[[2,21]],"85":[[2,21]],"86":[[2,21]],"87":[[2,21]],"95":[[2,21]],"97":[[2,21]],"111":[[2,21]],"113":[[2,21]],"116":[[2,21]],"125":[[2,21]],"129":[[2,21]],"137":[[2,21]],"139":[[2,21]],"140":[[2,21]],"141":[[2,21]],"145":[[2,21]],"152":[[2,21]],"156":[[2,21]]},{"1":[[2,22]],"3":[[2,22]],"24":[[2,22]],"25":[[2,22]],"48":[[2,22]],"49":[[2,22]],"52":[[2,22]],"53":[[2,22]],"56":[[2,22]],"57":[[2,22]],"58":[[2,22]],"59":[[2,22]],"60":[[2,22]],"61":[[2,22]],"62":[[2,22]],"63":[[2,22]],"64":[[2,22]],"65":[[2,22]],"66":[[2,22]],"67":[[2,22]],"68":[[2,22]],"69":[[2,22]],"70":[[2,22]],"71":[[2,22]],"72":[[2,22]],"73":[[2,22]],"74":[[2,22]],"75":[[2,22]],"76":[[2,22]],"77":[[2,22]],"78":[[2,22]],"79":[[2,22]],"80":[[2,22]],"81":[[2,22]],"82":[[2,22]],"83":[[2,22]],"84":[[2,22]],"85":[[2,22]],"86":[[2,22]],"87":[[2,22]],"95":[[2,22]],"97":[[2,22]],"111":[[2,22]],"113":[[2,22]],"116":[[2,22]],"125":[[2,22]],"129":[[2,22]],"137":[[2,22]],"139":[[2,22]],"140":[[2,22]],"141":[[2,22]],"145":[[2,22]],"152":[[2,22]],"156":[[2,22]]},{"1":[[2,23]],"3":[[2,23]],"24":[[2,23]],"25":[[2,23]],"48":[[2,23]],"49":[[2,23]],"52":[[2,23]],"53":[[2,23]],"56":[[2,23]],"57":[[2,23]],"58":[[2,23]],"59":[[2,23]],"60":[[2,23]],"61":[[2,23]],"62":[[2,23]],"63":[[2,23]],"64":[[2,23]],"65":[[2,23]],"66":[[2,23]],"67":[[2,23]],"68":[[2,23]],"69":[[2,23]],"70":[[2,23]],"71":[[2,23]],"72":[[2,23]],"73":[[2,23]],"74":[[2,23]],"75":[[2,23]],"76":[[2,23]],"77":[[2,23]],"78":[[2,23]],"79":[[2,23]],"80":[[2,23]],"81":[[2,23]],"82":[[2,23]],"83":[[2,23]],"84":[[2,23]],"85":[[2,23]],"86":[[2,23]],"87":[[2,23]],"95":[[2,23]],"97":[[2,23]],"111":[[2,23]],"113":[[2,23]],"116":[[2,23]],"125":[[2,23]],"129":[[2,23]],"137":[[2,23]],"139":[[2,23]],"140":[[2,23]],"141":[[2,23]],"145":[[2,23]],"152":[[2,23]],"156":[[2,23]]},{"1":[[2,24]],"3":[[2,24]],"24":[[2,24]],"25":[[2,24]],"48":[[2,24]],"49":[[2,24]],"52":[[2,24]],"53":[[2,24]],"56":[[2,24]],"57":[[2,24]],"58":[[2,24]],"59":[[2,24]],"60":[[2,24]],"61":[[2,24]],"62":[[2,24]],"63":[[2,24]],"64":[[2,24]],"65":[[2,24]],"66":[[2,24]],"67":[[2,24]],"68":[[2,24]],"69":[[2,24]],"70":[[2,24]],"71":[[2,24]],"72":[[2,24]],"73":[[2,24]],"74":[[2,24]],"75":[[2,24]],"76":[[2,24]],"77":[[2,24]],"78":[[2,24]],"79":[[2,24]],"80":[[2,24]],"81":[[2,24]],"82":[[2,24]],"83":[[2,24]],"84":[[2,24]],"85":[[2,24]],"86":[[2,24]],"87":[[2,24]],"95":[[2,24]],"97":[[2,24]],"111":[[2,24]],"113":[[2,24]],"116":[[2,24]],"125":[[2,24]],"129":[[2,24]],"137":[[2,24]],"139":[[2,24]],"140":[[2,24]],"141":[[2,24]],"145":[[2,24]],"152":[[2,24]],"156":[[2,24]]},{"1":[[2,105]],"3":[[2,105]],"24":[[2,105]],"25":[[2,105]],"42":[[2,105]],"48":[[2,105]],"49":[[2,105]],"52":[[2,105]],"53":[[2,105]],"56":[[2,105]],"57":[[2,105]],"58":[[2,105]],"59":[[2,105]],"60":[[2,105]],"61":[[2,105]],"62":[[2,105]],"63":[[2,105]],"64":[[2,105]],"65":[[2,105]],"66":[[2,105]],"67":[[2,105]],"68":[[2,105]],"69":[[2,105]],"70":[[2,105]],"71":[[2,105]],"72":[[2,105]],"73":[[2,105]],"74":[[2,105]],"75":[[2,105]],"76":[[2,105]],"77":[[2,105]],"78":[[2,105]],"79":[[2,105]],"80":[[2,105]],"81":[[2,105]],"82":[[2,105]],"83":[[2,105]],"84":[[2,105]],"85":[[2,105]],"86":[[2,105]],"87":[[2,105]],"95":[[2,105]],"97":[[2,105]],"105":[[2,105]],"106":[[2,105]],"107":[[2,105]],"110":[[2,105]],"111":[[2,105]],"112":[[2,105]],"113":[[2,105]],"116":[[2,105]],"119":[[2,105]],"123":[[2,105]],"125":[[2,105]],"129":[[2,105]],"137":[[2,105]],"139":[[2,105]],"140":[[2,105]],"141":[[2,105]],"145":[[2,105]],"152":[[2,105]],"156":[[2,105]]},{"1":[[2,106]],"3":[[2,106]],"24":[[2,106]],"25":[[2,106]],"42":[[2,106]],"48":[[2,106]],"49":[[2,106]],"52":[[2,106]],"53":[[2,106]],"56":[[2,106]],"57":[[2,106]],"58":[[2,106]],"59":[[2,106]],"60":[[2,106]],"61":[[2,106]],"62":[[2,106]],"63":[[2,106]],"64":[[2,106]],"65":[[2,106]],"66":[[2,106]],"67":[[2,106]],"68":[[2,106]],"69":[[2,106]],"70":[[2,106]],"71":[[2,106]],"72":[[2,106]],"73":[[2,106]],"74":[[2,106]],"75":[[2,106]],"76":[[2,106]],"77":[[2,106]],"78":[[2,106]],"79":[[2,106]],"80":[[2,106]],"81":[[2,106]],"82":[[2,106]],"83":[[2,106]],"84":[[2,106]],"85":[[2,106]],"86":[[2,106]],"87":[[2,106]],"95":[[2,106]],"97":[[2,106]],"105":[[2,106]],"106":[[2,106]],"107":[[2,106]],"110":[[2,106]],"111":[[2,106]],"112":[[2,106]],"113":[[2,106]],"116":[[2,106]],"119":[[2,106]],"123":[[2,106]],"125":[[2,106]],"129":[[2,106]],"137":[[2,106]],"139":[[2,106]],"140":[[2,106]],"141":[[2,106]],"145":[[2,106]],"152":[[2,106]],"156":[[2,106]]},{"1":[[2,107]],"3":[[2,107]],"24":[[2,107]],"25":[[2,107]],"42":[[2,107]],"48":[[2,107]],"49":[[2,107]],"52":[[2,107]],"53":[[2,107]],"56":[[2,107]],"57":[[2,107]],"58":[[2,107]],"59":[[2,107]],"60":[[2,107]],"61":[[2,107]],"62":[[2,107]],"63":[[2,107]],"64":[[2,107]],"65":[[2,107]],"66":[[2,107]],"67":[[2,107]],"68":[[2,107]],"69":[[2,107]],"70":[[2,107]],"71":[[2,107]],"72":[[2,107]],"73":[[2,107]],"74":[[2,107]],"75":[[2,107]],"76":[[2,107]],"77":[[2,107]],"78":[[2,107]],"79":[[2,107]],"80":[[2,107]],"81":[[2,107]],"82":[[2,107]],"83":[[2,107]],"84":[[2,107]],"85":[[2,107]],"86":[[2,107]],"87":[[2,107]],"95":[[2,107]],"97":[[2,107]],"105":[[2,107]],"106":[[2,107]],"107":[[2,107]],"110":[[2,107]],"111":[[2,107]],"112":[[2,107]],"113":[[2,107]],"116":[[2,107]],"119":[[2,107]],"123":[[2,107]],"125":[[2,107]],"129":[[2,107]],"137":[[2,107]],"139":[[2,107]],"140":[[2,107]],"141":[[2,107]],"145":[[2,107]],"152":[[2,107]],"156":[[2,107]]},{"1":[[2,108]],"3":[[2,108]],"24":[[2,108]],"25":[[2,108]],"42":[[2,108]],"48":[[2,108]],"49":[[2,108]],"52":[[2,108]],"53":[[2,108]],"56":[[2,108]],"57":[[2,108]],"58":[[2,108]],"59":[[2,108]],"60":[[2,108]],"61":[[2,108]],"62":[[2,108]],"63":[[2,108]],"64":[[2,108]],"65":[[2,108]],"66":[[2,108]],"67":[[2,108]],"68":[[2,108]],"69":[[2,108]],"70":[[2,108]],"71":[[2,108]],"72":[[2,108]],"73":[[2,108]],"74":[[2,108]],"75":[[2,108]],"76":[[2,108]],"77":[[2,108]],"78":[[2,108]],"79":[[2,108]],"80":[[2,108]],"81":[[2,108]],"82":[[2,108]],"83":[[2,108]],"84":[[2,108]],"85":[[2,108]],"86":[[2,108]],"87":[[2,108]],"95":[[2,108]],"97":[[2,108]],"105":[[2,108]],"106":[[2,108]],"107":[[2,108]],"110":[[2,108]],"111":[[2,108]],"112":[[2,108]],"113":[[2,108]],"116":[[2,108]],"119":[[2,108]],"123":[[2,108]],"125":[[2,108]],"129":[[2,108]],"137":[[2,108]],"139":[[2,108]],"140":[[2,108]],"141":[[2,108]],"145":[[2,108]],"152":[[2,108]],"156":[[2,108]]},{"1":[[2,109]],"3":[[2,109]],"24":[[2,109]],"25":[[2,109]],"42":[[2,109]],"48":[[2,109]],"49":[[2,109]],"52":[[2,109]],"53":[[2,109]],"56":[[2,109]],"57":[[2,109]],"58":[[2,109]],"59":[[2,109]],"60":[[2,109]],"61":[[2,109]],"62":[[2,109]],"63":[[2,109]],"64":[[2,109]],"65":[[2,109]],"66":[[2,109]],"67":[[2,109]],"68":[[2,109]],"69":[[2,109]],"70":[[2,109]],"71":[[2,109]],"72":[[2,109]],"73":[[2,109]],"74":[[2,109]],"75":[[2,109]],"76":[[2,109]],"77":[[2,109]],"78":[[2,109]],"79":[[2,109]],"80":[[2,109]],"81":[[2,109]],"82":[[2,109]],"83":[[2,109]],"84":[[2,109]],"85":[[2,109]],"86":[[2,109]],"87":[[2,109]],"95":[[2,109]],"97":[[2,109]],"105":[[2,109]],"106":[[2,109]],"107":[[2,109]],"110":[[2,109]],"111":[[2,109]],"112":[[2,109]],"113":[[2,109]],"116":[[2,109]],"119":[[2,109]],"123":[[2,109]],"125":[[2,109]],"129":[[2,109]],"137":[[2,109]],"139":[[2,109]],"140":[[2,109]],"141":[[2,109]],"145":[[2,109]],"152":[[2,109]],"156":[[2,109]]},{"1":[[2,110]],"3":[[2,110]],"24":[[2,110]],"25":[[2,110]],"42":[[2,110]],"48":[[2,110]],"49":[[2,110]],"52":[[2,110]],"53":[[2,110]],"56":[[2,110]],"57":[[2,110]],"58":[[2,110]],"59":[[2,110]],"60":[[2,110]],"61":[[2,110]],"62":[[2,110]],"63":[[2,110]],"64":[[2,110]],"65":[[2,110]],"66":[[2,110]],"67":[[2,110]],"68":[[2,110]],"69":[[2,110]],"70":[[2,110]],"71":[[2,110]],"72":[[2,110]],"73":[[2,110]],"74":[[2,110]],"75":[[2,110]],"76":[[2,110]],"77":[[2,110]],"78":[[2,110]],"79":[[2,110]],"80":[[2,110]],"81":[[2,110]],"82":[[2,110]],"83":[[2,110]],"84":[[2,110]],"85":[[2,110]],"86":[[2,110]],"87":[[2,110]],"95":[[2,110]],"97":[[2,110]],"105":[[2,110]],"106":[[2,110]],"107":[[2,110]],"110":[[2,110]],"111":[[2,110]],"112":[[2,110]],"113":[[2,110]],"116":[[2,110]],"119":[[2,110]],"123":[[2,110]],"125":[[2,110]],"129":[[2,110]],"137":[[2,110]],"139":[[2,110]],"140":[[2,110]],"141":[[2,110]],"145":[[2,110]],"152":[[2,110]],"156":[[2,110]]},{"1":[[2,111]],"3":[[2,111]],"24":[[2,111]],"25":[[2,111]],"42":[[2,111]],"48":[[2,111]],"49":[[2,111]],"52":[[2,111]],"53":[[2,111]],"56":[[2,111]],"57":[[2,111]],"58":[[2,111]],"59":[[2,111]],"60":[[2,111]],"61":[[2,111]],"62":[[2,111]],"63":[[2,111]],"64":[[2,111]],"65":[[2,111]],"66":[[2,111]],"67":[[2,111]],"68":[[2,111]],"69":[[2,111]],"70":[[2,111]],"71":[[2,111]],"72":[[2,111]],"73":[[2,111]],"74":[[2,111]],"75":[[2,111]],"76":[[2,111]],"77":[[2,111]],"78":[[2,111]],"79":[[2,111]],"80":[[2,111]],"81":[[2,111]],"82":[[2,111]],"83":[[2,111]],"84":[[2,111]],"85":[[2,111]],"86":[[2,111]],"87":[[2,111]],"95":[[2,111]],"97":[[2,111]],"105":[[2,111]],"106":[[2,111]],"107":[[2,111]],"110":[[2,111]],"111":[[2,111]],"112":[[2,111]],"113":[[2,111]],"116":[[2,111]],"119":[[2,111]],"123":[[2,111]],"125":[[2,111]],"129":[[2,111]],"137":[[2,111]],"139":[[2,111]],"140":[[2,111]],"141":[[2,111]],"145":[[2,111]],"152":[[2,111]],"156":[[2,111]]},{"1":[[2,133]],"3":[[2,133]],"24":[[2,133]],"25":[[2,133]],"48":[[2,133]],"49":[[2,133]],"52":[[2,133]],"53":[[2,133]],"56":[[2,133]],"57":[[2,133]],"58":[[2,133]],"59":[[2,133]],"60":[[2,133]],"61":[[2,133]],"62":[[2,133]],"63":[[2,133]],"64":[[2,133]],"65":[[2,133]],"66":[[2,133]],"67":[[2,133]],"68":[[2,133]],"69":[[2,133]],"70":[[2,133]],"71":[[2,133]],"72":[[2,133]],"73":[[2,133]],"74":[[2,133]],"75":[[2,133]],"76":[[2,133]],"77":[[2,133]],"78":[[2,133]],"79":[[2,133]],"80":[[2,133]],"81":[[2,133]],"82":[[2,133]],"83":[[2,133]],"84":[[2,133]],"85":[[2,133]],"86":[[2,133]],"87":[[2,133]],"95":[[2,133]],"97":[[2,133]],"103":136,"105":[[1,128]],"106":[[1,129]],"107":[[1,130]],"108":131,"109":132,"110":[[1,134]],"111":[[2,133]],"112":[[1,135]],"113":[[2,133]],"116":[[2,133]],"122":137,"123":[[1,133]],"125":[[2,133]],"129":[[2,133]],"137":[[2,133]],"139":[[2,133]],"140":[[2,133]],"141":[[2,133]],"145":[[2,133]],"152":[[2,133]],"156":[[2,133]]},{"7":139,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":138,"114":[[1,68]],"127":[[1,70]],"128":[[1,67]],"136":[[1,69]]},{"1":[[2,135]],"3":[[2,135]],"24":[[2,135]],"25":[[2,135]],"48":[[2,135]],"49":[[2,135]],"52":[[2,135]],"53":[[2,135]],"56":[[2,135]],"57":[[2,135]],"58":[[2,135]],"59":[[2,135]],"60":[[2,135]],"61":[[2,135]],"62":[[2,135]],"63":[[2,135]],"64":[[2,135]],"65":[[2,135]],"66":[[2,135]],"67":[[2,135]],"68":[[2,135]],"69":[[2,135]],"70":[[2,135]],"71":[[2,135]],"72":[[2,135]],"73":[[2,135]],"74":[[2,135]],"75":[[2,135]],"76":[[2,135]],"77":[[2,135]],"78":[[2,135]],"79":[[2,135]],"80":[[2,135]],"81":[[2,135]],"82":[[2,135]],"83":[[2,135]],"84":[[2,135]],"85":[[2,135]],"86":[[2,135]],"87":[[2,135]],"95":[[2,135]],"97":[[2,135]],"111":[[2,135]],"113":[[2,135]],"116":[[2,135]],"125":[[2,135]],"129":[[2,135]],"137":[[2,135]],"139":[[2,135]],"140":[[2,135]],"141":[[2,135]],"145":[[2,135]],"152":[[2,135]],"156":[[2,135]]},{"89":140,"90":[[2,99]],"94":141,"95":[[2,99]],"96":[[1,142]]},{"5":143,"24":[[1,6]]},{"6":144,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":145,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":146,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":147,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":148,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":149,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":150,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":151,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":152,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":153,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,189]],"3":[[2,189]],"24":[[2,189]],"25":[[2,189]],"48":[[2,189]],"49":[[2,189]],"52":[[2,189]],"53":[[2,189]],"56":[[2,189]],"57":[[2,189]],"58":[[2,189]],"59":[[2,189]],"60":[[2,189]],"61":[[2,189]],"62":[[2,189]],"63":[[2,189]],"64":[[2,189]],"65":[[2,189]],"66":[[2,189]],"67":[[2,189]],"68":[[2,189]],"69":[[2,189]],"70":[[2,189]],"71":[[2,189]],"72":[[2,189]],"73":[[2,189]],"74":[[2,189]],"75":[[2,189]],"76":[[2,189]],"77":[[2,189]],"78":[[2,189]],"79":[[2,189]],"80":[[2,189]],"81":[[2,189]],"82":[[2,189]],"83":[[2,189]],"84":[[2,189]],"85":[[2,189]],"86":[[2,189]],"87":[[2,189]],"95":[[2,189]],"97":[[2,189]],"111":[[2,189]],"113":[[2,189]],"116":[[2,189]],"125":[[2,189]],"129":[[2,189]],"137":[[2,189]],"139":[[2,189]],"140":[[2,189]],"141":[[2,189]],"145":[[2,189]],"152":[[2,189]],"156":[[2,189]]},{"5":154,"24":[[1,6]]},{"6":155,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,46]],"3":[[2,46]],"6":156,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[2,46]],"25":[[2,46]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"56":[[2,46]],"57":[[2,46]],"58":[[2,46]],"59":[[2,46]],"60":[[2,46]],"61":[[2,46]],"62":[[2,46]],"63":[[2,46]],"64":[[2,46]],"65":[[2,46]],"66":[[2,46]],"67":[[2,46]],"68":[[2,46]],"69":[[2,46]],"70":[[2,46]],"71":[[2,46]],"72":[[2,46]],"73":[[2,46]],"74":[[2,46]],"75":[[2,46]],"76":[[2,46]],"77":[[2,46]],"78":[[2,46]],"79":[[2,46]],"80":[[2,46]],"81":[[2,46]],"82":[[2,46]],"83":[[2,46]],"84":[[2,46]],"85":[[2,46]],"86":[[2,46]],"87":[[2,46]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"95":[[2,46]],"97":[[2,46]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"111":[[2,46]],"113":[[2,46]],"114":[[1,68]],"116":[[2,46]],"118":[[1,53]],"120":[[1,32]],"121":33,"125":[[2,46]],"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"129":[[2,46]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"137":[[2,46]],"138":50,"139":[[2,46]],"140":[[2,46]],"141":[[1,51]],"145":[[2,46]],"146":[[1,52]],"151":74,"152":[[2,46]],"154":46,"156":[[2,46]]},{"5":157,"24":[[1,6]]},{"26":159,"27":[[1,55]],"142":158},{"6":160,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"7":161,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":162,"114":[[1,68]],"127":[[1,70]],"128":[[1,67]],"136":[[1,69]]},{"1":[[2,47]],"3":[[2,47]],"24":[[2,47]],"25":[[2,47]],"48":[[2,47]],"49":[[2,47]],"52":[[2,47]],"53":[[2,47]],"56":[[2,47]],"57":[[2,47]],"58":[[2,47]],"59":[[2,47]],"60":[[2,47]],"61":[[2,47]],"62":[[2,47]],"63":[[2,47]],"64":[[2,47]],"65":[[2,47]],"66":[[2,47]],"67":[[2,47]],"68":[[2,47]],"69":[[2,47]],"70":[[2,47]],"71":[[2,47]],"72":[[2,47]],"73":[[2,47]],"74":[[2,47]],"75":[[2,47]],"76":[[2,47]],"77":[[2,47]],"78":[[2,47]],"79":[[2,47]],"80":[[2,47]],"81":[[2,47]],"82":[[2,47]],"83":[[2,47]],"84":[[2,47]],"85":[[2,47]],"86":[[2,47]],"87":[[2,47]],"95":[[2,47]],"97":[[2,47]],"111":[[2,47]],"113":[[2,47]],"116":[[2,47]],"125":[[2,47]],"129":[[2,47]],"137":[[2,47]],"139":[[2,47]],"140":[[2,47]],"141":[[2,47]],"145":[[2,47]],"152":[[2,47]],"156":[[2,47]]},{"1":[[2,27]],"3":[[2,27]],"24":[[2,27]],"25":[[2,27]],"42":[[2,27]],"48":[[2,27]],"49":[[2,27]],"52":[[2,27]],"53":[[2,27]],"56":[[2,27]],"57":[[2,27]],"58":[[2,27]],"59":[[2,27]],"60":[[2,27]],"61":[[2,27]],"62":[[2,27]],"63":[[2,27]],"64":[[2,27]],"65":[[2,27]],"66":[[2,27]],"67":[[2,27]],"68":[[2,27]],"69":[[2,27]],"70":[[2,27]],"71":[[2,27]],"72":[[2,27]],"73":[[2,27]],"74":[[2,27]],"75":[[2,27]],"76":[[2,27]],"77":[[2,27]],"78":[[2,27]],"79":[[2,27]],"80":[[2,27]],"81":[[2,27]],"82":[[2,27]],"83":[[2,27]],"84":[[2,27]],"85":[[2,27]],"86":[[2,27]],"87":[[2,27]],"95":[[2,27]],"97":[[2,27]],"105":[[2,27]],"106":[[2,27]],"107":[[2,27]],"110":[[2,27]],"111":[[2,27]],"112":[[2,27]],"113":[[2,27]],"116":[[2,27]],"119":[[2,27]],"123":[[2,27]],"125":[[2,27]],"129":[[2,27]],"137":[[2,27]],"139":[[2,27]],"140":[[2,27]],"141":[[2,27]],"144":[[2,27]],"145":[[2,27]],"152":[[2,27]],"156":[[2,27]]},{"1":[[2,30]],"3":[[2,30]],"24":[[2,30]],"25":[[2,30]],"42":[[2,30]],"48":[[2,30]],"49":[[2,30]],"52":[[2,30]],"53":[[2,30]],"56":[[2,30]],"57":[[2,30]],"58":[[2,30]],"59":[[2,30]],"60":[[2,30]],"61":[[2,30]],"62":[[2,30]],"63":[[2,30]],"64":[[2,30]],"65":[[2,30]],"66":[[2,30]],"67":[[2,30]],"68":[[2,30]],"69":[[2,30]],"70":[[2,30]],"71":[[2,30]],"72":[[2,30]],"73":[[2,30]],"74":[[2,30]],"75":[[2,30]],"76":[[2,30]],"77":[[2,30]],"78":[[2,30]],"79":[[2,30]],"80":[[2,30]],"81":[[2,30]],"82":[[2,30]],"83":[[2,30]],"84":[[2,30]],"85":[[2,30]],"86":[[2,30]],"87":[[2,30]],"95":[[2,30]],"97":[[2,30]],"105":[[2,30]],"106":[[2,30]],"107":[[2,30]],"110":[[2,30]],"111":[[2,30]],"112":[[2,30]],"113":[[2,30]],"116":[[2,30]],"119":[[2,30]],"123":[[2,30]],"125":[[2,30]],"129":[[2,30]],"137":[[2,30]],"139":[[2,30]],"140":[[2,30]],"141":[[2,30]],"145":[[2,30]],"152":[[2,30]],"156":[[2,30]]},{"1":[[2,31]],"3":[[2,31]],"24":[[2,31]],"25":[[2,31]],"42":[[2,31]],"48":[[2,31]],"49":[[2,31]],"52":[[2,31]],"53":[[2,31]],"56":[[2,31]],"57":[[2,31]],"58":[[2,31]],"59":[[2,31]],"60":[[2,31]],"61":[[2,31]],"62":[[2,31]],"63":[[2,31]],"64":[[2,31]],"65":[[2,31]],"66":[[2,31]],"67":[[2,31]],"68":[[2,31]],"69":[[2,31]],"70":[[2,31]],"71":[[2,31]],"72":[[2,31]],"73":[[2,31]],"74":[[2,31]],"75":[[2,31]],"76":[[2,31]],"77":[[2,31]],"78":[[2,31]],"79":[[2,31]],"80":[[2,31]],"81":[[2,31]],"82":[[2,31]],"83":[[2,31]],"84":[[2,31]],"85":[[2,31]],"86":[[2,31]],"87":[[2,31]],"95":[[2,31]],"97":[[2,31]],"105":[[2,31]],"106":[[2,31]],"107":[[2,31]],"110":[[2,31]],"111":[[2,31]],"112":[[2,31]],"113":[[2,31]],"116":[[2,31]],"119":[[2,31]],"123":[[2,31]],"125":[[2,31]],"129":[[2,31]],"137":[[2,31]],"139":[[2,31]],"140":[[2,31]],"141":[[2,31]],"145":[[2,31]],"152":[[2,31]],"156":[[2,31]]},{"1":[[2,32]],"3":[[2,32]],"24":[[2,32]],"25":[[2,32]],"42":[[2,32]],"48":[[2,32]],"49":[[2,32]],"52":[[2,32]],"53":[[2,32]],"56":[[2,32]],"57":[[2,32]],"58":[[2,32]],"59":[[2,32]],"60":[[2,32]],"61":[[2,32]],"62":[[2,32]],"63":[[2,32]],"64":[[2,32]],"65":[[2,32]],"66":[[2,32]],"67":[[2,32]],"68":[[2,32]],"69":[[2,32]],"70":[[2,32]],"71":[[2,32]],"72":[[2,32]],"73":[[2,32]],"74":[[2,32]],"75":[[2,32]],"76":[[2,32]],"77":[[2,32]],"78":[[2,32]],"79":[[2,32]],"80":[[2,32]],"81":[[2,32]],"82":[[2,32]],"83":[[2,32]],"84":[[2,32]],"85":[[2,32]],"86":[[2,32]],"87":[[2,32]],"95":[[2,32]],"97":[[2,32]],"105":[[2,32]],"106":[[2,32]],"107":[[2,32]],"110":[[2,32]],"111":[[2,32]],"112":[[2,32]],"113":[[2,32]],"116":[[2,32]],"119":[[2,32]],"123":[[2,32]],"125":[[2,32]],"129":[[2,32]],"137":[[2,32]],"139":[[2,32]],"140":[[2,32]],"141":[[2,32]],"145":[[2,32]],"152":[[2,32]],"156":[[2,32]]},{"1":[[2,33]],"3":[[2,33]],"24":[[2,33]],"25":[[2,33]],"42":[[2,33]],"48":[[2,33]],"49":[[2,33]],"52":[[2,33]],"53":[[2,33]],"56":[[2,33]],"57":[[2,33]],"58":[[2,33]],"59":[[2,33]],"60":[[2,33]],"61":[[2,33]],"62":[[2,33]],"63":[[2,33]],"64":[[2,33]],"65":[[2,33]],"66":[[2,33]],"67":[[2,33]],"68":[[2,33]],"69":[[2,33]],"70":[[2,33]],"71":[[2,33]],"72":[[2,33]],"73":[[2,33]],"74":[[2,33]],"75":[[2,33]],"76":[[2,33]],"77":[[2,33]],"78":[[2,33]],"79":[[2,33]],"80":[[2,33]],"81":[[2,33]],"82":[[2,33]],"83":[[2,33]],"84":[[2,33]],"85":[[2,33]],"86":[[2,33]],"87":[[2,33]],"95":[[2,33]],"97":[[2,33]],"105":[[2,33]],"106":[[2,33]],"107":[[2,33]],"110":[[2,33]],"111":[[2,33]],"112":[[2,33]],"113":[[2,33]],"116":[[2,33]],"119":[[2,33]],"123":[[2,33]],"125":[[2,33]],"129":[[2,33]],"137":[[2,33]],"139":[[2,33]],"140":[[2,33]],"141":[[2,33]],"145":[[2,33]],"152":[[2,33]],"156":[[2,33]]},{"1":[[2,34]],"3":[[2,34]],"24":[[2,34]],"25":[[2,34]],"42":[[2,34]],"48":[[2,34]],"49":[[2,34]],"52":[[2,34]],"53":[[2,34]],"56":[[2,34]],"57":[[2,34]],"58":[[2,34]],"59":[[2,34]],"60":[[2,34]],"61":[[2,34]],"62":[[2,34]],"63":[[2,34]],"64":[[2,34]],"65":[[2,34]],"66":[[2,34]],"67":[[2,34]],"68":[[2,34]],"69":[[2,34]],"70":[[2,34]],"71":[[2,34]],"72":[[2,34]],"73":[[2,34]],"74":[[2,34]],"75":[[2,34]],"76":[[2,34]],"77":[[2,34]],"78":[[2,34]],"79":[[2,34]],"80":[[2,34]],"81":[[2,34]],"82":[[2,34]],"83":[[2,34]],"84":[[2,34]],"85":[[2,34]],"86":[[2,34]],"87":[[2,34]],"95":[[2,34]],"97":[[2,34]],"105":[[2,34]],"106":[[2,34]],"107":[[2,34]],"110":[[2,34]],"111":[[2,34]],"112":[[2,34]],"113":[[2,34]],"116":[[2,34]],"119":[[2,34]],"123":[[2,34]],"125":[[2,34]],"129":[[2,34]],"137":[[2,34]],"139":[[2,34]],"140":[[2,34]],"141":[[2,34]],"145":[[2,34]],"152":[[2,34]],"156":[[2,34]]},{"1":[[2,35]],"3":[[2,35]],"24":[[2,35]],"25":[[2,35]],"42":[[2,35]],"48":[[2,35]],"49":[[2,35]],"52":[[2,35]],"53":[[2,35]],"56":[[2,35]],"57":[[2,35]],"58":[[2,35]],"59":[[2,35]],"60":[[2,35]],"61":[[2,35]],"62":[[2,35]],"63":[[2,35]],"64":[[2,35]],"65":[[2,35]],"66":[[2,35]],"67":[[2,35]],"68":[[2,35]],"69":[[2,35]],"70":[[2,35]],"71":[[2,35]],"72":[[2,35]],"73":[[2,35]],"74":[[2,35]],"75":[[2,35]],"76":[[2,35]],"77":[[2,35]],"78":[[2,35]],"79":[[2,35]],"80":[[2,35]],"81":[[2,35]],"82":[[2,35]],"83":[[2,35]],"84":[[2,35]],"85":[[2,35]],"86":[[2,35]],"87":[[2,35]],"95":[[2,35]],"97":[[2,35]],"105":[[2,35]],"106":[[2,35]],"107":[[2,35]],"110":[[2,35]],"111":[[2,35]],"112":[[2,35]],"113":[[2,35]],"116":[[2,35]],"119":[[2,35]],"123":[[2,35]],"125":[[2,35]],"129":[[2,35]],"137":[[2,35]],"139":[[2,35]],"140":[[2,35]],"141":[[2,35]],"145":[[2,35]],"152":[[2,35]],"156":[[2,35]]},{"1":[[2,36]],"3":[[2,36]],"24":[[2,36]],"25":[[2,36]],"42":[[2,36]],"48":[[2,36]],"49":[[2,36]],"52":[[2,36]],"53":[[2,36]],"56":[[2,36]],"57":[[2,36]],"58":[[2,36]],"59":[[2,36]],"60":[[2,36]],"61":[[2,36]],"62":[[2,36]],"63":[[2,36]],"64":[[2,36]],"65":[[2,36]],"66":[[2,36]],"67":[[2,36]],"68":[[2,36]],"69":[[2,36]],"70":[[2,36]],"71":[[2,36]],"72":[[2,36]],"73":[[2,36]],"74":[[2,36]],"75":[[2,36]],"76":[[2,36]],"77":[[2,36]],"78":[[2,36]],"79":[[2,36]],"80":[[2,36]],"81":[[2,36]],"82":[[2,36]],"83":[[2,36]],"84":[[2,36]],"85":[[2,36]],"86":[[2,36]],"87":[[2,36]],"95":[[2,36]],"97":[[2,36]],"105":[[2,36]],"106":[[2,36]],"107":[[2,36]],"110":[[2,36]],"111":[[2,36]],"112":[[2,36]],"113":[[2,36]],"116":[[2,36]],"119":[[2,36]],"123":[[2,36]],"125":[[2,36]],"129":[[2,36]],"137":[[2,36]],"139":[[2,36]],"140":[[2,36]],"141":[[2,36]],"145":[[2,36]],"152":[[2,36]],"156":[[2,36]]},{"1":[[2,37]],"3":[[2,37]],"24":[[2,37]],"25":[[2,37]],"42":[[2,37]],"48":[[2,37]],"49":[[2,37]],"52":[[2,37]],"53":[[2,37]],"56":[[2,37]],"57":[[2,37]],"58":[[2,37]],"59":[[2,37]],"60":[[2,37]],"61":[[2,37]],"62":[[2,37]],"63":[[2,37]],"64":[[2,37]],"65":[[2,37]],"66":[[2,37]],"67":[[2,37]],"68":[[2,37]],"69":[[2,37]],"70":[[2,37]],"71":[[2,37]],"72":[[2,37]],"73":[[2,37]],"74":[[2,37]],"75":[[2,37]],"76":[[2,37]],"77":[[2,37]],"78":[[2,37]],"79":[[2,37]],"80":[[2,37]],"81":[[2,37]],"82":[[2,37]],"83":[[2,37]],"84":[[2,37]],"85":[[2,37]],"86":[[2,37]],"87":[[2,37]],"95":[[2,37]],"97":[[2,37]],"105":[[2,37]],"106":[[2,37]],"107":[[2,37]],"110":[[2,37]],"111":[[2,37]],"112":[[2,37]],"113":[[2,37]],"116":[[2,37]],"119":[[2,37]],"123":[[2,37]],"125":[[2,37]],"129":[[2,37]],"137":[[2,37]],"139":[[2,37]],"140":[[2,37]],"141":[[2,37]],"145":[[2,37]],"152":[[2,37]],"156":[[2,37]]},{"1":[[2,38]],"3":[[2,38]],"24":[[2,38]],"25":[[2,38]],"42":[[2,38]],"48":[[2,38]],"49":[[2,38]],"52":[[2,38]],"53":[[2,38]],"56":[[2,38]],"57":[[2,38]],"58":[[2,38]],"59":[[2,38]],"60":[[2,38]],"61":[[2,38]],"62":[[2,38]],"63":[[2,38]],"64":[[2,38]],"65":[[2,38]],"66":[[2,38]],"67":[[2,38]],"68":[[2,38]],"69":[[2,38]],"70":[[2,38]],"71":[[2,38]],"72":[[2,38]],"73":[[2,38]],"74":[[2,38]],"75":[[2,38]],"76":[[2,38]],"77":[[2,38]],"78":[[2,38]],"79":[[2,38]],"80":[[2,38]],"81":[[2,38]],"82":[[2,38]],"83":[[2,38]],"84":[[2,38]],"85":[[2,38]],"86":[[2,38]],"87":[[2,38]],"95":[[2,38]],"97":[[2,38]],"105":[[2,38]],"106":[[2,38]],"107":[[2,38]],"110":[[2,38]],"111":[[2,38]],"112":[[2,38]],"113":[[2,38]],"116":[[2,38]],"119":[[2,38]],"123":[[2,38]],"125":[[2,38]],"129":[[2,38]],"137":[[2,38]],"139":[[2,38]],"140":[[2,38]],"141":[[2,38]],"145":[[2,38]],"152":[[2,38]],"156":[[2,38]]},{"1":[[2,39]],"3":[[2,39]],"24":[[2,39]],"25":[[2,39]],"42":[[2,39]],"48":[[2,39]],"49":[[2,39]],"52":[[2,39]],"53":[[2,39]],"56":[[2,39]],"57":[[2,39]],"58":[[2,39]],"59":[[2,39]],"60":[[2,39]],"61":[[2,39]],"62":[[2,39]],"63":[[2,39]],"64":[[2,39]],"65":[[2,39]],"66":[[2,39]],"67":[[2,39]],"68":[[2,39]],"69":[[2,39]],"70":[[2,39]],"71":[[2,39]],"72":[[2,39]],"73":[[2,39]],"74":[[2,39]],"75":[[2,39]],"76":[[2,39]],"77":[[2,39]],"78":[[2,39]],"79":[[2,39]],"80":[[2,39]],"81":[[2,39]],"82":[[2,39]],"83":[[2,39]],"84":[[2,39]],"85":[[2,39]],"86":[[2,39]],"87":[[2,39]],"95":[[2,39]],"97":[[2,39]],"105":[[2,39]],"106":[[2,39]],"107":[[2,39]],"110":[[2,39]],"111":[[2,39]],"112":[[2,39]],"113":[[2,39]],"116":[[2,39]],"119":[[2,39]],"123":[[2,39]],"125":[[2,39]],"129":[[2,39]],"137":[[2,39]],"139":[[2,39]],"140":[[2,39]],"141":[[2,39]],"145":[[2,39]],"152":[[2,39]],"156":[[2,39]]},{"1":[[2,40]],"3":[[2,40]],"24":[[2,40]],"25":[[2,40]],"42":[[2,40]],"48":[[2,40]],"49":[[2,40]],"52":[[2,40]],"53":[[2,40]],"56":[[2,40]],"57":[[2,40]],"58":[[2,40]],"59":[[2,40]],"60":[[2,40]],"61":[[2,40]],"62":[[2,40]],"63":[[2,40]],"64":[[2,40]],"65":[[2,40]],"66":[[2,40]],"67":[[2,40]],"68":[[2,40]],"69":[[2,40]],"70":[[2,40]],"71":[[2,40]],"72":[[2,40]],"73":[[2,40]],"74":[[2,40]],"75":[[2,40]],"76":[[2,40]],"77":[[2,40]],"78":[[2,40]],"79":[[2,40]],"80":[[2,40]],"81":[[2,40]],"82":[[2,40]],"83":[[2,40]],"84":[[2,40]],"85":[[2,40]],"86":[[2,40]],"87":[[2,40]],"95":[[2,40]],"97":[[2,40]],"105":[[2,40]],"106":[[2,40]],"107":[[2,40]],"110":[[2,40]],"111":[[2,40]],"112":[[2,40]],"113":[[2,40]],"116":[[2,40]],"119":[[2,40]],"123":[[2,40]],"125":[[2,40]],"129":[[2,40]],"137":[[2,40]],"139":[[2,40]],"140":[[2,40]],"141":[[2,40]],"145":[[2,40]],"152":[[2,40]],"156":[[2,40]]},{"3":[[2,148]],"6":164,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[1,165]],"25":[[2,148]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"95":[[2,148]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"124":163,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"129":[[2,148]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"3":[[2,127]],"23":172,"24":[[1,169]],"26":170,"27":[[1,55]],"28":171,"29":[[1,76]],"30":[[1,77]],"43":168,"45":[[1,54]],"95":[[2,127]],"115":166,"116":[[2,127]],"117":167},{"6":173,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,141]],"3":[[2,141]],"24":[[2,141]],"25":[[2,141]],"26":174,"27":[[1,55]],"42":[[2,141]],"48":[[2,141]],"49":[[2,141]],"52":[[2,141]],"53":[[2,141]],"56":[[2,141]],"57":[[2,141]],"58":[[2,141]],"59":[[2,141]],"60":[[2,141]],"61":[[2,141]],"62":[[2,141]],"63":[[2,141]],"64":[[2,141]],"65":[[2,141]],"66":[[2,141]],"67":[[2,141]],"68":[[2,141]],"69":[[2,141]],"70":[[2,141]],"71":[[2,141]],"72":[[2,141]],"73":[[2,141]],"74":[[2,141]],"75":[[2,141]],"76":[[2,141]],"77":[[2,141]],"78":[[2,141]],"79":[[2,141]],"80":[[2,141]],"81":[[2,141]],"82":[[2,141]],"83":[[2,141]],"84":[[2,141]],"85":[[2,141]],"86":[[2,141]],"87":[[2,141]],"95":[[2,141]],"97":[[2,141]],"105":[[2,141]],"106":[[2,141]],"107":[[2,141]],"110":[[2,141]],"111":[[2,141]],"112":[[2,141]],"113":[[2,141]],"116":[[2,141]],"119":[[2,141]],"123":[[2,141]],"125":[[2,141]],"129":[[2,141]],"137":[[2,141]],"139":[[2,141]],"140":[[2,141]],"141":[[2,141]],"145":[[2,141]],"152":[[2,141]],"156":[[2,141]]},{"123":[[1,175]]},{"24":[[2,97]]},{"24":[[2,98]]},{"1":[[2,185]],"3":[[2,185]],"24":[[2,185]],"25":[[2,185]],"48":[[2,185]],"49":[[2,185]],"52":[[2,185]],"53":[[2,185]],"56":[[2,185]],"57":[[2,185]],"58":[[2,185]],"59":[[2,185]],"60":[[2,185]],"61":[[2,185]],"62":[[2,185]],"63":[[2,185]],"64":[[2,185]],"65":[[2,185]],"66":[[2,185]],"67":[[2,185]],"68":[[2,185]],"69":[[2,185]],"70":[[2,185]],"71":[[2,185]],"72":[[2,185]],"73":[[2,185]],"74":[[2,185]],"75":[[2,185]],"76":[[2,185]],"77":[[2,185]],"78":[[2,185]],"79":[[2,185]],"80":[[2,185]],"81":[[2,185]],"82":[[2,185]],"83":[[2,185]],"84":[[2,185]],"85":[[2,185]],"86":[[2,185]],"87":[[2,185]],"95":[[2,185]],"97":[[2,185]],"111":[[2,185]],"113":[[2,185]],"116":[[2,185]],"125":[[2,185]],"129":[[2,185]],"137":[[2,185]],"139":[[2,185]],"140":[[2,185]],"141":[[2,185]],"145":[[2,185]],"148":[[1,176]],"152":[[2,185]],"153":177,"156":[[2,185]]},{"6":178,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,28]],"3":[[2,28]],"24":[[2,28]],"25":[[2,28]],"42":[[2,28]],"48":[[2,28]],"49":[[2,28]],"52":[[2,28]],"53":[[2,28]],"56":[[2,28]],"57":[[2,28]],"58":[[2,28]],"59":[[2,28]],"60":[[2,28]],"61":[[2,28]],"62":[[2,28]],"63":[[2,28]],"64":[[2,28]],"65":[[2,28]],"66":[[2,28]],"67":[[2,28]],"68":[[2,28]],"69":[[2,28]],"70":[[2,28]],"71":[[2,28]],"72":[[2,28]],"73":[[2,28]],"74":[[2,28]],"75":[[2,28]],"76":[[2,28]],"77":[[2,28]],"78":[[2,28]],"79":[[2,28]],"80":[[2,28]],"81":[[2,28]],"82":[[2,28]],"83":[[2,28]],"84":[[2,28]],"85":[[2,28]],"86":[[2,28]],"87":[[2,28]],"95":[[2,28]],"97":[[2,28]],"105":[[2,28]],"106":[[2,28]],"107":[[2,28]],"110":[[2,28]],"111":[[2,28]],"112":[[2,28]],"113":[[2,28]],"116":[[2,28]],"119":[[2,28]],"123":[[2,28]],"125":[[2,28]],"129":[[2,28]],"137":[[2,28]],"139":[[2,28]],"140":[[2,28]],"141":[[2,28]],"145":[[2,28]],"152":[[2,28]],"156":[[2,28]]},{"1":[[2,29]],"3":[[2,29]],"24":[[2,29]],"25":[[2,29]],"42":[[2,29]],"48":[[2,29]],"49":[[2,29]],"52":[[2,29]],"53":[[2,29]],"56":[[2,29]],"57":[[2,29]],"58":[[2,29]],"59":[[2,29]],"60":[[2,29]],"61":[[2,29]],"62":[[2,29]],"63":[[2,29]],"64":[[2,29]],"65":[[2,29]],"66":[[2,29]],"67":[[2,29]],"68":[[2,29]],"69":[[2,29]],"70":[[2,29]],"71":[[2,29]],"72":[[2,29]],"73":[[2,29]],"74":[[2,29]],"75":[[2,29]],"76":[[2,29]],"77":[[2,29]],"78":[[2,29]],"79":[[2,29]],"80":[[2,29]],"81":[[2,29]],"82":[[2,29]],"83":[[2,29]],"84":[[2,29]],"85":[[2,29]],"86":[[2,29]],"87":[[2,29]],"95":[[2,29]],"97":[[2,29]],"105":[[2,29]],"106":[[2,29]],"107":[[2,29]],"110":[[2,29]],"111":[[2,29]],"112":[[2,29]],"113":[[2,29]],"116":[[2,29]],"119":[[2,29]],"123":[[2,29]],"125":[[2,29]],"129":[[2,29]],"137":[[2,29]],"139":[[2,29]],"140":[[2,29]],"141":[[2,29]],"145":[[2,29]],"152":[[2,29]],"156":[[2,29]]},{"6":179,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,7]],"3":[[2,7]],"6":180,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"25":[[2,7]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,4]]},{"1":[[2,58]],"3":[[2,58]],"24":[[2,58]],"25":[[2,58]],"48":[[2,58]],"49":[[2,58]],"52":[[2,58]],"53":[[2,58]],"56":[[2,58]],"57":[[2,58]],"58":[[2,58]],"59":[[2,58]],"60":[[2,58]],"61":[[2,58]],"62":[[2,58]],"63":[[2,58]],"64":[[2,58]],"65":[[2,58]],"66":[[2,58]],"67":[[2,58]],"68":[[2,58]],"69":[[2,58]],"70":[[2,58]],"71":[[2,58]],"72":[[2,58]],"73":[[2,58]],"74":[[2,58]],"75":[[2,58]],"76":[[2,58]],"77":[[2,58]],"78":[[2,58]],"79":[[2,58]],"80":[[2,58]],"81":[[2,58]],"82":[[2,58]],"83":[[2,58]],"84":[[2,58]],"85":[[2,58]],"86":[[2,58]],"87":[[2,58]],"95":[[2,58]],"97":[[2,58]],"111":[[2,58]],"113":[[2,58]],"116":[[2,58]],"125":[[2,58]],"129":[[2,58]],"137":[[2,58]],"139":[[2,58]],"140":[[2,58]],"141":[[2,58]],"145":[[2,58]],"152":[[2,58]],"156":[[2,58]]},{"1":[[2,59]],"3":[[2,59]],"24":[[2,59]],"25":[[2,59]],"48":[[2,59]],"49":[[2,59]],"52":[[2,59]],"53":[[2,59]],"56":[[2,59]],"57":[[2,59]],"58":[[2,59]],"59":[[2,59]],"60":[[2,59]],"61":[[2,59]],"62":[[2,59]],"63":[[2,59]],"64":[[2,59]],"65":[[2,59]],"66":[[2,59]],"67":[[2,59]],"68":[[2,59]],"69":[[2,59]],"70":[[2,59]],"71":[[2,59]],"72":[[2,59]],"73":[[2,59]],"74":[[2,59]],"75":[[2,59]],"76":[[2,59]],"77":[[2,59]],"78":[[2,59]],"79":[[2,59]],"80":[[2,59]],"81":[[2,59]],"82":[[2,59]],"83":[[2,59]],"84":[[2,59]],"85":[[2,59]],"86":[[2,59]],"87":[[2,59]],"95":[[2,59]],"97":[[2,59]],"111":[[2,59]],"113":[[2,59]],"116":[[2,59]],"125":[[2,59]],"129":[[2,59]],"137":[[2,59]],"139":[[2,59]],"140":[[2,59]],"141":[[2,59]],"145":[[2,59]],"152":[[2,59]],"156":[[2,59]]},{"6":181,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":182,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":183,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":184,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":185,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":186,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":187,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":188,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":189,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":190,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":191,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":192,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":193,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":194,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":195,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":196,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":197,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":198,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":199,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":200,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":201,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":202,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":203,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,94]],"3":[[2,94]],"6":204,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[2,94]],"25":[[2,94]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[2,94]],"49":[[2,94]],"50":[[1,40]],"51":[[1,41]],"52":[[2,94]],"53":[[2,94]],"54":[[1,44]],"55":[[1,45]],"56":[[2,94]],"57":[[2,94]],"58":[[2,94]],"59":[[2,94]],"60":[[2,94]],"61":[[2,94]],"62":[[2,94]],"63":[[2,94]],"64":[[2,94]],"65":[[2,94]],"66":[[2,94]],"67":[[2,94]],"68":[[2,94]],"69":[[2,94]],"70":[[2,94]],"71":[[2,94]],"72":[[2,94]],"73":[[2,94]],"74":[[2,94]],"75":[[2,94]],"76":[[2,94]],"77":[[2,94]],"78":[[2,94]],"79":[[2,94]],"80":[[2,94]],"81":[[2,94]],"82":[[2,94]],"83":[[2,94]],"84":[[2,94]],"85":[[2,94]],"86":[[2,94]],"87":[[2,94]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"95":[[2,94]],"97":[[2,94]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"111":[[2,94]],"113":[[2,94]],"114":[[1,68]],"116":[[2,94]],"118":[[1,53]],"120":[[1,32]],"121":33,"125":[[2,94]],"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"129":[[2,94]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"137":[[2,94]],"138":50,"139":[[2,94]],"140":[[2,94]],"141":[[2,94]],"145":[[2,94]],"146":[[1,52]],"151":74,"152":[[2,94]],"154":46,"156":[[2,94]]},{"6":205,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":206,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":207,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":208,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":209,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":210,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":211,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":212,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":213,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":214,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":215,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":216,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,167]],"3":[[2,167]],"24":[[2,167]],"25":[[2,167]],"48":[[2,167]],"49":[[2,167]],"52":[[2,167]],"53":[[2,167]],"56":[[2,167]],"57":[[2,167]],"58":[[2,167]],"59":[[2,167]],"60":[[2,167]],"61":[[2,167]],"62":[[2,167]],"63":[[2,167]],"64":[[2,167]],"65":[[2,167]],"66":[[2,167]],"67":[[2,167]],"68":[[2,167]],"69":[[2,167]],"70":[[2,167]],"71":[[2,167]],"72":[[2,167]],"73":[[2,167]],"74":[[2,167]],"75":[[2,167]],"76":[[2,167]],"77":[[2,167]],"78":[[2,167]],"79":[[2,167]],"80":[[2,167]],"81":[[2,167]],"82":[[2,167]],"83":[[2,167]],"84":[[2,167]],"85":[[2,167]],"86":[[2,167]],"87":[[2,167]],"95":[[2,167]],"97":[[2,167]],"111":[[2,167]],"113":[[2,167]],"116":[[2,167]],"125":[[2,167]],"129":[[2,167]],"137":[[2,167]],"139":[[2,167]],"140":[[2,167]],"141":[[2,167]],"145":[[2,167]],"152":[[2,167]],"156":[[2,167]]},{"26":159,"27":[[1,55]],"142":217},{"97":[[1,218]]},{"3":[[1,79]],"25":[[1,219]]},{"1":[[2,26]],"3":[[2,26]],"24":[[2,26]],"25":[[2,26]],"45":[[2,26]],"48":[[2,26]],"49":[[2,26]],"52":[[2,26]],"53":[[2,26]],"56":[[2,26]],"57":[[2,26]],"58":[[2,26]],"59":[[2,26]],"60":[[2,26]],"61":[[2,26]],"62":[[2,26]],"63":[[2,26]],"64":[[2,26]],"65":[[2,26]],"66":[[2,26]],"67":[[2,26]],"68":[[2,26]],"69":[[2,26]],"70":[[2,26]],"71":[[2,26]],"72":[[2,26]],"73":[[2,26]],"74":[[2,26]],"75":[[2,26]],"76":[[2,26]],"77":[[2,26]],"78":[[2,26]],"79":[[2,26]],"80":[[2,26]],"81":[[2,26]],"82":[[2,26]],"83":[[2,26]],"84":[[2,26]],"85":[[2,26]],"86":[[2,26]],"87":[[2,26]],"95":[[2,26]],"97":[[2,26]],"111":[[2,26]],"113":[[2,26]],"116":[[2,26]],"125":[[2,26]],"129":[[2,26]],"133":[[2,26]],"134":[[2,26]],"137":[[2,26]],"139":[[2,26]],"140":[[2,26]],"141":[[2,26]],"145":[[2,26]],"148":[[2,26]],"150":[[2,26]],"152":[[2,26]],"155":[[2,26]],"156":[[2,26]]},{"1":[[2,112]],"3":[[2,112]],"24":[[2,112]],"25":[[2,112]],"42":[[2,112]],"48":[[2,112]],"49":[[2,112]],"52":[[2,112]],"53":[[2,112]],"56":[[2,112]],"57":[[2,112]],"58":[[2,112]],"59":[[2,112]],"60":[[2,112]],"61":[[2,112]],"62":[[2,112]],"63":[[2,112]],"64":[[2,112]],"65":[[2,112]],"66":[[2,112]],"67":[[2,112]],"68":[[2,112]],"69":[[2,112]],"70":[[2,112]],"71":[[2,112]],"72":[[2,112]],"73":[[2,112]],"74":[[2,112]],"75":[[2,112]],"76":[[2,112]],"77":[[2,112]],"78":[[2,112]],"79":[[2,112]],"80":[[2,112]],"81":[[2,112]],"82":[[2,112]],"83":[[2,112]],"84":[[2,112]],"85":[[2,112]],"86":[[2,112]],"87":[[2,112]],"95":[[2,112]],"97":[[2,112]],"105":[[2,112]],"106":[[2,112]],"107":[[2,112]],"110":[[2,112]],"111":[[2,112]],"112":[[2,112]],"113":[[2,112]],"116":[[2,112]],"119":[[2,112]],"123":[[2,112]],"125":[[2,112]],"129":[[2,112]],"137":[[2,112]],"139":[[2,112]],"140":[[2,112]],"141":[[2,112]],"145":[[2,112]],"152":[[2,112]],"156":[[2,112]]},{"6":220,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"7":221,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":162,"114":[[1,68]],"127":[[1,70]],"128":[[1,67]],"136":[[1,69]]},{"1":[[2,137]],"3":[[2,137]],"24":[[2,137]],"25":[[2,137]],"48":[[2,137]],"49":[[2,137]],"52":[[2,137]],"53":[[2,137]],"56":[[2,137]],"57":[[2,137]],"58":[[2,137]],"59":[[2,137]],"60":[[2,137]],"61":[[2,137]],"62":[[2,137]],"63":[[2,137]],"64":[[2,137]],"65":[[2,137]],"66":[[2,137]],"67":[[2,137]],"68":[[2,137]],"69":[[2,137]],"70":[[2,137]],"71":[[2,137]],"72":[[2,137]],"73":[[2,137]],"74":[[2,137]],"75":[[2,137]],"76":[[2,137]],"77":[[2,137]],"78":[[2,137]],"79":[[2,137]],"80":[[2,137]],"81":[[2,137]],"82":[[2,137]],"83":[[2,137]],"84":[[2,137]],"85":[[2,137]],"86":[[2,137]],"87":[[2,137]],"95":[[2,137]],"97":[[2,137]],"105":[[2,137]],"106":[[2,137]],"107":[[2,137]],"110":[[2,137]],"111":[[2,137]],"112":[[2,137]],"113":[[2,137]],"116":[[2,137]],"123":[[2,137]],"125":[[2,137]],"129":[[2,137]],"137":[[2,137]],"139":[[2,137]],"140":[[2,137]],"141":[[2,137]],"145":[[2,137]],"152":[[2,137]],"156":[[2,137]]},{"26":222,"27":[[1,55]]},{"26":223,"27":[[1,55]]},{"26":224,"27":[[1,55]]},{"1":[[2,117]],"3":[[2,117]],"24":[[2,117]],"25":[[2,117]],"42":[[2,117]],"48":[[2,117]],"49":[[2,117]],"52":[[2,117]],"53":[[2,117]],"56":[[2,117]],"57":[[2,117]],"58":[[2,117]],"59":[[2,117]],"60":[[2,117]],"61":[[2,117]],"62":[[2,117]],"63":[[2,117]],"64":[[2,117]],"65":[[2,117]],"66":[[2,117]],"67":[[2,117]],"68":[[2,117]],"69":[[2,117]],"70":[[2,117]],"71":[[2,117]],"72":[[2,117]],"73":[[2,117]],"74":[[2,117]],"75":[[2,117]],"76":[[2,117]],"77":[[2,117]],"78":[[2,117]],"79":[[2,117]],"80":[[2,117]],"81":[[2,117]],"82":[[2,117]],"83":[[2,117]],"84":[[2,117]],"85":[[2,117]],"86":[[2,117]],"87":[[2,117]],"95":[[2,117]],"97":[[2,117]],"105":[[2,117]],"106":[[2,117]],"107":[[2,117]],"110":[[2,117]],"111":[[2,117]],"112":[[2,117]],"113":[[2,117]],"116":[[2,117]],"119":[[2,117]],"123":[[2,117]],"125":[[2,117]],"129":[[2,117]],"137":[[2,117]],"139":[[2,117]],"140":[[2,117]],"141":[[2,117]],"145":[[2,117]],"152":[[2,117]],"156":[[2,117]]},{"1":[[2,118]],"3":[[2,118]],"24":[[2,118]],"25":[[2,118]],"42":[[2,118]],"48":[[2,118]],"49":[[2,118]],"52":[[2,118]],"53":[[2,118]],"56":[[2,118]],"57":[[2,118]],"58":[[2,118]],"59":[[2,118]],"60":[[2,118]],"61":[[2,118]],"62":[[2,118]],"63":[[2,118]],"64":[[2,118]],"65":[[2,118]],"66":[[2,118]],"67":[[2,118]],"68":[[2,118]],"69":[[2,118]],"70":[[2,118]],"71":[[2,118]],"72":[[2,118]],"73":[[2,118]],"74":[[2,118]],"75":[[2,118]],"76":[[2,118]],"77":[[2,118]],"78":[[2,118]],"79":[[2,118]],"80":[[2,118]],"81":[[2,118]],"82":[[2,118]],"83":[[2,118]],"84":[[2,118]],"85":[[2,118]],"86":[[2,118]],"87":[[2,118]],"95":[[2,118]],"97":[[2,118]],"105":[[2,118]],"106":[[2,118]],"107":[[2,118]],"110":[[2,118]],"111":[[2,118]],"112":[[2,118]],"113":[[2,118]],"116":[[2,118]],"119":[[2,118]],"123":[[2,118]],"125":[[2,118]],"129":[[2,118]],"137":[[2,118]],"139":[[2,118]],"140":[[2,118]],"141":[[2,118]],"145":[[2,118]],"152":[[2,118]],"156":[[2,118]]},{"3":[[2,148]],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[1,165]],"25":[[2,148]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"95":[[2,148]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"124":225,"125":[[2,148]],"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":227,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":228,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,113]],"3":[[2,113]],"24":[[2,113]],"25":[[2,113]],"42":[[2,113]],"48":[[2,113]],"49":[[2,113]],"52":[[2,113]],"53":[[2,113]],"56":[[2,113]],"57":[[2,113]],"58":[[2,113]],"59":[[2,113]],"60":[[2,113]],"61":[[2,113]],"62":[[2,113]],"63":[[2,113]],"64":[[2,113]],"65":[[2,113]],"66":[[2,113]],"67":[[2,113]],"68":[[2,113]],"69":[[2,113]],"70":[[2,113]],"71":[[2,113]],"72":[[2,113]],"73":[[2,113]],"74":[[2,113]],"75":[[2,113]],"76":[[2,113]],"77":[[2,113]],"78":[[2,113]],"79":[[2,113]],"80":[[2,113]],"81":[[2,113]],"82":[[2,113]],"83":[[2,113]],"84":[[2,113]],"85":[[2,113]],"86":[[2,113]],"87":[[2,113]],"95":[[2,113]],"97":[[2,113]],"105":[[2,113]],"106":[[2,113]],"107":[[2,113]],"110":[[2,113]],"111":[[2,113]],"112":[[2,113]],"113":[[2,113]],"116":[[2,113]],"119":[[2,113]],"123":[[2,113]],"125":[[2,113]],"129":[[2,113]],"137":[[2,113]],"139":[[2,113]],"140":[[2,113]],"141":[[2,113]],"145":[[2,113]],"152":[[2,113]],"156":[[2,113]]},{"1":[[2,138]],"3":[[2,138]],"24":[[2,138]],"25":[[2,138]],"48":[[2,138]],"49":[[2,138]],"52":[[2,138]],"53":[[2,138]],"56":[[2,138]],"57":[[2,138]],"58":[[2,138]],"59":[[2,138]],"60":[[2,138]],"61":[[2,138]],"62":[[2,138]],"63":[[2,138]],"64":[[2,138]],"65":[[2,138]],"66":[[2,138]],"67":[[2,138]],"68":[[2,138]],"69":[[2,138]],"70":[[2,138]],"71":[[2,138]],"72":[[2,138]],"73":[[2,138]],"74":[[2,138]],"75":[[2,138]],"76":[[2,138]],"77":[[2,138]],"78":[[2,138]],"79":[[2,138]],"80":[[2,138]],"81":[[2,138]],"82":[[2,138]],"83":[[2,138]],"84":[[2,138]],"85":[[2,138]],"86":[[2,138]],"87":[[2,138]],"95":[[2,138]],"97":[[2,138]],"105":[[2,138]],"106":[[2,138]],"107":[[2,138]],"110":[[2,138]],"111":[[2,138]],"112":[[2,138]],"113":[[2,138]],"116":[[2,138]],"123":[[2,138]],"125":[[2,138]],"129":[[2,138]],"137":[[2,138]],"139":[[2,138]],"140":[[2,138]],"141":[[2,138]],"145":[[2,138]],"152":[[2,138]],"156":[[2,138]]},{"1":[[2,134]],"3":[[2,134]],"24":[[2,134]],"25":[[2,134]],"48":[[2,134]],"49":[[2,134]],"52":[[2,134]],"53":[[2,134]],"56":[[2,134]],"57":[[2,134]],"58":[[2,134]],"59":[[2,134]],"60":[[2,134]],"61":[[2,134]],"62":[[2,134]],"63":[[2,134]],"64":[[2,134]],"65":[[2,134]],"66":[[2,134]],"67":[[2,134]],"68":[[2,134]],"69":[[2,134]],"70":[[2,134]],"71":[[2,134]],"72":[[2,134]],"73":[[2,134]],"74":[[2,134]],"75":[[2,134]],"76":[[2,134]],"77":[[2,134]],"78":[[2,134]],"79":[[2,134]],"80":[[2,134]],"81":[[2,134]],"82":[[2,134]],"83":[[2,134]],"84":[[2,134]],"85":[[2,134]],"86":[[2,134]],"87":[[2,134]],"95":[[2,134]],"97":[[2,134]],"103":136,"105":[[1,128]],"106":[[1,129]],"107":[[1,130]],"108":131,"109":132,"110":[[1,134]],"111":[[2,134]],"112":[[1,135]],"113":[[2,134]],"116":[[2,134]],"122":137,"123":[[1,133]],"125":[[2,134]],"129":[[2,134]],"137":[[2,134]],"139":[[2,134]],"140":[[2,134]],"141":[[2,134]],"145":[[2,134]],"152":[[2,134]],"156":[[2,134]]},{"103":124,"105":[[1,128]],"106":[[1,129]],"107":[[1,130]],"108":131,"109":132,"110":[[1,134]],"112":[[1,135]],"122":127,"123":[[1,133]]},{"90":[[1,229]],"95":[[1,230]]},{"90":[[2,100]],"95":[[2,100]],"97":[[1,231]]},{"90":[[2,102]],"95":[[2,102]],"97":[[2,102]]},{"1":[[2,96]],"3":[[2,96]],"24":[[2,96]],"25":[[2,96]],"48":[[2,96]],"49":[[2,96]],"52":[[2,96]],"53":[[2,96]],"56":[[2,96]],"57":[[2,96]],"58":[[2,96]],"59":[[2,96]],"60":[[2,96]],"61":[[2,96]],"62":[[2,96]],"63":[[2,96]],"64":[[2,96]],"65":[[2,96]],"66":[[2,96]],"67":[[2,96]],"68":[[2,96]],"69":[[2,96]],"70":[[2,96]],"71":[[2,96]],"72":[[2,96]],"73":[[2,96]],"74":[[2,96]],"75":[[2,96]],"76":[[2,96]],"77":[[2,96]],"78":[[2,96]],"79":[[2,96]],"80":[[2,96]],"81":[[2,96]],"82":[[2,96]],"83":[[2,96]],"84":[[2,96]],"85":[[2,96]],"86":[[2,96]],"87":[[2,96]],"95":[[2,96]],"97":[[2,96]],"111":[[2,96]],"113":[[2,96]],"116":[[2,96]],"125":[[2,96]],"129":[[2,96]],"137":[[2,96]],"139":[[2,96]],"140":[[2,96]],"141":[[2,96]],"145":[[2,96]],"152":[[2,96]],"156":[[2,96]]},{"1":[[2,48]],"3":[[2,48]],"24":[[2,48]],"25":[[2,48]],"48":[[2,48]],"49":[[2,48]],"52":[null],"53":[null],"56":[[2,48]],"57":[[2,48]],"58":[[2,48]],"59":[[2,48]],"60":[[2,48]],"61":[[2,48]],"62":[[2,48]],"63":[[2,48]],"64":[[2,48]],"65":[[2,48]],"66":[[2,48]],"67":[[2,48]],"68":[[2,48]],"69":[[2,48]],"70":[[2,48]],"71":[[2,48]],"72":[[2,48]],"73":[[2,48]],"74":[[2,48]],"75":[[2,48]],"76":[[2,48]],"77":[[1,106]],"78":[[2,48]],"79":[[2,48]],"80":[[2,48]],"81":[[2,48]],"82":[[2,48]],"83":[[2,48]],"84":[[2,48]],"85":[[2,48]],"86":[[2,48]],"87":[[2,48]],"95":[[2,48]],"97":[[2,48]],"111":[[2,48]],"113":[[2,48]],"116":[[2,48]],"125":[[2,48]],"129":[[2,48]],"137":[[2,48]],"138":119,"139":[[2,48]],"140":[[2,48]],"141":[[2,48]],"145":[[2,48]],"152":[[2,48]],"156":[[2,48]]},{"1":[[2,49]],"3":[[2,49]],"24":[[2,49]],"25":[[2,49]],"48":[[2,49]],"49":[[2,49]],"52":[null],"53":[null],"56":[[2,49]],"57":[[2,49]],"58":[[2,49]],"59":[[2,49]],"60":[[2,49]],"61":[[2,49]],"62":[[2,49]],"63":[[2,49]],"64":[[2,49]],"65":[[2,49]],"66":[[2,49]],"67":[[2,49]],"68":[[2,49]],"69":[[2,49]],"70":[[2,49]],"71":[[2,49]],"72":[[2,49]],"73":[[2,49]],"74":[[2,49]],"75":[[2,49]],"76":[[2,49]],"77":[[1,106]],"78":[[2,49]],"79":[[2,49]],"80":[[2,49]],"81":[[2,49]],"82":[[2,49]],"83":[[2,49]],"84":[[2,49]],"85":[[2,49]],"86":[[2,49]],"87":[[2,49]],"95":[[2,49]],"97":[[2,49]],"111":[[2,49]],"113":[[2,49]],"116":[[2,49]],"125":[[2,49]],"129":[[2,49]],"137":[[2,49]],"138":119,"139":[[2,49]],"140":[[2,49]],"141":[[2,49]],"145":[[2,49]],"152":[[2,49]],"156":[[2,49]]},{"1":[[2,50]],"3":[[2,50]],"24":[[2,50]],"25":[[2,50]],"48":[[2,50]],"49":[[2,50]],"52":[null],"53":[null],"56":[[2,50]],"57":[[2,50]],"58":[[2,50]],"59":[[2,50]],"60":[[2,50]],"61":[[2,50]],"62":[[2,50]],"63":[[2,50]],"64":[[2,50]],"65":[[2,50]],"66":[[2,50]],"67":[[2,50]],"68":[[2,50]],"69":[[2,50]],"70":[[2,50]],"71":[[2,50]],"72":[[2,50]],"73":[[2,50]],"74":[[2,50]],"75":[[2,50]],"76":[[2,50]],"77":[[1,106]],"78":[[2,50]],"79":[[2,50]],"80":[[2,50]],"81":[[2,50]],"82":[[2,50]],"83":[[2,50]],"84":[[2,50]],"85":[[2,50]],"86":[[2,50]],"87":[[2,50]],"95":[[2,50]],"97":[[2,50]],"111":[[2,50]],"113":[[2,50]],"116":[[2,50]],"125":[[2,50]],"129":[[2,50]],"137":[[2,50]],"138":119,"139":[[2,50]],"140":[[2,50]],"141":[[2,50]],"145":[[2,50]],"152":[[2,50]],"156":[[2,50]]},{"1":[[2,51]],"3":[[2,51]],"24":[[2,51]],"25":[[2,51]],"48":[[2,51]],"49":[[2,51]],"52":[null],"53":[null],"56":[[2,51]],"57":[[2,51]],"58":[[2,51]],"59":[[2,51]],"60":[[2,51]],"61":[[2,51]],"62":[[2,51]],"63":[[2,51]],"64":[[2,51]],"65":[[2,51]],"66":[[2,51]],"67":[[2,51]],"68":[[2,51]],"69":[[2,51]],"70":[[2,51]],"71":[[2,51]],"72":[[2,51]],"73":[[2,51]],"74":[[2,51]],"75":[[2,51]],"76":[[2,51]],"77":[[1,106]],"78":[[2,51]],"79":[[2,51]],"80":[[2,51]],"81":[[2,51]],"82":[[2,51]],"83":[[2,51]],"84":[[2,51]],"85":[[2,51]],"86":[[2,51]],"87":[[2,51]],"95":[[2,51]],"97":[[2,51]],"111":[[2,51]],"113":[[2,51]],"116":[[2,51]],"125":[[2,51]],"129":[[2,51]],"137":[[2,51]],"138":119,"139":[[2,51]],"140":[[2,51]],"141":[[2,51]],"145":[[2,51]],"152":[[2,51]],"156":[[2,51]]},{"1":[[2,52]],"3":[[2,52]],"24":[[2,52]],"25":[[2,52]],"48":[[2,52]],"49":[[2,52]],"52":[null],"53":[null],"56":[[2,52]],"57":[[2,52]],"58":[[2,52]],"59":[[2,52]],"60":[[2,52]],"61":[[2,52]],"62":[[2,52]],"63":[[2,52]],"64":[[2,52]],"65":[[2,52]],"66":[[2,52]],"67":[[2,52]],"68":[[2,52]],"69":[[2,52]],"70":[[2,52]],"71":[[2,52]],"72":[[2,52]],"73":[[2,52]],"74":[[2,52]],"75":[[2,52]],"76":[[2,52]],"77":[[1,106]],"78":[[2,52]],"79":[[2,52]],"80":[[2,52]],"81":[[2,52]],"82":[[2,52]],"83":[[2,52]],"84":[[2,52]],"85":[[2,52]],"86":[[2,52]],"87":[[2,52]],"95":[[2,52]],"97":[[2,52]],"111":[[2,52]],"113":[[2,52]],"116":[[2,52]],"125":[[2,52]],"129":[[2,52]],"137":[[2,52]],"138":119,"139":[[2,52]],"140":[[2,52]],"141":[[2,52]],"145":[[2,52]],"152":[[2,52]],"156":[[2,52]]},{"1":[[2,53]],"3":[[2,53]],"24":[[2,53]],"25":[[2,53]],"48":[[2,53]],"49":[[2,53]],"52":[null],"53":[null],"56":[[2,53]],"57":[[2,53]],"58":[[2,53]],"59":[[2,53]],"60":[[2,53]],"61":[[2,53]],"62":[[2,53]],"63":[[2,53]],"64":[[2,53]],"65":[[2,53]],"66":[[2,53]],"67":[[2,53]],"68":[[2,53]],"69":[[2,53]],"70":[[2,53]],"71":[[2,53]],"72":[[2,53]],"73":[[2,53]],"74":[[2,53]],"75":[[2,53]],"76":[[2,53]],"77":[[1,106]],"78":[[2,53]],"79":[[2,53]],"80":[[2,53]],"81":[[2,53]],"82":[[2,53]],"83":[[2,53]],"84":[[2,53]],"85":[[2,53]],"86":[[2,53]],"87":[[2,53]],"95":[[2,53]],"97":[[2,53]],"111":[[2,53]],"113":[[2,53]],"116":[[2,53]],"125":[[2,53]],"129":[[2,53]],"137":[[2,53]],"138":119,"139":[[2,53]],"140":[[2,53]],"141":[[2,53]],"145":[[2,53]],"152":[[2,53]],"156":[[2,53]]},{"1":[[2,54]],"3":[[2,54]],"24":[[2,54]],"25":[[2,54]],"48":[[2,54]],"49":[[2,54]],"52":[null],"53":[null],"56":[[2,54]],"57":[[2,54]],"58":[[2,54]],"59":[[2,54]],"60":[[2,54]],"61":[[2,54]],"62":[[2,54]],"63":[[2,54]],"64":[[2,54]],"65":[[2,54]],"66":[[2,54]],"67":[[2,54]],"68":[[2,54]],"69":[[2,54]],"70":[[2,54]],"71":[[2,54]],"72":[[2,54]],"73":[[2,54]],"74":[[2,54]],"75":[[2,54]],"76":[[2,54]],"77":[[1,106]],"78":[[2,54]],"79":[[2,54]],"80":[[2,54]],"81":[[2,54]],"82":[[2,54]],"83":[[2,54]],"84":[[2,54]],"85":[[2,54]],"86":[[2,54]],"87":[[2,54]],"95":[[2,54]],"97":[[2,54]],"111":[[2,54]],"113":[[2,54]],"116":[[2,54]],"125":[[2,54]],"129":[[2,54]],"137":[[2,54]],"138":119,"139":[[2,54]],"140":[[2,54]],"141":[[2,54]],"145":[[2,54]],"152":[[2,54]],"156":[[2,54]]},{"1":[[2,55]],"3":[[2,55]],"24":[[2,55]],"25":[[2,55]],"48":[[2,55]],"49":[[2,55]],"52":[null],"53":[null],"56":[[2,55]],"57":[[2,55]],"58":[[2,55]],"59":[[2,55]],"60":[[2,55]],"61":[[2,55]],"62":[[2,55]],"63":[[2,55]],"64":[[2,55]],"65":[[2,55]],"66":[[2,55]],"67":[[2,55]],"68":[[2,55]],"69":[[2,55]],"70":[[2,55]],"71":[[2,55]],"72":[[2,55]],"73":[[2,55]],"74":[[2,55]],"75":[[2,55]],"76":[[2,55]],"77":[[1,106]],"78":[[2,55]],"79":[[2,55]],"80":[[2,55]],"81":[[2,55]],"82":[[2,55]],"83":[[2,55]],"84":[[2,55]],"85":[[2,55]],"86":[[2,55]],"87":[[2,55]],"95":[[2,55]],"97":[[2,55]],"111":[[2,55]],"113":[[2,55]],"116":[[2,55]],"125":[[2,55]],"129":[[2,55]],"137":[[2,55]],"138":119,"139":[[2,55]],"140":[[2,55]],"141":[[2,55]],"145":[[2,55]],"152":[[2,55]],"156":[[2,55]]},{"1":[[2,56]],"3":[[2,56]],"24":[[2,56]],"25":[[2,56]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[2,56]],"70":[[2,56]],"71":[[2,56]],"72":[[2,56]],"73":[[2,56]],"74":[[2,56]],"75":[[2,56]],"76":[[2,56]],"77":[[1,106]],"78":[[2,56]],"79":[[2,56]],"80":[[2,56]],"81":[[2,56]],"82":[[2,56]],"83":[[2,56]],"84":[[2,56]],"85":[[2,56]],"86":[[1,115]],"87":[[2,56]],"95":[[2,56]],"97":[[2,56]],"111":[[2,56]],"113":[[2,56]],"116":[[2,56]],"125":[[2,56]],"129":[[2,56]],"137":[[2,56]],"138":119,"139":[[2,56]],"140":[[2,56]],"141":[[2,56]],"145":[[2,56]],"152":[[2,56]],"156":[[2,56]]},{"1":[[2,57]],"3":[[2,57]],"24":[[2,57]],"25":[[2,57]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[2,57]],"70":[[2,57]],"71":[[2,57]],"72":[[2,57]],"73":[[2,57]],"74":[[2,57]],"75":[[2,57]],"76":[[2,57]],"77":[[1,106]],"78":[[2,57]],"79":[[2,57]],"80":[[2,57]],"81":[[2,57]],"82":[[2,57]],"83":[[2,57]],"84":[[2,57]],"85":[[2,57]],"86":[[1,115]],"87":[[2,57]],"95":[[2,57]],"97":[[2,57]],"111":[[2,57]],"113":[[2,57]],"116":[[2,57]],"125":[[2,57]],"129":[[2,57]],"137":[[2,57]],"138":119,"139":[[2,57]],"140":[[2,57]],"141":[[2,57]],"145":[[2,57]],"152":[[2,57]],"156":[[2,57]]},{"132":232,"133":[[1,233]],"134":[[1,234]]},{"1":[[2,162]],"3":[[2,162]],"24":[[2,162]],"25":[[2,162]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,162]],"97":[[1,121]],"111":[[2,162]],"113":[[2,162]],"116":[[2,162]],"125":[[2,162]],"129":[[2,162]],"137":[[2,162]],"138":119,"139":[[2,162]],"140":[[2,162]],"141":[[2,162]],"145":[[2,162]],"152":[[2,162]],"156":[[2,162]]},{"1":[[2,45]],"3":[[2,45]],"24":[[2,45]],"25":[[2,45]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,45]],"97":[[1,121]],"111":[[2,45]],"113":[[2,45]],"116":[[2,45]],"125":[[2,45]],"129":[[2,45]],"137":[[2,45]],"138":119,"139":[[2,45]],"140":[[2,45]],"141":[[1,120]],"145":[[2,45]],"152":[[2,45]],"156":[[2,45]]},{"1":[[2,166]],"3":[[2,166]],"24":[[2,166]],"25":[[2,166]],"48":[[2,166]],"49":[[2,166]],"52":[[2,166]],"53":[[2,166]],"56":[[2,166]],"57":[[2,166]],"58":[[2,166]],"59":[[2,166]],"60":[[2,166]],"61":[[2,166]],"62":[[2,166]],"63":[[2,166]],"64":[[2,166]],"65":[[2,166]],"66":[[2,166]],"67":[[2,166]],"68":[[2,166]],"69":[[2,166]],"70":[[2,166]],"71":[[2,166]],"72":[[2,166]],"73":[[2,166]],"74":[[2,166]],"75":[[2,166]],"76":[[2,166]],"77":[[2,166]],"78":[[2,166]],"79":[[2,166]],"80":[[2,166]],"81":[[2,166]],"82":[[2,166]],"83":[[2,166]],"84":[[2,166]],"85":[[2,166]],"86":[[2,166]],"87":[[2,166]],"95":[[2,166]],"97":[[2,166]],"111":[[2,166]],"113":[[2,166]],"116":[[2,166]],"125":[[2,166]],"129":[[2,166]],"137":[[2,166]],"139":[[2,166]],"140":[[2,166]],"141":[[2,166]],"145":[[2,166]],"152":[[2,166]],"156":[[2,166]]},{"87":[[1,236]],"143":235,"144":[[1,237]]},{"87":[[2,170]],"95":[[1,238]],"144":[[2,170]]},{"24":[[1,239]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,123]],"3":[[2,123]],"24":[[1,169]],"25":[[2,123]],"48":[[2,123]],"49":[[2,123]],"52":[[2,123]],"53":[[2,123]],"56":[[2,123]],"57":[[2,123]],"58":[[2,123]],"59":[[2,123]],"60":[[2,123]],"61":[[2,123]],"62":[[2,123]],"63":[[2,123]],"64":[[2,123]],"65":[[2,123]],"66":[[2,123]],"67":[[2,123]],"68":[[2,123]],"69":[[2,123]],"70":[[2,123]],"71":[[2,123]],"72":[[2,123]],"73":[[2,123]],"74":[[2,123]],"75":[[2,123]],"76":[[2,123]],"77":[[2,123]],"78":[[2,123]],"79":[[2,123]],"80":[[2,123]],"81":[[2,123]],"82":[[2,123]],"83":[[2,123]],"84":[[2,123]],"85":[[2,123]],"86":[[2,123]],"87":[[2,123]],"95":[[2,123]],"97":[[2,123]],"103":124,"105":[[1,128]],"106":[[1,129]],"107":[[1,130]],"108":131,"109":132,"110":[[1,134]],"111":[[2,123]],"112":[[1,135]],"113":[[2,123]],"116":[[2,123]],"117":241,"119":[[1,240]],"122":127,"123":[[1,133]],"125":[[2,123]],"129":[[2,123]],"137":[[2,123]],"139":[[2,123]],"140":[[2,123]],"141":[[2,123]],"145":[[2,123]],"152":[[2,123]],"156":[[2,123]]},{"103":136,"105":[[1,128]],"106":[[1,129]],"107":[[1,130]],"108":131,"109":132,"110":[[1,134]],"112":[[1,135]],"122":137,"123":[[1,133]]},{"3":[[1,244]],"25":[[1,245]],"95":[[1,243]],"129":[[1,242]]},{"3":[[2,149]],"25":[[2,149]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,149]],"97":[[1,246]],"129":[[2,149]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"6":247,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"3":[[1,250]],"95":[[1,249]],"116":[[1,248]]},{"116":[[1,251]]},{"3":[[2,128]],"25":[[2,128]],"95":[[2,128]],"116":[[2,128]]},{"3":[[2,127]],"23":172,"25":[[2,127]],"26":170,"27":[[1,55]],"28":171,"29":[[1,76]],"30":[[1,77]],"43":168,"45":[[1,54]],"95":[[2,127]],"115":252},{"42":[[1,253]]},{"42":[[1,254]]},{"3":[[2,44]],"25":[[2,44]],"95":[[2,44]],"116":[[2,44]]},{"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"137":[[1,255]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,142]],"3":[[2,142]],"24":[[2,142]],"25":[[2,142]],"42":[[2,142]],"48":[[2,142]],"49":[[2,142]],"52":[[2,142]],"53":[[2,142]],"56":[[2,142]],"57":[[2,142]],"58":[[2,142]],"59":[[2,142]],"60":[[2,142]],"61":[[2,142]],"62":[[2,142]],"63":[[2,142]],"64":[[2,142]],"65":[[2,142]],"66":[[2,142]],"67":[[2,142]],"68":[[2,142]],"69":[[2,142]],"70":[[2,142]],"71":[[2,142]],"72":[[2,142]],"73":[[2,142]],"74":[[2,142]],"75":[[2,142]],"76":[[2,142]],"77":[[2,142]],"78":[[2,142]],"79":[[2,142]],"80":[[2,142]],"81":[[2,142]],"82":[[2,142]],"83":[[2,142]],"84":[[2,142]],"85":[[2,142]],"86":[[2,142]],"87":[[2,142]],"95":[[2,142]],"97":[[2,142]],"105":[[2,142]],"106":[[2,142]],"107":[[2,142]],"110":[[2,142]],"111":[[2,142]],"112":[[2,142]],"113":[[2,142]],"116":[[2,142]],"119":[[2,142]],"123":[[2,142]],"125":[[2,142]],"129":[[2,142]],"137":[[2,142]],"139":[[2,142]],"140":[[2,142]],"141":[[2,142]],"145":[[2,142]],"152":[[2,142]],"156":[[2,142]]},{"3":[[2,148]],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[1,165]],"25":[[2,148]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"95":[[2,148]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"124":256,"125":[[2,148]],"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"5":257,"24":[[1,6]],"152":[[1,258]]},{"1":[[2,184]],"3":[[2,184]],"24":[[2,184]],"25":[[2,184]],"48":[[2,184]],"49":[[2,184]],"52":[[2,184]],"53":[[2,184]],"56":[[2,184]],"57":[[2,184]],"58":[[2,184]],"59":[[2,184]],"60":[[2,184]],"61":[[2,184]],"62":[[2,184]],"63":[[2,184]],"64":[[2,184]],"65":[[2,184]],"66":[[2,184]],"67":[[2,184]],"68":[[2,184]],"69":[[2,184]],"70":[[2,184]],"71":[[2,184]],"72":[[2,184]],"73":[[2,184]],"74":[[2,184]],"75":[[2,184]],"76":[[2,184]],"77":[[2,184]],"78":[[2,184]],"79":[[2,184]],"80":[[2,184]],"81":[[2,184]],"82":[[2,184]],"83":[[2,184]],"84":[[2,184]],"85":[[2,184]],"86":[[2,184]],"87":[[2,184]],"95":[[2,184]],"97":[[2,184]],"111":[[2,184]],"113":[[2,184]],"116":[[2,184]],"125":[[2,184]],"129":[[2,184]],"137":[[2,184]],"139":[[2,184]],"140":[[2,184]],"141":[[2,184]],"145":[[2,184]],"148":[[2,184]],"152":[[2,184]],"155":[[1,259]],"156":[[2,184]]},{"1":[[2,164]],"3":[[2,164]],"24":[[2,164]],"25":[[2,164]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,164]],"97":[[1,121]],"111":[[2,164]],"113":[[2,164]],"116":[[2,164]],"125":[[2,164]],"129":[[2,164]],"137":[[2,164]],"138":119,"139":[[1,75]],"140":[[1,260]],"141":[[1,120]],"145":[[2,164]],"152":[[1,117]],"156":[[1,118]]},{"5":261,"24":[[1,6]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,6]],"3":[[2,6]],"25":[[2,6]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,60]],"3":[[2,60]],"24":[[2,60]],"25":[[2,60]],"48":[[2,60]],"49":[[2,60]],"52":[[1,81]],"53":[[1,82]],"56":[[2,60]],"57":[[2,60]],"58":[[2,60]],"59":[[2,60]],"60":[[2,60]],"61":[[2,60]],"62":[[2,60]],"63":[[2,60]],"64":[[2,60]],"65":[[2,60]],"66":[[2,60]],"67":[[2,60]],"68":[[2,60]],"69":[[2,60]],"70":[[2,60]],"71":[[2,60]],"72":[[2,60]],"73":[[2,60]],"74":[[2,60]],"75":[[2,60]],"76":[[2,60]],"77":[[1,106]],"78":[[2,60]],"79":[[2,60]],"80":[[2,60]],"81":[[2,60]],"82":[[2,60]],"83":[[2,60]],"84":[[2,60]],"85":[[2,60]],"86":[[2,60]],"87":[[2,60]],"95":[[2,60]],"97":[[2,60]],"111":[[2,60]],"113":[[2,60]],"116":[[2,60]],"125":[[2,60]],"129":[[2,60]],"137":[[2,60]],"138":119,"139":[[2,60]],"140":[[2,60]],"141":[[2,60]],"145":[[2,60]],"152":[[2,60]],"156":[[2,60]]},{"1":[[2,61]],"3":[[2,61]],"24":[[2,61]],"25":[[2,61]],"48":[[2,61]],"49":[[2,61]],"52":[[1,81]],"53":[[1,82]],"56":[[2,61]],"57":[[2,61]],"58":[[2,61]],"59":[[2,61]],"60":[[2,61]],"61":[[2,61]],"62":[[2,61]],"63":[[2,61]],"64":[[2,61]],"65":[[2,61]],"66":[[2,61]],"67":[[2,61]],"68":[[2,61]],"69":[[2,61]],"70":[[2,61]],"71":[[2,61]],"72":[[2,61]],"73":[[2,61]],"74":[[2,61]],"75":[[2,61]],"76":[[2,61]],"77":[[1,106]],"78":[[2,61]],"79":[[2,61]],"80":[[2,61]],"81":[[2,61]],"82":[[2,61]],"83":[[2,61]],"84":[[2,61]],"85":[[2,61]],"86":[[2,61]],"87":[[2,61]],"95":[[2,61]],"97":[[2,61]],"111":[[2,61]],"113":[[2,61]],"116":[[2,61]],"125":[[2,61]],"129":[[2,61]],"137":[[2,61]],"138":119,"139":[[2,61]],"140":[[2,61]],"141":[[2,61]],"145":[[2,61]],"152":[[2,61]],"156":[[2,61]]},{"1":[[2,62]],"3":[[2,62]],"24":[[2,62]],"25":[[2,62]],"48":[[2,62]],"49":[[2,62]],"52":[[1,81]],"53":[[1,82]],"56":[[2,62]],"57":[[2,62]],"58":[[2,62]],"59":[[2,62]],"60":[[2,62]],"61":[[2,62]],"62":[[2,62]],"63":[[2,62]],"64":[[2,62]],"65":[[2,62]],"66":[[2,62]],"67":[[2,62]],"68":[[2,62]],"69":[[2,62]],"70":[[2,62]],"71":[[2,62]],"72":[[2,62]],"73":[[2,62]],"74":[[2,62]],"75":[[2,62]],"76":[[2,62]],"77":[[1,106]],"78":[[2,62]],"79":[[2,62]],"80":[[2,62]],"81":[[2,62]],"82":[[2,62]],"83":[[2,62]],"84":[[2,62]],"85":[[2,62]],"86":[[2,62]],"87":[[2,62]],"95":[[2,62]],"97":[[2,62]],"111":[[2,62]],"113":[[2,62]],"116":[[2,62]],"125":[[2,62]],"129":[[2,62]],"137":[[2,62]],"138":119,"139":[[2,62]],"140":[[2,62]],"141":[[2,62]],"145":[[2,62]],"152":[[2,62]],"156":[[2,62]]},{"1":[[2,63]],"3":[[2,63]],"24":[[2,63]],"25":[[2,63]],"48":[[2,63]],"49":[[2,63]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[2,63]],"60":[[2,63]],"61":[[2,63]],"62":[[2,63]],"63":[[2,63]],"64":[[2,63]],"65":[[2,63]],"66":[[2,63]],"67":[[2,63]],"68":[[2,63]],"69":[[2,63]],"70":[[2,63]],"71":[[2,63]],"72":[[2,63]],"73":[[2,63]],"74":[[2,63]],"75":[[2,63]],"76":[[2,63]],"77":[[1,106]],"78":[[2,63]],"79":[[2,63]],"80":[[2,63]],"81":[[2,63]],"82":[[2,63]],"83":[[2,63]],"84":[[2,63]],"85":[[2,63]],"86":[[2,63]],"87":[[2,63]],"95":[[2,63]],"97":[[2,63]],"111":[[2,63]],"113":[[2,63]],"116":[[2,63]],"125":[[2,63]],"129":[[2,63]],"137":[[2,63]],"138":119,"139":[[2,63]],"140":[[2,63]],"141":[[2,63]],"145":[[2,63]],"152":[[2,63]],"156":[[2,63]]},{"1":[[2,64]],"3":[[2,64]],"24":[[2,64]],"25":[[2,64]],"48":[[2,64]],"49":[[2,64]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[2,64]],"60":[[2,64]],"61":[[2,64]],"62":[[2,64]],"63":[[2,64]],"64":[[2,64]],"65":[[2,64]],"66":[[2,64]],"67":[[2,64]],"68":[[2,64]],"69":[[2,64]],"70":[[2,64]],"71":[[2,64]],"72":[[2,64]],"73":[[2,64]],"74":[[2,64]],"75":[[2,64]],"76":[[2,64]],"77":[[1,106]],"78":[[2,64]],"79":[[2,64]],"80":[[2,64]],"81":[[2,64]],"82":[[2,64]],"83":[[2,64]],"84":[[2,64]],"85":[[2,64]],"86":[[2,64]],"87":[[2,64]],"95":[[2,64]],"97":[[2,64]],"111":[[2,64]],"113":[[2,64]],"116":[[2,64]],"125":[[2,64]],"129":[[2,64]],"137":[[2,64]],"138":119,"139":[[2,64]],"140":[[2,64]],"141":[[2,64]],"145":[[2,64]],"152":[[2,64]],"156":[[2,64]]},{"1":[[2,65]],"3":[[2,65]],"24":[[2,65]],"25":[[2,65]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[2,65]],"60":[[2,65]],"61":[[2,65]],"62":[[2,65]],"63":[[2,65]],"64":[[2,65]],"65":[[2,65]],"66":[[2,65]],"67":[[2,65]],"68":[[2,65]],"69":[[2,65]],"70":[[2,65]],"71":[[2,65]],"72":[[2,65]],"73":[[2,65]],"74":[[2,65]],"75":[[2,65]],"76":[[2,65]],"77":[[1,106]],"78":[[2,65]],"79":[[2,65]],"80":[[2,65]],"81":[[2,65]],"82":[[2,65]],"83":[[2,65]],"84":[[2,65]],"85":[[2,65]],"86":[[2,65]],"87":[[2,65]],"95":[[2,65]],"97":[[2,65]],"111":[[2,65]],"113":[[2,65]],"116":[[2,65]],"125":[[2,65]],"129":[[2,65]],"137":[[2,65]],"138":119,"139":[[2,65]],"140":[[2,65]],"141":[[2,65]],"145":[[2,65]],"152":[[2,65]],"156":[[2,65]]},{"1":[[2,66]],"3":[[2,66]],"24":[[2,66]],"25":[[2,66]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[2,66]],"60":[[2,66]],"61":[[2,66]],"62":[[2,66]],"63":[[2,66]],"64":[[2,66]],"65":[[2,66]],"66":[[2,66]],"67":[[2,66]],"68":[[2,66]],"69":[[2,66]],"70":[[2,66]],"71":[[2,66]],"72":[[2,66]],"73":[[2,66]],"74":[[2,66]],"75":[[2,66]],"76":[[2,66]],"77":[[1,106]],"78":[[2,66]],"79":[[2,66]],"80":[[2,66]],"81":[[2,66]],"82":[[2,66]],"83":[[2,66]],"84":[[2,66]],"85":[[2,66]],"86":[[2,66]],"87":[[2,66]],"95":[[2,66]],"97":[[2,66]],"111":[[2,66]],"113":[[2,66]],"116":[[2,66]],"125":[[2,66]],"129":[[2,66]],"137":[[2,66]],"138":119,"139":[[2,66]],"140":[[2,66]],"141":[[2,66]],"145":[[2,66]],"152":[[2,66]],"156":[[2,66]]},{"1":[[2,67]],"3":[[2,67]],"24":[[2,67]],"25":[[2,67]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[2,67]],"60":[[2,67]],"61":[[2,67]],"62":[[2,67]],"63":[[2,67]],"64":[[2,67]],"65":[[2,67]],"66":[[2,67]],"67":[[2,67]],"68":[[2,67]],"69":[[2,67]],"70":[[2,67]],"71":[[2,67]],"72":[[2,67]],"73":[[2,67]],"74":[[2,67]],"75":[[2,67]],"76":[[2,67]],"77":[[1,106]],"78":[[2,67]],"79":[[2,67]],"80":[[2,67]],"81":[[2,67]],"82":[[2,67]],"83":[[2,67]],"84":[[2,67]],"85":[[2,67]],"86":[[2,67]],"87":[[2,67]],"95":[[2,67]],"97":[[2,67]],"111":[[2,67]],"113":[[2,67]],"116":[[2,67]],"125":[[2,67]],"129":[[2,67]],"137":[[2,67]],"138":119,"139":[[2,67]],"140":[[2,67]],"141":[[2,67]],"145":[[2,67]],"152":[[2,67]],"156":[[2,67]]},{"1":[[2,68]],"3":[[2,68]],"24":[[2,68]],"25":[[2,68]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[2,68]],"63":[[2,68]],"64":[[2,68]],"65":[[2,68]],"66":[[2,68]],"67":[[2,68]],"68":[[2,68]],"69":[[2,68]],"70":[[2,68]],"71":[[2,68]],"72":[[2,68]],"73":[[2,68]],"74":[[2,68]],"75":[[2,68]],"76":[[2,68]],"77":[[1,106]],"78":[[2,68]],"79":[[2,68]],"80":[[2,68]],"81":[[2,68]],"82":[[2,68]],"83":[[2,68]],"84":[[2,68]],"85":[[2,68]],"86":[[2,68]],"87":[[2,68]],"95":[[2,68]],"97":[[2,68]],"111":[[2,68]],"113":[[2,68]],"116":[[2,68]],"125":[[2,68]],"129":[[2,68]],"137":[[2,68]],"138":119,"139":[[2,68]],"140":[[2,68]],"141":[[2,68]],"145":[[2,68]],"152":[[2,68]],"156":[[2,68]]},{"1":[[2,69]],"3":[[2,69]],"24":[[2,69]],"25":[[2,69]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[2,69]],"63":[[2,69]],"64":[[2,69]],"65":[[2,69]],"66":[[2,69]],"67":[[2,69]],"68":[[2,69]],"69":[[2,69]],"70":[[2,69]],"71":[[2,69]],"72":[[2,69]],"73":[[2,69]],"74":[[2,69]],"75":[[2,69]],"76":[[2,69]],"77":[[1,106]],"78":[[2,69]],"79":[[2,69]],"80":[[2,69]],"81":[[2,69]],"82":[[2,69]],"83":[[2,69]],"84":[[2,69]],"85":[[2,69]],"86":[[2,69]],"87":[[2,69]],"95":[[2,69]],"97":[[2,69]],"111":[[2,69]],"113":[[2,69]],"116":[[2,69]],"125":[[2,69]],"129":[[2,69]],"137":[[2,69]],"138":119,"139":[[2,69]],"140":[[2,69]],"141":[[2,69]],"145":[[2,69]],"152":[[2,69]],"156":[[2,69]]},{"1":[[2,70]],"3":[[2,70]],"24":[[2,70]],"25":[[2,70]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[2,70]],"63":[[2,70]],"64":[[2,70]],"65":[[2,70]],"66":[[2,70]],"67":[[2,70]],"68":[[2,70]],"69":[[2,70]],"70":[[2,70]],"71":[[2,70]],"72":[[2,70]],"73":[[2,70]],"74":[[2,70]],"75":[[2,70]],"76":[[2,70]],"77":[[1,106]],"78":[[2,70]],"79":[[2,70]],"80":[[2,70]],"81":[[2,70]],"82":[[2,70]],"83":[[2,70]],"84":[[2,70]],"85":[[2,70]],"86":[[2,70]],"87":[[2,70]],"95":[[2,70]],"97":[[2,70]],"111":[[2,70]],"113":[[2,70]],"116":[[2,70]],"125":[[2,70]],"129":[[2,70]],"137":[[2,70]],"138":119,"139":[[2,70]],"140":[[2,70]],"141":[[2,70]],"145":[[2,70]],"152":[[2,70]],"156":[[2,70]]},{"1":[[2,71]],"3":[[2,71]],"24":[[2,71]],"25":[[2,71]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[2,71]],"66":[[2,71]],"67":[[2,71]],"68":[[2,71]],"69":[[2,71]],"70":[[2,71]],"71":[[2,71]],"72":[[2,71]],"73":[[2,71]],"74":[[2,71]],"75":[[2,71]],"76":[[2,71]],"77":[[1,106]],"78":[[2,71]],"79":[[2,71]],"80":[[2,71]],"81":[[2,71]],"82":[[2,71]],"83":[[2,71]],"84":[[2,71]],"85":[[2,71]],"86":[[2,71]],"87":[[2,71]],"95":[[2,71]],"97":[[2,71]],"111":[[2,71]],"113":[[2,71]],"116":[[2,71]],"125":[[2,71]],"129":[[2,71]],"137":[[2,71]],"138":119,"139":[[2,71]],"140":[[2,71]],"141":[[2,71]],"145":[[2,71]],"152":[[2,71]],"156":[[2,71]]},{"1":[[2,72]],"3":[[2,72]],"24":[[2,72]],"25":[[2,72]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[2,72]],"66":[[2,72]],"67":[[2,72]],"68":[[2,72]],"69":[[2,72]],"70":[[2,72]],"71":[[2,72]],"72":[[2,72]],"73":[[2,72]],"74":[[2,72]],"75":[[2,72]],"76":[[2,72]],"77":[[1,106]],"78":[[2,72]],"79":[[2,72]],"80":[[2,72]],"81":[[2,72]],"82":[[2,72]],"83":[[2,72]],"84":[[2,72]],"85":[[2,72]],"86":[[2,72]],"87":[[2,72]],"95":[[2,72]],"97":[[2,72]],"111":[[2,72]],"113":[[2,72]],"116":[[2,72]],"125":[[2,72]],"129":[[2,72]],"137":[[2,72]],"138":119,"139":[[2,72]],"140":[[2,72]],"141":[[2,72]],"145":[[2,72]],"152":[[2,72]],"156":[[2,72]]},{"1":[[2,73]],"3":[[2,73]],"24":[[2,73]],"25":[[2,73]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[2,73]],"66":[[2,73]],"67":[[2,73]],"68":[[2,73]],"69":[[2,73]],"70":[[2,73]],"71":[[2,73]],"72":[[2,73]],"73":[[2,73]],"74":[[2,73]],"75":[[2,73]],"76":[[2,73]],"77":[[1,106]],"78":[[2,73]],"79":[[2,73]],"80":[[2,73]],"81":[[2,73]],"82":[[2,73]],"83":[[2,73]],"84":[[2,73]],"85":[[2,73]],"86":[[2,73]],"87":[[2,73]],"95":[[2,73]],"97":[[2,73]],"111":[[2,73]],"113":[[2,73]],"116":[[2,73]],"125":[[2,73]],"129":[[2,73]],"137":[[2,73]],"138":119,"139":[[2,73]],"140":[[2,73]],"141":[[2,73]],"145":[[2,73]],"152":[[2,73]],"156":[[2,73]]},{"1":[[2,74]],"3":[[2,74]],"24":[[2,74]],"25":[[2,74]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[2,74]],"66":[[2,74]],"67":[[2,74]],"68":[[2,74]],"69":[[2,74]],"70":[[2,74]],"71":[[2,74]],"72":[[2,74]],"73":[[2,74]],"74":[[2,74]],"75":[[2,74]],"76":[[2,74]],"77":[[1,106]],"78":[[2,74]],"79":[[2,74]],"80":[[2,74]],"81":[[2,74]],"82":[[2,74]],"83":[[2,74]],"84":[[2,74]],"85":[[2,74]],"86":[[2,74]],"87":[[2,74]],"95":[[2,74]],"97":[[2,74]],"111":[[2,74]],"113":[[2,74]],"116":[[2,74]],"125":[[2,74]],"129":[[2,74]],"137":[[2,74]],"138":119,"139":[[2,74]],"140":[[2,74]],"141":[[2,74]],"145":[[2,74]],"152":[[2,74]],"156":[[2,74]]},{"1":[[2,75]],"3":[[2,75]],"24":[[2,75]],"25":[[2,75]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[2,75]],"70":[[2,75]],"71":[[2,75]],"72":[[2,75]],"73":[[2,75]],"74":[[2,75]],"75":[[2,75]],"76":[[2,75]],"77":[[1,106]],"78":[[2,75]],"79":[[2,75]],"80":[[2,75]],"81":[[2,75]],"82":[[2,75]],"83":[[2,75]],"84":[[2,75]],"85":[[2,75]],"86":[[1,115]],"87":[[2,75]],"95":[[2,75]],"97":[[2,75]],"111":[[2,75]],"113":[[2,75]],"116":[[2,75]],"125":[[2,75]],"129":[[2,75]],"137":[[2,75]],"138":119,"139":[[2,75]],"140":[[2,75]],"141":[[2,75]],"145":[[2,75]],"152":[[2,75]],"156":[[2,75]]},{"1":[[2,76]],"3":[[2,76]],"24":[[2,76]],"25":[[2,76]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[2,76]],"70":[[2,76]],"71":[[2,76]],"72":[[2,76]],"73":[[2,76]],"74":[[2,76]],"75":[[2,76]],"76":[[2,76]],"77":[[1,106]],"78":[[2,76]],"79":[[2,76]],"80":[[2,76]],"81":[[2,76]],"82":[[2,76]],"83":[[2,76]],"84":[[2,76]],"85":[[2,76]],"86":[[1,115]],"87":[[2,76]],"95":[[2,76]],"97":[[2,76]],"111":[[2,76]],"113":[[2,76]],"116":[[2,76]],"125":[[2,76]],"129":[[2,76]],"137":[[2,76]],"138":119,"139":[[2,76]],"140":[[2,76]],"141":[[2,76]],"145":[[2,76]],"152":[[2,76]],"156":[[2,76]]},{"1":[[2,77]],"3":[[2,77]],"24":[[2,77]],"25":[[2,77]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[2,77]],"70":[[2,77]],"71":[[2,77]],"72":[[2,77]],"73":[[2,77]],"74":[[2,77]],"75":[[2,77]],"76":[[2,77]],"77":[[1,106]],"78":[[2,77]],"79":[[2,77]],"80":[[2,77]],"81":[[2,77]],"82":[[2,77]],"83":[[2,77]],"84":[[2,77]],"85":[[2,77]],"86":[[1,115]],"87":[[2,77]],"95":[[2,77]],"97":[[2,77]],"111":[[2,77]],"113":[[2,77]],"116":[[2,77]],"125":[[2,77]],"129":[[2,77]],"137":[[2,77]],"138":119,"139":[[2,77]],"140":[[2,77]],"141":[[2,77]],"145":[[2,77]],"152":[[2,77]],"156":[[2,77]]},{"1":[[2,78]],"3":[[2,78]],"24":[[2,78]],"25":[[2,78]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[2,78]],"70":[[2,78]],"71":[[2,78]],"72":[[2,78]],"73":[[2,78]],"74":[[2,78]],"75":[[2,78]],"76":[[2,78]],"77":[[1,106]],"78":[[2,78]],"79":[[2,78]],"80":[[2,78]],"81":[[2,78]],"82":[[2,78]],"83":[[2,78]],"84":[[2,78]],"85":[[2,78]],"86":[[1,115]],"87":[[2,78]],"95":[[2,78]],"97":[[2,78]],"111":[[2,78]],"113":[[2,78]],"116":[[2,78]],"125":[[2,78]],"129":[[2,78]],"137":[[2,78]],"138":119,"139":[[2,78]],"140":[[2,78]],"141":[[2,78]],"145":[[2,78]],"152":[[2,78]],"156":[[2,78]]},{"1":[[2,79]],"3":[[2,79]],"24":[[2,79]],"25":[[2,79]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[2,79]],"74":[[2,79]],"75":[[2,79]],"76":[[2,79]],"77":[[1,106]],"78":[[2,79]],"79":[[2,79]],"80":[[2,79]],"81":[[2,79]],"82":[[2,79]],"83":[[2,79]],"84":[[2,79]],"85":[[2,79]],"86":[[1,115]],"87":[[2,79]],"95":[[2,79]],"97":[[2,79]],"111":[[2,79]],"113":[[2,79]],"116":[[2,79]],"125":[[2,79]],"129":[[2,79]],"137":[[2,79]],"138":119,"139":[[2,79]],"140":[[2,79]],"141":[[2,79]],"145":[[2,79]],"152":[[2,79]],"156":[[2,79]]},{"1":[[2,80]],"3":[[2,80]],"24":[[2,80]],"25":[[2,80]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[2,80]],"74":[[2,80]],"75":[[2,80]],"76":[[2,80]],"77":[[1,106]],"78":[[2,80]],"79":[[2,80]],"80":[[2,80]],"81":[[2,80]],"82":[[2,80]],"83":[[2,80]],"84":[[2,80]],"85":[[2,80]],"86":[[1,115]],"87":[[2,80]],"95":[[2,80]],"97":[[2,80]],"111":[[2,80]],"113":[[2,80]],"116":[[2,80]],"125":[[2,80]],"129":[[2,80]],"137":[[2,80]],"138":119,"139":[[2,80]],"140":[[2,80]],"141":[[2,80]],"145":[[2,80]],"152":[[2,80]],"156":[[2,80]]},{"1":[[2,81]],"3":[[2,81]],"24":[[2,81]],"25":[[2,81]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[2,81]],"74":[[2,81]],"75":[[2,81]],"76":[[2,81]],"77":[[1,106]],"78":[[2,81]],"79":[[2,81]],"80":[[2,81]],"81":[[2,81]],"82":[[2,81]],"83":[[2,81]],"84":[[2,81]],"85":[[2,81]],"86":[[1,115]],"87":[[2,81]],"95":[[2,81]],"97":[[2,81]],"111":[[2,81]],"113":[[2,81]],"116":[[2,81]],"125":[[2,81]],"129":[[2,81]],"137":[[2,81]],"138":119,"139":[[2,81]],"140":[[2,81]],"141":[[2,81]],"145":[[2,81]],"152":[[2,81]],"156":[[2,81]]},{"1":[[2,82]],"3":[[2,82]],"24":[[2,82]],"25":[[2,82]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[2,82]],"74":[[2,82]],"75":[[2,82]],"76":[[2,82]],"77":[[1,106]],"78":[[2,82]],"79":[[2,82]],"80":[[2,82]],"81":[[2,82]],"82":[[2,82]],"83":[[2,82]],"84":[[2,82]],"85":[[2,82]],"86":[[1,115]],"87":[[2,82]],"95":[[2,82]],"97":[[2,82]],"111":[[2,82]],"113":[[2,82]],"116":[[2,82]],"125":[[2,82]],"129":[[2,82]],"137":[[2,82]],"138":119,"139":[[2,82]],"140":[[2,82]],"141":[[2,82]],"145":[[2,82]],"152":[[2,82]],"156":[[2,82]]},{"1":[[2,83]],"3":[[2,83]],"24":[[2,83]],"25":[[2,83]],"48":[[2,83]],"49":[[2,83]],"52":[[2,83]],"53":[[2,83]],"56":[[2,83]],"57":[[2,83]],"58":[[2,83]],"59":[[2,83]],"60":[[2,83]],"61":[[2,83]],"62":[[2,83]],"63":[[2,83]],"64":[[2,83]],"65":[[2,83]],"66":[[2,83]],"67":[[2,83]],"68":[[2,83]],"69":[[2,83]],"70":[[2,83]],"71":[[2,83]],"72":[[2,83]],"73":[[2,83]],"74":[[2,83]],"75":[[2,83]],"76":[[2,83]],"77":[[2,83]],"78":[[2,83]],"79":[[2,83]],"80":[[2,83]],"81":[[2,83]],"82":[[2,83]],"83":[[2,83]],"84":[[2,83]],"85":[[2,83]],"86":[[2,83]],"87":[[2,83]],"95":[[2,83]],"97":[[2,83]],"111":[[2,83]],"113":[[2,83]],"116":[[2,83]],"125":[[2,83]],"129":[[2,83]],"137":[[2,83]],"138":119,"139":[[2,83]],"140":[[2,83]],"141":[[2,83]],"145":[[2,83]],"152":[[2,83]],"156":[[2,83]]},{"1":[[2,84]],"3":[[2,84]],"24":[[2,84]],"25":[[2,84]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[2,84]],"95":[[2,84]],"97":[[2,84]],"111":[[2,84]],"113":[[2,84]],"116":[[2,84]],"125":[[2,84]],"129":[[2,84]],"137":[[2,84]],"138":119,"139":[[2,84]],"140":[[2,84]],"141":[[2,84]],"145":[[2,84]],"152":[[2,84]],"156":[[2,84]]},{"1":[[2,85]],"3":[[2,85]],"24":[[2,85]],"25":[[2,85]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[2,85]],"95":[[2,85]],"97":[[2,85]],"111":[[2,85]],"113":[[2,85]],"116":[[2,85]],"125":[[2,85]],"129":[[2,85]],"137":[[2,85]],"138":119,"139":[[2,85]],"140":[[2,85]],"141":[[2,85]],"145":[[2,85]],"152":[[2,85]],"156":[[2,85]]},{"1":[[2,86]],"3":[[2,86]],"24":[[2,86]],"25":[[2,86]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[2,86]],"95":[[2,86]],"97":[[2,86]],"111":[[2,86]],"113":[[2,86]],"116":[[2,86]],"125":[[2,86]],"129":[[2,86]],"137":[[2,86]],"138":119,"139":[[2,86]],"140":[[2,86]],"141":[[2,86]],"145":[[2,86]],"152":[[2,86]],"156":[[2,86]]},{"1":[[2,87]],"3":[[2,87]],"24":[[2,87]],"25":[[2,87]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[2,87]],"95":[[2,87]],"97":[[2,87]],"111":[[2,87]],"113":[[2,87]],"116":[[2,87]],"125":[[2,87]],"129":[[2,87]],"137":[[2,87]],"138":119,"139":[[2,87]],"140":[[2,87]],"141":[[2,87]],"145":[[2,87]],"152":[[2,87]],"156":[[2,87]]},{"1":[[2,88]],"3":[[2,88]],"24":[[2,88]],"25":[[2,88]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[2,88]],"95":[[2,88]],"97":[[2,88]],"111":[[2,88]],"113":[[2,88]],"116":[[2,88]],"125":[[2,88]],"129":[[2,88]],"137":[[2,88]],"138":119,"139":[[2,88]],"140":[[2,88]],"141":[[2,88]],"145":[[2,88]],"152":[[2,88]],"156":[[2,88]]},{"1":[[2,89]],"3":[[2,89]],"24":[[2,89]],"25":[[2,89]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[2,89]],"95":[[2,89]],"97":[[2,89]],"111":[[2,89]],"113":[[2,89]],"116":[[2,89]],"125":[[2,89]],"129":[[2,89]],"137":[[2,89]],"138":119,"139":[[2,89]],"140":[[2,89]],"141":[[2,89]],"145":[[2,89]],"152":[[2,89]],"156":[[2,89]]},{"1":[[2,90]],"3":[[2,90]],"24":[[2,90]],"25":[[2,90]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[2,90]],"95":[[2,90]],"97":[[2,90]],"111":[[2,90]],"113":[[2,90]],"116":[[2,90]],"125":[[2,90]],"129":[[2,90]],"137":[[2,90]],"138":119,"139":[[2,90]],"140":[[2,90]],"141":[[2,90]],"145":[[2,90]],"152":[[2,90]],"156":[[2,90]]},{"1":[[2,91]],"3":[[2,91]],"24":[[2,91]],"25":[[2,91]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[2,91]],"95":[[2,91]],"97":[[2,91]],"111":[[2,91]],"113":[[2,91]],"116":[[2,91]],"125":[[2,91]],"129":[[2,91]],"137":[[2,91]],"138":119,"139":[[2,91]],"140":[[2,91]],"141":[[2,91]],"145":[[2,91]],"152":[[2,91]],"156":[[2,91]]},{"1":[[2,92]],"3":[[2,92]],"24":[[2,92]],"25":[[2,92]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[2,92]],"70":[[2,92]],"71":[[2,92]],"72":[[2,92]],"73":[[2,92]],"74":[[2,92]],"75":[[2,92]],"76":[[2,92]],"77":[[1,106]],"78":[[2,92]],"79":[[2,92]],"80":[[2,92]],"81":[[2,92]],"82":[[2,92]],"83":[[2,92]],"84":[[2,92]],"85":[[2,92]],"86":[[1,115]],"87":[[2,92]],"95":[[2,92]],"97":[[2,92]],"111":[[2,92]],"113":[[2,92]],"116":[[2,92]],"125":[[2,92]],"129":[[2,92]],"137":[[2,92]],"138":119,"139":[[2,92]],"140":[[2,92]],"141":[[2,92]],"145":[[2,92]],"152":[[2,92]],"156":[[2,92]]},{"1":[[2,93]],"3":[[2,93]],"24":[[2,93]],"25":[[2,93]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,93]],"97":[[1,121]],"111":[[2,93]],"113":[[2,93]],"116":[[2,93]],"125":[[2,93]],"129":[[2,93]],"137":[[2,93]],"138":119,"139":[[2,93]],"140":[[2,93]],"141":[[2,93]],"145":[[2,93]],"152":[[2,93]],"156":[[2,93]]},{"1":[[2,190]],"3":[[2,190]],"24":[[2,190]],"25":[[2,190]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,190]],"97":[[1,121]],"111":[[2,190]],"113":[[2,190]],"116":[[2,190]],"125":[[2,190]],"129":[[2,190]],"137":[[2,190]],"138":119,"139":[[1,75]],"140":[[2,190]],"141":[[1,120]],"145":[[2,190]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,191]],"3":[[2,191]],"24":[[2,191]],"25":[[2,191]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,191]],"97":[[1,121]],"111":[[2,191]],"113":[[2,191]],"116":[[2,191]],"125":[[2,191]],"129":[[2,191]],"137":[[2,191]],"138":119,"139":[[1,75]],"140":[[2,191]],"141":[[1,120]],"145":[[2,191]],"152":[[1,117]],"156":[[1,118]]},{"87":[[1,236]],"143":262,"144":[[1,237]]},{"97":[[1,263]]},{"1":[[2,25]],"3":[[2,25]],"24":[[2,25]],"25":[[2,25]],"45":[[2,25]],"48":[[2,25]],"49":[[2,25]],"52":[[2,25]],"53":[[2,25]],"56":[[2,25]],"57":[[2,25]],"58":[[2,25]],"59":[[2,25]],"60":[[2,25]],"61":[[2,25]],"62":[[2,25]],"63":[[2,25]],"64":[[2,25]],"65":[[2,25]],"66":[[2,25]],"67":[[2,25]],"68":[[2,25]],"69":[[2,25]],"70":[[2,25]],"71":[[2,25]],"72":[[2,25]],"73":[[2,25]],"74":[[2,25]],"75":[[2,25]],"76":[[2,25]],"77":[[2,25]],"78":[[2,25]],"79":[[2,25]],"80":[[2,25]],"81":[[2,25]],"82":[[2,25]],"83":[[2,25]],"84":[[2,25]],"85":[[2,25]],"86":[[2,25]],"87":[[2,25]],"95":[[2,25]],"97":[[2,25]],"111":[[2,25]],"113":[[2,25]],"116":[[2,25]],"125":[[2,25]],"129":[[2,25]],"133":[[2,25]],"134":[[2,25]],"137":[[2,25]],"139":[[2,25]],"140":[[2,25]],"141":[[2,25]],"145":[[2,25]],"148":[[2,25]],"150":[[2,25]],"152":[[2,25]],"155":[[2,25]],"156":[[2,25]]},{"1":[[2,41]],"3":[[2,41]],"24":[[2,41]],"25":[[2,41]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,41]],"97":[[1,121]],"111":[[2,41]],"113":[[2,41]],"116":[[2,41]],"125":[[2,41]],"129":[[2,41]],"137":[[2,41]],"138":119,"139":[[2,41]],"140":[[2,41]],"141":[[1,120]],"145":[[2,41]],"152":[[2,41]],"156":[[2,41]]},{"1":[[2,136]],"3":[[2,136]],"24":[[2,136]],"25":[[2,136]],"48":[[2,136]],"49":[[2,136]],"52":[[2,136]],"53":[[2,136]],"56":[[2,136]],"57":[[2,136]],"58":[[2,136]],"59":[[2,136]],"60":[[2,136]],"61":[[2,136]],"62":[[2,136]],"63":[[2,136]],"64":[[2,136]],"65":[[2,136]],"66":[[2,136]],"67":[[2,136]],"68":[[2,136]],"69":[[2,136]],"70":[[2,136]],"71":[[2,136]],"72":[[2,136]],"73":[[2,136]],"74":[[2,136]],"75":[[2,136]],"76":[[2,136]],"77":[[2,136]],"78":[[2,136]],"79":[[2,136]],"80":[[2,136]],"81":[[2,136]],"82":[[2,136]],"83":[[2,136]],"84":[[2,136]],"85":[[2,136]],"86":[[2,136]],"87":[[2,136]],"95":[[2,136]],"97":[[2,136]],"103":124,"105":[[1,128]],"106":[[1,129]],"107":[[1,130]],"108":131,"109":132,"110":[[1,134]],"111":[[2,136]],"112":[[1,135]],"113":[[2,136]],"116":[[2,136]],"122":127,"123":[[1,133]],"125":[[2,136]],"129":[[2,136]],"137":[[2,136]],"139":[[2,136]],"140":[[2,136]],"141":[[2,136]],"145":[[2,136]],"152":[[2,136]],"156":[[2,136]]},{"1":[[2,114]],"3":[[2,114]],"24":[[2,114]],"25":[[2,114]],"42":[[2,114]],"48":[[2,114]],"49":[[2,114]],"52":[[2,114]],"53":[[2,114]],"56":[[2,114]],"57":[[2,114]],"58":[[2,114]],"59":[[2,114]],"60":[[2,114]],"61":[[2,114]],"62":[[2,114]],"63":[[2,114]],"64":[[2,114]],"65":[[2,114]],"66":[[2,114]],"67":[[2,114]],"68":[[2,114]],"69":[[2,114]],"70":[[2,114]],"71":[[2,114]],"72":[[2,114]],"73":[[2,114]],"74":[[2,114]],"75":[[2,114]],"76":[[2,114]],"77":[[2,114]],"78":[[2,114]],"79":[[2,114]],"80":[[2,114]],"81":[[2,114]],"82":[[2,114]],"83":[[2,114]],"84":[[2,114]],"85":[[2,114]],"86":[[2,114]],"87":[[2,114]],"95":[[2,114]],"97":[[2,114]],"105":[[2,114]],"106":[[2,114]],"107":[[2,114]],"110":[[2,114]],"111":[[2,114]],"112":[[2,114]],"113":[[2,114]],"116":[[2,114]],"119":[[2,114]],"123":[[2,114]],"125":[[2,114]],"129":[[2,114]],"137":[[2,114]],"139":[[2,114]],"140":[[2,114]],"141":[[2,114]],"145":[[2,114]],"152":[[2,114]],"156":[[2,114]]},{"1":[[2,115]],"3":[[2,115]],"24":[[2,115]],"25":[[2,115]],"42":[[2,115]],"48":[[2,115]],"49":[[2,115]],"52":[[2,115]],"53":[[2,115]],"56":[[2,115]],"57":[[2,115]],"58":[[2,115]],"59":[[2,115]],"60":[[2,115]],"61":[[2,115]],"62":[[2,115]],"63":[[2,115]],"64":[[2,115]],"65":[[2,115]],"66":[[2,115]],"67":[[2,115]],"68":[[2,115]],"69":[[2,115]],"70":[[2,115]],"71":[[2,115]],"72":[[2,115]],"73":[[2,115]],"74":[[2,115]],"75":[[2,115]],"76":[[2,115]],"77":[[2,115]],"78":[[2,115]],"79":[[2,115]],"80":[[2,115]],"81":[[2,115]],"82":[[2,115]],"83":[[2,115]],"84":[[2,115]],"85":[[2,115]],"86":[[2,115]],"87":[[2,115]],"95":[[2,115]],"97":[[2,115]],"105":[[2,115]],"106":[[2,115]],"107":[[2,115]],"110":[[2,115]],"111":[[2,115]],"112":[[2,115]],"113":[[2,115]],"116":[[2,115]],"119":[[2,115]],"123":[[2,115]],"125":[[2,115]],"129":[[2,115]],"137":[[2,115]],"139":[[2,115]],"140":[[2,115]],"141":[[2,115]],"145":[[2,115]],"152":[[2,115]],"156":[[2,115]]},{"1":[[2,116]],"3":[[2,116]],"24":[[2,116]],"25":[[2,116]],"42":[[2,116]],"48":[[2,116]],"49":[[2,116]],"52":[[2,116]],"53":[[2,116]],"56":[[2,116]],"57":[[2,116]],"58":[[2,116]],"59":[[2,116]],"60":[[2,116]],"61":[[2,116]],"62":[[2,116]],"63":[[2,116]],"64":[[2,116]],"65":[[2,116]],"66":[[2,116]],"67":[[2,116]],"68":[[2,116]],"69":[[2,116]],"70":[[2,116]],"71":[[2,116]],"72":[[2,116]],"73":[[2,116]],"74":[[2,116]],"75":[[2,116]],"76":[[2,116]],"77":[[2,116]],"78":[[2,116]],"79":[[2,116]],"80":[[2,116]],"81":[[2,116]],"82":[[2,116]],"83":[[2,116]],"84":[[2,116]],"85":[[2,116]],"86":[[2,116]],"87":[[2,116]],"95":[[2,116]],"97":[[2,116]],"105":[[2,116]],"106":[[2,116]],"107":[[2,116]],"110":[[2,116]],"111":[[2,116]],"112":[[2,116]],"113":[[2,116]],"116":[[2,116]],"119":[[2,116]],"123":[[2,116]],"125":[[2,116]],"129":[[2,116]],"137":[[2,116]],"139":[[2,116]],"140":[[2,116]],"141":[[2,116]],"145":[[2,116]],"152":[[2,116]],"156":[[2,116]]},{"3":[[1,244]],"25":[[1,245]],"95":[[1,243]],"125":[[1,264]]},{"3":[[2,149]],"25":[[2,149]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,149]],"97":[[1,121]],"125":[[2,149]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,266]],"111":[[1,265]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"113":[[1,267]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"91":268,"92":[[1,72]],"93":[[1,73]]},{"94":269,"96":[[1,142]]},{"97":[[1,270]]},{"1":[[2,158]],"3":[[2,158]],"24":[[2,158]],"25":[[2,158]],"48":[[2,158]],"49":[[2,158]],"52":[[2,158]],"53":[[2,158]],"56":[[2,158]],"57":[[2,158]],"58":[[2,158]],"59":[[2,158]],"60":[[2,158]],"61":[[2,158]],"62":[[2,158]],"63":[[2,158]],"64":[[2,158]],"65":[[2,158]],"66":[[2,158]],"67":[[2,158]],"68":[[2,158]],"69":[[2,158]],"70":[[2,158]],"71":[[2,158]],"72":[[2,158]],"73":[[2,158]],"74":[[2,158]],"75":[[2,158]],"76":[[2,158]],"77":[[2,158]],"78":[[2,158]],"79":[[2,158]],"80":[[2,158]],"81":[[2,158]],"82":[[2,158]],"83":[[2,158]],"84":[[2,158]],"85":[[2,158]],"86":[[2,158]],"87":[[2,158]],"95":[[2,158]],"97":[[2,158]],"111":[[2,158]],"113":[[2,158]],"116":[[2,158]],"125":[[2,158]],"129":[[2,158]],"133":[[1,271]],"137":[[2,158]],"139":[[2,158]],"140":[[2,158]],"141":[[2,158]],"145":[[2,158]],"152":[[2,158]],"156":[[2,158]]},{"5":272,"24":[[1,6]]},{"26":273,"27":[[1,55]]},{"5":274,"24":[[1,6]],"140":[[1,275]],"145":[[1,276]]},{"6":277,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":278,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"26":279,"27":[[1,55]]},{"23":283,"45":[[1,54]],"147":280,"149":281,"150":[[1,282]]},{"7":284,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":162,"114":[[1,68]],"127":[[1,70]],"128":[[1,67]],"136":[[1,69]]},{"1":[[2,125]],"3":[[2,125]],"24":[[2,125]],"25":[[2,125]],"48":[[2,125]],"49":[[2,125]],"52":[[2,125]],"53":[[2,125]],"56":[[2,125]],"57":[[2,125]],"58":[[2,125]],"59":[[2,125]],"60":[[2,125]],"61":[[2,125]],"62":[[2,125]],"63":[[2,125]],"64":[[2,125]],"65":[[2,125]],"66":[[2,125]],"67":[[2,125]],"68":[[2,125]],"69":[[2,125]],"70":[[2,125]],"71":[[2,125]],"72":[[2,125]],"73":[[2,125]],"74":[[2,125]],"75":[[2,125]],"76":[[2,125]],"77":[[2,125]],"78":[[2,125]],"79":[[2,125]],"80":[[2,125]],"81":[[2,125]],"82":[[2,125]],"83":[[2,125]],"84":[[2,125]],"85":[[2,125]],"86":[[2,125]],"87":[[2,125]],"95":[[2,125]],"97":[[2,125]],"111":[[2,125]],"113":[[2,125]],"116":[[2,125]],"125":[[2,125]],"129":[[2,125]],"137":[[2,125]],"139":[[2,125]],"140":[[2,125]],"141":[[2,125]],"145":[[2,125]],"152":[[2,125]],"156":[[2,125]]},{"1":[[2,147]],"3":[[2,147]],"24":[[2,147]],"25":[[2,147]],"42":[[2,147]],"48":[[2,147]],"49":[[2,147]],"52":[[2,147]],"53":[[2,147]],"56":[[2,147]],"57":[[2,147]],"58":[[2,147]],"59":[[2,147]],"60":[[2,147]],"61":[[2,147]],"62":[[2,147]],"63":[[2,147]],"64":[[2,147]],"65":[[2,147]],"66":[[2,147]],"67":[[2,147]],"68":[[2,147]],"69":[[2,147]],"70":[[2,147]],"71":[[2,147]],"72":[[2,147]],"73":[[2,147]],"74":[[2,147]],"75":[[2,147]],"76":[[2,147]],"77":[[2,147]],"78":[[2,147]],"79":[[2,147]],"80":[[2,147]],"81":[[2,147]],"82":[[2,147]],"83":[[2,147]],"84":[[2,147]],"85":[[2,147]],"86":[[2,147]],"87":[[2,147]],"95":[[2,147]],"97":[[2,147]],"105":[[2,147]],"106":[[2,147]],"107":[[2,147]],"110":[[2,147]],"111":[[2,147]],"112":[[2,147]],"113":[[2,147]],"116":[[2,147]],"119":[[2,147]],"123":[[2,147]],"125":[[2,147]],"129":[[2,147]],"137":[[2,147]],"139":[[2,147]],"140":[[2,147]],"141":[[2,147]],"145":[[2,147]],"152":[[2,147]],"156":[[2,147]]},{"3":[[1,286]],"6":285,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[1,287]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":288,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"3":[[2,155]],"25":[[2,155]],"95":[[2,155]],"125":[[2,155]],"129":[[2,155]]},{"97":[[1,289]]},{"3":[[2,150]],"25":[[2,150]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,150]],"97":[[1,121]],"125":[[2,150]],"129":[[2,150]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,121]],"3":[[2,121]],"24":[[2,121]],"25":[[2,121]],"42":[[2,121]],"48":[[2,121]],"49":[[2,121]],"52":[[2,121]],"53":[[2,121]],"56":[[2,121]],"57":[[2,121]],"58":[[2,121]],"59":[[2,121]],"60":[[2,121]],"61":[[2,121]],"62":[[2,121]],"63":[[2,121]],"64":[[2,121]],"65":[[2,121]],"66":[[2,121]],"67":[[2,121]],"68":[[2,121]],"69":[[2,121]],"70":[[2,121]],"71":[[2,121]],"72":[[2,121]],"73":[[2,121]],"74":[[2,121]],"75":[[2,121]],"76":[[2,121]],"77":[[2,121]],"78":[[2,121]],"79":[[2,121]],"80":[[2,121]],"81":[[2,121]],"82":[[2,121]],"83":[[2,121]],"84":[[2,121]],"85":[[2,121]],"86":[[2,121]],"87":[[2,121]],"95":[[2,121]],"97":[[2,121]],"105":[[2,121]],"106":[[2,121]],"107":[[2,121]],"110":[[2,121]],"111":[[2,121]],"112":[[2,121]],"113":[[2,121]],"116":[[2,121]],"119":[[2,121]],"123":[[2,121]],"125":[[2,121]],"129":[[2,121]],"137":[[2,121]],"139":[[2,121]],"140":[[2,121]],"141":[[2,121]],"145":[[2,121]],"152":[[2,121]],"156":[[2,121]]},{"3":[[1,291]],"23":172,"26":170,"27":[[1,55]],"28":171,"29":[[1,76]],"30":[[1,77]],"43":290,"45":[[1,54]]},{"23":172,"26":170,"27":[[1,55]],"28":171,"29":[[1,76]],"30":[[1,77]],"43":292,"45":[[1,54]]},{"1":[[2,122]],"3":[[2,122]],"24":[[2,122]],"25":[[2,122]],"42":[[2,122]],"48":[[2,122]],"49":[[2,122]],"52":[[2,122]],"53":[[2,122]],"56":[[2,122]],"57":[[2,122]],"58":[[2,122]],"59":[[2,122]],"60":[[2,122]],"61":[[2,122]],"62":[[2,122]],"63":[[2,122]],"64":[[2,122]],"65":[[2,122]],"66":[[2,122]],"67":[[2,122]],"68":[[2,122]],"69":[[2,122]],"70":[[2,122]],"71":[[2,122]],"72":[[2,122]],"73":[[2,122]],"74":[[2,122]],"75":[[2,122]],"76":[[2,122]],"77":[[2,122]],"78":[[2,122]],"79":[[2,122]],"80":[[2,122]],"81":[[2,122]],"82":[[2,122]],"83":[[2,122]],"84":[[2,122]],"85":[[2,122]],"86":[[2,122]],"87":[[2,122]],"95":[[2,122]],"97":[[2,122]],"105":[[2,122]],"106":[[2,122]],"107":[[2,122]],"110":[[2,122]],"111":[[2,122]],"112":[[2,122]],"113":[[2,122]],"116":[[2,122]],"119":[[2,122]],"123":[[2,122]],"125":[[2,122]],"129":[[2,122]],"137":[[2,122]],"139":[[2,122]],"140":[[2,122]],"141":[[2,122]],"145":[[2,122]],"152":[[2,122]],"156":[[2,122]]},{"3":[[1,250]],"25":[[1,293]],"95":[[1,249]]},{"6":294,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":295,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,163]],"3":[[2,163]],"24":[[2,163]],"25":[[2,163]],"42":[[2,163]],"48":[[2,163]],"49":[[2,163]],"52":[[2,163]],"53":[[2,163]],"56":[[2,163]],"57":[[2,163]],"58":[[2,163]],"59":[[2,163]],"60":[[2,163]],"61":[[2,163]],"62":[[2,163]],"63":[[2,163]],"64":[[2,163]],"65":[[2,163]],"66":[[2,163]],"67":[[2,163]],"68":[[2,163]],"69":[[2,163]],"70":[[2,163]],"71":[[2,163]],"72":[[2,163]],"73":[[2,163]],"74":[[2,163]],"75":[[2,163]],"76":[[2,163]],"77":[[2,163]],"78":[[2,163]],"79":[[2,163]],"80":[[2,163]],"81":[[2,163]],"82":[[2,163]],"83":[[2,163]],"84":[[2,163]],"85":[[2,163]],"86":[[2,163]],"87":[[2,163]],"95":[[2,163]],"97":[[2,163]],"105":[[2,163]],"106":[[2,163]],"107":[[2,163]],"110":[[2,163]],"111":[[2,163]],"112":[[2,163]],"113":[[2,163]],"116":[[2,163]],"119":[[2,163]],"123":[[2,163]],"125":[[2,163]],"129":[[2,163]],"137":[[2,163]],"139":[[2,163]],"140":[[2,163]],"141":[[2,163]],"145":[[2,163]],"152":[[2,163]],"156":[[2,163]]},{"3":[[1,244]],"25":[[1,245]],"95":[[1,243]],"125":[[1,296]]},{"1":[[2,186]],"3":[[2,186]],"24":[[2,186]],"25":[[2,186]],"48":[[2,186]],"49":[[2,186]],"52":[[2,186]],"53":[[2,186]],"56":[[2,186]],"57":[[2,186]],"58":[[2,186]],"59":[[2,186]],"60":[[2,186]],"61":[[2,186]],"62":[[2,186]],"63":[[2,186]],"64":[[2,186]],"65":[[2,186]],"66":[[2,186]],"67":[[2,186]],"68":[[2,186]],"69":[[2,186]],"70":[[2,186]],"71":[[2,186]],"72":[[2,186]],"73":[[2,186]],"74":[[2,186]],"75":[[2,186]],"76":[[2,186]],"77":[[2,186]],"78":[[2,186]],"79":[[2,186]],"80":[[2,186]],"81":[[2,186]],"82":[[2,186]],"83":[[2,186]],"84":[[2,186]],"85":[[2,186]],"86":[[2,186]],"87":[[2,186]],"95":[[2,186]],"97":[[2,186]],"111":[[2,186]],"113":[[2,186]],"116":[[2,186]],"125":[[2,186]],"129":[[2,186]],"137":[[2,186]],"139":[[2,186]],"140":[[2,186]],"141":[[2,186]],"145":[[2,186]],"152":[[2,186]],"156":[[2,186]]},{"6":297,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,188]],"3":[[2,188]],"24":[[2,188]],"25":[[2,188]],"48":[[2,188]],"49":[[2,188]],"52":[[2,188]],"53":[[2,188]],"56":[[2,188]],"57":[[2,188]],"58":[[2,188]],"59":[[2,188]],"60":[[2,188]],"61":[[2,188]],"62":[[2,188]],"63":[[2,188]],"64":[[2,188]],"65":[[2,188]],"66":[[2,188]],"67":[[2,188]],"68":[[2,188]],"69":[[2,188]],"70":[[2,188]],"71":[[2,188]],"72":[[2,188]],"73":[[2,188]],"74":[[2,188]],"75":[[2,188]],"76":[[2,188]],"77":[[2,188]],"78":[[2,188]],"79":[[2,188]],"80":[[2,188]],"81":[[2,188]],"82":[[2,188]],"83":[[2,188]],"84":[[2,188]],"85":[[2,188]],"86":[[2,188]],"87":[[2,188]],"95":[[2,188]],"97":[[2,188]],"111":[[2,188]],"113":[[2,188]],"116":[[2,188]],"125":[[2,188]],"129":[[2,188]],"137":[[2,188]],"139":[[2,188]],"140":[[2,188]],"141":[[2,188]],"145":[[2,188]],"148":[[2,188]],"152":[[2,188]],"155":[[2,188]],"156":[[2,188]]},{"6":298,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,183]],"3":[[2,183]],"24":[[2,183]],"25":[[2,183]],"48":[[2,183]],"49":[[2,183]],"52":[[2,183]],"53":[[2,183]],"56":[[2,183]],"57":[[2,183]],"58":[[2,183]],"59":[[2,183]],"60":[[2,183]],"61":[[2,183]],"62":[[2,183]],"63":[[2,183]],"64":[[2,183]],"65":[[2,183]],"66":[[2,183]],"67":[[2,183]],"68":[[2,183]],"69":[[2,183]],"70":[[2,183]],"71":[[2,183]],"72":[[2,183]],"73":[[2,183]],"74":[[2,183]],"75":[[2,183]],"76":[[2,183]],"77":[[2,183]],"78":[[2,183]],"79":[[2,183]],"80":[[2,183]],"81":[[2,183]],"82":[[2,183]],"83":[[2,183]],"84":[[2,183]],"85":[[2,183]],"86":[[2,183]],"87":[[2,183]],"95":[[2,183]],"97":[[2,183]],"111":[[2,183]],"113":[[2,183]],"116":[[2,183]],"125":[[2,183]],"129":[[2,183]],"137":[[2,183]],"139":[[2,183]],"140":[[2,183]],"141":[[2,183]],"145":[[2,183]],"148":[[2,183]],"152":[[2,183]],"156":[[2,183]]},{"1":[[2,168]],"3":[[2,168]],"24":[[2,168]],"25":[[2,168]],"48":[[2,168]],"49":[[2,168]],"52":[[2,168]],"53":[[2,168]],"56":[[2,168]],"57":[[2,168]],"58":[[2,168]],"59":[[2,168]],"60":[[2,168]],"61":[[2,168]],"62":[[2,168]],"63":[[2,168]],"64":[[2,168]],"65":[[2,168]],"66":[[2,168]],"67":[[2,168]],"68":[[2,168]],"69":[[2,168]],"70":[[2,168]],"71":[[2,168]],"72":[[2,168]],"73":[[2,168]],"74":[[2,168]],"75":[[2,168]],"76":[[2,168]],"77":[[2,168]],"78":[[2,168]],"79":[[2,168]],"80":[[2,168]],"81":[[2,168]],"82":[[2,168]],"83":[[2,168]],"84":[[2,168]],"85":[[2,168]],"86":[[2,168]],"87":[[2,168]],"95":[[2,168]],"97":[[2,168]],"111":[[2,168]],"113":[[2,168]],"116":[[2,168]],"125":[[2,168]],"129":[[2,168]],"137":[[2,168]],"139":[[2,168]],"140":[[1,275]],"141":[[2,168]],"145":[[1,276]],"152":[[2,168]],"156":[[2,168]]},{"1":[[2,104]],"3":[[2,104]],"24":[[2,104]],"25":[[2,104]],"48":[[2,104]],"49":[[2,104]],"52":[[2,104]],"53":[[2,104]],"56":[[2,104]],"57":[[2,104]],"58":[[2,104]],"59":[[2,104]],"60":[[2,104]],"61":[[2,104]],"62":[[2,104]],"63":[[2,104]],"64":[[2,104]],"65":[[2,104]],"66":[[2,104]],"67":[[2,104]],"68":[[2,104]],"69":[[2,104]],"70":[[2,104]],"71":[[2,104]],"72":[[2,104]],"73":[[2,104]],"74":[[2,104]],"75":[[2,104]],"76":[[2,104]],"77":[[2,104]],"78":[[2,104]],"79":[[2,104]],"80":[[2,104]],"81":[[2,104]],"82":[[2,104]],"83":[[2,104]],"84":[[2,104]],"85":[[2,104]],"86":[[2,104]],"87":[[2,104]],"95":[[2,104]],"97":[[2,104]],"111":[[2,104]],"113":[[2,104]],"116":[[2,104]],"125":[[2,104]],"129":[[2,104]],"137":[[2,104]],"139":[[2,104]],"140":[[2,104]],"141":[[2,104]],"145":[[2,104]],"152":[[2,104]],"156":[[2,104]]},{"1":[[2,139]],"3":[[2,139]],"24":[[2,139]],"25":[[2,139]],"48":[[2,139]],"49":[[2,139]],"52":[[2,139]],"53":[[2,139]],"56":[[2,139]],"57":[[2,139]],"58":[[2,139]],"59":[[2,139]],"60":[[2,139]],"61":[[2,139]],"62":[[2,139]],"63":[[2,139]],"64":[[2,139]],"65":[[2,139]],"66":[[2,139]],"67":[[2,139]],"68":[[2,139]],"69":[[2,139]],"70":[[2,139]],"71":[[2,139]],"72":[[2,139]],"73":[[2,139]],"74":[[2,139]],"75":[[2,139]],"76":[[2,139]],"77":[[2,139]],"78":[[2,139]],"79":[[2,139]],"80":[[2,139]],"81":[[2,139]],"82":[[2,139]],"83":[[2,139]],"84":[[2,139]],"85":[[2,139]],"86":[[2,139]],"87":[[2,139]],"95":[[2,139]],"97":[[2,139]],"105":[[2,139]],"106":[[2,139]],"107":[[2,139]],"110":[[2,139]],"111":[[2,139]],"112":[[2,139]],"113":[[2,139]],"116":[[2,139]],"123":[[2,139]],"125":[[2,139]],"129":[[2,139]],"137":[[2,139]],"139":[[2,139]],"140":[[2,139]],"141":[[2,139]],"145":[[2,139]],"152":[[2,139]],"156":[[2,139]]},{"1":[[2,119]],"3":[[2,119]],"24":[[2,119]],"25":[[2,119]],"42":[[2,119]],"48":[[2,119]],"49":[[2,119]],"52":[[2,119]],"53":[[2,119]],"56":[[2,119]],"57":[[2,119]],"58":[[2,119]],"59":[[2,119]],"60":[[2,119]],"61":[[2,119]],"62":[[2,119]],"63":[[2,119]],"64":[[2,119]],"65":[[2,119]],"66":[[2,119]],"67":[[2,119]],"68":[[2,119]],"69":[[2,119]],"70":[[2,119]],"71":[[2,119]],"72":[[2,119]],"73":[[2,119]],"74":[[2,119]],"75":[[2,119]],"76":[[2,119]],"77":[[2,119]],"78":[[2,119]],"79":[[2,119]],"80":[[2,119]],"81":[[2,119]],"82":[[2,119]],"83":[[2,119]],"84":[[2,119]],"85":[[2,119]],"86":[[2,119]],"87":[[2,119]],"95":[[2,119]],"97":[[2,119]],"105":[[2,119]],"106":[[2,119]],"107":[[2,119]],"110":[[2,119]],"111":[[2,119]],"112":[[2,119]],"113":[[2,119]],"116":[[2,119]],"119":[[2,119]],"123":[[2,119]],"125":[[2,119]],"129":[[2,119]],"137":[[2,119]],"139":[[2,119]],"140":[[2,119]],"141":[[2,119]],"145":[[2,119]],"152":[[2,119]],"156":[[2,119]]},{"97":[[1,299]]},{"1":[[2,120]],"3":[[2,120]],"24":[[2,120]],"25":[[2,120]],"42":[[2,120]],"48":[[2,120]],"49":[[2,120]],"52":[[2,120]],"53":[[2,120]],"56":[[2,120]],"57":[[2,120]],"58":[[2,120]],"59":[[2,120]],"60":[[2,120]],"61":[[2,120]],"62":[[2,120]],"63":[[2,120]],"64":[[2,120]],"65":[[2,120]],"66":[[2,120]],"67":[[2,120]],"68":[[2,120]],"69":[[2,120]],"70":[[2,120]],"71":[[2,120]],"72":[[2,120]],"73":[[2,120]],"74":[[2,120]],"75":[[2,120]],"76":[[2,120]],"77":[[2,120]],"78":[[2,120]],"79":[[2,120]],"80":[[2,120]],"81":[[2,120]],"82":[[2,120]],"83":[[2,120]],"84":[[2,120]],"85":[[2,120]],"86":[[2,120]],"87":[[2,120]],"95":[[2,120]],"97":[[2,120]],"105":[[2,120]],"106":[[2,120]],"107":[[2,120]],"110":[[2,120]],"111":[[2,120]],"112":[[2,120]],"113":[[2,120]],"116":[[2,120]],"119":[[2,120]],"123":[[2,120]],"125":[[2,120]],"129":[[2,120]],"137":[[2,120]],"139":[[2,120]],"140":[[2,120]],"141":[[2,120]],"145":[[2,120]],"152":[[2,120]],"156":[[2,120]]},{"5":300,"24":[[1,6]]},{"90":[[2,101]],"95":[[2,101]],"97":[[1,231]]},{"97":[[1,301]]},{"5":302,"24":[[1,6]]},{"1":[[2,159]],"3":[[2,159]],"24":[[2,159]],"25":[[2,159]],"48":[[2,159]],"49":[[2,159]],"52":[[2,159]],"53":[[2,159]],"56":[[2,159]],"57":[[2,159]],"58":[[2,159]],"59":[[2,159]],"60":[[2,159]],"61":[[2,159]],"62":[[2,159]],"63":[[2,159]],"64":[[2,159]],"65":[[2,159]],"66":[[2,159]],"67":[[2,159]],"68":[[2,159]],"69":[[2,159]],"70":[[2,159]],"71":[[2,159]],"72":[[2,159]],"73":[[2,159]],"74":[[2,159]],"75":[[2,159]],"76":[[2,159]],"77":[[2,159]],"78":[[2,159]],"79":[[2,159]],"80":[[2,159]],"81":[[2,159]],"82":[[2,159]],"83":[[2,159]],"84":[[2,159]],"85":[[2,159]],"86":[[2,159]],"87":[[2,159]],"95":[[2,159]],"97":[[2,159]],"111":[[2,159]],"113":[[2,159]],"116":[[2,159]],"125":[[2,159]],"129":[[2,159]],"137":[[2,159]],"139":[[2,159]],"140":[[2,159]],"141":[[2,159]],"145":[[2,159]],"152":[[2,159]],"156":[[2,159]]},{"5":303,"24":[[1,6]]},{"1":[[2,169]],"3":[[2,169]],"24":[[2,169]],"25":[[2,169]],"48":[[2,169]],"49":[[2,169]],"52":[[2,169]],"53":[[2,169]],"56":[[2,169]],"57":[[2,169]],"58":[[2,169]],"59":[[2,169]],"60":[[2,169]],"61":[[2,169]],"62":[[2,169]],"63":[[2,169]],"64":[[2,169]],"65":[[2,169]],"66":[[2,169]],"67":[[2,169]],"68":[[2,169]],"69":[[2,169]],"70":[[2,169]],"71":[[2,169]],"72":[[2,169]],"73":[[2,169]],"74":[[2,169]],"75":[[2,169]],"76":[[2,169]],"77":[[2,169]],"78":[[2,169]],"79":[[2,169]],"80":[[2,169]],"81":[[2,169]],"82":[[2,169]],"83":[[2,169]],"84":[[2,169]],"85":[[2,169]],"86":[[2,169]],"87":[[2,169]],"95":[[2,169]],"97":[[2,169]],"111":[[2,169]],"113":[[2,169]],"116":[[2,169]],"125":[[2,169]],"129":[[2,169]],"137":[[2,169]],"139":[[2,169]],"140":[[2,169]],"141":[[2,169]],"145":[[2,169]],"152":[[2,169]],"156":[[2,169]]},{"6":304,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":305,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,172]],"3":[[2,172]],"24":[[2,172]],"25":[[2,172]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,172]],"97":[[1,121]],"111":[[2,172]],"113":[[2,172]],"116":[[2,172]],"125":[[2,172]],"129":[[2,172]],"137":[[2,172]],"138":119,"139":[[2,172]],"140":[[2,172]],"141":[[2,172]],"145":[[2,172]],"152":[[2,172]],"156":[[2,172]]},{"1":[[2,173]],"3":[[2,173]],"24":[[2,173]],"25":[[2,173]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,173]],"97":[[1,121]],"111":[[2,173]],"113":[[2,173]],"116":[[2,173]],"125":[[2,173]],"129":[[2,173]],"137":[[2,173]],"138":119,"139":[[2,173]],"140":[[2,173]],"141":[[2,173]],"145":[[2,173]],"152":[[2,173]],"156":[[2,173]]},{"87":[[2,171]],"144":[[2,171]]},{"23":283,"25":[[1,306]],"45":[[1,54]],"148":[[1,307]],"149":308,"150":[[1,282]]},{"25":[[2,178]],"45":[[2,178]],"148":[[2,178]],"150":[[2,178]]},{"6":310,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"130":309,"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"3":[[1,311]]},{"1":[[2,124]],"3":[[2,124]],"24":[[1,169]],"25":[[2,124]],"48":[[2,124]],"49":[[2,124]],"52":[[2,124]],"53":[[2,124]],"56":[[2,124]],"57":[[2,124]],"58":[[2,124]],"59":[[2,124]],"60":[[2,124]],"61":[[2,124]],"62":[[2,124]],"63":[[2,124]],"64":[[2,124]],"65":[[2,124]],"66":[[2,124]],"67":[[2,124]],"68":[[2,124]],"69":[[2,124]],"70":[[2,124]],"71":[[2,124]],"72":[[2,124]],"73":[[2,124]],"74":[[2,124]],"75":[[2,124]],"76":[[2,124]],"77":[[2,124]],"78":[[2,124]],"79":[[2,124]],"80":[[2,124]],"81":[[2,124]],"82":[[2,124]],"83":[[2,124]],"84":[[2,124]],"85":[[2,124]],"86":[[2,124]],"87":[[2,124]],"95":[[2,124]],"97":[[2,124]],"103":124,"105":[[1,128]],"106":[[1,129]],"107":[[1,130]],"108":131,"109":132,"110":[[1,134]],"111":[[2,124]],"112":[[1,135]],"113":[[2,124]],"116":[[2,124]],"117":312,"122":127,"123":[[1,133]],"125":[[2,124]],"129":[[2,124]],"137":[[2,124]],"139":[[2,124]],"140":[[2,124]],"141":[[2,124]],"145":[[2,124]],"152":[[2,124]],"156":[[2,124]]},{"3":[[2,151]],"25":[[2,151]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,151]],"97":[[1,121]],"125":[[2,151]],"129":[[2,151]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"6":313,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"6":314,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"3":[[2,152]],"25":[[2,152]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,152]],"97":[[1,121]],"125":[[2,152]],"129":[[2,152]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"6":315,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"97":[[1,316]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"3":[[2,129]],"25":[[2,129]],"95":[[2,129]],"116":[[2,129]]},{"23":172,"26":170,"27":[[1,55]],"28":171,"29":[[1,76]],"30":[[1,77]],"43":317,"45":[[1,54]]},{"3":[[2,130]],"25":[[2,130]],"95":[[2,130]],"116":[[2,130]]},{"1":[[2,132]],"3":[[2,132]],"24":[[2,132]],"25":[[2,132]],"48":[[2,132]],"49":[[2,132]],"52":[[2,132]],"53":[[2,132]],"56":[[2,132]],"57":[[2,132]],"58":[[2,132]],"59":[[2,132]],"60":[[2,132]],"61":[[2,132]],"62":[[2,132]],"63":[[2,132]],"64":[[2,132]],"65":[[2,132]],"66":[[2,132]],"67":[[2,132]],"68":[[2,132]],"69":[[2,132]],"70":[[2,132]],"71":[[2,132]],"72":[[2,132]],"73":[[2,132]],"74":[[2,132]],"75":[[2,132]],"76":[[2,132]],"77":[[2,132]],"78":[[2,132]],"79":[[2,132]],"80":[[2,132]],"81":[[2,132]],"82":[[2,132]],"83":[[2,132]],"84":[[2,132]],"85":[[2,132]],"86":[[2,132]],"87":[[2,132]],"95":[[2,132]],"97":[[2,132]],"111":[[2,132]],"113":[[2,132]],"116":[[2,132]],"125":[[2,132]],"129":[[2,132]],"137":[[2,132]],"139":[[2,132]],"140":[[2,132]],"141":[[2,132]],"145":[[2,132]],"152":[[2,132]],"156":[[2,132]]},{"3":[[2,42]],"25":[[2,42]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,42]],"97":[[1,121]],"116":[[2,42]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"3":[[2,43]],"25":[[2,43]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,43]],"97":[[1,121]],"116":[[2,43]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,140]],"3":[[2,140]],"24":[[2,140]],"25":[[2,140]],"48":[[2,140]],"49":[[2,140]],"52":[[2,140]],"53":[[2,140]],"56":[[2,140]],"57":[[2,140]],"58":[[2,140]],"59":[[2,140]],"60":[[2,140]],"61":[[2,140]],"62":[[2,140]],"63":[[2,140]],"64":[[2,140]],"65":[[2,140]],"66":[[2,140]],"67":[[2,140]],"68":[[2,140]],"69":[[2,140]],"70":[[2,140]],"71":[[2,140]],"72":[[2,140]],"73":[[2,140]],"74":[[2,140]],"75":[[2,140]],"76":[[2,140]],"77":[[2,140]],"78":[[2,140]],"79":[[2,140]],"80":[[2,140]],"81":[[2,140]],"82":[[2,140]],"83":[[2,140]],"84":[[2,140]],"85":[[2,140]],"86":[[2,140]],"87":[[2,140]],"95":[[2,140]],"97":[[2,140]],"111":[[2,140]],"113":[[2,140]],"116":[[2,140]],"125":[[2,140]],"129":[[2,140]],"137":[[2,140]],"139":[[2,140]],"140":[[2,140]],"141":[[2,140]],"145":[[2,140]],"152":[[2,140]],"156":[[2,140]]},{"5":318,"24":[[1,6]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,165]],"3":[[2,165]],"24":[[2,165]],"25":[[2,165]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,165]],"97":[[1,121]],"111":[[2,165]],"113":[[2,165]],"116":[[2,165]],"125":[[2,165]],"129":[[2,165]],"137":[[2,165]],"138":119,"139":[[1,75]],"140":[[2,165]],"141":[[1,120]],"145":[[2,165]],"152":[[1,117]],"156":[[1,118]]},{"6":319,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"97":[[1,320]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"1":[[2,95]],"3":[[2,95]],"24":[[2,95]],"25":[[2,95]],"48":[[2,95]],"49":[[2,95]],"52":[[2,95]],"53":[[2,95]],"56":[[2,95]],"57":[[2,95]],"58":[[2,95]],"59":[[2,95]],"60":[[2,95]],"61":[[2,95]],"62":[[2,95]],"63":[[2,95]],"64":[[2,95]],"65":[[2,95]],"66":[[2,95]],"67":[[2,95]],"68":[[2,95]],"69":[[2,95]],"70":[[2,95]],"71":[[2,95]],"72":[[2,95]],"73":[[2,95]],"74":[[2,95]],"75":[[2,95]],"76":[[2,95]],"77":[[2,95]],"78":[[2,95]],"79":[[2,95]],"80":[[2,95]],"81":[[2,95]],"82":[[2,95]],"83":[[2,95]],"84":[[2,95]],"85":[[2,95]],"86":[[2,95]],"87":[[2,95]],"95":[[2,95]],"97":[[2,95]],"111":[[2,95]],"113":[[2,95]],"116":[[2,95]],"125":[[2,95]],"129":[[2,95]],"137":[[2,95]],"139":[[2,95]],"140":[[2,95]],"141":[[2,95]],"145":[[2,95]],"152":[[2,95]],"156":[[2,95]]},{"90":[[2,103]],"95":[[2,103]],"97":[[2,103]]},{"1":[[2,160]],"3":[[2,160]],"24":[[2,160]],"25":[[2,160]],"48":[[2,160]],"49":[[2,160]],"52":[[2,160]],"53":[[2,160]],"56":[[2,160]],"57":[[2,160]],"58":[[2,160]],"59":[[2,160]],"60":[[2,160]],"61":[[2,160]],"62":[[2,160]],"63":[[2,160]],"64":[[2,160]],"65":[[2,160]],"66":[[2,160]],"67":[[2,160]],"68":[[2,160]],"69":[[2,160]],"70":[[2,160]],"71":[[2,160]],"72":[[2,160]],"73":[[2,160]],"74":[[2,160]],"75":[[2,160]],"76":[[2,160]],"77":[[2,160]],"78":[[2,160]],"79":[[2,160]],"80":[[2,160]],"81":[[2,160]],"82":[[2,160]],"83":[[2,160]],"84":[[2,160]],"85":[[2,160]],"86":[[2,160]],"87":[[2,160]],"95":[[2,160]],"97":[[2,160]],"111":[[2,160]],"113":[[2,160]],"116":[[2,160]],"125":[[2,160]],"129":[[2,160]],"137":[[2,160]],"139":[[2,160]],"140":[[2,160]],"141":[[2,160]],"145":[[2,160]],"152":[[2,160]],"156":[[2,160]]},{"1":[[2,161]],"3":[[2,161]],"24":[[2,161]],"25":[[2,161]],"48":[[2,161]],"49":[[2,161]],"52":[[2,161]],"53":[[2,161]],"56":[[2,161]],"57":[[2,161]],"58":[[2,161]],"59":[[2,161]],"60":[[2,161]],"61":[[2,161]],"62":[[2,161]],"63":[[2,161]],"64":[[2,161]],"65":[[2,161]],"66":[[2,161]],"67":[[2,161]],"68":[[2,161]],"69":[[2,161]],"70":[[2,161]],"71":[[2,161]],"72":[[2,161]],"73":[[2,161]],"74":[[2,161]],"75":[[2,161]],"76":[[2,161]],"77":[[2,161]],"78":[[2,161]],"79":[[2,161]],"80":[[2,161]],"81":[[2,161]],"82":[[2,161]],"83":[[2,161]],"84":[[2,161]],"85":[[2,161]],"86":[[2,161]],"87":[[2,161]],"95":[[2,161]],"97":[[2,161]],"111":[[2,161]],"113":[[2,161]],"116":[[2,161]],"125":[[2,161]],"129":[[2,161]],"133":[[2,161]],"137":[[2,161]],"139":[[2,161]],"140":[[2,161]],"141":[[2,161]],"145":[[2,161]],"152":[[2,161]],"156":[[2,161]]},{"1":[[2,174]],"3":[[2,174]],"24":[[2,174]],"25":[[2,174]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,174]],"97":[[1,121]],"111":[[2,174]],"113":[[2,174]],"116":[[2,174]],"125":[[2,174]],"129":[[2,174]],"137":[[2,174]],"138":119,"139":[[2,174]],"140":[[2,174]],"141":[[2,174]],"145":[[2,174]],"152":[[2,174]],"156":[[2,174]]},{"1":[[2,175]],"3":[[2,175]],"24":[[2,175]],"25":[[2,175]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,175]],"97":[[1,121]],"111":[[2,175]],"113":[[2,175]],"116":[[2,175]],"125":[[2,175]],"129":[[2,175]],"137":[[2,175]],"138":119,"139":[[2,175]],"140":[[2,175]],"141":[[2,175]],"145":[[2,175]],"152":[[2,175]],"156":[[2,175]]},{"1":[[2,176]],"3":[[2,176]],"24":[[2,176]],"25":[[2,176]],"48":[[2,176]],"49":[[2,176]],"52":[[2,176]],"53":[[2,176]],"56":[[2,176]],"57":[[2,176]],"58":[[2,176]],"59":[[2,176]],"60":[[2,176]],"61":[[2,176]],"62":[[2,176]],"63":[[2,176]],"64":[[2,176]],"65":[[2,176]],"66":[[2,176]],"67":[[2,176]],"68":[[2,176]],"69":[[2,176]],"70":[[2,176]],"71":[[2,176]],"72":[[2,176]],"73":[[2,176]],"74":[[2,176]],"75":[[2,176]],"76":[[2,176]],"77":[[2,176]],"78":[[2,176]],"79":[[2,176]],"80":[[2,176]],"81":[[2,176]],"82":[[2,176]],"83":[[2,176]],"84":[[2,176]],"85":[[2,176]],"86":[[2,176]],"87":[[2,176]],"95":[[2,176]],"97":[[2,176]],"111":[[2,176]],"113":[[2,176]],"116":[[2,176]],"125":[[2,176]],"129":[[2,176]],"137":[[2,176]],"139":[[2,176]],"140":[[2,176]],"141":[[2,176]],"145":[[2,176]],"152":[[2,176]],"156":[[2,176]]},{"5":321,"24":[[1,6]]},{"25":[[2,179]],"45":[[2,179]],"148":[[2,179]],"150":[[2,179]]},{"5":322,"24":[[1,6]],"95":[[1,323]]},{"24":[[2,156]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,156]],"97":[[1,121]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"23":283,"45":[[1,54]],"149":324,"150":[[1,282]]},{"1":[[2,126]],"3":[[2,126]],"24":[[2,126]],"25":[[2,126]],"48":[[2,126]],"49":[[2,126]],"52":[[2,126]],"53":[[2,126]],"56":[[2,126]],"57":[[2,126]],"58":[[2,126]],"59":[[2,126]],"60":[[2,126]],"61":[[2,126]],"62":[[2,126]],"63":[[2,126]],"64":[[2,126]],"65":[[2,126]],"66":[[2,126]],"67":[[2,126]],"68":[[2,126]],"69":[[2,126]],"70":[[2,126]],"71":[[2,126]],"72":[[2,126]],"73":[[2,126]],"74":[[2,126]],"75":[[2,126]],"76":[[2,126]],"77":[[2,126]],"78":[[2,126]],"79":[[2,126]],"80":[[2,126]],"81":[[2,126]],"82":[[2,126]],"83":[[2,126]],"84":[[2,126]],"85":[[2,126]],"86":[[2,126]],"87":[[2,126]],"95":[[2,126]],"97":[[2,126]],"111":[[2,126]],"113":[[2,126]],"116":[[2,126]],"125":[[2,126]],"129":[[2,126]],"137":[[2,126]],"139":[[2,126]],"140":[[2,126]],"141":[[2,126]],"145":[[2,126]],"152":[[2,126]],"156":[[2,126]]},{"3":[[2,153]],"25":[[2,153]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,153]],"97":[[1,121]],"125":[[2,153]],"129":[[2,153]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"3":[[2,154]],"25":[[2,154]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,154]],"97":[[1,121]],"125":[[2,154]],"129":[[2,154]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"129":[[1,325]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"3":[[2,104]],"6":326,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"25":[[2,104]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"56":[[2,104]],"57":[[2,104]],"58":[[2,104]],"59":[[2,104]],"60":[[2,104]],"61":[[2,104]],"62":[[2,104]],"63":[[2,104]],"64":[[2,104]],"65":[[2,104]],"66":[[2,104]],"67":[[2,104]],"68":[[2,104]],"69":[[2,104]],"70":[[2,104]],"71":[[2,104]],"72":[[2,104]],"73":[[2,104]],"74":[[2,104]],"75":[[2,104]],"76":[[2,104]],"77":[[2,104]],"78":[[2,104]],"79":[[2,104]],"80":[[2,104]],"81":[[2,104]],"82":[[2,104]],"83":[[2,104]],"84":[[2,104]],"85":[[2,104]],"86":[[2,104]],"87":[[2,104]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"95":[[2,104]],"97":[[2,104]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"129":[[2,104]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[2,104]],"141":[[2,104]],"146":[[1,52]],"151":74,"152":[[2,104]],"154":46,"156":[[2,104]]},{"3":[[2,131]],"25":[[2,131]],"95":[[2,131]],"116":[[2,131]]},{"1":[[2,187]],"3":[[2,187]],"24":[[2,187]],"25":[[2,187]],"48":[[2,187]],"49":[[2,187]],"52":[[2,187]],"53":[[2,187]],"56":[[2,187]],"57":[[2,187]],"58":[[2,187]],"59":[[2,187]],"60":[[2,187]],"61":[[2,187]],"62":[[2,187]],"63":[[2,187]],"64":[[2,187]],"65":[[2,187]],"66":[[2,187]],"67":[[2,187]],"68":[[2,187]],"69":[[2,187]],"70":[[2,187]],"71":[[2,187]],"72":[[2,187]],"73":[[2,187]],"74":[[2,187]],"75":[[2,187]],"76":[[2,187]],"77":[[2,187]],"78":[[2,187]],"79":[[2,187]],"80":[[2,187]],"81":[[2,187]],"82":[[2,187]],"83":[[2,187]],"84":[[2,187]],"85":[[2,187]],"86":[[2,187]],"87":[[2,187]],"95":[[2,187]],"97":[[2,187]],"111":[[2,187]],"113":[[2,187]],"116":[[2,187]],"125":[[2,187]],"129":[[2,187]],"137":[[2,187]],"139":[[2,187]],"140":[[2,187]],"141":[[2,187]],"145":[[2,187]],"148":[[2,187]],"152":[[2,187]],"155":[[2,187]],"156":[[2,187]]},{"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"111":[[1,327]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"6":328,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"56":[[2,104]],"57":[[2,104]],"58":[[2,104]],"59":[[2,104]],"60":[[2,104]],"61":[[2,104]],"62":[[2,104]],"63":[[2,104]],"64":[[2,104]],"65":[[2,104]],"66":[[2,104]],"67":[[2,104]],"68":[[2,104]],"69":[[2,104]],"70":[[2,104]],"71":[[2,104]],"72":[[2,104]],"73":[[2,104]],"74":[[2,104]],"75":[[2,104]],"76":[[2,104]],"77":[[2,104]],"78":[[2,104]],"79":[[2,104]],"80":[[2,104]],"81":[[2,104]],"82":[[2,104]],"83":[[2,104]],"84":[[2,104]],"85":[[2,104]],"86":[[2,104]],"87":[[2,104]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"97":[[2,104]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"111":[[2,104]],"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[2,104]],"141":[[2,104]],"146":[[1,52]],"151":74,"152":[[2,104]],"154":46,"156":[[2,104]]},{"25":[[1,329]]},{"3":[[1,330]],"25":[[2,180]],"45":[[2,180]],"148":[[2,180]],"150":[[2,180]]},{"6":331,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[1,36]],"47":[[1,37]],"48":[[1,38]],"49":[[1,39]],"50":[[1,40]],"51":[[1,41]],"52":[[1,42]],"53":[[1,43]],"54":[[1,44]],"55":[[1,45]],"88":[[1,34]],"91":35,"92":[[1,72]],"93":[[1,73]],"98":26,"99":27,"100":28,"101":29,"102":30,"104":31,"114":[[1,68]],"118":[[1,53]],"120":[[1,32]],"121":33,"126":[[1,71]],"127":[[1,70]],"128":[[1,67]],"131":[[1,47]],"135":[[1,48]],"136":[[1,69]],"138":50,"139":[[1,75]],"141":[[1,51]],"146":[[1,52]],"151":74,"152":[[1,78]],"154":46},{"25":[[2,182]],"45":[[2,182]],"148":[[2,182]],"150":[[2,182]]},{"1":[[2,143]],"3":[[2,143]],"24":[[2,143]],"25":[[2,143]],"42":[[2,143]],"48":[[2,143]],"49":[[2,143]],"52":[[2,143]],"53":[[2,143]],"56":[[2,143]],"57":[[2,143]],"58":[[2,143]],"59":[[2,143]],"60":[[2,143]],"61":[[2,143]],"62":[[2,143]],"63":[[2,143]],"64":[[2,143]],"65":[[2,143]],"66":[[2,143]],"67":[[2,143]],"68":[[2,143]],"69":[[2,143]],"70":[[2,143]],"71":[[2,143]],"72":[[2,143]],"73":[[2,143]],"74":[[2,143]],"75":[[2,143]],"76":[[2,143]],"77":[[2,143]],"78":[[2,143]],"79":[[2,143]],"80":[[2,143]],"81":[[2,143]],"82":[[2,143]],"83":[[2,143]],"84":[[2,143]],"85":[[2,143]],"86":[[2,143]],"87":[[2,143]],"95":[[2,143]],"97":[[2,143]],"105":[[2,143]],"106":[[2,143]],"107":[[2,143]],"110":[[2,143]],"111":[[2,143]],"112":[[2,143]],"113":[[2,143]],"116":[[2,143]],"119":[[2,143]],"123":[[2,143]],"125":[[2,143]],"129":[[2,143]],"137":[[2,143]],"139":[[2,143]],"140":[[2,143]],"141":[[2,143]],"145":[[2,143]],"152":[[2,143]],"156":[[2,143]]},{"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"129":[[1,332]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,145]],"3":[[2,145]],"24":[[2,145]],"25":[[2,145]],"42":[[2,145]],"48":[[2,145]],"49":[[2,145]],"52":[[2,145]],"53":[[2,145]],"56":[[2,145]],"57":[[2,145]],"58":[[2,145]],"59":[[2,145]],"60":[[2,145]],"61":[[2,145]],"62":[[2,145]],"63":[[2,145]],"64":[[2,145]],"65":[[2,145]],"66":[[2,145]],"67":[[2,145]],"68":[[2,145]],"69":[[2,145]],"70":[[2,145]],"71":[[2,145]],"72":[[2,145]],"73":[[2,145]],"74":[[2,145]],"75":[[2,145]],"76":[[2,145]],"77":[[2,145]],"78":[[2,145]],"79":[[2,145]],"80":[[2,145]],"81":[[2,145]],"82":[[2,145]],"83":[[2,145]],"84":[[2,145]],"85":[[2,145]],"86":[[2,145]],"87":[[2,145]],"95":[[2,145]],"97":[[2,145]],"105":[[2,145]],"106":[[2,145]],"107":[[2,145]],"110":[[2,145]],"111":[[2,145]],"112":[[2,145]],"113":[[2,145]],"116":[[2,145]],"119":[[2,145]],"123":[[2,145]],"125":[[2,145]],"129":[[2,145]],"137":[[2,145]],"139":[[2,145]],"140":[[2,145]],"141":[[2,145]],"145":[[2,145]],"152":[[2,145]],"156":[[2,145]]},{"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"97":[[1,121]],"111":[[1,333]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,177]],"3":[[2,177]],"24":[[2,177]],"25":[[2,177]],"48":[[2,177]],"49":[[2,177]],"52":[[2,177]],"53":[[2,177]],"56":[[2,177]],"57":[[2,177]],"58":[[2,177]],"59":[[2,177]],"60":[[2,177]],"61":[[2,177]],"62":[[2,177]],"63":[[2,177]],"64":[[2,177]],"65":[[2,177]],"66":[[2,177]],"67":[[2,177]],"68":[[2,177]],"69":[[2,177]],"70":[[2,177]],"71":[[2,177]],"72":[[2,177]],"73":[[2,177]],"74":[[2,177]],"75":[[2,177]],"76":[[2,177]],"77":[[2,177]],"78":[[2,177]],"79":[[2,177]],"80":[[2,177]],"81":[[2,177]],"82":[[2,177]],"83":[[2,177]],"84":[[2,177]],"85":[[2,177]],"86":[[2,177]],"87":[[2,177]],"95":[[2,177]],"97":[[2,177]],"111":[[2,177]],"113":[[2,177]],"116":[[2,177]],"125":[[2,177]],"129":[[2,177]],"137":[[2,177]],"139":[[2,177]],"140":[[2,177]],"141":[[2,177]],"145":[[2,177]],"152":[[2,177]],"156":[[2,177]]},{"25":[[2,181]],"45":[[2,181]],"148":[[2,181]],"150":[[2,181]]},{"24":[[2,157]],"48":[[1,87]],"49":[[1,86]],"52":[[1,81]],"53":[[1,82]],"56":[[1,83]],"57":[[1,84]],"58":[[1,85]],"59":[[1,88]],"60":[[1,89]],"61":[[1,90]],"62":[[1,91]],"63":[[1,92]],"64":[[1,93]],"65":[[1,94]],"66":[[1,95]],"67":[[1,96]],"68":[[1,97]],"69":[[1,98]],"70":[[1,99]],"71":[[1,100]],"72":[[1,101]],"73":[[1,102]],"74":[[1,103]],"75":[[1,104]],"76":[[1,105]],"77":[[1,106]],"78":[[1,107]],"79":[[1,108]],"80":[[1,109]],"81":[[1,110]],"82":[[1,111]],"83":[[1,112]],"84":[[1,113]],"85":[[1,114]],"86":[[1,115]],"87":[[1,116]],"95":[[2,157]],"97":[[1,121]],"138":119,"139":[[1,75]],"141":[[1,120]],"152":[[1,117]],"156":[[1,118]]},{"1":[[2,144]],"3":[[2,144]],"24":[[2,144]],"25":[[2,144]],"42":[[2,144]],"48":[[2,144]],"49":[[2,144]],"52":[[2,144]],"53":[[2,144]],"56":[[2,144]],"57":[[2,144]],"58":[[2,144]],"59":[[2,144]],"60":[[2,144]],"61":[[2,144]],"62":[[2,144]],"63":[[2,144]],"64":[[2,144]],"65":[[2,144]],"66":[[2,144]],"67":[[2,144]],"68":[[2,144]],"69":[[2,144]],"70":[[2,144]],"71":[[2,144]],"72":[[2,144]],"73":[[2,144]],"74":[[2,144]],"75":[[2,144]],"76":[[2,144]],"77":[[2,144]],"78":[[2,144]],"79":[[2,144]],"80":[[2,144]],"81":[[2,144]],"82":[[2,144]],"83":[[2,144]],"84":[[2,144]],"85":[[2,144]],"86":[[2,144]],"87":[[2,144]],"95":[[2,144]],"97":[[2,144]],"105":[[2,144]],"106":[[2,144]],"107":[[2,144]],"110":[[2,144]],"111":[[2,144]],"112":[[2,144]],"113":[[2,144]],"116":[[2,144]],"119":[[2,144]],"123":[[2,144]],"125":[[2,144]],"129":[[2,144]],"137":[[2,144]],"139":[[2,144]],"140":[[2,144]],"141":[[2,144]],"145":[[2,144]],"152":[[2,144]],"156":[[2,144]]},{"1":[[2,146]],"3":[[2,146]],"24":[[2,146]],"25":[[2,146]],"42":[[2,146]],"48":[[2,146]],"49":[[2,146]],"52":[[2,146]],"53":[[2,146]],"56":[[2,146]],"57":[[2,146]],"58":[[2,146]],"59":[[2,146]],"60":[[2,146]],"61":[[2,146]],"62":[[2,146]],"63":[[2,146]],"64":[[2,146]],"65":[[2,146]],"66":[[2,146]],"67":[[2,146]],"68":[[2,146]],"69":[[2,146]],"70":[[2,146]],"71":[[2,146]],"72":[[2,146]],"73":[[2,146]],"74":[[2,146]],"75":[[2,146]],"76":[[2,146]],"77":[[2,146]],"78":[[2,146]],"79":[[2,146]],"80":[[2,146]],"81":[[2,146]],"82":[[2,146]],"83":[[2,146]],"84":[[2,146]],"85":[[2,146]],"86":[[2,146]],"87":[[2,146]],"95":[[2,146]],"97":[[2,146]],"105":[[2,146]],"106":[[2,146]],"107":[[2,146]],"110":[[2,146]],"111":[[2,146]],"112":[[2,146]],"113":[[2,146]],"116":[[2,146]],"119":[[2,146]],"123":[[2,146]],"125":[[2,146]],"129":[[2,146]],"137":[[2,146]],"139":[[2,146]],"140":[[2,146]],"141":[[2,146]],"145":[[2,146]],"152":[[2,146]],"156":[[2,146]]}], +table: [{"1":[[2,1]],"2":1,"3":[[1,2]],"4":3,"5":4,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[1,6]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[3]]},{"1":[[2,2]]},{"1":[[2,3]],"3":[[1,79]]},{"3":[[1,80]]},{"1":[[2,5]],"3":[[2,5]],"25":[[2,5]],"46":[[1,106]],"56":[[1,121]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"4":122,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"25":[[1,123]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,8]],"3":[[2,8]],"24":[[2,8]],"25":[[2,8]],"42":[[1,125]],"46":[[2,8]],"54":[[2,8]],"56":[[2,8]],"62":124,"64":[[1,128]],"65":[[1,129]],"66":[[1,130]],"67":131,"68":132,"69":[[1,134]],"70":[[2,8]],"71":[[1,135]],"72":[[2,8]],"75":[[2,8]],"78":[[1,126]],"81":127,"82":[[1,133]],"84":[[2,8]],"88":[[2,8]],"96":[[2,8]],"98":[[2,8]],"99":[[2,8]],"100":[[2,8]],"103":[[2,8]],"105":[[2,8]],"112":[[2,8]],"115":[[2,8]],"118":[[2,8]],"119":[[2,8]],"122":[[2,8]],"123":[[2,8]],"126":[[2,8]],"127":[[2,8]],"128":[[2,8]],"129":[[2,8]],"130":[[2,8]],"131":[[2,8]],"132":[[2,8]],"133":[[2,8]],"134":[[2,8]],"135":[[2,8]],"136":[[2,8]],"137":[[2,8]],"138":[[2,8]],"139":[[2,8]],"140":[[2,8]],"141":[[2,8]],"142":[[2,8]],"143":[[2,8]],"144":[[2,8]],"145":[[2,8]],"146":[[2,8]],"147":[[2,8]],"148":[[2,8]],"149":[[2,8]],"150":[[2,8]],"151":[[2,8]],"152":[[2,8]],"153":[[2,8]],"154":[[2,8]],"155":[[2,8]]},{"1":[[2,9]],"3":[[2,9]],"24":[[2,9]],"25":[[2,9]],"46":[[2,9]],"54":[[2,9]],"56":[[2,9]],"70":[[2,9]],"72":[[2,9]],"75":[[2,9]],"84":[[2,9]],"88":[[2,9]],"96":[[2,9]],"98":[[2,9]],"99":[[2,9]],"100":[[2,9]],"103":[[2,9]],"105":[[2,9]],"112":[[2,9]],"115":[[2,9]],"118":[[2,9]],"119":[[2,9]],"122":[[2,9]],"123":[[2,9]],"126":[[2,9]],"127":[[2,9]],"128":[[2,9]],"129":[[2,9]],"130":[[2,9]],"131":[[2,9]],"132":[[2,9]],"133":[[2,9]],"134":[[2,9]],"135":[[2,9]],"136":[[2,9]],"137":[[2,9]],"138":[[2,9]],"139":[[2,9]],"140":[[2,9]],"141":[[2,9]],"142":[[2,9]],"143":[[2,9]],"144":[[2,9]],"145":[[2,9]],"146":[[2,9]],"147":[[2,9]],"148":[[2,9]],"149":[[2,9]],"150":[[2,9]],"151":[[2,9]],"152":[[2,9]],"153":[[2,9]],"154":[[2,9]],"155":[[2,9]]},{"1":[[2,10]],"3":[[2,10]],"24":[[2,10]],"25":[[2,10]],"46":[[2,10]],"54":[[2,10]],"56":[[2,10]],"70":[[2,10]],"72":[[2,10]],"75":[[2,10]],"84":[[2,10]],"88":[[2,10]],"96":[[2,10]],"98":[[2,10]],"99":[[2,10]],"100":[[2,10]],"103":[[2,10]],"105":[[2,10]],"112":[[2,10]],"115":[[2,10]],"118":[[2,10]],"119":[[2,10]],"122":[[2,10]],"123":[[2,10]],"126":[[2,10]],"127":[[2,10]],"128":[[2,10]],"129":[[2,10]],"130":[[2,10]],"131":[[2,10]],"132":[[2,10]],"133":[[2,10]],"134":[[2,10]],"135":[[2,10]],"136":[[2,10]],"137":[[2,10]],"138":[[2,10]],"139":[[2,10]],"140":[[2,10]],"141":[[2,10]],"142":[[2,10]],"143":[[2,10]],"144":[[2,10]],"145":[[2,10]],"146":[[2,10]],"147":[[2,10]],"148":[[2,10]],"149":[[2,10]],"150":[[2,10]],"151":[[2,10]],"152":[[2,10]],"153":[[2,10]],"154":[[2,10]],"155":[[2,10]]},{"1":[[2,11]],"3":[[2,11]],"24":[[2,11]],"25":[[2,11]],"46":[[2,11]],"54":[[2,11]],"56":[[2,11]],"70":[[2,11]],"72":[[2,11]],"75":[[2,11]],"84":[[2,11]],"88":[[2,11]],"96":[[2,11]],"98":[[2,11]],"99":[[2,11]],"100":[[2,11]],"103":[[2,11]],"105":[[2,11]],"112":[[2,11]],"115":[[2,11]],"118":[[2,11]],"119":[[2,11]],"122":[[2,11]],"123":[[2,11]],"126":[[2,11]],"127":[[2,11]],"128":[[2,11]],"129":[[2,11]],"130":[[2,11]],"131":[[2,11]],"132":[[2,11]],"133":[[2,11]],"134":[[2,11]],"135":[[2,11]],"136":[[2,11]],"137":[[2,11]],"138":[[2,11]],"139":[[2,11]],"140":[[2,11]],"141":[[2,11]],"142":[[2,11]],"143":[[2,11]],"144":[[2,11]],"145":[[2,11]],"146":[[2,11]],"147":[[2,11]],"148":[[2,11]],"149":[[2,11]],"150":[[2,11]],"151":[[2,11]],"152":[[2,11]],"153":[[2,11]],"154":[[2,11]],"155":[[2,11]]},{"1":[[2,12]],"3":[[2,12]],"24":[[2,12]],"25":[[2,12]],"46":[[2,12]],"54":[[2,12]],"56":[[2,12]],"70":[[2,12]],"72":[[2,12]],"75":[[2,12]],"84":[[2,12]],"88":[[2,12]],"96":[[2,12]],"98":[[2,12]],"99":[[2,12]],"100":[[2,12]],"103":[[2,12]],"105":[[2,12]],"112":[[2,12]],"115":[[2,12]],"118":[[2,12]],"119":[[2,12]],"122":[[2,12]],"123":[[2,12]],"126":[[2,12]],"127":[[2,12]],"128":[[2,12]],"129":[[2,12]],"130":[[2,12]],"131":[[2,12]],"132":[[2,12]],"133":[[2,12]],"134":[[2,12]],"135":[[2,12]],"136":[[2,12]],"137":[[2,12]],"138":[[2,12]],"139":[[2,12]],"140":[[2,12]],"141":[[2,12]],"142":[[2,12]],"143":[[2,12]],"144":[[2,12]],"145":[[2,12]],"146":[[2,12]],"147":[[2,12]],"148":[[2,12]],"149":[[2,12]],"150":[[2,12]],"151":[[2,12]],"152":[[2,12]],"153":[[2,12]],"154":[[2,12]],"155":[[2,12]]},{"1":[[2,13]],"3":[[2,13]],"24":[[2,13]],"25":[[2,13]],"46":[[2,13]],"54":[[2,13]],"56":[[2,13]],"70":[[2,13]],"72":[[2,13]],"75":[[2,13]],"84":[[2,13]],"88":[[2,13]],"96":[[2,13]],"98":[[2,13]],"99":[[2,13]],"100":[[2,13]],"103":[[2,13]],"105":[[2,13]],"112":[[2,13]],"115":[[2,13]],"118":[[2,13]],"119":[[2,13]],"122":[[2,13]],"123":[[2,13]],"126":[[2,13]],"127":[[2,13]],"128":[[2,13]],"129":[[2,13]],"130":[[2,13]],"131":[[2,13]],"132":[[2,13]],"133":[[2,13]],"134":[[2,13]],"135":[[2,13]],"136":[[2,13]],"137":[[2,13]],"138":[[2,13]],"139":[[2,13]],"140":[[2,13]],"141":[[2,13]],"142":[[2,13]],"143":[[2,13]],"144":[[2,13]],"145":[[2,13]],"146":[[2,13]],"147":[[2,13]],"148":[[2,13]],"149":[[2,13]],"150":[[2,13]],"151":[[2,13]],"152":[[2,13]],"153":[[2,13]],"154":[[2,13]],"155":[[2,13]]},{"1":[[2,14]],"3":[[2,14]],"24":[[2,14]],"25":[[2,14]],"46":[[2,14]],"54":[[2,14]],"56":[[2,14]],"70":[[2,14]],"72":[[2,14]],"75":[[2,14]],"84":[[2,14]],"88":[[2,14]],"96":[[2,14]],"98":[[2,14]],"99":[[2,14]],"100":[[2,14]],"103":[[2,14]],"105":[[2,14]],"112":[[2,14]],"115":[[2,14]],"118":[[2,14]],"119":[[2,14]],"122":[[2,14]],"123":[[2,14]],"126":[[2,14]],"127":[[2,14]],"128":[[2,14]],"129":[[2,14]],"130":[[2,14]],"131":[[2,14]],"132":[[2,14]],"133":[[2,14]],"134":[[2,14]],"135":[[2,14]],"136":[[2,14]],"137":[[2,14]],"138":[[2,14]],"139":[[2,14]],"140":[[2,14]],"141":[[2,14]],"142":[[2,14]],"143":[[2,14]],"144":[[2,14]],"145":[[2,14]],"146":[[2,14]],"147":[[2,14]],"148":[[2,14]],"149":[[2,14]],"150":[[2,14]],"151":[[2,14]],"152":[[2,14]],"153":[[2,14]],"154":[[2,14]],"155":[[2,14]]},{"1":[[2,15]],"3":[[2,15]],"24":[[2,15]],"25":[[2,15]],"46":[[2,15]],"54":[[2,15]],"56":[[2,15]],"70":[[2,15]],"72":[[2,15]],"75":[[2,15]],"84":[[2,15]],"88":[[2,15]],"96":[[2,15]],"98":[[2,15]],"99":[[2,15]],"100":[[2,15]],"103":[[2,15]],"105":[[2,15]],"112":[[2,15]],"115":[[2,15]],"118":[[2,15]],"119":[[2,15]],"122":[[2,15]],"123":[[2,15]],"126":[[2,15]],"127":[[2,15]],"128":[[2,15]],"129":[[2,15]],"130":[[2,15]],"131":[[2,15]],"132":[[2,15]],"133":[[2,15]],"134":[[2,15]],"135":[[2,15]],"136":[[2,15]],"137":[[2,15]],"138":[[2,15]],"139":[[2,15]],"140":[[2,15]],"141":[[2,15]],"142":[[2,15]],"143":[[2,15]],"144":[[2,15]],"145":[[2,15]],"146":[[2,15]],"147":[[2,15]],"148":[[2,15]],"149":[[2,15]],"150":[[2,15]],"151":[[2,15]],"152":[[2,15]],"153":[[2,15]],"154":[[2,15]],"155":[[2,15]]},{"1":[[2,16]],"3":[[2,16]],"24":[[2,16]],"25":[[2,16]],"46":[[2,16]],"54":[[2,16]],"56":[[2,16]],"70":[[2,16]],"72":[[2,16]],"75":[[2,16]],"84":[[2,16]],"88":[[2,16]],"96":[[2,16]],"98":[[2,16]],"99":[[2,16]],"100":[[2,16]],"103":[[2,16]],"105":[[2,16]],"112":[[2,16]],"115":[[2,16]],"118":[[2,16]],"119":[[2,16]],"122":[[2,16]],"123":[[2,16]],"126":[[2,16]],"127":[[2,16]],"128":[[2,16]],"129":[[2,16]],"130":[[2,16]],"131":[[2,16]],"132":[[2,16]],"133":[[2,16]],"134":[[2,16]],"135":[[2,16]],"136":[[2,16]],"137":[[2,16]],"138":[[2,16]],"139":[[2,16]],"140":[[2,16]],"141":[[2,16]],"142":[[2,16]],"143":[[2,16]],"144":[[2,16]],"145":[[2,16]],"146":[[2,16]],"147":[[2,16]],"148":[[2,16]],"149":[[2,16]],"150":[[2,16]],"151":[[2,16]],"152":[[2,16]],"153":[[2,16]],"154":[[2,16]],"155":[[2,16]]},{"1":[[2,17]],"3":[[2,17]],"24":[[2,17]],"25":[[2,17]],"46":[[2,17]],"54":[[2,17]],"56":[[2,17]],"70":[[2,17]],"72":[[2,17]],"75":[[2,17]],"84":[[2,17]],"88":[[2,17]],"96":[[2,17]],"98":[[2,17]],"99":[[2,17]],"100":[[2,17]],"103":[[2,17]],"105":[[2,17]],"112":[[2,17]],"115":[[2,17]],"118":[[2,17]],"119":[[2,17]],"122":[[2,17]],"123":[[2,17]],"126":[[2,17]],"127":[[2,17]],"128":[[2,17]],"129":[[2,17]],"130":[[2,17]],"131":[[2,17]],"132":[[2,17]],"133":[[2,17]],"134":[[2,17]],"135":[[2,17]],"136":[[2,17]],"137":[[2,17]],"138":[[2,17]],"139":[[2,17]],"140":[[2,17]],"141":[[2,17]],"142":[[2,17]],"143":[[2,17]],"144":[[2,17]],"145":[[2,17]],"146":[[2,17]],"147":[[2,17]],"148":[[2,17]],"149":[[2,17]],"150":[[2,17]],"151":[[2,17]],"152":[[2,17]],"153":[[2,17]],"154":[[2,17]],"155":[[2,17]]},{"1":[[2,18]],"3":[[2,18]],"24":[[2,18]],"25":[[2,18]],"46":[[2,18]],"54":[[2,18]],"56":[[2,18]],"70":[[2,18]],"72":[[2,18]],"75":[[2,18]],"84":[[2,18]],"88":[[2,18]],"96":[[2,18]],"98":[[2,18]],"99":[[2,18]],"100":[[2,18]],"103":[[2,18]],"105":[[2,18]],"112":[[2,18]],"115":[[2,18]],"118":[[2,18]],"119":[[2,18]],"122":[[2,18]],"123":[[2,18]],"126":[[2,18]],"127":[[2,18]],"128":[[2,18]],"129":[[2,18]],"130":[[2,18]],"131":[[2,18]],"132":[[2,18]],"133":[[2,18]],"134":[[2,18]],"135":[[2,18]],"136":[[2,18]],"137":[[2,18]],"138":[[2,18]],"139":[[2,18]],"140":[[2,18]],"141":[[2,18]],"142":[[2,18]],"143":[[2,18]],"144":[[2,18]],"145":[[2,18]],"146":[[2,18]],"147":[[2,18]],"148":[[2,18]],"149":[[2,18]],"150":[[2,18]],"151":[[2,18]],"152":[[2,18]],"153":[[2,18]],"154":[[2,18]],"155":[[2,18]]},{"1":[[2,19]],"3":[[2,19]],"24":[[2,19]],"25":[[2,19]],"46":[[2,19]],"54":[[2,19]],"56":[[2,19]],"70":[[2,19]],"72":[[2,19]],"75":[[2,19]],"84":[[2,19]],"88":[[2,19]],"96":[[2,19]],"98":[[2,19]],"99":[[2,19]],"100":[[2,19]],"103":[[2,19]],"105":[[2,19]],"112":[[2,19]],"115":[[2,19]],"118":[[2,19]],"119":[[2,19]],"122":[[2,19]],"123":[[2,19]],"126":[[2,19]],"127":[[2,19]],"128":[[2,19]],"129":[[2,19]],"130":[[2,19]],"131":[[2,19]],"132":[[2,19]],"133":[[2,19]],"134":[[2,19]],"135":[[2,19]],"136":[[2,19]],"137":[[2,19]],"138":[[2,19]],"139":[[2,19]],"140":[[2,19]],"141":[[2,19]],"142":[[2,19]],"143":[[2,19]],"144":[[2,19]],"145":[[2,19]],"146":[[2,19]],"147":[[2,19]],"148":[[2,19]],"149":[[2,19]],"150":[[2,19]],"151":[[2,19]],"152":[[2,19]],"153":[[2,19]],"154":[[2,19]],"155":[[2,19]]},{"1":[[2,20]],"3":[[2,20]],"24":[[2,20]],"25":[[2,20]],"46":[[2,20]],"54":[[2,20]],"56":[[2,20]],"70":[[2,20]],"72":[[2,20]],"75":[[2,20]],"84":[[2,20]],"88":[[2,20]],"96":[[2,20]],"98":[[2,20]],"99":[[2,20]],"100":[[2,20]],"103":[[2,20]],"105":[[2,20]],"112":[[2,20]],"115":[[2,20]],"118":[[2,20]],"119":[[2,20]],"122":[[2,20]],"123":[[2,20]],"126":[[2,20]],"127":[[2,20]],"128":[[2,20]],"129":[[2,20]],"130":[[2,20]],"131":[[2,20]],"132":[[2,20]],"133":[[2,20]],"134":[[2,20]],"135":[[2,20]],"136":[[2,20]],"137":[[2,20]],"138":[[2,20]],"139":[[2,20]],"140":[[2,20]],"141":[[2,20]],"142":[[2,20]],"143":[[2,20]],"144":[[2,20]],"145":[[2,20]],"146":[[2,20]],"147":[[2,20]],"148":[[2,20]],"149":[[2,20]],"150":[[2,20]],"151":[[2,20]],"152":[[2,20]],"153":[[2,20]],"154":[[2,20]],"155":[[2,20]]},{"1":[[2,21]],"3":[[2,21]],"24":[[2,21]],"25":[[2,21]],"46":[[2,21]],"54":[[2,21]],"56":[[2,21]],"70":[[2,21]],"72":[[2,21]],"75":[[2,21]],"84":[[2,21]],"88":[[2,21]],"96":[[2,21]],"98":[[2,21]],"99":[[2,21]],"100":[[2,21]],"103":[[2,21]],"105":[[2,21]],"112":[[2,21]],"115":[[2,21]],"118":[[2,21]],"119":[[2,21]],"122":[[2,21]],"123":[[2,21]],"126":[[2,21]],"127":[[2,21]],"128":[[2,21]],"129":[[2,21]],"130":[[2,21]],"131":[[2,21]],"132":[[2,21]],"133":[[2,21]],"134":[[2,21]],"135":[[2,21]],"136":[[2,21]],"137":[[2,21]],"138":[[2,21]],"139":[[2,21]],"140":[[2,21]],"141":[[2,21]],"142":[[2,21]],"143":[[2,21]],"144":[[2,21]],"145":[[2,21]],"146":[[2,21]],"147":[[2,21]],"148":[[2,21]],"149":[[2,21]],"150":[[2,21]],"151":[[2,21]],"152":[[2,21]],"153":[[2,21]],"154":[[2,21]],"155":[[2,21]]},{"1":[[2,22]],"3":[[2,22]],"24":[[2,22]],"25":[[2,22]],"46":[[2,22]],"54":[[2,22]],"56":[[2,22]],"70":[[2,22]],"72":[[2,22]],"75":[[2,22]],"84":[[2,22]],"88":[[2,22]],"96":[[2,22]],"98":[[2,22]],"99":[[2,22]],"100":[[2,22]],"103":[[2,22]],"105":[[2,22]],"112":[[2,22]],"115":[[2,22]],"118":[[2,22]],"119":[[2,22]],"122":[[2,22]],"123":[[2,22]],"126":[[2,22]],"127":[[2,22]],"128":[[2,22]],"129":[[2,22]],"130":[[2,22]],"131":[[2,22]],"132":[[2,22]],"133":[[2,22]],"134":[[2,22]],"135":[[2,22]],"136":[[2,22]],"137":[[2,22]],"138":[[2,22]],"139":[[2,22]],"140":[[2,22]],"141":[[2,22]],"142":[[2,22]],"143":[[2,22]],"144":[[2,22]],"145":[[2,22]],"146":[[2,22]],"147":[[2,22]],"148":[[2,22]],"149":[[2,22]],"150":[[2,22]],"151":[[2,22]],"152":[[2,22]],"153":[[2,22]],"154":[[2,22]],"155":[[2,22]]},{"1":[[2,23]],"3":[[2,23]],"24":[[2,23]],"25":[[2,23]],"46":[[2,23]],"54":[[2,23]],"56":[[2,23]],"70":[[2,23]],"72":[[2,23]],"75":[[2,23]],"84":[[2,23]],"88":[[2,23]],"96":[[2,23]],"98":[[2,23]],"99":[[2,23]],"100":[[2,23]],"103":[[2,23]],"105":[[2,23]],"112":[[2,23]],"115":[[2,23]],"118":[[2,23]],"119":[[2,23]],"122":[[2,23]],"123":[[2,23]],"126":[[2,23]],"127":[[2,23]],"128":[[2,23]],"129":[[2,23]],"130":[[2,23]],"131":[[2,23]],"132":[[2,23]],"133":[[2,23]],"134":[[2,23]],"135":[[2,23]],"136":[[2,23]],"137":[[2,23]],"138":[[2,23]],"139":[[2,23]],"140":[[2,23]],"141":[[2,23]],"142":[[2,23]],"143":[[2,23]],"144":[[2,23]],"145":[[2,23]],"146":[[2,23]],"147":[[2,23]],"148":[[2,23]],"149":[[2,23]],"150":[[2,23]],"151":[[2,23]],"152":[[2,23]],"153":[[2,23]],"154":[[2,23]],"155":[[2,23]]},{"1":[[2,24]],"3":[[2,24]],"24":[[2,24]],"25":[[2,24]],"46":[[2,24]],"54":[[2,24]],"56":[[2,24]],"70":[[2,24]],"72":[[2,24]],"75":[[2,24]],"84":[[2,24]],"88":[[2,24]],"96":[[2,24]],"98":[[2,24]],"99":[[2,24]],"100":[[2,24]],"103":[[2,24]],"105":[[2,24]],"112":[[2,24]],"115":[[2,24]],"118":[[2,24]],"119":[[2,24]],"122":[[2,24]],"123":[[2,24]],"126":[[2,24]],"127":[[2,24]],"128":[[2,24]],"129":[[2,24]],"130":[[2,24]],"131":[[2,24]],"132":[[2,24]],"133":[[2,24]],"134":[[2,24]],"135":[[2,24]],"136":[[2,24]],"137":[[2,24]],"138":[[2,24]],"139":[[2,24]],"140":[[2,24]],"141":[[2,24]],"142":[[2,24]],"143":[[2,24]],"144":[[2,24]],"145":[[2,24]],"146":[[2,24]],"147":[[2,24]],"148":[[2,24]],"149":[[2,24]],"150":[[2,24]],"151":[[2,24]],"152":[[2,24]],"153":[[2,24]],"154":[[2,24]],"155":[[2,24]]},{"1":[[2,59]],"3":[[2,59]],"24":[[2,59]],"25":[[2,59]],"42":[[2,59]],"46":[[2,59]],"54":[[2,59]],"56":[[2,59]],"64":[[2,59]],"65":[[2,59]],"66":[[2,59]],"69":[[2,59]],"70":[[2,59]],"71":[[2,59]],"72":[[2,59]],"75":[[2,59]],"78":[[2,59]],"82":[[2,59]],"84":[[2,59]],"88":[[2,59]],"96":[[2,59]],"98":[[2,59]],"99":[[2,59]],"100":[[2,59]],"103":[[2,59]],"105":[[2,59]],"112":[[2,59]],"115":[[2,59]],"118":[[2,59]],"119":[[2,59]],"122":[[2,59]],"123":[[2,59]],"126":[[2,59]],"127":[[2,59]],"128":[[2,59]],"129":[[2,59]],"130":[[2,59]],"131":[[2,59]],"132":[[2,59]],"133":[[2,59]],"134":[[2,59]],"135":[[2,59]],"136":[[2,59]],"137":[[2,59]],"138":[[2,59]],"139":[[2,59]],"140":[[2,59]],"141":[[2,59]],"142":[[2,59]],"143":[[2,59]],"144":[[2,59]],"145":[[2,59]],"146":[[2,59]],"147":[[2,59]],"148":[[2,59]],"149":[[2,59]],"150":[[2,59]],"151":[[2,59]],"152":[[2,59]],"153":[[2,59]],"154":[[2,59]],"155":[[2,59]]},{"1":[[2,60]],"3":[[2,60]],"24":[[2,60]],"25":[[2,60]],"42":[[2,60]],"46":[[2,60]],"54":[[2,60]],"56":[[2,60]],"64":[[2,60]],"65":[[2,60]],"66":[[2,60]],"69":[[2,60]],"70":[[2,60]],"71":[[2,60]],"72":[[2,60]],"75":[[2,60]],"78":[[2,60]],"82":[[2,60]],"84":[[2,60]],"88":[[2,60]],"96":[[2,60]],"98":[[2,60]],"99":[[2,60]],"100":[[2,60]],"103":[[2,60]],"105":[[2,60]],"112":[[2,60]],"115":[[2,60]],"118":[[2,60]],"119":[[2,60]],"122":[[2,60]],"123":[[2,60]],"126":[[2,60]],"127":[[2,60]],"128":[[2,60]],"129":[[2,60]],"130":[[2,60]],"131":[[2,60]],"132":[[2,60]],"133":[[2,60]],"134":[[2,60]],"135":[[2,60]],"136":[[2,60]],"137":[[2,60]],"138":[[2,60]],"139":[[2,60]],"140":[[2,60]],"141":[[2,60]],"142":[[2,60]],"143":[[2,60]],"144":[[2,60]],"145":[[2,60]],"146":[[2,60]],"147":[[2,60]],"148":[[2,60]],"149":[[2,60]],"150":[[2,60]],"151":[[2,60]],"152":[[2,60]],"153":[[2,60]],"154":[[2,60]],"155":[[2,60]]},{"1":[[2,61]],"3":[[2,61]],"24":[[2,61]],"25":[[2,61]],"42":[[2,61]],"46":[[2,61]],"54":[[2,61]],"56":[[2,61]],"64":[[2,61]],"65":[[2,61]],"66":[[2,61]],"69":[[2,61]],"70":[[2,61]],"71":[[2,61]],"72":[[2,61]],"75":[[2,61]],"78":[[2,61]],"82":[[2,61]],"84":[[2,61]],"88":[[2,61]],"96":[[2,61]],"98":[[2,61]],"99":[[2,61]],"100":[[2,61]],"103":[[2,61]],"105":[[2,61]],"112":[[2,61]],"115":[[2,61]],"118":[[2,61]],"119":[[2,61]],"122":[[2,61]],"123":[[2,61]],"126":[[2,61]],"127":[[2,61]],"128":[[2,61]],"129":[[2,61]],"130":[[2,61]],"131":[[2,61]],"132":[[2,61]],"133":[[2,61]],"134":[[2,61]],"135":[[2,61]],"136":[[2,61]],"137":[[2,61]],"138":[[2,61]],"139":[[2,61]],"140":[[2,61]],"141":[[2,61]],"142":[[2,61]],"143":[[2,61]],"144":[[2,61]],"145":[[2,61]],"146":[[2,61]],"147":[[2,61]],"148":[[2,61]],"149":[[2,61]],"150":[[2,61]],"151":[[2,61]],"152":[[2,61]],"153":[[2,61]],"154":[[2,61]],"155":[[2,61]]},{"1":[[2,62]],"3":[[2,62]],"24":[[2,62]],"25":[[2,62]],"42":[[2,62]],"46":[[2,62]],"54":[[2,62]],"56":[[2,62]],"64":[[2,62]],"65":[[2,62]],"66":[[2,62]],"69":[[2,62]],"70":[[2,62]],"71":[[2,62]],"72":[[2,62]],"75":[[2,62]],"78":[[2,62]],"82":[[2,62]],"84":[[2,62]],"88":[[2,62]],"96":[[2,62]],"98":[[2,62]],"99":[[2,62]],"100":[[2,62]],"103":[[2,62]],"105":[[2,62]],"112":[[2,62]],"115":[[2,62]],"118":[[2,62]],"119":[[2,62]],"122":[[2,62]],"123":[[2,62]],"126":[[2,62]],"127":[[2,62]],"128":[[2,62]],"129":[[2,62]],"130":[[2,62]],"131":[[2,62]],"132":[[2,62]],"133":[[2,62]],"134":[[2,62]],"135":[[2,62]],"136":[[2,62]],"137":[[2,62]],"138":[[2,62]],"139":[[2,62]],"140":[[2,62]],"141":[[2,62]],"142":[[2,62]],"143":[[2,62]],"144":[[2,62]],"145":[[2,62]],"146":[[2,62]],"147":[[2,62]],"148":[[2,62]],"149":[[2,62]],"150":[[2,62]],"151":[[2,62]],"152":[[2,62]],"153":[[2,62]],"154":[[2,62]],"155":[[2,62]]},{"1":[[2,63]],"3":[[2,63]],"24":[[2,63]],"25":[[2,63]],"42":[[2,63]],"46":[[2,63]],"54":[[2,63]],"56":[[2,63]],"64":[[2,63]],"65":[[2,63]],"66":[[2,63]],"69":[[2,63]],"70":[[2,63]],"71":[[2,63]],"72":[[2,63]],"75":[[2,63]],"78":[[2,63]],"82":[[2,63]],"84":[[2,63]],"88":[[2,63]],"96":[[2,63]],"98":[[2,63]],"99":[[2,63]],"100":[[2,63]],"103":[[2,63]],"105":[[2,63]],"112":[[2,63]],"115":[[2,63]],"118":[[2,63]],"119":[[2,63]],"122":[[2,63]],"123":[[2,63]],"126":[[2,63]],"127":[[2,63]],"128":[[2,63]],"129":[[2,63]],"130":[[2,63]],"131":[[2,63]],"132":[[2,63]],"133":[[2,63]],"134":[[2,63]],"135":[[2,63]],"136":[[2,63]],"137":[[2,63]],"138":[[2,63]],"139":[[2,63]],"140":[[2,63]],"141":[[2,63]],"142":[[2,63]],"143":[[2,63]],"144":[[2,63]],"145":[[2,63]],"146":[[2,63]],"147":[[2,63]],"148":[[2,63]],"149":[[2,63]],"150":[[2,63]],"151":[[2,63]],"152":[[2,63]],"153":[[2,63]],"154":[[2,63]],"155":[[2,63]]},{"1":[[2,64]],"3":[[2,64]],"24":[[2,64]],"25":[[2,64]],"42":[[2,64]],"46":[[2,64]],"54":[[2,64]],"56":[[2,64]],"64":[[2,64]],"65":[[2,64]],"66":[[2,64]],"69":[[2,64]],"70":[[2,64]],"71":[[2,64]],"72":[[2,64]],"75":[[2,64]],"78":[[2,64]],"82":[[2,64]],"84":[[2,64]],"88":[[2,64]],"96":[[2,64]],"98":[[2,64]],"99":[[2,64]],"100":[[2,64]],"103":[[2,64]],"105":[[2,64]],"112":[[2,64]],"115":[[2,64]],"118":[[2,64]],"119":[[2,64]],"122":[[2,64]],"123":[[2,64]],"126":[[2,64]],"127":[[2,64]],"128":[[2,64]],"129":[[2,64]],"130":[[2,64]],"131":[[2,64]],"132":[[2,64]],"133":[[2,64]],"134":[[2,64]],"135":[[2,64]],"136":[[2,64]],"137":[[2,64]],"138":[[2,64]],"139":[[2,64]],"140":[[2,64]],"141":[[2,64]],"142":[[2,64]],"143":[[2,64]],"144":[[2,64]],"145":[[2,64]],"146":[[2,64]],"147":[[2,64]],"148":[[2,64]],"149":[[2,64]],"150":[[2,64]],"151":[[2,64]],"152":[[2,64]],"153":[[2,64]],"154":[[2,64]],"155":[[2,64]]},{"1":[[2,65]],"3":[[2,65]],"24":[[2,65]],"25":[[2,65]],"42":[[2,65]],"46":[[2,65]],"54":[[2,65]],"56":[[2,65]],"64":[[2,65]],"65":[[2,65]],"66":[[2,65]],"69":[[2,65]],"70":[[2,65]],"71":[[2,65]],"72":[[2,65]],"75":[[2,65]],"78":[[2,65]],"82":[[2,65]],"84":[[2,65]],"88":[[2,65]],"96":[[2,65]],"98":[[2,65]],"99":[[2,65]],"100":[[2,65]],"103":[[2,65]],"105":[[2,65]],"112":[[2,65]],"115":[[2,65]],"118":[[2,65]],"119":[[2,65]],"122":[[2,65]],"123":[[2,65]],"126":[[2,65]],"127":[[2,65]],"128":[[2,65]],"129":[[2,65]],"130":[[2,65]],"131":[[2,65]],"132":[[2,65]],"133":[[2,65]],"134":[[2,65]],"135":[[2,65]],"136":[[2,65]],"137":[[2,65]],"138":[[2,65]],"139":[[2,65]],"140":[[2,65]],"141":[[2,65]],"142":[[2,65]],"143":[[2,65]],"144":[[2,65]],"145":[[2,65]],"146":[[2,65]],"147":[[2,65]],"148":[[2,65]],"149":[[2,65]],"150":[[2,65]],"151":[[2,65]],"152":[[2,65]],"153":[[2,65]],"154":[[2,65]],"155":[[2,65]]},{"1":[[2,87]],"3":[[2,87]],"24":[[2,87]],"25":[[2,87]],"46":[[2,87]],"54":[[2,87]],"56":[[2,87]],"62":136,"64":[[1,128]],"65":[[1,129]],"66":[[1,130]],"67":131,"68":132,"69":[[1,134]],"70":[[2,87]],"71":[[1,135]],"72":[[2,87]],"75":[[2,87]],"81":137,"82":[[1,133]],"84":[[2,87]],"88":[[2,87]],"96":[[2,87]],"98":[[2,87]],"99":[[2,87]],"100":[[2,87]],"103":[[2,87]],"105":[[2,87]],"112":[[2,87]],"115":[[2,87]],"118":[[2,87]],"119":[[2,87]],"122":[[2,87]],"123":[[2,87]],"126":[[2,87]],"127":[[2,87]],"128":[[2,87]],"129":[[2,87]],"130":[[2,87]],"131":[[2,87]],"132":[[2,87]],"133":[[2,87]],"134":[[2,87]],"135":[[2,87]],"136":[[2,87]],"137":[[2,87]],"138":[[2,87]],"139":[[2,87]],"140":[[2,87]],"141":[[2,87]],"142":[[2,87]],"143":[[2,87]],"144":[[2,87]],"145":[[2,87]],"146":[[2,87]],"147":[[2,87]],"148":[[2,87]],"149":[[2,87]],"150":[[2,87]],"151":[[2,87]],"152":[[2,87]],"153":[[2,87]],"154":[[2,87]],"155":[[2,87]]},{"7":139,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":138,"73":[[1,68]],"86":[[1,70]],"87":[[1,67]],"95":[[1,69]]},{"1":[[2,89]],"3":[[2,89]],"24":[[2,89]],"25":[[2,89]],"46":[[2,89]],"54":[[2,89]],"56":[[2,89]],"70":[[2,89]],"72":[[2,89]],"75":[[2,89]],"84":[[2,89]],"88":[[2,89]],"96":[[2,89]],"98":[[2,89]],"99":[[2,89]],"100":[[2,89]],"103":[[2,89]],"105":[[2,89]],"112":[[2,89]],"115":[[2,89]],"118":[[2,89]],"119":[[2,89]],"122":[[2,89]],"123":[[2,89]],"126":[[2,89]],"127":[[2,89]],"128":[[2,89]],"129":[[2,89]],"130":[[2,89]],"131":[[2,89]],"132":[[2,89]],"133":[[2,89]],"134":[[2,89]],"135":[[2,89]],"136":[[2,89]],"137":[[2,89]],"138":[[2,89]],"139":[[2,89]],"140":[[2,89]],"141":[[2,89]],"142":[[2,89]],"143":[[2,89]],"144":[[2,89]],"145":[[2,89]],"146":[[2,89]],"147":[[2,89]],"148":[[2,89]],"149":[[2,89]],"150":[[2,89]],"151":[[2,89]],"152":[[2,89]],"153":[[2,89]],"154":[[2,89]],"155":[[2,89]]},{"48":140,"49":[[2,53]],"53":141,"54":[[2,53]],"55":[[1,142]]},{"5":143,"24":[[1,6]]},{"6":144,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":145,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":146,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":147,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":148,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":149,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":150,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":151,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":152,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":153,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,142]],"3":[[2,142]],"24":[[2,142]],"25":[[2,142]],"46":[[2,142]],"54":[[2,142]],"56":[[2,142]],"70":[[2,142]],"72":[[2,142]],"75":[[2,142]],"84":[[2,142]],"88":[[2,142]],"96":[[2,142]],"98":[[2,142]],"99":[[2,142]],"100":[[2,142]],"103":[[2,142]],"105":[[2,142]],"112":[[2,142]],"115":[[2,142]],"118":[[2,142]],"119":[[2,142]],"122":[[2,142]],"123":[[2,142]],"126":[[2,142]],"127":[[2,142]],"128":[[2,142]],"129":[[2,142]],"130":[[2,142]],"131":[[2,142]],"132":[[2,142]],"133":[[2,142]],"134":[[2,142]],"135":[[2,142]],"136":[[2,142]],"137":[[2,142]],"138":[[2,142]],"139":[[2,142]],"140":[[2,142]],"141":[[2,142]],"142":[[2,142]],"143":[[2,142]],"144":[[2,142]],"145":[[2,142]],"146":[[2,142]],"147":[[2,142]],"148":[[2,142]],"149":[[2,142]],"150":[[2,142]],"151":[[2,142]],"152":[[2,142]],"153":[[2,142]],"154":[[2,142]],"155":[[2,142]]},{"5":154,"24":[[1,6]]},{"6":155,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,46]],"3":[[2,46]],"6":156,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[2,46]],"25":[[2,46]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[2,46]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"54":[[2,46]],"56":[[2,46]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"70":[[2,46]],"72":[[2,46]],"73":[[1,68]],"75":[[2,46]],"77":[[1,53]],"79":[[1,32]],"80":33,"84":[[2,46]],"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"88":[[2,46]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"96":[[2,46]],"97":50,"98":[[2,46]],"99":[[2,46]],"100":[[1,51]],"103":[[2,46]],"105":[[2,46]],"106":[[1,52]],"111":74,"112":[[2,46]],"114":46,"115":[[2,46]],"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]],"126":[[2,46]],"127":[[2,46]],"128":[[2,46]],"129":[[2,46]],"130":[[2,46]],"131":[[2,46]],"132":[[2,46]],"133":[[2,46]],"134":[[2,46]],"135":[[2,46]],"136":[[2,46]],"137":[[2,46]],"138":[[2,46]],"139":[[2,46]],"140":[[2,46]],"141":[[2,46]],"142":[[2,46]],"143":[[2,46]],"144":[[2,46]],"145":[[2,46]],"146":[[2,46]],"147":[[2,46]],"148":[[2,46]],"149":[[2,46]],"150":[[2,46]],"151":[[2,46]],"152":[[2,46]],"153":[[2,46]],"154":[[2,46]],"155":[[2,46]]},{"5":157,"24":[[1,6]]},{"26":159,"27":[[1,55]],"101":158},{"6":160,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"7":161,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":162,"73":[[1,68]],"86":[[1,70]],"87":[[1,67]],"95":[[1,69]]},{"1":[[2,47]],"3":[[2,47]],"24":[[2,47]],"25":[[2,47]],"46":[[2,47]],"54":[[2,47]],"56":[[2,47]],"70":[[2,47]],"72":[[2,47]],"75":[[2,47]],"84":[[2,47]],"88":[[2,47]],"96":[[2,47]],"98":[[2,47]],"99":[[2,47]],"100":[[2,47]],"103":[[2,47]],"105":[[2,47]],"112":[[2,47]],"115":[[2,47]],"118":[[2,47]],"119":[[2,47]],"122":[[2,47]],"123":[[2,47]],"126":[[2,47]],"127":[[2,47]],"128":[[2,47]],"129":[[2,47]],"130":[[2,47]],"131":[[2,47]],"132":[[2,47]],"133":[[2,47]],"134":[[2,47]],"135":[[2,47]],"136":[[2,47]],"137":[[2,47]],"138":[[2,47]],"139":[[2,47]],"140":[[2,47]],"141":[[2,47]],"142":[[2,47]],"143":[[2,47]],"144":[[2,47]],"145":[[2,47]],"146":[[2,47]],"147":[[2,47]],"148":[[2,47]],"149":[[2,47]],"150":[[2,47]],"151":[[2,47]],"152":[[2,47]],"153":[[2,47]],"154":[[2,47]],"155":[[2,47]]},{"1":[[2,27]],"3":[[2,27]],"24":[[2,27]],"25":[[2,27]],"42":[[2,27]],"46":[[2,27]],"54":[[2,27]],"56":[[2,27]],"64":[[2,27]],"65":[[2,27]],"66":[[2,27]],"69":[[2,27]],"70":[[2,27]],"71":[[2,27]],"72":[[2,27]],"75":[[2,27]],"78":[[2,27]],"82":[[2,27]],"84":[[2,27]],"88":[[2,27]],"96":[[2,27]],"98":[[2,27]],"99":[[2,27]],"100":[[2,27]],"103":[[2,27]],"104":[[2,27]],"105":[[2,27]],"112":[[2,27]],"115":[[2,27]],"118":[[2,27]],"119":[[2,27]],"122":[[2,27]],"123":[[2,27]],"126":[[2,27]],"127":[[2,27]],"128":[[2,27]],"129":[[2,27]],"130":[[2,27]],"131":[[2,27]],"132":[[2,27]],"133":[[2,27]],"134":[[2,27]],"135":[[2,27]],"136":[[2,27]],"137":[[2,27]],"138":[[2,27]],"139":[[2,27]],"140":[[2,27]],"141":[[2,27]],"142":[[2,27]],"143":[[2,27]],"144":[[2,27]],"145":[[2,27]],"146":[[2,27]],"147":[[2,27]],"148":[[2,27]],"149":[[2,27]],"150":[[2,27]],"151":[[2,27]],"152":[[2,27]],"153":[[2,27]],"154":[[2,27]],"155":[[2,27]]},{"1":[[2,30]],"3":[[2,30]],"24":[[2,30]],"25":[[2,30]],"42":[[2,30]],"46":[[2,30]],"54":[[2,30]],"56":[[2,30]],"64":[[2,30]],"65":[[2,30]],"66":[[2,30]],"69":[[2,30]],"70":[[2,30]],"71":[[2,30]],"72":[[2,30]],"75":[[2,30]],"78":[[2,30]],"82":[[2,30]],"84":[[2,30]],"88":[[2,30]],"96":[[2,30]],"98":[[2,30]],"99":[[2,30]],"100":[[2,30]],"103":[[2,30]],"105":[[2,30]],"112":[[2,30]],"115":[[2,30]],"118":[[2,30]],"119":[[2,30]],"122":[[2,30]],"123":[[2,30]],"126":[[2,30]],"127":[[2,30]],"128":[[2,30]],"129":[[2,30]],"130":[[2,30]],"131":[[2,30]],"132":[[2,30]],"133":[[2,30]],"134":[[2,30]],"135":[[2,30]],"136":[[2,30]],"137":[[2,30]],"138":[[2,30]],"139":[[2,30]],"140":[[2,30]],"141":[[2,30]],"142":[[2,30]],"143":[[2,30]],"144":[[2,30]],"145":[[2,30]],"146":[[2,30]],"147":[[2,30]],"148":[[2,30]],"149":[[2,30]],"150":[[2,30]],"151":[[2,30]],"152":[[2,30]],"153":[[2,30]],"154":[[2,30]],"155":[[2,30]]},{"1":[[2,31]],"3":[[2,31]],"24":[[2,31]],"25":[[2,31]],"42":[[2,31]],"46":[[2,31]],"54":[[2,31]],"56":[[2,31]],"64":[[2,31]],"65":[[2,31]],"66":[[2,31]],"69":[[2,31]],"70":[[2,31]],"71":[[2,31]],"72":[[2,31]],"75":[[2,31]],"78":[[2,31]],"82":[[2,31]],"84":[[2,31]],"88":[[2,31]],"96":[[2,31]],"98":[[2,31]],"99":[[2,31]],"100":[[2,31]],"103":[[2,31]],"105":[[2,31]],"112":[[2,31]],"115":[[2,31]],"118":[[2,31]],"119":[[2,31]],"122":[[2,31]],"123":[[2,31]],"126":[[2,31]],"127":[[2,31]],"128":[[2,31]],"129":[[2,31]],"130":[[2,31]],"131":[[2,31]],"132":[[2,31]],"133":[[2,31]],"134":[[2,31]],"135":[[2,31]],"136":[[2,31]],"137":[[2,31]],"138":[[2,31]],"139":[[2,31]],"140":[[2,31]],"141":[[2,31]],"142":[[2,31]],"143":[[2,31]],"144":[[2,31]],"145":[[2,31]],"146":[[2,31]],"147":[[2,31]],"148":[[2,31]],"149":[[2,31]],"150":[[2,31]],"151":[[2,31]],"152":[[2,31]],"153":[[2,31]],"154":[[2,31]],"155":[[2,31]]},{"1":[[2,32]],"3":[[2,32]],"24":[[2,32]],"25":[[2,32]],"42":[[2,32]],"46":[[2,32]],"54":[[2,32]],"56":[[2,32]],"64":[[2,32]],"65":[[2,32]],"66":[[2,32]],"69":[[2,32]],"70":[[2,32]],"71":[[2,32]],"72":[[2,32]],"75":[[2,32]],"78":[[2,32]],"82":[[2,32]],"84":[[2,32]],"88":[[2,32]],"96":[[2,32]],"98":[[2,32]],"99":[[2,32]],"100":[[2,32]],"103":[[2,32]],"105":[[2,32]],"112":[[2,32]],"115":[[2,32]],"118":[[2,32]],"119":[[2,32]],"122":[[2,32]],"123":[[2,32]],"126":[[2,32]],"127":[[2,32]],"128":[[2,32]],"129":[[2,32]],"130":[[2,32]],"131":[[2,32]],"132":[[2,32]],"133":[[2,32]],"134":[[2,32]],"135":[[2,32]],"136":[[2,32]],"137":[[2,32]],"138":[[2,32]],"139":[[2,32]],"140":[[2,32]],"141":[[2,32]],"142":[[2,32]],"143":[[2,32]],"144":[[2,32]],"145":[[2,32]],"146":[[2,32]],"147":[[2,32]],"148":[[2,32]],"149":[[2,32]],"150":[[2,32]],"151":[[2,32]],"152":[[2,32]],"153":[[2,32]],"154":[[2,32]],"155":[[2,32]]},{"1":[[2,33]],"3":[[2,33]],"24":[[2,33]],"25":[[2,33]],"42":[[2,33]],"46":[[2,33]],"54":[[2,33]],"56":[[2,33]],"64":[[2,33]],"65":[[2,33]],"66":[[2,33]],"69":[[2,33]],"70":[[2,33]],"71":[[2,33]],"72":[[2,33]],"75":[[2,33]],"78":[[2,33]],"82":[[2,33]],"84":[[2,33]],"88":[[2,33]],"96":[[2,33]],"98":[[2,33]],"99":[[2,33]],"100":[[2,33]],"103":[[2,33]],"105":[[2,33]],"112":[[2,33]],"115":[[2,33]],"118":[[2,33]],"119":[[2,33]],"122":[[2,33]],"123":[[2,33]],"126":[[2,33]],"127":[[2,33]],"128":[[2,33]],"129":[[2,33]],"130":[[2,33]],"131":[[2,33]],"132":[[2,33]],"133":[[2,33]],"134":[[2,33]],"135":[[2,33]],"136":[[2,33]],"137":[[2,33]],"138":[[2,33]],"139":[[2,33]],"140":[[2,33]],"141":[[2,33]],"142":[[2,33]],"143":[[2,33]],"144":[[2,33]],"145":[[2,33]],"146":[[2,33]],"147":[[2,33]],"148":[[2,33]],"149":[[2,33]],"150":[[2,33]],"151":[[2,33]],"152":[[2,33]],"153":[[2,33]],"154":[[2,33]],"155":[[2,33]]},{"1":[[2,34]],"3":[[2,34]],"24":[[2,34]],"25":[[2,34]],"42":[[2,34]],"46":[[2,34]],"54":[[2,34]],"56":[[2,34]],"64":[[2,34]],"65":[[2,34]],"66":[[2,34]],"69":[[2,34]],"70":[[2,34]],"71":[[2,34]],"72":[[2,34]],"75":[[2,34]],"78":[[2,34]],"82":[[2,34]],"84":[[2,34]],"88":[[2,34]],"96":[[2,34]],"98":[[2,34]],"99":[[2,34]],"100":[[2,34]],"103":[[2,34]],"105":[[2,34]],"112":[[2,34]],"115":[[2,34]],"118":[[2,34]],"119":[[2,34]],"122":[[2,34]],"123":[[2,34]],"126":[[2,34]],"127":[[2,34]],"128":[[2,34]],"129":[[2,34]],"130":[[2,34]],"131":[[2,34]],"132":[[2,34]],"133":[[2,34]],"134":[[2,34]],"135":[[2,34]],"136":[[2,34]],"137":[[2,34]],"138":[[2,34]],"139":[[2,34]],"140":[[2,34]],"141":[[2,34]],"142":[[2,34]],"143":[[2,34]],"144":[[2,34]],"145":[[2,34]],"146":[[2,34]],"147":[[2,34]],"148":[[2,34]],"149":[[2,34]],"150":[[2,34]],"151":[[2,34]],"152":[[2,34]],"153":[[2,34]],"154":[[2,34]],"155":[[2,34]]},{"1":[[2,35]],"3":[[2,35]],"24":[[2,35]],"25":[[2,35]],"42":[[2,35]],"46":[[2,35]],"54":[[2,35]],"56":[[2,35]],"64":[[2,35]],"65":[[2,35]],"66":[[2,35]],"69":[[2,35]],"70":[[2,35]],"71":[[2,35]],"72":[[2,35]],"75":[[2,35]],"78":[[2,35]],"82":[[2,35]],"84":[[2,35]],"88":[[2,35]],"96":[[2,35]],"98":[[2,35]],"99":[[2,35]],"100":[[2,35]],"103":[[2,35]],"105":[[2,35]],"112":[[2,35]],"115":[[2,35]],"118":[[2,35]],"119":[[2,35]],"122":[[2,35]],"123":[[2,35]],"126":[[2,35]],"127":[[2,35]],"128":[[2,35]],"129":[[2,35]],"130":[[2,35]],"131":[[2,35]],"132":[[2,35]],"133":[[2,35]],"134":[[2,35]],"135":[[2,35]],"136":[[2,35]],"137":[[2,35]],"138":[[2,35]],"139":[[2,35]],"140":[[2,35]],"141":[[2,35]],"142":[[2,35]],"143":[[2,35]],"144":[[2,35]],"145":[[2,35]],"146":[[2,35]],"147":[[2,35]],"148":[[2,35]],"149":[[2,35]],"150":[[2,35]],"151":[[2,35]],"152":[[2,35]],"153":[[2,35]],"154":[[2,35]],"155":[[2,35]]},{"1":[[2,36]],"3":[[2,36]],"24":[[2,36]],"25":[[2,36]],"42":[[2,36]],"46":[[2,36]],"54":[[2,36]],"56":[[2,36]],"64":[[2,36]],"65":[[2,36]],"66":[[2,36]],"69":[[2,36]],"70":[[2,36]],"71":[[2,36]],"72":[[2,36]],"75":[[2,36]],"78":[[2,36]],"82":[[2,36]],"84":[[2,36]],"88":[[2,36]],"96":[[2,36]],"98":[[2,36]],"99":[[2,36]],"100":[[2,36]],"103":[[2,36]],"105":[[2,36]],"112":[[2,36]],"115":[[2,36]],"118":[[2,36]],"119":[[2,36]],"122":[[2,36]],"123":[[2,36]],"126":[[2,36]],"127":[[2,36]],"128":[[2,36]],"129":[[2,36]],"130":[[2,36]],"131":[[2,36]],"132":[[2,36]],"133":[[2,36]],"134":[[2,36]],"135":[[2,36]],"136":[[2,36]],"137":[[2,36]],"138":[[2,36]],"139":[[2,36]],"140":[[2,36]],"141":[[2,36]],"142":[[2,36]],"143":[[2,36]],"144":[[2,36]],"145":[[2,36]],"146":[[2,36]],"147":[[2,36]],"148":[[2,36]],"149":[[2,36]],"150":[[2,36]],"151":[[2,36]],"152":[[2,36]],"153":[[2,36]],"154":[[2,36]],"155":[[2,36]]},{"1":[[2,37]],"3":[[2,37]],"24":[[2,37]],"25":[[2,37]],"42":[[2,37]],"46":[[2,37]],"54":[[2,37]],"56":[[2,37]],"64":[[2,37]],"65":[[2,37]],"66":[[2,37]],"69":[[2,37]],"70":[[2,37]],"71":[[2,37]],"72":[[2,37]],"75":[[2,37]],"78":[[2,37]],"82":[[2,37]],"84":[[2,37]],"88":[[2,37]],"96":[[2,37]],"98":[[2,37]],"99":[[2,37]],"100":[[2,37]],"103":[[2,37]],"105":[[2,37]],"112":[[2,37]],"115":[[2,37]],"118":[[2,37]],"119":[[2,37]],"122":[[2,37]],"123":[[2,37]],"126":[[2,37]],"127":[[2,37]],"128":[[2,37]],"129":[[2,37]],"130":[[2,37]],"131":[[2,37]],"132":[[2,37]],"133":[[2,37]],"134":[[2,37]],"135":[[2,37]],"136":[[2,37]],"137":[[2,37]],"138":[[2,37]],"139":[[2,37]],"140":[[2,37]],"141":[[2,37]],"142":[[2,37]],"143":[[2,37]],"144":[[2,37]],"145":[[2,37]],"146":[[2,37]],"147":[[2,37]],"148":[[2,37]],"149":[[2,37]],"150":[[2,37]],"151":[[2,37]],"152":[[2,37]],"153":[[2,37]],"154":[[2,37]],"155":[[2,37]]},{"1":[[2,38]],"3":[[2,38]],"24":[[2,38]],"25":[[2,38]],"42":[[2,38]],"46":[[2,38]],"54":[[2,38]],"56":[[2,38]],"64":[[2,38]],"65":[[2,38]],"66":[[2,38]],"69":[[2,38]],"70":[[2,38]],"71":[[2,38]],"72":[[2,38]],"75":[[2,38]],"78":[[2,38]],"82":[[2,38]],"84":[[2,38]],"88":[[2,38]],"96":[[2,38]],"98":[[2,38]],"99":[[2,38]],"100":[[2,38]],"103":[[2,38]],"105":[[2,38]],"112":[[2,38]],"115":[[2,38]],"118":[[2,38]],"119":[[2,38]],"122":[[2,38]],"123":[[2,38]],"126":[[2,38]],"127":[[2,38]],"128":[[2,38]],"129":[[2,38]],"130":[[2,38]],"131":[[2,38]],"132":[[2,38]],"133":[[2,38]],"134":[[2,38]],"135":[[2,38]],"136":[[2,38]],"137":[[2,38]],"138":[[2,38]],"139":[[2,38]],"140":[[2,38]],"141":[[2,38]],"142":[[2,38]],"143":[[2,38]],"144":[[2,38]],"145":[[2,38]],"146":[[2,38]],"147":[[2,38]],"148":[[2,38]],"149":[[2,38]],"150":[[2,38]],"151":[[2,38]],"152":[[2,38]],"153":[[2,38]],"154":[[2,38]],"155":[[2,38]]},{"1":[[2,39]],"3":[[2,39]],"24":[[2,39]],"25":[[2,39]],"42":[[2,39]],"46":[[2,39]],"54":[[2,39]],"56":[[2,39]],"64":[[2,39]],"65":[[2,39]],"66":[[2,39]],"69":[[2,39]],"70":[[2,39]],"71":[[2,39]],"72":[[2,39]],"75":[[2,39]],"78":[[2,39]],"82":[[2,39]],"84":[[2,39]],"88":[[2,39]],"96":[[2,39]],"98":[[2,39]],"99":[[2,39]],"100":[[2,39]],"103":[[2,39]],"105":[[2,39]],"112":[[2,39]],"115":[[2,39]],"118":[[2,39]],"119":[[2,39]],"122":[[2,39]],"123":[[2,39]],"126":[[2,39]],"127":[[2,39]],"128":[[2,39]],"129":[[2,39]],"130":[[2,39]],"131":[[2,39]],"132":[[2,39]],"133":[[2,39]],"134":[[2,39]],"135":[[2,39]],"136":[[2,39]],"137":[[2,39]],"138":[[2,39]],"139":[[2,39]],"140":[[2,39]],"141":[[2,39]],"142":[[2,39]],"143":[[2,39]],"144":[[2,39]],"145":[[2,39]],"146":[[2,39]],"147":[[2,39]],"148":[[2,39]],"149":[[2,39]],"150":[[2,39]],"151":[[2,39]],"152":[[2,39]],"153":[[2,39]],"154":[[2,39]],"155":[[2,39]]},{"1":[[2,40]],"3":[[2,40]],"24":[[2,40]],"25":[[2,40]],"42":[[2,40]],"46":[[2,40]],"54":[[2,40]],"56":[[2,40]],"64":[[2,40]],"65":[[2,40]],"66":[[2,40]],"69":[[2,40]],"70":[[2,40]],"71":[[2,40]],"72":[[2,40]],"75":[[2,40]],"78":[[2,40]],"82":[[2,40]],"84":[[2,40]],"88":[[2,40]],"96":[[2,40]],"98":[[2,40]],"99":[[2,40]],"100":[[2,40]],"103":[[2,40]],"105":[[2,40]],"112":[[2,40]],"115":[[2,40]],"118":[[2,40]],"119":[[2,40]],"122":[[2,40]],"123":[[2,40]],"126":[[2,40]],"127":[[2,40]],"128":[[2,40]],"129":[[2,40]],"130":[[2,40]],"131":[[2,40]],"132":[[2,40]],"133":[[2,40]],"134":[[2,40]],"135":[[2,40]],"136":[[2,40]],"137":[[2,40]],"138":[[2,40]],"139":[[2,40]],"140":[[2,40]],"141":[[2,40]],"142":[[2,40]],"143":[[2,40]],"144":[[2,40]],"145":[[2,40]],"146":[[2,40]],"147":[[2,40]],"148":[[2,40]],"149":[[2,40]],"150":[[2,40]],"151":[[2,40]],"152":[[2,40]],"153":[[2,40]],"154":[[2,40]],"155":[[2,40]]},{"3":[[2,102]],"6":164,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[1,165]],"25":[[2,102]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"54":[[2,102]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"83":163,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"88":[[2,102]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"3":[[2,81]],"23":172,"24":[[1,169]],"26":170,"27":[[1,55]],"28":171,"29":[[1,76]],"30":[[1,77]],"43":168,"45":[[1,54]],"54":[[2,81]],"74":166,"75":[[2,81]],"76":167},{"6":173,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,95]],"3":[[2,95]],"24":[[2,95]],"25":[[2,95]],"26":174,"27":[[1,55]],"42":[[2,95]],"46":[[2,95]],"54":[[2,95]],"56":[[2,95]],"64":[[2,95]],"65":[[2,95]],"66":[[2,95]],"69":[[2,95]],"70":[[2,95]],"71":[[2,95]],"72":[[2,95]],"75":[[2,95]],"78":[[2,95]],"82":[[2,95]],"84":[[2,95]],"88":[[2,95]],"96":[[2,95]],"98":[[2,95]],"99":[[2,95]],"100":[[2,95]],"103":[[2,95]],"105":[[2,95]],"112":[[2,95]],"115":[[2,95]],"118":[[2,95]],"119":[[2,95]],"122":[[2,95]],"123":[[2,95]],"126":[[2,95]],"127":[[2,95]],"128":[[2,95]],"129":[[2,95]],"130":[[2,95]],"131":[[2,95]],"132":[[2,95]],"133":[[2,95]],"134":[[2,95]],"135":[[2,95]],"136":[[2,95]],"137":[[2,95]],"138":[[2,95]],"139":[[2,95]],"140":[[2,95]],"141":[[2,95]],"142":[[2,95]],"143":[[2,95]],"144":[[2,95]],"145":[[2,95]],"146":[[2,95]],"147":[[2,95]],"148":[[2,95]],"149":[[2,95]],"150":[[2,95]],"151":[[2,95]],"152":[[2,95]],"153":[[2,95]],"154":[[2,95]],"155":[[2,95]]},{"82":[[1,175]]},{"24":[[2,51]]},{"24":[[2,52]]},{"1":[[2,139]],"3":[[2,139]],"24":[[2,139]],"25":[[2,139]],"46":[[2,139]],"54":[[2,139]],"56":[[2,139]],"70":[[2,139]],"72":[[2,139]],"75":[[2,139]],"84":[[2,139]],"88":[[2,139]],"96":[[2,139]],"98":[[2,139]],"99":[[2,139]],"100":[[2,139]],"103":[[2,139]],"105":[[2,139]],"108":[[1,176]],"112":[[2,139]],"113":177,"115":[[2,139]],"118":[[2,139]],"119":[[2,139]],"122":[[2,139]],"123":[[2,139]],"126":[[2,139]],"127":[[2,139]],"128":[[2,139]],"129":[[2,139]],"130":[[2,139]],"131":[[2,139]],"132":[[2,139]],"133":[[2,139]],"134":[[2,139]],"135":[[2,139]],"136":[[2,139]],"137":[[2,139]],"138":[[2,139]],"139":[[2,139]],"140":[[2,139]],"141":[[2,139]],"142":[[2,139]],"143":[[2,139]],"144":[[2,139]],"145":[[2,139]],"146":[[2,139]],"147":[[2,139]],"148":[[2,139]],"149":[[2,139]],"150":[[2,139]],"151":[[2,139]],"152":[[2,139]],"153":[[2,139]],"154":[[2,139]],"155":[[2,139]]},{"6":178,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,28]],"3":[[2,28]],"24":[[2,28]],"25":[[2,28]],"42":[[2,28]],"46":[[2,28]],"54":[[2,28]],"56":[[2,28]],"64":[[2,28]],"65":[[2,28]],"66":[[2,28]],"69":[[2,28]],"70":[[2,28]],"71":[[2,28]],"72":[[2,28]],"75":[[2,28]],"78":[[2,28]],"82":[[2,28]],"84":[[2,28]],"88":[[2,28]],"96":[[2,28]],"98":[[2,28]],"99":[[2,28]],"100":[[2,28]],"103":[[2,28]],"105":[[2,28]],"112":[[2,28]],"115":[[2,28]],"118":[[2,28]],"119":[[2,28]],"122":[[2,28]],"123":[[2,28]],"126":[[2,28]],"127":[[2,28]],"128":[[2,28]],"129":[[2,28]],"130":[[2,28]],"131":[[2,28]],"132":[[2,28]],"133":[[2,28]],"134":[[2,28]],"135":[[2,28]],"136":[[2,28]],"137":[[2,28]],"138":[[2,28]],"139":[[2,28]],"140":[[2,28]],"141":[[2,28]],"142":[[2,28]],"143":[[2,28]],"144":[[2,28]],"145":[[2,28]],"146":[[2,28]],"147":[[2,28]],"148":[[2,28]],"149":[[2,28]],"150":[[2,28]],"151":[[2,28]],"152":[[2,28]],"153":[[2,28]],"154":[[2,28]],"155":[[2,28]]},{"1":[[2,29]],"3":[[2,29]],"24":[[2,29]],"25":[[2,29]],"42":[[2,29]],"46":[[2,29]],"54":[[2,29]],"56":[[2,29]],"64":[[2,29]],"65":[[2,29]],"66":[[2,29]],"69":[[2,29]],"70":[[2,29]],"71":[[2,29]],"72":[[2,29]],"75":[[2,29]],"78":[[2,29]],"82":[[2,29]],"84":[[2,29]],"88":[[2,29]],"96":[[2,29]],"98":[[2,29]],"99":[[2,29]],"100":[[2,29]],"103":[[2,29]],"105":[[2,29]],"112":[[2,29]],"115":[[2,29]],"118":[[2,29]],"119":[[2,29]],"122":[[2,29]],"123":[[2,29]],"126":[[2,29]],"127":[[2,29]],"128":[[2,29]],"129":[[2,29]],"130":[[2,29]],"131":[[2,29]],"132":[[2,29]],"133":[[2,29]],"134":[[2,29]],"135":[[2,29]],"136":[[2,29]],"137":[[2,29]],"138":[[2,29]],"139":[[2,29]],"140":[[2,29]],"141":[[2,29]],"142":[[2,29]],"143":[[2,29]],"144":[[2,29]],"145":[[2,29]],"146":[[2,29]],"147":[[2,29]],"148":[[2,29]],"149":[[2,29]],"150":[[2,29]],"151":[[2,29]],"152":[[2,29]],"153":[[2,29]],"154":[[2,29]],"155":[[2,29]]},{"6":179,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,7]],"3":[[2,7]],"6":180,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"25":[[2,7]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,4]]},{"1":[[2,155]],"3":[[2,155]],"24":[[2,155]],"25":[[2,155]],"46":[[2,155]],"54":[[2,155]],"56":[[2,155]],"70":[[2,155]],"72":[[2,155]],"75":[[2,155]],"84":[[2,155]],"88":[[2,155]],"96":[[2,155]],"98":[[2,155]],"99":[[2,155]],"100":[[2,155]],"103":[[2,155]],"105":[[2,155]],"112":[[2,155]],"115":[[2,155]],"118":[[2,155]],"119":[[2,155]],"122":[[2,155]],"123":[[2,155]],"126":[[2,155]],"127":[[2,155]],"128":[[2,155]],"129":[[2,155]],"130":[[2,155]],"131":[[2,155]],"132":[[2,155]],"133":[[2,155]],"134":[[2,155]],"135":[[2,155]],"136":[[2,155]],"137":[[2,155]],"138":[[2,155]],"139":[[2,155]],"140":[[2,155]],"141":[[2,155]],"142":[[2,155]],"143":[[2,155]],"144":[[2,155]],"145":[[2,155]],"146":[[2,155]],"147":[[2,155]],"148":[[2,155]],"149":[[2,155]],"150":[[2,155]],"151":[[2,155]],"152":[[2,155]],"153":[[2,155]],"154":[[2,155]],"155":[[2,155]]},{"1":[[2,156]],"3":[[2,156]],"24":[[2,156]],"25":[[2,156]],"46":[[2,156]],"54":[[2,156]],"56":[[2,156]],"70":[[2,156]],"72":[[2,156]],"75":[[2,156]],"84":[[2,156]],"88":[[2,156]],"96":[[2,156]],"98":[[2,156]],"99":[[2,156]],"100":[[2,156]],"103":[[2,156]],"105":[[2,156]],"112":[[2,156]],"115":[[2,156]],"118":[[2,156]],"119":[[2,156]],"122":[[2,156]],"123":[[2,156]],"126":[[2,156]],"127":[[2,156]],"128":[[2,156]],"129":[[2,156]],"130":[[2,156]],"131":[[2,156]],"132":[[2,156]],"133":[[2,156]],"134":[[2,156]],"135":[[2,156]],"136":[[2,156]],"137":[[2,156]],"138":[[2,156]],"139":[[2,156]],"140":[[2,156]],"141":[[2,156]],"142":[[2,156]],"143":[[2,156]],"144":[[2,156]],"145":[[2,156]],"146":[[2,156]],"147":[[2,156]],"148":[[2,156]],"149":[[2,156]],"150":[[2,156]],"151":[[2,156]],"152":[[2,156]],"153":[[2,156]],"154":[[2,156]],"155":[[2,156]]},{"6":181,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":182,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":183,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":184,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":185,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":186,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":187,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":188,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":189,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":190,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":191,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":192,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":193,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":194,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":195,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":196,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":197,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":198,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":199,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":200,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":201,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":202,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":203,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,48]],"3":[[2,48]],"6":204,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[2,48]],"25":[[2,48]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[2,48]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"54":[[2,48]],"56":[[2,48]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"70":[[2,48]],"72":[[2,48]],"73":[[1,68]],"75":[[2,48]],"77":[[1,53]],"79":[[1,32]],"80":33,"84":[[2,48]],"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"88":[[2,48]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"96":[[2,48]],"97":50,"98":[[2,48]],"99":[[2,48]],"100":[[2,48]],"103":[[2,48]],"105":[[2,48]],"106":[[1,52]],"111":74,"112":[[2,48]],"114":46,"115":[[2,48]],"116":[[1,36]],"117":[[1,37]],"118":[[2,48]],"119":[[2,48]],"120":[[1,40]],"121":[[1,41]],"122":[[2,48]],"123":[[2,48]],"124":[[1,44]],"125":[[1,45]],"126":[[2,48]],"127":[[2,48]],"128":[[2,48]],"129":[[2,48]],"130":[[2,48]],"131":[[2,48]],"132":[[2,48]],"133":[[2,48]],"134":[[2,48]],"135":[[2,48]],"136":[[2,48]],"137":[[2,48]],"138":[[2,48]],"139":[[2,48]],"140":[[2,48]],"141":[[2,48]],"142":[[2,48]],"143":[[2,48]],"144":[[2,48]],"145":[[2,48]],"146":[[2,48]],"147":[[2,48]],"148":[[2,48]],"149":[[2,48]],"150":[[2,48]],"151":[[2,48]],"152":[[2,48]],"153":[[2,48]],"154":[[2,48]],"155":[[2,48]]},{"6":205,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":206,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":207,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":208,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":209,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":210,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":211,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":212,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":213,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":214,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":215,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":216,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,121]],"3":[[2,121]],"24":[[2,121]],"25":[[2,121]],"46":[[2,121]],"54":[[2,121]],"56":[[2,121]],"70":[[2,121]],"72":[[2,121]],"75":[[2,121]],"84":[[2,121]],"88":[[2,121]],"96":[[2,121]],"98":[[2,121]],"99":[[2,121]],"100":[[2,121]],"103":[[2,121]],"105":[[2,121]],"112":[[2,121]],"115":[[2,121]],"118":[[2,121]],"119":[[2,121]],"122":[[2,121]],"123":[[2,121]],"126":[[2,121]],"127":[[2,121]],"128":[[2,121]],"129":[[2,121]],"130":[[2,121]],"131":[[2,121]],"132":[[2,121]],"133":[[2,121]],"134":[[2,121]],"135":[[2,121]],"136":[[2,121]],"137":[[2,121]],"138":[[2,121]],"139":[[2,121]],"140":[[2,121]],"141":[[2,121]],"142":[[2,121]],"143":[[2,121]],"144":[[2,121]],"145":[[2,121]],"146":[[2,121]],"147":[[2,121]],"148":[[2,121]],"149":[[2,121]],"150":[[2,121]],"151":[[2,121]],"152":[[2,121]],"153":[[2,121]],"154":[[2,121]],"155":[[2,121]]},{"26":159,"27":[[1,55]],"101":217},{"56":[[1,218]]},{"3":[[1,79]],"25":[[1,219]]},{"1":[[2,26]],"3":[[2,26]],"24":[[2,26]],"25":[[2,26]],"45":[[2,26]],"46":[[2,26]],"54":[[2,26]],"56":[[2,26]],"70":[[2,26]],"72":[[2,26]],"75":[[2,26]],"84":[[2,26]],"88":[[2,26]],"92":[[2,26]],"93":[[2,26]],"96":[[2,26]],"98":[[2,26]],"99":[[2,26]],"100":[[2,26]],"103":[[2,26]],"105":[[2,26]],"108":[[2,26]],"110":[[2,26]],"112":[[2,26]],"115":[[2,26]],"118":[[2,26]],"119":[[2,26]],"122":[[2,26]],"123":[[2,26]],"126":[[2,26]],"127":[[2,26]],"128":[[2,26]],"129":[[2,26]],"130":[[2,26]],"131":[[2,26]],"132":[[2,26]],"133":[[2,26]],"134":[[2,26]],"135":[[2,26]],"136":[[2,26]],"137":[[2,26]],"138":[[2,26]],"139":[[2,26]],"140":[[2,26]],"141":[[2,26]],"142":[[2,26]],"143":[[2,26]],"144":[[2,26]],"145":[[2,26]],"146":[[2,26]],"147":[[2,26]],"148":[[2,26]],"149":[[2,26]],"150":[[2,26]],"151":[[2,26]],"152":[[2,26]],"153":[[2,26]],"154":[[2,26]],"155":[[2,26]]},{"1":[[2,66]],"3":[[2,66]],"24":[[2,66]],"25":[[2,66]],"42":[[2,66]],"46":[[2,66]],"54":[[2,66]],"56":[[2,66]],"64":[[2,66]],"65":[[2,66]],"66":[[2,66]],"69":[[2,66]],"70":[[2,66]],"71":[[2,66]],"72":[[2,66]],"75":[[2,66]],"78":[[2,66]],"82":[[2,66]],"84":[[2,66]],"88":[[2,66]],"96":[[2,66]],"98":[[2,66]],"99":[[2,66]],"100":[[2,66]],"103":[[2,66]],"105":[[2,66]],"112":[[2,66]],"115":[[2,66]],"118":[[2,66]],"119":[[2,66]],"122":[[2,66]],"123":[[2,66]],"126":[[2,66]],"127":[[2,66]],"128":[[2,66]],"129":[[2,66]],"130":[[2,66]],"131":[[2,66]],"132":[[2,66]],"133":[[2,66]],"134":[[2,66]],"135":[[2,66]],"136":[[2,66]],"137":[[2,66]],"138":[[2,66]],"139":[[2,66]],"140":[[2,66]],"141":[[2,66]],"142":[[2,66]],"143":[[2,66]],"144":[[2,66]],"145":[[2,66]],"146":[[2,66]],"147":[[2,66]],"148":[[2,66]],"149":[[2,66]],"150":[[2,66]],"151":[[2,66]],"152":[[2,66]],"153":[[2,66]],"154":[[2,66]],"155":[[2,66]]},{"6":220,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"7":221,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":162,"73":[[1,68]],"86":[[1,70]],"87":[[1,67]],"95":[[1,69]]},{"1":[[2,91]],"3":[[2,91]],"24":[[2,91]],"25":[[2,91]],"46":[[2,91]],"54":[[2,91]],"56":[[2,91]],"64":[[2,91]],"65":[[2,91]],"66":[[2,91]],"69":[[2,91]],"70":[[2,91]],"71":[[2,91]],"72":[[2,91]],"75":[[2,91]],"82":[[2,91]],"84":[[2,91]],"88":[[2,91]],"96":[[2,91]],"98":[[2,91]],"99":[[2,91]],"100":[[2,91]],"103":[[2,91]],"105":[[2,91]],"112":[[2,91]],"115":[[2,91]],"118":[[2,91]],"119":[[2,91]],"122":[[2,91]],"123":[[2,91]],"126":[[2,91]],"127":[[2,91]],"128":[[2,91]],"129":[[2,91]],"130":[[2,91]],"131":[[2,91]],"132":[[2,91]],"133":[[2,91]],"134":[[2,91]],"135":[[2,91]],"136":[[2,91]],"137":[[2,91]],"138":[[2,91]],"139":[[2,91]],"140":[[2,91]],"141":[[2,91]],"142":[[2,91]],"143":[[2,91]],"144":[[2,91]],"145":[[2,91]],"146":[[2,91]],"147":[[2,91]],"148":[[2,91]],"149":[[2,91]],"150":[[2,91]],"151":[[2,91]],"152":[[2,91]],"153":[[2,91]],"154":[[2,91]],"155":[[2,91]]},{"26":222,"27":[[1,55]]},{"26":223,"27":[[1,55]]},{"26":224,"27":[[1,55]]},{"1":[[2,71]],"3":[[2,71]],"24":[[2,71]],"25":[[2,71]],"42":[[2,71]],"46":[[2,71]],"54":[[2,71]],"56":[[2,71]],"64":[[2,71]],"65":[[2,71]],"66":[[2,71]],"69":[[2,71]],"70":[[2,71]],"71":[[2,71]],"72":[[2,71]],"75":[[2,71]],"78":[[2,71]],"82":[[2,71]],"84":[[2,71]],"88":[[2,71]],"96":[[2,71]],"98":[[2,71]],"99":[[2,71]],"100":[[2,71]],"103":[[2,71]],"105":[[2,71]],"112":[[2,71]],"115":[[2,71]],"118":[[2,71]],"119":[[2,71]],"122":[[2,71]],"123":[[2,71]],"126":[[2,71]],"127":[[2,71]],"128":[[2,71]],"129":[[2,71]],"130":[[2,71]],"131":[[2,71]],"132":[[2,71]],"133":[[2,71]],"134":[[2,71]],"135":[[2,71]],"136":[[2,71]],"137":[[2,71]],"138":[[2,71]],"139":[[2,71]],"140":[[2,71]],"141":[[2,71]],"142":[[2,71]],"143":[[2,71]],"144":[[2,71]],"145":[[2,71]],"146":[[2,71]],"147":[[2,71]],"148":[[2,71]],"149":[[2,71]],"150":[[2,71]],"151":[[2,71]],"152":[[2,71]],"153":[[2,71]],"154":[[2,71]],"155":[[2,71]]},{"1":[[2,72]],"3":[[2,72]],"24":[[2,72]],"25":[[2,72]],"42":[[2,72]],"46":[[2,72]],"54":[[2,72]],"56":[[2,72]],"64":[[2,72]],"65":[[2,72]],"66":[[2,72]],"69":[[2,72]],"70":[[2,72]],"71":[[2,72]],"72":[[2,72]],"75":[[2,72]],"78":[[2,72]],"82":[[2,72]],"84":[[2,72]],"88":[[2,72]],"96":[[2,72]],"98":[[2,72]],"99":[[2,72]],"100":[[2,72]],"103":[[2,72]],"105":[[2,72]],"112":[[2,72]],"115":[[2,72]],"118":[[2,72]],"119":[[2,72]],"122":[[2,72]],"123":[[2,72]],"126":[[2,72]],"127":[[2,72]],"128":[[2,72]],"129":[[2,72]],"130":[[2,72]],"131":[[2,72]],"132":[[2,72]],"133":[[2,72]],"134":[[2,72]],"135":[[2,72]],"136":[[2,72]],"137":[[2,72]],"138":[[2,72]],"139":[[2,72]],"140":[[2,72]],"141":[[2,72]],"142":[[2,72]],"143":[[2,72]],"144":[[2,72]],"145":[[2,72]],"146":[[2,72]],"147":[[2,72]],"148":[[2,72]],"149":[[2,72]],"150":[[2,72]],"151":[[2,72]],"152":[[2,72]],"153":[[2,72]],"154":[[2,72]],"155":[[2,72]]},{"3":[[2,102]],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[1,165]],"25":[[2,102]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"54":[[2,102]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"83":225,"84":[[2,102]],"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":227,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":228,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,67]],"3":[[2,67]],"24":[[2,67]],"25":[[2,67]],"42":[[2,67]],"46":[[2,67]],"54":[[2,67]],"56":[[2,67]],"64":[[2,67]],"65":[[2,67]],"66":[[2,67]],"69":[[2,67]],"70":[[2,67]],"71":[[2,67]],"72":[[2,67]],"75":[[2,67]],"78":[[2,67]],"82":[[2,67]],"84":[[2,67]],"88":[[2,67]],"96":[[2,67]],"98":[[2,67]],"99":[[2,67]],"100":[[2,67]],"103":[[2,67]],"105":[[2,67]],"112":[[2,67]],"115":[[2,67]],"118":[[2,67]],"119":[[2,67]],"122":[[2,67]],"123":[[2,67]],"126":[[2,67]],"127":[[2,67]],"128":[[2,67]],"129":[[2,67]],"130":[[2,67]],"131":[[2,67]],"132":[[2,67]],"133":[[2,67]],"134":[[2,67]],"135":[[2,67]],"136":[[2,67]],"137":[[2,67]],"138":[[2,67]],"139":[[2,67]],"140":[[2,67]],"141":[[2,67]],"142":[[2,67]],"143":[[2,67]],"144":[[2,67]],"145":[[2,67]],"146":[[2,67]],"147":[[2,67]],"148":[[2,67]],"149":[[2,67]],"150":[[2,67]],"151":[[2,67]],"152":[[2,67]],"153":[[2,67]],"154":[[2,67]],"155":[[2,67]]},{"1":[[2,92]],"3":[[2,92]],"24":[[2,92]],"25":[[2,92]],"46":[[2,92]],"54":[[2,92]],"56":[[2,92]],"64":[[2,92]],"65":[[2,92]],"66":[[2,92]],"69":[[2,92]],"70":[[2,92]],"71":[[2,92]],"72":[[2,92]],"75":[[2,92]],"82":[[2,92]],"84":[[2,92]],"88":[[2,92]],"96":[[2,92]],"98":[[2,92]],"99":[[2,92]],"100":[[2,92]],"103":[[2,92]],"105":[[2,92]],"112":[[2,92]],"115":[[2,92]],"118":[[2,92]],"119":[[2,92]],"122":[[2,92]],"123":[[2,92]],"126":[[2,92]],"127":[[2,92]],"128":[[2,92]],"129":[[2,92]],"130":[[2,92]],"131":[[2,92]],"132":[[2,92]],"133":[[2,92]],"134":[[2,92]],"135":[[2,92]],"136":[[2,92]],"137":[[2,92]],"138":[[2,92]],"139":[[2,92]],"140":[[2,92]],"141":[[2,92]],"142":[[2,92]],"143":[[2,92]],"144":[[2,92]],"145":[[2,92]],"146":[[2,92]],"147":[[2,92]],"148":[[2,92]],"149":[[2,92]],"150":[[2,92]],"151":[[2,92]],"152":[[2,92]],"153":[[2,92]],"154":[[2,92]],"155":[[2,92]]},{"1":[[2,88]],"3":[[2,88]],"24":[[2,88]],"25":[[2,88]],"46":[[2,88]],"54":[[2,88]],"56":[[2,88]],"62":136,"64":[[1,128]],"65":[[1,129]],"66":[[1,130]],"67":131,"68":132,"69":[[1,134]],"70":[[2,88]],"71":[[1,135]],"72":[[2,88]],"75":[[2,88]],"81":137,"82":[[1,133]],"84":[[2,88]],"88":[[2,88]],"96":[[2,88]],"98":[[2,88]],"99":[[2,88]],"100":[[2,88]],"103":[[2,88]],"105":[[2,88]],"112":[[2,88]],"115":[[2,88]],"118":[[2,88]],"119":[[2,88]],"122":[[2,88]],"123":[[2,88]],"126":[[2,88]],"127":[[2,88]],"128":[[2,88]],"129":[[2,88]],"130":[[2,88]],"131":[[2,88]],"132":[[2,88]],"133":[[2,88]],"134":[[2,88]],"135":[[2,88]],"136":[[2,88]],"137":[[2,88]],"138":[[2,88]],"139":[[2,88]],"140":[[2,88]],"141":[[2,88]],"142":[[2,88]],"143":[[2,88]],"144":[[2,88]],"145":[[2,88]],"146":[[2,88]],"147":[[2,88]],"148":[[2,88]],"149":[[2,88]],"150":[[2,88]],"151":[[2,88]],"152":[[2,88]],"153":[[2,88]],"154":[[2,88]],"155":[[2,88]]},{"62":124,"64":[[1,128]],"65":[[1,129]],"66":[[1,130]],"67":131,"68":132,"69":[[1,134]],"71":[[1,135]],"81":127,"82":[[1,133]]},{"49":[[1,229]],"54":[[1,230]]},{"49":[[2,54]],"54":[[2,54]],"56":[[1,231]]},{"49":[[2,56]],"54":[[2,56]],"56":[[2,56]]},{"1":[[2,50]],"3":[[2,50]],"24":[[2,50]],"25":[[2,50]],"46":[[2,50]],"54":[[2,50]],"56":[[2,50]],"70":[[2,50]],"72":[[2,50]],"75":[[2,50]],"84":[[2,50]],"88":[[2,50]],"96":[[2,50]],"98":[[2,50]],"99":[[2,50]],"100":[[2,50]],"103":[[2,50]],"105":[[2,50]],"112":[[2,50]],"115":[[2,50]],"118":[[2,50]],"119":[[2,50]],"122":[[2,50]],"123":[[2,50]],"126":[[2,50]],"127":[[2,50]],"128":[[2,50]],"129":[[2,50]],"130":[[2,50]],"131":[[2,50]],"132":[[2,50]],"133":[[2,50]],"134":[[2,50]],"135":[[2,50]],"136":[[2,50]],"137":[[2,50]],"138":[[2,50]],"139":[[2,50]],"140":[[2,50]],"141":[[2,50]],"142":[[2,50]],"143":[[2,50]],"144":[[2,50]],"145":[[2,50]],"146":[[2,50]],"147":[[2,50]],"148":[[2,50]],"149":[[2,50]],"150":[[2,50]],"151":[[2,50]],"152":[[2,50]],"153":[[2,50]],"154":[[2,50]],"155":[[2,50]]},{"1":[[2,145]],"3":[[2,145]],"24":[[2,145]],"25":[[2,145]],"46":[[1,106]],"54":[[2,145]],"56":[[2,145]],"70":[[2,145]],"72":[[2,145]],"75":[[2,145]],"84":[[2,145]],"88":[[2,145]],"96":[[2,145]],"97":119,"98":[[2,145]],"99":[[2,145]],"100":[[2,145]],"103":[[2,145]],"105":[[2,145]],"112":[[2,145]],"115":[[2,145]],"118":[[2,145]],"119":[[2,145]],"122":[null],"123":[null],"126":[[2,145]],"127":[[2,145]],"128":[[2,145]],"129":[[2,145]],"130":[[2,145]],"131":[[2,145]],"132":[[2,145]],"133":[[2,145]],"134":[[2,145]],"135":[[2,145]],"136":[[2,145]],"137":[[2,145]],"138":[[2,145]],"139":[[2,145]],"140":[[2,145]],"141":[[2,145]],"142":[[2,145]],"143":[[2,145]],"144":[[2,145]],"145":[[2,145]],"146":[[2,145]],"147":[[2,145]],"148":[[2,145]],"149":[[2,145]],"150":[[2,145]],"151":[[2,145]],"152":[[2,145]],"153":[[2,145]],"154":[[2,145]],"155":[[2,145]]},{"1":[[2,146]],"3":[[2,146]],"24":[[2,146]],"25":[[2,146]],"46":[[1,106]],"54":[[2,146]],"56":[[2,146]],"70":[[2,146]],"72":[[2,146]],"75":[[2,146]],"84":[[2,146]],"88":[[2,146]],"96":[[2,146]],"97":119,"98":[[2,146]],"99":[[2,146]],"100":[[2,146]],"103":[[2,146]],"105":[[2,146]],"112":[[2,146]],"115":[[2,146]],"118":[[2,146]],"119":[[2,146]],"122":[null],"123":[null],"126":[[2,146]],"127":[[2,146]],"128":[[2,146]],"129":[[2,146]],"130":[[2,146]],"131":[[2,146]],"132":[[2,146]],"133":[[2,146]],"134":[[2,146]],"135":[[2,146]],"136":[[2,146]],"137":[[2,146]],"138":[[2,146]],"139":[[2,146]],"140":[[2,146]],"141":[[2,146]],"142":[[2,146]],"143":[[2,146]],"144":[[2,146]],"145":[[2,146]],"146":[[2,146]],"147":[[2,146]],"148":[[2,146]],"149":[[2,146]],"150":[[2,146]],"151":[[2,146]],"152":[[2,146]],"153":[[2,146]],"154":[[2,146]],"155":[[2,146]]},{"1":[[2,147]],"3":[[2,147]],"24":[[2,147]],"25":[[2,147]],"46":[[1,106]],"54":[[2,147]],"56":[[2,147]],"70":[[2,147]],"72":[[2,147]],"75":[[2,147]],"84":[[2,147]],"88":[[2,147]],"96":[[2,147]],"97":119,"98":[[2,147]],"99":[[2,147]],"100":[[2,147]],"103":[[2,147]],"105":[[2,147]],"112":[[2,147]],"115":[[2,147]],"118":[[2,147]],"119":[[2,147]],"122":[null],"123":[null],"126":[[2,147]],"127":[[2,147]],"128":[[2,147]],"129":[[2,147]],"130":[[2,147]],"131":[[2,147]],"132":[[2,147]],"133":[[2,147]],"134":[[2,147]],"135":[[2,147]],"136":[[2,147]],"137":[[2,147]],"138":[[2,147]],"139":[[2,147]],"140":[[2,147]],"141":[[2,147]],"142":[[2,147]],"143":[[2,147]],"144":[[2,147]],"145":[[2,147]],"146":[[2,147]],"147":[[2,147]],"148":[[2,147]],"149":[[2,147]],"150":[[2,147]],"151":[[2,147]],"152":[[2,147]],"153":[[2,147]],"154":[[2,147]],"155":[[2,147]]},{"1":[[2,148]],"3":[[2,148]],"24":[[2,148]],"25":[[2,148]],"46":[[1,106]],"54":[[2,148]],"56":[[2,148]],"70":[[2,148]],"72":[[2,148]],"75":[[2,148]],"84":[[2,148]],"88":[[2,148]],"96":[[2,148]],"97":119,"98":[[2,148]],"99":[[2,148]],"100":[[2,148]],"103":[[2,148]],"105":[[2,148]],"112":[[2,148]],"115":[[2,148]],"118":[[2,148]],"119":[[2,148]],"122":[null],"123":[null],"126":[[2,148]],"127":[[2,148]],"128":[[2,148]],"129":[[2,148]],"130":[[2,148]],"131":[[2,148]],"132":[[2,148]],"133":[[2,148]],"134":[[2,148]],"135":[[2,148]],"136":[[2,148]],"137":[[2,148]],"138":[[2,148]],"139":[[2,148]],"140":[[2,148]],"141":[[2,148]],"142":[[2,148]],"143":[[2,148]],"144":[[2,148]],"145":[[2,148]],"146":[[2,148]],"147":[[2,148]],"148":[[2,148]],"149":[[2,148]],"150":[[2,148]],"151":[[2,148]],"152":[[2,148]],"153":[[2,148]],"154":[[2,148]],"155":[[2,148]]},{"1":[[2,149]],"3":[[2,149]],"24":[[2,149]],"25":[[2,149]],"46":[[1,106]],"54":[[2,149]],"56":[[2,149]],"70":[[2,149]],"72":[[2,149]],"75":[[2,149]],"84":[[2,149]],"88":[[2,149]],"96":[[2,149]],"97":119,"98":[[2,149]],"99":[[2,149]],"100":[[2,149]],"103":[[2,149]],"105":[[2,149]],"112":[[2,149]],"115":[[2,149]],"118":[[2,149]],"119":[[2,149]],"122":[null],"123":[null],"126":[[2,149]],"127":[[2,149]],"128":[[2,149]],"129":[[2,149]],"130":[[2,149]],"131":[[2,149]],"132":[[2,149]],"133":[[2,149]],"134":[[2,149]],"135":[[2,149]],"136":[[2,149]],"137":[[2,149]],"138":[[2,149]],"139":[[2,149]],"140":[[2,149]],"141":[[2,149]],"142":[[2,149]],"143":[[2,149]],"144":[[2,149]],"145":[[2,149]],"146":[[2,149]],"147":[[2,149]],"148":[[2,149]],"149":[[2,149]],"150":[[2,149]],"151":[[2,149]],"152":[[2,149]],"153":[[2,149]],"154":[[2,149]],"155":[[2,149]]},{"1":[[2,150]],"3":[[2,150]],"24":[[2,150]],"25":[[2,150]],"46":[[1,106]],"54":[[2,150]],"56":[[2,150]],"70":[[2,150]],"72":[[2,150]],"75":[[2,150]],"84":[[2,150]],"88":[[2,150]],"96":[[2,150]],"97":119,"98":[[2,150]],"99":[[2,150]],"100":[[2,150]],"103":[[2,150]],"105":[[2,150]],"112":[[2,150]],"115":[[2,150]],"118":[[2,150]],"119":[[2,150]],"122":[null],"123":[null],"126":[[2,150]],"127":[[2,150]],"128":[[2,150]],"129":[[2,150]],"130":[[2,150]],"131":[[2,150]],"132":[[2,150]],"133":[[2,150]],"134":[[2,150]],"135":[[2,150]],"136":[[2,150]],"137":[[2,150]],"138":[[2,150]],"139":[[2,150]],"140":[[2,150]],"141":[[2,150]],"142":[[2,150]],"143":[[2,150]],"144":[[2,150]],"145":[[2,150]],"146":[[2,150]],"147":[[2,150]],"148":[[2,150]],"149":[[2,150]],"150":[[2,150]],"151":[[2,150]],"152":[[2,150]],"153":[[2,150]],"154":[[2,150]],"155":[[2,150]]},{"1":[[2,151]],"3":[[2,151]],"24":[[2,151]],"25":[[2,151]],"46":[[1,106]],"54":[[2,151]],"56":[[2,151]],"70":[[2,151]],"72":[[2,151]],"75":[[2,151]],"84":[[2,151]],"88":[[2,151]],"96":[[2,151]],"97":119,"98":[[2,151]],"99":[[2,151]],"100":[[2,151]],"103":[[2,151]],"105":[[2,151]],"112":[[2,151]],"115":[[2,151]],"118":[[2,151]],"119":[[2,151]],"122":[null],"123":[null],"126":[[2,151]],"127":[[2,151]],"128":[[2,151]],"129":[[2,151]],"130":[[2,151]],"131":[[2,151]],"132":[[2,151]],"133":[[2,151]],"134":[[2,151]],"135":[[2,151]],"136":[[2,151]],"137":[[2,151]],"138":[[2,151]],"139":[[2,151]],"140":[[2,151]],"141":[[2,151]],"142":[[2,151]],"143":[[2,151]],"144":[[2,151]],"145":[[2,151]],"146":[[2,151]],"147":[[2,151]],"148":[[2,151]],"149":[[2,151]],"150":[[2,151]],"151":[[2,151]],"152":[[2,151]],"153":[[2,151]],"154":[[2,151]],"155":[[2,151]]},{"1":[[2,152]],"3":[[2,152]],"24":[[2,152]],"25":[[2,152]],"46":[[1,106]],"54":[[2,152]],"56":[[2,152]],"70":[[2,152]],"72":[[2,152]],"75":[[2,152]],"84":[[2,152]],"88":[[2,152]],"96":[[2,152]],"97":119,"98":[[2,152]],"99":[[2,152]],"100":[[2,152]],"103":[[2,152]],"105":[[2,152]],"112":[[2,152]],"115":[[2,152]],"118":[[2,152]],"119":[[2,152]],"122":[null],"123":[null],"126":[[2,152]],"127":[[2,152]],"128":[[2,152]],"129":[[2,152]],"130":[[2,152]],"131":[[2,152]],"132":[[2,152]],"133":[[2,152]],"134":[[2,152]],"135":[[2,152]],"136":[[2,152]],"137":[[2,152]],"138":[[2,152]],"139":[[2,152]],"140":[[2,152]],"141":[[2,152]],"142":[[2,152]],"143":[[2,152]],"144":[[2,152]],"145":[[2,152]],"146":[[2,152]],"147":[[2,152]],"148":[[2,152]],"149":[[2,152]],"150":[[2,152]],"151":[[2,152]],"152":[[2,152]],"153":[[2,152]],"154":[[2,152]],"155":[[2,152]]},{"1":[[2,153]],"3":[[2,153]],"24":[[2,153]],"25":[[2,153]],"46":[[1,106]],"54":[[2,153]],"56":[[2,153]],"70":[[2,153]],"72":[[2,153]],"75":[[2,153]],"84":[[2,153]],"88":[[2,153]],"96":[[2,153]],"97":119,"98":[[2,153]],"99":[[2,153]],"100":[[2,153]],"103":[[2,153]],"105":[[2,153]],"112":[[2,153]],"115":[[2,153]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[2,153]],"140":[[2,153]],"141":[[2,153]],"142":[[2,153]],"143":[[2,153]],"144":[[2,153]],"145":[[2,153]],"146":[[2,153]],"147":[[2,153]],"148":[[2,153]],"149":[[2,153]],"150":[[2,153]],"151":[[2,153]],"152":[[2,153]],"153":[[2,153]],"154":[[2,153]],"155":[[1,115]]},{"1":[[2,154]],"3":[[2,154]],"24":[[2,154]],"25":[[2,154]],"46":[[1,106]],"54":[[2,154]],"56":[[2,154]],"70":[[2,154]],"72":[[2,154]],"75":[[2,154]],"84":[[2,154]],"88":[[2,154]],"96":[[2,154]],"97":119,"98":[[2,154]],"99":[[2,154]],"100":[[2,154]],"103":[[2,154]],"105":[[2,154]],"112":[[2,154]],"115":[[2,154]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[2,154]],"140":[[2,154]],"141":[[2,154]],"142":[[2,154]],"143":[[2,154]],"144":[[2,154]],"145":[[2,154]],"146":[[2,154]],"147":[[2,154]],"148":[[2,154]],"149":[[2,154]],"150":[[2,154]],"151":[[2,154]],"152":[[2,154]],"153":[[2,154]],"154":[[2,154]],"155":[[1,115]]},{"91":232,"92":[[1,233]],"93":[[1,234]]},{"1":[[2,116]],"3":[[2,116]],"24":[[2,116]],"25":[[2,116]],"46":[[1,106]],"54":[[2,116]],"56":[[1,121]],"70":[[2,116]],"72":[[2,116]],"75":[[2,116]],"84":[[2,116]],"88":[[2,116]],"96":[[2,116]],"97":119,"98":[[2,116]],"99":[[2,116]],"100":[[2,116]],"103":[[1,116]],"105":[[2,116]],"112":[[2,116]],"115":[[2,116]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,45]],"3":[[2,45]],"24":[[2,45]],"25":[[2,45]],"46":[[1,106]],"54":[[2,45]],"56":[[1,121]],"70":[[2,45]],"72":[[2,45]],"75":[[2,45]],"84":[[2,45]],"88":[[2,45]],"96":[[2,45]],"97":119,"98":[[2,45]],"99":[[2,45]],"100":[[1,120]],"103":[[1,116]],"105":[[2,45]],"112":[[2,45]],"115":[[2,45]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,120]],"3":[[2,120]],"24":[[2,120]],"25":[[2,120]],"46":[[2,120]],"54":[[2,120]],"56":[[2,120]],"70":[[2,120]],"72":[[2,120]],"75":[[2,120]],"84":[[2,120]],"88":[[2,120]],"96":[[2,120]],"98":[[2,120]],"99":[[2,120]],"100":[[2,120]],"103":[[2,120]],"105":[[2,120]],"112":[[2,120]],"115":[[2,120]],"118":[[2,120]],"119":[[2,120]],"122":[[2,120]],"123":[[2,120]],"126":[[2,120]],"127":[[2,120]],"128":[[2,120]],"129":[[2,120]],"130":[[2,120]],"131":[[2,120]],"132":[[2,120]],"133":[[2,120]],"134":[[2,120]],"135":[[2,120]],"136":[[2,120]],"137":[[2,120]],"138":[[2,120]],"139":[[2,120]],"140":[[2,120]],"141":[[2,120]],"142":[[2,120]],"143":[[2,120]],"144":[[2,120]],"145":[[2,120]],"146":[[2,120]],"147":[[2,120]],"148":[[2,120]],"149":[[2,120]],"150":[[2,120]],"151":[[2,120]],"152":[[2,120]],"153":[[2,120]],"154":[[2,120]],"155":[[2,120]]},{"102":235,"103":[[1,236]],"104":[[1,237]]},{"54":[[1,238]],"103":[[2,124]],"104":[[2,124]]},{"24":[[1,239]],"46":[[1,106]],"56":[[1,121]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,77]],"3":[[2,77]],"24":[[1,169]],"25":[[2,77]],"46":[[2,77]],"54":[[2,77]],"56":[[2,77]],"62":124,"64":[[1,128]],"65":[[1,129]],"66":[[1,130]],"67":131,"68":132,"69":[[1,134]],"70":[[2,77]],"71":[[1,135]],"72":[[2,77]],"75":[[2,77]],"76":241,"78":[[1,240]],"81":127,"82":[[1,133]],"84":[[2,77]],"88":[[2,77]],"96":[[2,77]],"98":[[2,77]],"99":[[2,77]],"100":[[2,77]],"103":[[2,77]],"105":[[2,77]],"112":[[2,77]],"115":[[2,77]],"118":[[2,77]],"119":[[2,77]],"122":[[2,77]],"123":[[2,77]],"126":[[2,77]],"127":[[2,77]],"128":[[2,77]],"129":[[2,77]],"130":[[2,77]],"131":[[2,77]],"132":[[2,77]],"133":[[2,77]],"134":[[2,77]],"135":[[2,77]],"136":[[2,77]],"137":[[2,77]],"138":[[2,77]],"139":[[2,77]],"140":[[2,77]],"141":[[2,77]],"142":[[2,77]],"143":[[2,77]],"144":[[2,77]],"145":[[2,77]],"146":[[2,77]],"147":[[2,77]],"148":[[2,77]],"149":[[2,77]],"150":[[2,77]],"151":[[2,77]],"152":[[2,77]],"153":[[2,77]],"154":[[2,77]],"155":[[2,77]]},{"62":136,"64":[[1,128]],"65":[[1,129]],"66":[[1,130]],"67":131,"68":132,"69":[[1,134]],"71":[[1,135]],"81":137,"82":[[1,133]]},{"3":[[1,244]],"25":[[1,245]],"54":[[1,243]],"88":[[1,242]]},{"3":[[2,103]],"25":[[2,103]],"46":[[1,106]],"54":[[2,103]],"56":[[1,246]],"88":[[2,103]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"6":247,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"3":[[1,250]],"54":[[1,249]],"75":[[1,248]]},{"75":[[1,251]]},{"3":[[2,82]],"25":[[2,82]],"54":[[2,82]],"75":[[2,82]]},{"3":[[2,81]],"23":172,"25":[[2,81]],"26":170,"27":[[1,55]],"28":171,"29":[[1,76]],"30":[[1,77]],"43":168,"45":[[1,54]],"54":[[2,81]],"74":252},{"42":[[1,253]]},{"42":[[1,254]]},{"3":[[2,44]],"25":[[2,44]],"54":[[2,44]],"75":[[2,44]]},{"46":[[1,106]],"56":[[1,121]],"96":[[1,255]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,96]],"3":[[2,96]],"24":[[2,96]],"25":[[2,96]],"42":[[2,96]],"46":[[2,96]],"54":[[2,96]],"56":[[2,96]],"64":[[2,96]],"65":[[2,96]],"66":[[2,96]],"69":[[2,96]],"70":[[2,96]],"71":[[2,96]],"72":[[2,96]],"75":[[2,96]],"78":[[2,96]],"82":[[2,96]],"84":[[2,96]],"88":[[2,96]],"96":[[2,96]],"98":[[2,96]],"99":[[2,96]],"100":[[2,96]],"103":[[2,96]],"105":[[2,96]],"112":[[2,96]],"115":[[2,96]],"118":[[2,96]],"119":[[2,96]],"122":[[2,96]],"123":[[2,96]],"126":[[2,96]],"127":[[2,96]],"128":[[2,96]],"129":[[2,96]],"130":[[2,96]],"131":[[2,96]],"132":[[2,96]],"133":[[2,96]],"134":[[2,96]],"135":[[2,96]],"136":[[2,96]],"137":[[2,96]],"138":[[2,96]],"139":[[2,96]],"140":[[2,96]],"141":[[2,96]],"142":[[2,96]],"143":[[2,96]],"144":[[2,96]],"145":[[2,96]],"146":[[2,96]],"147":[[2,96]],"148":[[2,96]],"149":[[2,96]],"150":[[2,96]],"151":[[2,96]],"152":[[2,96]],"153":[[2,96]],"154":[[2,96]],"155":[[2,96]]},{"3":[[2,102]],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[1,165]],"25":[[2,102]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"54":[[2,102]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"83":256,"84":[[2,102]],"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"5":257,"24":[[1,6]],"112":[[1,258]]},{"1":[[2,138]],"3":[[2,138]],"24":[[2,138]],"25":[[2,138]],"46":[[2,138]],"54":[[2,138]],"56":[[2,138]],"70":[[2,138]],"72":[[2,138]],"75":[[2,138]],"84":[[2,138]],"88":[[2,138]],"96":[[2,138]],"98":[[2,138]],"99":[[2,138]],"100":[[2,138]],"103":[[2,138]],"105":[[2,138]],"108":[[2,138]],"112":[[2,138]],"115":[[2,138]],"118":[[2,138]],"119":[[2,138]],"122":[[2,138]],"123":[[2,138]],"126":[[2,138]],"127":[[2,138]],"128":[[2,138]],"129":[[2,138]],"130":[[2,138]],"131":[[2,138]],"132":[[2,138]],"133":[[2,138]],"134":[[2,138]],"135":[[2,138]],"136":[[2,138]],"137":[[2,138]],"138":[[2,138]],"139":[[2,138]],"140":[[2,138]],"141":[[2,138]],"142":[[2,138]],"143":[[2,138]],"144":[[2,138]],"145":[[2,138]],"146":[[2,138]],"147":[[2,138]],"148":[[2,138]],"149":[[2,138]],"150":[[2,138]],"151":[[2,138]],"152":[[2,138]],"153":[[2,138]],"154":[[2,138]],"155":[[2,138]]},{"1":[[2,118]],"3":[[2,118]],"24":[[2,118]],"25":[[2,118]],"46":[[1,106]],"54":[[2,118]],"56":[[1,121]],"70":[[2,118]],"72":[[2,118]],"75":[[2,118]],"84":[[2,118]],"88":[[2,118]],"96":[[2,118]],"97":119,"98":[[1,75]],"99":[[1,259]],"100":[[1,120]],"103":[[1,116]],"105":[[2,118]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"5":260,"24":[[1,6]],"46":[[1,106]],"56":[[1,121]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,6]],"3":[[2,6]],"25":[[2,6]],"46":[[1,106]],"56":[[1,121]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,157]],"3":[[2,157]],"24":[[2,157]],"25":[[2,157]],"46":[[1,106]],"54":[[2,157]],"56":[[2,157]],"70":[[2,157]],"72":[[2,157]],"75":[[2,157]],"84":[[2,157]],"88":[[2,157]],"96":[[2,157]],"97":119,"98":[[2,157]],"99":[[2,157]],"100":[[2,157]],"103":[[2,157]],"105":[[2,157]],"112":[[2,157]],"115":[[2,157]],"118":[[2,157]],"119":[[2,157]],"122":[[1,81]],"123":[[1,82]],"126":[[2,157]],"127":[[2,157]],"128":[[2,157]],"129":[[2,157]],"130":[[2,157]],"131":[[2,157]],"132":[[2,157]],"133":[[2,157]],"134":[[2,157]],"135":[[2,157]],"136":[[2,157]],"137":[[2,157]],"138":[[2,157]],"139":[[2,157]],"140":[[2,157]],"141":[[2,157]],"142":[[2,157]],"143":[[2,157]],"144":[[2,157]],"145":[[2,157]],"146":[[2,157]],"147":[[2,157]],"148":[[2,157]],"149":[[2,157]],"150":[[2,157]],"151":[[2,157]],"152":[[2,157]],"153":[[2,157]],"154":[[2,157]],"155":[[2,157]]},{"1":[[2,158]],"3":[[2,158]],"24":[[2,158]],"25":[[2,158]],"46":[[1,106]],"54":[[2,158]],"56":[[2,158]],"70":[[2,158]],"72":[[2,158]],"75":[[2,158]],"84":[[2,158]],"88":[[2,158]],"96":[[2,158]],"97":119,"98":[[2,158]],"99":[[2,158]],"100":[[2,158]],"103":[[2,158]],"105":[[2,158]],"112":[[2,158]],"115":[[2,158]],"118":[[2,158]],"119":[[2,158]],"122":[[1,81]],"123":[[1,82]],"126":[[2,158]],"127":[[2,158]],"128":[[2,158]],"129":[[2,158]],"130":[[2,158]],"131":[[2,158]],"132":[[2,158]],"133":[[2,158]],"134":[[2,158]],"135":[[2,158]],"136":[[2,158]],"137":[[2,158]],"138":[[2,158]],"139":[[2,158]],"140":[[2,158]],"141":[[2,158]],"142":[[2,158]],"143":[[2,158]],"144":[[2,158]],"145":[[2,158]],"146":[[2,158]],"147":[[2,158]],"148":[[2,158]],"149":[[2,158]],"150":[[2,158]],"151":[[2,158]],"152":[[2,158]],"153":[[2,158]],"154":[[2,158]],"155":[[2,158]]},{"1":[[2,159]],"3":[[2,159]],"24":[[2,159]],"25":[[2,159]],"46":[[1,106]],"54":[[2,159]],"56":[[2,159]],"70":[[2,159]],"72":[[2,159]],"75":[[2,159]],"84":[[2,159]],"88":[[2,159]],"96":[[2,159]],"97":119,"98":[[2,159]],"99":[[2,159]],"100":[[2,159]],"103":[[2,159]],"105":[[2,159]],"112":[[2,159]],"115":[[2,159]],"118":[[2,159]],"119":[[2,159]],"122":[[1,81]],"123":[[1,82]],"126":[[2,159]],"127":[[2,159]],"128":[[2,159]],"129":[[2,159]],"130":[[2,159]],"131":[[2,159]],"132":[[2,159]],"133":[[2,159]],"134":[[2,159]],"135":[[2,159]],"136":[[2,159]],"137":[[2,159]],"138":[[2,159]],"139":[[2,159]],"140":[[2,159]],"141":[[2,159]],"142":[[2,159]],"143":[[2,159]],"144":[[2,159]],"145":[[2,159]],"146":[[2,159]],"147":[[2,159]],"148":[[2,159]],"149":[[2,159]],"150":[[2,159]],"151":[[2,159]],"152":[[2,159]],"153":[[2,159]],"154":[[2,159]],"155":[[2,159]]},{"1":[[2,160]],"3":[[2,160]],"24":[[2,160]],"25":[[2,160]],"46":[[1,106]],"54":[[2,160]],"56":[[2,160]],"70":[[2,160]],"72":[[2,160]],"75":[[2,160]],"84":[[2,160]],"88":[[2,160]],"96":[[2,160]],"97":119,"98":[[2,160]],"99":[[2,160]],"100":[[2,160]],"103":[[2,160]],"105":[[2,160]],"112":[[2,160]],"115":[[2,160]],"118":[[2,160]],"119":[[2,160]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[2,160]],"130":[[2,160]],"131":[[2,160]],"132":[[2,160]],"133":[[2,160]],"134":[[2,160]],"135":[[2,160]],"136":[[2,160]],"137":[[2,160]],"138":[[2,160]],"139":[[2,160]],"140":[[2,160]],"141":[[2,160]],"142":[[2,160]],"143":[[2,160]],"144":[[2,160]],"145":[[2,160]],"146":[[2,160]],"147":[[2,160]],"148":[[2,160]],"149":[[2,160]],"150":[[2,160]],"151":[[2,160]],"152":[[2,160]],"153":[[2,160]],"154":[[2,160]],"155":[[2,160]]},{"1":[[2,161]],"3":[[2,161]],"24":[[2,161]],"25":[[2,161]],"46":[[1,106]],"54":[[2,161]],"56":[[2,161]],"70":[[2,161]],"72":[[2,161]],"75":[[2,161]],"84":[[2,161]],"88":[[2,161]],"96":[[2,161]],"97":119,"98":[[2,161]],"99":[[2,161]],"100":[[2,161]],"103":[[2,161]],"105":[[2,161]],"112":[[2,161]],"115":[[2,161]],"118":[[2,161]],"119":[[2,161]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[2,161]],"130":[[2,161]],"131":[[2,161]],"132":[[2,161]],"133":[[2,161]],"134":[[2,161]],"135":[[2,161]],"136":[[2,161]],"137":[[2,161]],"138":[[2,161]],"139":[[2,161]],"140":[[2,161]],"141":[[2,161]],"142":[[2,161]],"143":[[2,161]],"144":[[2,161]],"145":[[2,161]],"146":[[2,161]],"147":[[2,161]],"148":[[2,161]],"149":[[2,161]],"150":[[2,161]],"151":[[2,161]],"152":[[2,161]],"153":[[2,161]],"154":[[2,161]],"155":[[2,161]]},{"1":[[2,162]],"3":[[2,162]],"24":[[2,162]],"25":[[2,162]],"46":[[1,106]],"54":[[2,162]],"56":[[2,162]],"70":[[2,162]],"72":[[2,162]],"75":[[2,162]],"84":[[2,162]],"88":[[2,162]],"96":[[2,162]],"97":119,"98":[[2,162]],"99":[[2,162]],"100":[[2,162]],"103":[[2,162]],"105":[[2,162]],"112":[[2,162]],"115":[[2,162]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[2,162]],"130":[[2,162]],"131":[[2,162]],"132":[[2,162]],"133":[[2,162]],"134":[[2,162]],"135":[[2,162]],"136":[[2,162]],"137":[[2,162]],"138":[[2,162]],"139":[[2,162]],"140":[[2,162]],"141":[[2,162]],"142":[[2,162]],"143":[[2,162]],"144":[[2,162]],"145":[[2,162]],"146":[[2,162]],"147":[[2,162]],"148":[[2,162]],"149":[[2,162]],"150":[[2,162]],"151":[[2,162]],"152":[[2,162]],"153":[[2,162]],"154":[[2,162]],"155":[[2,162]]},{"1":[[2,163]],"3":[[2,163]],"24":[[2,163]],"25":[[2,163]],"46":[[1,106]],"54":[[2,163]],"56":[[2,163]],"70":[[2,163]],"72":[[2,163]],"75":[[2,163]],"84":[[2,163]],"88":[[2,163]],"96":[[2,163]],"97":119,"98":[[2,163]],"99":[[2,163]],"100":[[2,163]],"103":[[2,163]],"105":[[2,163]],"112":[[2,163]],"115":[[2,163]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[2,163]],"130":[[2,163]],"131":[[2,163]],"132":[[2,163]],"133":[[2,163]],"134":[[2,163]],"135":[[2,163]],"136":[[2,163]],"137":[[2,163]],"138":[[2,163]],"139":[[2,163]],"140":[[2,163]],"141":[[2,163]],"142":[[2,163]],"143":[[2,163]],"144":[[2,163]],"145":[[2,163]],"146":[[2,163]],"147":[[2,163]],"148":[[2,163]],"149":[[2,163]],"150":[[2,163]],"151":[[2,163]],"152":[[2,163]],"153":[[2,163]],"154":[[2,163]],"155":[[2,163]]},{"1":[[2,164]],"3":[[2,164]],"24":[[2,164]],"25":[[2,164]],"46":[[1,106]],"54":[[2,164]],"56":[[2,164]],"70":[[2,164]],"72":[[2,164]],"75":[[2,164]],"84":[[2,164]],"88":[[2,164]],"96":[[2,164]],"97":119,"98":[[2,164]],"99":[[2,164]],"100":[[2,164]],"103":[[2,164]],"105":[[2,164]],"112":[[2,164]],"115":[[2,164]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[2,164]],"130":[[2,164]],"131":[[2,164]],"132":[[2,164]],"133":[[2,164]],"134":[[2,164]],"135":[[2,164]],"136":[[2,164]],"137":[[2,164]],"138":[[2,164]],"139":[[2,164]],"140":[[2,164]],"141":[[2,164]],"142":[[2,164]],"143":[[2,164]],"144":[[2,164]],"145":[[2,164]],"146":[[2,164]],"147":[[2,164]],"148":[[2,164]],"149":[[2,164]],"150":[[2,164]],"151":[[2,164]],"152":[[2,164]],"153":[[2,164]],"154":[[2,164]],"155":[[2,164]]},{"1":[[2,165]],"3":[[2,165]],"24":[[2,165]],"25":[[2,165]],"46":[[1,106]],"54":[[2,165]],"56":[[2,165]],"70":[[2,165]],"72":[[2,165]],"75":[[2,165]],"84":[[2,165]],"88":[[2,165]],"96":[[2,165]],"97":119,"98":[[2,165]],"99":[[2,165]],"100":[[2,165]],"103":[[2,165]],"105":[[2,165]],"112":[[2,165]],"115":[[2,165]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[2,165]],"133":[[2,165]],"134":[[2,165]],"135":[[2,165]],"136":[[2,165]],"137":[[2,165]],"138":[[2,165]],"139":[[2,165]],"140":[[2,165]],"141":[[2,165]],"142":[[2,165]],"143":[[2,165]],"144":[[2,165]],"145":[[2,165]],"146":[[2,165]],"147":[[2,165]],"148":[[2,165]],"149":[[2,165]],"150":[[2,165]],"151":[[2,165]],"152":[[2,165]],"153":[[2,165]],"154":[[2,165]],"155":[[2,165]]},{"1":[[2,166]],"3":[[2,166]],"24":[[2,166]],"25":[[2,166]],"46":[[1,106]],"54":[[2,166]],"56":[[2,166]],"70":[[2,166]],"72":[[2,166]],"75":[[2,166]],"84":[[2,166]],"88":[[2,166]],"96":[[2,166]],"97":119,"98":[[2,166]],"99":[[2,166]],"100":[[2,166]],"103":[[2,166]],"105":[[2,166]],"112":[[2,166]],"115":[[2,166]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[2,166]],"133":[[2,166]],"134":[[2,166]],"135":[[2,166]],"136":[[2,166]],"137":[[2,166]],"138":[[2,166]],"139":[[2,166]],"140":[[2,166]],"141":[[2,166]],"142":[[2,166]],"143":[[2,166]],"144":[[2,166]],"145":[[2,166]],"146":[[2,166]],"147":[[2,166]],"148":[[2,166]],"149":[[2,166]],"150":[[2,166]],"151":[[2,166]],"152":[[2,166]],"153":[[2,166]],"154":[[2,166]],"155":[[2,166]]},{"1":[[2,167]],"3":[[2,167]],"24":[[2,167]],"25":[[2,167]],"46":[[1,106]],"54":[[2,167]],"56":[[2,167]],"70":[[2,167]],"72":[[2,167]],"75":[[2,167]],"84":[[2,167]],"88":[[2,167]],"96":[[2,167]],"97":119,"98":[[2,167]],"99":[[2,167]],"100":[[2,167]],"103":[[2,167]],"105":[[2,167]],"112":[[2,167]],"115":[[2,167]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[2,167]],"133":[[2,167]],"134":[[2,167]],"135":[[2,167]],"136":[[2,167]],"137":[[2,167]],"138":[[2,167]],"139":[[2,167]],"140":[[2,167]],"141":[[2,167]],"142":[[2,167]],"143":[[2,167]],"144":[[2,167]],"145":[[2,167]],"146":[[2,167]],"147":[[2,167]],"148":[[2,167]],"149":[[2,167]],"150":[[2,167]],"151":[[2,167]],"152":[[2,167]],"153":[[2,167]],"154":[[2,167]],"155":[[2,167]]},{"1":[[2,168]],"3":[[2,168]],"24":[[2,168]],"25":[[2,168]],"46":[[1,106]],"54":[[2,168]],"56":[[2,168]],"70":[[2,168]],"72":[[2,168]],"75":[[2,168]],"84":[[2,168]],"88":[[2,168]],"96":[[2,168]],"97":119,"98":[[2,168]],"99":[[2,168]],"100":[[2,168]],"103":[[2,168]],"105":[[2,168]],"112":[[2,168]],"115":[[2,168]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[2,168]],"136":[[2,168]],"137":[[2,168]],"138":[[2,168]],"139":[[2,168]],"140":[[2,168]],"141":[[2,168]],"142":[[2,168]],"143":[[2,168]],"144":[[2,168]],"145":[[2,168]],"146":[[2,168]],"147":[[2,168]],"148":[[2,168]],"149":[[2,168]],"150":[[2,168]],"151":[[2,168]],"152":[[2,168]],"153":[[2,168]],"154":[[2,168]],"155":[[2,168]]},{"1":[[2,169]],"3":[[2,169]],"24":[[2,169]],"25":[[2,169]],"46":[[1,106]],"54":[[2,169]],"56":[[2,169]],"70":[[2,169]],"72":[[2,169]],"75":[[2,169]],"84":[[2,169]],"88":[[2,169]],"96":[[2,169]],"97":119,"98":[[2,169]],"99":[[2,169]],"100":[[2,169]],"103":[[2,169]],"105":[[2,169]],"112":[[2,169]],"115":[[2,169]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[2,169]],"136":[[2,169]],"137":[[2,169]],"138":[[2,169]],"139":[[2,169]],"140":[[2,169]],"141":[[2,169]],"142":[[2,169]],"143":[[2,169]],"144":[[2,169]],"145":[[2,169]],"146":[[2,169]],"147":[[2,169]],"148":[[2,169]],"149":[[2,169]],"150":[[2,169]],"151":[[2,169]],"152":[[2,169]],"153":[[2,169]],"154":[[2,169]],"155":[[2,169]]},{"1":[[2,170]],"3":[[2,170]],"24":[[2,170]],"25":[[2,170]],"46":[[1,106]],"54":[[2,170]],"56":[[2,170]],"70":[[2,170]],"72":[[2,170]],"75":[[2,170]],"84":[[2,170]],"88":[[2,170]],"96":[[2,170]],"97":119,"98":[[2,170]],"99":[[2,170]],"100":[[2,170]],"103":[[2,170]],"105":[[2,170]],"112":[[2,170]],"115":[[2,170]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[2,170]],"136":[[2,170]],"137":[[2,170]],"138":[[2,170]],"139":[[2,170]],"140":[[2,170]],"141":[[2,170]],"142":[[2,170]],"143":[[2,170]],"144":[[2,170]],"145":[[2,170]],"146":[[2,170]],"147":[[2,170]],"148":[[2,170]],"149":[[2,170]],"150":[[2,170]],"151":[[2,170]],"152":[[2,170]],"153":[[2,170]],"154":[[2,170]],"155":[[2,170]]},{"1":[[2,171]],"3":[[2,171]],"24":[[2,171]],"25":[[2,171]],"46":[[1,106]],"54":[[2,171]],"56":[[2,171]],"70":[[2,171]],"72":[[2,171]],"75":[[2,171]],"84":[[2,171]],"88":[[2,171]],"96":[[2,171]],"97":119,"98":[[2,171]],"99":[[2,171]],"100":[[2,171]],"103":[[2,171]],"105":[[2,171]],"112":[[2,171]],"115":[[2,171]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[2,171]],"136":[[2,171]],"137":[[2,171]],"138":[[2,171]],"139":[[2,171]],"140":[[2,171]],"141":[[2,171]],"142":[[2,171]],"143":[[2,171]],"144":[[2,171]],"145":[[2,171]],"146":[[2,171]],"147":[[2,171]],"148":[[2,171]],"149":[[2,171]],"150":[[2,171]],"151":[[2,171]],"152":[[2,171]],"153":[[2,171]],"154":[[2,171]],"155":[[2,171]]},{"1":[[2,172]],"3":[[2,172]],"24":[[2,172]],"25":[[2,172]],"46":[[1,106]],"54":[[2,172]],"56":[[2,172]],"70":[[2,172]],"72":[[2,172]],"75":[[2,172]],"84":[[2,172]],"88":[[2,172]],"96":[[2,172]],"97":119,"98":[[2,172]],"99":[[2,172]],"100":[[2,172]],"103":[[2,172]],"105":[[2,172]],"112":[[2,172]],"115":[[2,172]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[2,172]],"140":[[2,172]],"141":[[2,172]],"142":[[2,172]],"143":[[2,172]],"144":[[2,172]],"145":[[2,172]],"146":[[2,172]],"147":[[2,172]],"148":[[2,172]],"149":[[2,172]],"150":[[2,172]],"151":[[2,172]],"152":[[2,172]],"153":[[2,172]],"154":[[2,172]],"155":[[1,115]]},{"1":[[2,173]],"3":[[2,173]],"24":[[2,173]],"25":[[2,173]],"46":[[1,106]],"54":[[2,173]],"56":[[2,173]],"70":[[2,173]],"72":[[2,173]],"75":[[2,173]],"84":[[2,173]],"88":[[2,173]],"96":[[2,173]],"97":119,"98":[[2,173]],"99":[[2,173]],"100":[[2,173]],"103":[[2,173]],"105":[[2,173]],"112":[[2,173]],"115":[[2,173]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[2,173]],"140":[[2,173]],"141":[[2,173]],"142":[[2,173]],"143":[[2,173]],"144":[[2,173]],"145":[[2,173]],"146":[[2,173]],"147":[[2,173]],"148":[[2,173]],"149":[[2,173]],"150":[[2,173]],"151":[[2,173]],"152":[[2,173]],"153":[[2,173]],"154":[[2,173]],"155":[[1,115]]},{"1":[[2,174]],"3":[[2,174]],"24":[[2,174]],"25":[[2,174]],"46":[[1,106]],"54":[[2,174]],"56":[[2,174]],"70":[[2,174]],"72":[[2,174]],"75":[[2,174]],"84":[[2,174]],"88":[[2,174]],"96":[[2,174]],"97":119,"98":[[2,174]],"99":[[2,174]],"100":[[2,174]],"103":[[2,174]],"105":[[2,174]],"112":[[2,174]],"115":[[2,174]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[2,174]],"140":[[2,174]],"141":[[2,174]],"142":[[2,174]],"143":[[2,174]],"144":[[2,174]],"145":[[2,174]],"146":[[2,174]],"147":[[2,174]],"148":[[2,174]],"149":[[2,174]],"150":[[2,174]],"151":[[2,174]],"152":[[2,174]],"153":[[2,174]],"154":[[2,174]],"155":[[1,115]]},{"1":[[2,175]],"3":[[2,175]],"24":[[2,175]],"25":[[2,175]],"46":[[1,106]],"54":[[2,175]],"56":[[2,175]],"70":[[2,175]],"72":[[2,175]],"75":[[2,175]],"84":[[2,175]],"88":[[2,175]],"96":[[2,175]],"97":119,"98":[[2,175]],"99":[[2,175]],"100":[[2,175]],"103":[[2,175]],"105":[[2,175]],"112":[[2,175]],"115":[[2,175]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[2,175]],"140":[[2,175]],"141":[[2,175]],"142":[[2,175]],"143":[[2,175]],"144":[[2,175]],"145":[[2,175]],"146":[[2,175]],"147":[[2,175]],"148":[[2,175]],"149":[[2,175]],"150":[[2,175]],"151":[[2,175]],"152":[[2,175]],"153":[[2,175]],"154":[[2,175]],"155":[[1,115]]},{"1":[[2,176]],"3":[[2,176]],"24":[[2,176]],"25":[[2,176]],"46":[[1,106]],"54":[[2,176]],"56":[[2,176]],"70":[[2,176]],"72":[[2,176]],"75":[[2,176]],"84":[[2,176]],"88":[[2,176]],"96":[[2,176]],"97":119,"98":[[2,176]],"99":[[2,176]],"100":[[2,176]],"103":[[2,176]],"105":[[2,176]],"112":[[2,176]],"115":[[2,176]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[2,176]],"144":[[2,176]],"145":[[2,176]],"146":[[2,176]],"147":[[2,176]],"148":[[2,176]],"149":[[2,176]],"150":[[2,176]],"151":[[2,176]],"152":[[2,176]],"153":[[2,176]],"154":[[2,176]],"155":[[1,115]]},{"1":[[2,177]],"3":[[2,177]],"24":[[2,177]],"25":[[2,177]],"46":[[1,106]],"54":[[2,177]],"56":[[2,177]],"70":[[2,177]],"72":[[2,177]],"75":[[2,177]],"84":[[2,177]],"88":[[2,177]],"96":[[2,177]],"97":119,"98":[[2,177]],"99":[[2,177]],"100":[[2,177]],"103":[[2,177]],"105":[[2,177]],"112":[[2,177]],"115":[[2,177]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[2,177]],"144":[[2,177]],"145":[[2,177]],"146":[[2,177]],"147":[[2,177]],"148":[[2,177]],"149":[[2,177]],"150":[[2,177]],"151":[[2,177]],"152":[[2,177]],"153":[[2,177]],"154":[[2,177]],"155":[[1,115]]},{"1":[[2,178]],"3":[[2,178]],"24":[[2,178]],"25":[[2,178]],"46":[[1,106]],"54":[[2,178]],"56":[[2,178]],"70":[[2,178]],"72":[[2,178]],"75":[[2,178]],"84":[[2,178]],"88":[[2,178]],"96":[[2,178]],"97":119,"98":[[2,178]],"99":[[2,178]],"100":[[2,178]],"103":[[2,178]],"105":[[2,178]],"112":[[2,178]],"115":[[2,178]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[2,178]],"144":[[2,178]],"145":[[2,178]],"146":[[2,178]],"147":[[2,178]],"148":[[2,178]],"149":[[2,178]],"150":[[2,178]],"151":[[2,178]],"152":[[2,178]],"153":[[2,178]],"154":[[2,178]],"155":[[1,115]]},{"1":[[2,179]],"3":[[2,179]],"24":[[2,179]],"25":[[2,179]],"46":[[1,106]],"54":[[2,179]],"56":[[2,179]],"70":[[2,179]],"72":[[2,179]],"75":[[2,179]],"84":[[2,179]],"88":[[2,179]],"96":[[2,179]],"97":119,"98":[[2,179]],"99":[[2,179]],"100":[[2,179]],"103":[[2,179]],"105":[[2,179]],"112":[[2,179]],"115":[[2,179]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[2,179]],"144":[[2,179]],"145":[[2,179]],"146":[[2,179]],"147":[[2,179]],"148":[[2,179]],"149":[[2,179]],"150":[[2,179]],"151":[[2,179]],"152":[[2,179]],"153":[[2,179]],"154":[[2,179]],"155":[[1,115]]},{"1":[[2,180]],"3":[[2,180]],"24":[[2,180]],"25":[[2,180]],"46":[[2,180]],"54":[[2,180]],"56":[[2,180]],"70":[[2,180]],"72":[[2,180]],"75":[[2,180]],"84":[[2,180]],"88":[[2,180]],"96":[[2,180]],"97":119,"98":[[2,180]],"99":[[2,180]],"100":[[2,180]],"103":[[2,180]],"105":[[2,180]],"112":[[2,180]],"115":[[2,180]],"118":[[2,180]],"119":[[2,180]],"122":[[2,180]],"123":[[2,180]],"126":[[2,180]],"127":[[2,180]],"128":[[2,180]],"129":[[2,180]],"130":[[2,180]],"131":[[2,180]],"132":[[2,180]],"133":[[2,180]],"134":[[2,180]],"135":[[2,180]],"136":[[2,180]],"137":[[2,180]],"138":[[2,180]],"139":[[2,180]],"140":[[2,180]],"141":[[2,180]],"142":[[2,180]],"143":[[2,180]],"144":[[2,180]],"145":[[2,180]],"146":[[2,180]],"147":[[2,180]],"148":[[2,180]],"149":[[2,180]],"150":[[2,180]],"151":[[2,180]],"152":[[2,180]],"153":[[2,180]],"154":[[2,180]],"155":[[2,180]]},{"1":[[2,181]],"3":[[2,181]],"24":[[2,181]],"25":[[2,181]],"46":[[1,106]],"54":[[2,181]],"56":[[2,181]],"70":[[2,181]],"72":[[2,181]],"75":[[2,181]],"84":[[2,181]],"88":[[2,181]],"96":[[2,181]],"97":119,"98":[[2,181]],"99":[[2,181]],"100":[[2,181]],"103":[[2,181]],"105":[[2,181]],"112":[[2,181]],"115":[[2,181]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,182]],"3":[[2,182]],"24":[[2,182]],"25":[[2,182]],"46":[[1,106]],"54":[[2,182]],"56":[[2,182]],"70":[[2,182]],"72":[[2,182]],"75":[[2,182]],"84":[[2,182]],"88":[[2,182]],"96":[[2,182]],"97":119,"98":[[2,182]],"99":[[2,182]],"100":[[2,182]],"103":[[2,182]],"105":[[2,182]],"112":[[2,182]],"115":[[2,182]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,183]],"3":[[2,183]],"24":[[2,183]],"25":[[2,183]],"46":[[1,106]],"54":[[2,183]],"56":[[2,183]],"70":[[2,183]],"72":[[2,183]],"75":[[2,183]],"84":[[2,183]],"88":[[2,183]],"96":[[2,183]],"97":119,"98":[[2,183]],"99":[[2,183]],"100":[[2,183]],"103":[[2,183]],"105":[[2,183]],"112":[[2,183]],"115":[[2,183]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,184]],"3":[[2,184]],"24":[[2,184]],"25":[[2,184]],"46":[[1,106]],"54":[[2,184]],"56":[[2,184]],"70":[[2,184]],"72":[[2,184]],"75":[[2,184]],"84":[[2,184]],"88":[[2,184]],"96":[[2,184]],"97":119,"98":[[2,184]],"99":[[2,184]],"100":[[2,184]],"103":[[2,184]],"105":[[2,184]],"112":[[2,184]],"115":[[2,184]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,185]],"3":[[2,185]],"24":[[2,185]],"25":[[2,185]],"46":[[1,106]],"54":[[2,185]],"56":[[2,185]],"70":[[2,185]],"72":[[2,185]],"75":[[2,185]],"84":[[2,185]],"88":[[2,185]],"96":[[2,185]],"97":119,"98":[[2,185]],"99":[[2,185]],"100":[[2,185]],"103":[[2,185]],"105":[[2,185]],"112":[[2,185]],"115":[[2,185]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,186]],"3":[[2,186]],"24":[[2,186]],"25":[[2,186]],"46":[[1,106]],"54":[[2,186]],"56":[[2,186]],"70":[[2,186]],"72":[[2,186]],"75":[[2,186]],"84":[[2,186]],"88":[[2,186]],"96":[[2,186]],"97":119,"98":[[2,186]],"99":[[2,186]],"100":[[2,186]],"103":[[2,186]],"105":[[2,186]],"112":[[2,186]],"115":[[2,186]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,187]],"3":[[2,187]],"24":[[2,187]],"25":[[2,187]],"46":[[1,106]],"54":[[2,187]],"56":[[2,187]],"70":[[2,187]],"72":[[2,187]],"75":[[2,187]],"84":[[2,187]],"88":[[2,187]],"96":[[2,187]],"97":119,"98":[[2,187]],"99":[[2,187]],"100":[[2,187]],"103":[[2,187]],"105":[[2,187]],"112":[[2,187]],"115":[[2,187]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,188]],"3":[[2,188]],"24":[[2,188]],"25":[[2,188]],"46":[[1,106]],"54":[[2,188]],"56":[[2,188]],"70":[[2,188]],"72":[[2,188]],"75":[[2,188]],"84":[[2,188]],"88":[[2,188]],"96":[[2,188]],"97":119,"98":[[2,188]],"99":[[2,188]],"100":[[2,188]],"103":[[2,188]],"105":[[2,188]],"112":[[2,188]],"115":[[2,188]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,189]],"3":[[2,189]],"24":[[2,189]],"25":[[2,189]],"46":[[1,106]],"54":[[2,189]],"56":[[2,189]],"70":[[2,189]],"72":[[2,189]],"75":[[2,189]],"84":[[2,189]],"88":[[2,189]],"96":[[2,189]],"97":119,"98":[[2,189]],"99":[[2,189]],"100":[[2,189]],"103":[[2,189]],"105":[[2,189]],"112":[[2,189]],"115":[[2,189]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[2,189]],"140":[[2,189]],"141":[[2,189]],"142":[[2,189]],"143":[[2,189]],"144":[[2,189]],"145":[[2,189]],"146":[[2,189]],"147":[[2,189]],"148":[[2,189]],"149":[[2,189]],"150":[[2,189]],"151":[[2,189]],"152":[[2,189]],"153":[[2,189]],"154":[[2,189]],"155":[[1,115]]},{"1":[[2,190]],"3":[[2,190]],"24":[[2,190]],"25":[[2,190]],"46":[[1,106]],"54":[[2,190]],"56":[[1,121]],"70":[[2,190]],"72":[[2,190]],"75":[[2,190]],"84":[[2,190]],"88":[[2,190]],"96":[[2,190]],"97":119,"98":[[2,190]],"99":[[2,190]],"100":[[2,190]],"103":[[1,116]],"105":[[2,190]],"112":[[2,190]],"115":[[2,190]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,143]],"3":[[2,143]],"24":[[2,143]],"25":[[2,143]],"46":[[1,106]],"54":[[2,143]],"56":[[1,121]],"70":[[2,143]],"72":[[2,143]],"75":[[2,143]],"84":[[2,143]],"88":[[2,143]],"96":[[2,143]],"97":119,"98":[[1,75]],"99":[[2,143]],"100":[[1,120]],"103":[[1,116]],"105":[[2,143]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,144]],"3":[[2,144]],"24":[[2,144]],"25":[[2,144]],"46":[[1,106]],"54":[[2,144]],"56":[[1,121]],"70":[[2,144]],"72":[[2,144]],"75":[[2,144]],"84":[[2,144]],"88":[[2,144]],"96":[[2,144]],"97":119,"98":[[1,75]],"99":[[2,144]],"100":[[1,120]],"103":[[1,116]],"105":[[2,144]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"102":261,"103":[[1,236]],"104":[[1,237]]},{"56":[[1,262]]},{"1":[[2,25]],"3":[[2,25]],"24":[[2,25]],"25":[[2,25]],"45":[[2,25]],"46":[[2,25]],"54":[[2,25]],"56":[[2,25]],"70":[[2,25]],"72":[[2,25]],"75":[[2,25]],"84":[[2,25]],"88":[[2,25]],"92":[[2,25]],"93":[[2,25]],"96":[[2,25]],"98":[[2,25]],"99":[[2,25]],"100":[[2,25]],"103":[[2,25]],"105":[[2,25]],"108":[[2,25]],"110":[[2,25]],"112":[[2,25]],"115":[[2,25]],"118":[[2,25]],"119":[[2,25]],"122":[[2,25]],"123":[[2,25]],"126":[[2,25]],"127":[[2,25]],"128":[[2,25]],"129":[[2,25]],"130":[[2,25]],"131":[[2,25]],"132":[[2,25]],"133":[[2,25]],"134":[[2,25]],"135":[[2,25]],"136":[[2,25]],"137":[[2,25]],"138":[[2,25]],"139":[[2,25]],"140":[[2,25]],"141":[[2,25]],"142":[[2,25]],"143":[[2,25]],"144":[[2,25]],"145":[[2,25]],"146":[[2,25]],"147":[[2,25]],"148":[[2,25]],"149":[[2,25]],"150":[[2,25]],"151":[[2,25]],"152":[[2,25]],"153":[[2,25]],"154":[[2,25]],"155":[[2,25]]},{"1":[[2,41]],"3":[[2,41]],"24":[[2,41]],"25":[[2,41]],"46":[[1,106]],"54":[[2,41]],"56":[[1,121]],"70":[[2,41]],"72":[[2,41]],"75":[[2,41]],"84":[[2,41]],"88":[[2,41]],"96":[[2,41]],"97":119,"98":[[2,41]],"99":[[2,41]],"100":[[1,120]],"103":[[1,116]],"105":[[2,41]],"112":[[2,41]],"115":[[2,41]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,90]],"3":[[2,90]],"24":[[2,90]],"25":[[2,90]],"46":[[2,90]],"54":[[2,90]],"56":[[2,90]],"62":124,"64":[[1,128]],"65":[[1,129]],"66":[[1,130]],"67":131,"68":132,"69":[[1,134]],"70":[[2,90]],"71":[[1,135]],"72":[[2,90]],"75":[[2,90]],"81":127,"82":[[1,133]],"84":[[2,90]],"88":[[2,90]],"96":[[2,90]],"98":[[2,90]],"99":[[2,90]],"100":[[2,90]],"103":[[2,90]],"105":[[2,90]],"112":[[2,90]],"115":[[2,90]],"118":[[2,90]],"119":[[2,90]],"122":[[2,90]],"123":[[2,90]],"126":[[2,90]],"127":[[2,90]],"128":[[2,90]],"129":[[2,90]],"130":[[2,90]],"131":[[2,90]],"132":[[2,90]],"133":[[2,90]],"134":[[2,90]],"135":[[2,90]],"136":[[2,90]],"137":[[2,90]],"138":[[2,90]],"139":[[2,90]],"140":[[2,90]],"141":[[2,90]],"142":[[2,90]],"143":[[2,90]],"144":[[2,90]],"145":[[2,90]],"146":[[2,90]],"147":[[2,90]],"148":[[2,90]],"149":[[2,90]],"150":[[2,90]],"151":[[2,90]],"152":[[2,90]],"153":[[2,90]],"154":[[2,90]],"155":[[2,90]]},{"1":[[2,68]],"3":[[2,68]],"24":[[2,68]],"25":[[2,68]],"42":[[2,68]],"46":[[2,68]],"54":[[2,68]],"56":[[2,68]],"64":[[2,68]],"65":[[2,68]],"66":[[2,68]],"69":[[2,68]],"70":[[2,68]],"71":[[2,68]],"72":[[2,68]],"75":[[2,68]],"78":[[2,68]],"82":[[2,68]],"84":[[2,68]],"88":[[2,68]],"96":[[2,68]],"98":[[2,68]],"99":[[2,68]],"100":[[2,68]],"103":[[2,68]],"105":[[2,68]],"112":[[2,68]],"115":[[2,68]],"118":[[2,68]],"119":[[2,68]],"122":[[2,68]],"123":[[2,68]],"126":[[2,68]],"127":[[2,68]],"128":[[2,68]],"129":[[2,68]],"130":[[2,68]],"131":[[2,68]],"132":[[2,68]],"133":[[2,68]],"134":[[2,68]],"135":[[2,68]],"136":[[2,68]],"137":[[2,68]],"138":[[2,68]],"139":[[2,68]],"140":[[2,68]],"141":[[2,68]],"142":[[2,68]],"143":[[2,68]],"144":[[2,68]],"145":[[2,68]],"146":[[2,68]],"147":[[2,68]],"148":[[2,68]],"149":[[2,68]],"150":[[2,68]],"151":[[2,68]],"152":[[2,68]],"153":[[2,68]],"154":[[2,68]],"155":[[2,68]]},{"1":[[2,69]],"3":[[2,69]],"24":[[2,69]],"25":[[2,69]],"42":[[2,69]],"46":[[2,69]],"54":[[2,69]],"56":[[2,69]],"64":[[2,69]],"65":[[2,69]],"66":[[2,69]],"69":[[2,69]],"70":[[2,69]],"71":[[2,69]],"72":[[2,69]],"75":[[2,69]],"78":[[2,69]],"82":[[2,69]],"84":[[2,69]],"88":[[2,69]],"96":[[2,69]],"98":[[2,69]],"99":[[2,69]],"100":[[2,69]],"103":[[2,69]],"105":[[2,69]],"112":[[2,69]],"115":[[2,69]],"118":[[2,69]],"119":[[2,69]],"122":[[2,69]],"123":[[2,69]],"126":[[2,69]],"127":[[2,69]],"128":[[2,69]],"129":[[2,69]],"130":[[2,69]],"131":[[2,69]],"132":[[2,69]],"133":[[2,69]],"134":[[2,69]],"135":[[2,69]],"136":[[2,69]],"137":[[2,69]],"138":[[2,69]],"139":[[2,69]],"140":[[2,69]],"141":[[2,69]],"142":[[2,69]],"143":[[2,69]],"144":[[2,69]],"145":[[2,69]],"146":[[2,69]],"147":[[2,69]],"148":[[2,69]],"149":[[2,69]],"150":[[2,69]],"151":[[2,69]],"152":[[2,69]],"153":[[2,69]],"154":[[2,69]],"155":[[2,69]]},{"1":[[2,70]],"3":[[2,70]],"24":[[2,70]],"25":[[2,70]],"42":[[2,70]],"46":[[2,70]],"54":[[2,70]],"56":[[2,70]],"64":[[2,70]],"65":[[2,70]],"66":[[2,70]],"69":[[2,70]],"70":[[2,70]],"71":[[2,70]],"72":[[2,70]],"75":[[2,70]],"78":[[2,70]],"82":[[2,70]],"84":[[2,70]],"88":[[2,70]],"96":[[2,70]],"98":[[2,70]],"99":[[2,70]],"100":[[2,70]],"103":[[2,70]],"105":[[2,70]],"112":[[2,70]],"115":[[2,70]],"118":[[2,70]],"119":[[2,70]],"122":[[2,70]],"123":[[2,70]],"126":[[2,70]],"127":[[2,70]],"128":[[2,70]],"129":[[2,70]],"130":[[2,70]],"131":[[2,70]],"132":[[2,70]],"133":[[2,70]],"134":[[2,70]],"135":[[2,70]],"136":[[2,70]],"137":[[2,70]],"138":[[2,70]],"139":[[2,70]],"140":[[2,70]],"141":[[2,70]],"142":[[2,70]],"143":[[2,70]],"144":[[2,70]],"145":[[2,70]],"146":[[2,70]],"147":[[2,70]],"148":[[2,70]],"149":[[2,70]],"150":[[2,70]],"151":[[2,70]],"152":[[2,70]],"153":[[2,70]],"154":[[2,70]],"155":[[2,70]]},{"3":[[1,244]],"25":[[1,245]],"54":[[1,243]],"84":[[1,263]]},{"3":[[2,103]],"25":[[2,103]],"46":[[1,106]],"54":[[2,103]],"56":[[1,121]],"84":[[2,103]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"46":[[1,106]],"56":[[1,265]],"70":[[1,264]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"46":[[1,106]],"56":[[1,121]],"72":[[1,266]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"50":267,"51":[[1,72]],"52":[[1,73]]},{"53":268,"55":[[1,142]]},{"56":[[1,269]]},{"1":[[2,112]],"3":[[2,112]],"24":[[2,112]],"25":[[2,112]],"46":[[2,112]],"54":[[2,112]],"56":[[2,112]],"70":[[2,112]],"72":[[2,112]],"75":[[2,112]],"84":[[2,112]],"88":[[2,112]],"92":[[1,270]],"96":[[2,112]],"98":[[2,112]],"99":[[2,112]],"100":[[2,112]],"103":[[2,112]],"105":[[2,112]],"112":[[2,112]],"115":[[2,112]],"118":[[2,112]],"119":[[2,112]],"122":[[2,112]],"123":[[2,112]],"126":[[2,112]],"127":[[2,112]],"128":[[2,112]],"129":[[2,112]],"130":[[2,112]],"131":[[2,112]],"132":[[2,112]],"133":[[2,112]],"134":[[2,112]],"135":[[2,112]],"136":[[2,112]],"137":[[2,112]],"138":[[2,112]],"139":[[2,112]],"140":[[2,112]],"141":[[2,112]],"142":[[2,112]],"143":[[2,112]],"144":[[2,112]],"145":[[2,112]],"146":[[2,112]],"147":[[2,112]],"148":[[2,112]],"149":[[2,112]],"150":[[2,112]],"151":[[2,112]],"152":[[2,112]],"153":[[2,112]],"154":[[2,112]],"155":[[2,112]]},{"5":271,"24":[[1,6]]},{"26":272,"27":[[1,55]]},{"5":273,"24":[[1,6]],"99":[[1,274]],"105":[[1,275]]},{"6":276,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":277,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"26":278,"27":[[1,55]]},{"23":282,"45":[[1,54]],"107":279,"109":280,"110":[[1,281]]},{"7":283,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":162,"73":[[1,68]],"86":[[1,70]],"87":[[1,67]],"95":[[1,69]]},{"1":[[2,79]],"3":[[2,79]],"24":[[2,79]],"25":[[2,79]],"46":[[2,79]],"54":[[2,79]],"56":[[2,79]],"70":[[2,79]],"72":[[2,79]],"75":[[2,79]],"84":[[2,79]],"88":[[2,79]],"96":[[2,79]],"98":[[2,79]],"99":[[2,79]],"100":[[2,79]],"103":[[2,79]],"105":[[2,79]],"112":[[2,79]],"115":[[2,79]],"118":[[2,79]],"119":[[2,79]],"122":[[2,79]],"123":[[2,79]],"126":[[2,79]],"127":[[2,79]],"128":[[2,79]],"129":[[2,79]],"130":[[2,79]],"131":[[2,79]],"132":[[2,79]],"133":[[2,79]],"134":[[2,79]],"135":[[2,79]],"136":[[2,79]],"137":[[2,79]],"138":[[2,79]],"139":[[2,79]],"140":[[2,79]],"141":[[2,79]],"142":[[2,79]],"143":[[2,79]],"144":[[2,79]],"145":[[2,79]],"146":[[2,79]],"147":[[2,79]],"148":[[2,79]],"149":[[2,79]],"150":[[2,79]],"151":[[2,79]],"152":[[2,79]],"153":[[2,79]],"154":[[2,79]],"155":[[2,79]]},{"1":[[2,101]],"3":[[2,101]],"24":[[2,101]],"25":[[2,101]],"42":[[2,101]],"46":[[2,101]],"54":[[2,101]],"56":[[2,101]],"64":[[2,101]],"65":[[2,101]],"66":[[2,101]],"69":[[2,101]],"70":[[2,101]],"71":[[2,101]],"72":[[2,101]],"75":[[2,101]],"78":[[2,101]],"82":[[2,101]],"84":[[2,101]],"88":[[2,101]],"96":[[2,101]],"98":[[2,101]],"99":[[2,101]],"100":[[2,101]],"103":[[2,101]],"105":[[2,101]],"112":[[2,101]],"115":[[2,101]],"118":[[2,101]],"119":[[2,101]],"122":[[2,101]],"123":[[2,101]],"126":[[2,101]],"127":[[2,101]],"128":[[2,101]],"129":[[2,101]],"130":[[2,101]],"131":[[2,101]],"132":[[2,101]],"133":[[2,101]],"134":[[2,101]],"135":[[2,101]],"136":[[2,101]],"137":[[2,101]],"138":[[2,101]],"139":[[2,101]],"140":[[2,101]],"141":[[2,101]],"142":[[2,101]],"143":[[2,101]],"144":[[2,101]],"145":[[2,101]],"146":[[2,101]],"147":[[2,101]],"148":[[2,101]],"149":[[2,101]],"150":[[2,101]],"151":[[2,101]],"152":[[2,101]],"153":[[2,101]],"154":[[2,101]],"155":[[2,101]]},{"3":[[1,285]],"6":284,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":[[1,286]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":287,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"3":[[2,109]],"25":[[2,109]],"54":[[2,109]],"84":[[2,109]],"88":[[2,109]]},{"56":[[1,288]]},{"3":[[2,104]],"25":[[2,104]],"46":[[1,106]],"54":[[2,104]],"56":[[1,121]],"84":[[2,104]],"88":[[2,104]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,75]],"3":[[2,75]],"24":[[2,75]],"25":[[2,75]],"42":[[2,75]],"46":[[2,75]],"54":[[2,75]],"56":[[2,75]],"64":[[2,75]],"65":[[2,75]],"66":[[2,75]],"69":[[2,75]],"70":[[2,75]],"71":[[2,75]],"72":[[2,75]],"75":[[2,75]],"78":[[2,75]],"82":[[2,75]],"84":[[2,75]],"88":[[2,75]],"96":[[2,75]],"98":[[2,75]],"99":[[2,75]],"100":[[2,75]],"103":[[2,75]],"105":[[2,75]],"112":[[2,75]],"115":[[2,75]],"118":[[2,75]],"119":[[2,75]],"122":[[2,75]],"123":[[2,75]],"126":[[2,75]],"127":[[2,75]],"128":[[2,75]],"129":[[2,75]],"130":[[2,75]],"131":[[2,75]],"132":[[2,75]],"133":[[2,75]],"134":[[2,75]],"135":[[2,75]],"136":[[2,75]],"137":[[2,75]],"138":[[2,75]],"139":[[2,75]],"140":[[2,75]],"141":[[2,75]],"142":[[2,75]],"143":[[2,75]],"144":[[2,75]],"145":[[2,75]],"146":[[2,75]],"147":[[2,75]],"148":[[2,75]],"149":[[2,75]],"150":[[2,75]],"151":[[2,75]],"152":[[2,75]],"153":[[2,75]],"154":[[2,75]],"155":[[2,75]]},{"3":[[1,290]],"23":172,"26":170,"27":[[1,55]],"28":171,"29":[[1,76]],"30":[[1,77]],"43":289,"45":[[1,54]]},{"23":172,"26":170,"27":[[1,55]],"28":171,"29":[[1,76]],"30":[[1,77]],"43":291,"45":[[1,54]]},{"1":[[2,76]],"3":[[2,76]],"24":[[2,76]],"25":[[2,76]],"42":[[2,76]],"46":[[2,76]],"54":[[2,76]],"56":[[2,76]],"64":[[2,76]],"65":[[2,76]],"66":[[2,76]],"69":[[2,76]],"70":[[2,76]],"71":[[2,76]],"72":[[2,76]],"75":[[2,76]],"78":[[2,76]],"82":[[2,76]],"84":[[2,76]],"88":[[2,76]],"96":[[2,76]],"98":[[2,76]],"99":[[2,76]],"100":[[2,76]],"103":[[2,76]],"105":[[2,76]],"112":[[2,76]],"115":[[2,76]],"118":[[2,76]],"119":[[2,76]],"122":[[2,76]],"123":[[2,76]],"126":[[2,76]],"127":[[2,76]],"128":[[2,76]],"129":[[2,76]],"130":[[2,76]],"131":[[2,76]],"132":[[2,76]],"133":[[2,76]],"134":[[2,76]],"135":[[2,76]],"136":[[2,76]],"137":[[2,76]],"138":[[2,76]],"139":[[2,76]],"140":[[2,76]],"141":[[2,76]],"142":[[2,76]],"143":[[2,76]],"144":[[2,76]],"145":[[2,76]],"146":[[2,76]],"147":[[2,76]],"148":[[2,76]],"149":[[2,76]],"150":[[2,76]],"151":[[2,76]],"152":[[2,76]],"153":[[2,76]],"154":[[2,76]],"155":[[2,76]]},{"3":[[1,250]],"25":[[1,292]],"54":[[1,249]]},{"6":293,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":294,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,117]],"3":[[2,117]],"24":[[2,117]],"25":[[2,117]],"42":[[2,117]],"46":[[2,117]],"54":[[2,117]],"56":[[2,117]],"64":[[2,117]],"65":[[2,117]],"66":[[2,117]],"69":[[2,117]],"70":[[2,117]],"71":[[2,117]],"72":[[2,117]],"75":[[2,117]],"78":[[2,117]],"82":[[2,117]],"84":[[2,117]],"88":[[2,117]],"96":[[2,117]],"98":[[2,117]],"99":[[2,117]],"100":[[2,117]],"103":[[2,117]],"105":[[2,117]],"112":[[2,117]],"115":[[2,117]],"118":[[2,117]],"119":[[2,117]],"122":[[2,117]],"123":[[2,117]],"126":[[2,117]],"127":[[2,117]],"128":[[2,117]],"129":[[2,117]],"130":[[2,117]],"131":[[2,117]],"132":[[2,117]],"133":[[2,117]],"134":[[2,117]],"135":[[2,117]],"136":[[2,117]],"137":[[2,117]],"138":[[2,117]],"139":[[2,117]],"140":[[2,117]],"141":[[2,117]],"142":[[2,117]],"143":[[2,117]],"144":[[2,117]],"145":[[2,117]],"146":[[2,117]],"147":[[2,117]],"148":[[2,117]],"149":[[2,117]],"150":[[2,117]],"151":[[2,117]],"152":[[2,117]],"153":[[2,117]],"154":[[2,117]],"155":[[2,117]]},{"3":[[1,244]],"25":[[1,245]],"54":[[1,243]],"84":[[1,295]]},{"1":[[2,140]],"3":[[2,140]],"24":[[2,140]],"25":[[2,140]],"46":[[2,140]],"54":[[2,140]],"56":[[2,140]],"70":[[2,140]],"72":[[2,140]],"75":[[2,140]],"84":[[2,140]],"88":[[2,140]],"96":[[2,140]],"98":[[2,140]],"99":[[2,140]],"100":[[2,140]],"103":[[2,140]],"105":[[2,140]],"112":[[2,140]],"115":[[2,140]],"118":[[2,140]],"119":[[2,140]],"122":[[2,140]],"123":[[2,140]],"126":[[2,140]],"127":[[2,140]],"128":[[2,140]],"129":[[2,140]],"130":[[2,140]],"131":[[2,140]],"132":[[2,140]],"133":[[2,140]],"134":[[2,140]],"135":[[2,140]],"136":[[2,140]],"137":[[2,140]],"138":[[2,140]],"139":[[2,140]],"140":[[2,140]],"141":[[2,140]],"142":[[2,140]],"143":[[2,140]],"144":[[2,140]],"145":[[2,140]],"146":[[2,140]],"147":[[2,140]],"148":[[2,140]],"149":[[2,140]],"150":[[2,140]],"151":[[2,140]],"152":[[2,140]],"153":[[2,140]],"154":[[2,140]],"155":[[2,140]]},{"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":297,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,137]],"3":[[2,137]],"24":[[2,137]],"25":[[2,137]],"46":[[2,137]],"54":[[2,137]],"56":[[2,137]],"70":[[2,137]],"72":[[2,137]],"75":[[2,137]],"84":[[2,137]],"88":[[2,137]],"96":[[2,137]],"98":[[2,137]],"99":[[2,137]],"100":[[2,137]],"103":[[2,137]],"105":[[2,137]],"108":[[2,137]],"112":[[2,137]],"115":[[2,137]],"118":[[2,137]],"119":[[2,137]],"122":[[2,137]],"123":[[2,137]],"126":[[2,137]],"127":[[2,137]],"128":[[2,137]],"129":[[2,137]],"130":[[2,137]],"131":[[2,137]],"132":[[2,137]],"133":[[2,137]],"134":[[2,137]],"135":[[2,137]],"136":[[2,137]],"137":[[2,137]],"138":[[2,137]],"139":[[2,137]],"140":[[2,137]],"141":[[2,137]],"142":[[2,137]],"143":[[2,137]],"144":[[2,137]],"145":[[2,137]],"146":[[2,137]],"147":[[2,137]],"148":[[2,137]],"149":[[2,137]],"150":[[2,137]],"151":[[2,137]],"152":[[2,137]],"153":[[2,137]],"154":[[2,137]],"155":[[2,137]]},{"1":[[2,122]],"3":[[2,122]],"24":[[2,122]],"25":[[2,122]],"46":[[2,122]],"54":[[2,122]],"56":[[2,122]],"70":[[2,122]],"72":[[2,122]],"75":[[2,122]],"84":[[2,122]],"88":[[2,122]],"96":[[2,122]],"98":[[2,122]],"99":[[1,274]],"100":[[2,122]],"103":[[2,122]],"105":[[1,275]],"112":[[2,122]],"115":[[2,122]],"118":[[2,122]],"119":[[2,122]],"122":[[2,122]],"123":[[2,122]],"126":[[2,122]],"127":[[2,122]],"128":[[2,122]],"129":[[2,122]],"130":[[2,122]],"131":[[2,122]],"132":[[2,122]],"133":[[2,122]],"134":[[2,122]],"135":[[2,122]],"136":[[2,122]],"137":[[2,122]],"138":[[2,122]],"139":[[2,122]],"140":[[2,122]],"141":[[2,122]],"142":[[2,122]],"143":[[2,122]],"144":[[2,122]],"145":[[2,122]],"146":[[2,122]],"147":[[2,122]],"148":[[2,122]],"149":[[2,122]],"150":[[2,122]],"151":[[2,122]],"152":[[2,122]],"153":[[2,122]],"154":[[2,122]],"155":[[2,122]]},{"1":[[2,58]],"3":[[2,58]],"24":[[2,58]],"25":[[2,58]],"46":[[2,58]],"54":[[2,58]],"56":[[2,58]],"70":[[2,58]],"72":[[2,58]],"75":[[2,58]],"84":[[2,58]],"88":[[2,58]],"96":[[2,58]],"98":[[2,58]],"99":[[2,58]],"100":[[2,58]],"103":[[2,58]],"105":[[2,58]],"112":[[2,58]],"115":[[2,58]],"118":[[2,58]],"119":[[2,58]],"122":[[2,58]],"123":[[2,58]],"126":[[2,58]],"127":[[2,58]],"128":[[2,58]],"129":[[2,58]],"130":[[2,58]],"131":[[2,58]],"132":[[2,58]],"133":[[2,58]],"134":[[2,58]],"135":[[2,58]],"136":[[2,58]],"137":[[2,58]],"138":[[2,58]],"139":[[2,58]],"140":[[2,58]],"141":[[2,58]],"142":[[2,58]],"143":[[2,58]],"144":[[2,58]],"145":[[2,58]],"146":[[2,58]],"147":[[2,58]],"148":[[2,58]],"149":[[2,58]],"150":[[2,58]],"151":[[2,58]],"152":[[2,58]],"153":[[2,58]],"154":[[2,58]],"155":[[2,58]]},{"1":[[2,93]],"3":[[2,93]],"24":[[2,93]],"25":[[2,93]],"46":[[2,93]],"54":[[2,93]],"56":[[2,93]],"64":[[2,93]],"65":[[2,93]],"66":[[2,93]],"69":[[2,93]],"70":[[2,93]],"71":[[2,93]],"72":[[2,93]],"75":[[2,93]],"82":[[2,93]],"84":[[2,93]],"88":[[2,93]],"96":[[2,93]],"98":[[2,93]],"99":[[2,93]],"100":[[2,93]],"103":[[2,93]],"105":[[2,93]],"112":[[2,93]],"115":[[2,93]],"118":[[2,93]],"119":[[2,93]],"122":[[2,93]],"123":[[2,93]],"126":[[2,93]],"127":[[2,93]],"128":[[2,93]],"129":[[2,93]],"130":[[2,93]],"131":[[2,93]],"132":[[2,93]],"133":[[2,93]],"134":[[2,93]],"135":[[2,93]],"136":[[2,93]],"137":[[2,93]],"138":[[2,93]],"139":[[2,93]],"140":[[2,93]],"141":[[2,93]],"142":[[2,93]],"143":[[2,93]],"144":[[2,93]],"145":[[2,93]],"146":[[2,93]],"147":[[2,93]],"148":[[2,93]],"149":[[2,93]],"150":[[2,93]],"151":[[2,93]],"152":[[2,93]],"153":[[2,93]],"154":[[2,93]],"155":[[2,93]]},{"1":[[2,73]],"3":[[2,73]],"24":[[2,73]],"25":[[2,73]],"42":[[2,73]],"46":[[2,73]],"54":[[2,73]],"56":[[2,73]],"64":[[2,73]],"65":[[2,73]],"66":[[2,73]],"69":[[2,73]],"70":[[2,73]],"71":[[2,73]],"72":[[2,73]],"75":[[2,73]],"78":[[2,73]],"82":[[2,73]],"84":[[2,73]],"88":[[2,73]],"96":[[2,73]],"98":[[2,73]],"99":[[2,73]],"100":[[2,73]],"103":[[2,73]],"105":[[2,73]],"112":[[2,73]],"115":[[2,73]],"118":[[2,73]],"119":[[2,73]],"122":[[2,73]],"123":[[2,73]],"126":[[2,73]],"127":[[2,73]],"128":[[2,73]],"129":[[2,73]],"130":[[2,73]],"131":[[2,73]],"132":[[2,73]],"133":[[2,73]],"134":[[2,73]],"135":[[2,73]],"136":[[2,73]],"137":[[2,73]],"138":[[2,73]],"139":[[2,73]],"140":[[2,73]],"141":[[2,73]],"142":[[2,73]],"143":[[2,73]],"144":[[2,73]],"145":[[2,73]],"146":[[2,73]],"147":[[2,73]],"148":[[2,73]],"149":[[2,73]],"150":[[2,73]],"151":[[2,73]],"152":[[2,73]],"153":[[2,73]],"154":[[2,73]],"155":[[2,73]]},{"56":[[1,298]]},{"1":[[2,74]],"3":[[2,74]],"24":[[2,74]],"25":[[2,74]],"42":[[2,74]],"46":[[2,74]],"54":[[2,74]],"56":[[2,74]],"64":[[2,74]],"65":[[2,74]],"66":[[2,74]],"69":[[2,74]],"70":[[2,74]],"71":[[2,74]],"72":[[2,74]],"75":[[2,74]],"78":[[2,74]],"82":[[2,74]],"84":[[2,74]],"88":[[2,74]],"96":[[2,74]],"98":[[2,74]],"99":[[2,74]],"100":[[2,74]],"103":[[2,74]],"105":[[2,74]],"112":[[2,74]],"115":[[2,74]],"118":[[2,74]],"119":[[2,74]],"122":[[2,74]],"123":[[2,74]],"126":[[2,74]],"127":[[2,74]],"128":[[2,74]],"129":[[2,74]],"130":[[2,74]],"131":[[2,74]],"132":[[2,74]],"133":[[2,74]],"134":[[2,74]],"135":[[2,74]],"136":[[2,74]],"137":[[2,74]],"138":[[2,74]],"139":[[2,74]],"140":[[2,74]],"141":[[2,74]],"142":[[2,74]],"143":[[2,74]],"144":[[2,74]],"145":[[2,74]],"146":[[2,74]],"147":[[2,74]],"148":[[2,74]],"149":[[2,74]],"150":[[2,74]],"151":[[2,74]],"152":[[2,74]],"153":[[2,74]],"154":[[2,74]],"155":[[2,74]]},{"5":299,"24":[[1,6]]},{"49":[[2,55]],"54":[[2,55]],"56":[[1,231]]},{"56":[[1,300]]},{"5":301,"24":[[1,6]]},{"1":[[2,113]],"3":[[2,113]],"24":[[2,113]],"25":[[2,113]],"46":[[2,113]],"54":[[2,113]],"56":[[2,113]],"70":[[2,113]],"72":[[2,113]],"75":[[2,113]],"84":[[2,113]],"88":[[2,113]],"96":[[2,113]],"98":[[2,113]],"99":[[2,113]],"100":[[2,113]],"103":[[2,113]],"105":[[2,113]],"112":[[2,113]],"115":[[2,113]],"118":[[2,113]],"119":[[2,113]],"122":[[2,113]],"123":[[2,113]],"126":[[2,113]],"127":[[2,113]],"128":[[2,113]],"129":[[2,113]],"130":[[2,113]],"131":[[2,113]],"132":[[2,113]],"133":[[2,113]],"134":[[2,113]],"135":[[2,113]],"136":[[2,113]],"137":[[2,113]],"138":[[2,113]],"139":[[2,113]],"140":[[2,113]],"141":[[2,113]],"142":[[2,113]],"143":[[2,113]],"144":[[2,113]],"145":[[2,113]],"146":[[2,113]],"147":[[2,113]],"148":[[2,113]],"149":[[2,113]],"150":[[2,113]],"151":[[2,113]],"152":[[2,113]],"153":[[2,113]],"154":[[2,113]],"155":[[2,113]]},{"5":302,"24":[[1,6]]},{"1":[[2,123]],"3":[[2,123]],"24":[[2,123]],"25":[[2,123]],"46":[[2,123]],"54":[[2,123]],"56":[[2,123]],"70":[[2,123]],"72":[[2,123]],"75":[[2,123]],"84":[[2,123]],"88":[[2,123]],"96":[[2,123]],"98":[[2,123]],"99":[[2,123]],"100":[[2,123]],"103":[[2,123]],"105":[[2,123]],"112":[[2,123]],"115":[[2,123]],"118":[[2,123]],"119":[[2,123]],"122":[[2,123]],"123":[[2,123]],"126":[[2,123]],"127":[[2,123]],"128":[[2,123]],"129":[[2,123]],"130":[[2,123]],"131":[[2,123]],"132":[[2,123]],"133":[[2,123]],"134":[[2,123]],"135":[[2,123]],"136":[[2,123]],"137":[[2,123]],"138":[[2,123]],"139":[[2,123]],"140":[[2,123]],"141":[[2,123]],"142":[[2,123]],"143":[[2,123]],"144":[[2,123]],"145":[[2,123]],"146":[[2,123]],"147":[[2,123]],"148":[[2,123]],"149":[[2,123]],"150":[[2,123]],"151":[[2,123]],"152":[[2,123]],"153":[[2,123]],"154":[[2,123]],"155":[[2,123]]},{"6":303,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":304,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,126]],"3":[[2,126]],"24":[[2,126]],"25":[[2,126]],"46":[[1,106]],"54":[[2,126]],"56":[[1,121]],"70":[[2,126]],"72":[[2,126]],"75":[[2,126]],"84":[[2,126]],"88":[[2,126]],"96":[[2,126]],"97":119,"98":[[2,126]],"99":[[2,126]],"100":[[2,126]],"103":[[1,116]],"105":[[2,126]],"112":[[2,126]],"115":[[2,126]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,127]],"3":[[2,127]],"24":[[2,127]],"25":[[2,127]],"46":[[1,106]],"54":[[2,127]],"56":[[1,121]],"70":[[2,127]],"72":[[2,127]],"75":[[2,127]],"84":[[2,127]],"88":[[2,127]],"96":[[2,127]],"97":119,"98":[[2,127]],"99":[[2,127]],"100":[[2,127]],"103":[[1,116]],"105":[[2,127]],"112":[[2,127]],"115":[[2,127]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"103":[[2,125]],"104":[[2,125]]},{"23":282,"25":[[1,305]],"45":[[1,54]],"108":[[1,306]],"109":307,"110":[[1,281]]},{"25":[[2,132]],"45":[[2,132]],"108":[[2,132]],"110":[[2,132]]},{"6":309,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"89":308,"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"3":[[1,310]]},{"1":[[2,78]],"3":[[2,78]],"24":[[1,169]],"25":[[2,78]],"46":[[2,78]],"54":[[2,78]],"56":[[2,78]],"62":124,"64":[[1,128]],"65":[[1,129]],"66":[[1,130]],"67":131,"68":132,"69":[[1,134]],"70":[[2,78]],"71":[[1,135]],"72":[[2,78]],"75":[[2,78]],"76":311,"81":127,"82":[[1,133]],"84":[[2,78]],"88":[[2,78]],"96":[[2,78]],"98":[[2,78]],"99":[[2,78]],"100":[[2,78]],"103":[[2,78]],"105":[[2,78]],"112":[[2,78]],"115":[[2,78]],"118":[[2,78]],"119":[[2,78]],"122":[[2,78]],"123":[[2,78]],"126":[[2,78]],"127":[[2,78]],"128":[[2,78]],"129":[[2,78]],"130":[[2,78]],"131":[[2,78]],"132":[[2,78]],"133":[[2,78]],"134":[[2,78]],"135":[[2,78]],"136":[[2,78]],"137":[[2,78]],"138":[[2,78]],"139":[[2,78]],"140":[[2,78]],"141":[[2,78]],"142":[[2,78]],"143":[[2,78]],"144":[[2,78]],"145":[[2,78]],"146":[[2,78]],"147":[[2,78]],"148":[[2,78]],"149":[[2,78]],"150":[[2,78]],"151":[[2,78]],"152":[[2,78]],"153":[[2,78]],"154":[[2,78]],"155":[[2,78]]},{"3":[[2,105]],"25":[[2,105]],"46":[[1,106]],"54":[[2,105]],"56":[[1,121]],"84":[[2,105]],"88":[[2,105]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"6":312,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"6":313,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"3":[[2,106]],"25":[[2,106]],"46":[[1,106]],"54":[[2,106]],"56":[[1,121]],"84":[[2,106]],"88":[[2,106]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"6":314,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"56":[[1,315]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"3":[[2,83]],"25":[[2,83]],"54":[[2,83]],"75":[[2,83]]},{"23":172,"26":170,"27":[[1,55]],"28":171,"29":[[1,76]],"30":[[1,77]],"43":316,"45":[[1,54]]},{"3":[[2,84]],"25":[[2,84]],"54":[[2,84]],"75":[[2,84]]},{"1":[[2,86]],"3":[[2,86]],"24":[[2,86]],"25":[[2,86]],"46":[[2,86]],"54":[[2,86]],"56":[[2,86]],"70":[[2,86]],"72":[[2,86]],"75":[[2,86]],"84":[[2,86]],"88":[[2,86]],"96":[[2,86]],"98":[[2,86]],"99":[[2,86]],"100":[[2,86]],"103":[[2,86]],"105":[[2,86]],"112":[[2,86]],"115":[[2,86]],"118":[[2,86]],"119":[[2,86]],"122":[[2,86]],"123":[[2,86]],"126":[[2,86]],"127":[[2,86]],"128":[[2,86]],"129":[[2,86]],"130":[[2,86]],"131":[[2,86]],"132":[[2,86]],"133":[[2,86]],"134":[[2,86]],"135":[[2,86]],"136":[[2,86]],"137":[[2,86]],"138":[[2,86]],"139":[[2,86]],"140":[[2,86]],"141":[[2,86]],"142":[[2,86]],"143":[[2,86]],"144":[[2,86]],"145":[[2,86]],"146":[[2,86]],"147":[[2,86]],"148":[[2,86]],"149":[[2,86]],"150":[[2,86]],"151":[[2,86]],"152":[[2,86]],"153":[[2,86]],"154":[[2,86]],"155":[[2,86]]},{"3":[[2,42]],"25":[[2,42]],"46":[[1,106]],"54":[[2,42]],"56":[[1,121]],"75":[[2,42]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"3":[[2,43]],"25":[[2,43]],"46":[[1,106]],"54":[[2,43]],"56":[[1,121]],"75":[[2,43]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,94]],"3":[[2,94]],"24":[[2,94]],"25":[[2,94]],"46":[[2,94]],"54":[[2,94]],"56":[[2,94]],"70":[[2,94]],"72":[[2,94]],"75":[[2,94]],"84":[[2,94]],"88":[[2,94]],"96":[[2,94]],"98":[[2,94]],"99":[[2,94]],"100":[[2,94]],"103":[[2,94]],"105":[[2,94]],"112":[[2,94]],"115":[[2,94]],"118":[[2,94]],"119":[[2,94]],"122":[[2,94]],"123":[[2,94]],"126":[[2,94]],"127":[[2,94]],"128":[[2,94]],"129":[[2,94]],"130":[[2,94]],"131":[[2,94]],"132":[[2,94]],"133":[[2,94]],"134":[[2,94]],"135":[[2,94]],"136":[[2,94]],"137":[[2,94]],"138":[[2,94]],"139":[[2,94]],"140":[[2,94]],"141":[[2,94]],"142":[[2,94]],"143":[[2,94]],"144":[[2,94]],"145":[[2,94]],"146":[[2,94]],"147":[[2,94]],"148":[[2,94]],"149":[[2,94]],"150":[[2,94]],"151":[[2,94]],"152":[[2,94]],"153":[[2,94]],"154":[[2,94]],"155":[[2,94]]},{"5":317,"24":[[1,6]],"46":[[1,106]],"56":[[1,121]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,119]],"3":[[2,119]],"24":[[2,119]],"25":[[2,119]],"46":[[1,106]],"54":[[2,119]],"56":[[1,121]],"70":[[2,119]],"72":[[2,119]],"75":[[2,119]],"84":[[2,119]],"88":[[2,119]],"96":[[2,119]],"97":119,"98":[[1,75]],"99":[[2,119]],"100":[[1,120]],"103":[[1,116]],"105":[[2,119]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"6":318,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"56":[[1,319]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"1":[[2,49]],"3":[[2,49]],"24":[[2,49]],"25":[[2,49]],"46":[[2,49]],"54":[[2,49]],"56":[[2,49]],"70":[[2,49]],"72":[[2,49]],"75":[[2,49]],"84":[[2,49]],"88":[[2,49]],"96":[[2,49]],"98":[[2,49]],"99":[[2,49]],"100":[[2,49]],"103":[[2,49]],"105":[[2,49]],"112":[[2,49]],"115":[[2,49]],"118":[[2,49]],"119":[[2,49]],"122":[[2,49]],"123":[[2,49]],"126":[[2,49]],"127":[[2,49]],"128":[[2,49]],"129":[[2,49]],"130":[[2,49]],"131":[[2,49]],"132":[[2,49]],"133":[[2,49]],"134":[[2,49]],"135":[[2,49]],"136":[[2,49]],"137":[[2,49]],"138":[[2,49]],"139":[[2,49]],"140":[[2,49]],"141":[[2,49]],"142":[[2,49]],"143":[[2,49]],"144":[[2,49]],"145":[[2,49]],"146":[[2,49]],"147":[[2,49]],"148":[[2,49]],"149":[[2,49]],"150":[[2,49]],"151":[[2,49]],"152":[[2,49]],"153":[[2,49]],"154":[[2,49]],"155":[[2,49]]},{"49":[[2,57]],"54":[[2,57]],"56":[[2,57]]},{"1":[[2,114]],"3":[[2,114]],"24":[[2,114]],"25":[[2,114]],"46":[[2,114]],"54":[[2,114]],"56":[[2,114]],"70":[[2,114]],"72":[[2,114]],"75":[[2,114]],"84":[[2,114]],"88":[[2,114]],"96":[[2,114]],"98":[[2,114]],"99":[[2,114]],"100":[[2,114]],"103":[[2,114]],"105":[[2,114]],"112":[[2,114]],"115":[[2,114]],"118":[[2,114]],"119":[[2,114]],"122":[[2,114]],"123":[[2,114]],"126":[[2,114]],"127":[[2,114]],"128":[[2,114]],"129":[[2,114]],"130":[[2,114]],"131":[[2,114]],"132":[[2,114]],"133":[[2,114]],"134":[[2,114]],"135":[[2,114]],"136":[[2,114]],"137":[[2,114]],"138":[[2,114]],"139":[[2,114]],"140":[[2,114]],"141":[[2,114]],"142":[[2,114]],"143":[[2,114]],"144":[[2,114]],"145":[[2,114]],"146":[[2,114]],"147":[[2,114]],"148":[[2,114]],"149":[[2,114]],"150":[[2,114]],"151":[[2,114]],"152":[[2,114]],"153":[[2,114]],"154":[[2,114]],"155":[[2,114]]},{"1":[[2,115]],"3":[[2,115]],"24":[[2,115]],"25":[[2,115]],"46":[[2,115]],"54":[[2,115]],"56":[[2,115]],"70":[[2,115]],"72":[[2,115]],"75":[[2,115]],"84":[[2,115]],"88":[[2,115]],"92":[[2,115]],"96":[[2,115]],"98":[[2,115]],"99":[[2,115]],"100":[[2,115]],"103":[[2,115]],"105":[[2,115]],"112":[[2,115]],"115":[[2,115]],"118":[[2,115]],"119":[[2,115]],"122":[[2,115]],"123":[[2,115]],"126":[[2,115]],"127":[[2,115]],"128":[[2,115]],"129":[[2,115]],"130":[[2,115]],"131":[[2,115]],"132":[[2,115]],"133":[[2,115]],"134":[[2,115]],"135":[[2,115]],"136":[[2,115]],"137":[[2,115]],"138":[[2,115]],"139":[[2,115]],"140":[[2,115]],"141":[[2,115]],"142":[[2,115]],"143":[[2,115]],"144":[[2,115]],"145":[[2,115]],"146":[[2,115]],"147":[[2,115]],"148":[[2,115]],"149":[[2,115]],"150":[[2,115]],"151":[[2,115]],"152":[[2,115]],"153":[[2,115]],"154":[[2,115]],"155":[[2,115]]},{"1":[[2,128]],"3":[[2,128]],"24":[[2,128]],"25":[[2,128]],"46":[[1,106]],"54":[[2,128]],"56":[[1,121]],"70":[[2,128]],"72":[[2,128]],"75":[[2,128]],"84":[[2,128]],"88":[[2,128]],"96":[[2,128]],"97":119,"98":[[2,128]],"99":[[2,128]],"100":[[2,128]],"103":[[1,116]],"105":[[2,128]],"112":[[2,128]],"115":[[2,128]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,129]],"3":[[2,129]],"24":[[2,129]],"25":[[2,129]],"46":[[1,106]],"54":[[2,129]],"56":[[1,121]],"70":[[2,129]],"72":[[2,129]],"75":[[2,129]],"84":[[2,129]],"88":[[2,129]],"96":[[2,129]],"97":119,"98":[[2,129]],"99":[[2,129]],"100":[[2,129]],"103":[[1,116]],"105":[[2,129]],"112":[[2,129]],"115":[[2,129]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,130]],"3":[[2,130]],"24":[[2,130]],"25":[[2,130]],"46":[[2,130]],"54":[[2,130]],"56":[[2,130]],"70":[[2,130]],"72":[[2,130]],"75":[[2,130]],"84":[[2,130]],"88":[[2,130]],"96":[[2,130]],"98":[[2,130]],"99":[[2,130]],"100":[[2,130]],"103":[[2,130]],"105":[[2,130]],"112":[[2,130]],"115":[[2,130]],"118":[[2,130]],"119":[[2,130]],"122":[[2,130]],"123":[[2,130]],"126":[[2,130]],"127":[[2,130]],"128":[[2,130]],"129":[[2,130]],"130":[[2,130]],"131":[[2,130]],"132":[[2,130]],"133":[[2,130]],"134":[[2,130]],"135":[[2,130]],"136":[[2,130]],"137":[[2,130]],"138":[[2,130]],"139":[[2,130]],"140":[[2,130]],"141":[[2,130]],"142":[[2,130]],"143":[[2,130]],"144":[[2,130]],"145":[[2,130]],"146":[[2,130]],"147":[[2,130]],"148":[[2,130]],"149":[[2,130]],"150":[[2,130]],"151":[[2,130]],"152":[[2,130]],"153":[[2,130]],"154":[[2,130]],"155":[[2,130]]},{"5":320,"24":[[1,6]]},{"25":[[2,133]],"45":[[2,133]],"108":[[2,133]],"110":[[2,133]]},{"5":321,"24":[[1,6]],"54":[[1,322]]},{"24":[[2,110]],"46":[[1,106]],"54":[[2,110]],"56":[[1,121]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"23":282,"45":[[1,54]],"109":323,"110":[[1,281]]},{"1":[[2,80]],"3":[[2,80]],"24":[[2,80]],"25":[[2,80]],"46":[[2,80]],"54":[[2,80]],"56":[[2,80]],"70":[[2,80]],"72":[[2,80]],"75":[[2,80]],"84":[[2,80]],"88":[[2,80]],"96":[[2,80]],"98":[[2,80]],"99":[[2,80]],"100":[[2,80]],"103":[[2,80]],"105":[[2,80]],"112":[[2,80]],"115":[[2,80]],"118":[[2,80]],"119":[[2,80]],"122":[[2,80]],"123":[[2,80]],"126":[[2,80]],"127":[[2,80]],"128":[[2,80]],"129":[[2,80]],"130":[[2,80]],"131":[[2,80]],"132":[[2,80]],"133":[[2,80]],"134":[[2,80]],"135":[[2,80]],"136":[[2,80]],"137":[[2,80]],"138":[[2,80]],"139":[[2,80]],"140":[[2,80]],"141":[[2,80]],"142":[[2,80]],"143":[[2,80]],"144":[[2,80]],"145":[[2,80]],"146":[[2,80]],"147":[[2,80]],"148":[[2,80]],"149":[[2,80]],"150":[[2,80]],"151":[[2,80]],"152":[[2,80]],"153":[[2,80]],"154":[[2,80]],"155":[[2,80]]},{"3":[[2,107]],"25":[[2,107]],"46":[[1,106]],"54":[[2,107]],"56":[[1,121]],"84":[[2,107]],"88":[[2,107]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"3":[[2,108]],"25":[[2,108]],"46":[[1,106]],"54":[[2,108]],"56":[[1,121]],"84":[[2,108]],"88":[[2,108]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"46":[[1,106]],"56":[[1,121]],"88":[[1,324]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"3":[[2,58]],"6":325,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"25":[[2,58]],"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[2,58]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"54":[[2,58]],"56":[[2,58]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"88":[[2,58]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[2,58]],"100":[[2,58]],"103":[[2,58]],"106":[[1,52]],"111":74,"112":[[2,58]],"114":46,"115":[[2,58]],"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]],"126":[[2,58]],"127":[[2,58]],"128":[[2,58]],"129":[[2,58]],"130":[[2,58]],"131":[[2,58]],"132":[[2,58]],"133":[[2,58]],"134":[[2,58]],"135":[[2,58]],"136":[[2,58]],"137":[[2,58]],"138":[[2,58]],"139":[[2,58]],"140":[[2,58]],"141":[[2,58]],"142":[[2,58]],"143":[[2,58]],"144":[[2,58]],"145":[[2,58]],"146":[[2,58]],"147":[[2,58]],"148":[[2,58]],"149":[[2,58]],"150":[[2,58]],"151":[[2,58]],"152":[[2,58]],"153":[[2,58]],"154":[[2,58]],"155":[[2,58]]},{"3":[[2,85]],"25":[[2,85]],"54":[[2,85]],"75":[[2,85]]},{"1":[[2,141]],"3":[[2,141]],"24":[[2,141]],"25":[[2,141]],"46":[[2,141]],"54":[[2,141]],"56":[[2,141]],"70":[[2,141]],"72":[[2,141]],"75":[[2,141]],"84":[[2,141]],"88":[[2,141]],"96":[[2,141]],"98":[[2,141]],"99":[[2,141]],"100":[[2,141]],"103":[[2,141]],"105":[[2,141]],"108":[[2,141]],"112":[[2,141]],"115":[[2,141]],"118":[[2,141]],"119":[[2,141]],"122":[[2,141]],"123":[[2,141]],"126":[[2,141]],"127":[[2,141]],"128":[[2,141]],"129":[[2,141]],"130":[[2,141]],"131":[[2,141]],"132":[[2,141]],"133":[[2,141]],"134":[[2,141]],"135":[[2,141]],"136":[[2,141]],"137":[[2,141]],"138":[[2,141]],"139":[[2,141]],"140":[[2,141]],"141":[[2,141]],"142":[[2,141]],"143":[[2,141]],"144":[[2,141]],"145":[[2,141]],"146":[[2,141]],"147":[[2,141]],"148":[[2,141]],"149":[[2,141]],"150":[[2,141]],"151":[[2,141]],"152":[[2,141]],"153":[[2,141]],"154":[[2,141]],"155":[[2,141]]},{"46":[[1,106]],"56":[[1,121]],"70":[[1,326]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"6":327,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"46":[[2,58]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"56":[[2,58]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"70":[[2,58]],"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[2,58]],"100":[[2,58]],"103":[[2,58]],"106":[[1,52]],"111":74,"112":[[2,58]],"114":46,"115":[[2,58]],"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]],"126":[[2,58]],"127":[[2,58]],"128":[[2,58]],"129":[[2,58]],"130":[[2,58]],"131":[[2,58]],"132":[[2,58]],"133":[[2,58]],"134":[[2,58]],"135":[[2,58]],"136":[[2,58]],"137":[[2,58]],"138":[[2,58]],"139":[[2,58]],"140":[[2,58]],"141":[[2,58]],"142":[[2,58]],"143":[[2,58]],"144":[[2,58]],"145":[[2,58]],"146":[[2,58]],"147":[[2,58]],"148":[[2,58]],"149":[[2,58]],"150":[[2,58]],"151":[[2,58]],"152":[[2,58]],"153":[[2,58]],"154":[[2,58]],"155":[[2,58]]},{"25":[[1,328]]},{"3":[[1,329]],"25":[[2,134]],"45":[[2,134]],"108":[[2,134]],"110":[[2,134]]},{"6":330,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"26":24,"27":[[1,55]],"28":56,"29":[[1,76]],"30":[[1,77]],"31":25,"32":[[1,57]],"33":[[1,58]],"34":[[1,59]],"35":[[1,60]],"36":[[1,61]],"37":[[1,62]],"38":[[1,63]],"39":[[1,64]],"40":[[1,65]],"41":[[1,66]],"44":[[1,49]],"45":[[1,54]],"47":[[1,34]],"50":35,"51":[[1,72]],"52":[[1,73]],"57":26,"58":27,"59":28,"60":29,"61":30,"63":31,"73":[[1,68]],"77":[[1,53]],"79":[[1,32]],"80":33,"85":[[1,71]],"86":[[1,70]],"87":[[1,67]],"90":[[1,47]],"94":[[1,48]],"95":[[1,69]],"97":50,"98":[[1,75]],"100":[[1,51]],"106":[[1,52]],"111":74,"112":[[1,78]],"114":46,"116":[[1,36]],"117":[[1,37]],"118":[[1,38]],"119":[[1,39]],"120":[[1,40]],"121":[[1,41]],"122":[[1,42]],"123":[[1,43]],"124":[[1,44]],"125":[[1,45]]},{"25":[[2,136]],"45":[[2,136]],"108":[[2,136]],"110":[[2,136]]},{"1":[[2,97]],"3":[[2,97]],"24":[[2,97]],"25":[[2,97]],"42":[[2,97]],"46":[[2,97]],"54":[[2,97]],"56":[[2,97]],"64":[[2,97]],"65":[[2,97]],"66":[[2,97]],"69":[[2,97]],"70":[[2,97]],"71":[[2,97]],"72":[[2,97]],"75":[[2,97]],"78":[[2,97]],"82":[[2,97]],"84":[[2,97]],"88":[[2,97]],"96":[[2,97]],"98":[[2,97]],"99":[[2,97]],"100":[[2,97]],"103":[[2,97]],"105":[[2,97]],"112":[[2,97]],"115":[[2,97]],"118":[[2,97]],"119":[[2,97]],"122":[[2,97]],"123":[[2,97]],"126":[[2,97]],"127":[[2,97]],"128":[[2,97]],"129":[[2,97]],"130":[[2,97]],"131":[[2,97]],"132":[[2,97]],"133":[[2,97]],"134":[[2,97]],"135":[[2,97]],"136":[[2,97]],"137":[[2,97]],"138":[[2,97]],"139":[[2,97]],"140":[[2,97]],"141":[[2,97]],"142":[[2,97]],"143":[[2,97]],"144":[[2,97]],"145":[[2,97]],"146":[[2,97]],"147":[[2,97]],"148":[[2,97]],"149":[[2,97]],"150":[[2,97]],"151":[[2,97]],"152":[[2,97]],"153":[[2,97]],"154":[[2,97]],"155":[[2,97]]},{"46":[[1,106]],"56":[[1,121]],"88":[[1,331]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,99]],"3":[[2,99]],"24":[[2,99]],"25":[[2,99]],"42":[[2,99]],"46":[[2,99]],"54":[[2,99]],"56":[[2,99]],"64":[[2,99]],"65":[[2,99]],"66":[[2,99]],"69":[[2,99]],"70":[[2,99]],"71":[[2,99]],"72":[[2,99]],"75":[[2,99]],"78":[[2,99]],"82":[[2,99]],"84":[[2,99]],"88":[[2,99]],"96":[[2,99]],"98":[[2,99]],"99":[[2,99]],"100":[[2,99]],"103":[[2,99]],"105":[[2,99]],"112":[[2,99]],"115":[[2,99]],"118":[[2,99]],"119":[[2,99]],"122":[[2,99]],"123":[[2,99]],"126":[[2,99]],"127":[[2,99]],"128":[[2,99]],"129":[[2,99]],"130":[[2,99]],"131":[[2,99]],"132":[[2,99]],"133":[[2,99]],"134":[[2,99]],"135":[[2,99]],"136":[[2,99]],"137":[[2,99]],"138":[[2,99]],"139":[[2,99]],"140":[[2,99]],"141":[[2,99]],"142":[[2,99]],"143":[[2,99]],"144":[[2,99]],"145":[[2,99]],"146":[[2,99]],"147":[[2,99]],"148":[[2,99]],"149":[[2,99]],"150":[[2,99]],"151":[[2,99]],"152":[[2,99]],"153":[[2,99]],"154":[[2,99]],"155":[[2,99]]},{"46":[[1,106]],"56":[[1,121]],"70":[[1,332]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,131]],"3":[[2,131]],"24":[[2,131]],"25":[[2,131]],"46":[[2,131]],"54":[[2,131]],"56":[[2,131]],"70":[[2,131]],"72":[[2,131]],"75":[[2,131]],"84":[[2,131]],"88":[[2,131]],"96":[[2,131]],"98":[[2,131]],"99":[[2,131]],"100":[[2,131]],"103":[[2,131]],"105":[[2,131]],"112":[[2,131]],"115":[[2,131]],"118":[[2,131]],"119":[[2,131]],"122":[[2,131]],"123":[[2,131]],"126":[[2,131]],"127":[[2,131]],"128":[[2,131]],"129":[[2,131]],"130":[[2,131]],"131":[[2,131]],"132":[[2,131]],"133":[[2,131]],"134":[[2,131]],"135":[[2,131]],"136":[[2,131]],"137":[[2,131]],"138":[[2,131]],"139":[[2,131]],"140":[[2,131]],"141":[[2,131]],"142":[[2,131]],"143":[[2,131]],"144":[[2,131]],"145":[[2,131]],"146":[[2,131]],"147":[[2,131]],"148":[[2,131]],"149":[[2,131]],"150":[[2,131]],"151":[[2,131]],"152":[[2,131]],"153":[[2,131]],"154":[[2,131]],"155":[[2,131]]},{"25":[[2,135]],"45":[[2,135]],"108":[[2,135]],"110":[[2,135]]},{"24":[[2,111]],"46":[[1,106]],"54":[[2,111]],"56":[[1,121]],"97":119,"98":[[1,75]],"100":[[1,120]],"103":[[1,116]],"112":[[1,117]],"115":[[1,118]],"118":[[1,87]],"119":[[1,86]],"122":[[1,81]],"123":[[1,82]],"126":[[1,83]],"127":[[1,84]],"128":[[1,85]],"129":[[1,88]],"130":[[1,89]],"131":[[1,90]],"132":[[1,91]],"133":[[1,92]],"134":[[1,93]],"135":[[1,94]],"136":[[1,95]],"137":[[1,96]],"138":[[1,97]],"139":[[1,98]],"140":[[1,99]],"141":[[1,100]],"142":[[1,101]],"143":[[1,102]],"144":[[1,103]],"145":[[1,104]],"146":[[1,105]],"147":[[1,107]],"148":[[1,108]],"149":[[1,109]],"150":[[1,110]],"151":[[1,111]],"152":[[1,112]],"153":[[1,113]],"154":[[1,114]],"155":[[1,115]]},{"1":[[2,98]],"3":[[2,98]],"24":[[2,98]],"25":[[2,98]],"42":[[2,98]],"46":[[2,98]],"54":[[2,98]],"56":[[2,98]],"64":[[2,98]],"65":[[2,98]],"66":[[2,98]],"69":[[2,98]],"70":[[2,98]],"71":[[2,98]],"72":[[2,98]],"75":[[2,98]],"78":[[2,98]],"82":[[2,98]],"84":[[2,98]],"88":[[2,98]],"96":[[2,98]],"98":[[2,98]],"99":[[2,98]],"100":[[2,98]],"103":[[2,98]],"105":[[2,98]],"112":[[2,98]],"115":[[2,98]],"118":[[2,98]],"119":[[2,98]],"122":[[2,98]],"123":[[2,98]],"126":[[2,98]],"127":[[2,98]],"128":[[2,98]],"129":[[2,98]],"130":[[2,98]],"131":[[2,98]],"132":[[2,98]],"133":[[2,98]],"134":[[2,98]],"135":[[2,98]],"136":[[2,98]],"137":[[2,98]],"138":[[2,98]],"139":[[2,98]],"140":[[2,98]],"141":[[2,98]],"142":[[2,98]],"143":[[2,98]],"144":[[2,98]],"145":[[2,98]],"146":[[2,98]],"147":[[2,98]],"148":[[2,98]],"149":[[2,98]],"150":[[2,98]],"151":[[2,98]],"152":[[2,98]],"153":[[2,98]],"154":[[2,98]],"155":[[2,98]]},{"1":[[2,100]],"3":[[2,100]],"24":[[2,100]],"25":[[2,100]],"42":[[2,100]],"46":[[2,100]],"54":[[2,100]],"56":[[2,100]],"64":[[2,100]],"65":[[2,100]],"66":[[2,100]],"69":[[2,100]],"70":[[2,100]],"71":[[2,100]],"72":[[2,100]],"75":[[2,100]],"78":[[2,100]],"82":[[2,100]],"84":[[2,100]],"88":[[2,100]],"96":[[2,100]],"98":[[2,100]],"99":[[2,100]],"100":[[2,100]],"103":[[2,100]],"105":[[2,100]],"112":[[2,100]],"115":[[2,100]],"118":[[2,100]],"119":[[2,100]],"122":[[2,100]],"123":[[2,100]],"126":[[2,100]],"127":[[2,100]],"128":[[2,100]],"129":[[2,100]],"130":[[2,100]],"131":[[2,100]],"132":[[2,100]],"133":[[2,100]],"134":[[2,100]],"135":[[2,100]],"136":[[2,100]],"137":[[2,100]],"138":[[2,100]],"139":[[2,100]],"140":[[2,100]],"141":[[2,100]],"142":[[2,100]],"143":[[2,100]],"144":[[2,100]],"145":[[2,100]],"146":[[2,100]],"147":[[2,100]],"148":[[2,100]],"149":[[2,100]],"150":[[2,100]],"151":[[2,100]],"152":[[2,100]],"153":[[2,100]],"154":[[2,100]],"155":[[2,100]]}], parseError: function parseError(str, hash) { throw new Error(str); }, diff --git a/src/grammar.coffee b/src/grammar.coffee index 67f4762f..2762dcef 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -1,20 +1,521 @@ +# The CoffeeScript parser is generated by [Jison](http://github.com/zaach/jison) +# from this grammar file. Jison is a bottom-up parser generator, similar in +# style to [Bison](http://www.gnu.org/software/bison), implemented in JavaScript. +# It can recognize [LALR(1), LR(0), SLR(1), and LR(1)](http://en.wikipedia.org/wiki/LR_grammar) +# type grammars. To create the Jison parser, we list the pattern to match +# on the left-hand side, and the action to take (usually the creation of syntax +# tree nodes) on the right. As the parser runs, it +# shifts tokens from our token stream, from left to right, and +# [attempts to match](http://en.wikipedia.org/wiki/Bottom-up_parsing) +# the token sequence against the rules below. When a match can be made, it +# reduces into the [nonterminal](http://en.wikipedia.org/wiki/Terminal_and_nonterminal_symbols) +# (the enclosing name at the top), and we proceed from there. +# +# If you run the `cake build:parser` command, Jison constructs a parse table +# from our rules and saves it into `lib/parser.js`. + +# The only dependency is on the **Jison.Parser**. Parser: require('jison').Parser -# DSL =================================================================== +# Jison DSL +# --------- -# Detect functions: [ +# Since we're going to be wrapped in a function by Jison in any case, if our +# action immediately returns a value, we can optimize by removing the function +# wrapper and just returning the value directly. unwrap: /function\s*\(\)\s*\{\s*return\s*([\s\S]*);\s*\}/ -# Quickie DSL for Jison access. -o: (pattern_string, func, options) -> - if func - func: if match: (func + '').match(unwrap) then match[1] else "($func())" - [pattern_string, "$$ = $func;", options] - else - [pattern_string, '$$ = $1;', options] +# Our handy DSL for Jison grammar generation, thanks to +# [Tim Caswell](http://github.com/creationix). For every rule in the grammar, +# we pass the pattern-defining string, the action to run, and extra options, +# optionally. If no action is specified, we simply pass the value of the +# previous nonterminal. +o: (pattern_string, action, options) -> + return [pattern_string, '$$ = $1;', options] unless action + action: if match: (action + '').match(unwrap) then match[1] else "($action())" + [pattern_string, "$$ = $action;", options] -# Precedence =========================================================== +# Grammatical Rules +# ----------------- +# In all of the rules that follow, you'll see the name of the nonterminal as +# the key to a list of alternative matches. With each match's action, the +# dollar-sign variables are provided by Jison as references to the value of +# their numeric position, so in this rule: +# +# "Expression UNLESS Expression" +# +# `$1` would be the value of the first `Expression`, `$2` would be the token +# for the `UNLESS` terminal, and `$3` would be the value of the second +# `Expression`. +grammar: { + + # The **Root** is the top-level node in the syntax tree. Since we parse bottom-up, + # all parsing must end here. + Root: [ + o "", -> new Expressions() + o "TERMINATOR", -> new Expressions() + o "Expressions" + o "Block TERMINATOR" + ] + + # Any list of expressions or method body, seperated by line breaks or + # semicolons. + Expressions: [ + o "Expression", -> Expressions.wrap [$1] + o "Expressions TERMINATOR Expression", -> $1.push $3 + o "Expressions TERMINATOR" + ] + + # All the different types of expressions in our language. The basic unit of + # CoffeeScript is the **Expression** -- you'll notice that there is no + # "statement" nonterminal. Expressions serve as the building blocks + # of many other rules, making them somewhat circular. + Expression: [ + o "Value" + o "Call" + o "Code" + o "Operation" + o "Assign" + o "If" + o "Try" + o "Throw" + o "Return" + o "While" + o "For" + o "Switch" + o "Extends" + o "Class" + o "Splat" + o "Existence" + o "Comment" + ] + + # A an indented block of expressions. Note that the [Rewriter](rewriter.html) + # will convert some postfix forms into blocks for us, by adjusting the + # token stream. + Block: [ + o "INDENT Expressions OUTDENT", -> $2 + o "INDENT OUTDENT", -> new Expressions() + ] + + # A literal identifier, a variable name or property. + Identifier: [ + o "IDENTIFIER", -> new LiteralNode yytext + ] + + # Alphanumerics are separated from the other **Literal** matchers because + # they can also serve as keys in object literals. + AlphaNumeric: [ + o "NUMBER", -> new LiteralNode yytext + o "STRING", -> new LiteralNode yytext + ] + + # All of our immediate values. These can (in general), be passed straight + # through and printed to JavaScript. + Literal: [ + o "AlphaNumeric" + o "JS", -> new LiteralNode yytext + o "REGEX", -> new LiteralNode yytext + o "BREAK", -> new LiteralNode yytext + o "CONTINUE", -> new LiteralNode yytext + o "TRUE", -> new LiteralNode true + o "FALSE", -> new LiteralNode false + o "YES", -> new LiteralNode true + o "NO", -> new LiteralNode false + o "ON", -> new LiteralNode true + o "OFF", -> new LiteralNode false + ] + + # Assignment of a variable, property, or index to a value. + Assign: [ + o "Value ASSIGN Expression", -> new AssignNode $1, $3 + ] + + # Assignment when it happens within an object literal. The difference from + # the ordinary **Assign** is that these allow numbers and strings as keys. + AssignObj: [ + o "Identifier ASSIGN Expression", -> new AssignNode new ValueNode($1), $3, 'object' + o "AlphaNumeric ASSIGN Expression", -> new AssignNode new ValueNode($1), $3, 'object' + o "Comment" + ] + + # A return statement from a function body. + Return: [ + o "RETURN Expression", -> new ReturnNode $2 + o "RETURN", -> new ReturnNode new ValueNode new LiteralNode 'null' + ] + + # A comment. Because CoffeeScript passes comments through to JavaScript, we + # have to parse comments like any other construct, and identify all of the + # positions in which they can occur in the grammar. + Comment: [ + o "COMMENT", -> new CommentNode yytext + ] + + # [The existential operator](http://jashkenas.github.com/coffee-script/#existence). + Existence: [ + o "Expression ?", -> new ExistenceNode $1 + ] + + # The **Code** node is the function literal. It's defined by an indented block + # of **Expressions** preceded by a function arrow, with an optional parameter + # list. + Code: [ + o "PARAM_START ParamList PARAM_END FuncGlyph Block", -> new CodeNode $2, $5, $4 + o "FuncGlyph Block", -> new CodeNode [], $2, $1 + ] + + # CoffeeScript has two different symbols for functions. `->` is for ordinary + # functions, and `=>` is for functions bound to the current value of *this*. + FuncGlyph: [ + o "->", -> 'func' + o "=>", -> 'boundfunc' + ] + + # The list of parameters that a function accepts can be of any length. + ParamList: [ + o "", -> [] + o "Param", -> [$1] + o "ParamList , Param", -> $1.concat [$3] + ] + + # A single parameter in a function definition can be ordinary, or a splat + # that hoovers up the remaining arguments. + Param: [ + o "PARAM", -> new LiteralNode yytext + o "Param . . .", -> new SplatNode $1 + ] + + # A splat that occurs outside of a parameter list. + Splat: [ + o "Expression . . .", -> new SplatNode $1 + ] + + # The types of things that can be treated as values -- assigned to, invoked + # as functions, indexed into, named as a class, etc. + Value: [ + o "Identifier", -> new ValueNode $1 + o "Literal", -> new ValueNode $1 + o "Array", -> new ValueNode $1 + o "Object", -> new ValueNode $1 + o "Parenthetical", -> new ValueNode $1 + o "Range", -> new ValueNode $1 + o "This" + o "Value Accessor", -> $1.push $2 + o "Invocation Accessor", -> new ValueNode $1, [$2] + ] + + # The general group of accessors into an object, by property, by prototype + # or by array index or slice. + Accessor: [ + o "PROPERTY_ACCESS Identifier", -> new AccessorNode $2 + o "PROTOTYPE_ACCESS Identifier", -> new AccessorNode $2, 'prototype' + o "SOAK_ACCESS Identifier", -> new AccessorNode $2, 'soak' + o "Index" + o "Slice", -> new SliceNode $1 + ] + + # Indexing into an object or array using bracket notation. + Index: [ + o "INDEX_START Expression INDEX_END", -> new IndexNode $2 + o "SOAKED_INDEX_START Expression SOAKED_INDEX_END", -> new IndexNode $2, 'soak' + ] + + # In CoffeeScript, an object literal is simply a list of assignments. + Object: [ + o "{ AssignList }", -> new ObjectNode $2 + o "{ IndentedAssignList }", -> new ObjectNode $2 + ] + + # Class definitions have optional bodies of prototype property assignments, + # and optional references to the superclass. + Class: [ + o "CLASS Value", -> new ClassNode $2 + o "CLASS Value EXTENDS Value", -> new ClassNode $2, $4 + o "CLASS Value IndentedAssignList", -> new ClassNode $2, null, $3 + o "CLASS Value EXTENDS Value IndentedAssignList", -> new ClassNode $2, $4, $5 + ] + + # Assignment of properties within an object literal can be separated by + # comma, as in JavaScript, or simply by newline. + AssignList: [ + o "", -> [] + o "AssignObj", -> [$1] + o "AssignList , AssignObj", -> $1.concat [$3] + o "AssignList TERMINATOR AssignObj", -> $1.concat [$3] + o "AssignList , TERMINATOR AssignObj", -> $1.concat [$4] + ] + + # An **AssignList** within a block indentation. + IndentedAssignList: [ + o "INDENT AssignList OUTDENT", -> $2 + ] + + # The three flavors of function call: normal, object instantiation with `new`, + # and calling `super()` + Call: [ + o "Invocation" + o "NEW Invocation", -> $2.new_instance() + o "Super" + ] + + # Extending an object by setting its prototype chain to reference a parent + # object. + Extends: [ + o "Value EXTENDS Value", -> new ExtendsNode $1, $3 + ] + + # Ordinary function invocation, or a chained series of calls. + Invocation: [ + o "Value Arguments", -> new CallNode $1, $2 + o "Invocation Arguments", -> new CallNode $1, $2 + ] + + # The list of arguments to a function call. + Arguments: [ + o "CALL_START ArgList CALL_END", -> $2 + ] + + # Calling super. + Super: [ + o "SUPER CALL_START ArgList CALL_END", -> new CallNode 'super', $3 + ] + + # A reference to the *this* current object, either naked or to a property. + This: [ + o "@", -> new ValueNode new LiteralNode 'this' + o "@ Identifier", -> new ValueNode new LiteralNode('this'), [new AccessorNode($2)] + ] + + # The CoffeeScript range literal. + Range: [ + o "[ Expression . . Expression ]", -> new RangeNode $2, $5 + o "[ Expression . . . Expression ]", -> new RangeNode $2, $6, true + ] + + # The slice literal. + Slice: [ + o "INDEX_START Expression . . Expression INDEX_END", -> new RangeNode $2, $5 + o "INDEX_START Expression . . . Expression INDEX_END", -> new RangeNode $2, $6, true + ] + + # The array literal. + Array: [ + o "[ ArgList ]", -> new ArrayNode $2 + ] + + # The **ArgList** is both the list of objects passed into a function call, + # as well as the contents of an array literal + # (i.e. comma-separated expressions). Newlines work as well. + ArgList: [ + o "", -> [] + o "Expression", -> [$1] + o "INDENT Expression", -> [$2] + o "ArgList , Expression", -> $1.concat [$3] + o "ArgList TERMINATOR Expression", -> $1.concat [$3] + o "ArgList , TERMINATOR Expression", -> $1.concat [$4] + o "ArgList , INDENT Expression", -> $1.concat [$4] + o "ArgList OUTDENT" + ] + + # Just simple, comma-separated, required arguments (no fancy syntax). We need + # this to be separate from the **ArgList** for use in **Switch** blocks, where + # having the newlines wouldn't make sense. + SimpleArgs: [ + o "Expression" + o "SimpleArgs , Expression", -> + if $1 instanceof Array then $1.concat([$3]) else [$1].concat([$3]) + ] + + # The variants of *try/catch/finally* exception handling blocks. + Try: [ + o "TRY Block Catch", -> new TryNode $2, $3[0], $3[1] + o "TRY Block FINALLY Block", -> new TryNode $2, null, null, $4 + o "TRY Block Catch FINALLY Block", -> new TryNode $2, $3[0], $3[1], $5 + ] + + # A catch clause names its error and runs a block of code. + Catch: [ + o "CATCH Identifier Block", -> [$2, $3] + ] + + # Throw an exception object. + Throw: [ + o "THROW Expression", -> new ThrowNode $2 + ] + + # Parenthetical expressions. Note that the **Parenthetical** is a **Value**, + # not an **Expression**, so if you need to use an expression in a place + # where only values are accepted, wrapping it in parentheses will always do + # the trick. + Parenthetical: [ + o "( Expression )", -> new ParentheticalNode $2 + ] + + # The condition portion of a while loop. + WhileSource: [ + o "WHILE Expression", -> new WhileNode $2 + o "WHILE Expression WHEN Expression", -> new WhileNode $2, {filter : $4} + ] + + # The while loop can either be normal, with a block of expressions to execute, + # or postfix, with a single expression. There is no do..while. + While: [ + o "WhileSource Block", -> $1.add_body $2 + o "Expression WhileSource", -> $2.add_body $1 + ] + + # Array, object, and range comprehensions, at the most generic level. + # Comprehensions can either be normal, with a block of expressions to execute, + # or postfix, with a single expression. + For: [ + o "Expression FOR ForVariables ForSource", -> new ForNode $1, $4, $3[0], $3[1] + o "FOR ForVariables ForSource Block", -> new ForNode $4, $3, $2[0], $2[1] + ] + + # An array or range comprehension has variables for the current element and + # (optional) reference to the current index. Or, *key, value*, in the case + # of object comprehensions. + ForVariables: [ + o "Identifier", -> [$1] + o "Identifier , Identifier", -> [$1, $3] + ] + + # The source of a comprehension is an array or object with an optional filter + # clause. If it's an array comprehension, you can also choose to step throug + # in fixed-size increments. + ForSource: [ + o "IN Expression", -> {source: $2} + o "OF Expression", -> {source: $2, object: true} + o "ForSource WHEN Expression", -> $1.filter: $3; $1 + o "ForSource BY Expression", -> $1.step: $3; $1 + ] + + # The CoffeeScript switch/when/else block replaces the JavaScript + # switch/case/default by compiling into an if-else chain. + Switch: [ + o "SWITCH Expression INDENT Whens OUTDENT", -> $4.rewrite_condition $2 + o "SWITCH Expression INDENT Whens ELSE Block OUTDENT", -> $4.rewrite_condition($2).add_else $6, true + ] + + # The inner list of whens is left recursive. At code-generation time, the + # IfNode will rewrite them into a proper chain. + Whens: [ + o "When" + o "Whens When", -> $1.push $2 + ] + + # An individual **When** clause, with action. + When: [ + o "LEADING_WHEN SimpleArgs Block", -> new IfNode $2, $3, null, {statement: true} + o "LEADING_WHEN SimpleArgs Block TERMINATOR", -> new IfNode $2, $3, null, {statement: true} + o "Comment TERMINATOR When", -> $3.comment: $1; $3 + ] + + # The most basic form of *if* is a condition and an action. The following + # if-related rules are broken up along these lines in order to avoid + # ambiguity. + IfStart: [ + o "IF Expression Block", -> new IfNode $2, $3 + o "IfStart ElsIf", -> $1.add_else $2 + ] + + # An **IfStart** can optionally be followed by an else block. + IfBlock: [ + o "IfStart" + o "IfStart ELSE Block", -> $1.add_else $3 + ] + + # An *else if* continuation of the *if* expression. + ElsIf: [ + o "ELSE IF Expression Block", -> (new IfNode($3, $4)).force_statement() + ] + + # The full complement of *if* expressions, including postfix one-liner + # *if* and *unless*. + If: [ + o "IfBlock" + o "Expression IF Expression", -> new IfNode $3, Expressions.wrap([$1]), null, {statement: true} + o "Expression UNLESS Expression", -> new IfNode $3, Expressions.wrap([$1]), null, {statement: true, invert: true} + ] + + # Arithmetic and logical operators, working on one or more operands. + # Here they are grouped by order of precedence. The actual precedence rules + # are defined at the bottom of the page. It would be shorter if we could + # combine most of these rules into a single generic *Operand OpSymbol Operand* + # -type rule, but in order to make the precedence binding possible, separate + # rules are necessary. + Operation: [ + o "! Expression", -> new OpNode '!', $2 + o "!! Expression", -> new OpNode '!!', $2 + o("- Expression", (-> new OpNode('-', $2)), {prec: 'UMINUS'}) + o("+ Expression", (-> new OpNode('+', $2)), {prec: 'UPLUS'}) + o "NOT Expression", -> new OpNode 'not', $2 + o "~ Expression", -> new OpNode '~', $2 + o "-- Expression", -> new OpNode '--', $2 + o "++ Expression", -> new OpNode '++', $2 + o "DELETE Expression", -> new OpNode 'delete', $2 + o "TYPEOF Expression", -> new OpNode 'typeof', $2 + o "Expression --", -> new OpNode '--', $1, null, true + o "Expression ++", -> new OpNode '++', $1, null, true + + o "Expression * Expression", -> new OpNode '*', $1, $3 + o "Expression / Expression", -> new OpNode '/', $1, $3 + o "Expression % Expression", -> new OpNode '%', $1, $3 + + o "Expression + Expression", -> new OpNode '+', $1, $3 + o "Expression - Expression", -> new OpNode '-', $1, $3 + + o "Expression << Expression", -> new OpNode '<<', $1, $3 + o "Expression >> Expression", -> new OpNode '>>', $1, $3 + o "Expression >>> Expression", -> new OpNode '>>>', $1, $3 + o "Expression & Expression", -> new OpNode '&', $1, $3 + o "Expression | Expression", -> new OpNode '|', $1, $3 + o "Expression ^ Expression", -> new OpNode '^', $1, $3 + + o "Expression <= Expression", -> new OpNode '<=', $1, $3 + o "Expression < Expression", -> new OpNode '<', $1, $3 + o "Expression > Expression", -> new OpNode '>', $1, $3 + o "Expression >= Expression", -> new OpNode '>=', $1, $3 + + o "Expression == Expression", -> new OpNode '==', $1, $3 + o "Expression != Expression", -> new OpNode '!=', $1, $3 + o "Expression IS Expression", -> new OpNode 'is', $1, $3 + o "Expression ISNT Expression", -> new OpNode 'isnt', $1, $3 + + o "Expression && Expression", -> new OpNode '&&', $1, $3 + o "Expression || Expression", -> new OpNode '||', $1, $3 + o "Expression AND Expression", -> new OpNode 'and', $1, $3 + o "Expression OR Expression", -> new OpNode 'or', $1, $3 + o "Expression ? Expression", -> new OpNode '?', $1, $3 + + o "Expression -= Expression", -> new OpNode '-=', $1, $3 + o "Expression += Expression", -> new OpNode '+=', $1, $3 + o "Expression /= Expression", -> new OpNode '/=', $1, $3 + o "Expression *= Expression", -> new OpNode '*=', $1, $3 + o "Expression %= Expression", -> new OpNode '%=', $1, $3 + o "Expression ||= Expression", -> new OpNode '||=', $1, $3 + o "Expression &&= Expression", -> new OpNode '&&=', $1, $3 + o "Expression ?= Expression", -> new OpNode '?=', $1, $3 + + o "Expression INSTANCEOF Expression", -> new OpNode 'instanceof', $1, $3 + o "Expression IN Expression", -> new OpNode 'in', $1, $3 + ] + +} + +# Precedence +# ---------- + +# Operators at the top of this list have higher precedence than the ones lower +# down. Following these rules is what makes `2 + 3 * 4` parse as: +# +# 2 + (3 * 4) +# +# And not: +# +# (2 + 3) * 4 operators: [ ["left", '?'] ["nonassoc", 'UMINUS', 'UPLUS', 'NOT', '!', '!!', '~', '++', '--'] @@ -37,434 +538,28 @@ operators: [ ["right", '->', '=>', 'UNLESS', 'IF', 'ELSE', 'WHILE'] ] -# Grammar ============================================================== +# Wrapping Up +# ----------- -grammar: { - - # All parsing will end in this rule, being the trunk of the AST. - Root: [ - o "", -> new Expressions() - o "TERMINATOR", -> new Expressions() - o "Expressions", -> $1 - o "Block TERMINATOR", -> $1 - ] - - # Any list of expressions or method body, seperated by line breaks or semis. - Expressions: [ - o "Expression", -> Expressions.wrap([$1]) - o "Expressions TERMINATOR Expression", -> $1.push($3) - o "Expressions TERMINATOR", -> $1 - ] - - # All types of expressions in our language. The basic unit of CoffeeScript - # is the expression. - Expression: [ - o "Value" - o "Call" - o "Code" - o "Operation" - o "Assign" - o "If" - o "Try" - o "Throw" - o "Return" - o "While" - o "For" - o "Switch" - o "Extends" - o "Class" - o "Splat" - o "Existence" - o "Comment" - ] - - # A block of expressions. Note that the Rewriter will convert some postfix - # forms into blocks for us, by altering the token stream. - Block: [ - o "INDENT Expressions OUTDENT", -> $2 - o "INDENT OUTDENT", -> new Expressions() - ] - - Identifier: [ - o "IDENTIFIER", -> new LiteralNode(yytext) - ] - - AlphaNumeric: [ - o "NUMBER", -> new LiteralNode(yytext) - o "STRING", -> new LiteralNode(yytext) - ] - - # All hard-coded values. These can be printed straight to JavaScript. - Literal: [ - o "AlphaNumeric", -> $1 - o "JS", -> new LiteralNode(yytext) - o "REGEX", -> new LiteralNode(yytext) - o "BREAK", -> new LiteralNode(yytext) - o "CONTINUE", -> new LiteralNode(yytext) - o "TRUE", -> new LiteralNode(true) - o "FALSE", -> new LiteralNode(false) - o "YES", -> new LiteralNode(true) - o "NO", -> new LiteralNode(false) - o "ON", -> new LiteralNode(true) - o "OFF", -> new LiteralNode(false) - ] - - # Assignment to a variable (or index). - Assign: [ - o "Value ASSIGN Expression", -> new AssignNode($1, $3) - ] - - # Assignment within an object literal (can be quoted). - AssignObj: [ - o "Identifier ASSIGN Expression", -> new AssignNode(new ValueNode($1), $3, 'object') - o "AlphaNumeric ASSIGN Expression", -> new AssignNode(new ValueNode($1), $3, 'object') - o "Comment" - ] - - # A return statement. - Return: [ - o "RETURN Expression", -> new ReturnNode($2) - o "RETURN", -> new ReturnNode(new ValueNode(new LiteralNode('null'))) - ] - - # A comment. - Comment: [ - o "COMMENT", -> new CommentNode(yytext) - ] - - # Arithmetic and logical operators - # For Ruby's Operator precedence, see: [ - # https://www.cs.auckland.ac.nz/references/ruby/ProgrammingRuby/language.html - Operation: [ - o "! Expression", -> new OpNode('!', $2) - o "!! Expression", -> new OpNode('!!', $2) - o("- Expression", (-> new OpNode('-', $2)), {prec: 'UMINUS'}) - o("+ Expression", (-> new OpNode('+', $2)), {prec: 'UPLUS'}) - o "NOT Expression", -> new OpNode('not', $2) - o "~ Expression", -> new OpNode('~', $2) - o "-- Expression", -> new OpNode('--', $2) - o "++ Expression", -> new OpNode('++', $2) - o "DELETE Expression", -> new OpNode('delete', $2) - o "TYPEOF Expression", -> new OpNode('typeof', $2) - o "Expression --", -> new OpNode('--', $1, null, true) - o "Expression ++", -> new OpNode('++', $1, null, true) - - o "Expression * Expression", -> new OpNode('*', $1, $3) - o "Expression / Expression", -> new OpNode('/', $1, $3) - o "Expression % Expression", -> new OpNode('%', $1, $3) - - o "Expression + Expression", -> new OpNode('+', $1, $3) - o "Expression - Expression", -> new OpNode('-', $1, $3) - - o "Expression << Expression", -> new OpNode('<<', $1, $3) - o "Expression >> Expression", -> new OpNode('>>', $1, $3) - o "Expression >>> Expression", -> new OpNode('>>>', $1, $3) - o "Expression & Expression", -> new OpNode('&', $1, $3) - o "Expression | Expression", -> new OpNode('|', $1, $3) - o "Expression ^ Expression", -> new OpNode('^', $1, $3) - - o "Expression <= Expression", -> new OpNode('<=', $1, $3) - o "Expression < Expression", -> new OpNode('<', $1, $3) - o "Expression > Expression", -> new OpNode('>', $1, $3) - o "Expression >= Expression", -> new OpNode('>=', $1, $3) - - o "Expression == Expression", -> new OpNode('==', $1, $3) - o "Expression != Expression", -> new OpNode('!=', $1, $3) - o "Expression IS Expression", -> new OpNode('is', $1, $3) - o "Expression ISNT Expression", -> new OpNode('isnt', $1, $3) - - o "Expression && Expression", -> new OpNode('&&', $1, $3) - o "Expression || Expression", -> new OpNode('||', $1, $3) - o "Expression AND Expression", -> new OpNode('and', $1, $3) - o "Expression OR Expression", -> new OpNode('or', $1, $3) - o "Expression ? Expression", -> new OpNode('?', $1, $3) - - o "Expression -= Expression", -> new OpNode('-=', $1, $3) - o "Expression += Expression", -> new OpNode('+=', $1, $3) - o "Expression /= Expression", -> new OpNode('/=', $1, $3) - o "Expression *= Expression", -> new OpNode('*=', $1, $3) - o "Expression %= Expression", -> new OpNode('%=', $1, $3) - o "Expression ||= Expression", -> new OpNode('||=', $1, $3) - o "Expression &&= Expression", -> new OpNode('&&=', $1, $3) - o "Expression ?= Expression", -> new OpNode('?=', $1, $3) - - o "Expression INSTANCEOF Expression", -> new OpNode('instanceof', $1, $3) - o "Expression IN Expression", -> new OpNode('in', $1, $3) - ] - - # The existence operator. - Existence: [ - o "Expression ?", -> new ExistenceNode($1) - ] - - # Function definition. - Code: [ - o "PARAM_START ParamList PARAM_END FuncGlyph Block", -> new CodeNode($2, $5, $4) - o "FuncGlyph Block", -> new CodeNode([], $2, $1) - ] - - # The symbols to signify functions, and bound functions. - FuncGlyph: [ - o "->", -> 'func' - o "=>", -> 'boundfunc' - ] - - # The parameters to a function definition. - ParamList: [ - o "", -> [] - o "Param", -> [$1] - o "ParamList , Param", -> $1.concat [$3] - ] - - # A Parameter (or ParamSplat) in a function definition. - Param: [ - o "PARAM", -> new LiteralNode(yytext) - o "Param . . .", -> new SplatNode($1) - ] - - # A regular splat. - Splat: [ - o "Expression . . .", -> new SplatNode($1) - ] - - # Expressions that can be treated as values. - Value: [ - o "Identifier", -> new ValueNode($1) - o "Literal", -> new ValueNode($1) - o "Array", -> new ValueNode($1) - o "Object", -> new ValueNode($1) - o "Parenthetical", -> new ValueNode($1) - o "Range", -> new ValueNode($1) - o "This", -> $1 - o "Value Accessor", -> $1.push($2) - o "Invocation Accessor", -> new ValueNode($1, [$2]) - ] - - # Accessing into an object or array, through dot or index notation. - Accessor: [ - o "PROPERTY_ACCESS Identifier", -> new AccessorNode($2) - o "PROTOTYPE_ACCESS Identifier", -> new AccessorNode($2, 'prototype') - o "SOAK_ACCESS Identifier", -> new AccessorNode($2, 'soak') - o "Index" - o "Slice", -> new SliceNode($1) - ] - - # Indexing into an object or array. - Index: [ - o "INDEX_START Expression INDEX_END", -> new IndexNode($2) - o "SOAKED_INDEX_START Expression SOAKED_INDEX_END", -> new IndexNode($2, 'soak') - ] - - # An object literal. - Object: [ - o "{ AssignList }", -> new ObjectNode($2) - o "{ IndentedAssignList }", -> new ObjectNode($2) - ] - - # A class literal. - Class: [ - o "CLASS Value", -> new ClassNode($2) - o "CLASS Value EXTENDS Value", -> new ClassNode($2, $4) - o "CLASS Value IndentedAssignList", -> new ClassNode($2, null, $3) - o "CLASS Value EXTENDS Value IndentedAssignList", -> new ClassNode($2, $4, $5) - ] - - # Assignment within an object literal (comma or newline separated). - AssignList: [ - o "", -> [] - o "AssignObj", -> [$1] - o "AssignList , AssignObj", -> $1.concat [$3] - o "AssignList TERMINATOR AssignObj", -> $1.concat [$3] - o "AssignList , TERMINATOR AssignObj", -> $1.concat [$4] - ] - - # A list of assignments in a block indentation. - IndentedAssignList: [ - o "INDENT AssignList OUTDENT", -> $2 - ] - - # All flavors of function call (instantiation, super, and regular). - Call: [ - o "Invocation", -> $1 - o "NEW Invocation", -> $2.new_instance() - o "Super", -> $1 - ] - - # Extending an object's prototype. - Extends: [ - o "Value EXTENDS Value", -> new ExtendsNode($1, $3) - ] - - # A generic function invocation. - Invocation: [ - o "Value Arguments", -> new CallNode($1, $2) - o "Invocation Arguments", -> new CallNode($1, $2) - ] - - # The list of arguments to a function invocation. - Arguments: [ - o "CALL_START ArgList CALL_END", -> $2 - ] - - # Calling super. - Super: [ - o "SUPER CALL_START ArgList CALL_END", -> new CallNode('super', $3) - ] - - # This references, either naked or to a property. - This: [ - o "@", -> new ValueNode(new LiteralNode('this')) - o "@ Identifier", -> new ValueNode(new LiteralNode('this'), [new AccessorNode($2)]) - ] - - # The range literal. - Range: [ - o "[ Expression . . Expression ]", -> new RangeNode($2, $5) - o "[ Expression . . . Expression ]", -> new RangeNode($2, $6, true) - ] - - # The slice literal. - Slice: [ - o "INDEX_START Expression . . Expression INDEX_END", -> new RangeNode($2, $5) - o "INDEX_START Expression . . . Expression INDEX_END", -> new RangeNode($2, $6, true) - ] - - # The array literal. - Array: [ - o "[ ArgList ]", -> new ArrayNode($2) - ] - - # A list of arguments to a method call, or as the contents of an array. - ArgList: [ - o "", -> [] - o "Expression", -> [$1] - o "INDENT Expression", -> [$2] - o "ArgList , Expression", -> $1.concat [$3] - o "ArgList TERMINATOR Expression", -> $1.concat [$3] - o "ArgList , TERMINATOR Expression", -> $1.concat [$4] - o "ArgList , INDENT Expression", -> $1.concat [$4] - o "ArgList OUTDENT", -> $1 - ] - - # Just simple, comma-separated, required arguments (no fancy syntax). - SimpleArgs: [ - o "Expression", -> $1 - o "SimpleArgs , Expression", -> - if $1 instanceof Array then $1.concat([$3]) else [$1].concat([$3]) - ] - - # Try/catch/finally exception handling blocks. - Try: [ - o "TRY Block Catch", -> new TryNode($2, $3[0], $3[1]) - o "TRY Block FINALLY Block", -> new TryNode($2, null, null, $4) - o "TRY Block Catch FINALLY Block", -> new TryNode($2, $3[0], $3[1], $5) - ] - - # A catch clause. - Catch: [ - o "CATCH Identifier Block", -> [$2, $3] - ] - - # Throw an exception. - Throw: [ - o "THROW Expression", -> new ThrowNode($2) - ] - - # Parenthetical expressions. - Parenthetical: [ - o "( Expression )", -> new ParentheticalNode($2) - ] - - # The condition for a while loop. - WhileSource: [ - o "WHILE Expression", -> new WhileNode($2) - o "WHILE Expression WHEN Expression", -> new WhileNode($2, {filter : $4}) - ] - - # The while loop. (there is no do..while). - While: [ - o "WhileSource Block", -> $1.add_body $2 - o "Expression WhileSource", -> $2.add_body $1 - ] - - # Array comprehensions, including guard and current index. - # Looks a little confusing, check nodes.rb for the arguments to ForNode. - For: [ - o "Expression FOR ForVariables ForSource", -> new ForNode($1, $4, $3[0], $3[1]) - o "FOR ForVariables ForSource Block", -> new ForNode($4, $3, $2[0], $2[1]) - ] - - # An array comprehension has variables for the current element and index. - ForVariables: [ - o "Identifier", -> [$1] - o "Identifier , Identifier", -> [$1, $3] - ] - - # The source of the array comprehension can optionally be filtered. - ForSource: [ - o "IN Expression", -> {source: $2} - o "OF Expression", -> {source: $2, object: true} - o "ForSource WHEN Expression", -> $1.filter: $3; $1 - o "ForSource BY Expression", -> $1.step: $3; $1 - ] - - # Switch/When blocks. - Switch: [ - o "SWITCH Expression INDENT Whens OUTDENT", -> $4.rewrite_condition($2) - o "SWITCH Expression INDENT Whens ELSE Block OUTDENT", -> $4.rewrite_condition($2).add_else($6, true) - ] - - # The inner list of whens. - Whens: [ - o "When", -> $1 - o "Whens When", -> $1.push $2 - ] - - # An individual when. - When: [ - o "LEADING_WHEN SimpleArgs Block", -> new IfNode($2, $3, null, {statement: true}) - o "LEADING_WHEN SimpleArgs Block TERMINATOR", -> new IfNode($2, $3, null, {statement: true}) - o "Comment TERMINATOR When", -> $3.comment: $1; $3 - ] - - # The most basic form of "if". - IfStart: [ - o "IF Expression Block", -> new IfNode($2, $3) - o "IfStart ElsIfs", -> $1.add_else($2) - ] - - IfBlock: [ - o "IfStart", -> $1 - o "IfStart ELSE Block", -> $1.add_else($3) - ] - - # Multiple elsifs can be chained together. - ElsIfs: [ - o "ELSE IF Expression Block", -> (new IfNode($3, $4)).force_statement() - o "ElsIfs ElsIf", -> $1.add_else($2) - ] - - # The full complement of if blocks, including postfix one-liner ifs and unlesses. - If: [ - o "IfBlock", -> $1 - o "Expression IF Expression", -> new IfNode($3, Expressions.wrap([$1]), null, {statement: true}) - o "Expression UNLESS Expression", -> new IfNode($3, Expressions.wrap([$1]), null, {statement: true, invert: true}) - ] - -} - -# Helpers ============================================================== - -# Make the Jison parser. -bnf: {} +# Finally, now what we have our **grammar** and our **operators**, we can create +# our **Jison.Parser**. We do this by processing all of our rules, recording all +# terminals (every symbol which does not appear as the name of a rule above) +# as "tokens". tokens: [] -for name, non_terminal of grammar - bnf[name]: for option in non_terminal - for part in option[0].split(" ") - if !grammar[part] - tokens.push(part) - if name == "Root" - option[1] = "return ${option[1]}" - option -tokens: tokens.join(" ") -exports.parser: new Parser({tokens: tokens, bnf: bnf, operators: operators.reverse(), startSymbol: 'Root'}, {debug: false}) +for name, alternatives of grammar + grammar[name]: for alt in alternatives + for token in alt[0].split ' ' + tokens.push token unless grammar[token] + alt[1] = "return ${alt[1]}" if name is 'Root' + alt + +# Initialize the **Parser** with our list of terminal **tokens**, our **grammar** +# rules, and the name of the root. Reverse the operators because Jison orders +# precedence from low to high, and we have it high to low +# (as in [Yacc](http://dinosaur.compilertools.net/yacc/index.html)). +exports.parser: new Parser { + tokens: tokens.join ' ' + bnf: grammar + operators: operators.reverse() + startSymbol: 'Root' +}