diff --git a/documentation/coffee/block_comment.coffee b/documentation/coffee/block_comment.coffee index 3cfd9e95..4c0012b4 100644 --- a/documentation/coffee/block_comment.coffee +++ b/documentation/coffee/block_comment.coffee @@ -1,4 +1,4 @@ ### -CoffeeScript Compiler v0.9.4 +CoffeeScript Compiler v0.9.5 Released under the MIT License ### \ No newline at end of file diff --git a/documentation/coffee/classes.coffee b/documentation/coffee/classes.coffee index 7175baf1..6794518a 100644 --- a/documentation/coffee/classes.coffee +++ b/documentation/coffee/classes.coffee @@ -1,5 +1,5 @@ class Animal - (@name) -> + constructor: (@name) -> move: (meters) -> alert @name + " moved " + meters + "m." diff --git a/documentation/coffee/overview.coffee b/documentation/coffee/overview.coffee index 7ab4e716..0db65dd2 100644 --- a/documentation/coffee/overview.coffee +++ b/documentation/coffee/overview.coffee @@ -25,4 +25,4 @@ race = (winner, runners...) -> alert "I knew it!" if elvis? # Array comprehensions: -cubes = math.cube num for num in list +cubes = (math.cube num for num in list) diff --git a/documentation/coffee/soaks.coffee b/documentation/coffee/soaks.coffee index 16b2350f..a473f376 100644 --- a/documentation/coffee/soaks.coffee +++ b/documentation/coffee/soaks.coffee @@ -1 +1 @@ -lottery.drawWinner?().address?.zipcode +zip = lottery.drawWinner?().address?.zipcode diff --git a/documentation/css/docs.css b/documentation/css/docs.css index b47c1ff5..7bbd01ac 100644 --- a/documentation/css/docs.css +++ b/documentation/css/docs.css @@ -2,7 +2,7 @@ body { font-size: 13px; line-height: 20px; color: #191933; - font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif !important; + font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica,Arial, sans-serif !important; } .container { width: 950px; diff --git a/documentation/docs/coffee-script.html b/documentation/docs/coffee-script.html index 85c3d7f4..01aca8a6 100644 --- a/documentation/docs/coffee-script.html +++ b/documentation/docs/coffee-script.html @@ -12,17 +12,20 @@ execute all scripts present in text/coffeescript tags.

content = compile fs.readFileSync filename, 'utf8' module._compile content, filename else if require.registerExtension - require.registerExtension '.coffee', (content) -> compile content

The current CoffeeScript version number.

exports.VERSION = '0.9.4'

Expose helpers for testing.

exports.helpers = require './helpers'

Compile a string of CoffeeScript code to JavaScript, using the Coffee/Jison + require.registerExtension '.coffee', (content) -> compile content

The current CoffeeScript version number.

exports.VERSION = '0.9.5'

Expose helpers for testing.

exports.helpers = require './helpers'

Compile a string of CoffeeScript code to JavaScript, using the Coffee/Jison compiler.

exports.compile = compile = (code, options = {}) ->
   try
     (parser.parse lexer.tokenize code).compile options
   catch err
     err.message = "In #{options.fileName}, #{err.message}" if options.fileName
     throw err

Tokenize a string of CoffeeScript code, and return the array of tokens.

exports.tokens = (code, options) ->
-  lexer.tokenize code, options

Tokenize and parse a string of CoffeeScript code, and return the AST. You can -then compile it by calling .compile() on the root, or traverse it by using -.traverse() with a callback.

exports.nodes = (code, options) ->
-  parser.parse lexer.tokenize code, options

Compile and execute a string of CoffeeScript (on the server), correctly + lexer.tokenize code, options

Parse a string of CoffeeScript code or an array of lexed tokens, and +return the AST. You can then compile it by calling .compile() on the root, +or traverse it by using .traverse() with a callback.

exports.nodes = (source, options) ->
+  if typeof source is 'string'
+    parser.parse lexer.tokenize source, options
+  else
+    parser.parse source

Compile and execute a string of CoffeeScript (on the server), correctly setting __filename, __dirname, and relative require().

exports.run = (code, options) ->

We want the root module.

  root = module
   while root.parent
     root = root.parent

Set the filename.

  root.filename = fs.realpathSync options.fileName or '.'

Clear the module cache.

  root.moduleCache = {} if root.moduleCache

Compile.

  if path.extname(root.filename) isnt '.coffee' or require.extensions
diff --git a/documentation/docs/grammar.html b/documentation/docs/grammar.html
index 8a538e18..35418bc0 100644
--- a/documentation/docs/grammar.html
+++ b/documentation/docs/grammar.html
@@ -150,14 +150,16 @@ as functions, indexed into, named as a class, etc.

o 'Assignable' o 'Literal', -> new Value $1 o 'Parenthetical', -> new Value $1 + o 'Range', -> new Value $1 o 'This' ]

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

  Accessor: [
-    o '.  Identifier',                          -> new Accessor $2
-    o '?. Identifier',                          -> new Accessor $2, 'soak'
-    o ':: Identifier',                          -> new Accessor $2, 'proto'
-    o '::',                                     -> new Accessor new Literal 'prototype'
+    o '.  Identifier',                          -> new Access $2
+    o '?. Identifier',                          -> new Access $2, 'soak'
+    o ':: Identifier',                          -> new Access $2, 'proto'
+    o '::',                                     -> new Access new Literal 'prototype'
     o 'Index'
+    o 'Slice',                                  -> new Slice $1
   ]

Indexing into an object or array using bracket notation.

  Index: [
     o 'INDEX_START Expression INDEX_END',       -> new Index $2
     o 'INDEX_SOAK  Index',                      -> extend $2, soak : yes
@@ -198,11 +200,20 @@ and optional references to the superclass.

o 'THIS', -> new Value new Literal 'this' o '@', -> new Value new Literal 'this' ]

A reference to a property on this.

  ThisProperty: [
-    o '@ Identifier',                           -> new Value new Literal('this'), [new Accessor($2)], 'this'
+    o '@ Identifier',                           -> new Value new Literal('this'), [new Access($2)], 'this'
   ]

The array literal.

  Array: [
     o '[ ]',                                    -> new Arr []
     o '[ ArgList OptComma ]',                   -> new Arr $2
-  ]

The ArgList is both the list of objects passed into a function call, + ]

Inclusive and exclusive range dots.

  RangeDots: [
+    o '..',                                     -> 'inclusive'
+    o '...',                                    -> 'exclusive'
+  ]

The CoffeeScript range literal.

  Range: [
+    o '[ Expression RangeDots Expression ]',    -> new Range $2, $4, $3
+  ]

Array slice literals.

  Slice: [
+    o 'INDEX_START Expression RangeDots Expression INDEX_END', -> new Range $2, $4, $3
+    o 'INDEX_START Expression RangeDots INDEX_END', -> new Range $2, null, $3
+    o 'INDEX_START RangeDots Expression INDEX_END', -> new Range null, $3, $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 'Arg',                                              -> [$1]
@@ -210,34 +221,35 @@ as well as the contents of an array literal
     o 'ArgList OptComma TERMINATOR Arg',                  -> $1.concat $4
     o 'INDENT ArgList OptComma OUTDENT',                  -> $2
     o 'ArgList OptComma INDENT ArgList OptComma OUTDENT', -> $1.concat $4
-  ]

Valid arguments are Expressions or Splats.

  Arg: [
+  ]

Valid arguments are Expressions or Splats.

  Arg: [
     o 'Expression'
     o 'Splat'
-  ]

Just simple, comma-separated, required arguments (no fancy syntax). We need + ]

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',                -> [].concat $1, $3
-  ]

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

  Try: [
+  ]

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

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

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

  Catch: [
+  ]

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

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

Throw an exception object.

  Throw: [
+  ]

Throw an exception object.

  Throw: [
     o 'THROW Expression',                       -> new Throw $2
-  ]

Parenthetical expressions. Note that the Parenthetical is a Value, + ]

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 Parens $2
-  ]

The condition portion of a while loop.

  WhileSource: [
+    o '( Body )',                               -> new Parens $2
+    o '( INDENT Body OUTDENT )',                -> new Parens $3
+  ]

The condition portion of a while loop.

  WhileSource: [
     o 'WHILE Expression',                       -> new While $2
     o 'WHILE Expression WHEN Expression',       -> new While $2, guard: $4
     o 'UNTIL Expression',                       -> new While $2, invert: true
     o 'UNTIL Expression WHEN Expression',       -> new While $2, invert: true, guard: $4
-  ]

The while loop can either be normal, with a block of expressions to execute, + ]

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.addBody $2
     o 'Statement  WhileSource',                 -> $2.addBody Expressions.wrap [$1]
@@ -248,46 +260,42 @@ or postfix, with a single expression. There is no do..while.

Loop: [ o 'LOOP Block', -> new While(new Literal 'true').addBody $2 o 'LOOP Expression', -> new While(new Literal 'true').addBody Expressions.wrap [$2] - ]

Array, object, and range comprehensions, at the most generic level. + ]

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 'Statement  ForBody',                     -> new For $1, $2
-    o 'Expression ForBody',                     -> new For $1, $2
-    o 'ForBody    Block',                       -> new For $2, $1
-  ]

An array of all accepted values for a variable inside the loop. This -enables support for pattern matching.

  ForValue: [
+    o 'Statement  ForBody',                     -> new For $1, $2, $2.vars[0], $2.vars[1]
+    o 'Expression ForBody',                     -> new For $1, $2, $2.vars[0], $2.vars[1]
+    o 'ForBody    Block',                       -> new For $2, $1, $1.vars[0], $1.vars[1]
+  ]
+
+  ForBody: [
+    o 'FOR Range',                              -> source: new Value($2), vars: []
+    o 'ForStart ForSource',                     -> $2.raw = $1.raw; $2.vars = $1; $2
+  ]
+
+  ForStart: [
+    o 'FOR ForVariables',                       -> $2
+    o 'FOR ALL ForVariables',                   -> $3.raw = yes; $3
+  ]

An array of all accepted values for a variable inside the loop. +This enables support for pattern matching.

  ForValue: [
     o 'Identifier'
     o 'Array',                                  -> new Value $1
     o 'Object',                                 -> new Value $1
-  ]
-
-  ForIn: [
-    o 'FORIN Expression',                               -> source: $2
-    o 'FORIN Expression WHEN Expression',               -> source: $2, guard: $4
-    o 'FORIN Expression BY Expression',                 -> source: $2, step: $4
-    o 'FORIN Expression BY Expression WHEN Expression', -> source: $2, step: $4, guard: $6
-  ]
-
-  ForOf: [
-    o 'FOROF Expression',                       -> object: on, source: $2
-    o 'FOROF Expression WHEN Expression',       -> object: on, source: $2, guard: $4
-  ]
-
-  ForTo: [
-    o 'TO Expression',                               -> to: $2
-    o 'TO Expression WHEN Expression',               -> to: $2, guard: $4
-    o 'TO Expression BY Expression',                 -> to: $2, step: $4
-    o 'TO Expression BY Expression WHEN Expression', -> to: $2, step: $4, guard: $6
-  ]

The source of a comprehension is an array or object with an optional guard + ]

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 'ForValue',                               -> [$1]
+    o 'ForValue , ForValue',                    -> [$1, $3]
+  ]

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

  ForBody: [
-    o 'FOR ForValue ForIn',                     -> extend $3, name: $2
-    o 'FOR ForValue , Identifier ForIn',        -> extend $5, name: $2, index: $4
-    o 'FOR Identifier ForOf',                   -> extend $3, index: $2
-    o 'FOR ForValue , ForValue ForOf',          -> extend $5, index: $2, name: $4
-    o 'FOR ALL Identifier ForOf',               -> extend $4, raw: on, index: $3
-    o 'FOR ALL Identifier , ForValue ForOf',    -> extend $6, raw: on, index: $3, name: $5
-    o 'FOR Identifier FROM Expression ForTo',   -> extend $5, index: $2, from: $4
+in fixed-size increments.

  ForSource: [
+    o 'FORIN Expression',                               -> source: $2
+    o 'FOROF Expression',                               -> source: $2, object: yes
+    o 'FORIN Expression WHEN Expression',               -> source: $2, guard: $4
+    o 'FOROF Expression WHEN Expression',               -> source: $2, guard: $4, object: yes
+    o 'FORIN Expression BY Expression',                 -> source: $2, step:  $4
+    o 'FORIN Expression WHEN Expression BY Expression', -> source: $2, guard: $4, step: $6
+    o 'FORIN Expression BY Expression WHEN Expression', -> source: $2, step:  $4, guard: $6
   ]
 
   Switch: [
@@ -300,24 +308,24 @@ in fixed-size increments.

Whens: [ o 'When' o 'Whens When', -> $1.concat $2 - ]

An individual When clause, with action.

  When: [
+  ]

An individual When clause, with action.

  When: [
     o 'LEADING_WHEN SimpleArgs Block',            -> [[$2, $3]]
     o 'LEADING_WHEN SimpleArgs Block TERMINATOR', -> [[$2, $3]]
-  ]

The most basic form of if is a condition and an action. The following + ]

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.

  IfBlock: [
     o 'IF Expression Block',                    -> new If $2, $3
     o 'UNLESS Expression Block',                -> new If $2, $3, invert: true
     o 'IfBlock ELSE IF Expression Block',       -> $1.addElse new If $4, $5
     o 'IfBlock ELSE Block',                     -> $1.addElse $3
-  ]

The full complement of if expressions, including postfix one-liner + ]

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

  If: [
     o 'IfBlock'
     o 'Statement  POST_IF Expression',          -> new If $3, Expressions.wrap([$1]), statement: true
     o 'Expression POST_IF Expression',          -> new If $3, Expressions.wrap([$1]), statement: true
     o 'Statement  POST_UNLESS Expression',      -> new If $3, Expressions.wrap([$1]), statement: true, invert: true
     o 'Expression POST_UNLESS Expression',      -> new If $3, Expressions.wrap([$1]), statement: true, invert: true
-  ]

Arithmetic and logical operators, working on one or more operands. + ]

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 @@ -330,7 +338,7 @@ rules are necessary.

o '-- SimpleAssignable', -> new Op '--', $2 o '++ SimpleAssignable', -> new Op '++', $2 o 'SimpleAssignable --', -> new Op '--', $1, null, true - o 'SimpleAssignable ++', -> new Op '++', $1, null, true

The existential operator.

    o 'Expression ?',                           -> new Existence $1
+    o 'SimpleAssignable ++',                    -> new Op '++', $1, null, true

The existential operator.

    o 'Expression ?',                           -> new Existence $1
 
     o 'Expression +  Expression',               -> new Op '+' , $1, $3
     o 'Expression -  Expression',               -> new Op '-' , $1, $3
@@ -350,7 +358,7 @@ rules are necessary.

o 'SimpleAssignable COMPOUND_ASSIGN INDENT Expression OUTDENT', -> new Assign $1, $4, $2 o 'SimpleAssignable EXTENDS Expression', -> new Extends $1, $3 - ]

Precedence

Operators at the top of this list have higher precedence than the ones lower + ]

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)
@@ -373,10 +381,10 @@ down. Following these rules is what makes 2 + 3 * 4 parse as:

['left', 'LOGIC'] ['nonassoc', 'INDENT', 'OUTDENT'] ['right', '=', ':', 'COMPOUND_ASSIGN', 'RETURN', 'THROW', 'EXTENDS'] - ['right', 'FORIN', 'FOROF', 'FROM', 'TO', 'BY', 'WHEN'] + ['right', 'FORIN', 'FOROF', 'BY', 'WHEN'] ['right', 'IF', 'UNLESS', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'SUPER', 'CLASS'] ['right', 'POST_IF', 'POST_UNLESS'] -]

Wrapping Up

Finally, now what we have our grammar and our operators, we can create +]

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 = []
@@ -385,7 +393,7 @@ as "tokens".

< 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 + 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
diff --git a/documentation/docs/lexer.html b/documentation/docs/lexer.html
index 181d64fa..857a2a9c 100644
--- a/documentation/docs/lexer.html
+++ b/documentation/docs/lexer.html
@@ -27,8 +27,7 @@ unless explicitly asked not to.

@indebt = 0 # The over-indentation at the current level. @outdebt = 0 # The under-outdentation at the current level. @indents = [] # The stack of all current indentation levels. - @tokens = [] # Stream of parsed tokens in the form `['TYPE', value, line]`. - @seenFor = @seenFrom = no # Flags for distinguishing `FORIN/FOROF/FROM/TO`.

At every position, run through this list of attempted matches, + @tokens = [] # Stream of parsed tokens in the form `['TYPE', value, line]`.

At every position, run through this list of attempted matches, short-circuiting if any of them succeed. Their order determines precedence: @literalToken is the fallback catch-all.

    i = 0
     while @chunk = code.slice i
@@ -57,15 +56,6 @@ though is means === otherwise.

if id is 'all' and @tag() is 'FOR' @token 'ALL', id return id.length - if id is 'from' and @tag(1) is 'FOR' - @seenFor = no - @seenFrom = yes - @token 'FROM', id - return id.length - if id is 'to' and @seenFrom - @seenFrom = no - @token 'TO', id - return id.length forcedIdentifier = colon or (prev = last @tokens) and not prev.spaced and prev[0] in ['.', '?.', '@', '::'] tag = 'IDENTIFIER' @@ -318,7 +308,7 @@ a series of delimiters, all of which must be nested correctly within the contents of the string. This method allows us to have strings within interpolations within strings, ad infinitum.

  balancedString: (str, delimited, options = {}) ->
     stack = [delimited[0]]
-    for i from 1 to str.length - 1
+    for i in [1...str.length]
       switch str.charAt i
         when '\\'
           i++
@@ -352,10 +342,11 @@ token stream.

(expr = @balancedString str.slice(i+1), [['{', '}']]) continue tokens.push ['NEOSTRING', str.slice(pi, i)] if pi < i - inner = expr.slice(1, -1).replace(LEADING_SPACES, '').replace(TRAILING_SPACES, '') + inner = expr.slice(1, -1) if inner.length nested = new Lexer().tokenize inner, line: @line, rewrite: off nested.pop() + nested.shift() if nested[0]?[0] is 'TERMINATOR' if nested.length > 1 nested.unshift ['(', '('] nested.push [')', ')'] @@ -429,7 +420,7 @@ be used as identifiers or properties.

| ([-+:])\1 # doubles | ([&|<>])\2=? # logic / shift | \?\. # soak access - | \.{3} # splat + | \.{2,3} # range or splat ) /// WHITESPACE = /^[^\n\S]+/ @@ -466,8 +457,6 @@ be used as identifiers or properties.

LINE_CONTINUER = /// ^ \s* (?: , | \??\.(?!\.) | :: ) /// -LEADING_SPACES = /^\s+/ - TRAILING_SPACES = /\s+$/ NO_NEWLINE = /// ^ (?: # non-capturing group diff --git a/documentation/docs/nodes.html b/documentation/docs/nodes.html index f7be2ecb..215192a6 100644 --- a/documentation/docs/nodes.html +++ b/documentation/docs/nodes.html @@ -43,7 +43,7 @@ by assigning it to a temporary variable. Pass a level to precompile.

sub = new Assign ref, this if level then [sub.compile(o, level), ref.value] else [sub, ref]

Compile to a source/variable pair suitable for looping.

  compileLoopReference: (o, name) ->
     src = tmp = @compile o, LEVEL_LIST
-    unless NUMBER.test(src) or IDENTIFIER.test(src) and o.scope.check(src, yes)
+    unless -Infinity < +src < Infinity or IDENTIFIER.test(src) and o.scope.check(src, yes)
       src = "#{ tmp = o.scope.freeVariable name } = #{src}"
     [src, tmp]

Construct a node that returns the current node's result. Note that this is overridden for smarter behavior for @@ -114,9 +114,12 @@ it back out.

< return yes no

An Expressions node does not return its entire body, rather it ensures that the final expression is returned.

  makeReturn: ->
-    for end, idx in @expressions by -1 when end not instanceof Comment
-      @expressions[idx] = end.makeReturn()
-      break
+    len = @expressions.length
+    while len--
+      expr = @expressions[len]
+      if expr not instanceof Comment
+        @expressions[len] = expr.makeReturn()
+        break
     this

An Expressions is the only node that can serve as the root.

  compile: (o = {}, level) ->
     if o.scope then super o, level else @compileRoot o

Compile all expressions within the Expressions body. If we need to return the result, and it's an expression, simply return it. If it's a @@ -209,6 +212,7 @@ or vanilla.

@base = base @properties = props or [] @[tag] = true if tag + return this children: ['base', 'properties']

Add a property access to the list.

  push: (prop) ->
     @properties.push prop
@@ -231,6 +235,9 @@ or vanilla.

return no if @properties.length (@base instanceof Obj) and (not onlyGenerated or @base.generated) + isSplice: -> + last(@properties) instanceof Slice + makeReturn: -> if @properties.length then super() else @base.makeReturn()

The value can be unwrapped as its inner node, if there are no attached properties.

  unwrap: ->
@@ -256,7 +263,7 @@ evaluate anything twice when building the soak chain.

@base.front = @front props = @properties code = @base.compile o, if props.length then LEVEL_ACCESS else null - code = "(#{code})" if props[0] instanceof Accessor and @isSimpleNumber() + code = "(#{code})" if props[0] instanceof Access and @isSimpleNumber() code += prop.compile o for prop in props code

Unfold a soak into an If: a?.b -> a.b if a?

  unfoldSoak: (o) ->
     if ifn = @base.unfoldSoak o
@@ -368,7 +375,7 @@ inner constructor in order to be able to pass the varargs.

After goog.inherits from the Closure Library.

  compile: (o) ->
     utility 'hasProp'
-    new Call(new Value(new Literal utility 'extends'), [@child, @parent]).compile o

Hooks one constructor into another's prototype chain.

Accessor

exports.Accessor = class Accessor extends Base
+    new Call(new Value(new Literal utility 'extends'), [@child, @parent]).compile o

Hooks one constructor into another's prototype chain.

Access

exports.Access = class Access extends Base
   constructor: (@name, tag) ->
     @proto = if tag is 'proto' then '.prototype' else ''
     @soak  = tag is 'soak'
@@ -379,8 +386,8 @@ After goog.inherits from the
     name = @name.compile o
     @proto + if IS_STRING.test name then "[#{name}]" else ".#{name}"
 
-  isComplex: NO

A . accessor into a property of a value, or the :: shorthand for -an accessor into the object's prototype.

Index

exports.Index = class Index extends Base
+  isComplex: NO

A . access into a property of a value, or the :: shorthand for +an access into the object's prototype.

Index

exports.Index = class Index extends Base
   constructor: (@index) ->
 
   children: ['index']
@@ -389,7 +396,74 @@ an accessor into the object's prototype.

(if @proto then '.prototype' else '') + "[#{ @index.compile o, LEVEL_PAREN }]" isComplex: -> - @index.isComplex()

A [ ... ] indexed accessor into an array or object.

Obj

exports.Obj = class Obj extends Base
+    @index.isComplex()

A [ ... ] indexed access into an array or object.

Range

exports.Range = class Range extends Base
+
+  children: ['from', 'to']
+
+  constructor: (@from, @to, tag) ->
+    @exclusive = tag is 'exclusive'
+    @equals = if @exclusive then '' else '='

A range literal. Ranges can be used to extract portions (slices) of arrays, +to specify a range for comprehensions, or as a value, to be expanded into the +corresponding array of integers at runtime.

  compileVariables: (o) ->
+    o = merge(o, top: true)
+    [@from, @fromVar] =  @from.cache o, LEVEL_LIST
+    [@to, @toVar] =      @to.cache o, LEVEL_LIST
+    [@fromNum, @toNum] = [@fromVar.match(SIMPLENUM), @toVar.match(SIMPLENUM)]
+    parts = []
+    parts.push @from if @from isnt @fromVar
+    parts.push @to if @to isnt @toVar

Compiles the range's source variables -- where it starts and where it ends. +But only if they need to be cached to avoid double evaluation.

  compileNode: (o) ->
+    @compileVariables o
+    return    @compileArray(o)  unless o.index
+    return    @compileSimple(o) if @fromNum and @toNum
+    idx      = del o, 'index'
+    step     = del o, 'step'
+    vars     = "#{idx} = #{@from}" + if @to isnt @toVar then ", #{@to}" else ''
+    intro    = "(#{@fromVar} <= #{@toVar} ? #{idx}"
+    compare  = "#{intro} <#{@equals} #{@toVar} : #{idx} >#{@equals} #{@toVar})"
+    stepPart = if step then step.compile(o) else '1'
+    incr     = if step then "#{idx} += #{stepPart}" else "#{intro} += #{stepPart} : #{idx} -= #{stepPart})"
+    "#{vars}; #{compare}; #{incr}"

When compiled normally, the range returns the contents of the for loop +needed to iterate over the values in the range. Used by comprehensions.

  compileSimple: (o) ->
+    [from, to] = [+@fromNum, +@toNum]
+    idx        = del o, 'index'
+    step       = del o, 'step'
+    step       and= "#{idx} += #{step.compile(o)}"
+    if from <= to
+      "#{idx} = #{from}; #{idx} <#{@equals} #{to}; #{step or "#{idx}++"}"
+    else
+      "#{idx} = #{from}; #{idx} >#{@equals} #{to}; #{step or "#{idx}--"}"

Compile a simple range comprehension, with integers.

  compileArray: (o) ->
+    if @fromNum and @toNum and Math.abs(@fromNum - @toNum) <= 20
+      range = [+@fromNum..+@toNum]
+      range.pop() if @exclusive
+      return "[#{ range.join(', ') }]"
+    idt    = @tab + TAB
+    i      = o.scope.freeVariable 'i'
+    result = o.scope.freeVariable 'results'
+    pre    = "\n#{idt}#{result} = [];"
+    if @fromNum and @toNum
+      o.index = i
+      body = @compileSimple o
+    else
+      vars = "#{i} = #{@from}" + if @to isnt @toVar then ", #{@to}" else ''
+      clause = "#{@fromVar} <= #{@toVar} ?"
+      body   = "var #{vars}; #{clause} #{i} <#{@equals} #{@toVar} : #{i} >#{@equals} #{@toVar}; #{clause} #{i} += 1 : #{i} -= 1"
+    post   = "{ #{result}.push(#{i}); }\n#{idt}return #{result};\n#{o.indent}"
+    "(function() {#{pre}\n#{idt}for (#{body})#{post}}).call(this)"

When used as a value, expand the range into the equivalent array.

Slice

exports.Slice = class Slice extends Base
+
+  children: ['range']
+
+  constructor: (@range) ->
+    super()
+
+  compileNode: (o) ->
+    from  =  if @range.from then @range.from.compile(o) else '0'
+    to    =  if @range.to then @range.to.compile(o) else ''
+    to    += if not to or @range.exclusive then '' else ' + 1'
+    to    =  ', ' + to if to
+    ".slice(#{from}#{to})"

An array slice literal. Unlike JavaScript's Array#slice, the second parameter +specifies the index of the end of the slice, just as the first parameter +is the index of the beginning.

Obj

exports.Obj = class Obj extends Base
   constructor: (props, @generated = false) ->
     @objects = @properties = props or []
 
@@ -447,7 +521,7 @@ an accessor into the object's prototype.

assigns: (name) -> for prop in @properties when prop.assigns name then return yes - no

An object literal, nothing fancy.

Arr

exports.Arr = class Arr extends Base
+    no

An object literal, nothing fancy.

Arr

exports.Arr = class Arr extends Base
   constructor: (objs) ->
     @objects = objs or []
 
@@ -465,30 +539,30 @@ an accessor into the object's prototype.

assigns: (name) -> for obj in @objects when obj.assigns name then return yes - no

An array literal.

Class

exports.Class = class Class extends Base
+    no

An array literal.

Class

exports.Class = class Class extends Base
   constructor: (@variable, @parent, @body = new Expressions) ->
     @boundFuncs = []
 
-  children: ['variable', 'parent', 'body']

The CoffeeScript class definition. + children: ['variable', 'parent', 'body']

The CoffeeScript class definition. Initialize a Class with its name, an optional superclass, and a list of prototype property assignments.

  determineName: ->
     return null unless @variable
     decl = if tail = last @variable.properties
-      tail instanceof Accessor and tail.name.value
+      tail instanceof Access and tail.name.value
     else
       @variable.base.value
-    decl and= IDENTIFIER.test(decl) and decl

Figure out the appropriate name for the constructor function of this class.

  setContext: (name) ->
+    decl and= IDENTIFIER.test(decl) and decl

Figure out the appropriate name for the constructor function of this class.

  setContext: (name) ->
     @body.traverseChildren false, (node) ->
       if node instanceof Literal and node.value is 'this'
         node.value    = name
       else if node instanceof Code
         node.klass    = name
-        node.context  = name if node.bound

For all this-references and bound functions in the class definition, + node.context = name if node.bound

For all this-references and bound functions in the class definition, this is the Class being constructed.

  addBoundFunctions: (o) ->
     if @boundFuncs.length
       for bvar in @boundFuncs
         bname = bvar.compile o
-        @ctor.body.unshift new Literal "this.#{bname} = #{utility 'bind'}(this.#{bname}, this);"

Ensure that all functions bound to the instance are proxied in the + @ctor.body.unshift new Literal "this.#{bname} = #{utility 'bind'}(this.#{bname}, this);"

Ensure that all functions bound to the instance are proxied in the constructor.

  addProperties: (node, name) ->
     props = node.base.properties.slice 0
     while assign = props.shift()
@@ -508,24 +582,24 @@ constructor.

< assign = null else unless assign.variable.this - assign.variable = new Value(new Literal(name), [new Accessor(base, 'proto')]) + assign.variable = new Value(new Literal(name), [new Access(base, 'proto')]) if func instanceof Code and func.bound @boundFuncs.push base func.bound = no - assign

Merge the properties from a top-level object as prototypal properties + assign

Merge the properties from a top-level object as prototypal properties on the class.

  walkBody: (name) ->
     @traverseChildren false, (child) =>
       if child instanceof Expressions
         for node, i in exps = child.expressions
           if node instanceof Value and node.isObject(true)
             exps[i] = compact @addProperties node, name
-        child.expressions = exps = compact flatten exps

Walk the body of the class, looking for prototype properties to be converted.

  ensureConstructor: (name) ->
+        child.expressions = exps = compact flatten exps

Walk the body of the class, looking for prototype properties to be converted.

  ensureConstructor: (name) ->
     if not @ctor
       @ctor = new Code
       @ctor.body.push new Call 'super', [new Splat new Literal 'arguments'] if @parent
     @ctor.ctor     = @ctor.name = name
     @ctor.klass    = null
-    @ctor.noReturn = yes

Make sure that a constructor is defined for the class, and properly + @ctor.noReturn = yes

Make sure that a constructor is defined for the class, and properly configured.

  compileNode: (o) ->
     decl  = @determineName()
     name  = decl or @name or '_Class'
@@ -542,10 +616,10 @@ configured.

klass = new Parens new Call(new Code [], @body), true klass = new Assign new Value(lname), klass if decl and @variable?.isComplex() klass = new Assign @variable, klass if @variable - klass.compile o

Instead of generating the JavaScript string directly, we build up the + klass.compile o

Instead of generating the JavaScript string directly, we build up the equivalent syntax tree and compile that, in pieces. You can see the -constructor, property assignments, and inheritance getting built out below.

Assign

exports.Assign = class Assign extends Base
-  constructor: (@variable, @value, @context) ->

The Assign is used to assign a local variable to value, or to set the +constructor, property assignments, and inheritance getting built out below.

Assign

exports.Assign = class Assign extends Base
+  constructor: (@variable, @value, @context) ->

The Assign is used to assign a local variable to value, or to set the property of an object -- including within object literals.

  METHOD_DEF: /^(?:(\S+)\.prototype\.|\S+?)?\b([$A-Za-z_][$\w]*)$/
 
   children: ['variable', 'value']
@@ -554,9 +628,10 @@ property of an object -- including within object literals.

@[if @context is 'object' then 'value' else 'variable'].assigns name unfoldSoak: (o) -> - unfoldSoak o, this, 'variable'

Matchers for detecting class/method names

  compileNode: (o) ->
+    unfoldSoak o, this, 'variable'

Matchers for detecting class/method names

  compileNode: (o) ->
     if isValue = @variable instanceof Value
       return @compilePatternMatch o if @variable.isArray() or @variable.isObject()
+      return @compileSplice       o if @variable.isSplice()
       return @compileConditional  o if @context in ['||=', '&&=', '?=']
     name = @variable.compile o, LEVEL_LIST
     if @value instanceof Code and match = @METHOD_DEF.exec name
@@ -569,7 +644,7 @@ property of an object -- including within object literals.

o.scope.find name unless @context or isValue and (@variable.namespaced or @variable.hasProperties()) val = name + " #{ @context or '=' } " + val - if o.level <= LEVEL_LIST then val else "(#{val})"

Compile an assignment, delegating to compilePatternMatch or + if o.level <= LEVEL_LIST then val else "(#{val})"

Compile an assignment, delegating to compilePatternMatch or compileSplice if appropriate. Keep track of the name of the base object we've been assigned to, for correct internal references. If the variable has not been seen yet within the current scope, declare it.

  compilePatternMatch: (o) ->
@@ -578,7 +653,7 @@ has not been seen yet within the current scope, declare it.

{objects} = @variable.base return value.compile o unless olen = objects.length isObject = @variable.isObject() - if top and olen is 1 and (obj = objects[0]) not instanceof Splat

Brief implementation of recursive pattern matching, when assigning array or + if top and olen is 1 and (obj = objects[0]) not instanceof Splat

Brief implementation of recursive pattern matching, when assigning array or object literals to a value. Peeks at their properties to assign inner names. See the ECMAScript Harmony Wiki for details.

      if obj instanceof Assign
@@ -593,7 +668,7 @@ for details.

< new Literal 0 acc = IDENTIFIER.test idx.unwrap().value or 0 value = new Value value - value.properties.push new (if acc then Accessor else Index) idx + value.properties.push new (if acc then Access else Index) idx return new Assign(obj, value).compile o vvar = value.compile o, LEVEL_LIST assigns = [] @@ -601,10 +676,10 @@ for details.

< if not IDENTIFIER.test(vvar) or @variable.assigns(vvar) assigns.push "#{ ref = o.scope.freeVariable 'ref' } = #{vvar}" vvar = ref - for obj, i in objects

Unroll simplest cases: {v} = x -> v = x.v

      idx = i
+    for obj, i in objects

Unroll simplest cases: {v} = x -> v = x.v

      idx = i
       if isObject
-        if obj instanceof Assign

A regular array pattern-match.

          {variable: {base: idx}, value: obj} = obj
-        else

A regular object pattern-match.

          if obj.base instanceof Parens
+        if obj instanceof Assign

A regular array pattern-match.

          {variable: {base: idx}, value: obj} = obj
+        else

A regular object pattern-match.

          if obj.base instanceof Parens
             [obj, idx] = new Value(obj.unwrapAll()).cacheReference o
           else
             idx = if obj.this then obj.properties[0].name else obj
@@ -627,15 +702,24 @@ for details.

< acc = no else acc = isObject and IDENTIFIER.test idx.unwrap().value or 0 - val = new Value new Literal(vvar), [new (if acc then Accessor else Index) idx] + val = new Value new Literal(vvar), [new (if acc then Access else Index) idx] assigns.push new Assign(obj, val).compile o, LEVEL_TOP assigns.push vvar unless top code = assigns.join ', ' - if o.level < LEVEL_LIST then code else "(#{code})"

A shorthand {a, b, @c} = val pattern-match.

  compileConditional: (o) ->
+    if o.level < LEVEL_LIST then code else "(#{code})"

A shorthand {a, b, @c} = val pattern-match.

  compileConditional: (o) ->
     [left, rite] = @variable.cacheReference o
-    new Op(@context.slice(0, -1), left, new Assign(rite, @value, '=')).compile o

When compiling a conditional assignment, take care to ensure that the + new Op(@context.slice(0, -1), left, new Assign(rite, @value, '=')).compile o

When compiling a conditional assignment, take care to ensure that the operands are only evaluated once, even though we have to reference them -more than once.

Code

exports.Code = class Code extends Base
+more than once.

  compileSplice: (o) ->
+    {range} = @variable.properties.pop()
+    name  = @variable.compile o
+    plus  = if range.exclusive then '' else ' + 1'
+    from  = if range.from then range.from.compile(o) else '0'
+    to    = if range.to then range.to.compile(o) + ' - ' + from + plus else "#{name}.length"
+    ref   = o.scope.freeVariable 'ref'
+    val   = @value.compile(o)
+    "([].splice.apply(#{name}, [#{from}, #{to}].concat(#{ref} = #{val})), #{ref})"

Compile the assignment from an array splice literal, using JavaScript's +Array#splice method.

Code

exports.Code = class Code extends Base
   constructor: (params, body, tag) ->
     @params  = params or []
     @body    = body or new Expressions
@@ -644,7 +728,7 @@ more than once.

children: ['params', 'body'] - isStatement: -> !!@ctor

A function definition. This is the only node that creates a new Scope. + isStatement: -> !!@ctor

A function definition. This is the only node that creates a new Scope. When for the purposes of walking the contents of a function body, the Code has no children -- they're within the inner scope.

  compileNode: (o) ->
     sharedScope = del o, 'sharedScope'
@@ -684,13 +768,13 @@ has no children -- they're within the inner scope.

code += '}' return @tab + code if @ctor return utility('bind') + "(#{code}, #{@context})" if @bound - if @front then "(#{code})" else code

Compilation creates a new scope unless explicitly asked to share with the + if @front then "(#{code})" else code

Compilation creates a new scope unless explicitly asked to share with the outer scope. Handles splat parameters in the parameter list by peeking at the JavaScript arguments objects. If the function is bound with the => arrow, generates a wrapper that saves the current value of this through a closure.

  traverseChildren: (crossScope, func) ->
-    super(crossScope, func) if crossScope

Short-circuit traverseChildren method to prevent it from crossing scope boundaries -unless crossScope is true.

Param

exports.Param = class Param extends Base
+    super(crossScope, func) if crossScope

Short-circuit traverseChildren method to prevent it from crossing scope boundaries +unless crossScope is true.

Param

exports.Param = class Param extends Base
   constructor: (@name, @value, @splat) ->
 
   children: ['name', 'value']
@@ -700,15 +784,20 @@ unless crossScope is true.

asReference: (o) -> return @reference if @reference - node = if @isComplex() then new Literal o.scope.freeVariable 'arg' else @name + node = @name + if node.this + node = node.properties[0].name + node = new Literal '_' + node.value if node.value.reserved + else if node.isComplex() + node = new Literal o.scope.freeVariable 'arg' node = new Value node node = new Splat node if @splat @reference = node isComplex: -> - @name.isComplex()

A parameter in a function definition. Beyond a typical Javascript parameter, + @name.isComplex()

A parameter in a function definition. Beyond a typical Javascript parameter, these parameters can also attach themselves to the context of the function, -as well as be a splat, gathering up a group of parameters into an array.

Splat

exports.Splat = class Splat extends Base
+as well as be a splat, gathering up a group of parameters into an array.

Splat

exports.Splat = class Splat extends Base
 
   children: ['name']
 
@@ -721,7 +810,7 @@ as well as be a splat, gathering up a group of parameters into an array.

@name.assigns name compile: (o) -> - if @index? then @compileParam o else @name.compile o

A splat, either as a parameter to a function, an argument to a call, + if @index? then @compileParam o else @name.compile o

A splat, either as a parameter to a function, an argument to a call, or as part of a destructuring assignment.

  @compileSplattedArray: (o, list, apply) ->
     index = -1
     continue while (node = list[++index]) and node not instanceof Splat
@@ -738,8 +827,8 @@ or as part of a destructuring assignment.

else "[#{code}]" return args[0] + ".concat(#{ args.slice(1).join ', ' })" if index is 0 base = (node.compile o, LEVEL_LIST for node in list.slice 0, index) - "[#{ base.join ', ' }].concat(#{ args.join ', ' })"

Utility function that converts arbitrary number of elements, mixed with -splats, to a proper array.

While

exports.While = class While extends Base
+    "[#{ base.join ', ' }].concat(#{ args.join ', ' })"

Utility function that converts arbitrary number of elements, mixed with +splats, to a proper array.

While

exports.While = class While extends Base
   constructor: (condition, options) ->
     @condition = if options?.invert then condition.invert() else condition
     @guard     = options?.guard
@@ -761,7 +850,7 @@ splats, to a proper array.

return true if expressions[--i]?.containsPureStatement() ret = (node) -> node instanceof Return return true while i-- when expressions[i].contains ret - false

A while loop, the only sort of low-level loop exposed by CoffeeScript. From + false

A while loop, the only sort of low-level loop exposed by CoffeeScript. From it, all other loops can be manufactured. Useful in cases where you need more flexibility or more speed than a comprehension can provide.

  compileNode: (o) ->
     o.indent += TAB
@@ -780,9 +869,9 @@ flexibility or more speed than a comprehension can provide.

if @returns o.indent = @tab code += '\n' + new Return(new Literal rvar).compile o - code

The main difference from a JavaScript while is that the CoffeeScript + code

The main difference from a JavaScript while is that the CoffeeScript while can be used as a part of a larger expression -- while loops may -return an array containing the computed result of each iteration.

Op

exports.Op = class Op extends Base
+return an array containing the computed result of each iteration.

Op

exports.Op = class Op extends Base
   constructor: (op, first, second, flip) ->
     return new In first, second if op is 'in'
     if op is 'new'
@@ -791,11 +880,12 @@ return an array containing the computed result of each iteration.

@operator = CONVERSIONS[op] or op @first = first @second = second - @flip = !!flip

Simple Arithmetic and logical operations. Performs some conversion from + @flip = !!flip + return this

Simple Arithmetic and logical operations. Performs some conversion from CoffeeScript operations into their JavaScript equivalents.

  CONVERSIONS =
     '==': '==='
     '!=': '!=='
-    'of': 'in'

The map of conversions from CoffeeScript to JavaScript symbols.

  INVERSIONS =
+    'of': 'in'

The map of conversions from CoffeeScript to JavaScript symbols.

  INVERSIONS =
     '!==': '==='
     '===': '!=='
     '>':   '<='
@@ -806,7 +896,7 @@ CoffeeScript operations into their JavaScript equivalents.

children: ['first', 'second'] isUnary: -> - not @second

The map of invertible operators.

  isChainable: ->
+    not @second

The map of invertible operators.

  isChainable: ->
     @operator in ['<', '>', '>=', '<=', '===', '!==']
 
   invert: ->
@@ -831,7 +921,7 @@ CoffeeScript operations into their JavaScript equivalents.

@first.front = @front code = @first.compile(o, LEVEL_OP) + ' ' + @operator + ' ' + @second.compile(o, LEVEL_OP) - if o.level <= LEVEL_OP then code else "(#{code})"

Am I capable of + if o.level <= LEVEL_OP then code else "(#{code})"

Am I capable of Python-style comparison chaining?

  compileChain: (o) ->
     [@first.second, shared] = @first.second.cache o
     fst  = @first .compile o, LEVEL_OP
@@ -846,7 +936,7 @@ CoffeeScript operations into their JavaScript equivalents.

else fst = @first ref = fst.compile o - new Existence(fst).compile(o) + " ? #{ref} : #{ @second.compile o, LEVEL_LIST }"

Mimic Python's chained comparisons when multiple comparison operators are + new Existence(fst).compile(o) + " ? #{ref} : #{ @second.compile o, LEVEL_LIST }"

Mimic Python's chained comparisons when multiple comparison operators are used sequentially. For example:

bin/coffee -e 'console.log 50 < 65 > 10'
@@ -860,7 +950,7 @@ true
     parts.join ''
 
   toString: (idt) ->
-    super idt, @constructor.name + ' ' + @operator

Compile a unary Op.

exports.In = class In extends Base
+    super idt, @constructor.name + ' ' + @operator

Compile a unary Op.

exports.In = class In extends Base
   constructor: (@object, @array) ->
 
   children: ['object', 'array']
@@ -890,7 +980,7 @@ true
     if o.level < LEVEL_LIST then code else "(#{code})"
 
   toString: (idt) ->
-    super idt, @constructor.name + if @negated then '!' else ''

In

Try

exports.Try = class Try extends Base
+    super idt, @constructor.name + if @negated then '!' else ''

In

Try

exports.Try = class Try extends Base
   constructor: (@attempt, @error, @recovery, @ensure) ->
 
   children: ['attempt', 'recovery', 'ensure']
@@ -900,7 +990,7 @@ true
   makeReturn: ->
     @attempt  = @attempt .makeReturn() if @attempt
     @recovery = @recovery.makeReturn() if @recovery
-    this

A classic try/catch/finally block.

  compileNode: (o) ->
+    this

A classic try/catch/finally block.

  compileNode: (o) ->
     o.indent  += TAB
     errorPart = if @error then " (#{ @error.compile o }) " else ' '
     catchPart = if @recovery
@@ -910,18 +1000,18 @@ true
     """
 
 #DIVIDER
-    """ + if @ensure then " finally {\n#{ @ensure.compile o, LEVEL_TOP }\n#{@tab}}" else ''

Compilation is more or less as you would expect -- the finally clause -is optional, the catch is not.

{@tab}try { + """ + if @ensure then " finally {\n#{ @ensure.compile o, LEVEL_TOP }\n#{@tab}}" else ''

Compilation is more or less as you would expect -- the finally clause +is optional, the catch is not.

{@tab}try { { @attempt.compile o, LEVEL_TOP } {@tab}}#{ catchPart or '' }

exports.Throw = class Throw extends Base
   constructor: (@expression) ->
 
   children: ['expression']
 
-  isStatement: YES

Throw

  makeReturn: THIS
+  isStatement: YES

Throw

  makeReturn: THIS
 
   compileNode: (o) ->
-    @tab + "throw #{ @expression.compile o };"

Simple node to throw an exception.

A Throw is already a return, of sorts...

exports.Existence = class Existence extends Base
+    @tab + "throw #{ @expression.compile o };"

Simple node to throw an exception.

A Throw is already a return, of sorts...

exports.Existence = class Existence extends Base
   constructor: (@expression) ->
 
   children: ['expression']
@@ -938,38 +1028,42 @@ is optional, the catch is not.

else sym = if @negated then '==' else '!=' "#{code} #{sym} null" - if o.level <= LEVEL_COND then code else "(#{code})"

Existence

Checks a variable for existence -- not null and not undefined. This is + if o.level <= LEVEL_COND then code else "(#{code})"

Existence

Checks a variable for existence -- not null and not undefined. This is similar to .nil? in Ruby, and avoids having to consult a JavaScript truth table.

exports.Parens = class Parens extends Base
-  constructor: (@expression) ->
+  constructor: (@body) ->
 
-  children: ['expression']
+  children: ['body']
 
-  unwrap    : -> @expression
-  isComplex : -> @expression.isComplex()
-  makeReturn: -> @expression.makeReturn()
+  unwrap    : -> @body
+  isComplex : -> @body.isComplex()
+  makeReturn: -> @body.makeReturn()
 
   compileNode: (o) ->
-    expr = @expression
+    expr = @body.unwrap()
     if expr instanceof Value and expr.isAtomic()
       expr.front = @front
       return expr.compile o
     bare = o.level < LEVEL_OP and (expr instanceof Op or expr instanceof Call)
     code = expr.compile o, LEVEL_PAREN
-    if bare then code else "(#{code})"

Parens

An extra set of parentheses, specified explicitly in the source. At one time + if bare then code else "(#{code})"

Parens

An extra set of parentheses, specified explicitly in the source. At one time we tried to clean up the results by detecting and removing redundant parentheses, but no longer -- you can put in as many as you please.

Parentheses are a good way to force any statement to become an expression.

exports.For = class For extends Base
-  constructor: (body, head) ->
-    if head.index instanceof Value
-      throw SyntaxError 'index cannot be a pattern matching expression'
-    extend this, head
+  constructor: (body, source, @name, @index) ->
+    {@source, @guard, @step} = source
     @body    = Expressions.wrap [body]
+    @raw     = !!source.raw
+    @object  = !!source.object
+    [@name, @index] = [@index, @name] if @object
+    throw SyntaxError 'index cannot be a pattern matching expression' if @index instanceof Value
+    @range   = @source instanceof Value and @source.base instanceof Range and not @source.properties.length
     @pattern = @name instanceof Value
+    throw SyntaxError 'cannot pattern match a range loop' if @range and @pattern
     @returns = false
 
-  children: ['body', 'source', 'guard', 'step', 'from', 'to']
+  children: ['body', 'source', 'guard', 'step']
 
   isStatement: YES
 
@@ -977,87 +1071,58 @@ parentheses, but no longer -- you can put in as many as you please.

@returns = yes this - containsPureStatement: While::containsPureStatement - - compileReturnValue: (val, o) -> - return '\n' + new Return(new Literal val).compile o if @returns - return '\n' + val if val - ''

For

  compileNode: (o) ->
-    {scope} = o
-    {body}  = this
-    hasCode = @body.contains (node) -> node instanceof Code
-    name    = not @pattern and @name?.compile o
-    index   = @index?.compile o
-    ivar    = if not index then scope.freeVariable 'i' else index
-    varPart = guardPart = defPart = retPart = ''
-    idt     = o.indent + TAB
+  containsPureStatement: While::containsPureStatement

For

  compileNode: (o) ->
+    body          = Expressions.wrap [@body]
+    hasCode       = body.contains (node) -> node instanceof Code
+    hasPure       = last(body.expressions)?.containsPureStatement()
+    source        = if @range then @source.base else @source
+    scope         = o.scope
+    name          = @name  and @name.compile o, LEVEL_LIST
+    index         = @index and @index.compile o, LEVEL_LIST
     unless hasCode
-      scope.find(name,  yes) if name
-      scope.find(index, yes) if index
-    [step, pvar] = @step.compileLoopReference o, 'step' if @step
-    if @from
-      [head, fvar] = @from.compileLoopReference o, 'from'
-      [tail, tvar] = @to.compileLoopReference o, 'to'
-      vars = ivar + ' = ' + head
-      vars += ', ' + tail if tail isnt tvar
-      if SIMPLENUM.test(head) and SIMPLENUM.test(tail)
-        if +head <= +tail
-          cond = "#{ivar} <= #{tail}"
-        else
-          pvar or= -1
-          cond = "#{ivar} >= #{tail}"
-      else
-        if +pvar
-          cond = "#{ivar} #{ if pvar < 0 then '>' else '<' }= #{tvar}"
-        else
-          intro = "#{fvar} <= #{tvar} ? #{ivar}"
-          cond = "#{intro} <= #{tvar} : #{ivar} >= #{tvar}"
-          incr = if pvar then "#{ivar} += #{pvar}" else "#{intro}++ : #{ivar}--"
+      scope.find(name,  immediate: yes) if name and not @pattern
+      scope.find(index, immediate: yes) if index
+    rvar          = scope.freeVariable 'results' if @returns and not hasPure
+    ivar          = (if @range then name else index) or scope.freeVariable 'i'
+    varPart       = ''
+    guardPart     = ''
+    defPart       = ''
+    idt1          = @tab + TAB
+    if @range
+      forPart = source.compile merge(o, {index: ivar, @step})
     else
-      if name or @object and not @raw
-        [sourcePart, svar] = @source.compileLoopReference o, 'ref'
-      else
-        sourcePart = svar = @source.compile o, LEVEL_PAREN
+      svar = @source.compile o, LEVEL_TOP
+      if (name or not @raw) and
+         not (IDENTIFIER.test(svar) and scope.check svar, immediate: on)
+        defPart = "#{@tab}#{ref = scope.freeVariable 'ref'} = #{svar};\n"
+        svar = ref
       namePart = if @pattern
         new Assign(@name, new Literal "#{svar}[#{ivar}]").compile o, LEVEL_TOP
       else if name
         "#{name} = #{svar}[#{ivar}]"
       unless @object
-        if 0 > pvar and (pvar | 0) is +pvar  # negative int
-          vars = "#{ivar} = #{svar}.length - 1"
-          cond = "#{ivar} >= 0"
-        else
-          lvar = scope.freeVariable 'len'
-          vars = "#{ivar} = 0, #{lvar} = #{svar}.length"
-          cond = "#{ivar} < #{lvar}"
+        lvar        = scope.freeVariable 'len'
+        stepPart    = if @step then "#{ivar} += #{ @step.compile(o, LEVEL_OP) }" else "#{ivar}++"
+        forPart     = "#{ivar} = 0, #{lvar} = #{svar}.length; #{ivar} < #{lvar}; #{stepPart}"
+    if @returns and not hasPure
+      resultPart    = "#{@tab}#{rvar} = [];\n"
+      returnResult  = '\n' + (new Return(new Literal(rvar)).compile o, LEVEL_PAREN)
+      body          = Push.wrap rvar, body
+    if @guard
+      body          = Expressions.wrap [new If @guard, body]
+    if hasCode
+      body          = Closure.wrap(body, yes)
+    varPart         = "\n#{idt1}#{namePart};" if namePart
     if @object
-      forPart   = ivar + ' in ' + sourcePart
-      guardPart = if @raw then '' else
-        idt + "if (!#{ utility 'hasProp' }.call(#{svar}, #{ivar})) continue;\n"
-    else
-      pvar  or= 1
-      vars   += ', ' + step if step and (step isnt pvar)
-      defPart = @tab + sourcePart + ';\n' if svar isnt sourcePart
-      forPart = vars + "; #{cond}; " + (incr or (ivar + switch +pvar
-        when  1 then '++'
-        when -1 then '--'
-        else (if pvar < 0 then ' -= ' + pvar.slice 1 else ' += ' + pvar)
-      ))
-    body    = Closure.wrap(body, yes) if hasCode
-    varPart = idt + namePart + ';\n' if namePart
-    defPart += @pluckDirectCall o, body, name, index unless @pattern
-    code = guardPart + varPart
-    unless body.isEmpty()
-      if o.level > LEVEL_TOP or @returns
-        rvar     = scope.freeVariable 'results'
-        defPart += @tab + rvar + ' = [];\n'
-        retPart  = @compileReturnValue rvar, o
-        body     = Push.wrap rvar, body
-      body     = Expressions.wrap [new If @guard, body] if @guard
-      o.indent = idt
-      code    += body.compile o, LEVEL_TOP
-    code = '\n' + code + '\n' + @tab if code
-    defPart + @tab + "for (#{forPart}) {#{code}}" + retPart
+      forPart       = "#{ivar} in #{svar}"
+      guardPart     = "\n#{idt1}if (!#{utility('hasProp')}.call(#{svar}, #{ivar})) continue;" unless @raw
+    defPart         += @pluckDirectCall o, body, name, index unless @pattern
+    body            = body.compile merge(o, indent: idt1), LEVEL_TOP
+    body            = '\n' + body + '\n' if body
+    """
+
+#DIVIDER
+    """
 
   pluckDirectCall: (o, body, name, index) ->
     defs = ''
@@ -1082,13 +1147,13 @@ parentheses, but no longer -- you can put in as many as you please.

args.unshift new Literal 'this' body.expressions[idx] = new Call base, args defs += @tab + new Assign(ref, fn).compile(o, LEVEL_TOP) + ';\n' - defs

CoffeeScript's replacement for the for loop is our array and object + defs

CoffeeScript's replacement for the for loop is our array and object comprehensions, that compile into for loops here. They also act as an expression, able to return the result of each filtered iteration.

Unlike Python array comprehensions, they can be multi-line, and you can pass the current index of the loop as a second parameter. Unlike Ruby blocks, -you can map and filter in a single pass.

Welcome to the hairiest method in all of CoffeeScript. Handles the inner +you can map and filter in a single pass.

Welcome to the hairiest method in all of CoffeeScript. Handles the inner loop, filtering, stepping, and result saving for array, object, and range comprehensions. Some of the generated code can be shared in common, and some cannot.

exports.Switch = class Switch extends Base
@@ -1117,7 +1182,7 @@ some cannot.

< code += idt2 + 'break;\n' unless expr instanceof Return break code += idt1 + "default:\n#{ @otherwise.compile o, LEVEL_TOP }\n" if @otherwise - code + @tab + '}'

Switch

A JavaScript switch statement. Converts into a returnable expression on-demand.

exports.If = class If extends Base
+    code +  @tab + '}'

{defPart}#{resultPart or ''}#{@tab}for (#{forPart}) {#{guardPart}#{varPart}#{body}#{@tab}}#{returnResult or ''}

Switch

exports.If = class If extends Base
   constructor: (condition, @body, options = {}) ->
     @condition = if options.invert then condition.invert() else condition
     @elseBody  = null
@@ -1127,17 +1192,13 @@ some cannot.

< children: ['condition', 'body', 'elseBody'] bodyNode: -> @body?.unwrap() - elseBodyNode: -> @elseBody?.unwrap()

If

  addElse: (elseBody) ->
+  elseBodyNode: -> @elseBody?.unwrap()

A JavaScript switch statement. Converts into a returnable expression on-demand.

  addElse: (elseBody) ->
     if @isChain
       @elseBodyNode().addElse elseBody
     else
       @isChain  = elseBody instanceof If
       @elseBody = @ensureExpressions elseBody
-    this

If/else statements. Acts as an expression by pushing down requested returns -to the last line of each clause.

- -

Single-expression Ifs are compiled into conditional operators if possible, -because ternaries are already proper expressions, and don't need conversion.

  isStatement: (o) ->
+    this

If

  isStatement: (o) ->
     o?.level is LEVEL_TOP or
       @bodyNode().isStatement(o) or @elseBodyNode()?.isStatement(o)
 
@@ -1150,7 +1211,11 @@ because ternaries are already proper expressions, and don't need conversion.

this ensureExpressions: (node) -> - if node instanceof Expressions then node else new Expressions [node]

Rewrite a chain of Ifs to add a default case as the final else.

  compileStatement: (o) ->
+    if node instanceof Expressions then node else new Expressions [node]

If/else statements. Acts as an expression by pushing down requested returns +to the last line of each clause.

+ +

Single-expression Ifs are compiled into conditional operators if possible, +because ternaries are already proper expressions, and don't need conversion.

  compileStatement: (o) ->
     child    = del o, 'chainChild'
     cond     = @condition.compile o, LEVEL_PAREN
     o.indent += TAB
@@ -1164,8 +1229,7 @@ because ternaries are already proper expressions, and don't need conversion.

o.chainChild = yes @elseBody.unwrap().compile o, LEVEL_TOP else - "{\n#{ @elseBody.compile o, LEVEL_TOP }\n#{@tab}}"

The If only compiles into a statement if either of its bodies needs -to be a statement. Otherwise a conditional operator is safe.

  compileExpression: (o) ->
+      "{\n#{ @elseBody.compile o, LEVEL_TOP }\n#{@tab}}"

Rewrite a chain of Ifs to add a default case as the final else.

  compileExpression: (o) ->
     cond = @condition.compile o, LEVEL_COND
     body = @bodyNode().compile o, LEVEL_LIST
     alt  = if @elseBodyNode() then @elseBodyNode().compile(o, LEVEL_LIST) else 'void 0'
@@ -1173,16 +1237,16 @@ to be a statement. Otherwise a conditional operator is safe.

if o.level >= LEVEL_COND then "(#{code})" else code unfoldSoak: -> - @soak and this

Compile the If as a regular if-else statement. Flattened chains -force inner else bodies into statement form.

Compile the If as a conditional operator.

Faux-Nodes

- -

Faux-nodes are never created by the grammar, but are used during code -generation to generate other combinations of nodes.

Push =
+    @soak and this

The If only compiles into a statement if either of its bodies needs +to be a statement. Otherwise a conditional operator is safe.

Compile the If as a regular if-else statement. Flattened chains +force inner else bodies into statement form.

Compile the If as a conditional operator.

Push =
   wrap: (name, exps) ->
     return exps if exps.isEmpty() or last(exps.expressions).containsPureStatement()
-    exps.push new Call \
-      new Value(new Literal(name), [new Accessor new Literal 'push']), [exps.pop()]

Push

The Push creates the tree for array.push(value), -which is helpful for recording the result arrays from comprehensions.

Closure =

Closure

  wrap: (expressions, statement, noReturn) ->
+    exps.push new Call new Value(new Literal(name), [new Access new Literal 'push']), [exps.pop()]

Faux-Nodes

+ +

Faux-nodes are never created by the grammar, but are used during code +generation to generate other combinations of nodes.

Push

Closure =

The Push creates the tree for array.push(value), +which is helpful for recording the result arrays from comprehensions.

  wrap: (expressions, statement, noReturn) ->
     return expressions if expressions.containsPureStatement()
     func = new Parens new Code [], Expressions.wrap [expressions]
     args = []
@@ -1191,51 +1255,50 @@ which is helpful for recording the result arrays from comprehensions.

meth = new Literal if mentionsArgs then 'apply' else 'call' args = [new Literal 'this'] args.push new Literal 'arguments' if mentionsArgs - func = new Value func, [new Accessor meth] + func = new Value func, [new Access meth] func.noReturn = noReturn call = new Call func, args if statement then Expressions.wrap [call] else call literalArgs: (node) -> node instanceof Literal and node.value is 'arguments' literalThis: (node) -> node instanceof Literal and node.value is 'this' or - node instanceof Code and node.bound

A faux-node used to wrap an expressions body in a closure.

unfoldSoak = (o, parent, name) ->
+                         node instanceof Code    and node.bound

Closure

unfoldSoak = (o, parent, name) ->
   return unless ifn = parent[name].unfoldSoak o
   parent[name] = ifn.body
   ifn.body = new Value parent
-  ifn

Wrap the expressions body, unless it contains a pure statement, + ifn

A faux-node used to wrap an expressions body in a closure.

UTILITIES =

Wrap the expressions body, unless it contains a pure statement, in which case, no dice. If the body mentions this or arguments, -then make sure that the closure wrapper preserves the original values.

UTILITIES =

Unfold a node's child if soak, then tuck the node under created If

  extends: '''
+then make sure that the closure wrapper preserves the original values.

  extends: '''
     function(child, parent) {
+      for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; }
       function ctor() { this.constructor = child; }
       ctor.prototype = parent.prototype;
       child.prototype = new ctor;
-      for (var key in parent) if (__hasProp.call(parent, key)) child[key] = parent[key];
       child.__super__ = parent.prototype;
       return child;
     }
-  '''

Constants

  bind: '''
+  '''

Unfold a node's child if soak, then tuck the node under created If

  bind: '''
     function(fn, me){ return function(){ return fn.apply(me, arguments); }; }
-  '''

Correctly set up a prototype chain for inheritance, including a reference -to the superclass for super() calls, and copies of any static properties.

  indexOf: '''
+  '''

Constants

  indexOf: '''
     Array.prototype.indexOf || function(item) {
       for (var i = 0, l = this.length; i < l; i++) {
         if (this[i] === item) return i;
       }
       return -1;
     }
-  '''

Create a function bound to the current value of "this".

  hasProp: 'Object.prototype.hasOwnProperty'
-  slice  : 'Array.prototype.slice'

Discover if an item is in an array.

LEVEL_TOP    = 1  # ...;
+  '''

Correctly set up a prototype chain for inheritance, including a reference +to the superclass for super() calls, and copies of any static properties.

  hasProp: 'Object.prototype.hasOwnProperty'
+  slice  : 'Array.prototype.slice'

Create a function bound to the current value of "this".

LEVEL_TOP    = 1  # ...;
 LEVEL_PAREN  = 2  # (...)
 LEVEL_LIST   = 3  # [...]
 LEVEL_COND   = 4  # ... ? x : y
 LEVEL_OP     = 5  # !...
-LEVEL_ACCESS = 6  # ...[0]

Shortcuts to speed up the lookup time for native functions.

TAB = '  '

Levels indicates a node's position in the AST. Useful for knowing if -parens are necessary or superfluous.

TRAILING_WHITESPACE = /[ \t]+$/gm
+LEVEL_ACCESS = 6  # ...[0]

Discover if an item is in an array.

TAB = '  '

Shortcuts to speed up the lookup time for native functions.

TRAILING_WHITESPACE = /[ \t]+$/gm
 
 IDENTIFIER = /^[$A-Za-z_][$\w]*$/
-NUMBER     = /// ^ -? (?: 0x[\da-f]+ | (?:\d+(\.\d+)?|\.\d+)(?:e[+-]?\d+)? ) $ ///i
-SIMPLENUM  = /^[+-]?\d+$/

Tabs are two spaces for pretty printing.

IS_STRING = /^['"]/

Trim out all trailing whitespace, so that the generated code plays nice -with Git.

Is a literal value a string?

utility = (name) ->
+SIMPLENUM  = /^[+-]?\d+$/

Levels indicates a node's position in the AST. Useful for knowing if +parens are necessary or superfluous.

IS_STRING = /^['"]/

Tabs are two spaces for pretty printing.

Trim out all trailing whitespace, so that the generated code plays nice +with Git.

utility = (name) ->
   ref = "__#{name}"
   Scope.root.assign ref, UTILITIES[name]
   ref
@@ -1243,4 +1306,4 @@ with Git.

multident = (code, tab) -> code.replace /\n/g, '$&' + tab -

Utility Functions

undefined

Helper for ensuring that utility functions are assigned at the top level.

undefined
\ No newline at end of file +

Is a literal value a string?

undefined

Utility Functions

undefined

Helper for ensuring that utility functions are assigned at the top level.

undefined
\ No newline at end of file diff --git a/documentation/docs/underscore.html b/documentation/docs/underscore.html index d8127114..c3a4a4d4 100644 --- a/documentation/docs/underscore.html +++ b/documentation/docs/underscore.html @@ -1,296 +1,296 @@ - underscore.coffee

underscore.coffee

#
#

Underscore.coffee + underscore.coffee

underscore.coffee

Underscore.coffee (c) 2010 Jeremy Ashkenas, DocumentCloud Inc. Underscore is freely distributable under the terms of the MIT license. Portions of Underscore are inspired by or borrowed from Prototype.js, Oliver Steele's Functional, and John Resig's -Micro-Templating. +Micro-Templating. For all details and documentation: -http://documentcloud.github.com/underscore/

#

Baseline setup

#

Establish the root object, window in the browser, or global on the server.

  root = this
#

Save the previous value of the _ variable.

  previousUnderscore = root._
#

Establish the object that gets thrown to break out of a loop iteration. -StopIteration is SOP on Mozilla.

  breaker = if typeof(StopIteration) is 'undefined' then '__break__' else StopIteration
#

Helper function to escape RegExp contents, because JS doesn't have one.

  escapeRegExp = (string) -> string.replace(/([.*+?^${}()|[\]\/\\])/g, '\\$1')
#

Save bytes in the minified (but not gzipped) version:

  ArrayProto           = Array.prototype
-  ObjProto             = Object.prototype
#

Create quick reference variables for speed access to core prototypes.

  slice                = ArrayProto.slice
-  unshift              = ArrayProto.unshift
-  toString             = ObjProto.toString
-  hasOwnProperty       = ObjProto.hasOwnProperty
-  propertyIsEnumerable = ObjProto.propertyIsEnumerable
#

All ECMA5 native implementations we hope to use are declared here.

  nativeForEach        = ArrayProto.forEach
-  nativeMap            = ArrayProto.map
-  nativeReduce         = ArrayProto.reduce
-  nativeReduceRight    = ArrayProto.reduceRight
-  nativeFilter         = ArrayProto.filter
-  nativeEvery          = ArrayProto.every
-  nativeSome           = ArrayProto.some
-  nativeIndexOf        = ArrayProto.indexOf
-  nativeLastIndexOf    = ArrayProto.lastIndexOf
-  nativeIsArray        = Array.isArray
-  nativeKeys           = Object.keys
#

Create a safe reference to the Underscore object for use below.

  _ = (obj) -> new wrapper(obj)
#

Export the Underscore object for CommonJS.

  if typeof(exports) != 'undefined' then exports._ = _
#

Export Underscore to global scope.

  root._ = _
#

Current version.

  _.VERSION = '1.1.0'
#

Collection Functions

#

The cornerstone, an each implementation. -Handles objects implementing forEach, arrays, and raw objects.

  _.each = (obj, iterator, context) ->
-    try
-      if nativeForEach and obj.forEach is nativeForEach
-        obj.forEach iterator, context
-      else if _.isNumber obj.length
-        iterator.call(context, obj[i], i, obj) for i in [0...obj.length]
-      else
-        iterator.call(context, val, key, obj) for key, val of obj
-    catch e
-      throw e if e isnt breaker
-    obj
#

Return the results of applying the iterator to each element. Use JavaScript -1.6's version of map, if possible.

  _.map = (obj, iterator, context) ->
-    return obj.map(iterator, context) if nativeMap and obj.map is nativeMap
-    results = []
-    _.each obj, (value, index, list) ->
-      results.push iterator.call context, value, index, list
-    results
#

Reduce builds up a single result from a list of values. Also known as -inject, or foldl. Uses JavaScript 1.8's version of reduce, if possible.

  _.reduce = (obj, iterator, memo, context) ->
-    if nativeReduce and obj.reduce is nativeReduce
-      iterator = _.bind iterator, context if context
-      return obj.reduce iterator, memo
-    _.each obj, (value, index, list) ->
-      memo = iterator.call context, memo, value, index, list
-    memo
#

The right-associative version of reduce, also known as foldr. Uses -JavaScript 1.8's version of reduceRight, if available.

  _.reduceRight = (obj, iterator, memo, context) ->
-    if nativeReduceRight and obj.reduceRight is nativeReduceRight
-      iterator = _.bind iterator, context if context
-      return obj.reduceRight iterator, memo
-    reversed = _.clone(_.toArray(obj)).reverse()
-    _.reduce reversed, iterator, memo, context
#

Return the first value which passes a truth test.

  _.detect = (obj, iterator, context) ->
-    result = null
-    _.each obj, (value, index, list) ->
-      if iterator.call context, value, index, list
-        result = value
-        _.breakLoop()
-    result
#

Return all the elements that pass a truth test. Use JavaScript 1.6's -filter, if it exists.

  _.filter = (obj, iterator, context) ->
-    return obj.filter iterator, context if nativeFilter and obj.filter is nativeFilter
-    results = []
-    _.each obj, (value, index, list) ->
-      results.push value if iterator.call context, value, index, list
-    results
#

Return all the elements for which a truth test fails.

  _.reject = (obj, iterator, context) ->
-    results = []
-    _.each obj, (value, index, list) ->
-      results.push value if not iterator.call context, value, index, list
-    results
#

Determine whether all of the elements match a truth test. Delegate to -JavaScript 1.6's every, if it is present.

  _.every = (obj, iterator, context) ->
-    iterator ||= _.identity
-    return obj.every iterator, context if nativeEvery and obj.every is nativeEvery
-    result = true
-    _.each obj, (value, index, list) ->
-      _.breakLoop() unless (result = result and iterator.call(context, value, index, list))
-    result
#

Determine if at least one element in the object matches a truth test. Use -JavaScript 1.6's some, if it exists.

  _.some = (obj, iterator, context) ->
-    iterator ||= _.identity
-    return obj.some iterator, context if nativeSome and obj.some is nativeSome
-    result = false
-    _.each obj, (value, index, list) ->
-      _.breakLoop() if (result = iterator.call(context, value, index, list))
-    result
#

Determine if a given value is included in the array or object, -based on ===.

  _.include = (obj, target) ->
-    return _.indexOf(obj, target) isnt -1 if nativeIndexOf and obj.indexOf is nativeIndexOf
-    for key, val of obj
-      return true if val is target
-    false
#

Invoke a method with arguments on every item in a collection.

  _.invoke = (obj, method) ->
-    args = _.rest arguments, 2
-    (if method then val[method] else val).apply(val, args) for val in obj
#

Convenience version of a common use case of map: fetching a property.

  _.pluck = (obj, key) ->
-    _.map(obj, (val) -> val[key])
#

Return the maximum item or (item-based computation).

  _.max = (obj, iterator, context) ->
-    return Math.max.apply(Math, obj) if not iterator and _.isArray(obj)
-    result = computed: -Infinity
-    _.each obj, (value, index, list) ->
-      computed = if iterator then iterator.call(context, value, index, list) else value
-      computed >= result.computed and (result = {value: value, computed: computed})
-    result.value
#

Return the minimum element (or element-based computation).

  _.min = (obj, iterator, context) ->
-    return Math.min.apply(Math, obj) if not iterator and _.isArray(obj)
-    result = computed: Infinity
-    _.each obj, (value, index, list) ->
-      computed = if iterator then iterator.call(context, value, index, list) else value
-      computed < result.computed and (result = {value: value, computed: computed})
-    result.value
#

Sort the object's values by a criterion produced by an iterator.

  _.sortBy = (obj, iterator, context) ->
-    _.pluck(((_.map obj, (value, index, list) ->
-      {value: value, criteria: iterator.call(context, value, index, list)}
-    ).sort((left, right) ->
-      a = left.criteria; b = right.criteria
-      if a < b then -1 else if a > b then 1 else 0
-    )), 'value')
#

Use a comparator function to figure out at what index an object should -be inserted so as to maintain order. Uses binary search.

  _.sortedIndex = (array, obj, iterator) ->
-    iterator ||= _.identity
-    low =  0
-    high = array.length
-    while low < high
-      mid = (low + high) >> 1
-      if iterator(array[mid]) < iterator(obj) then low = mid + 1 else high = mid
-    low
#

Convert anything iterable into a real, live array.

  _.toArray = (iterable) ->
-    return []                   if (!iterable)
-    return iterable.toArray()   if (iterable.toArray)
-    return iterable             if (_.isArray(iterable))
-    return slice.call(iterable) if (_.isArguments(iterable))
-    _.values(iterable)
#

Return the number of elements in an object.

  _.size = (obj) -> _.toArray(obj).length
#

Array Functions

#

Get the first element of an array. Passing n will return the first N +http://documentcloud.github.com/underscore/

Baseline setup

Establish the root object, window in the browser, or global on the server.

root = this

Save the previous value of the _ variable.

previousUnderscore = root._

Establish the object that gets thrown to break out of a loop iteration. +StopIteration is SOP on Mozilla.

breaker = if typeof(StopIteration) is 'undefined' then '__break__' else StopIteration

Helper function to escape RegExp contents, because JS doesn't have one.

escapeRegExp = (string) -> string.replace(/([.*+?^${}()|[\]\/\\])/g, '\\$1')

Save bytes in the minified (but not gzipped) version:

ArrayProto           = Array.prototype
+ObjProto             = Object.prototype

Create quick reference variables for speed access to core prototypes.

slice                = ArrayProto.slice
+unshift              = ArrayProto.unshift
+toString             = ObjProto.toString
+hasOwnProperty       = ObjProto.hasOwnProperty
+propertyIsEnumerable = ObjProto.propertyIsEnumerable

All ECMA5 native implementations we hope to use are declared here.

nativeForEach        = ArrayProto.forEach
+nativeMap            = ArrayProto.map
+nativeReduce         = ArrayProto.reduce
+nativeReduceRight    = ArrayProto.reduceRight
+nativeFilter         = ArrayProto.filter
+nativeEvery          = ArrayProto.every
+nativeSome           = ArrayProto.some
+nativeIndexOf        = ArrayProto.indexOf
+nativeLastIndexOf    = ArrayProto.lastIndexOf
+nativeIsArray        = Array.isArray
+nativeKeys           = Object.keys

Create a safe reference to the Underscore object for use below.

_ = (obj) -> new wrapper(obj)

Export the Underscore object for CommonJS.

if typeof(exports) != 'undefined' then exports._ = _

Export Underscore to global scope.

root._ = _

Current version.

_.VERSION = '1.1.0'

Collection Functions

The cornerstone, an each implementation. +Handles objects implementing forEach, arrays, and raw objects.

_.each = (obj, iterator, context) ->
+  try
+    if nativeForEach and obj.forEach is nativeForEach
+      obj.forEach iterator, context
+    else if _.isNumber obj.length
+      iterator.call context, obj[i], i, obj for i in [0...obj.length]
+    else
+      iterator.call context, val, key, obj  for key, val of obj
+  catch e
+    throw e if e isnt breaker
+  obj

Return the results of applying the iterator to each element. Use JavaScript +1.6's version of map, if possible.

_.map = (obj, iterator, context) ->
+  return obj.map(iterator, context) if nativeMap and obj.map is nativeMap
+  results = []
+  _.each obj, (value, index, list) ->
+    results.push iterator.call context, value, index, list
+  results

Reduce builds up a single result from a list of values. Also known as +inject, or foldl. Uses JavaScript 1.8's version of reduce, if possible.

_.reduce = (obj, iterator, memo, context) ->
+  if nativeReduce and obj.reduce is nativeReduce
+    iterator = _.bind iterator, context if context
+    return obj.reduce iterator, memo
+  _.each obj, (value, index, list) ->
+    memo = iterator.call context, memo, value, index, list
+  memo

The right-associative version of reduce, also known as foldr. Uses +JavaScript 1.8's version of reduceRight, if available.

_.reduceRight = (obj, iterator, memo, context) ->
+  if nativeReduceRight and obj.reduceRight is nativeReduceRight
+    iterator = _.bind iterator, context if context
+    return obj.reduceRight iterator, memo
+  reversed = _.clone(_.toArray(obj)).reverse()
+  _.reduce reversed, iterator, memo, context

Return the first value which passes a truth test.

_.detect = (obj, iterator, context) ->
+  result = null
+  _.each obj, (value, index, list) ->
+    if iterator.call context, value, index, list
+      result = value
+      _.breakLoop()
+  result

Return all the elements that pass a truth test. Use JavaScript 1.6's +filter, if it exists.

_.filter = (obj, iterator, context) ->
+  return obj.filter iterator, context if nativeFilter and obj.filter is nativeFilter
+  results = []
+  _.each obj, (value, index, list) ->
+    results.push value if iterator.call context, value, index, list
+  results

Return all the elements for which a truth test fails.

_.reject = (obj, iterator, context) ->
+  results = []
+  _.each obj, (value, index, list) ->
+    results.push value if not iterator.call context, value, index, list
+  results

Determine whether all of the elements match a truth test. Delegate to +JavaScript 1.6's every, if it is present.

_.every = (obj, iterator, context) ->
+  iterator ||= _.identity
+  return obj.every iterator, context if nativeEvery and obj.every is nativeEvery
+  result = true
+  _.each obj, (value, index, list) ->
+    _.breakLoop() unless (result = result and iterator.call(context, value, index, list))
+  result

Determine if at least one element in the object matches a truth test. Use +JavaScript 1.6's some, if it exists.

_.some = (obj, iterator, context) ->
+  iterator ||= _.identity
+  return obj.some iterator, context if nativeSome and obj.some is nativeSome
+  result = false
+  _.each obj, (value, index, list) ->
+    _.breakLoop() if (result = iterator.call(context, value, index, list))
+  result

Determine if a given value is included in the array or object, +based on ===.

_.include = (obj, target) ->
+  return _.indexOf(obj, target) isnt -1 if nativeIndexOf and obj.indexOf is nativeIndexOf
+  for key, val of obj
+    return true if val is target
+  false

Invoke a method with arguments on every item in a collection.

_.invoke = (obj, method) ->
+  args = _.rest arguments, 2
+  (if method then val[method] else val).apply(val, args) for val in obj

Convenience version of a common use case of map: fetching a property.

_.pluck = (obj, key) ->
+  _.map(obj, (val) -> val[key])

Return the maximum item or (item-based computation).

_.max = (obj, iterator, context) ->
+  return Math.max.apply(Math, obj) if not iterator and _.isArray(obj)
+  result = computed: -Infinity
+  _.each obj, (value, index, list) ->
+    computed = if iterator then iterator.call(context, value, index, list) else value
+    computed >= result.computed and (result = {value: value, computed: computed})
+  result.value

Return the minimum element (or element-based computation).

_.min = (obj, iterator, context) ->
+  return Math.min.apply(Math, obj) if not iterator and _.isArray(obj)
+  result = computed: Infinity
+  _.each obj, (value, index, list) ->
+    computed = if iterator then iterator.call(context, value, index, list) else value
+    computed < result.computed and (result = {value: value, computed: computed})
+  result.value

Sort the object's values by a criterion produced by an iterator.

_.sortBy = (obj, iterator, context) ->
+  _.pluck(((_.map obj, (value, index, list) ->
+    {value: value, criteria: iterator.call(context, value, index, list)}
+  ).sort((left, right) ->
+    a = left.criteria; b = right.criteria
+    if a < b then -1 else if a > b then 1 else 0
+  )), 'value')

Use a comparator function to figure out at what index an object should +be inserted so as to maintain order. Uses binary search.

_.sortedIndex = (array, obj, iterator) ->
+  iterator ||= _.identity
+  low =  0
+  high = array.length
+  while low < high
+    mid = (low + high) >> 1
+    if iterator(array[mid]) < iterator(obj) then low = mid + 1 else high = mid
+  low

Convert anything iterable into a real, live array.

_.toArray = (iterable) ->
+  return []                   if (!iterable)
+  return iterable.toArray()   if (iterable.toArray)
+  return iterable             if (_.isArray(iterable))
+  return slice.call(iterable) if (_.isArguments(iterable))
+  _.values(iterable)

Return the number of elements in an object.

_.size = (obj) -> _.toArray(obj).length

Array Functions

Get the first element of an array. Passing n will return the first N values in the array. Aliased as head. The guard check allows it to work -with map.

  _.first = (array, n, guard) ->
-    if n and not guard then slice.call(array, 0, n) else array[0]
#

Returns everything but the first entry of the array. Aliased as tail. +with map.

_.first = (array, n, guard) ->
+  if n and not guard then slice.call(array, 0, n) else array[0]

Returns everything but the first entry of the array. Aliased as tail. Especially useful on the arguments object. Passing an index will return the rest of the values in the array from that index onward. The guard -check allows it to work with map.

  _.rest = (array, index, guard) ->
-    slice.call(array, if _.isUndefined(index) or guard then 1 else index)
#

Get the last element of an array.

  _.last = (array) -> array[array.length - 1]
#

Trim out all falsy values from an array.

  _.compact = (array) -> item for item in array when item
#

Return a completely flattened version of an array.

  _.flatten = (array) ->
-    _.reduce array, (memo, value) ->
-      return memo.concat(_.flatten(value)) if _.isArray value
-      memo.push value
-      memo
-    , []
#

Return a version of the array that does not contain the specified value(s).

  _.without = (array) ->
-    values = _.rest arguments
-    val for val in _.toArray(array) when not _.include values, val
#

Produce a duplicate-free version of the array. If the array has already -been sorted, you have the option of using a faster algorithm.

  _.uniq = (array, isSorted) ->
-    memo = []
-    for el, i in _.toArray array
-      memo.push el if i is 0 || (if isSorted is true then _.last(memo) isnt el else not _.include(memo, el))
-    memo
#

Produce an array that contains every item shared between all the -passed-in arrays.

  _.intersect = (array) ->
-    rest = _.rest arguments
-    _.select _.uniq(array), (item) ->
-      _.all rest, (other) ->
-        _.indexOf(other, item) >= 0
#

Zip together multiple lists into a single array -- elements that share -an index go together.

  _.zip = ->
-    length =  _.max _.pluck arguments, 'length'
-    results = new Array length
-    for i in [0...length]
-      results[i] = _.pluck arguments, String i
-    results
#

If the browser doesn't supply us with indexOf (I'm looking at you, MSIE), -we need this function. Return the position of the first occurence of an -item in an array, or -1 if the item is not included in the array.

  _.indexOf = (array, item) ->
-    return array.indexOf item if nativeIndexOf and array.indexOf is nativeIndexOf
-    i = 0; l = array.length
-    while l - i
-      if array[i] is item then return i else i++
-    -1
#

Provide JavaScript 1.6's lastIndexOf, delegating to the native function, -if possible.

  _.lastIndexOf = (array, item) ->
-    return array.lastIndexOf(item) if nativeLastIndexOf and array.lastIndexOf is nativeLastIndexOf
-    i = array.length
-    while i
-      if array[i] is item then return i else i--
-    -1
#

Generate an integer Array containing an arithmetic progression. A port of -the native Python range function.

  _.range = (start, stop, step) ->
-    a         = arguments
-    solo      = a.length <= 1
-    i = start = if solo then 0 else a[0]
-    stop      = if solo then a[0] else a[1]
-    step      = a[2] or 1
-    len       = Math.ceil((stop - start) / step)
-    return []   if len <= 0
-    range     = new Array len
-    idx       = 0
-    loop
-      return range if (if step > 0 then i - stop else stop - i) >= 0
-      range[idx] = i
-      idx++
-      i+= step
#

Function Functions

#

Create a function bound to a given object (assigning this, and arguments, -optionally). Binding with arguments is also known as curry.

  _.bind = (func, obj) ->
-    args = _.rest arguments, 2
-    -> func.apply obj or root, args.concat arguments
#

Bind all of an object's methods to that object. Useful for ensuring that -all callbacks defined on an object belong to it.

  _.bindAll = (obj) ->
-    funcs = if arguments.length > 1 then _.rest(arguments) else _.functions(obj)
-    _.each funcs, (f) -> obj[f] = _.bind obj[f], obj
-    obj
#

Delays a function for the given number of milliseconds, and then calls -it with the arguments supplied.

  _.delay = (func, wait) ->
-    args = _.rest arguments, 2
-    setTimeout((-> func.apply(func, args)), wait)
#

Memoize an expensive function by storing its results.

  _.memoize = (func, hasher) ->
-    memo = {}
-    hasher or= _.identity
-    ->
-      key = hasher.apply this, arguments
-      return memo[key] if key of memo
-      memo[key] = func.apply this, arguments
#

Defers a function, scheduling it to run after the current call stack has -cleared.

  _.defer = (func) ->
-    _.delay.apply _, [func, 1].concat _.rest arguments
#

Returns the first function passed as an argument to the second, +check allows it to work with map.

_.rest = (array, index, guard) ->
+  slice.call(array, if _.isUndefined(index) or guard then 1 else index)

Get the last element of an array.

_.last = (array) -> array[array.length - 1]

Trim out all falsy values from an array.

_.compact = (array) -> item for item in array when item

Return a completely flattened version of an array.

_.flatten = (array) ->
+  _.reduce array, (memo, value) ->
+    return memo.concat(_.flatten(value)) if _.isArray value
+    memo.push value
+    memo
+  , []

Return a version of the array that does not contain the specified value(s).

_.without = (array) ->
+  values = _.rest arguments
+  val for val in _.toArray(array) when not _.include values, val

Produce a duplicate-free version of the array. If the array has already +been sorted, you have the option of using a faster algorithm.

_.uniq = (array, isSorted) ->
+  memo = []
+  for el, i in _.toArray array
+    memo.push el if i is 0 || (if isSorted is true then _.last(memo) isnt el else not _.include(memo, el))
+  memo

Produce an array that contains every item shared between all the +passed-in arrays.

_.intersect = (array) ->
+  rest = _.rest arguments
+  _.select _.uniq(array), (item) ->
+    _.all rest, (other) ->
+      _.indexOf(other, item) >= 0

Zip together multiple lists into a single array -- elements that share +an index go together.

_.zip = ->
+  length =  _.max _.pluck arguments, 'length'
+  results = new Array length
+  for i in [0...length]
+    results[i] = _.pluck arguments, String i
+  results

If the browser doesn't supply us with indexOf (I'm looking at you, MSIE), +we need this function. Return the position of the first occurrence of an +item in an array, or -1 if the item is not included in the array.

_.indexOf = (array, item) ->
+  return array.indexOf item if nativeIndexOf and array.indexOf is nativeIndexOf
+  i = 0; l = array.length
+  while l - i
+    if array[i] is item then return i else i++
+  -1

Provide JavaScript 1.6's lastIndexOf, delegating to the native function, +if possible.

_.lastIndexOf = (array, item) ->
+  return array.lastIndexOf(item) if nativeLastIndexOf and array.lastIndexOf is nativeLastIndexOf
+  i = array.length
+  while i
+    if array[i] is item then return i else i--
+  -1

Generate an integer Array containing an arithmetic progression. A port of +the native Python range function.

_.range = (start, stop, step) ->
+  a         = arguments
+  solo      = a.length <= 1
+  i = start = if solo then 0 else a[0]
+  stop      = if solo then a[0] else a[1]
+  step      = a[2] or 1
+  len       = Math.ceil((stop - start) / step)
+  return []   if len <= 0
+  range     = new Array len
+  idx       = 0
+  loop
+    return range if (if step > 0 then i - stop else stop - i) >= 0
+    range[idx] = i
+    idx++
+    i+= step

Function Functions

Create a function bound to a given object (assigning this, and arguments, +optionally). Binding with arguments is also known as curry.

_.bind = (func, obj) ->
+  args = _.rest arguments, 2
+  -> func.apply obj or root, args.concat arguments

Bind all of an object's methods to that object. Useful for ensuring that +all callbacks defined on an object belong to it.

_.bindAll = (obj) ->
+  funcs = if arguments.length > 1 then _.rest(arguments) else _.functions(obj)
+  _.each funcs, (f) -> obj[f] = _.bind obj[f], obj
+  obj

Delays a function for the given number of milliseconds, and then calls +it with the arguments supplied.

_.delay = (func, wait) ->
+  args = _.rest arguments, 2
+  setTimeout((-> func.apply(func, args)), wait)

Memoize an expensive function by storing its results.

_.memoize = (func, hasher) ->
+  memo = {}
+  hasher or= _.identity
+  ->
+    key = hasher.apply this, arguments
+    return memo[key] if key of memo
+    memo[key] = func.apply this, arguments

Defers a function, scheduling it to run after the current call stack has +cleared.

_.defer = (func) ->
+  _.delay.apply _, [func, 1].concat _.rest arguments

Returns the first function passed as an argument to the second, allowing you to adjust arguments, run code before and after, and -conditionally execute the original function.

  _.wrap = (func, wrapper) ->
-    -> wrapper.apply wrapper, [func].concat arguments
#

Returns a function that is the composition of a list of functions, each -consuming the return value of the function that follows.

  _.compose = ->
-    funcs = arguments
-    ->
-      args = arguments
-      for i in [(funcs.length - 1)..0]
-        args = [funcs[i].apply(this, args)]
-      args[0]
#

Object Functions

#

Retrieve the names of an object's properties.

  _.keys = nativeKeys or (obj) ->
-    return _.range 0, obj.length if _.isArray(obj)
-    key for key, val of obj
#

Retrieve the values of an object's properties.

  _.values = (obj) ->
-    _.map obj, _.identity
#

Return a sorted list of the function names available in Underscore.

  _.functions = (obj) ->
-    _.filter(_.keys(obj), (key) -> _.isFunction(obj[key])).sort()
#

Extend a given object with all of the properties in a source object.

  _.extend = (obj) ->
-    for source in _.rest(arguments)
-      (obj[key] = val) for key, val of source
-    obj
#

Create a (shallow-cloned) duplicate of an object.

  _.clone = (obj) ->
-    return obj.slice 0 if _.isArray obj
-    _.extend {}, obj
#

Invokes interceptor with the obj, and then returns obj. -The primary purpose of this method is to "tap into" a method chain, in order to perform operations on intermediate results within the chain.

  _.tap = (obj, interceptor) ->
-    interceptor obj
-    obj
#

Perform a deep comparison to check if two objects are equal.

  _.isEqual = (a, b) ->
#

Check object identity.

    return true if a is b
#

Different types?

    atype = typeof(a); btype = typeof(b)
-    return false if atype isnt btype
#

Basic equality test (watch out for coercions).

    return true if `a == b`
#

One is falsy and the other truthy.

    return false if (!a and b) or (a and !b)
#

One of them implements an isEqual()?

    return a.isEqual(b) if a.isEqual
#

Check dates' integer values.

    return a.getTime() is b.getTime() if _.isDate(a) and _.isDate(b)
#

Both are NaN?

    return false if _.isNaN(a) and _.isNaN(b)
#

Compare regular expressions.

    if _.isRegExp(a) and _.isRegExp(b)
-      return a.source     is b.source and
-             a.global     is b.global and
-             a.ignoreCase is b.ignoreCase and
-             a.multiline  is b.multiline
#

If a is not an object by this point, we can't handle it.

    return false if atype isnt 'object'
#

Check for different array lengths before comparing contents.

    return false if a.length and (a.length isnt b.length)
#

Nothing else worked, deep compare the contents.

    aKeys = _.keys(a); bKeys = _.keys(b)
#

Different object sizes?

    return false if aKeys.length isnt bKeys.length
#

Recursive comparison of contents.

    (return false) for all key, val of a when !(key of b) or !_.isEqual(val, b[key])
-    true
#

Is a given array or object empty?

  _.isEmpty = (obj) ->
-    return obj.length is 0 if _.isArray(obj) or _.isString(obj)
-    (return false) for key of obj when hasOwnProperty.call(obj, key)
-    true
#

Is a given value a DOM element?

  _.isElement   = (obj) -> obj and obj.nodeType is 1
#

Is a given value an array?

  _.isArray     = nativeIsArray or (obj) -> !!(obj and obj.concat and obj.unshift and not obj.callee)
#

Is a given variable an arguments object?

  _.isArguments = (obj) -> obj and obj.callee
#

Is the given value a function?

  _.isFunction  = (obj) -> !!(obj and obj.constructor and obj.call and obj.apply)
#

Is the given value a string?

  _.isString    = (obj) -> !!(obj is '' or (obj and obj.charCodeAt and obj.substr))
#

Is a given value a number?

  _.isNumber    = (obj) -> (obj is +obj) or toString.call(obj) is '[object Number]'
#

Is a given value a boolean?

  _.isBoolean   = (obj) -> obj is true or obj is false
#

Is a given value a Date?

  _.isDate      = (obj) -> !!(obj and obj.getTimezoneOffset and obj.setUTCFullYear)
#

Is the given value a regular expression?

  _.isRegExp    = (obj) -> !!(obj and obj.exec and (obj.ignoreCase or obj.ignoreCase is false))
#

Is the given value NaN -- this one is interesting. NaN != NaN, and -isNaN(undefined) == true, so we make sure it's a number first.

  _.isNaN       = (obj) -> _.isNumber(obj) and window.isNaN(obj)
#

Is a given value equal to null?

  _.isNull      = (obj) -> obj is null
#

Is a given variable undefined?

  _.isUndefined = (obj) -> typeof obj is 'undefined'
#

Utility Functions

#

Run Underscore.js in noConflict mode, returning the _ variable to its -previous owner. Returns a reference to the Underscore object.

  _.noConflict = ->
-    root._ = previousUnderscore
-    this
#

Keep the identity function around for default iterators.

  _.identity = (value) -> value
#

Run a function n times.

  _.times = (n, iterator, context) ->
-    iterator.call(context, i) for i in [0...n]
#

Break out of the middle of an iteration.

  _.breakLoop = -> throw breaker
#

Add your own custom functions to the Underscore object, ensuring that -they're correctly added to the OOP wrapper as well.

  _.mixin = (obj) ->
-    for name in _.functions(obj)
-      addToWrapper name, _[name] = obj[name]
#

Generate a unique integer id (unique within the entire client session). -Useful for temporary DOM ids.

  idCounter = 0
-  _.uniqueId = (prefix) ->
-    (prefix or '') + idCounter++
#

By default, Underscore uses ERB-style template delimiters, change the -following template settings to use alternative delimiters.

  _.templateSettings = {
-    start:        '<%'
-    end:          '%>'
-    interpolate:  /<%=(.+?)%>/g
-  }
#

JavaScript templating a-la ERB, pilfered from John Resig's +conditionally execute the original function.

_.wrap = (func, wrapper) ->
+  -> wrapper.apply wrapper, [func].concat arguments

Returns a function that is the composition of a list of functions, each +consuming the return value of the function that follows.

_.compose = ->
+  funcs = arguments
+  ->
+    args = arguments
+    for i in [funcs.length - 1..0] by -1
+      args = [funcs[i].apply(this, args)]
+    args[0]

Object Functions

Retrieve the names of an object's properties.

_.keys = nativeKeys or (obj) ->
+  return _.range 0, obj.length if _.isArray(obj)
+  key for key, val of obj

Retrieve the values of an object's properties.

_.values = (obj) ->
+  _.map obj, _.identity

Return a sorted list of the function names available in Underscore.

_.functions = (obj) ->
+  _.filter(_.keys(obj), (key) -> _.isFunction(obj[key])).sort()

Extend a given object with all of the properties in a source object.

_.extend = (obj) ->
+  for source in _.rest(arguments)
+    obj[key] = val for key, val of source
+  obj

Create a (shallow-cloned) duplicate of an object.

_.clone = (obj) ->
+  return obj.slice 0 if _.isArray obj
+  _.extend {}, obj

Invokes interceptor with the obj, and then returns obj. +The primary purpose of this method is to "tap into" a method chain, in order to perform operations on intermediate results within the chain.

_.tap = (obj, interceptor) ->
+  interceptor obj
+  obj

Perform a deep comparison to check if two objects are equal.

_.isEqual = (a, b) ->

Check object identity.

  return true if a is b

Different types?

  atype = typeof(a); btype = typeof(b)
+  return false if atype isnt btype

Basic equality test (watch out for coercions).

  return true if `a == b`

One is falsy and the other truthy.

  return false if (!a and b) or (a and !b)

One of them implements an isEqual()?

  return a.isEqual(b) if a.isEqual

Check dates' integer values.

  return a.getTime() is b.getTime() if _.isDate(a) and _.isDate(b)

Both are NaN?

  return false if _.isNaN(a) and _.isNaN(b)

Compare regular expressions.

  if _.isRegExp(a) and _.isRegExp(b)
+    return a.source     is b.source and
+           a.global     is b.global and
+           a.ignoreCase is b.ignoreCase and
+           a.multiline  is b.multiline

If a is not an object by this point, we can't handle it.

  return false if atype isnt 'object'

Check for different array lengths before comparing contents.

  return false if a.length and (a.length isnt b.length)

Nothing else worked, deep compare the contents.

  aKeys = _.keys(a); bKeys = _.keys(b)

Different object sizes?

  return false if aKeys.length isnt bKeys.length

Recursive comparison of contents.

  return false for all key, val of a when !(key of b) or !_.isEqual(val, b[key])
+  true

Is a given array or object empty?

_.isEmpty = (obj) ->
+  return obj.length is 0 if _.isArray(obj) or _.isString(obj)
+  return false for key of obj when hasOwnProperty.call(obj, key)
+  true

Is a given value a DOM element?

_.isElement   = (obj) -> obj and obj.nodeType is 1

Is a given value an array?

_.isArray     = nativeIsArray or (obj) -> !!(obj and obj.concat and obj.unshift and not obj.callee)

Is a given variable an arguments object?

_.isArguments = (obj) -> obj and obj.callee

Is the given value a function?

_.isFunction  = (obj) -> !!(obj and obj.constructor and obj.call and obj.apply)

Is the given value a string?

_.isString    = (obj) -> !!(obj is '' or (obj and obj.charCodeAt and obj.substr))

Is a given value a number?

_.isNumber    = (obj) -> (obj is +obj) or toString.call(obj) is '[object Number]'

Is a given value a boolean?

_.isBoolean   = (obj) -> obj is true or obj is false

Is a given value a Date?

_.isDate      = (obj) -> !!(obj and obj.getTimezoneOffset and obj.setUTCFullYear)

Is the given value a regular expression?

_.isRegExp    = (obj) -> !!(obj and obj.exec and (obj.ignoreCase or obj.ignoreCase is false))

Is the given value NaN -- this one is interesting. NaN != NaN, and +isNaN(undefined) == true, so we make sure it's a number first.

_.isNaN       = (obj) -> _.isNumber(obj) and window.isNaN(obj)

Is a given value equal to null?

_.isNull      = (obj) -> obj is null

Is a given variable undefined?

_.isUndefined = (obj) -> typeof obj is 'undefined'

Utility Functions

Run Underscore.js in noConflict mode, returning the _ variable to its +previous owner. Returns a reference to the Underscore object.

_.noConflict = ->
+  root._ = previousUnderscore
+  this

Keep the identity function around for default iterators.

_.identity = (value) -> value

Run a function n times.

_.times = (n, iterator, context) ->
+  iterator.call context, i for i in [0...n]

Break out of the middle of an iteration.

_.breakLoop = -> throw breaker

Add your own custom functions to the Underscore object, ensuring that +they're correctly added to the OOP wrapper as well.

_.mixin = (obj) ->
+  for name in _.functions(obj)
+    addToWrapper name, _[name] = obj[name]

Generate a unique integer id (unique within the entire client session). +Useful for temporary DOM ids.

idCounter = 0
+_.uniqueId = (prefix) ->
+  (prefix or '') + idCounter++

By default, Underscore uses ERB-style template delimiters, change the +following template settings to use alternative delimiters.

_.templateSettings = {
+  start:        '<%'
+  end:          '%>'
+  interpolate:  /<%=(.+?)%>/g
+}

JavaScript templating a-la ERB, pilfered from John Resig's Secrets of the JavaScript Ninja, page 83. Single-quote fix from Rick Strahl. -With alterations for arbitrary delimiters, and to preserve whitespace.

  _.template = (str, data) ->
-    c = _.templateSettings
-    endMatch = new RegExp("'(?=[^"+c.end.substr(0, 1)+"]*"+escapeRegExp(c.end)+")","g")
-    fn = new Function 'obj',
-      'var p=[],print=function(){p.push.apply(p,arguments);};' +
-      'with(obj||{}){p.push(\'' +
-      str.replace(/\r/g, '\\r')
-         .replace(/\n/g, '\\n')
-         .replace(/\t/g, '\\t')
-         .replace(endMatch,"✄")
-         .split("'").join("\\'")
-         .split("✄").join("'")
-         .replace(c.interpolate, "',$1,'")
-         .split(c.start).join("');")
-         .split(c.end).join("p.push('") +
-         "');}return p.join('');"
-    if data then fn(data) else fn
#

Aliases

  _.forEach  = _.each
-  _.foldl    = _.inject = _.reduce
-  _.foldr    = _.reduceRight
-  _.select   = _.filter
-  _.all      = _.every
-  _.any      = _.some
-  _.contains = _.include
-  _.head     = _.first
-  _.tail     = _.rest
-  _.methods  = _.functions
#

Setup the OOP Wrapper

#

If Underscore is called as a function, it returns a wrapped object that +With alterations for arbitrary delimiters, and to preserve whitespace.

_.template = (str, data) ->
+  c = _.templateSettings
+  endMatch = new RegExp("'(?=[^"+c.end.substr(0, 1)+"]*"+escapeRegExp(c.end)+")","g")
+  fn = new Function 'obj',
+    'var p=[],print=function(){p.push.apply(p,arguments);};' +
+    'with(obj||{}){p.push(\'' +
+    str.replace(/\r/g, '\\r')
+       .replace(/\n/g, '\\n')
+       .replace(/\t/g, '\\t')
+       .replace(endMatch,"✄")
+       .split("'").join("\\'")
+       .split("✄").join("'")
+       .replace(c.interpolate, "',$1,'")
+       .split(c.start).join("');")
+       .split(c.end).join("p.push('") +
+       "');}return p.join('');"
+  if data then fn(data) else fn

Aliases

_.forEach  = _.each
+_.foldl    = _.inject = _.reduce
+_.foldr    = _.reduceRight
+_.select   = _.filter
+_.all      = _.every
+_.any      = _.some
+_.contains = _.include
+_.head     = _.first
+_.tail     = _.rest
+_.methods  = _.functions

Setup the OOP Wrapper

If Underscore is called as a function, it returns a wrapped object that can be used OO-style. This wrapper holds altered versions of all the -underscore functions. Wrapped objects may be chained.

  wrapper = (obj) ->
-    this._wrapped = obj
-    this
#

Helper function to continue chaining intermediate results.

  result = (obj, chain) ->
-    if chain then _(obj).chain() else obj
#

A method to easily add functions to the OOP wrapper.

  addToWrapper = (name, func) ->
-    wrapper.prototype[name] = ->
-      args = _.toArray arguments
-      unshift.call args, this._wrapped
-      result func.apply(_, args), this._chain
#

Add all of the Underscore functions to the wrapper object.

  _.mixin _
#

Add all mutator Array functions to the wrapper.

  _.each ['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], (name) ->
-    method = Array.prototype[name]
-    wrapper.prototype[name] = ->
-      method.apply(this._wrapped, arguments)
-      result(this._wrapped, this._chain)
#

Add all accessor Array functions to the wrapper.

  _.each ['concat', 'join', 'slice'], (name) ->
-    method = Array.prototype[name]
-    wrapper.prototype[name] = ->
-      result(method.apply(this._wrapped, arguments), this._chain)
#

Start chaining a wrapped Underscore object.

  wrapper::chain = ->
-    this._chain = true
-    this
#

Extracts the result from a wrapped and chained object.

  wrapper::value = -> this._wrapped
+underscore functions. Wrapped objects may be chained.

wrapper = (obj) ->
+  this._wrapped = obj
+  this

Helper function to continue chaining intermediate results.

result = (obj, chain) ->
+  if chain then _(obj).chain() else obj

A method to easily add functions to the OOP wrapper.

addToWrapper = (name, func) ->
+  wrapper.prototype[name] = ->
+    args = _.toArray arguments
+    unshift.call args, this._wrapped
+    result func.apply(_, args), this._chain

Add all of the Underscore functions to the wrapper object.

_.mixin _

Add all mutator Array functions to the wrapper.

_.each ['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], (name) ->
+  method = Array.prototype[name]
+  wrapper.prototype[name] = ->
+    method.apply(this._wrapped, arguments)
+    result(this._wrapped, this._chain)

Add all accessor Array functions to the wrapper.

_.each ['concat', 'join', 'slice'], (name) ->
+  method = Array.prototype[name]
+  wrapper.prototype[name] = ->
+    result(method.apply(this._wrapped, arguments), this._chain)

Start chaining a wrapped Underscore object.

wrapper::chain = ->
+  this._chain = true
+  this

Extracts the result from a wrapped and chained object.

wrapper::value = -> this._wrapped
 
 
\ No newline at end of file diff --git a/documentation/index.html.erb b/documentation/index.html.erb index 3f513a89..a6bfe080 100644 --- a/documentation/index.html.erb +++ b/documentation/index.html.erb @@ -104,31 +104,29 @@

- CoffeeScript is a little language that compiles into JavaScript. Think - of it as JavaScript's less ostentatious kid brother — the same genes, - roughly the same height, but a different sense of style. Apart from a handful of - bonus goodies, statements in CoffeeScript correspond one-to-one with their - equivalent in JavaScript, it's just another way of saying it. + CoffeeScript is a little language that compiles into JavaScript. Underneath + all of those embarrassing braces and semicolons, JavaScript has always had + a gorgeous object model at its heart. CoffeeScript is an attempt to expose + the good parts of JavaScript in a simple way.

- Disclaimer: - CoffeeScript is just for fun. Until it reaches 1.0, there are no guarantees - that the syntax won't change between versions. That said, - it compiles into clean JavaScript (the good parts) that can use existing - JavaScript libraries seamlessly, and passes through - JSLint without warnings. The compiled - output is pretty-printed and quite readable. + The golden rule of CoffeeScript is: "It's just JavaScript". The code + compiles one-to-one into the equivalent JS, and there is + no interpretation at runtime. You can use any existing JavaScript library + seamlessly (and vice-versa). The compiled output is readable and pretty-printed, + passes through JavaScript Lint + without warnings, and can be run by any JavaScript implementation.

Latest Version: - 0.9.4 + 0.9.5

- Mini Overview + Overview

CoffeeScript on the left, compiled JavaScript output on the right.

@@ -168,7 +166,7 @@ Then clone the CoffeeScript source repository from GitHub, or download the latest - release: 0.9.4. + release: 0.9.5. To install the CoffeeScript compiler system-wide under /usr/local, open the directory and run:

@@ -511,7 +509,7 @@ coffee --print app/scripts/*.coffee > concatenation.js in fixed-size increments, you can use a range to specify the start and end of your comprehension.

- <%= code_for('range_comprehensions', 'count') %> + <%= code_for('range_comprehensions', 'countdown') %>

Comprehensions can also be used to iterate over the keys and values in an object. Use of to signal comprehension over the properties of diff --git a/documentation/js/array_comprehensions.js b/documentation/js/array_comprehensions.js index 770ae532..766bafd9 100644 --- a/documentation/js/array_comprehensions.js +++ b/documentation/js/array_comprehensions.js @@ -1,4 +1,4 @@ -var _i, _j, _len, _len2, _len3, _ref, _ref2, _ref3, food, lunch, pos, roid, roid2; +var food, lunch, pos, roid, roid2, _i, _j, _len, _len2, _len3, _ref, _ref2, _ref3; _ref = ['toast', 'cheese', 'wine']; for (_i = 0, _len = _ref.length; _i < _len; _i++) { food = _ref[_i]; diff --git a/documentation/js/block_comment.js b/documentation/js/block_comment.js index ae602e60..a6d491e5 100644 --- a/documentation/js/block_comment.js +++ b/documentation/js/block_comment.js @@ -1,4 +1,4 @@ /* -CoffeeScript Compiler v0.9.4 +CoffeeScript Compiler v0.9.5 Released under the MIT License */ \ No newline at end of file diff --git a/documentation/js/classes.js b/documentation/js/classes.js index d51a4579..0caea30f 100644 --- a/documentation/js/classes.js +++ b/documentation/js/classes.js @@ -1,43 +1,43 @@ var Animal, Horse, Snake, sam, tom; -var __extends = function(child, parent) { +var __hasProp = Object.prototype.hasOwnProperty, __extends = function(child, parent) { + for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor; - if (typeof parent.extended === "function") parent.extended(child); child.__super__ = parent.prototype; + return child; }; -Animal = (function() { - function Animal(_arg) { - this.name = _arg; - return this; +Animal = function() { + function Animal(name) { + this.name = name; } + Animal.prototype.move = function(meters) { + return alert(this.name + " moved " + meters + "m."); + }; return Animal; -})(); -Animal.prototype.move = function(meters) { - return alert(this.name + " moved " + meters + "m."); -}; -Snake = (function() { +}(); +Snake = function() { function Snake() { - return Animal.apply(this, arguments); + Snake.__super__.constructor.apply(this, arguments); } + __extends(Snake, Animal); + Snake.prototype.move = function() { + alert("Slithering..."); + return Snake.__super__.move.call(this, 5); + }; return Snake; -})(); -__extends(Snake, Animal); -Snake.prototype.move = function() { - alert("Slithering..."); - return Snake.__super__.move.call(this, 5); -}; -Horse = (function() { +}(); +Horse = function() { function Horse() { - return Animal.apply(this, arguments); + Horse.__super__.constructor.apply(this, arguments); } + __extends(Horse, Animal); + Horse.prototype.move = function() { + alert("Galloping..."); + return Horse.__super__.move.call(this, 45); + }; return Horse; -})(); -__extends(Horse, Animal); -Horse.prototype.move = function() { - alert("Galloping..."); - return Horse.__super__.move.call(this, 45); -}; +}(); sam = new Snake("Sammy the Python"); tom = new Horse("Tommy the Palomino"); sam.move(); diff --git a/documentation/js/conditionals.js b/documentation/js/conditionals.js index bee05fb8..398eb375 100644 --- a/documentation/js/conditionals.js +++ b/documentation/js/conditionals.js @@ -1,4 +1,4 @@ -var date, mood, options; +var date, mood; if (singing) { mood = greatlyImproved; } diff --git a/documentation/js/existence.js b/documentation/js/existence.js index de1a3a0e..39ae7e1d 100644 --- a/documentation/js/existence.js +++ b/documentation/js/existence.js @@ -1,5 +1,5 @@ -var solipsism, speed; -if ((typeof mind !== "undefined" && mind !== null) && !(typeof world !== "undefined" && world !== null)) { +var solipsism; +if ((typeof mind != "undefined" && mind !== null) && !(typeof world != "undefined" && world !== null)) { solipsism = true; } -typeof speed !== "undefined" && speed !== null ? speed : speed = 140; \ No newline at end of file +typeof speed != "undefined" && speed !== null ? speed : speed = 140; \ No newline at end of file diff --git a/documentation/js/expressions.js b/documentation/js/expressions.js index 9612024c..efb5dac5 100644 --- a/documentation/js/expressions.js +++ b/documentation/js/expressions.js @@ -1,5 +1,15 @@ var eldest, grade; grade = function(student) { - return student.excellentWork ? "A+" : student.okayStuff ? student.triedHard ? "B" : "B-" : "C"; + if (student.excellentWork) { + return "A+"; + } else if (student.okayStuff) { + if (student.triedHard) { + return "B"; + } else { + return "B-"; + } + } else { + return "C"; + } }; eldest = 24 > 21 ? "Liz" : "Ike"; \ No newline at end of file diff --git a/documentation/js/expressions_comprehension.js b/documentation/js/expressions_comprehension.js index 8348f13c..32f4baab 100644 --- a/documentation/js/expressions_comprehension.js +++ b/documentation/js/expressions_comprehension.js @@ -1,10 +1,11 @@ -var _ref, _result, globals, name; +var globals, name, _ref, _results; var __hasProp = Object.prototype.hasOwnProperty; -globals = (function() { - _result = []; - for (name in _ref = window) { +globals = ((function() { + _ref = window; + _results = []; + for (name in _ref) { if (!__hasProp.call(_ref, name)) continue; - _result.push(name); + _results.push(name); } - return _result; -})().slice(0, 10); \ No newline at end of file + return _results; +})()).slice(0, 10); \ No newline at end of file diff --git a/documentation/js/expressions_try.js b/documentation/js/expressions_try.js index 19a9506c..b6122563 100644 --- a/documentation/js/expressions_try.js +++ b/documentation/js/expressions_try.js @@ -1,6 +1,6 @@ alert((function() { try { - return nonexistent / undefined; + return nonexistent / void 0; } catch (error) { return "And the error is ... " + error; } diff --git a/documentation/js/fat_arrow.js b/documentation/js/fat_arrow.js index 9f8f50de..f7ca3231 100644 --- a/documentation/js/fat_arrow.js +++ b/documentation/js/fat_arrow.js @@ -1,7 +1,5 @@ var Account; -var __bind = function(func, context) { - return function() { return func.apply(context, arguments); }; -}; +var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; Account = function(customer, cart) { this.customer = customer; this.cart = cart; diff --git a/documentation/js/multiple_return_values.js b/documentation/js/multiple_return_values.js index e4bf1e6f..eaa98fca 100644 --- a/documentation/js/multiple_return_values.js +++ b/documentation/js/multiple_return_values.js @@ -1,4 +1,4 @@ -var _ref, city, forecast, temp, weatherReport; +var city, forecast, temp, weatherReport, _ref; weatherReport = function(location) { return [location, 72, "Mostly Sunny"]; }; diff --git a/documentation/js/object_comprehensions.js b/documentation/js/object_comprehensions.js index 8d719ed6..08a27bab 100644 --- a/documentation/js/object_comprehensions.js +++ b/documentation/js/object_comprehensions.js @@ -1,4 +1,4 @@ -var _result, age, ages, child, yearsOld; +var age, ages, child, yearsOld, _results; var __hasProp = Object.prototype.hasOwnProperty; yearsOld = { max: 10, @@ -6,11 +6,11 @@ yearsOld = { tim: 11 }; ages = (function() { - _result = []; + _results = []; for (child in yearsOld) { if (!__hasProp.call(yearsOld, child)) continue; age = yearsOld[child]; - _result.push(child + " is " + age); + _results.push(child + " is " + age); } - return _result; + return _results; })(); \ No newline at end of file diff --git a/documentation/js/object_extraction.js b/documentation/js/object_extraction.js index b2a2d105..a0aec63d 100644 --- a/documentation/js/object_extraction.js +++ b/documentation/js/object_extraction.js @@ -1,4 +1,4 @@ -var _ref, _ref2, city, futurists, name, street; +var city, futurists, name, street, _ref, _ref2; futurists = { sculptor: "Umberto Boccioni", painter: "Vladimir Burliuk", @@ -7,4 +7,4 @@ futurists = { address: ["Via Roma 42R", "Bellagio, Italy 22021"] } }; -_ref = futurists.poet, name = _ref.name, (_ref2 = _ref.address, street = _ref2[0], city = _ref2[1], _ref2); \ No newline at end of file +_ref = futurists.poet, name = _ref.name, _ref2 = _ref.address, street = _ref2[0], city = _ref2[1]; \ No newline at end of file diff --git a/documentation/js/objects_reserved.js b/documentation/js/objects_reserved.js index db54cf69..2e639c6b 100644 --- a/documentation/js/objects_reserved.js +++ b/documentation/js/objects_reserved.js @@ -1,3 +1,3 @@ -$('.account').css({ +$('.account').attr({ "class": 'active' }); \ No newline at end of file diff --git a/documentation/js/overview.js b/documentation/js/overview.js index 4b8a3bc9..b2c4a59b 100644 --- a/documentation/js/overview.js +++ b/documentation/js/overview.js @@ -1,4 +1,4 @@ -var _i, _len, cubes, list, math, num, number, opposite, race, square; +var cubes, list, math, num, number, opposite, race, square, _i, _len, _results; var __slice = Array.prototype.slice; number = 42; opposite = true; @@ -16,15 +16,19 @@ math = { return x * square(x); } }; -race = function(winner) { - var runners; - runners = __slice.call(arguments, 1); +race = function() { + var runners, winner; + winner = arguments[0], runners = 2 <= arguments.length ? __slice.call(arguments, 1) : []; return print(winner, runners); }; -if (typeof elvis !== "undefined" && elvis !== null) { +if (typeof elvis != "undefined" && elvis !== null) { alert("I knew it!"); } -for (_i = 0, _len = list.length; _i < _len; _i++) { - num = list[_i]; - cubes = math.cube(num); -} \ No newline at end of file +cubes = ((function() { + _results = []; + for (_i = 0, _len = list.length; _i < _len; _i++) { + num = list[_i]; + _results.push(math.cube(num)); + } + return _results; +})()); \ No newline at end of file diff --git a/documentation/js/parallel_assignment.js b/documentation/js/parallel_assignment.js index a24e7f6a..8575a87b 100644 --- a/documentation/js/parallel_assignment.js +++ b/documentation/js/parallel_assignment.js @@ -1,4 +1,4 @@ -var _ref, theBait, theSwitch; +var theBait, theSwitch, _ref; theBait = 1000; theSwitch = 0; _ref = [theSwitch, theBait], theBait = _ref[0], theSwitch = _ref[1]; \ No newline at end of file diff --git a/documentation/js/patterns_and_splats.js b/documentation/js/patterns_and_splats.js index 46b2260b..8c19928c 100644 --- a/documentation/js/patterns_and_splats.js +++ b/documentation/js/patterns_and_splats.js @@ -1,4 +1,4 @@ -var _ref, close, contents, open, tag; +var close, contents, open, tag, _i, _ref; var __slice = Array.prototype.slice; tag = ""; -_ref = tag.split(""), open = _ref[0], contents = __slice.call(_ref, 1, _ref.length - 1), close = _ref[_ref.length - 1]; \ No newline at end of file +_ref = tag.split(""), open = _ref[0], contents = 3 <= _ref.length ? __slice.call(_ref, 1, _i = _ref.length - 1) : (_i = 1, []), close = _ref[_i++]; \ No newline at end of file diff --git a/documentation/js/range_comprehensions.js b/documentation/js/range_comprehensions.js index 238887ca..fb520176 100644 --- a/documentation/js/range_comprehensions.js +++ b/documentation/js/range_comprehensions.js @@ -1,8 +1,8 @@ -var _result, count, num; -count = ((function() { - _result = []; - for (num = 1; num <= 10; num++) { - _result.push(num); +var countdown, num, _results; +countdown = ((function() { + _results = []; + for (num = 10; num >= 1; num--) { + _results.push(num); } - return _result; + return _results; })()); \ No newline at end of file diff --git a/documentation/js/soaks.js b/documentation/js/soaks.js index befdc030..f25d85d5 100644 --- a/documentation/js/soaks.js +++ b/documentation/js/soaks.js @@ -1,6 +1,2 @@ -var _ref; -if (typeof lottery.drawWinner === "function") { - if ((_ref = lottery.drawWinner().address) != null) { - _ref.zipcode; - } -} \ No newline at end of file +var zip, _ref; +zip = typeof lottery.drawWinner === "function" ? (_ref = lottery.drawWinner().address) != null ? _ref.zipcode : void 0 : void 0; \ No newline at end of file diff --git a/documentation/js/splats.js b/documentation/js/splats.js index d15b6d9d..e36ca42d 100644 --- a/documentation/js/splats.js +++ b/documentation/js/splats.js @@ -1,9 +1,9 @@ var awardMedals, contenders, gold, rest, silver; var __slice = Array.prototype.slice; gold = silver = rest = "unknown"; -awardMedals = function(first, second) { - var others; - others = __slice.call(arguments, 2); +awardMedals = function() { + var first, others, second; + first = arguments[0], second = arguments[1], others = 3 <= arguments.length ? __slice.call(arguments, 2) : []; gold = first; silver = second; return rest = others; diff --git a/documentation/js/while.js b/documentation/js/while.js index 910b839e..7864eabc 100644 --- a/documentation/js/while.js +++ b/documentation/js/while.js @@ -1,17 +1,17 @@ -var _result, lyrics, num; +var lyrics, num, _results; if (this.studyingEconomics) { while (supply > demand) { buy(); } - while (!(supply > demand)) { + while (supply <= demand) { sell(); } } num = 6; lyrics = (function() { - _result = []; + _results = []; while (num -= 1) { - _result.push(num + " little monkeys, jumping on the bed. One fell out and bumped his head."); + _results.push(num + " little monkeys, jumping on the bed. One fell out and bumped his head."); } - return _result; + return _results; })(); \ No newline at end of file diff --git a/extras/coffee-script.js b/extras/coffee-script.js index dec503e6..e0902686 100644 --- a/extras/coffee-script.js +++ b/extras/coffee-script.js @@ -1,8 +1,8 @@ /** - * CoffeeScript Compiler v0.9.4 + * CoffeeScript Compiler v0.9.5 * http://coffeescript.org * * Copyright 2010, Jeremy Ashkenas * Released under the MIT License */ -this.CoffeeScript=function(){function require(a){return require[a]}require["./helpers"]=new function(){var a=this;(function(){var b,c;a.starts=function(a,b,c){return b===a.substr(c,b.length)},a.ends=function(a,b,c){var d;d=b.length;return b===a.substr(a.length-d-(c||0),d)},a.compact=function(a){var b,c,d,e;e=[];for(c=0,d=a.length;c=0)f+=1;else if(j=g[0],t.call(d,j)>=0)f-=1;a+=1}return a-1},a.Rewriter.prototype.removeLeadingNewlines=function(){var a,b,c;for(a=0,c=this.tokens.length;a=0)))return 1;d.splice(b,1);return 0})},a.Rewriter.prototype.closeOpenCalls=function(){var a,b;b=function(a,b){var c;return(c=a[0])===")"||c==="CALL_END"||a[0]==="OUTDENT"&&this.tag(b-1)===")"},a=function(a,b){return this.tokens[a[0]==="OUTDENT"?b-1:b][0]="CALL_END"};return this.scanTokens(function(c,d){c[0]==="CALL_START"&&this.detectEnd(d+1,b,a);return 1})},a.Rewriter.prototype.closeOpenIndexes=function(){var a,b;b=function(a,b){var c;return(c=a[0])==="]"||c==="INDEX_END"},a=function(a,b){return a[0]="INDEX_END"};return this.scanTokens(function(c,d){c[0]==="INDEX_START"&&this.detectEnd(d+1,b,a);return 1})},a.Rewriter.prototype.addImplicitBraces=function(){var a,b,c,f;c=[],f=null,b=function(a,b){var c,d,e,f,g,h;if("HERECOMMENT"===this.tag(b+1)||"HERECOMMENT"===this.tag(b-1))return false;g=this.tokens,c=g[b+1],f=g[b+2],e=g[b+3],d=a[0];return(d==="TERMINATOR"||d==="OUTDENT")&&!((f!=null?f[0]:void 0)===":"||(c!=null?c[0]:void 0)==="@"&&(e!=null?e[0]:void 0)===":")||d===","&&c&&((h=c[0])!=="IDENTIFIER"&&h!=="NUMBER"&&h!=="STRING"&&h!=="@"&&h!=="TERMINATOR"&&h!=="OUTDENT"&&h!=="(")},a=function(a,b){return this.tokens.splice(b,0,["}","}",a[2]])};return this.scanTokens(function(g,h,i){var j,k,l,m,n,o,p;if(o=m=g[0],t.call(e,o)>=0){c.push([m==="INDENT"&&this.tag(h-1)==="{"?"{":m,h]);return 1}if(t.call(d,m)>=0){f=c.pop();return 1}if(!(m===":"&&((k=this.tag(h-2))===":"||(j=this.tag(h-1))===")"&&this.tag(f[1]-1)===":"||((p=c[c.length-1])!=null?p[0]:void 0)!=="{")))return 1;c.push(["{"]),l=j===")"?f[1]:k==="@"?h-2:h-1,this.tag(l-2)==="HERECOMMENT"&&(l-=2),n=["{","{",g[2]],n.generated=true,i.splice(l,0,n),this.detectEnd(h+2,b,a);return 2})},a.Rewriter.prototype.addImplicitParentheses=function(){var a,b;b=false,a=function(a,b){var c;c=a[0]==="OUTDENT"?b+1:b;return this.tokens.splice(c,0,["CALL_END",")",a[2]])};return this.scanTokens(function(c,d,e){var k,m,n,o,p,q,r;p=c[0],p==="CLASS"&&(b=true),n=e[d-1],m=e[d+1],k=!b&&p==="INDENT"&&m&&m.generated&&m[0]==="{"&&n&&(q=n[0],t.call(i,q)>=0),o=false,t.call(l,p)>=0&&(b=false),n&&!n.spaced&&p==="?"&&(c.call=true);if(!(k||(n!=null?n.spaced:void 0)&&(n.call||(r=n[0],t.call(i,r)>=0))&&(t.call(g,p)>=0||!(c.spaced||c.newLine)&&t.call(j,p)>=0)))return 1;e.splice(d,0,["CALL_START","(",c[2]]),this.detectEnd(d+(k?2:1),function(a,b){var c,d;if(!o&&a.fromThen)return true;p=a[0];if(p==="IF"||p==="ELSE"||p==="UNLESS"||p==="->"||p==="=>")o=true;if((p==="."||p==="?."||p==="::")&&this.tag(b-1)==="OUTDENT")return true;return!a.generated&&this.tag(b-1)!==","&&t.call(h,p)>=0&&(p!=="INDENT"||this.tag(b-2)!=="CLASS"&&(d=this.tag(b-1),t.call(f,d)<0)&&!((c=this.tokens[b+1])&&c.generated&&c[0]==="{"))},a),n[0]==="?"&&(n[0]="FUNC_EXIST");return 2})},a.Rewriter.prototype.addImplicitIndentation=function(){return this.scanTokens(function(a,b,c){var d,e,f,g,h,i,j,k;i=a[0];if(i==="TERMINATOR"&&this.tag(b+1)==="THEN"){c.splice(b,1);return 0}if(i==="ELSE"&&this.tag(b-1)!=="OUTDENT"){c.splice.apply(c,[b,0].concat(u.call(this.indentation(a))));return 2}if(i==="CATCH"&&((j=this.tag(b+2))==="OUTDENT"||j==="TERMINATOR"||j==="FINALLY")){c.splice.apply(c,[b+2,0].concat(u.call(this.indentation(a))));return 4}if(t.call(n,i)>=0&&this.tag(b+1)!=="INDENT"&&!(i==="ELSE"&&this.tag(b+1)==="IF")){h=i,k=this.indentation(a),f=k[0],g=k[1],h==="THEN"&&(f.fromThen=true),f.generated=g.generated=true,c.splice(b+1,0,f),e=function(a,b){var c;return a[1]!==";"&&(c=a[0],t.call(m,c)>=0)&&!(a[0]==="ELSE"&&(h!=="IF"&&h!=="THEN"))},d=function(a,b){return this.tokens.splice(this.tag(b-1)===","?b-1:b,0,g)},this.detectEnd(b+2,e,d),i==="THEN"&&c.splice(b,1);return 1}return 1})},a.Rewriter.prototype.tagPostfixConditionals=function(){var a;a=function(a,b){var c;return(c=a[0])==="TERMINATOR"||c==="INDENT"};return this.scanTokens(function(b,c){var d,e;if((e=b[0])!=="IF"&&e!=="UNLESS")return 1;d=b,this.detectEnd(c+1,a,function(a,b){if(a[0]!=="INDENT")return d[0]="POST_"+d[0]});return 1})},a.Rewriter.prototype.ensureBalance=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n;d={},f={},m=this.tokens;for(i=0,k=m.length;i0)throw Error("unclosed "+e+" on line "+(f[e]+1))}return this},a.Rewriter.prototype.rewriteClosingParens=function(){var a,b,c;c=[],a={};for(b in k)a[b]=0;return this.scanTokens(function(b,f,g){var h,i,j,l,m,n,o;if(o=m=b[0],t.call(e,o)>=0){c.push(b);return 1}if(t.call(d,m)<0)return 1;if(a[h=k[m]]>0){a[h]-=1,g.splice(f,1);return 0}i=c.pop(),j=i[0],l=k[j];if(m===l)return 1;a[j]+=1,n=[l,j==="INDENT"?i[1]:l],this.tag(f+2)===j?(g.splice(f+3,0,n),c.push(i)):g.splice(f,0,n);return 1})},a.Rewriter.prototype.indentation=function(a){return[["INDENT",2,a[2]],["OUTDENT",2,a[2]]]},a.Rewriter.prototype.tag=function(a){var b;return(b=this.tokens[a])!=null?b[0]:void 0},b=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["CALL_START","CALL_END"],["PARAM_START","PARAM_END"],["INDEX_START","INDEX_END"]],k={},e=[],d=[];for(q=0,r=b.length;q","=>","[","(","{","--","++"],j=["+","-"],f=["->","=>","{","[",","],h=["POST_IF","POST_UNLESS","FOR","WHILE","UNTIL","WHEN","BY","LOOP","TERMINATOR","INDENT"],n=["ELSE","->","=>","TRY","FINALLY","THEN"],m=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN"],l=["TERMINATOR","INDENT","OUTDENT"]}).call(this)},require["./lexer"]=new function(){var a=this;(function(){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U;var V=Array.prototype.indexOf||function(a){for(var b=0,c=this.length;b=0||!b&&V.call(g,c)>=0)i=c.toUpperCase(),i==="WHEN"&&(k=this.tag(),V.call(u,k)>=0)?i="LEADING_WHEN":i==="FOR"?this.seenFor=true:V.call(N,i)>=0?i="UNARY":V.call(H,i)>=0&&(i!=="INSTANCEOF"&&this.seenFor?(this.seenFor=false,i="FOR"+i):(i="RELATION",this.value()==="!"&&(this.tokens.pop(),c="!"+c)));V.call(r,c)>=0&&(b?(i="IDENTIFIER",c=new String(c),c.reserved=true):V.call(I,c)>=0&&this.identifierError(c)),b||(f.hasOwnProperty(c)&&(c=f[c]),i=function(){switch(c){case"!":return"UNARY";case"==":case"!=":return"COMPARE";case"&&":case"||":return"LOGIC";case"true":case"false":case"null":case"undefined":return"BOOL";default:return i}}()),this.token(i,c),a&&this.token(":",":");return d.length},x.prototype.numberToken=function(){var a,b;if(!(a=E.exec(this.chunk)))return 0;b=a[0],this.token("NUMBER",b);return b.length},x.prototype.stringToken=function(){var a,b;switch(this.chunk.charAt(0)){case"'":if(!(a=L.exec(this.chunk)))return 0;this.token("STRING",(b=a[0]).replace(z,"\\\n"));break;case"\"":if(!(b=this.balancedString(this.chunk,[["\"","\""],["#{","}"]])))return 0;0=0))return 0;if(!(a=G.exec(this.chunk)))return 0;c=a[0],this.token("REGEX",c==="//"?"/(?:)/":c);return c.length},x.prototype.heregexToken=function(a){var b,c,d,e,f,g,h,i,j,k,l,m;d=a[0],b=a[1],c=a[2];if(0>b.indexOf("#{")){e=b.replace(n,"").replace(/\//g,"\\/"),this.token("REGEX","/"+(e||"(?:)")+"/"+c);return d.length}this.token("IDENTIFIER","RegExp"),this.tokens.push(["CALL_START","("]),g=[];for(i=0,j=this.interpolateString(b,{regex:true}).length;ithis.indent){if(d){this.indebt=f-this.indent,this.suppressNewlines();return b.length}a=f-this.indent+this.outdebt,this.token("INDENT",a),this.indents.push(a),this.outdebt=this.indebt=0}else this.indebt=0,this.outdentToken(this.indent-f,d);this.indent=f;return b.length},x.prototype.outdentToken=function(a,b,c){var d,e;while(a>0)e=this.indents.length-1,this.indents[e]===void 0?a=0:this.indents[e]===this.outdebt?(a-=this.outdebt,this.outdebt=0):this.indents[e]=0)&&this.assignmentError();if((h=b[1])==="||"||h==="&&"){b[0]="COMPOUND_ASSIGN",b[1]+="=";return f.length}}if(f===";")c="TERMINATOR";else if(V.call(y,f)>=0)c="MATH";else if(V.call(i,f)>=0)c="COMPARE";else if(V.call(j,f)>=0)c="COMPOUND_ASSIGN";else if(V.call(N,f)>=0)c="UNARY";else if(V.call(K,f)>=0)c="SHIFT";else if(V.call(w,f)>=0||f==="?"&&(b!=null?b.spaced:void 0))c="LOGIC";else if(b&&!b.spaced)if(f==="("&&(k=b[0],V.call(d,k)>=0))b[0]==="?"&&(b[0]="FUNC_EXIST"),c="CALL_START";else if(f==="["&&(l=b[0],V.call(p,l)>=0)){c="INDEX_START";switch(b[0]){case"?":b[0]="INDEX_SOAK";break;case"::":b[0]="INDEX_PROTO"}}this.token(c,f);return f.length},x.prototype.sanitizeHeredoc=function(a,b){var c,d,e,f,g;e=b.indent,d=b.herecomment;if(d&&0>a.indexOf("\n"))return a;if(!d)while(f=l.exec(a)){c=f[1];if(e===null||0<(g=c.length)&&g1&&(i.unshift(["(","("]),i.push([")",")"])),m.push(["TOKENS",i])),e+=c.length,j=e+1}e>j&&j1)&&this.token("(","(");for(e=0,o=m.length;e|[-+*\/%<>&|^!?=]=|>>>=?|([-+:])\1|([&|<>])\2=?|\?\.|\.{3})/,O=/^[^\n\S]+/,h=/^###([^#][\s\S]*?)(?:###[^\n\S]*\n|(?:###)?$)|^(?:\s*#(?!##[^#]).*)+/,e=/^[-=]>/,A=/^(?:\n[^\n\S]*)+/,L=/^'[^\\']*(?:\\.[^\\']*)*'/,q=/^`[^\\`]*(?:\\.[^\\`]*)*`/,G=/^\/(?!\s)[^[\/\n\\]*(?:(?:\\[\s\S]|\[[^\]\n\\]*(?:\\[\s\S][^\]\n\\]*)*])[^[\/\n\\]*)*\/[imgy]{0,4}(?!\w)/,m=/^\/{3}([\s\S]+?)\/{3}([imgy]{0,4})(?!\w)/,n=/\s+(?:#.*)?/g,z=/\n/g,l=/\n+([^\n\S]*)/g,b=/^\s*@?[$A-Za-z_][$\w]*[^\n\S]*?[:=][^:=>]/,v=/^\s*(?:,|\??\.(?!\.)|::)/,t=/^\s+/,M=/\s+$/,D=/^(?:[-+*&|\/%=<>!.\\][<>=&|]*|and|or|is(?:nt)?|n(?:ot|ew)|delete|typeof|instanceof)$/,j=["-=","+=","/=","*=","%=","||=","&&=","?=","<<=",">>=",">>>=","&=","^=","|="],N=["!","~","NEW","TYPEOF","DELETE"],w=["&&","||","&","|","^"],K=["<<",">>",">>>"],i=["==","!=","<",">","<=",">="],y=["*","/","%"],H=["IN","OF","INSTANCEOF"],c=["TRUE","FALSE","NULL","UNDEFINED"],B=["NUMBER","REGEX","BOOL","++","--","]"],C=B.concat(")","}","THIS","IDENTIFIER","STRING"),d=["IDENTIFIER","STRING","REGEX",")","]","}","?","::","@","THIS","SUPER"],p=d.concat("NUMBER","BOOL"),u=["INDENT","OUTDENT","TERMINATOR"]}).call(this)},require["./parser"]=new function(){var a=this;var b=function(){var a={trace:function b(){},yy:{},symbols_:{error:2,Root:3,TERMINATOR:4,Body:5,Block:6,Line:7,Expression:8,Statement:9,Return:10,Throw:11,BREAK:12,CONTINUE:13,DEBUGGER:14,Comment:15,Value:16,Invocation:17,Code:18,Operation:19,Assign:20,If:21,Try:22,While:23,For:24,Switch:25,Class:26,INDENT:27,OUTDENT:28,Identifier:29,IDENTIFIER:30,AlphaNumeric:31,NUMBER:32,STRING:33,Literal:34,JS:35,REGEX:36,BOOL:37,Assignable:38,"=":39,AssignObj:40,ObjAssignable:41,":":42,ThisProperty:43,Parenthetical:44,RETURN:45,HERECOMMENT:46,PARAM_START:47,ParamList:48,PARAM_END:49,FuncGlyph:50,"->":51,"=>":52,OptComma:53,",":54,Param:55,ParamVar:56,"...":57,Array:58,Object:59,Splat:60,SimpleAssignable:61,Accessor:62,This:63,".":64,"?.":65,"::":66,Index:67,INDEX_START:68,INDEX_END:69,INDEX_SOAK:70,INDEX_PROTO:71,"{":72,AssignList:73,"}":74,CLASS:75,EXTENDS:76,ClassBody:77,ClassAssign:78,OptFuncExist:79,Arguments:80,SUPER:81,FUNC_EXIST:82,CALL_START:83,CALL_END:84,ArgList:85,THIS:86,"@":87,"[":88,"]":89,Arg:90,SimpleArgs:91,TRY:92,Catch:93,FINALLY:94,CATCH:95,THROW:96,"(":97,")":98,WhileSource:99,WHILE:100,WHEN:101,UNTIL:102,Loop:103,LOOP:104,ForBody:105,ForValue:106,ForIn:107,FORIN:108,BY:109,ForOf:110,FOROF:111,ForTo:112,TO:113,FOR:114,ALL:115,FROM:116,SWITCH:117,Whens:118,ELSE:119,When:120,LEADING_WHEN:121,IfBlock:122,IF:123,UNLESS:124,POST_IF:125,POST_UNLESS:126,UNARY:127,"-":128,"+":129,"--":130,"++":131,"?":132,MATH:133,SHIFT:134,COMPARE:135,LOGIC:136,RELATION:137,COMPOUND_ASSIGN:138,$accept:0,$end:1},terminals_:{2:"error",4:"TERMINATOR",12:"BREAK",13:"CONTINUE",14:"DEBUGGER",27:"INDENT",28:"OUTDENT",30:"IDENTIFIER",32:"NUMBER",33:"STRING",35:"JS",36:"REGEX",37:"BOOL",39:"=",42:":",45:"RETURN",46:"HERECOMMENT",47:"PARAM_START",49:"PARAM_END",51:"->",52:"=>",54:",",57:"...",64:".",65:"?.",66:"::",68:"INDEX_START",69:"INDEX_END",70:"INDEX_SOAK",71:"INDEX_PROTO",72:"{",74:"}",75:"CLASS",76:"EXTENDS",81:"SUPER",82:"FUNC_EXIST",83:"CALL_START",84:"CALL_END",86:"THIS",87:"@",88:"[",89:"]",92:"TRY",94:"FINALLY",95:"CATCH",96:"THROW",97:"(",98:")",100:"WHILE",101:"WHEN",102:"UNTIL",104:"LOOP",108:"FORIN",109:"BY",111:"FOROF",113:"TO",114:"FOR",115:"ALL",116:"FROM",117:"SWITCH",119:"ELSE",121:"LEADING_WHEN",123:"IF",124:"UNLESS",125:"POST_IF",126:"POST_UNLESS",127:"UNARY",128:"-",129:"+",130:"--",131:"++",132:"?",133:"MATH",134:"SHIFT",135:"COMPARE",136:"LOGIC",137:"RELATION",138:"COMPOUND_ASSIGN"},productions_:[0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[29,1],[31,1],[31,1],[34,1],[34,1],[34,1],[34,1],[20,3],[20,5],[40,1],[40,3],[40,5],[40,1],[40,1],[41,1],[41,1],[41,1],[10,2],[10,1],[15,1],[18,5],[18,2],[50,1],[50,1],[53,0],[53,1],[48,0],[48,1],[48,3],[55,1],[55,2],[55,3],[56,1],[56,1],[56,1],[56,1],[60,2],[61,1],[61,2],[61,2],[61,1],[38,1],[38,1],[38,1],[16,1],[16,1],[16,1],[16,1],[62,2],[62,2],[62,2],[62,1],[62,1],[67,3],[67,2],[67,2],[59,4],[73,0],[73,1],[73,3],[73,4],[73,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[78,1],[78,3],[78,5],[77,0],[77,1],[77,3],[77,3],[17,3],[17,3],[17,1],[17,2],[79,0],[79,1],[80,2],[80,4],[63,1],[63,1],[43,2],[58,2],[58,4],[85,1],[85,3],[85,4],[85,4],[85,6],[90,1],[90,1],[91,1],[91,3],[22,2],[22,3],[22,4],[22,5],[93,3],[11,2],[44,3],[99,2],[99,4],[99,2],[99,4],[23,2],[23,2],[23,2],[23,1],[103,2],[103,2],[24,2],[24,2],[24,2],[106,1],[106,1],[106,1],[107,2],[107,4],[107,4],[107,6],[110,2],[110,4],[112,2],[112,4],[112,4],[112,6],[105,3],[105,5],[105,3],[105,5],[105,4],[105,6],[105,5],[25,5],[25,7],[25,4],[25,6],[118,1],[118,2],[120,3],[120,4],[122,3],[122,3],[122,5],[122,3],[21,1],[21,3],[21,3],[21,3],[21,3],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,5],[19,3]],performAction:function c(a,b,c,d){var e=arguments[5],f=arguments[5].length;switch(arguments[4]){case 1:return this.$=new d.Expressions;case 2:return this.$=new d.Expressions;case 3:return this.$=e[f-1+1-1];case 4:return this.$=e[f-2+1-1];case 5:this.$=d.Expressions.wrap([e[f-1+1-1]]);break;case 6:this.$=e[f-3+1-1].push(e[f-3+3-1]);break;case 7:this.$=e[f-2+1-1];break;case 8:this.$=e[f-1+1-1];break;case 9:this.$=e[f-1+1-1];break;case 10:this.$=e[f-1+1-1];break;case 11:this.$=e[f-1+1-1];break;case 12:this.$=new d.Literal(e[f-1+1-1]);break;case 13:this.$=new d.Literal(e[f-1+1-1]);break;case 14:this.$=new d.Literal(e[f-1+1-1]);break;case 15:this.$=e[f-1+1-1];break;case 16:this.$=e[f-1+1-1];break;case 17:this.$=e[f-1+1-1];break;case 18:this.$=e[f-1+1-1];break;case 19:this.$=e[f-1+1-1];break;case 20:this.$=e[f-1+1-1];break;case 21:this.$=e[f-1+1-1];break;case 22:this.$=e[f-1+1-1];break;case 23:this.$=e[f-1+1-1];break;case 24:this.$=e[f-1+1-1];break;case 25:this.$=e[f-1+1-1];break;case 26:this.$=e[f-1+1-1];break;case 27:this.$=e[f-3+2-1];break;case 28:this.$=new d.Expressions;break;case 29:this.$=d.Expressions.wrap([e[f-2+2-1]]);break;case 30:this.$=new d.Literal(e[f-1+1-1]);break;case 31:this.$=new d.Literal(e[f-1+1-1]);break;case 32:this.$=new d.Literal(e[f-1+1-1]);break;case 33:this.$=e[f-1+1-1];break;case 34:this.$=new d.Literal(e[f-1+1-1]);break;case 35:this.$=new d.Literal(e[f-1+1-1]);break;case 36:this.$=new d.Literal(e[f-1+1-1]==="undefined"?"void 0":e[f-1+1-1]);break;case 37:this.$=new d.Assign(e[f-3+1-1],e[f-3+3-1]);break;case 38:this.$=new d.Assign(e[f-5+1-1],e[f-5+4-1]);break;case 39:this.$=new d.Value(e[f-1+1-1]);break;case 40:this.$=new d.Assign(new d.Value(e[f-3+1-1]),e[f-3+3-1],"object");break;case 41:this.$=new d.Assign(new d.Value(e[f-5+1-1]),e[f-5+4-1],"object");break;case 42:this.$=e[f-1+1-1];break;case 43:this.$=e[f-1+1-1];break;case 44:this.$=e[f-1+1-1];break;case 45:this.$=e[f-1+1-1];break;case 46:this.$=e[f-1+1-1];break;case 47:this.$=new d.Return(e[f-2+2-1]);break;case 48:this.$=new d.Return;break;case 49:this.$=new d.Comment(e[f-1+1-1]);break;case 50:this.$=new d.Code(e[f-5+2-1],e[f-5+5-1],e[f-5+4-1]);break;case 51:this.$=new d.Code([],e[f-2+2-1],e[f-2+1-1]);break;case 52:this.$="func";break;case 53:this.$="boundfunc";break;case 54:this.$=e[f-1+1-1];break;case 55:this.$=e[f-1+1-1];break;case 56:this.$=[];break;case 57:this.$=[e[f-1+1-1]];break;case 58:this.$=e[f-3+1-1].concat(e[f-3+3-1]);break;case 59:this.$=new d.Param(e[f-1+1-1]);break;case 60:this.$=new d.Param(e[f-2+1-1],null,true);break;case 61:this.$=new d.Param(e[f-3+1-1],e[f-3+3-1]);break;case 62:this.$=e[f-1+1-1];break;case 63:this.$=e[f-1+1-1];break;case 64:this.$=e[f-1+1-1];break;case 65:this.$=e[f-1+1-1];break;case 66:this.$=new d.Splat(e[f-2+1-1]);break;case 67:this.$=new d.Value(e[f-1+1-1]);break;case 68:this.$=e[f-2+1-1].push(e[f-2+2-1]);break;case 69:this.$=new d.Value(e[f-2+1-1],[e[f-2+2-1]]);break;case 70:this.$=e[f-1+1-1];break;case 71:this.$=e[f-1+1-1];break;case 72:this.$=new d.Value(e[f-1+1-1]);break;case 73:this.$=new d.Value(e[f-1+1-1]);break;case 74:this.$=e[f-1+1-1];break;case 75:this.$=new d.Value(e[f-1+1-1]);break;case 76:this.$=new d.Value(e[f-1+1-1]);break;case 77:this.$=e[f-1+1-1];break;case 78:this.$=new d.Accessor(e[f-2+2-1]);break;case 79:this.$=new d.Accessor(e[f-2+2-1],"soak");break;case 80:this.$=new d.Accessor(e[f-2+2-1],"proto");break;case 81:this.$=new d.Accessor(new d.Literal("prototype"));break;case 82:this.$=e[f-1+1-1];break;case 83:this.$=new d.Index(e[f-3+2-1]);break;case 84:this.$=d.extend(e[f-2+2-1],{soak:true});break;case 85:this.$=d.extend(e[f-2+2-1],{proto:true});break;case 86:this.$=new d.Obj(e[f-4+2-1]);break;case 87:this.$=[];break;case 88:this.$=[e[f-1+1-1]];break;case 89:this.$=e[f-3+1-1].concat(e[f-3+3-1]);break;case 90:this.$=e[f-4+1-1].concat(e[f-4+4-1]);break;case 91:this.$=e[f-6+1-1].concat(e[f-6+4-1]);break;case 92:this.$=new d.Class(e[f-2+2-1]);break;case 93:this.$=new d.Class(e[f-4+2-1],e[f-4+4-1]);break;case 94:this.$=new d.Class(e[f-5+2-1],null,e[f-5+4-1]);break;case 95:this.$=new d.Class(e[f-7+2-1],e[f-7+4-1],e[f-7+6-1]);break;case 96:this.$=new d.Class(null,null,e[f-4+3-1]);break;case 97:this.$=new d.Class(null,null,new d.Expressions);break;case 98:this.$=new d.Class(null,e[f-3+3-1],new d.Expressions);break;case 99:this.$=new d.Class(null,e[f-6+3-1],e[f-6+5-1]);break;case 100:this.$=e[f-1+1-1];break;case 101:this.$=new d.Assign(new d.Value(e[f-3+1-1]),e[f-3+3-1],"this");break;case 102:this.$=new d.Assign(new d.Value(e[f-5+1-1]),e[f-5+4-1],"this");break;case 103:this.$=[];break;case 104:this.$=[e[f-1+1-1]];break;case 105:this.$=e[f-3+1-1].concat(e[f-3+3-1]);break;case 106:this.$=e[f-3+2-1];break;case 107:this.$=new d.Call(e[f-3+1-1],e[f-3+3-1],e[f-3+2-1]);break;case 108:this.$=new d.Call(e[f-3+1-1],e[f-3+3-1],e[f-3+2-1]);break;case 109:this.$=new d.Call("super",[new d.Splat(new d.Literal("arguments"))]);break;case 110:this.$=new d.Call("super",e[f-2+2-1]);break;case 111:this.$=false;break;case 112:this.$=true;break;case 113:this.$=[];break;case 114:this.$=e[f-4+2-1];break;case 115:this.$=new d.Value(new d.Literal("this"));break;case 116:this.$=new d.Value(new d.Literal("this"));break;case 117:this.$=new d.Value(new d.Literal("this"),[new d.Accessor(e[f-2+2-1])],"this");break;case 118:this.$=new d.Arr([]);break;case 119:this.$=new d.Arr(e[f-4+2-1]);break;case 120:this.$=[e[f-1+1-1]];break;case 121:this.$=e[f-3+1-1].concat(e[f-3+3-1]);break;case 122:this.$=e[f-4+1-1].concat(e[f-4+4-1]);break;case 123:this.$=e[f-4+2-1];break;case 124:this.$=e[f-6+1-1].concat(e[f-6+4-1]);break;case 125:this.$=e[f-1+1-1];break;case 126:this.$=e[f-1+1-1];break;case 127:this.$=e[f-1+1-1];break;case 128:this.$=[].concat(e[f-3+1-1],e[f-3+3-1]);break;case 129:this.$=new d.Try(e[f-2+2-1]);break;case 130:this.$=new d.Try(e[f-3+2-1],e[f-3+3-1][0],e[f-3+3-1][1]);break;case 131:this.$=new d.Try(e[f-4+2-1],null,null,e[f-4+4-1]);break;case 132:this.$=new d.Try(e[f-5+2-1],e[f-5+3-1][0],e[f-5+3-1][1],e[f-5+5-1]);break;case 133:this.$=[e[f-3+2-1],e[f-3+3-1]];break;case 134:this.$=new d.Throw(e[f-2+2-1]);break;case 135:this.$=new d.Parens(e[f-3+2-1]);break;case 136:this.$=new d.While(e[f-2+2-1]);break;case 137:this.$=new d.While(e[f-4+2-1],{guard:e[f-4+4-1]});break;case 138:this.$=new d.While(e[f-2+2-1],{invert:true});break;case 139:this.$=new d.While(e[f-4+2-1],{invert:true,guard:e[f-4+4-1]});break;case 140:this.$=e[f-2+1-1].addBody(e[f-2+2-1]);break;case 141:this.$=e[f-2+2-1].addBody(d.Expressions.wrap([e[f-2+1-1]]));break;case 142:this.$=e[f-2+2-1].addBody(d.Expressions.wrap([e[f-2+1-1]]));break;case 143:this.$=e[f-1+1-1];break;case 144:this.$=(new d.While(new d.Literal("true"))).addBody(e[f-2+2-1]);break;case 145:this.$=(new d.While(new d.Literal("true"))).addBody(d.Expressions.wrap([e[f-2+2-1]]));break;case 146:this.$=new d.For(e[f-2+1-1],e[f-2+2-1]);break;case 147:this.$=new d.For(e[f-2+1-1],e[f-2+2-1]);break;case 148:this.$=new d.For(e[f-2+2-1],e[f-2+1-1]);break;case 149:this.$=e[f-1+1-1];break;case 150:this.$=new d.Value(e[f-1+1-1]);break;case 151:this.$=new d.Value(e[f-1+1-1]);break;case 152:this.$={source:e[f-2+2-1]};break;case 153:this.$={source:e[f-4+2-1],guard:e[f-4+4-1]};break;case 154:this.$={source:e[f-4+2-1],step:e[f-4+4-1]};break;case 155:this.$={source:e[f-6+2-1],step:e[f-6+4-1],guard:e[f-6+6-1]};break;case 156:this.$={object:true,source:e[f-2+2-1]};break;case 157:this.$={object:true,source:e[f-4+2-1],guard:e[f-4+4-1]};break;case 158:this.$={to:e[f-2+2-1]};break;case 159:this.$={to:e[f-4+2-1],guard:e[f-4+4-1]};break;case 160:this.$={to:e[f-4+2-1],step:e[f-4+4-1]};break;case 161:this.$={to:e[f-6+2-1],step:e[f-6+4-1],guard:e[f-6+6-1]};break;case 162:this.$=d.extend(e[f-3+3-1],{name:e[f-3+2-1]});break;case 163:this.$=d.extend(e[f-5+5-1],{name:e[f-5+2-1],index:e[f-5+4-1]});break;case 164:this.$=d.extend(e[f-3+3-1],{index:e[f-3+2-1]});break;case 165:this.$=d.extend(e[f-5+5-1],{index:e[f-5+2-1],name:e[f-5+4-1]});break;case 166:this.$=d.extend(e[f-4+4-1],{raw:true,index:e[f-4+3-1]});break;case 167:this.$=d.extend(e[f-6+6-1],{raw:true,index:e[f-6+3-1],name:e[f-6+5-1]});break;case 168:this.$=d.extend(e[f-5+5-1],{index:e[f-5+2-1],from:e[f-5+4-1]});break;case 169:this.$=new d.Switch(e[f-5+2-1],e[f-5+4-1]);break;case 170:this.$=new d.Switch(e[f-7+2-1],e[f-7+4-1],e[f-7+6-1]);break;case 171:this.$=new d.Switch(null,e[f-4+3-1]);break;case 172:this.$=new d.Switch(null,e[f-6+3-1],e[f-6+5-1]);break;case 173:this.$=e[f-1+1-1];break;case 174:this.$=e[f-2+1-1].concat(e[f-2+2-1]);break;case 175:this.$=[[e[f-3+2-1],e[f-3+3-1]]];break;case 176:this.$=[[e[f-4+2-1],e[f-4+3-1]]];break;case 177:this.$=new d.If(e[f-3+2-1],e[f-3+3-1]);break;case 178:this.$=new d.If(e[f-3+2-1],e[f-3+3-1],{invert:true});break;case 179:this.$=e[f-5+1-1].addElse(new d.If(e[f-5+4-1],e[f-5+5-1]));break;case 180:this.$=e[f-3+1-1].addElse(e[f-3+3-1]);break;case 181:this.$=e[f-1+1-1];break;case 182:this.$=new d.If(e[f-3+3-1],d.Expressions.wrap([e[f-3+1-1]]),{statement:true});break;case 183:this.$=new d.If(e[f-3+3-1],d.Expressions.wrap([e[f-3+1-1]]),{statement:true});break;case 184:this.$=new d.If(e[f-3+3-1],d.Expressions.wrap([e[f-3+1-1]]),{statement:true,invert:true});break;case 185:this.$=new d.If(e[f-3+3-1],d.Expressions.wrap([e[f-3+1-1]]),{statement:true,invert:true});break;case 186:this.$=new d.Op(e[f-2+1-1],e[f-2+2-1]);break;case 187:this.$=new d.Op("-",e[f-2+2-1]);break;case 188:this.$=new d.Op("+",e[f-2+2-1]);break;case 189:this.$=new d.Op("--",e[f-2+2-1]);break;case 190:this.$=new d.Op("++",e[f-2+2-1]);break;case 191:this.$=new d.Op("--",e[f-2+1-1],null,true);break;case 192:this.$=new d.Op("++",e[f-2+1-1],null,true);break;case 193:this.$=new d.Existence(e[f-2+1-1]);break;case 194:this.$=new d.Op("+",e[f-3+1-1],e[f-3+3-1]);break;case 195:this.$=new d.Op("-",e[f-3+1-1],e[f-3+3-1]);break;case 196:this.$=new d.Op(e[f-3+2-1],e[f-3+1-1],e[f-3+3-1]);break;case 197:this.$=new d.Op(e[f-3+2-1],e[f-3+1-1],e[f-3+3-1]);break;case 198:this.$=new d.Op(e[f-3+2-1],e[f-3+1-1],e[f-3+3-1]);break;case 199:this.$=new d.Op(e[f-3+2-1],e[f-3+1-1],e[f-3+3-1]);break;case 200:this.$=function(){return e[f-3+2-1].charAt(0)==="!"?(new d.Op(e[f-3+2-1].slice(1),e[f-3+1-1],e[f-3+3-1])).invert():new d.Op(e[f-3+2-1],e[f-3+1-1],e[f-3+3-1])}();break;case 201:this.$=new d.Assign(e[f-3+1-1],e[f-3+3-1],e[f-3+2-1]);break;case 202:this.$=new d.Assign(e[f-5+1-1],e[f-5+4-1],e[f-5+2-1]);break;case 203:this.$=new d.Extends(e[f-3+1-1],e[f-3+3-1])}},table:[{1:[2,1],3:1,4:[1,2],5:3,6:4,7:5,8:7,9:8,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,6],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[3]},{1:[2,2],15:73,46:[1,48]},{1:[2,3],4:[1,74]},{4:[1,75]},{1:[2,5],4:[2,5],28:[2,5]},{5:76,7:5,8:7,9:8,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,28:[1,77],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,8],4:[2,8],28:[2,8],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,9],4:[2,9],28:[2,9],99:92,100:[1,64],102:[1,65],105:93,114:[1,67],125:[1,90],126:[1,91]},{1:[2,16],4:[2,16],27:[2,16],28:[2,16],49:[2,16],54:[2,16],57:[2,16],62:95,64:[1,97],65:[1,98],66:[1,99],67:100,68:[1,101],69:[2,16],70:[1,102],71:[1,103],74:[2,16],79:94,82:[1,96],83:[2,111],84:[2,16],89:[2,16],98:[2,16],100:[2,16],101:[2,16],102:[2,16],109:[2,16],113:[2,16],114:[2,16],125:[2,16],126:[2,16],128:[2,16],129:[2,16],132:[2,16],133:[2,16],134:[2,16],135:[2,16],136:[2,16],137:[2,16]},{1:[2,17],4:[2,17],27:[2,17],28:[2,17],49:[2,17],54:[2,17],57:[2,17],62:105,64:[1,97],65:[1,98],66:[1,99],67:100,68:[1,101],69:[2,17],70:[1,102],71:[1,103],74:[2,17],79:104,82:[1,96],83:[2,111],84:[2,17],89:[2,17],98:[2,17],100:[2,17],101:[2,17],102:[2,17],109:[2,17],113:[2,17],114:[2,17],125:[2,17],126:[2,17],128:[2,17],129:[2,17],132:[2,17],133:[2,17],134:[2,17],135:[2,17],136:[2,17],137:[2,17]},{1:[2,18],4:[2,18],27:[2,18],28:[2,18],49:[2,18],54:[2,18],57:[2,18],69:[2,18],74:[2,18],84:[2,18],89:[2,18],98:[2,18],100:[2,18],101:[2,18],102:[2,18],109:[2,18],113:[2,18],114:[2,18],125:[2,18],126:[2,18],128:[2,18],129:[2,18],132:[2,18],133:[2,18],134:[2,18],135:[2,18],136:[2,18],137:[2,18]},{1:[2,19],4:[2,19],27:[2,19],28:[2,19],49:[2,19],54:[2,19],57:[2,19],69:[2,19],74:[2,19],84:[2,19],89:[2,19],98:[2,19],100:[2,19],101:[2,19],102:[2,19],109:[2,19],113:[2,19],114:[2,19],125:[2,19],126:[2,19],128:[2,19],129:[2,19],132:[2,19],133:[2,19],134:[2,19],135:[2,19],136:[2,19],137:[2,19]},{1:[2,20],4:[2,20],27:[2,20],28:[2,20],49:[2,20],54:[2,20],57:[2,20],69:[2,20],74:[2,20],84:[2,20],89:[2,20],98:[2,20],100:[2,20],101:[2,20],102:[2,20],109:[2,20],113:[2,20],114:[2,20],125:[2,20],126:[2,20],128:[2,20],129:[2,20],132:[2,20],133:[2,20],134:[2,20],135:[2,20],136:[2,20],137:[2,20]},{1:[2,21],4:[2,21],27:[2,21],28:[2,21],49:[2,21],54:[2,21],57:[2,21],69:[2,21],74:[2,21],84:[2,21],89:[2,21],98:[2,21],100:[2,21],101:[2,21],102:[2,21],109:[2,21],113:[2,21],114:[2,21],125:[2,21],126:[2,21],128:[2,21],129:[2,21],132:[2,21],133:[2,21],134:[2,21],135:[2,21],136:[2,21],137:[2,21]},{1:[2,22],4:[2,22],27:[2,22],28:[2,22],49:[2,22],54:[2,22],57:[2,22],69:[2,22],74:[2,22],84:[2,22],89:[2,22],98:[2,22],100:[2,22],101:[2,22],102:[2,22],109:[2,22],113:[2,22],114:[2,22],125:[2,22],126:[2,22],128:[2,22],129:[2,22],132:[2,22],133:[2,22],134:[2,22],135:[2,22],136:[2,22],137:[2,22]},{1:[2,23],4:[2,23],27:[2,23],28:[2,23],49:[2,23],54:[2,23],57:[2,23],69:[2,23],74:[2,23],84:[2,23],89:[2,23],98:[2,23],100:[2,23],101:[2,23],102:[2,23],109:[2,23],113:[2,23],114:[2,23],125:[2,23],126:[2,23],128:[2,23],129:[2,23],132:[2,23],133:[2,23],134:[2,23],135:[2,23],136:[2,23],137:[2,23]},{1:[2,24],4:[2,24],27:[2,24],28:[2,24],49:[2,24],54:[2,24],57:[2,24],69:[2,24],74:[2,24],84:[2,24],89:[2,24],98:[2,24],100:[2,24],101:[2,24],102:[2,24],109:[2,24],113:[2,24],114:[2,24],125:[2,24],126:[2,24],128:[2,24],129:[2,24],132:[2,24],133:[2,24],134:[2,24],135:[2,24],136:[2,24],137:[2,24]},{1:[2,25],4:[2,25],27:[2,25],28:[2,25],49:[2,25],54:[2,25],57:[2,25],69:[2,25],74:[2,25],84:[2,25],89:[2,25],98:[2,25],100:[2,25],101:[2,25],102:[2,25],109:[2,25],113:[2,25],114:[2,25],125:[2,25],126:[2,25],128:[2,25],129:[2,25],132:[2,25],133:[2,25],134:[2,25],135:[2,25],136:[2,25],137:[2,25]},{1:[2,26],4:[2,26],27:[2,26],28:[2,26],49:[2,26],54:[2,26],57:[2,26],69:[2,26],74:[2,26],84:[2,26],89:[2,26],98:[2,26],100:[2,26],101:[2,26],102:[2,26],109:[2,26],113:[2,26],114:[2,26],125:[2,26],126:[2,26],128:[2,26],129:[2,26],132:[2,26],133:[2,26],134:[2,26],135:[2,26],136:[2,26],137:[2,26]},{1:[2,10],4:[2,10],28:[2,10],100:[2,10],102:[2,10],114:[2,10],125:[2,10],126:[2,10]},{1:[2,11],4:[2,11],28:[2,11],100:[2,11],102:[2,11],114:[2,11],125:[2,11],126:[2,11]},{1:[2,12],4:[2,12],28:[2,12],100:[2,12],102:[2,12],114:[2,12],125:[2,12],126:[2,12]},{1:[2,13],4:[2,13],28:[2,13],100:[2,13],102:[2,13],114:[2,13],125:[2,13],126:[2,13]},{1:[2,14],4:[2,14],28:[2,14],100:[2,14],102:[2,14],114:[2,14],125:[2,14],126:[2,14]},{1:[2,15],4:[2,15],28:[2,15],100:[2,15],102:[2,15],114:[2,15],125:[2,15],126:[2,15]},{1:[2,74],4:[2,74],27:[2,74],28:[2,74],39:[1,106],49:[2,74],54:[2,74],57:[2,74],64:[2,74],65:[2,74],66:[2,74],68:[2,74],69:[2,74],70:[2,74],71:[2,74],74:[2,74],82:[2,74],83:[2,74],84:[2,74],89:[2,74],98:[2,74],100:[2,74],101:[2,74],102:[2,74],109:[2,74],113:[2,74],114:[2,74],125:[2,74],126:[2,74],128:[2,74],129:[2,74],132:[2,74],133:[2,74],134:[2,74],135:[2,74],136:[2,74],137:[2,74]},{1:[2,75],4:[2,75],27:[2,75],28:[2,75],49:[2,75],54:[2,75],57:[2,75],64:[2,75],65:[2,75],66:[2,75],68:[2,75],69:[2,75],70:[2,75],71:[2,75],74:[2,75],82:[2,75],83:[2,75],84:[2,75],89:[2,75],98:[2,75],100:[2,75],101:[2,75],102:[2,75],109:[2,75],113:[2,75],114:[2,75],125:[2,75],126:[2,75],128:[2,75],129:[2,75],132:[2,75],133:[2,75],134:[2,75],135:[2,75],136:[2,75],137:[2,75]},{1:[2,76],4:[2,76],27:[2,76],28:[2,76],49:[2,76],54:[2,76],57:[2,76],64:[2,76],65:[2,76],66:[2,76],68:[2,76],69:[2,76],70:[2,76],71:[2,76],74:[2,76],82:[2,76],83:[2,76],84:[2,76],89:[2,76],98:[2,76],100:[2,76],101:[2,76],102:[2,76],109:[2,76],113:[2,76],114:[2,76],125:[2,76],126:[2,76],128:[2,76],129:[2,76],132:[2,76],133:[2,76],134:[2,76],135:[2,76],136:[2,76],137:[2,76]},{1:[2,77],4:[2,77],27:[2,77],28:[2,77],49:[2,77],54:[2,77],57:[2,77],64:[2,77],65:[2,77],66:[2,77],68:[2,77],69:[2,77],70:[2,77],71:[2,77],74:[2,77],82:[2,77],83:[2,77],84:[2,77],89:[2,77],98:[2,77],100:[2,77],101:[2,77],102:[2,77],109:[2,77],113:[2,77],114:[2,77],125:[2,77],126:[2,77],128:[2,77],129:[2,77],132:[2,77],133:[2,77],134:[2,77],135:[2,77],136:[2,77],137:[2,77]},{1:[2,109],4:[2,109],27:[2,109],28:[2,109],49:[2,109],54:[2,109],57:[2,109],64:[2,109],65:[2,109],66:[2,109],68:[2,109],69:[2,109],70:[2,109],71:[2,109],74:[2,109],80:107,82:[2,109],83:[1,108],84:[2,109],89:[2,109],98:[2,109],100:[2,109],101:[2,109],102:[2,109],109:[2,109],113:[2,109],114:[2,109],125:[2,109],126:[2,109],128:[2,109],129:[2,109],132:[2,109],133:[2,109],134:[2,109],135:[2,109],136:[2,109],137:[2,109]},{29:112,30:[1,72],43:113,48:109,49:[2,56],54:[2,56],55:110,56:111,58:114,59:115,72:[1,69],87:[1,116],88:[1,68]},{4:[1,118],6:117,27:[1,6]},{8:119,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:121,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:122,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{16:124,17:125,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:126,43:61,44:28,58:49,59:50,61:123,63:29,72:[1,69],81:[1,30],86:[1,56],87:[1,57],88:[1,68],97:[1,55]},{16:124,17:125,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:126,43:61,44:28,58:49,59:50,61:127,63:29,72:[1,69],81:[1,30],86:[1,56],87:[1,57],88:[1,68],97:[1,55]},{1:[2,71],4:[2,71],27:[2,71],28:[2,71],39:[2,71],49:[2,71],54:[2,71],57:[2,71],64:[2,71],65:[2,71],66:[2,71],68:[2,71],69:[2,71],70:[2,71],71:[2,71],74:[2,71],76:[1,131],82:[2,71],83:[2,71],84:[2,71],89:[2,71],98:[2,71],100:[2,71],101:[2,71],102:[2,71],109:[2,71],113:[2,71],114:[2,71],125:[2,71],126:[2,71],128:[2,71],129:[2,71],130:[1,128],131:[1,129],132:[2,71],133:[2,71],134:[2,71],135:[2,71],136:[2,71],137:[2,71],138:[1,130]},{1:[2,181],4:[2,181],27:[2,181],28:[2,181],49:[2,181],54:[2,181],57:[2,181],69:[2,181],74:[2,181],84:[2,181],89:[2,181],98:[2,181],100:[2,181],101:[2,181],102:[2,181],109:[2,181],113:[2,181],114:[2,181],119:[1,132],125:[2,181],126:[2,181],128:[2,181],129:[2,181],132:[2,181],133:[2,181],134:[2,181],135:[2,181],136:[2,181],137:[2,181]},{4:[1,118],6:133,27:[1,6]},{4:[1,118],6:134,27:[1,6]},{1:[2,143],4:[2,143],27:[2,143],28:[2,143],49:[2,143],54:[2,143],57:[2,143],69:[2,143],74:[2,143],84:[2,143],89:[2,143],98:[2,143],100:[2,143],101:[2,143],102:[2,143],109:[2,143],113:[2,143],114:[2,143],125:[2,143],126:[2,143],128:[2,143],129:[2,143],132:[2,143],133:[2,143],134:[2,143],135:[2,143],136:[2,143],137:[2,143]},{4:[1,118],6:135,27:[1,6]},{8:136,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,137],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,97],4:[2,97],16:124,17:125,27:[1,139],28:[2,97],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:126,43:61,44:28,49:[2,97],54:[2,97],57:[2,97],58:49,59:50,61:138,63:29,69:[2,97],72:[1,69],74:[2,97],76:[1,140],81:[1,30],84:[2,97],86:[1,56],87:[1,57],88:[1,68],89:[2,97],97:[1,55],98:[2,97],100:[2,97],101:[2,97],102:[2,97],109:[2,97],113:[2,97],114:[2,97],125:[2,97],126:[2,97],128:[2,97],129:[2,97],132:[2,97],133:[2,97],134:[2,97],135:[2,97],136:[2,97],137:[2,97]},{1:[2,48],4:[2,48],8:141,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,28:[2,48],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[2,48],102:[2,48],103:42,104:[1,66],105:43,114:[2,48],117:[1,44],122:39,123:[1,62],124:[1,63],125:[2,48],126:[2,48],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:142,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,49],4:[2,49],27:[2,49],28:[2,49],49:[2,49],54:[2,49],57:[2,49],69:[2,49],74:[2,49],84:[2,49],89:[2,49],94:[2,49],95:[2,49],98:[2,49],100:[2,49],101:[2,49],102:[2,49],109:[2,49],113:[2,49],114:[2,49],119:[2,49],121:[2,49],125:[2,49],126:[2,49],128:[2,49],129:[2,49],132:[2,49],133:[2,49],134:[2,49],135:[2,49],136:[2,49],137:[2,49]},{1:[2,72],4:[2,72],27:[2,72],28:[2,72],39:[2,72],49:[2,72],54:[2,72],57:[2,72],64:[2,72],65:[2,72],66:[2,72],68:[2,72],69:[2,72],70:[2,72],71:[2,72],74:[2,72],82:[2,72],83:[2,72],84:[2,72],89:[2,72],98:[2,72],100:[2,72],101:[2,72],102:[2,72],109:[2,72],113:[2,72],114:[2,72],125:[2,72],126:[2,72],128:[2,72],129:[2,72],132:[2,72],133:[2,72],134:[2,72],135:[2,72],136:[2,72],137:[2,72]},{1:[2,73],4:[2,73],27:[2,73],28:[2,73],39:[2,73],49:[2,73],54:[2,73],57:[2,73],64:[2,73],65:[2,73],66:[2,73],68:[2,73],69:[2,73],70:[2,73],71:[2,73],74:[2,73],82:[2,73],83:[2,73],84:[2,73],89:[2,73],98:[2,73],100:[2,73],101:[2,73],102:[2,73],109:[2,73],113:[2,73],114:[2,73],125:[2,73],126:[2,73],128:[2,73],129:[2,73],132:[2,73],133:[2,73],134:[2,73],135:[2,73],136:[2,73],137:[2,73]},{1:[2,33],4:[2,33],27:[2,33],28:[2,33],49:[2,33],54:[2,33],57:[2,33],64:[2,33],65:[2,33],66:[2,33],68:[2,33],69:[2,33],70:[2,33],71:[2,33],74:[2,33],82:[2,33],83:[2,33],84:[2,33],89:[2,33],98:[2,33],100:[2,33],101:[2,33],102:[2,33],109:[2,33],113:[2,33],114:[2,33],125:[2,33],126:[2,33],128:[2,33],129:[2,33],132:[2,33],133:[2,33],134:[2,33],135:[2,33],136:[2,33],137:[2,33]},{1:[2,34],4:[2,34],27:[2,34],28:[2,34],49:[2,34],54:[2,34],57:[2,34],64:[2,34],65:[2,34],66:[2,34],68:[2,34],69:[2,34],70:[2,34],71:[2,34],74:[2,34],82:[2,34],83:[2,34],84:[2,34],89:[2,34],98:[2,34],100:[2,34],101:[2,34],102:[2,34],109:[2,34],113:[2,34],114:[2,34],125:[2,34],126:[2,34],128:[2,34],129:[2,34],132:[2,34],133:[2,34],134:[2,34],135:[2,34],136:[2,34],137:[2,34]},{1:[2,35],4:[2,35],27:[2,35],28:[2,35],49:[2,35],54:[2,35],57:[2,35],64:[2,35],65:[2,35],66:[2,35],68:[2,35],69:[2,35],70:[2,35],71:[2,35],74:[2,35],82:[2,35],83:[2,35],84:[2,35],89:[2,35],98:[2,35],100:[2,35],101:[2,35],102:[2,35],109:[2,35],113:[2,35],114:[2,35],125:[2,35],126:[2,35],128:[2,35],129:[2,35],132:[2,35],133:[2,35],134:[2,35],135:[2,35],136:[2,35],137:[2,35]},{1:[2,36],4:[2,36],27:[2,36],28:[2,36],49:[2,36],54:[2,36],57:[2,36],64:[2,36],65:[2,36],66:[2,36],68:[2,36],69:[2,36],70:[2,36],71:[2,36],74:[2,36],82:[2,36],83:[2,36],84:[2,36],89:[2,36],98:[2,36],100:[2,36],101:[2,36],102:[2,36],109:[2,36],113:[2,36],114:[2,36],125:[2,36],126:[2,36],128:[2,36],129:[2,36],132:[2,36],133:[2,36],134:[2,36],135:[2,36],136:[2,36],137:[2,36]},{8:143,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,115],4:[2,115],27:[2,115],28:[2,115],49:[2,115],54:[2,115],57:[2,115],64:[2,115],65:[2,115],66:[2,115],68:[2,115],69:[2,115],70:[2,115],71:[2,115],74:[2,115],82:[2,115],83:[2,115],84:[2,115],89:[2,115],98:[2,115],100:[2,115],101:[2,115],102:[2,115],109:[2,115],113:[2,115],114:[2,115],125:[2,115],126:[2,115],128:[2,115],129:[2,115],132:[2,115],133:[2,115],134:[2,115],135:[2,115],136:[2,115],137:[2,115]},{1:[2,116],4:[2,116],27:[2,116],28:[2,116],29:144,30:[1,72],49:[2,116],54:[2,116],57:[2,116],64:[2,116],65:[2,116],66:[2,116],68:[2,116],69:[2,116],70:[2,116],71:[2,116],74:[2,116],82:[2,116],83:[2,116],84:[2,116],89:[2,116],98:[2,116],100:[2,116],101:[2,116],102:[2,116],109:[2,116],113:[2,116],114:[2,116],125:[2,116],126:[2,116],128:[2,116],129:[2,116],132:[2,116],133:[2,116],134:[2,116],135:[2,116],136:[2,116],137:[2,116]},{4:[2,52],27:[2,52]},{4:[2,53],27:[2,53]},{1:[2,67],4:[2,67],27:[2,67],28:[2,67],39:[2,67],49:[2,67],54:[2,67],57:[2,67],64:[2,67],65:[2,67],66:[2,67],68:[2,67],69:[2,67],70:[2,67],71:[2,67],74:[2,67],76:[2,67],82:[2,67],83:[2,67],84:[2,67],89:[2,67],98:[2,67],100:[2,67],101:[2,67],102:[2,67],109:[2,67],113:[2,67],114:[2,67],125:[2,67],126:[2,67],128:[2,67],129:[2,67],130:[2,67],131:[2,67],132:[2,67],133:[2,67],134:[2,67],135:[2,67],136:[2,67],137:[2,67],138:[2,67]},{1:[2,70],4:[2,70],27:[2,70],28:[2,70],39:[2,70],49:[2,70],54:[2,70],57:[2,70],64:[2,70],65:[2,70],66:[2,70],68:[2,70],69:[2,70],70:[2,70],71:[2,70],74:[2,70],76:[2,70],82:[2,70],83:[2,70],84:[2,70],89:[2,70],98:[2,70],100:[2,70],101:[2,70],102:[2,70],109:[2,70],113:[2,70],114:[2,70],125:[2,70],126:[2,70],128:[2,70],129:[2,70],130:[2,70],131:[2,70],132:[2,70],133:[2,70],134:[2,70],135:[2,70],136:[2,70],137:[2,70],138:[2,70]},{8:145,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:146,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:147,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:148,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{4:[1,118],6:149,8:150,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,6],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{29:152,30:[1,72],58:154,59:155,72:[1,69],88:[1,68],106:151,115:[1,153]},{8:160,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,159],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,60:161,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],85:157,86:[1,56],87:[1,57],88:[1,68],89:[1,156],90:158,92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{4:[2,87],15:166,27:[2,87],29:167,30:[1,72],31:168,32:[1,70],33:[1,71],40:163,41:164,43:165,44:169,46:[1,48],54:[2,87],73:162,74:[2,87],87:[1,116],97:[1,55]},{1:[2,31],4:[2,31],27:[2,31],28:[2,31],42:[2,31],49:[2,31],54:[2,31],57:[2,31],64:[2,31],65:[2,31],66:[2,31],68:[2,31],69:[2,31],70:[2,31],71:[2,31],74:[2,31],82:[2,31],83:[2,31],84:[2,31],89:[2,31],98:[2,31],100:[2,31],101:[2,31],102:[2,31],109:[2,31],113:[2,31],114:[2,31],125:[2,31],126:[2,31],128:[2,31],129:[2,31],132:[2,31],133:[2,31],134:[2,31],135:[2,31],136:[2,31],137:[2,31]},{1:[2,32],4:[2,32],27:[2,32],28:[2,32],42:[2,32],49:[2,32],54:[2,32],57:[2,32],64:[2,32],65:[2,32],66:[2,32],68:[2,32],69:[2,32],70:[2,32],71:[2,32],74:[2,32],82:[2,32],83:[2,32],84:[2,32],89:[2,32],98:[2,32],100:[2,32],101:[2,32],102:[2,32],109:[2,32],113:[2,32],114:[2,32],125:[2,32],126:[2,32],128:[2,32],129:[2,32],132:[2,32],133:[2,32],134:[2,32],135:[2,32],136:[2,32],137:[2,32]},{1:[2,30],4:[2,30],27:[2,30],28:[2,30],39:[2,30],42:[2,30],49:[2,30],54:[2,30],57:[2,30],64:[2,30],65:[2,30],66:[2,30],68:[2,30],69:[2,30],70:[2,30],71:[2,30],74:[2,30],76:[2,30],82:[2,30],83:[2,30],84:[2,30],89:[2,30],98:[2,30],100:[2,30],101:[2,30],102:[2,30],108:[2,30],109:[2,30],111:[2,30],113:[2,30],114:[2,30],116:[2,30],125:[2,30],126:[2,30],128:[2,30],129:[2,30],130:[2,30],131:[2,30],132:[2,30],133:[2,30],134:[2,30],135:[2,30],136:[2,30],137:[2,30],138:[2,30]},{1:[2,29],4:[2,29],27:[2,29],28:[2,29],49:[2,29],54:[2,29],57:[2,29],69:[2,29],74:[2,29],84:[2,29],89:[2,29],94:[2,29],95:[2,29],98:[2,29],100:[2,29],101:[2,29],102:[2,29],109:[2,29],113:[2,29],114:[2,29],119:[2,29],121:[2,29],125:[2,29],126:[2,29],128:[2,29],129:[2,29],132:[2,29],133:[2,29],134:[2,29],135:[2,29],136:[2,29],137:[2,29]},{1:[2,7],4:[2,7],7:170,8:7,9:8,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,28:[2,7],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,4]},{4:[1,74],28:[1,171]},{1:[2,28],4:[2,28],27:[2,28],28:[2,28],49:[2,28],54:[2,28],57:[2,28],69:[2,28],74:[2,28],84:[2,28],89:[2,28],94:[2,28],95:[2,28],98:[2,28],100:[2,28],101:[2,28],102:[2,28],109:[2,28],113:[2,28],114:[2,28],119:[2,28],121:[2,28],125:[2,28],126:[2,28],128:[2,28],129:[2,28],132:[2,28],133:[2,28],134:[2,28],135:[2,28],136:[2,28],137:[2,28]},{1:[2,193],4:[2,193],27:[2,193],28:[2,193],49:[2,193],54:[2,193],57:[2,193],69:[2,193],74:[2,193],84:[2,193],89:[2,193],98:[2,193],100:[2,193],101:[2,193],102:[2,193],109:[2,193],113:[2,193],114:[2,193],125:[2,193],126:[2,193],128:[2,193],129:[2,193],132:[2,193],133:[2,193],134:[2,193],135:[2,193],136:[2,193],137:[2,193]},{8:172,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:173,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:174,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:175,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:176,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:177,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:178,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:179,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:180,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,142],4:[2,142],27:[2,142],28:[2,142],49:[2,142],54:[2,142],57:[2,142],69:[2,142],74:[2,142],84:[2,142],89:[2,142],98:[2,142],100:[2,142],101:[2,142],102:[2,142],109:[2,142],113:[2,142],114:[2,142],125:[2,142],126:[2,142],128:[2,142],129:[2,142],132:[2,142],133:[2,142],134:[2,142],135:[2,142],136:[2,142],137:[2,142]},{1:[2,147],4:[2,147],27:[2,147],28:[2,147],49:[2,147],54:[2,147],57:[2,147],69:[2,147],74:[2,147],84:[2,147],89:[2,147],98:[2,147],100:[2,147],101:[2,147],102:[2,147],109:[2,147],113:[2,147],114:[2,147],125:[2,147],126:[2,147],128:[2,147],129:[2,147],132:[2,147],133:[2,147],134:[2,147],135:[2,147],136:[2,147],137:[2,147]},{8:181,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:182,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,141],4:[2,141],27:[2,141],28:[2,141],49:[2,141],54:[2,141],57:[2,141],69:[2,141],74:[2,141],84:[2,141],89:[2,141],98:[2,141],100:[2,141],101:[2,141],102:[2,141],109:[2,141],113:[2,141],114:[2,141],125:[2,141],126:[2,141],128:[2,141],129:[2,141],132:[2,141],133:[2,141],134:[2,141],135:[2,141],136:[2,141],137:[2,141]},{1:[2,146],4:[2,146],27:[2,146],28:[2,146],49:[2,146],54:[2,146],57:[2,146],69:[2,146],74:[2,146],84:[2,146],89:[2,146],98:[2,146],100:[2,146],101:[2,146],102:[2,146],109:[2,146],113:[2,146],114:[2,146],125:[2,146],126:[2,146],128:[2,146],129:[2,146],132:[2,146],133:[2,146],134:[2,146],135:[2,146],136:[2,146],137:[2,146]},{80:183,83:[1,108]},{1:[2,68],4:[2,68],27:[2,68],28:[2,68],39:[2,68],49:[2,68],54:[2,68],57:[2,68],64:[2,68],65:[2,68],66:[2,68],68:[2,68],69:[2,68],70:[2,68],71:[2,68],74:[2,68],76:[2,68],82:[2,68],83:[2,68],84:[2,68],89:[2,68],98:[2,68],100:[2,68],101:[2,68],102:[2,68],109:[2,68],113:[2,68],114:[2,68],125:[2,68],126:[2,68],128:[2,68],129:[2,68],130:[2,68],131:[2,68],132:[2,68],133:[2,68],134:[2,68],135:[2,68],136:[2,68],137:[2,68],138:[2,68]},{83:[2,112]},{29:184,30:[1,72]},{29:185,30:[1,72]},{1:[2,81],4:[2,81],27:[2,81],28:[2,81],29:186,30:[1,72],39:[2,81],49:[2,81],54:[2,81],57:[2,81],64:[2,81],65:[2,81],66:[2,81],68:[2,81],69:[2,81],70:[2,81],71:[2,81],74:[2,81],76:[2,81],82:[2,81],83:[2,81],84:[2,81],89:[2,81],98:[2,81],100:[2,81],101:[2,81],102:[2,81],109:[2,81],113:[2,81],114:[2,81],125:[2,81],126:[2,81],128:[2,81],129:[2,81],130:[2,81],131:[2,81],132:[2,81],133:[2,81],134:[2,81],135:[2,81],136:[2,81],137:[2,81],138:[2,81]},{1:[2,82],4:[2,82],27:[2,82],28:[2,82],39:[2,82],49:[2,82],54:[2,82],57:[2,82],64:[2,82],65:[2,82],66:[2,82],68:[2,82],69:[2,82],70:[2,82],71:[2,82],74:[2,82],76:[2,82],82:[2,82],83:[2,82],84:[2,82],89:[2,82],98:[2,82],100:[2,82],101:[2,82],102:[2,82],109:[2,82],113:[2,82],114:[2,82],125:[2,82],126:[2,82],128:[2,82],129:[2,82],130:[2,82],131:[2,82],132:[2,82],133:[2,82],134:[2,82],135:[2,82],136:[2,82],137:[2,82],138:[2,82]},{8:187,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{67:188,68:[1,101],70:[1,102],71:[1,103]},{67:189,68:[1,101],70:[1,102],71:[1,103]},{80:190,83:[1,108]},{1:[2,69],4:[2,69],27:[2,69],28:[2,69],39:[2,69],49:[2,69],54:[2,69],57:[2,69],64:[2,69],65:[2,69],66:[2,69],68:[2,69],69:[2,69],70:[2,69],71:[2,69],74:[2,69],76:[2,69],82:[2,69],83:[2,69],84:[2,69],89:[2,69],98:[2,69],100:[2,69],101:[2,69],102:[2,69],109:[2,69],113:[2,69],114:[2,69],125:[2,69],126:[2,69],128:[2,69],129:[2,69],130:[2,69],131:[2,69],132:[2,69],133:[2,69],134:[2,69],135:[2,69],136:[2,69],137:[2,69],138:[2,69]},{8:191,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,192],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,110],4:[2,110],27:[2,110],28:[2,110],49:[2,110],54:[2,110],57:[2,110],64:[2,110],65:[2,110],66:[2,110],68:[2,110],69:[2,110],70:[2,110],71:[2,110],74:[2,110],82:[2,110],83:[2,110],84:[2,110],89:[2,110],98:[2,110],100:[2,110],101:[2,110],102:[2,110],109:[2,110],113:[2,110],114:[2,110],125:[2,110],126:[2,110],128:[2,110],129:[2,110],132:[2,110],133:[2,110],134:[2,110],135:[2,110],136:[2,110],137:[2,110]},{8:160,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,159],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,60:161,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],84:[1,193],85:194,86:[1,56],87:[1,57],88:[1,68],90:158,92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{49:[1,195],54:[1,196]},{49:[2,57],54:[2,57]},{39:[1,198],49:[2,59],54:[2,59],57:[1,197]},{39:[2,62],49:[2,62],54:[2,62],57:[2,62]},{39:[2,63],49:[2,63],54:[2,63],57:[2,63]},{39:[2,64],49:[2,64],54:[2,64],57:[2,64]},{39:[2,65],49:[2,65],54:[2,65],57:[2,65]},{29:144,30:[1,72]},{1:[2,51],4:[2,51],27:[2,51],28:[2,51],49:[2,51],54:[2,51],57:[2,51],69:[2,51],74:[2,51],84:[2,51],89:[2,51],98:[2,51],100:[2,51],101:[2,51],102:[2,51],109:[2,51],113:[2,51],114:[2,51],125:[2,51],126:[2,51],128:[2,51],129:[2,51],132:[2,51],133:[2,51],134:[2,51],135:[2,51],136:[2,51],137:[2,51]},{15:73,46:[1,48]},{1:[2,186],4:[2,186],27:[2,186],28:[2,186],49:[2,186],54:[2,186],57:[2,186],69:[2,186],74:[2,186],84:[2,186],89:[2,186],98:[2,186],99:88,100:[2,186],101:[2,186],102:[2,186],105:89,109:[2,186],113:[2,186],114:[2,186],125:[2,186],126:[2,186],128:[2,186],129:[2,186],132:[1,78],133:[2,186],134:[2,186],135:[2,186],136:[2,186],137:[2,186]},{99:92,100:[1,64],102:[1,65],105:93,114:[1,67],125:[1,90],126:[1,91]},{1:[2,187],4:[2,187],27:[2,187],28:[2,187],49:[2,187],54:[2,187],57:[2,187],69:[2,187],74:[2,187],84:[2,187],89:[2,187],98:[2,187],99:88,100:[2,187],101:[2,187],102:[2,187],105:89,109:[2,187],113:[2,187],114:[2,187],125:[2,187],126:[2,187],128:[2,187],129:[2,187],132:[1,78],133:[2,187],134:[2,187],135:[2,187],136:[2,187],137:[2,187]},{1:[2,188],4:[2,188],27:[2,188],28:[2,188],49:[2,188],54:[2,188],57:[2,188],69:[2,188],74:[2,188],84:[2,188],89:[2,188],98:[2,188],99:88,100:[2,188],101:[2,188],102:[2,188],105:89,109:[2,188],113:[2,188],114:[2,188],125:[2,188],126:[2,188],128:[2,188],129:[2,188],132:[1,78],133:[2,188],134:[2,188],135:[2,188],136:[2,188],137:[2,188]},{1:[2,189],4:[2,189],27:[2,189],28:[2,189],49:[2,189],54:[2,189],57:[2,189],64:[2,71],65:[2,71],66:[2,71],68:[2,71],69:[2,189],70:[2,71],71:[2,71],74:[2,189],82:[2,71],83:[2,71],84:[2,189],89:[2,189],98:[2,189],100:[2,189],101:[2,189],102:[2,189],109:[2,189],113:[2,189],114:[2,189],125:[2,189],126:[2,189],128:[2,189],129:[2,189],132:[2,189],133:[2,189],134:[2,189],135:[2,189],136:[2,189],137:[2,189]},{62:95,64:[1,97],65:[1,98],66:[1,99],67:100,68:[1,101],70:[1,102],71:[1,103],79:94,82:[1,96],83:[2,111]},{62:105,64:[1,97],65:[1,98],66:[1,99],67:100,68:[1,101],70:[1,102],71:[1,103],79:104,82:[1,96],83:[2,111]},{1:[2,74],4:[2,74],27:[2,74],28:[2,74],49:[2,74],54:[2,74],57:[2,74],64:[2,74],65:[2,74],66:[2,74],68:[2,74],69:[2,74],70:[2,74],71:[2,74],74:[2,74],82:[2,74],83:[2,74],84:[2,74],89:[2,74],98:[2,74],100:[2,74],101:[2,74],102:[2,74],109:[2,74],113:[2,74],114:[2,74],125:[2,74],126:[2,74],128:[2,74],129:[2,74],132:[2,74],133:[2,74],134:[2,74],135:[2,74],136:[2,74],137:[2,74]},{1:[2,190],4:[2,190],27:[2,190],28:[2,190],49:[2,190],54:[2,190],57:[2,190],64:[2,71],65:[2,71],66:[2,71],68:[2,71],69:[2,190],70:[2,71],71:[2,71],74:[2,190],82:[2,71],83:[2,71],84:[2,190],89:[2,190],98:[2,190],100:[2,190],101:[2,190],102:[2,190],109:[2,190],113:[2,190],114:[2,190],125:[2,190],126:[2,190],128:[2,190],129:[2,190],132:[2,190],133:[2,190],134:[2,190],135:[2,190],136:[2,190],137:[2,190]},{1:[2,191],4:[2,191],27:[2,191],28:[2,191],49:[2,191],54:[2,191],57:[2,191],69:[2,191],74:[2,191],84:[2,191],89:[2,191],98:[2,191],100:[2,191],101:[2,191],102:[2,191],109:[2,191],113:[2,191],114:[2,191],125:[2,191],126:[2,191],128:[2,191],129:[2,191],132:[2,191],133:[2,191],134:[2,191],135:[2,191],136:[2,191],137:[2,191]},{1:[2,192],4:[2,192],27:[2,192],28:[2,192],49:[2,192],54:[2,192],57:[2,192],69:[2,192],74:[2,192],84:[2,192],89:[2,192],98:[2,192],100:[2,192],101:[2,192],102:[2,192],109:[2,192],113:[2,192],114:[2,192],125:[2,192],126:[2,192],128:[2,192],129:[2,192],132:[2,192],133:[2,192],134:[2,192],135:[2,192],136:[2,192],137:[2,192]},{8:199,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,200],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:201,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{4:[1,118],6:203,27:[1,6],123:[1,202]},{1:[2,129],4:[2,129],27:[2,129],28:[2,129],49:[2,129],54:[2,129],57:[2,129],69:[2,129],74:[2,129],84:[2,129],89:[2,129],93:204,94:[1,205],95:[1,206],98:[2,129],100:[2,129],101:[2,129],102:[2,129],109:[2,129],113:[2,129],114:[2,129],125:[2,129],126:[2,129],128:[2,129],129:[2,129],132:[2,129],133:[2,129],134:[2,129],135:[2,129],136:[2,129],137:[2,129]},{1:[2,140],4:[2,140],27:[2,140],28:[2,140],49:[2,140],54:[2,140],57:[2,140],69:[2,140],74:[2,140],84:[2,140],89:[2,140],98:[2,140],100:[2,140],101:[2,140],102:[2,140],109:[2,140],113:[2,140],114:[2,140],125:[2,140],126:[2,140],128:[2,140],129:[2,140],132:[2,140],133:[2,140],134:[2,140],135:[2,140],136:[2,140],137:[2,140]},{1:[2,148],4:[2,148],27:[2,148],28:[2,148],49:[2,148],54:[2,148],57:[2,148],69:[2,148],74:[2,148],84:[2,148],89:[2,148],98:[2,148],100:[2,148],101:[2,148],102:[2,148],109:[2,148],113:[2,148],114:[2,148],125:[2,148],126:[2,148],128:[2,148],129:[2,148],132:[2,148],133:[2,148],134:[2,148],135:[2,148],136:[2,148],137:[2,148]},{27:[1,207],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{118:208,120:209,121:[1,210]},{1:[2,92],4:[2,92],27:[1,212],28:[2,92],49:[2,92],54:[2,92],57:[2,92],64:[2,71],65:[2,71],66:[2,71],68:[2,71],69:[2,92],70:[2,71],71:[2,71],74:[2,92],76:[1,211],82:[2,71],83:[2,71],84:[2,92],89:[2,92],98:[2,92],100:[2,92],101:[2,92],102:[2,92],109:[2,92],113:[2,92],114:[2,92],125:[2,92],126:[2,92],128:[2,92],129:[2,92],132:[2,92],133:[2,92],134:[2,92],135:[2,92],136:[2,92],137:[2,92]},{4:[2,103],15:166,28:[2,103],29:167,30:[1,72],31:168,32:[1,70],33:[1,71],40:216,41:164,43:217,44:169,46:[1,48],72:[1,215],77:213,78:214,87:[1,116],97:[1,55]},{16:218,17:125,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:126,43:61,44:28,58:49,59:50,61:219,63:29,72:[1,69],81:[1,30],86:[1,56],87:[1,57],88:[1,68],97:[1,55]},{1:[2,47],4:[2,47],28:[2,47],99:88,100:[2,47],102:[2,47],105:89,114:[2,47],125:[2,47],126:[2,47],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,134],4:[2,134],28:[2,134],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[2,134],126:[2,134],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{98:[1,220],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,117],4:[2,117],27:[2,117],28:[2,117],39:[2,117],42:[2,117],49:[2,117],54:[2,117],57:[2,117],64:[2,117],65:[2,117],66:[2,117],68:[2,117],69:[2,117],70:[2,117],71:[2,117],74:[2,117],76:[2,117],82:[2,117],83:[2,117],84:[2,117],89:[2,117],98:[2,117],100:[2,117],101:[2,117],102:[2,117],109:[2,117],113:[2,117],114:[2,117],125:[2,117],126:[2,117],128:[2,117],129:[2,117],130:[2,117],131:[2,117],132:[2,117],133:[2,117],134:[2,117],135:[2,117],136:[2,117],137:[2,117],138:[2,117]},{4:[1,118],6:221,27:[1,6],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{4:[1,118],6:222,27:[1,6],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,136],4:[2,136],27:[2,136],28:[2,136],49:[2,136],54:[2,136],57:[2,136],69:[2,136],74:[2,136],84:[2,136],89:[2,136],98:[2,136],99:88,100:[1,64],101:[1,223],102:[1,65],105:89,109:[2,136],113:[2,136],114:[1,67],125:[2,136],126:[2,136],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,138],4:[2,138],27:[2,138],28:[2,138],49:[2,138],54:[2,138],57:[2,138],69:[2,138],74:[2,138],84:[2,138],89:[2,138],98:[2,138],99:88,100:[1,64],101:[1,224],102:[1,65],105:89,109:[2,138],113:[2,138],114:[1,67],125:[2,138],126:[2,138],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,144],4:[2,144],27:[2,144],28:[2,144],49:[2,144],54:[2,144],57:[2,144],69:[2,144],74:[2,144],84:[2,144],89:[2,144],98:[2,144],100:[2,144],101:[2,144],102:[2,144],109:[2,144],113:[2,144],114:[2,144],125:[2,144],126:[2,144],128:[2,144],129:[2,144],132:[2,144],133:[2,144],134:[2,144],135:[2,144],136:[2,144],137:[2,144]},{1:[2,145],4:[2,145],27:[2,145],28:[2,145],49:[2,145],54:[2,145],57:[2,145],69:[2,145],74:[2,145],84:[2,145],89:[2,145],98:[2,145],99:88,100:[1,64],101:[2,145],102:[1,65],105:89,109:[2,145],113:[2,145],114:[1,67],125:[2,145],126:[2,145],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{54:[1,226],107:225,108:[1,227]},{54:[2,149],108:[2,149],110:228,111:[1,230],116:[1,229]},{29:231,30:[1,72]},{54:[2,150],108:[2,150],111:[2,150]},{54:[2,151],108:[2,151],111:[2,151]},{1:[2,118],4:[2,118],27:[2,118],28:[2,118],39:[2,118],49:[2,118],54:[2,118],57:[2,118],64:[2,118],65:[2,118],66:[2,118],68:[2,118],69:[2,118],70:[2,118],71:[2,118],74:[2,118],82:[2,118],83:[2,118],84:[2,118],89:[2,118],98:[2,118],100:[2,118],101:[2,118],102:[2,118],108:[2,118],109:[2,118],111:[2,118],113:[2,118],114:[2,118],125:[2,118],126:[2,118],128:[2,118],129:[2,118],132:[2,118],133:[2,118],134:[2,118],135:[2,118],136:[2,118],137:[2,118]},{4:[2,54],27:[2,54],53:232,54:[1,233],89:[2,54]},{4:[2,120],27:[2,120],28:[2,120],54:[2,120],84:[2,120],89:[2,120]},{8:160,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,159],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,60:161,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],85:234,86:[1,56],87:[1,57],88:[1,68],90:158,92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{4:[2,125],27:[2,125],28:[2,125],54:[2,125],57:[1,235],84:[2,125],89:[2,125],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{4:[2,126],27:[2,126],28:[2,126],54:[2,126],84:[2,126],89:[2,126]},{4:[2,54],27:[2,54],53:236,54:[1,237],74:[2,54]},{4:[2,88],27:[2,88],28:[2,88],54:[2,88],74:[2,88]},{4:[2,39],27:[2,39],28:[2,39],42:[1,238],54:[2,39],74:[2,39]},{4:[2,42],27:[2,42],28:[2,42],54:[2,42],74:[2,42]},{4:[2,43],27:[2,43],28:[2,43],54:[2,43],74:[2,43]},{4:[2,44],27:[2,44],28:[2,44],42:[2,44],54:[2,44],74:[2,44]},{4:[2,45],27:[2,45],28:[2,45],42:[2,45],54:[2,45],74:[2,45]},{4:[2,46],27:[2,46],28:[2,46],42:[2,46],54:[2,46],74:[2,46]},{1:[2,6],4:[2,6],28:[2,6]},{1:[2,27],4:[2,27],27:[2,27],28:[2,27],49:[2,27],54:[2,27],57:[2,27],69:[2,27],74:[2,27],84:[2,27],89:[2,27],94:[2,27],95:[2,27],98:[2,27],100:[2,27],101:[2,27],102:[2,27],109:[2,27],113:[2,27],114:[2,27],119:[2,27],121:[2,27],125:[2,27],126:[2,27],128:[2,27],129:[2,27],132:[2,27],133:[2,27],134:[2,27],135:[2,27],136:[2,27],137:[2,27]},{1:[2,194],4:[2,194],27:[2,194],28:[2,194],49:[2,194],54:[2,194],57:[2,194],69:[2,194],74:[2,194],84:[2,194],89:[2,194],98:[2,194],99:88,100:[2,194],101:[2,194],102:[2,194],105:89,109:[2,194],113:[2,194],114:[2,194],125:[2,194],126:[2,194],128:[2,194],129:[2,194],132:[1,78],133:[1,81],134:[2,194],135:[2,194],136:[2,194],137:[2,194]},{1:[2,195],4:[2,195],27:[2,195],28:[2,195],49:[2,195],54:[2,195],57:[2,195],69:[2,195],74:[2,195],84:[2,195],89:[2,195],98:[2,195],99:88,100:[2,195],101:[2,195],102:[2,195],105:89,109:[2,195],113:[2,195],114:[2,195],125:[2,195],126:[2,195],128:[2,195],129:[2,195],132:[1,78],133:[1,81],134:[2,195],135:[2,195],136:[2,195],137:[2,195]},{1:[2,196],4:[2,196],27:[2,196],28:[2,196],49:[2,196],54:[2,196],57:[2,196],69:[2,196],74:[2,196],84:[2,196],89:[2,196],98:[2,196],99:88,100:[2,196],101:[2,196],102:[2,196],105:89,109:[2,196],113:[2,196],114:[2,196],125:[2,196],126:[2,196],128:[2,196],129:[2,196],132:[1,78],133:[2,196],134:[2,196],135:[2,196],136:[2,196],137:[2,196]},{1:[2,197],4:[2,197],27:[2,197],28:[2,197],49:[2,197],54:[2,197],57:[2,197],69:[2,197],74:[2,197],84:[2,197],89:[2,197],98:[2,197],99:88,100:[2,197],101:[2,197],102:[2,197],105:89,109:[2,197],113:[2,197],114:[2,197],125:[2,197],126:[2,197],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[2,197],135:[2,197],136:[2,197],137:[2,197]},{1:[2,198],4:[2,198],27:[2,198],28:[2,198],49:[2,198],54:[2,198],57:[2,198],69:[2,198],74:[2,198],84:[2,198],89:[2,198],98:[2,198],99:88,100:[2,198],101:[2,198],102:[2,198],105:89,109:[2,198],113:[2,198],114:[2,198],125:[2,198],126:[2,198],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[2,198],136:[2,198],137:[1,85]},{1:[2,199],4:[2,199],27:[2,199],28:[2,199],49:[2,199],54:[2,199],57:[2,199],69:[2,199],74:[2,199],84:[2,199],89:[2,199],98:[2,199],99:88,100:[2,199],101:[2,199],102:[2,199],105:89,109:[2,199],113:[2,199],114:[2,199],125:[2,199],126:[2,199],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[2,199],137:[1,85]},{1:[2,200],4:[2,200],27:[2,200],28:[2,200],49:[2,200],54:[2,200],57:[2,200],69:[2,200],74:[2,200],84:[2,200],89:[2,200],98:[2,200],99:88,100:[2,200],101:[2,200],102:[2,200],105:89,109:[2,200],113:[2,200],114:[2,200],125:[2,200],126:[2,200],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[2,200],136:[2,200],137:[2,200]},{1:[2,183],4:[2,183],27:[2,183],28:[2,183],49:[2,183],54:[2,183],57:[2,183],69:[2,183],74:[2,183],84:[2,183],89:[2,183],98:[2,183],99:88,100:[1,64],101:[2,183],102:[1,65],105:89,109:[2,183],113:[2,183],114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,185],4:[2,185],27:[2,185],28:[2,185],49:[2,185],54:[2,185],57:[2,185],69:[2,185],74:[2,185],84:[2,185],89:[2,185],98:[2,185],99:88,100:[1,64],101:[2,185],102:[1,65],105:89,109:[2,185],113:[2,185],114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,182],4:[2,182],27:[2,182],28:[2,182],49:[2,182],54:[2,182],57:[2,182],69:[2,182],74:[2,182],84:[2,182],89:[2,182],98:[2,182],99:88,100:[1,64],101:[2,182],102:[1,65],105:89,109:[2,182],113:[2,182],114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,184],4:[2,184],27:[2,184],28:[2,184],49:[2,184],54:[2,184],57:[2,184],69:[2,184],74:[2,184],84:[2,184],89:[2,184],98:[2,184],99:88,100:[1,64],101:[2,184],102:[1,65],105:89,109:[2,184],113:[2,184],114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,107],4:[2,107],27:[2,107],28:[2,107],49:[2,107],54:[2,107],57:[2,107],64:[2,107],65:[2,107],66:[2,107],68:[2,107],69:[2,107],70:[2,107],71:[2,107],74:[2,107],82:[2,107],83:[2,107],84:[2,107],89:[2,107],98:[2,107],100:[2,107],101:[2,107],102:[2,107],109:[2,107],113:[2,107],114:[2,107],125:[2,107],126:[2,107],128:[2,107],129:[2,107],132:[2,107],133:[2,107],134:[2,107],135:[2,107],136:[2,107],137:[2,107]},{1:[2,78],4:[2,78],27:[2,78],28:[2,78],39:[2,78],49:[2,78],54:[2,78],57:[2,78],64:[2,78],65:[2,78],66:[2,78],68:[2,78],69:[2,78],70:[2,78],71:[2,78],74:[2,78],76:[2,78],82:[2,78],83:[2,78],84:[2,78],89:[2,78],98:[2,78],100:[2,78],101:[2,78],102:[2,78],109:[2,78],113:[2,78],114:[2,78],125:[2,78],126:[2,78],128:[2,78],129:[2,78],130:[2,78],131:[2,78],132:[2,78],133:[2,78],134:[2,78],135:[2,78],136:[2,78],137:[2,78],138:[2,78]},{1:[2,79],4:[2,79],27:[2,79],28:[2,79],39:[2,79],49:[2,79],54:[2,79],57:[2,79],64:[2,79],65:[2,79],66:[2,79],68:[2,79],69:[2,79],70:[2,79],71:[2,79],74:[2,79],76:[2,79],82:[2,79],83:[2,79],84:[2,79],89:[2,79],98:[2,79],100:[2,79],101:[2,79],102:[2,79],109:[2,79],113:[2,79],114:[2,79],125:[2,79],126:[2,79],128:[2,79],129:[2,79],130:[2,79],131:[2,79],132:[2,79],133:[2,79],134:[2,79],135:[2,79],136:[2,79],137:[2,79],138:[2,79]},{1:[2,80],4:[2,80],27:[2,80],28:[2,80],39:[2,80],49:[2,80],54:[2,80],57:[2,80],64:[2,80],65:[2,80],66:[2,80],68:[2,80],69:[2,80],70:[2,80],71:[2,80],74:[2,80],76:[2,80],82:[2,80],83:[2,80],84:[2,80],89:[2,80],98:[2,80],100:[2,80],101:[2,80],102:[2,80],109:[2,80],113:[2,80],114:[2,80],125:[2,80],126:[2,80],128:[2,80],129:[2,80],130:[2,80],131:[2,80],132:[2,80],133:[2,80],134:[2,80],135:[2,80],136:[2,80],137:[2,80],138:[2,80]},{69:[1,239],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,84],4:[2,84],27:[2,84],28:[2,84],39:[2,84],49:[2,84],54:[2,84],57:[2,84],64:[2,84],65:[2,84],66:[2,84],68:[2,84],69:[2,84],70:[2,84],71:[2,84],74:[2,84],76:[2,84],82:[2,84],83:[2,84],84:[2,84],89:[2,84],98:[2,84],100:[2,84],101:[2,84],102:[2,84],109:[2,84],113:[2,84],114:[2,84],125:[2,84],126:[2,84],128:[2,84],129:[2,84],130:[2,84],131:[2,84],132:[2,84],133:[2,84],134:[2,84],135:[2,84],136:[2,84],137:[2,84],138:[2,84]},{1:[2,85],4:[2,85],27:[2,85],28:[2,85],39:[2,85],49:[2,85],54:[2,85],57:[2,85],64:[2,85],65:[2,85],66:[2,85],68:[2,85],69:[2,85],70:[2,85],71:[2,85],74:[2,85],76:[2,85],82:[2,85],83:[2,85],84:[2,85],89:[2,85],98:[2,85],100:[2,85],101:[2,85],102:[2,85],109:[2,85],113:[2,85],114:[2,85],125:[2,85],126:[2,85],128:[2,85],129:[2,85],130:[2,85],131:[2,85],132:[2,85],133:[2,85],134:[2,85],135:[2,85],136:[2,85],137:[2,85],138:[2,85]},{1:[2,108],4:[2,108],27:[2,108],28:[2,108],49:[2,108],54:[2,108],57:[2,108],64:[2,108],65:[2,108],66:[2,108],68:[2,108],69:[2,108],70:[2,108],71:[2,108],74:[2,108],82:[2,108],83:[2,108],84:[2,108],89:[2,108],98:[2,108],100:[2,108],101:[2,108],102:[2,108],109:[2,108],113:[2,108],114:[2,108],125:[2,108],126:[2,108],128:[2,108],129:[2,108],132:[2,108],133:[2,108],134:[2,108],135:[2,108],136:[2,108],137:[2,108]},{1:[2,37],4:[2,37],27:[2,37],28:[2,37],49:[2,37],54:[2,37],57:[2,37],69:[2,37],74:[2,37],84:[2,37],89:[2,37],98:[2,37],99:88,100:[2,37],101:[2,37],102:[2,37],105:89,109:[2,37],113:[2,37],114:[2,37],125:[2,37],126:[2,37],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{8:240,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,113],4:[2,113],27:[2,113],28:[2,113],49:[2,113],54:[2,113],57:[2,113],64:[2,113],65:[2,113],66:[2,113],68:[2,113],69:[2,113],70:[2,113],71:[2,113],74:[2,113],82:[2,113],83:[2,113],84:[2,113],89:[2,113],98:[2,113],100:[2,113],101:[2,113],102:[2,113],109:[2,113],113:[2,113],114:[2,113],125:[2,113],126:[2,113],128:[2,113],129:[2,113],132:[2,113],133:[2,113],134:[2,113],135:[2,113],136:[2,113],137:[2,113]},{4:[2,54],27:[2,54],53:241,54:[1,233],84:[2,54]},{50:242,51:[1,58],52:[1,59]},{29:112,30:[1,72],43:113,55:243,56:111,58:114,59:115,72:[1,69],87:[1,116],88:[1,68]},{49:[2,60],54:[2,60]},{8:244,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,201],4:[2,201],27:[2,201],28:[2,201],49:[2,201],54:[2,201],57:[2,201],69:[2,201],74:[2,201],84:[2,201],89:[2,201],98:[2,201],99:88,100:[2,201],101:[2,201],102:[2,201],105:89,109:[2,201],113:[2,201],114:[2,201],125:[2,201],126:[2,201],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{8:245,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,203],4:[2,203],27:[2,203],28:[2,203],49:[2,203],54:[2,203],57:[2,203],69:[2,203],74:[2,203],84:[2,203],89:[2,203],98:[2,203],99:88,100:[2,203],101:[2,203],102:[2,203],105:89,109:[2,203],113:[2,203],114:[2,203],125:[2,203],126:[2,203],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{8:246,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,180],4:[2,180],27:[2,180],28:[2,180],49:[2,180],54:[2,180],57:[2,180],69:[2,180],74:[2,180],84:[2,180],89:[2,180],98:[2,180],100:[2,180],101:[2,180],102:[2,180],109:[2,180],113:[2,180],114:[2,180],119:[2,180],125:[2,180],126:[2,180],128:[2,180],129:[2,180],132:[2,180],133:[2,180],134:[2,180],135:[2,180],136:[2,180],137:[2,180]},{1:[2,130],4:[2,130],27:[2,130],28:[2,130],49:[2,130],54:[2,130],57:[2,130],69:[2,130],74:[2,130],84:[2,130],89:[2,130],94:[1,247],98:[2,130],100:[2,130],101:[2,130],102:[2,130],109:[2,130],113:[2,130],114:[2,130],125:[2,130],126:[2,130],128:[2,130],129:[2,130],132:[2,130],133:[2,130],134:[2,130],135:[2,130],136:[2,130],137:[2,130]},{4:[1,118],6:248,27:[1,6]},{29:249,30:[1,72]},{118:250,120:209,121:[1,210]},{28:[1,251],119:[1,252],120:253,121:[1,210]},{28:[2,173],119:[2,173],121:[2,173]},{8:255,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],91:254,92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{16:256,17:125,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:126,43:61,44:28,58:49,59:50,61:219,63:29,72:[1,69],81:[1,30],86:[1,56],87:[1,57],88:[1,68],97:[1,55]},{4:[2,103],15:166,28:[2,103],29:167,30:[1,72],31:168,32:[1,70],33:[1,71],40:216,41:164,43:217,44:169,46:[1,48],72:[1,215],77:257,78:214,87:[1,116],97:[1,55]},{4:[1,259],28:[1,258]},{4:[2,104],28:[2,104],74:[2,104]},{4:[2,103],15:166,29:167,30:[1,72],31:168,32:[1,70],33:[1,71],40:216,41:164,43:217,44:169,46:[1,48],72:[1,215],74:[2,103],77:260,78:214,87:[1,116],97:[1,55]},{4:[2,100],28:[2,100],74:[2,100]},{4:[2,42],28:[2,42],42:[1,261],74:[2,42]},{1:[2,98],4:[2,98],27:[1,262],28:[2,98],49:[2,98],54:[2,98],57:[2,98],62:95,64:[1,97],65:[1,98],66:[1,99],67:100,68:[1,101],69:[2,98],70:[1,102],71:[1,103],74:[2,98],79:94,82:[1,96],83:[2,111],84:[2,98],89:[2,98],98:[2,98],100:[2,98],101:[2,98],102:[2,98],109:[2,98],113:[2,98],114:[2,98],125:[2,98],126:[2,98],128:[2,98],129:[2,98],132:[2,98],133:[2,98],134:[2,98],135:[2,98],136:[2,98],137:[2,98]},{1:[2,71],4:[2,71],27:[2,71],28:[2,71],49:[2,71],54:[2,71],57:[2,71],64:[2,71],65:[2,71],66:[2,71],68:[2,71],69:[2,71],70:[2,71],71:[2,71],74:[2,71],82:[2,71],83:[2,71],84:[2,71],89:[2,71],98:[2,71],100:[2,71],101:[2,71],102:[2,71],109:[2,71],113:[2,71],114:[2,71],125:[2,71],126:[2,71],128:[2,71],129:[2,71],132:[2,71],133:[2,71],134:[2,71],135:[2,71],136:[2,71],137:[2,71]},{1:[2,135],4:[2,135],27:[2,135],28:[2,135],42:[2,135],49:[2,135],54:[2,135],57:[2,135],64:[2,135],65:[2,135],66:[2,135],68:[2,135],69:[2,135],70:[2,135],71:[2,135],74:[2,135],82:[2,135],83:[2,135],84:[2,135],89:[2,135],98:[2,135],100:[2,135],101:[2,135],102:[2,135],109:[2,135],113:[2,135],114:[2,135],125:[2,135],126:[2,135],128:[2,135],129:[2,135],132:[2,135],133:[2,135],134:[2,135],135:[2,135],136:[2,135],137:[2,135]},{1:[2,177],4:[2,177],27:[2,177],28:[2,177],49:[2,177],54:[2,177],57:[2,177],69:[2,177],74:[2,177],84:[2,177],89:[2,177],98:[2,177],100:[2,177],101:[2,177],102:[2,177],109:[2,177],113:[2,177],114:[2,177],119:[2,177],125:[2,177],126:[2,177],128:[2,177],129:[2,177],132:[2,177],133:[2,177],134:[2,177],135:[2,177],136:[2,177],137:[2,177]},{1:[2,178],4:[2,178],27:[2,178],28:[2,178],49:[2,178],54:[2,178],57:[2,178],69:[2,178],74:[2,178],84:[2,178],89:[2,178],98:[2,178],100:[2,178],101:[2,178],102:[2,178],109:[2,178],113:[2,178],114:[2,178],119:[2,178],125:[2,178],126:[2,178],128:[2,178],129:[2,178],132:[2,178],133:[2,178],134:[2,178],135:[2,178],136:[2,178],137:[2,178]},{8:263,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:264,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,162],4:[2,162],27:[2,162],28:[2,162],49:[2,162],54:[2,162],57:[2,162],69:[2,162],74:[2,162],84:[2,162],89:[2,162],98:[2,162],100:[2,162],101:[2,162],102:[2,162],109:[2,162],113:[2,162],114:[2,162],125:[2,162],126:[2,162],128:[2,162],129:[2,162],132:[2,162],133:[2,162],134:[2,162],135:[2,162],136:[2,162],137:[2,162]},{29:265,30:[1,72],58:154,59:155,72:[1,69],88:[1,68],106:266},{8:267,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,164],4:[2,164],27:[2,164],28:[2,164],49:[2,164],54:[2,164],57:[2,164],69:[2,164],74:[2,164],84:[2,164],89:[2,164],98:[2,164],100:[2,164],101:[2,164],102:[2,164],109:[2,164],113:[2,164],114:[2,164],125:[2,164],126:[2,164],128:[2,164],129:[2,164],132:[2,164],133:[2,164],134:[2,164],135:[2,164],136:[2,164],137:[2,164]},{8:268,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:269,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{54:[1,271],110:270,111:[1,230]},{4:[1,273],27:[1,274],89:[1,272]},{4:[2,55],8:160,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[2,55],28:[2,55],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,60:161,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],84:[2,55],86:[1,56],87:[1,57],88:[1,68],89:[2,55],90:275,92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{4:[2,54],27:[2,54],28:[2,54],53:276,54:[1,233]},{4:[2,66],27:[2,66],28:[2,66],54:[2,66],84:[2,66],89:[2,66]},{4:[1,278],27:[1,279],74:[1,277]},{4:[2,55],15:166,27:[2,55],28:[2,55],29:167,30:[1,72],31:168,32:[1,70],33:[1,71],40:280,41:164,43:165,44:169,46:[1,48],74:[2,55],87:[1,116],97:[1,55]},{8:281,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,282],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,83],4:[2,83],27:[2,83],28:[2,83],39:[2,83],49:[2,83],54:[2,83],57:[2,83],64:[2,83],65:[2,83],66:[2,83],68:[2,83],69:[2,83],70:[2,83],71:[2,83],74:[2,83],76:[2,83],82:[2,83],83:[2,83],84:[2,83],89:[2,83],98:[2,83],100:[2,83],101:[2,83],102:[2,83],109:[2,83],113:[2,83],114:[2,83],125:[2,83],126:[2,83],128:[2,83],129:[2,83],130:[2,83],131:[2,83],132:[2,83],133:[2,83],134:[2,83],135:[2,83],136:[2,83],137:[2,83],138:[2,83]},{28:[1,283],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{4:[1,273],27:[1,274],84:[1,284]},{4:[1,118],6:285,27:[1,6]},{49:[2,58],54:[2,58]},{49:[2,61],54:[2,61],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{28:[1,286],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{4:[1,118],6:287,27:[1,6],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{4:[1,118],6:288,27:[1,6]},{1:[2,131],4:[2,131],27:[2,131],28:[2,131],49:[2,131],54:[2,131],57:[2,131],69:[2,131],74:[2,131],84:[2,131],89:[2,131],98:[2,131],100:[2,131],101:[2,131],102:[2,131],109:[2,131],113:[2,131],114:[2,131],125:[2,131],126:[2,131],128:[2,131],129:[2,131],132:[2,131],133:[2,131],134:[2,131],135:[2,131],136:[2,131],137:[2,131]},{4:[1,118],6:289,27:[1,6]},{28:[1,290],119:[1,291],120:253,121:[1,210]},{1:[2,171],4:[2,171],27:[2,171],28:[2,171],49:[2,171],54:[2,171],57:[2,171],69:[2,171],74:[2,171],84:[2,171],89:[2,171],98:[2,171],100:[2,171],101:[2,171],102:[2,171],109:[2,171],113:[2,171],114:[2,171],125:[2,171],126:[2,171],128:[2,171],129:[2,171],132:[2,171],133:[2,171],134:[2,171],135:[2,171],136:[2,171],137:[2,171]},{4:[1,118],6:292,27:[1,6]},{28:[2,174],119:[2,174],121:[2,174]},{4:[1,118],6:293,27:[1,6],54:[1,294]},{4:[2,127],27:[2,127],54:[2,127],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,93],4:[2,93],27:[1,295],28:[2,93],49:[2,93],54:[2,93],57:[2,93],62:95,64:[1,97],65:[1,98],66:[1,99],67:100,68:[1,101],69:[2,93],70:[1,102],71:[1,103],74:[2,93],79:94,82:[1,96],83:[2,111],84:[2,93],89:[2,93],98:[2,93],100:[2,93],101:[2,93],102:[2,93],109:[2,93],113:[2,93],114:[2,93],125:[2,93],126:[2,93],128:[2,93],129:[2,93],132:[2,93],133:[2,93],134:[2,93],135:[2,93],136:[2,93],137:[2,93]},{4:[1,259],28:[1,296]},{1:[2,96],4:[2,96],27:[2,96],28:[2,96],49:[2,96],54:[2,96],57:[2,96],69:[2,96],74:[2,96],84:[2,96],89:[2,96],98:[2,96],100:[2,96],101:[2,96],102:[2,96],109:[2,96],113:[2,96],114:[2,96],125:[2,96],126:[2,96],128:[2,96],129:[2,96],132:[2,96],133:[2,96],134:[2,96],135:[2,96],136:[2,96],137:[2,96]},{15:166,29:167,30:[1,72],31:168,32:[1,70],33:[1,71],40:216,41:164,43:217,44:169,46:[1,48],78:297,87:[1,116],97:[1,55]},{4:[1,259],74:[1,298]},{8:299,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,300],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{4:[2,103],15:166,28:[2,103],29:167,30:[1,72],31:168,32:[1,70],33:[1,71],40:216,41:164,43:217,44:169,46:[1,48],72:[1,215],77:301,78:214,87:[1,116],97:[1,55]},{1:[2,137],4:[2,137],27:[2,137],28:[2,137],49:[2,137],54:[2,137],57:[2,137],69:[2,137],74:[2,137],84:[2,137],89:[2,137],98:[2,137],99:88,100:[1,64],101:[2,137],102:[1,65],105:89,109:[2,137],113:[2,137],114:[1,67],125:[2,137],126:[2,137],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,139],4:[2,139],27:[2,139],28:[2,139],49:[2,139],54:[2,139],57:[2,139],69:[2,139],74:[2,139],84:[2,139],89:[2,139],98:[2,139],99:88,100:[1,64],101:[2,139],102:[1,65],105:89,109:[2,139],113:[2,139],114:[1,67],125:[2,139],126:[2,139],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{107:302,108:[1,227],111:[2,149]},{110:303,111:[1,230]},{1:[2,152],4:[2,152],27:[2,152],28:[2,152],49:[2,152],54:[2,152],57:[2,152],69:[2,152],74:[2,152],84:[2,152],89:[2,152],98:[2,152],99:88,100:[1,64],101:[1,304],102:[1,65],105:89,109:[1,305],113:[2,152],114:[1,67],125:[2,152],126:[2,152],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{99:88,100:[1,64],102:[1,65],105:89,112:306,113:[1,307],114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,156],4:[2,156],27:[2,156],28:[2,156],49:[2,156],54:[2,156],57:[2,156],69:[2,156],74:[2,156],84:[2,156],89:[2,156],98:[2,156],99:88,100:[1,64],101:[1,308],102:[1,65],105:89,109:[2,156],113:[2,156],114:[1,67],125:[2,156],126:[2,156],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,166],4:[2,166],27:[2,166],28:[2,166],49:[2,166],54:[2,166],57:[2,166],69:[2,166],74:[2,166],84:[2,166],89:[2,166],98:[2,166],100:[2,166],101:[2,166],102:[2,166],109:[2,166],113:[2,166],114:[2,166],125:[2,166],126:[2,166],128:[2,166],129:[2,166],132:[2,166],133:[2,166],134:[2,166],135:[2,166],136:[2,166],137:[2,166]},{29:310,30:[1,72],58:154,59:155,72:[1,69],88:[1,68],106:309},{1:[2,119],4:[2,119],27:[2,119],28:[2,119],39:[2,119],49:[2,119],54:[2,119],57:[2,119],64:[2,119],65:[2,119],66:[2,119],68:[2,119],69:[2,119],70:[2,119],71:[2,119],74:[2,119],82:[2,119],83:[2,119],84:[2,119],89:[2,119],98:[2,119],100:[2,119],101:[2,119],102:[2,119],108:[2,119],109:[2,119],111:[2,119],113:[2,119],114:[2,119],125:[2,119],126:[2,119],128:[2,119],129:[2,119],132:[2,119],133:[2,119],134:[2,119],135:[2,119],136:[2,119],137:[2,119]},{8:160,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,60:161,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],90:311,92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:160,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,27:[1,159],29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,60:161,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],85:312,86:[1,56],87:[1,57],88:[1,68],90:158,92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{4:[2,121],27:[2,121],28:[2,121],54:[2,121],84:[2,121],89:[2,121]},{4:[1,273],27:[1,274],28:[1,313]},{1:[2,86],4:[2,86],27:[2,86],28:[2,86],39:[2,86],49:[2,86],54:[2,86],57:[2,86],64:[2,86],65:[2,86],66:[2,86],68:[2,86],69:[2,86],70:[2,86],71:[2,86],74:[2,86],82:[2,86],83:[2,86],84:[2,86],89:[2,86],98:[2,86],100:[2,86],101:[2,86],102:[2,86],108:[2,86],109:[2,86],111:[2,86],113:[2,86],114:[2,86],125:[2,86],126:[2,86],128:[2,86],129:[2,86],132:[2,86],133:[2,86],134:[2,86],135:[2,86],136:[2,86],137:[2,86]},{15:166,29:167,30:[1,72],31:168,32:[1,70],33:[1,71],40:314,41:164,43:165,44:169,46:[1,48],87:[1,116],97:[1,55]},{4:[2,87],15:166,27:[2,87],28:[2,87],29:167,30:[1,72],31:168,32:[1,70],33:[1,71],40:163,41:164,43:165,44:169,46:[1,48],54:[2,87],73:315,87:[1,116],97:[1,55]},{4:[2,89],27:[2,89],28:[2,89],54:[2,89],74:[2,89]},{4:[2,40],27:[2,40],28:[2,40],54:[2,40],74:[2,40],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{8:316,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,38],4:[2,38],27:[2,38],28:[2,38],49:[2,38],54:[2,38],57:[2,38],69:[2,38],74:[2,38],84:[2,38],89:[2,38],98:[2,38],100:[2,38],101:[2,38],102:[2,38],109:[2,38],113:[2,38],114:[2,38],125:[2,38],126:[2,38],128:[2,38],129:[2,38],132:[2,38],133:[2,38],134:[2,38],135:[2,38],136:[2,38],137:[2,38]},{1:[2,114],4:[2,114],27:[2,114],28:[2,114],49:[2,114],54:[2,114],57:[2,114],64:[2,114],65:[2,114],66:[2,114],68:[2,114],69:[2,114],70:[2,114],71:[2,114],74:[2,114],82:[2,114],83:[2,114],84:[2,114],89:[2,114],98:[2,114],100:[2,114],101:[2,114],102:[2,114],109:[2,114],113:[2,114],114:[2,114],125:[2,114],126:[2,114],128:[2,114],129:[2,114],132:[2,114],133:[2,114],134:[2,114],135:[2,114],136:[2,114],137:[2,114]},{1:[2,50],4:[2,50],27:[2,50],28:[2,50],49:[2,50],54:[2,50],57:[2,50],69:[2,50],74:[2,50],84:[2,50],89:[2,50],98:[2,50],100:[2,50],101:[2,50],102:[2,50],109:[2,50],113:[2,50],114:[2,50],125:[2,50],126:[2,50],128:[2,50],129:[2,50],132:[2,50],133:[2,50],134:[2,50],135:[2,50],136:[2,50],137:[2,50]},{1:[2,202],4:[2,202],27:[2,202],28:[2,202],49:[2,202],54:[2,202],57:[2,202],69:[2,202],74:[2,202],84:[2,202],89:[2,202],98:[2,202],100:[2,202],101:[2,202],102:[2,202],109:[2,202],113:[2,202],114:[2,202],125:[2,202],126:[2,202],128:[2,202],129:[2,202],132:[2,202],133:[2,202],134:[2,202],135:[2,202],136:[2,202],137:[2,202]},{1:[2,179],4:[2,179],27:[2,179],28:[2,179],49:[2,179],54:[2,179],57:[2,179],69:[2,179],74:[2,179],84:[2,179],89:[2,179],98:[2,179],100:[2,179],101:[2,179],102:[2,179],109:[2,179],113:[2,179],114:[2,179],119:[2,179],125:[2,179],126:[2,179],128:[2,179],129:[2,179],132:[2,179],133:[2,179],134:[2,179],135:[2,179],136:[2,179],137:[2,179]},{1:[2,132],4:[2,132],27:[2,132],28:[2,132],49:[2,132],54:[2,132],57:[2,132],69:[2,132],74:[2,132],84:[2,132],89:[2,132],98:[2,132],100:[2,132],101:[2,132],102:[2,132],109:[2,132],113:[2,132],114:[2,132],125:[2,132],126:[2,132],128:[2,132],129:[2,132],132:[2,132],133:[2,132],134:[2,132],135:[2,132],136:[2,132],137:[2,132]},{1:[2,133],4:[2,133],27:[2,133],28:[2,133],49:[2,133],54:[2,133],57:[2,133],69:[2,133],74:[2,133],84:[2,133],89:[2,133],94:[2,133],98:[2,133],100:[2,133],101:[2,133],102:[2,133],109:[2,133],113:[2,133],114:[2,133],125:[2,133],126:[2,133],128:[2,133],129:[2,133],132:[2,133],133:[2,133],134:[2,133],135:[2,133],136:[2,133],137:[2,133]},{1:[2,169],4:[2,169],27:[2,169],28:[2,169],49:[2,169],54:[2,169],57:[2,169],69:[2,169],74:[2,169],84:[2,169],89:[2,169],98:[2,169],100:[2,169],101:[2,169],102:[2,169],109:[2,169],113:[2,169],114:[2,169],125:[2,169],126:[2,169],128:[2,169],129:[2,169],132:[2,169],133:[2,169],134:[2,169],135:[2,169],136:[2,169],137:[2,169]},{4:[1,118],6:317,27:[1,6]},{28:[1,318]},{4:[1,319],28:[2,175],119:[2,175],121:[2,175]},{8:320,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{4:[2,103],15:166,28:[2,103],29:167,30:[1,72],31:168,32:[1,70],33:[1,71],40:216,41:164,43:217,44:169,46:[1,48],72:[1,215],77:321,78:214,87:[1,116],97:[1,55]},{1:[2,94],4:[2,94],27:[2,94],28:[2,94],49:[2,94],54:[2,94],57:[2,94],69:[2,94],74:[2,94],84:[2,94],89:[2,94],98:[2,94],100:[2,94],101:[2,94],102:[2,94],109:[2,94],113:[2,94],114:[2,94],125:[2,94],126:[2,94],128:[2,94],129:[2,94],132:[2,94],133:[2,94],134:[2,94],135:[2,94],136:[2,94],137:[2,94]},{4:[2,105],28:[2,105],74:[2,105]},{4:[2,106],28:[2,106],74:[2,106]},{4:[2,101],28:[2,101],74:[2,101],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{8:322,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{4:[1,259],28:[1,323]},{1:[2,163],4:[2,163],27:[2,163],28:[2,163],49:[2,163],54:[2,163],57:[2,163],69:[2,163],74:[2,163],84:[2,163],89:[2,163],98:[2,163],100:[2,163],101:[2,163],102:[2,163],109:[2,163],113:[2,163],114:[2,163],125:[2,163],126:[2,163],128:[2,163],129:[2,163],132:[2,163],133:[2,163],134:[2,163],135:[2,163],136:[2,163],137:[2,163]},{1:[2,165],4:[2,165],27:[2,165],28:[2,165],49:[2,165],54:[2,165],57:[2,165],69:[2,165],74:[2,165],84:[2,165],89:[2,165],98:[2,165],100:[2,165],101:[2,165],102:[2,165],109:[2,165],113:[2,165],114:[2,165],125:[2,165],126:[2,165],128:[2,165],129:[2,165],132:[2,165],133:[2,165],134:[2,165],135:[2,165],136:[2,165],137:[2,165]},{8:324,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:325,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,168],4:[2,168],27:[2,168],28:[2,168],49:[2,168],54:[2,168],57:[2,168],69:[2,168],74:[2,168],84:[2,168],89:[2,168],98:[2,168],100:[2,168],101:[2,168],102:[2,168],109:[2,168],113:[2,168],114:[2,168],125:[2,168],126:[2,168],128:[2,168],129:[2,168],132:[2,168],133:[2,168],134:[2,168],135:[2,168],136:[2,168],137:[2,168]},{8:326,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:327,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{110:328,111:[1,230]},{111:[2,149]},{4:[2,122],27:[2,122],28:[2,122],54:[2,122],84:[2,122],89:[2,122]},{4:[2,54],27:[2,54],28:[2,54],53:329,54:[1,233]},{4:[2,123],27:[2,123],28:[2,123],54:[2,123],84:[2,123],89:[2,123]},{4:[2,90],27:[2,90],28:[2,90],54:[2,90],74:[2,90]},{4:[2,54],27:[2,54],28:[2,54],53:330,54:[1,237]},{28:[1,331],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{28:[1,332]},{1:[2,172],4:[2,172],27:[2,172],28:[2,172],49:[2,172],54:[2,172],57:[2,172],69:[2,172],74:[2,172],84:[2,172],89:[2,172],98:[2,172],100:[2,172],101:[2,172],102:[2,172],109:[2,172],113:[2,172],114:[2,172],125:[2,172],126:[2,172],128:[2,172],129:[2,172],132:[2,172],133:[2,172],134:[2,172],135:[2,172],136:[2,172],137:[2,172]},{28:[2,176],119:[2,176],121:[2,176]},{4:[2,128],27:[2,128],54:[2,128],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{4:[1,259],28:[1,333]},{28:[1,334],99:88,100:[1,64],102:[1,65],105:89,114:[1,67],125:[1,86],126:[1,87],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,99],4:[2,99],27:[2,99],28:[2,99],49:[2,99],54:[2,99],57:[2,99],69:[2,99],74:[2,99],84:[2,99],89:[2,99],98:[2,99],100:[2,99],101:[2,99],102:[2,99],109:[2,99],113:[2,99],114:[2,99],125:[2,99],126:[2,99],128:[2,99],129:[2,99],132:[2,99],133:[2,99],134:[2,99],135:[2,99],136:[2,99],137:[2,99]},{1:[2,153],4:[2,153],27:[2,153],28:[2,153],49:[2,153],54:[2,153],57:[2,153],69:[2,153],74:[2,153],84:[2,153],89:[2,153],98:[2,153],99:88,100:[1,64],101:[2,153],102:[1,65],105:89,109:[2,153],113:[2,153],114:[1,67],125:[2,153],126:[2,153],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,154],4:[2,154],27:[2,154],28:[2,154],49:[2,154],54:[2,154],57:[2,154],69:[2,154],74:[2,154],84:[2,154],89:[2,154],98:[2,154],99:88,100:[1,64],101:[1,335],102:[1,65],105:89,109:[2,154],113:[2,154],114:[1,67],125:[2,154],126:[2,154],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,158],4:[2,158],27:[2,158],28:[2,158],49:[2,158],54:[2,158],57:[2,158],69:[2,158],74:[2,158],84:[2,158],89:[2,158],98:[2,158],99:88,100:[1,64],101:[1,336],102:[1,65],105:89,109:[1,337],113:[2,158],114:[1,67],125:[2,158],126:[2,158],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,157],4:[2,157],27:[2,157],28:[2,157],49:[2,157],54:[2,157],57:[2,157],69:[2,157],74:[2,157],84:[2,157],89:[2,157],98:[2,157],99:88,100:[1,64],101:[2,157],102:[1,65],105:89,109:[2,157],113:[2,157],114:[1,67],125:[2,157],126:[2,157],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,167],4:[2,167],27:[2,167],28:[2,167],49:[2,167],54:[2,167],57:[2,167],69:[2,167],74:[2,167],84:[2,167],89:[2,167],98:[2,167],100:[2,167],101:[2,167],102:[2,167],109:[2,167],113:[2,167],114:[2,167],125:[2,167],126:[2,167],128:[2,167],129:[2,167],132:[2,167],133:[2,167],134:[2,167],135:[2,167],136:[2,167],137:[2,167]},{4:[1,273],27:[1,274],28:[1,338]},{4:[1,278],27:[1,279],28:[1,339]},{4:[2,41],27:[2,41],28:[2,41],54:[2,41],74:[2,41]},{1:[2,170],4:[2,170],27:[2,170],28:[2,170],49:[2,170],54:[2,170],57:[2,170],69:[2,170],74:[2,170],84:[2,170],89:[2,170],98:[2,170],100:[2,170],101:[2,170],102:[2,170],109:[2,170],113:[2,170],114:[2,170],125:[2,170],126:[2,170],128:[2,170],129:[2,170],132:[2,170],133:[2,170],134:[2,170],135:[2,170],136:[2,170],137:[2,170]},{1:[2,95],4:[2,95],27:[2,95],28:[2,95],49:[2,95],54:[2,95],57:[2,95],69:[2,95],74:[2,95],84:[2,95],89:[2,95],98:[2,95],100:[2,95],101:[2,95],102:[2,95],109:[2,95],113:[2,95],114:[2,95],125:[2,95],126:[2,95],128:[2,95],129:[2,95],132:[2,95],133:[2,95],134:[2,95],135:[2,95],136:[2,95],137:[2,95]},{4:[2,102],28:[2,102],74:[2,102]},{8:340,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:341,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{8:342,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{4:[2,124],27:[2,124],28:[2,124],54:[2,124],84:[2,124],89:[2,124]},{4:[2,91],27:[2,91],28:[2,91],54:[2,91],74:[2,91]},{1:[2,155],4:[2,155],27:[2,155],28:[2,155],49:[2,155],54:[2,155],57:[2,155],69:[2,155],74:[2,155],84:[2,155],89:[2,155],98:[2,155],99:88,100:[1,64],101:[2,155],102:[1,65],105:89,109:[2,155],113:[2,155],114:[1,67],125:[2,155],126:[2,155],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,159],4:[2,159],27:[2,159],28:[2,159],49:[2,159],54:[2,159],57:[2,159],69:[2,159],74:[2,159],84:[2,159],89:[2,159],98:[2,159],99:88,100:[1,64],101:[2,159],102:[1,65],105:89,109:[2,159],113:[2,159],114:[1,67],125:[2,159],126:[2,159],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{1:[2,160],4:[2,160],27:[2,160],28:[2,160],49:[2,160],54:[2,160],57:[2,160],69:[2,160],74:[2,160],84:[2,160],89:[2,160],98:[2,160],99:88,100:[1,64],101:[1,343],102:[1,65],105:89,109:[2,160],113:[2,160],114:[1,67],125:[2,160],126:[2,160],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]},{8:344,9:120,10:20,11:21,12:[1,22],13:[1,23],14:[1,24],15:25,16:9,17:10,18:11,19:12,20:13,21:14,22:15,23:16,24:17,25:18,26:19,29:60,30:[1,72],31:51,32:[1,70],33:[1,71],34:27,35:[1,52],36:[1,53],37:[1,54],38:26,43:61,44:28,45:[1,46],46:[1,48],47:[1,31],50:32,51:[1,58],52:[1,59],58:49,59:50,61:38,63:29,72:[1,69],75:[1,45],81:[1,30],86:[1,56],87:[1,57],88:[1,68],92:[1,40],96:[1,47],97:[1,55],99:41,100:[1,64],102:[1,65],103:42,104:[1,66],105:43,114:[1,67],117:[1,44],122:39,123:[1,62],124:[1,63],127:[1,33],128:[1,34],129:[1,35],130:[1,36],131:[1,37]},{1:[2,161],4:[2,161],27:[2,161],28:[2,161],49:[2,161],54:[2,161],57:[2,161],69:[2,161],74:[2,161],84:[2,161],89:[2,161],98:[2,161],99:88,100:[1,64],101:[2,161],102:[1,65],105:89,109:[2,161],113:[2,161],114:[1,67],125:[2,161],126:[2,161],128:[1,80],129:[1,79],132:[1,78],133:[1,81],134:[1,82],135:[1,83],136:[1,84],137:[1,85]}],defaultActions:{75:[2,4],96:[2,112],310:[2,149]},parseError:function d(a,b){throw new Error(a)},parse:function e(a){var b=this,c=[0],d=[null],e=this.table,f="",g=0,h=0,i=0,j=0,k=0,l=2,m=1;this.lexer.setInput(a),this.lexer.yy=this.yy,this.yy.lexer=this.lexer;var n=this.yy.parseError=typeof this.yy.parseError=="function"?this.yy.parseError:this.parseError;function o(a){c.length=c.length-2*a,d.length=d.length-a}function p(a){for(var b in e[a])if(b==l)return true;return false}function q(){var a;a=b.lexer.lex()||1,typeof a!=="number"&&(a=b.symbols_[a]||a);return a}var r,s,t,u,v,w,x={},y,z,A,B,C=false;while(true){t=c[c.length-1],this.defaultActions[t]?u=this.defaultActions[t]:(r==null&&(r=q()),u=e[t]&&e[t][r]);if(typeof u==="undefined"||!u.length||!u[0]){if(!k){B=[];for(y in e[t])this.terminals_[y]&&y>2&&B.push("'"+this.terminals_[y]+"'");if(this.lexer.showPosition)n.call(this,"Parse error on line "+(g+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+B.join(", "),{text:this.lexer.match,token:this.terminals_[r]||r,line:this.lexer.yylineno,expected:B});else{var D=r==1?"end of input":"'"+(this.terminals_[r]||r)+"'";n.call(this,"Parse error on line "+(g+1)+": Unexpected "+D,{text:this.lexer.match,token:this.terminals_[r]||r,line:this.lexer.yylineno,expected:B})}}if(k==3){if(r==m)throw"Parsing halted.";h=this.lexer.yyleng,f=this.lexer.yytext,g=this.lexer.yylineno,r=q()}while(1){if(p(t))break;if(t==0)throw"Parsing halted.";o(1),t=c[c.length-1]}s=r,r=l,t=c[c.length-1],u=e[t]&&e[t][l],k=3}if(u[0]instanceof Array&&u.length>1)throw new Error("Parse Error: multiple actions possible at state: "+t+", token: "+r);v=u;switch(v[0]){case 1:i++,c.push(r),d.push(this.lexer.yytext),c.push(v[1]),r=null,s?(r=s,s=null):(h=this.lexer.yyleng,f=this.lexer.yytext,g=this.lexer.yylineno,k>0&&k--);break;case 2:j++,z=this.productions_[v[1]][1],x.$=d[d.length-z],w=this.performAction.call(x,f,h,g,this.yy,v[1],d);if(typeof w!=="undefined")return w;z&&(c=c.slice(0,-1*z*2),d=d.slice(0,-1*z)),c.push(this.productions_[v[1]][0]),d.push(x.$),A=e[c[c.length-2]][c[c.length-1]],c.push(A);break;case 3:this.reductionCount=j,this.shiftCount=i;return true}}return true}};return a}();typeof require!=="undefined"&&(a.parser=b,a.parse=function(){return b.parse.apply(b,arguments)},a.main=function c(b){if(!b[1])throw new Error("Usage: "+b[0]+" FILE");if(typeof process!=="undefined")var c=require("fs").readFileSync(require("path").join(process.cwd(),b[1]),"utf8");else{var d=require("file").path(require("file").cwd());var c=d.join(b[1]).read({charset:"utf-8"})}return a.parser.parse(c)},typeof module!=="undefined"&&require.main===module&&a.main(typeof process!=="undefined"?process.argv.slice(1):require("system").args))},require["./scope"]=new function(){var a=this;(function(){var b,c,d,e;e=require("./helpers"),c=e.extend,d=e.last,a.Scope=function(){b=function(){function a(b,c,d){this.parent=b,this.expressions=c,this.method=d,this.variables=[{name:"arguments",type:"arguments"}],this.positions={},this.parent?this.garbage=this.parent.garbage:(this.garbage=[],a.root=this);return this}return a}(),b.root=null,b.prototype.add=function(a,b){var c;return typeof (c=this.positions[a])==="number"?this.variables[c].type=b:this.positions[a]=this.variables.push({name:a,type:b})-1},b.prototype.startLevel=function(){this.garbage.push([]);return this},b.prototype.endLevel=function(){var a,b,c,d;d=this.garbage.pop();for(b=0,c=d.length;b1?"_"+a+(b>1?b:""):"_"+(b+parseInt(a,36)).toString(36).replace(/\d/g,"a")},b.prototype.type=function(a){var b,c,d,e;e=this.variables;for(c=0,d=e.length;c=0;b--){a=c[b];if(!(a instanceof j)){this.expressions[b]=a.makeReturn();break}}return this},l.prototype.compile=function(a,b){a==null&&(a={});return a.scope?l.__super__.compile.call(this,a,b):this.compileRoot(a)},l.prototype.compileNode=function(a){var b,c,d,e,f,g,h;this.tab=a.indent,e=a.level===y,c=[],h=this.expressions;for(f=0,g=h.length;f1&&a.level>=v?"("+b+")":b},l.prototype.compileRoot=function(a){var b;a.indent=this.tab=a.bare?"":O,a.scope=new L(null,this,null),a.level=y,b=this.compileWithDeclarations(a),b=b.replace(Q,"");return a.bare?b:"(function() {\n"+b+"\n}).call(this);\n"},l.prototype.compileWithDeclarations=function(a){var b,c;a.level=y,b=this.compileNode(a),c=a.scope,c.hasAssignments(this)&&(b=""+this.tab+"var "+bc(c.compiledAssignments(),this.tab)+";\n"+b),!a.globals&&a.scope.hasDeclarations(this)&&(b=""+this.tab+"var "+c.compiledDeclarations()+";\n"+b);return b},l.wrap=function(a){if(a.length===1&&a[0]instanceof l)return a[0];return new l(a)};return l}.call(this),a.Literal=function(){z=function(){function a(a){this.value=a;return this}return a}(),bg(z,e),z.prototype.makeReturn=function(){return this.isPureStatement()?this:new J(this)},z.prototype.isPureStatement=function(){var a;return(a=this.value)==="break"||a==="continue"||a==="debugger"},z.prototype.isAssignable=function(){return o.test(this.value)},z.prototype.isComplex=B,z.prototype.assigns=function(a){return a===this.value},z.prototype.compile=function(){return this.value.reserved?"\""+this.value+"\"":this.value},z.prototype.toString=function(){return" \""+this.value+"\""};return z}(),a.Return=function(){J=function(){function a(a){this.expression=a;return this}return a}(),bg(J,e),J.prototype.children=["expression"],J.prototype.isStatement=W,J.prototype.isPureStatement=W,J.prototype.makeReturn=P,J.prototype.compile=function(a,b){var c,d;c=(d=this.expression)!=null?d.makeReturn():void 0;return c&&!(c instanceof J)?c.compile(a,b):J.__super__.compile.call(this,a,b)},J.prototype.compileNode=function(a){a.level=x;return this.tab+("return"+(this.expression?" "+this.expression.compile(a):"")+";")};return J}(),a.Value=function(){U=function(){function a(b,c,d){if(!c&&b instanceof a)return b;this.base=b,this.properties=c||[],d&&(this[d]=true);return this}return a}(),bg(U,e),U.prototype.children=["base","properties"],U.prototype.push=function(a){this.properties.push(a);return this},U.prototype.hasProperties=function(){return!!this.properties.length},U.prototype.isArray=function(){return!this.properties.length&&this.base instanceof c},U.prototype.isObject=function(){return!this.properties.length&&this.base instanceof D},U.prototype.isComplex=function(){return this.hasProperties()||this.base.isComplex()},U.prototype.isAssignable=function(){return this.hasProperties()||this.base.isAssignable()},U.prototype.isSimpleNumber=function(){return this.base instanceof z&&K.test(this.base.value)},U.prototype.isAtomic=function(){var a,b,c,d;d=this.properties.concat(this.base);for(b=0,c=d.length;b=0?"[\n"+a.indent+b+"\n"+this.tab+"]":"["+b+"]"},c.prototype.assigns=function(a){var b,c,d,e;e=this.objects;for(c=0,d=e.length;c=b.length)return"";if(b.length===1){f=b[0].compile(a,v);if(c)return f;return""+be("slice")+".call("+f+")"}d=b.slice(h);for(g=0,k=d.length;gy||this.returns)d=a.scope.freeVariable("results"),e=""+this.tab+d+" = [];\n",b&&(b=H.wrap(d,b));this.guard&&(b=l.wrap([new q(this.guard,b)])),b="\n"+b.compile(a,y)+"\n"+this.tab}c=e+this.tab+("while ("+this.condition.compile(a,x)+") {"+b+"}"),this.returns&&(a.indent=this.tab,c+="\n"+(new J(new z(d))).compile(a));return c};return V}(),a.Op=function(){E=function(){function a(a,b,c,d){if(a==="in")return new r(b,c);if(a==="new"){if(b instanceof f)return b.newInstance();b instanceof i&&b.bound&&(b=new G(b))}this.operator=this.CONVERSIONS[a]||a,this.first=b,this.second=c,this.flip=!!d;return this}return a}(),bg(E,e),E.prototype.CONVERSIONS={"==":"===","!=":"!==",of:"in"},E.prototype.INVERSIONS={"!==":"===","===":"!==",">":"<=","<=":">","<":">=",">=":"<"},E.prototype.children=["first","second"],E.prototype.isUnary=function(){return!this.second},E.prototype.isChainable=function(){var a;return(a=this.operator)==="<"||a===">"||a===">="||a==="<="||a==="==="||a==="!=="},E.prototype.invert=function(){var a;if(a=this.INVERSIONS[this.operator]){this.operator=a;return this}return this.second?(new G(this)).invert():new E("!",this)},E.prototype.unfoldSoak=function(a){var b;return((b=this.operator)==="++"||b==="--"||b==="delete")&&q.unfoldSoak(a,this,"first")},E.prototype.compileNode=function(a){if(this.isUnary())return this.compileUnary(a);if(this.isChainable()&&this.first.isChainable())return this.compileChain(a);if(this.operator==="?")return this.compileExistence(a);this.first.front=this.front;return""+this.first.compile(a,w)+" "+this.operator+" "+this.second.compile(a,w)},E.prototype.compileChain=function(a){var b,c,d,e;e=this.first.second.cache(a),this.first.second=e[0],d=e[1],c=this.first.compile(a,w),c.charAt(0)==="("&&(c=c.slice(1,-1)),b=""+c+" && "+d.compile(a)+" "+this.operator+" "+this.second.compile(a,w);return a.level= 0");if(d===c)return b;b=d+", "+b;return a.level= "+I):+A?e=""+t+" "+(A<0?">":"<")+"= "+J:(s=""+j+" <= "+J+" ? "+t,e=""+s+" <= "+J+" : "+t+" >= "+J,p=A?""+t+" += "+A:""+s+"++ : "+t+"--")):(v||this.object&&!this.raw?(T=this.source.compileLoopReference(a,"ref"),E=T[0],G=T[1]):E=G=this.source.compile(a,x),w=this.pattern?(new d(this.name,new z(""+G+"["+t+"]"))).compile(a,y):v?""+v+" = "+G+"["+t+"]":void 0,this.object||(0>A&&(A|0)===+A?(M=""+t+" = "+G+".length - 1",e=""+t+" >= 0"):(u=D.freeVariable("len"),M=""+t+" = 0, "+u+" = "+G+".length",e=""+t+" < "+u))),this.object?(g=t+" in "+E,k=this.raw?"":o+("if (!"+be("hasProp")+".call("+G+", "+t+")) continue;\n")):(A||(A=1),F&&F!==A&&(M+=", "+F),G!==E&&(f=this.tab+E+";\n"),g=M+("; "+e+"; ")+(p||t+function(){switch(+A){case 1:return"++";case-1:return"--";default:return A<0?" -= "+A.slice(1):" += "+A}}())),m&&(b=h.wrap(b,true)),w&&(L=o+w+";\n"),this.pattern||(f+=this.pluckDirectCall(a,b,v,r)),c=k+L;if(!b.isEmpty()){if(a.level>y||this.returns)C=D.freeVariable("results"),f+=this.tab+C+" = [];\n",B=this.compileReturnValue(C,a),b=H.wrap(C,b);this.guard&&(b=l.wrap([new q(this.guard,b)])),a.indent=o,c+=b.compile(a,y)}c&&(c="\n"+c+"\n"+this.tab);return f+this.tab+("for ("+g+") {"+c+"}")+B},n.prototype.pluckDirectCall=function(a,b,c,e){var g,h,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,A;k="",t=b.expressions;for(o=0,r=t.length;o=0;m--){g=s[m];if(!(g instanceof j)){g instanceof J||(d+=k+"break;\n");break}}}this.otherwise&&(d+=i+("default:\n"+this.otherwise.compile(a,y)+"\n"));return d+this.tab+"}"};return N}(),a.If=function(){q=function(){function a(a,b,c){this.body=b,c==null&&(c={}),this.condition=c.invert?a.invert():a,this.elseBody=null,this.isChain=false,this.soak=c.soak;return this}return a}(),bg(q,e),q.prototype.children=["condition","body","elseBody"],q.prototype.bodyNode=function(){var a;return(a=this.body)!=null?a.unwrap():void 0},q.prototype.elseBodyNode=function(){var a;return(a=this.elseBody)!=null?a.unwrap():void 0},q.prototype.addElse=function(a){this.isChain?this.elseBodyNode().addElse(a):(this.isChain=a instanceof q,this.elseBody=this.ensureExpressions(a));return this},q.prototype.isStatement=function(a){var b;return(a!=null?a.level:void 0)===y||this.bodyNode().isStatement(a)||((b=this.elseBodyNode())!=null?b.isStatement(a):void 0)},q.prototype.compileNode=function(a){return this.isStatement(a)?this.compileStatement(a):this.compileExpression(a)},q.prototype.makeReturn=function(){this.body&&(this.body=new l([this.body.makeReturn()])),this.elseBody&&(this.elseBody=new l([this.elseBody.makeReturn()]));return this},q.prototype.ensureExpressions=function(a){return a instanceof l?a:new l([a])},q.prototype.compileStatement=function(a){var b,c,d,e;c=Y(a,"chainChild"),d=this.condition.compile(a,x),a.indent+=O,b=this.ensureExpressions(this.body).compile(a),b&&(b="\n"+b+"\n"+this.tab),e="if ("+d+") {"+b+"}",c||(e=this.tab+e);if(!this.elseBody)return e;return e+" else "+(this.isChain?(a.indent=this.tab,a.chainChild=true,this.elseBody.unwrap().compile(a,y)):"{\n"+this.elseBody.compile(a,y)+"\n"+this.tab+"}")},q.prototype.compileExpression=function(a){var b,c,d,e;e=this.condition.compile(a,u),c=this.bodyNode().compile(a,v),b=this.elseBodyNode()?this.elseBodyNode().compile(a,v):"void 0",d=""+e+" ? "+c+" : "+b;return a.level>=u?"("+d+")":d},q.prototype.unfoldSoak=function(){return this.soak&&this},q.unfoldSoak=function(a,b,c){var d;if(d=b[c].unfoldSoak(a)){b[c]=d.body,d.body=new U(b);return d}};return q}.call(this),H={wrap:function(a,c){if(c.isEmpty()||ba(c.expressions).containsPureStatement())return c;return c.push(new f(new U(new z(a),[new b(new z("push"))]),[c.pop()]))}},h={wrap:function(a,c,d){var e,g,h,j,k;if(a.containsPureStatement())return a;h=new G(new i([],l.wrap([a]))),e=[];if((j=a.contains(this.literalArgs))||a.contains(this.literalThis))k=new z(j?"apply":"call"),e=[new z("this")],j&&e.push(new z("arguments")),h=new U(h,[new b(k)]),h.noReturn=d;g=new f(h,e);return c?l.wrap([g]):g},literalArgs:function(a){return a instanceof z&&a.value==="arguments"},literalThis:function(a){return a instanceof z&&a.value==="this"||a instanceof i&&a.bound}},T={"extends":"function(child, parent) {\n function ctor() { this.constructor = child; }\n ctor.prototype = parent.prototype;\n child.prototype = new ctor;\n if (typeof parent.extended === \"function\") parent.extended(child);\n child.__super__ = parent.prototype;\n return child;\n}",bind:"function(func, context) {\n return function() { return func.apply(context, arguments); };\n}",indexOf:"Array.prototype.indexOf || function(item) {\n for (var i = 0, l = this.length; i < l; i++) {\n if (this[i] === item) return i;\n }\n return -1;\n}",hasProp:"Object.prototype.hasOwnProperty",slice:"Array.prototype.slice"},y=0,x=1,v=2,u=3,w=4,t=5,O=" ",Q=/[ \t]+$/gm,o=/^[$A-Za-z_][$\w]*$/,C=/^-?(?:0x[\da-f]+|(?:\d+(\.\d+)?|\.\d+)(?:e[+-]?\d+)?)$/i,K=/^[+-]?\d+$/,p=/^['"]/,be=function(a){var b;b="__"+a,L.root.assign(b,T[a]);return b},bc=function(a,b){return a.replace(/\n/g,"$&"+b)}}).call(this)},require["./coffee-script"]=new function(){var exports=this;(function(){var Lexer,compile,fs,lexer,parser,path;fs=require("fs"),path=require("path"),Lexer=require("./lexer").Lexer,parser=require("./parser").parser,require.extensions?require.extensions[".coffee"]=function(a,b){var c;c=compile(fs.readFileSync(b,"utf8"));return a._compile(c,b)}:require.registerExtension&&require.registerExtension(".coffee",function(a){return compile(a)}),exports.VERSION="0.9.4",exports.helpers=require("./helpers"),exports.compile=compile=function(a,b){b==null&&(b={});try{return parser.parse(lexer.tokenize(a)).compile(b)}catch(c){b.fileName&&(c.message="In "+b.fileName+", "+c.message);throw c}},exports.tokens=function(a,b){return lexer.tokenize(a,b)},exports.nodes=function(a,b){return parser.parse(lexer.tokenize(a,b))},exports.run=function(a,b){var c;c=module;while(c.parent)c=c.parent;c.filename=fs.realpathSync(b.fileName||"."),c.moduleCache&&(c.moduleCache={});return path.extname(c.filename)!==".coffee"||require.extensions?c._compile(compile(a,b),c.filename):c._compile(a,c.filename)},exports.eval=function(code,options){var __dirname,__filename;__filename=options.fileName,__dirname=path.dirname(__filename);return eval(compile(code,options))},lexer=new Lexer,parser.lexer={lex:function(){var a,b;b=this.tokens[this.pos++]||[""],a=b[0],this.yytext=b[1],this.yylineno=b[2];return a},setInput:function(a){this.tokens=a;return this.pos=0},upcomingInput:function(){return""}},parser.yy=require("./nodes")}).call(this)},require["./browser"]=new function(){var exports=this;(function(){var CoffeeScript,runScripts;CoffeeScript=require("./coffee-script"),CoffeeScript.require=require,CoffeeScript.eval=function(code,options){return eval(CoffeeScript.compile(code,options))},CoffeeScript.run=function(a,b){b==null&&(b={}),b.bare=true;return Function(CoffeeScript.compile(a,b))()};typeof window=="undefined"||window===null||(CoffeeScript.load=function(a,b){var c;c=new(window.ActiveXObject||XMLHttpRequest)("Microsoft.XMLHTTP"),c.open("GET",a,true),"overrideMimeType"in c&&c.overrideMimeType("text/plain"),c.onreadystatechange=function(){if(c.readyState===4)return CoffeeScript.run(c.responseText,b)};return c.send(null)},runScripts=function(){var a,b,c,d;d=document.getElementsByTagName("script");for(b=0,c=d.length;b=0)f+=1;else if(j=g[0],u.call(d,j)>=0)f-=1;a+=1}return a-1},a.prototype.removeLeadingNewlines=function(){var a,b,c,d;d=this.tokens;for(a=0,c=d.length;a=0)))return 1;d.splice(b,1);return 0})},a.prototype.closeOpenCalls=function(){var a,b;b=function(a,b){var c;return(c=a[0])===")"||c==="CALL_END"||a[0]==="OUTDENT"&&this.tag(b-1)===")"},a=function(a,b){return this.tokens[a[0]==="OUTDENT"?b-1:b][0]="CALL_END"};return this.scanTokens(function(c,d){c[0]==="CALL_START"&&this.detectEnd(d+1,b,a);return 1})},a.prototype.closeOpenIndexes=function(){var a,b;b=function(a,b){var c;return(c=a[0])==="]"||c==="INDEX_END"},a=function(a,b){return a[0]="INDEX_END"};return this.scanTokens(function(c,d){c[0]==="INDEX_START"&&this.detectEnd(d+1,b,a);return 1})},a.prototype.addImplicitBraces=function(){var a,b,c,f,g;c=[],f=null,g=0,b=function(a,b){var c,d,e,f,g,h;g=this.tokens,c=g[b+1],f=g[b+2],e=g[b+3];if("HERECOMMENT"===(c!=null?c[0]:void 0))return false;d=a[0];return(d==="TERMINATOR"||d==="OUTDENT")&&!((f!=null?f[0]:void 0)===":"||(c!=null?c[0]:void 0)==="@"&&(e!=null?e[0]:void 0)===":")||d===","&&c&&((h=c[0])!=="IDENTIFIER"&&h!=="NUMBER"&&h!=="STRING"&&h!=="@"&&h!=="TERMINATOR"&&h!=="OUTDENT"&&h!=="(")},a=function(a,b){return this.tokens.splice(b,0,["}","}",a[2]])};return this.scanTokens(function(g,h,i){var j,k,l,m,n,o,p,q;if(p=m=g[0],u.call(e,p)>=0){c.push([m==="INDENT"&&this.tag(h-1)==="{"?"{":m,h]);return 1}if(u.call(d,m)>=0){f=c.pop();return 1}if(!(m===":"&&((k=this.tag(h-2))===":"||(j=this.tag(h-1))===")"&&this.tag(f[1]-1)===":"||((q=c[c.length-1])!=null?q[0]:void 0)!=="{")))return 1;c.push(["{"]),l=j===")"?f[1]:k==="@"?h-2:h-1,this.tag(l-2)==="HERECOMMENT"&&(l-=2),o=new String("{"),o.generated=true,n=["{",o,g[2]],n.generated=true,i.splice(l,0,n),this.detectEnd(h+2,b,a);return 2})},a.prototype.addImplicitParentheses=function(){var a,b;b=false,a=function(a,b){var c;c=a[0]==="OUTDENT"?b+1:b;return this.tokens.splice(c,0,["CALL_END",")",a[2]])};return this.scanTokens(function(c,d,e){var k,m,n,o,p,q,r;p=c[0];if(p==="CLASS"||p==="IF"||p==="UNLESS")b=true;n=e[d-1],m=e[d+1],k=!b&&p==="INDENT"&&m&&m.generated&&m[0]==="{"&&n&&(q=n[0],u.call(i,q)>=0),o=false,u.call(l,p)>=0&&(b=false),n&&!n.spaced&&p==="?"&&(c.call=true);if(!(k||(n!=null?n.spaced:void 0)&&(n.call||(r=n[0],u.call(i,r)>=0))&&(u.call(g,p)>=0||!(c.spaced||c.newLine)&&u.call(j,p)>=0)))return 1;e.splice(d,0,["CALL_START","(",c[2]]),this.detectEnd(d+(k?2:1),function(a,b){var c,d;if(!o&&a.fromThen)return true;p=a[0];if(p==="IF"||p==="ELSE"||p==="UNLESS"||p==="->"||p==="=>")o=true;if((p==="."||p==="?."||p==="::")&&this.tag(b-1)==="OUTDENT")return true;return!a.generated&&this.tag(b-1)!==","&&u.call(h,p)>=0&&(p!=="INDENT"||this.tag(b-2)!=="CLASS"&&(d=this.tag(b-1),u.call(f,d)<0)&&!((c=this.tokens[b+1])&&c.generated&&c[0]==="{"))},a),n[0]==="?"&&(n[0]="FUNC_EXIST");return 2})},a.prototype.addImplicitIndentation=function(){return this.scanTokens(function(a,b,c){var d,e,f,g,h,i,j,k;i=a[0];if(i==="TERMINATOR"&&this.tag(b+1)==="THEN"){c.splice(b,1);return 0}if(i==="ELSE"&&this.tag(b-1)!=="OUTDENT"){c.splice.apply(c,[b,0].concat(v.call(this.indentation(a))));return 2}if(i==="CATCH"&&((j=this.tag(b+2))==="OUTDENT"||j==="TERMINATOR"||j==="FINALLY")){c.splice.apply(c,[b+2,0].concat(v.call(this.indentation(a))));return 4}if(u.call(o,i)>=0&&this.tag(b+1)!=="INDENT"&&!(i==="ELSE"&&this.tag(b+1)==="IF")){h=i,k=this.indentation(a),f=k[0],g=k[1],h==="THEN"&&(f.fromThen=true),f.generated=g.generated=true,c.splice(b+1,0,f),e=function(a,b){var c;return a[1]!==";"&&(c=a[0],u.call(n,c)>=0)&&!(a[0]==="ELSE"&&(h!=="IF"&&h!=="THEN"))},d=function(a,b){return this.tokens.splice(this.tag(b-1)===","?b-1:b,0,g)},this.detectEnd(b+2,e,d),i==="THEN"&&c.splice(b,1);return 1}return 1})},a.prototype.tagPostfixConditionals=function(){var a;a=function(a,b){var c;return(c=a[0])==="TERMINATOR"||c==="INDENT"};return this.scanTokens(function(b,c){var d,e;if((e=b[0])!=="IF"&&e!=="UNLESS")return 1;d=b,this.detectEnd(c+1,a,function(a,b){if(a[0]!=="INDENT")return d[0]="POST_"+d[0]});return 1})},a.prototype.ensureBalance=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n;d={},f={},m=this.tokens;for(i=0,k=m.length;i0)throw Error("unclosed "+e+" on line "+(f[e]+1))}return this},a.prototype.rewriteClosingParens=function(){var a,b,c;c=[],a={};for(b in k)a[b]=0;return this.scanTokens(function(b,f,g){var h,i,j,l,m,n,o;if(o=m=b[0],u.call(e,o)>=0){c.push(b);return 1}if(u.call(d,m)<0)return 1;if(a[h=k[m]]>0){a[h]-=1,g.splice(f,1);return 0}i=c.pop(),j=i[0],l=k[j];if(m===l)return 1;a[j]+=1,n=[l,j==="INDENT"?i[1]:l],this.tag(f+2)===j?(g.splice(f+3,0,n),c.push(i)):g.splice(f,0,n);return 1})},a.prototype.indentation=function(a){return[["INDENT",2,a[2]],["OUTDENT",2,a[2]]]},a.prototype.tag=function(a){var b;return(b=this.tokens[a])!=null?b[0]:void 0};return a}(),b=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["CALL_START","CALL_END"],["PARAM_START","PARAM_END"],["INDEX_START","INDEX_END"]],k={},e=[],d=[];for(r=0,s=b.length;r","=>","[","(","{","--","++"],j=["+","-"],f=["->","=>","{","[",","],h=["POST_IF","POST_UNLESS","FOR","WHILE","UNTIL","WHEN","BY","LOOP","TERMINATOR","INDENT"],o=["ELSE","->","=>","TRY","FINALLY","THEN"],n=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN"],l=["TERMINATOR","INDENT","OUTDENT"]}).call(this)},require["./lexer"]=new function(){var a=this;(function(){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T;var U=Array.prototype.indexOf||function(a){for(var b=0,c=this.length;b=0||!b&&U.call(g,c)>=0)i=c.toUpperCase(),i==="WHEN"&&(k=this.tag(),U.call(t,k)>=0)?i="LEADING_WHEN":i==="FOR"?this.seenFor=true:U.call(M,i)>=0?i="UNARY":U.call(G,i)>=0&&(i!=="INSTANCEOF"&&this.seenFor?(this.seenFor=false,i="FOR"+i):(i="RELATION",this.value()==="!"&&(this.tokens.pop(),c="!"+c)));U.call(r,c)>=0&&(b?(i="IDENTIFIER",c=new String(c),c.reserved=true):U.call(H,c)>=0&&this.identifierError(c)),b||(f.hasOwnProperty(c)&&(c=f[c]),i=function(){switch(c){case"!":return"UNARY";case"==":case"!=":return"COMPARE";case"&&":case"||":return"LOGIC";case"true":case"false":case"null":case"undefined":return"BOOL";case"break":case"continue":case"debugger":return"STATEMENT";default:return i}}()),this.token(i,c),a&&this.token(":",":");return d.length},a.prototype.numberToken=function(){var a,b;if(!(a=D.exec(this.chunk)))return 0;b=a[0],this.token("NUMBER",b);return b.length},a.prototype.stringToken=function(){var a,b;switch(this.chunk.charAt(0)){case"'":if(!(a=K.exec(this.chunk)))return 0;this.token("STRING",(b=a[0]).replace(y,"\\\n"));break;case"\"":if(!(b=this.balancedString(this.chunk,[["\"","\""],["#{","}"]])))return 0;0=0))return 0;if(!(a=F.exec(this.chunk)))return 0;c=a[0],this.token("REGEX",c==="//"?"/(?:)/":c);return c.length},a.prototype.heregexToken=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,o;d=a[0],b=a[1],c=a[2];if(0>b.indexOf("#{")){e=b.replace(n,"").replace(/\//g,"\\/"),this.token("REGEX","/"+(e||"(?:)")+"/"+c);return d.length}this.token("IDENTIFIER","RegExp"),this.tokens.push(["CALL_START","("]),g=[],k=this.interpolateString(b,{regex:true});for(i=0,j=k.length;ithis.indent){if(d){this.indebt=f-this.indent,this.suppressNewlines();return b.length}a=f-this.indent+this.outdebt,this.token("INDENT",a),this.indents.push(a),this.outdebt=this.indebt=0}else this.indebt=0,this.outdentToken(this.indent-f,d);this.indent=f;return b.length},a.prototype.outdentToken=function(a,b,c){var d,e;while(a>0)e=this.indents.length-1,this.indents[e]===void 0?a=0:this.indents[e]===this.outdebt?(a-=this.outdebt,this.outdebt=0):this.indents[e]=0)&&this.assignmentError();if((h=b[1])==="||"||h==="&&"){b[0]="COMPOUND_ASSIGN",b[1]+="=";return f.length}}if(f===";")c="TERMINATOR";else if(U.call(x,f)>=0)c="MATH";else if(U.call(i,f)>=0)c="COMPARE";else if(U.call(j,f)>=0)c="COMPOUND_ASSIGN";else if(U.call(M,f)>=0)c="UNARY";else if(U.call(J,f)>=0)c="SHIFT";else if(U.call(v,f)>=0||f==="?"&&(b!=null?b.spaced:void 0))c="LOGIC";else if(b&&!b.spaced)if(f==="("&&(k=b[0],U.call(d,k)>=0))b[0]==="?"&&(b[0]="FUNC_EXIST"),c="CALL_START";else if(f==="["&&(l=b[0],U.call(p,l)>=0)){c="INDEX_START";switch(b[0]){case"?":b[0]="INDEX_SOAK";break;case"::":b[0]="INDEX_PROTO"}}this.token(c,f);return f.length},a.prototype.sanitizeHeredoc=function(a,b){var c,d,e,f,g;e=b.indent,d=b.herecomment;if(d&&0>a.indexOf("\n"))return a;if(!d)while(f=l.exec(a)){c=f[1];if(e===null||0<(g=c.length)&&gj;1<=j?d+=1:d-=1){switch(a.charAt(d)){case"\\":d++;continue;case g[g.length-1][1]:g.pop();if(!g.length)return a.slice(0,d+1);continue}for(h=0,i=b.length;h1&&(j.unshift(["(","("]),j.push([")",")"])),n.push(["TOKENS",j])),f+=d.length,k=f+1}f>k&&k1)&&this.token("(","(");for(f=0,p=n.length;f|[-+*\/%<>&|^!?=]=|>>>=?|([-+:])\1|([&|<>])\2=?|\?\.|\.{2,3})/,N=/^[^\n\S]+/,h=/^###([^#][\s\S]*?)(?:###[^\n\S]*\n|(?:###)?$)|^(?:\s*#(?!##[^#]).*)+/,e=/^[-=]>/,z=/^(?:\n[^\n\S]*)+/,K=/^'[^\\']*(?:\\.[^\\']*)*'/,q=/^`[^\\`]*(?:\\.[^\\`]*)*`/,F=/^\/(?!\s)[^[\/\n\\]*(?:(?:\\[\s\S]|\[[^\]\n\\]*(?:\\[\s\S][^\]\n\\]*)*])[^[\/\n\\]*)*\/[imgy]{0,4}(?!\w)/,m=/^\/{3}([\s\S]+?)\/{3}([imgy]{0,4})(?!\w)/,n=/\s+(?:#.*)?/g,y=/\n/g,l=/\n+([^\n\S]*)/g,b=/^\s*@?([$A-Za-z_][$\w]*|['"].*['"])[^\n\S]*?[:=][^:=>]/,u=/^\s*(?:,|\??\.(?!\.)|::)/,L=/\s+$/,C=/^(?:[-+*&|\/%=<>!.\\][<>=&|]*|and|or|is(?:nt)?|n(?:ot|ew)|delete|typeof|instanceof)$/,j=["-=","+=","/=","*=","%=","||=","&&=","?=","<<=",">>=",">>>=","&=","^=","|="],M=["!","~","NEW","TYPEOF","DELETE"],v=["&&","||","&","|","^"],J=["<<",">>",">>>"],i=["==","!=","<",">","<=",">="],x=["*","/","%"],G=["IN","OF","INSTANCEOF"],c=["TRUE","FALSE","NULL","UNDEFINED"],A=["NUMBER","REGEX","BOOL","++","--","]"],B=A.concat(")","}","THIS","IDENTIFIER","STRING"),d=["IDENTIFIER","STRING","REGEX",")","]","}","?","::","@","THIS","SUPER"],p=d.concat("NUMBER","BOOL"),t=["INDENT","OUTDENT","TERMINATOR"]}).call(this)},require["./parser"]=new function(){var a=this;var b=function(){var a={trace:function b(){},yy:{},symbols_:{error:2,Root:3,Body:4,Block:5,TERMINATOR:6,Line:7,Expression:8,Statement:9,Return:10,Throw:11,Comment:12,STATEMENT:13,Value:14,Invocation:15,Code:16,Operation:17,Assign:18,If:19,Try:20,While:21,For:22,Switch:23,Class:24,INDENT:25,OUTDENT:26,Identifier:27,IDENTIFIER:28,AlphaNumeric:29,NUMBER:30,STRING:31,Literal:32,JS:33,REGEX:34,BOOL:35,Assignable:36,"=":37,AssignObj:38,ObjAssignable:39,":":40,Parenthetical:41,ThisProperty:42,RETURN:43,HERECOMMENT:44,PARAM_START:45,ParamList:46,PARAM_END:47,FuncGlyph:48,"->":49,"=>":50,OptComma:51,",":52,Param:53,ParamVar:54,"...":55,Array:56,Object:57,Splat:58,SimpleAssignable:59,Accessor:60,Range:61,This:62,".":63,"?.":64,"::":65,Index:66,Slice:67,INDEX_START:68,INDEX_END:69,INDEX_SOAK:70,INDEX_PROTO:71,"{":72,AssignList:73,"}":74,CLASS:75,EXTENDS:76,OptFuncExist:77,Arguments:78,SUPER:79,FUNC_EXIST:80,CALL_START:81,CALL_END:82,ArgList:83,THIS:84,"@":85,"[":86,"]":87,RangeDots:88,"..":89,Arg:90,SimpleArgs:91,TRY:92,Catch:93,FINALLY:94,CATCH:95,THROW:96,"(":97,")":98,WhileSource:99,WHILE:100,WHEN:101,UNTIL:102,Loop:103,LOOP:104,ForBody:105,FOR:106,ForStart:107,ForSource:108,ForVariables:109,ALL:110,ForValue:111,FORIN:112,FOROF:113,BY:114,SWITCH:115,Whens:116,ELSE:117,When:118,LEADING_WHEN:119,IfBlock:120,IF:121,UNLESS:122,POST_IF:123,POST_UNLESS:124,UNARY:125,"-":126,"+":127,"--":128,"++":129,"?":130,MATH:131,SHIFT:132,COMPARE:133,LOGIC:134,RELATION:135,COMPOUND_ASSIGN:136,$accept:0,$end:1},terminals_:{2:"error",6:"TERMINATOR",13:"STATEMENT",25:"INDENT",26:"OUTDENT",28:"IDENTIFIER",30:"NUMBER",31:"STRING",33:"JS",34:"REGEX",35:"BOOL",37:"=",40:":",43:"RETURN",44:"HERECOMMENT",45:"PARAM_START",47:"PARAM_END",49:"->",50:"=>",52:",",55:"...",63:".",64:"?.",65:"::",68:"INDEX_START",69:"INDEX_END",70:"INDEX_SOAK",71:"INDEX_PROTO",72:"{",74:"}",75:"CLASS",76:"EXTENDS",79:"SUPER",80:"FUNC_EXIST",81:"CALL_START",82:"CALL_END",84:"THIS",85:"@",86:"[",87:"]",89:"..",92:"TRY",94:"FINALLY",95:"CATCH",96:"THROW",97:"(",98:")",100:"WHILE",101:"WHEN",102:"UNTIL",104:"LOOP",106:"FOR",110:"ALL",112:"FORIN",113:"FOROF",114:"BY",115:"SWITCH",117:"ELSE",119:"LEADING_WHEN",121:"IF",122:"UNLESS",123:"POST_IF",124:"POST_UNLESS",125:"UNARY",126:"-",127:"+",128:"--",129:"++",130:"?",131:"MATH",132:"SHIFT",133:"COMPARE",134:"LOGIC",135:"RELATION",136:"COMPOUND_ASSIGN"},productions_:[0,[3,0],[3,1],[3,2],[4,1],[4,3],[4,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[5,3],[5,2],[27,1],[29,1],[29,1],[32,1],[32,1],[32,1],[32,1],[18,3],[18,5],[38,1],[38,3],[38,5],[38,1],[39,1],[39,1],[39,1],[39,1],[10,2],[10,1],[12,1],[16,5],[16,2],[48,1],[48,1],[51,0],[51,1],[46,0],[46,1],[46,3],[53,1],[53,2],[53,3],[54,1],[54,1],[54,1],[54,1],[58,2],[59,1],[59,2],[59,2],[59,1],[36,1],[36,1],[36,1],[14,1],[14,1],[14,1],[14,1],[14,1],[60,2],[60,2],[60,2],[60,1],[60,1],[60,1],[66,3],[66,2],[66,2],[57,4],[73,0],[73,1],[73,3],[73,4],[73,6],[24,1],[24,2],[24,3],[24,4],[24,2],[24,3],[24,4],[24,5],[15,3],[15,3],[15,1],[15,2],[77,0],[77,1],[78,2],[78,4],[62,1],[62,1],[42,2],[56,2],[56,4],[88,1],[88,1],[61,5],[67,5],[67,4],[67,4],[83,1],[83,3],[83,4],[83,4],[83,6],[90,1],[90,1],[91,1],[91,3],[20,2],[20,3],[20,4],[20,5],[93,3],[11,2],[41,3],[41,5],[99,2],[99,4],[99,2],[99,4],[21,2],[21,2],[21,2],[21,1],[103,2],[103,2],[22,2],[22,2],[22,2],[105,2],[105,2],[107,2],[107,3],[111,1],[111,1],[111,1],[109,1],[109,3],[108,2],[108,2],[108,4],[108,4],[108,4],[108,6],[108,6],[23,5],[23,7],[23,4],[23,6],[116,1],[116,2],[118,3],[118,4],[120,3],[120,3],[120,5],[120,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,5],[17,3]],performAction:function c(a,b,c,d){var e=arguments[5],f=arguments[5].length;switch(arguments[4]){case 1:return this.$=new d.Expressions;case 2:return this.$=e[f-1+1-1];case 3:return this.$=e[f-2+1-1];case 4:this.$=d.Expressions.wrap([e[f-1+1-1]]);break;case 5:this.$=e[f-3+1-1].push(e[f-3+3-1]);break;case 6:this.$=e[f-2+1-1];break;case 7:this.$=e[f-1+1-1];break;case 8:this.$=e[f-1+1-1];break;case 9:this.$=e[f-1+1-1];break;case 10:this.$=e[f-1+1-1];break;case 11:this.$=e[f-1+1-1];break;case 12:this.$=new d.Literal(e[f-1+1-1]);break;case 13:this.$=e[f-1+1-1];break;case 14:this.$=e[f-1+1-1];break;case 15:this.$=e[f-1+1-1];break;case 16:this.$=e[f-1+1-1];break;case 17:this.$=e[f-1+1-1];break;case 18:this.$=e[f-1+1-1];break;case 19:this.$=e[f-1+1-1];break;case 20:this.$=e[f-1+1-1];break;case 21:this.$=e[f-1+1-1];break;case 22:this.$=e[f-1+1-1];break;case 23:this.$=e[f-1+1-1];break;case 24:this.$=e[f-3+2-1];break;case 25:this.$=new d.Expressions;break;case 26:this.$=new d.Literal(e[f-1+1-1]);break;case 27:this.$=new d.Literal(e[f-1+1-1]);break;case 28:this.$=new d.Literal(e[f-1+1-1]);break;case 29:this.$=e[f-1+1-1];break;case 30:this.$=new d.Literal(e[f-1+1-1]);break;case 31:this.$=new d.Literal(e[f-1+1-1]);break;case 32:this.$=new d.Literal(e[f-1+1-1]==="undefined"?"void 0":e[f-1+1-1]);break;case 33:this.$=new d.Assign(e[f-3+1-1],e[f-3+3-1]);break;case 34:this.$=new d.Assign(e[f-5+1-1],e[f-5+4-1]);break;case 35:this.$=new d.Value(e[f-1+1-1]);break;case 36:this.$=new d.Assign(new d.Value(e[f-3+1-1]),e[f-3+3-1],"object");break;case 37:this.$=new d.Assign(new d.Value(e[f-5+1-1]),e[f-5+4-1],"object");break;case 38:this.$=e[f-1+1-1];break;case 39:this.$=e[f-1+1-1];break;case 40:this.$=e[f-1+1-1];break;case 41:this.$=e[f-1+1-1];break;case 42:this.$=e[f-1+1-1];break;case 43:this.$=new d.Return(e[f-2+2-1]);break;case 44:this.$=new d.Return;break;case 45:this.$=new d.Comment(e[f-1+1-1]);break;case 46:this.$=new d.Code(e[f-5+2-1],e[f-5+5-1],e[f-5+4-1]);break;case 47:this.$=new d.Code([],e[f-2+2-1],e[f-2+1-1]);break;case 48:this.$="func";break;case 49:this.$="boundfunc";break;case 50:this.$=e[f-1+1-1];break;case 51:this.$=e[f-1+1-1];break;case 52:this.$=[];break;case 53:this.$=[e[f-1+1-1]];break;case 54:this.$=e[f-3+1-1].concat(e[f-3+3-1]);break;case 55:this.$=new d.Param(e[f-1+1-1]);break;case 56:this.$=new d.Param(e[f-2+1-1],null,true);break;case 57:this.$=new d.Param(e[f-3+1-1],e[f-3+3-1]);break;case 58:this.$=e[f-1+1-1];break;case 59:this.$=e[f-1+1-1];break;case 60:this.$=e[f-1+1-1];break;case 61:this.$=e[f-1+1-1];break;case 62:this.$=new d.Splat(e[f-2+1-1]);break;case 63:this.$=new d.Value(e[f-1+1-1]);break;case 64:this.$=e[f-2+1-1].push(e[f-2+2-1]);break;case 65:this.$=new d.Value(e[f-2+1-1],[e[f-2+2-1]]);break;case 66:this.$=e[f-1+1-1];break;case 67:this.$=e[f-1+1-1];break;case 68:this.$=new d.Value(e[f-1+1-1]);break;case 69:this.$=new d.Value(e[f-1+1-1]);break;case 70:this.$=e[f-1+1-1];break;case 71:this.$=new d.Value(e[f-1+1-1]);break;case 72:this.$=new d.Value(e[f-1+1-1]);break;case 73:this.$=new d.Value(e[f-1+1-1]);break;case 74:this.$=e[f-1+1-1];break;case 75:this.$=new d.Access(e[f-2+2-1]);break;case 76:this.$=new d.Access(e[f-2+2-1],"soak");break;case 77:this.$=new d.Access(e[f-2+2-1],"proto");break;case 78:this.$=new d.Access(new d.Literal("prototype"));break;case 79:this.$=e[f-1+1-1];break;case 80:this.$=new d.Slice(e[f-1+1-1]);break;case 81:this.$=new d.Index(e[f-3+2-1]);break;case 82:this.$=d.extend(e[f-2+2-1],{soak:true});break;case 83:this.$=d.extend(e[f-2+2-1],{proto:true});break;case 84:this.$=new d.Obj(e[f-4+2-1],e[f-4+1-1].generated);break;case 85:this.$=[];break;case 86:this.$=[e[f-1+1-1]];break;case 87:this.$=e[f-3+1-1].concat(e[f-3+3-1]);break;case 88:this.$=e[f-4+1-1].concat(e[f-4+4-1]);break;case 89:this.$=e[f-6+1-1].concat(e[f-6+4-1]);break;case 90:this.$=new d.Class;break;case 91:this.$=new d.Class(null,null,e[f-2+2-1]);break;case 92:this.$=new d.Class(null,e[f-3+3-1]);break;case 93:this.$=new d.Class(null,e[f-4+3-1],e[f-4+4-1]);break;case 94:this.$=new d.Class(e[f-2+2-1]);break;case 95:this.$=new d.Class(e[f-3+2-1],null,e[f-3+3-1]);break;case 96:this.$=new d.Class(e[f-4+2-1],e[f-4+4-1]);break;case 97:this.$=new d.Class(e[f-5+2-1],e[f-5+4-1],e[f-5+5-1]);break;case 98:this.$=new d.Call(e[f-3+1-1],e[f-3+3-1],e[f-3+2-1]);break;case 99:this.$=new d.Call(e[f-3+1-1],e[f-3+3-1],e[f-3+2-1]);break;case 100:this.$=new d.Call("super",[new d.Splat(new d.Literal("arguments"))]);break;case 101:this.$=new d.Call("super",e[f-2+2-1]);break;case 102:this.$=false;break;case 103:this.$=true;break;case 104:this.$=[];break;case 105:this.$=e[f-4+2-1];break;case 106:this.$=new d.Value(new d.Literal("this"));break;case 107:this.$=new d.Value(new d.Literal("this"));break;case 108:this.$=new d.Value(new d.Literal("this"),[new d.Access(e[f-2+2-1])],"this");break;case 109:this.$=new d.Arr([]);break;case 110:this.$=new d.Arr(e[f-4+2-1]);break;case 111:this.$="inclusive";break;case 112:this.$="exclusive";break;case 113:this.$=new d.Range(e[f-5+2-1],e[f-5+4-1],e[f-5+3-1]);break;case 114:this.$=new d.Range(e[f-5+2-1],e[f-5+4-1],e[f-5+3-1]);break;case 115:this.$=new d.Range(e[f-4+2-1],null,e[f-4+3-1]);break;case 116:this.$=new d.Range(null,e[f-4+3-1],e[f-4+2-1]);break;case 117:this.$=[e[f-1+1-1]];break;case 118:this.$=e[f-3+1-1].concat(e[f-3+3-1]);break;case 119:this.$=e[f-4+1-1].concat(e[f-4+4-1]);break;case 120:this.$=e[f-4+2-1];break;case 121:this.$=e[f-6+1-1].concat(e[f-6+4-1]);break;case 122:this.$=e[f-1+1-1];break;case 123:this.$=e[f-1+1-1];break;case 124:this.$=e[f-1+1-1];break;case 125:this.$=[].concat(e[f-3+1-1],e[f-3+3-1]);break;case 126:this.$=new d.Try(e[f-2+2-1]);break;case 127:this.$=new d.Try(e[f-3+2-1],e[f-3+3-1][0],e[f-3+3-1][1]);break;case 128:this.$=new d.Try(e[f-4+2-1],null,null,e[f-4+4-1]);break;case 129:this.$=new d.Try(e[f-5+2-1],e[f-5+3-1][0],e[f-5+3-1][1],e[f-5+5-1]);break;case 130:this.$=[e[f-3+2-1],e[f-3+3-1]];break;case 131:this.$=new d.Throw(e[f-2+2-1]);break;case 132:this.$=new d.Parens(e[f-3+2-1]);break;case 133:this.$=new d.Parens(e[f-5+3-1]);break;case 134:this.$=new d.While(e[f-2+2-1]);break;case 135:this.$=new d.While(e[f-4+2-1],{guard:e[f-4+4-1]});break;case 136:this.$=new d.While(e[f-2+2-1],{invert:true});break;case 137:this.$=new d.While(e[f-4+2-1],{invert:true,guard:e[f-4+4-1]});break;case 138:this.$=e[f-2+1-1].addBody(e[f-2+2-1]);break;case 139:this.$=e[f-2+2-1].addBody(d.Expressions.wrap([e[f-2+1-1]]));break;case 140:this.$=e[f-2+2-1].addBody(d.Expressions.wrap([e[f-2+1-1]]));break;case 141:this.$=e[f-1+1-1];break;case 142:this.$=(new d.While(new d.Literal("true"))).addBody(e[f-2+2-1]);break;case 143:this.$=(new d.While(new d.Literal("true"))).addBody(d.Expressions.wrap([e[f-2+2-1]]));break;case 144:this.$=new d.For(e[f-2+1-1],e[f-2+2-1],e[f-2+2-1].vars[0],e[f-2+2-1].vars[1]);break;case 145:this.$=new d.For(e[f-2+1-1],e[f-2+2-1],e[f-2+2-1].vars[0],e[f-2+2-1].vars[1]);break;case 146:this.$=new d.For(e[f-2+2-1],e[f-2+1-1],e[f-2+1-1].vars[0],e[f-2+1-1].vars[1]);break;case 147:this.$={source:new d.Value(e[f-2+2-1]),vars:[]};break;case 148:this.$=function(){e[f-2+2-1].raw=e[f-2+1-1].raw,e[f-2+2-1].vars=e[f-2+1-1];return e[f-2+2-1]}();break;case 149:this.$=e[f-2+2-1];break;case 150:this.$=function(){e[f-3+3-1].raw=true;return e[f-3+3-1]}();break;case 151:this.$=e[f-1+1-1];break;case 152:this.$=new d.Value(e[f-1+1-1]);break;case 153:this.$=new d.Value(e[f-1+1-1]);break;case 154:this.$=[e[f-1+1-1]];break;case 155:this.$=[e[f-3+1-1],e[f-3+3-1]];break;case 156:this.$={source:e[f-2+2-1]};break;case 157:this.$={source:e[f-2+2-1],object:true};break;case 158:this.$={source:e[f-4+2-1],guard:e[f-4+4-1]};break;case 159:this.$={source:e[f-4+2-1],guard:e[f-4+4-1],object:true};break;case 160:this.$={source:e[f-4+2-1],step:e[f-4+4-1]};break;case 161:this.$={source:e[f-6+2-1],guard:e[f-6+4-1],step:e[f-6+6-1]};break;case 162:this.$={source:e[f-6+2-1],step:e[f-6+4-1],guard:e[f-6+6-1]};break;case 163:this.$=new d.Switch(e[f-5+2-1],e[f-5+4-1]);break;case 164:this.$=new d.Switch(e[f-7+2-1],e[f-7+4-1],e[f-7+6-1]);break;case 165:this.$=new d.Switch(null,e[f-4+3-1]);break;case 166:this.$=new d.Switch(null,e[f-6+3-1],e[f-6+5-1]);break;case 167:this.$=e[f-1+1-1];break;case 168:this.$=e[f-2+1-1].concat(e[f-2+2-1]);break;case 169:this.$=[[e[f-3+2-1],e[f-3+3-1]]];break;case 170:this.$=[[e[f-4+2-1],e[f-4+3-1]]];break;case 171:this.$=new d.If(e[f-3+2-1],e[f-3+3-1]);break;case 172:this.$=new d.If(e[f-3+2-1],e[f-3+3-1],{invert:true});break;case 173:this.$=e[f-5+1-1].addElse(new d.If(e[f-5+4-1],e[f-5+5-1]));break;case 174:this.$=e[f-3+1-1].addElse(e[f-3+3-1]);break;case 175:this.$=e[f-1+1-1];break;case 176:this.$=new d.If(e[f-3+3-1],d.Expressions.wrap([e[f-3+1-1]]),{statement:true});break;case 177:this.$=new d.If(e[f-3+3-1],d.Expressions.wrap([e[f-3+1-1]]),{statement:true});break;case 178:this.$=new d.If(e[f-3+3-1],d.Expressions.wrap([e[f-3+1-1]]),{statement:true,invert:true});break;case 179:this.$=new d.If(e[f-3+3-1],d.Expressions.wrap([e[f-3+1-1]]),{statement:true,invert:true});break;case 180:this.$=new d.Op(e[f-2+1-1],e[f-2+2-1]);break;case 181:this.$=new d.Op("-",e[f-2+2-1]);break;case 182:this.$=new d.Op("+",e[f-2+2-1]);break;case 183:this.$=new d.Op("--",e[f-2+2-1]);break;case 184:this.$=new d.Op("++",e[f-2+2-1]);break;case 185:this.$=new d.Op("--",e[f-2+1-1],null,true);break;case 186:this.$=new d.Op("++",e[f-2+1-1],null,true);break;case 187:this.$=new d.Existence(e[f-2+1-1]);break;case 188:this.$=new d.Op("+",e[f-3+1-1],e[f-3+3-1]);break;case 189:this.$=new d.Op("-",e[f-3+1-1],e[f-3+3-1]);break;case 190:this.$=new d.Op(e[f-3+2-1],e[f-3+1-1],e[f-3+3-1]);break;case 191:this.$=new d.Op(e[f-3+2-1],e[f-3+1-1],e[f-3+3-1]);break;case 192:this.$=new d.Op(e[f-3+2-1],e[f-3+1-1],e[f-3+3-1]);break;case 193:this.$=new d.Op(e[f-3+2-1],e[f-3+1-1],e[f-3+3-1]);break;case 194:this.$=function(){return e[f-3+2-1].charAt(0)==="!"?(new d.Op(e[f-3+2-1].slice(1),e[f-3+1-1],e[f-3+3-1])).invert():new d.Op(e[f-3+2-1],e[f-3+1-1],e[f-3+3-1])}();break;case 195:this.$=new d.Assign(e[f-3+1-1],e[f-3+3-1],e[f-3+2-1]);break;case 196:this.$=new d.Assign(e[f-5+1-1],e[f-5+4-1],e[f-5+2-1]);break;case 197:this.$=new d.Extends(e[f-3+1-1],e[f-3+3-1])}},table:[{1:[2,1],3:1,4:2,5:3,7:4,8:6,9:7,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,5],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[3]},{1:[2,2],6:[1,72]},{6:[1,73]},{1:[2,4],6:[2,4],26:[2,4],98:[2,4]},{4:74,7:4,8:6,9:7,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,26:[1,75],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,7],6:[2,7],26:[2,7],98:[2,7],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,8],6:[2,8],26:[2,8],98:[2,8],99:90,100:[1,63],102:[1,64],105:91,106:[1,66],107:67,123:[1,88],124:[1,89]},{1:[2,13],6:[2,13],25:[2,13],26:[2,13],47:[2,13],52:[2,13],55:[2,13],60:93,63:[1,95],64:[1,96],65:[1,97],66:98,67:99,68:[1,100],69:[2,13],70:[1,101],71:[1,102],74:[2,13],77:92,80:[1,94],81:[2,102],82:[2,13],87:[2,13],89:[2,13],98:[2,13],100:[2,13],101:[2,13],102:[2,13],106:[2,13],114:[2,13],123:[2,13],124:[2,13],126:[2,13],127:[2,13],130:[2,13],131:[2,13],132:[2,13],133:[2,13],134:[2,13],135:[2,13]},{1:[2,14],6:[2,14],25:[2,14],26:[2,14],47:[2,14],52:[2,14],55:[2,14],60:104,63:[1,95],64:[1,96],65:[1,97],66:98,67:99,68:[1,100],69:[2,14],70:[1,101],71:[1,102],74:[2,14],77:103,80:[1,94],81:[2,102],82:[2,14],87:[2,14],89:[2,14],98:[2,14],100:[2,14],101:[2,14],102:[2,14],106:[2,14],114:[2,14],123:[2,14],124:[2,14],126:[2,14],127:[2,14],130:[2,14],131:[2,14],132:[2,14],133:[2,14],134:[2,14],135:[2,14]},{1:[2,15],6:[2,15],25:[2,15],26:[2,15],47:[2,15],52:[2,15],55:[2,15],69:[2,15],74:[2,15],82:[2,15],87:[2,15],89:[2,15],98:[2,15],100:[2,15],101:[2,15],102:[2,15],106:[2,15],114:[2,15],123:[2,15],124:[2,15],126:[2,15],127:[2,15],130:[2,15],131:[2,15],132:[2,15],133:[2,15],134:[2,15],135:[2,15]},{1:[2,16],6:[2,16],25:[2,16],26:[2,16],47:[2,16],52:[2,16],55:[2,16],69:[2,16],74:[2,16],82:[2,16],87:[2,16],89:[2,16],98:[2,16],100:[2,16],101:[2,16],102:[2,16],106:[2,16],114:[2,16],123:[2,16],124:[2,16],126:[2,16],127:[2,16],130:[2,16],131:[2,16],132:[2,16],133:[2,16],134:[2,16],135:[2,16]},{1:[2,17],6:[2,17],25:[2,17],26:[2,17],47:[2,17],52:[2,17],55:[2,17],69:[2,17],74:[2,17],82:[2,17],87:[2,17],89:[2,17],98:[2,17],100:[2,17],101:[2,17],102:[2,17],106:[2,17],114:[2,17],123:[2,17],124:[2,17],126:[2,17],127:[2,17],130:[2,17],131:[2,17],132:[2,17],133:[2,17],134:[2,17],135:[2,17]},{1:[2,18],6:[2,18],25:[2,18],26:[2,18],47:[2,18],52:[2,18],55:[2,18],69:[2,18],74:[2,18],82:[2,18],87:[2,18],89:[2,18],98:[2,18],100:[2,18],101:[2,18],102:[2,18],106:[2,18],114:[2,18],123:[2,18],124:[2,18],126:[2,18],127:[2,18],130:[2,18],131:[2,18],132:[2,18],133:[2,18],134:[2,18],135:[2,18]},{1:[2,19],6:[2,19],25:[2,19],26:[2,19],47:[2,19],52:[2,19],55:[2,19],69:[2,19],74:[2,19],82:[2,19],87:[2,19],89:[2,19],98:[2,19],100:[2,19],101:[2,19],102:[2,19],106:[2,19],114:[2,19],123:[2,19],124:[2,19],126:[2,19],127:[2,19],130:[2,19],131:[2,19],132:[2,19],133:[2,19],134:[2,19],135:[2,19]},{1:[2,20],6:[2,20],25:[2,20],26:[2,20],47:[2,20],52:[2,20],55:[2,20],69:[2,20],74:[2,20],82:[2,20],87:[2,20],89:[2,20],98:[2,20],100:[2,20],101:[2,20],102:[2,20],106:[2,20],114:[2,20],123:[2,20],124:[2,20],126:[2,20],127:[2,20],130:[2,20],131:[2,20],132:[2,20],133:[2,20],134:[2,20],135:[2,20]},{1:[2,21],6:[2,21],25:[2,21],26:[2,21],47:[2,21],52:[2,21],55:[2,21],69:[2,21],74:[2,21],82:[2,21],87:[2,21],89:[2,21],98:[2,21],100:[2,21],101:[2,21],102:[2,21],106:[2,21],114:[2,21],123:[2,21],124:[2,21],126:[2,21],127:[2,21],130:[2,21],131:[2,21],132:[2,21],133:[2,21],134:[2,21],135:[2,21]},{1:[2,22],6:[2,22],25:[2,22],26:[2,22],47:[2,22],52:[2,22],55:[2,22],69:[2,22],74:[2,22],82:[2,22],87:[2,22],89:[2,22],98:[2,22],100:[2,22],101:[2,22],102:[2,22],106:[2,22],114:[2,22],123:[2,22],124:[2,22],126:[2,22],127:[2,22],130:[2,22],131:[2,22],132:[2,22],133:[2,22],134:[2,22],135:[2,22]},{1:[2,23],6:[2,23],25:[2,23],26:[2,23],47:[2,23],52:[2,23],55:[2,23],69:[2,23],74:[2,23],82:[2,23],87:[2,23],89:[2,23],98:[2,23],100:[2,23],101:[2,23],102:[2,23],106:[2,23],114:[2,23],123:[2,23],124:[2,23],126:[2,23],127:[2,23],130:[2,23],131:[2,23],132:[2,23],133:[2,23],134:[2,23],135:[2,23]},{1:[2,9],6:[2,9],26:[2,9],98:[2,9],100:[2,9],102:[2,9],106:[2,9],123:[2,9],124:[2,9]},{1:[2,10],6:[2,10],26:[2,10],98:[2,10],100:[2,10],102:[2,10],106:[2,10],123:[2,10],124:[2,10]},{1:[2,11],6:[2,11],26:[2,11],98:[2,11],100:[2,11],102:[2,11],106:[2,11],123:[2,11],124:[2,11]},{1:[2,12],6:[2,12],26:[2,12],98:[2,12],100:[2,12],102:[2,12],106:[2,12],123:[2,12],124:[2,12]},{1:[2,70],6:[2,70],25:[2,70],26:[2,70],37:[1,105],47:[2,70],52:[2,70],55:[2,70],63:[2,70],64:[2,70],65:[2,70],68:[2,70],69:[2,70],70:[2,70],71:[2,70],74:[2,70],80:[2,70],81:[2,70],82:[2,70],87:[2,70],89:[2,70],98:[2,70],100:[2,70],101:[2,70],102:[2,70],106:[2,70],114:[2,70],123:[2,70],124:[2,70],126:[2,70],127:[2,70],130:[2,70],131:[2,70],132:[2,70],133:[2,70],134:[2,70],135:[2,70]},{1:[2,71],6:[2,71],25:[2,71],26:[2,71],47:[2,71],52:[2,71],55:[2,71],63:[2,71],64:[2,71],65:[2,71],68:[2,71],69:[2,71],70:[2,71],71:[2,71],74:[2,71],80:[2,71],81:[2,71],82:[2,71],87:[2,71],89:[2,71],98:[2,71],100:[2,71],101:[2,71],102:[2,71],106:[2,71],114:[2,71],123:[2,71],124:[2,71],126:[2,71],127:[2,71],130:[2,71],131:[2,71],132:[2,71],133:[2,71],134:[2,71],135:[2,71]},{1:[2,72],6:[2,72],25:[2,72],26:[2,72],47:[2,72],52:[2,72],55:[2,72],63:[2,72],64:[2,72],65:[2,72],68:[2,72],69:[2,72],70:[2,72],71:[2,72],74:[2,72],80:[2,72],81:[2,72],82:[2,72],87:[2,72],89:[2,72],98:[2,72],100:[2,72],101:[2,72],102:[2,72],106:[2,72],114:[2,72],123:[2,72],124:[2,72],126:[2,72],127:[2,72],130:[2,72],131:[2,72],132:[2,72],133:[2,72],134:[2,72],135:[2,72]},{1:[2,73],6:[2,73],25:[2,73],26:[2,73],47:[2,73],52:[2,73],55:[2,73],63:[2,73],64:[2,73],65:[2,73],68:[2,73],69:[2,73],70:[2,73],71:[2,73],74:[2,73],80:[2,73],81:[2,73],82:[2,73],87:[2,73],89:[2,73],98:[2,73],100:[2,73],101:[2,73],102:[2,73],106:[2,73],114:[2,73],123:[2,73],124:[2,73],126:[2,73],127:[2,73],130:[2,73],131:[2,73],132:[2,73],133:[2,73],134:[2,73],135:[2,73]},{1:[2,74],6:[2,74],25:[2,74],26:[2,74],47:[2,74],52:[2,74],55:[2,74],63:[2,74],64:[2,74],65:[2,74],68:[2,74],69:[2,74],70:[2,74],71:[2,74],74:[2,74],80:[2,74],81:[2,74],82:[2,74],87:[2,74],89:[2,74],98:[2,74],100:[2,74],101:[2,74],102:[2,74],106:[2,74],114:[2,74],123:[2,74],124:[2,74],126:[2,74],127:[2,74],130:[2,74],131:[2,74],132:[2,74],133:[2,74],134:[2,74],135:[2,74]},{1:[2,100],6:[2,100],25:[2,100],26:[2,100],47:[2,100],52:[2,100],55:[2,100],63:[2,100],64:[2,100],65:[2,100],68:[2,100],69:[2,100],70:[2,100],71:[2,100],74:[2,100],78:106,80:[2,100],81:[1,107],82:[2,100],87:[2,100],89:[2,100],98:[2,100],100:[2,100],101:[2,100],102:[2,100],106:[2,100],114:[2,100],123:[2,100],124:[2,100],126:[2,100],127:[2,100],130:[2,100],131:[2,100],132:[2,100],133:[2,100],134:[2,100],135:[2,100]},{27:111,28:[1,71],42:112,46:108,47:[2,52],52:[2,52],53:109,54:110,56:113,57:114,72:[1,68],85:[1,115],86:[1,116]},{5:117,25:[1,5]},{8:118,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:120,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:121,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{14:123,15:124,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:125,41:25,42:60,56:47,57:48,59:122,61:26,62:27,72:[1,68],79:[1,28],84:[1,55],85:[1,56],86:[1,54],97:[1,53]},{14:123,15:124,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:125,41:25,42:60,56:47,57:48,59:126,61:26,62:27,72:[1,68],79:[1,28],84:[1,55],85:[1,56],86:[1,54],97:[1,53]},{1:[2,67],6:[2,67],25:[2,67],26:[2,67],37:[2,67],47:[2,67],52:[2,67],55:[2,67],63:[2,67],64:[2,67],65:[2,67],68:[2,67],69:[2,67],70:[2,67],71:[2,67],74:[2,67],76:[1,130],80:[2,67],81:[2,67],82:[2,67],87:[2,67],89:[2,67],98:[2,67],100:[2,67],101:[2,67],102:[2,67],106:[2,67],114:[2,67],123:[2,67],124:[2,67],126:[2,67],127:[2,67],128:[1,127],129:[1,128],130:[2,67],131:[2,67],132:[2,67],133:[2,67],134:[2,67],135:[2,67],136:[1,129]},{1:[2,175],6:[2,175],25:[2,175],26:[2,175],47:[2,175],52:[2,175],55:[2,175],69:[2,175],74:[2,175],82:[2,175],87:[2,175],89:[2,175],98:[2,175],100:[2,175],101:[2,175],102:[2,175],106:[2,175],114:[2,175],117:[1,131],123:[2,175],124:[2,175],126:[2,175],127:[2,175],130:[2,175],131:[2,175],132:[2,175],133:[2,175],134:[2,175],135:[2,175]},{5:132,25:[1,5]},{5:133,25:[1,5]},{1:[2,141],6:[2,141],25:[2,141],26:[2,141],47:[2,141],52:[2,141],55:[2,141],69:[2,141],74:[2,141],82:[2,141],87:[2,141],89:[2,141],98:[2,141],100:[2,141],101:[2,141],102:[2,141],106:[2,141],114:[2,141],123:[2,141],124:[2,141],126:[2,141],127:[2,141],130:[2,141],131:[2,141],132:[2,141],133:[2,141],134:[2,141],135:[2,141]},{5:134,25:[1,5]},{8:135,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,136],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,90],5:137,6:[2,90],14:123,15:124,25:[1,5],26:[2,90],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:125,41:25,42:60,47:[2,90],52:[2,90],55:[2,90],56:47,57:48,59:139,61:26,62:27,69:[2,90],72:[1,68],74:[2,90],76:[1,138],79:[1,28],82:[2,90],84:[1,55],85:[1,56],86:[1,54],87:[2,90],89:[2,90],97:[1,53],98:[2,90],100:[2,90],101:[2,90],102:[2,90],106:[2,90],114:[2,90],123:[2,90],124:[2,90],126:[2,90],127:[2,90],130:[2,90],131:[2,90],132:[2,90],133:[2,90],134:[2,90],135:[2,90]},{1:[2,44],6:[2,44],8:140,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,26:[2,44],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],98:[2,44],99:39,100:[2,44],102:[2,44],103:40,104:[1,65],105:41,106:[2,44],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],123:[2,44],124:[2,44],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:141,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,45],6:[2,45],25:[2,45],26:[2,45],52:[2,45],74:[2,45],98:[2,45],100:[2,45],102:[2,45],106:[2,45],123:[2,45],124:[2,45]},{1:[2,68],6:[2,68],25:[2,68],26:[2,68],37:[2,68],47:[2,68],52:[2,68],55:[2,68],63:[2,68],64:[2,68],65:[2,68],68:[2,68],69:[2,68],70:[2,68],71:[2,68],74:[2,68],80:[2,68],81:[2,68],82:[2,68],87:[2,68],89:[2,68],98:[2,68],100:[2,68],101:[2,68],102:[2,68],106:[2,68],114:[2,68],123:[2,68],124:[2,68],126:[2,68],127:[2,68],130:[2,68],131:[2,68],132:[2,68],133:[2,68],134:[2,68],135:[2,68]},{1:[2,69],6:[2,69],25:[2,69],26:[2,69],37:[2,69],47:[2,69],52:[2,69],55:[2,69],63:[2,69],64:[2,69],65:[2,69],68:[2,69],69:[2,69],70:[2,69],71:[2,69],74:[2,69],80:[2,69],81:[2,69],82:[2,69],87:[2,69],89:[2,69],98:[2,69],100:[2,69],101:[2,69],102:[2,69],106:[2,69],114:[2,69],123:[2,69],124:[2,69],126:[2,69],127:[2,69],130:[2,69],131:[2,69],132:[2,69],133:[2,69],134:[2,69],135:[2,69]},{1:[2,29],6:[2,29],25:[2,29],26:[2,29],47:[2,29],52:[2,29],55:[2,29],63:[2,29],64:[2,29],65:[2,29],68:[2,29],69:[2,29],70:[2,29],71:[2,29],74:[2,29],80:[2,29],81:[2,29],82:[2,29],87:[2,29],89:[2,29],98:[2,29],100:[2,29],101:[2,29],102:[2,29],106:[2,29],114:[2,29],123:[2,29],124:[2,29],126:[2,29],127:[2,29],130:[2,29],131:[2,29],132:[2,29],133:[2,29],134:[2,29],135:[2,29]},{1:[2,30],6:[2,30],25:[2,30],26:[2,30],47:[2,30],52:[2,30],55:[2,30],63:[2,30],64:[2,30],65:[2,30],68:[2,30],69:[2,30],70:[2,30],71:[2,30],74:[2,30],80:[2,30],81:[2,30],82:[2,30],87:[2,30],89:[2,30],98:[2,30],100:[2,30],101:[2,30],102:[2,30],106:[2,30],114:[2,30],123:[2,30],124:[2,30],126:[2,30],127:[2,30],130:[2,30],131:[2,30],132:[2,30],133:[2,30],134:[2,30],135:[2,30]},{1:[2,31],6:[2,31],25:[2,31],26:[2,31],47:[2,31],52:[2,31],55:[2,31],63:[2,31],64:[2,31],65:[2,31],68:[2,31],69:[2,31],70:[2,31],71:[2,31],74:[2,31],80:[2,31],81:[2,31],82:[2,31],87:[2,31],89:[2,31],98:[2,31],100:[2,31],101:[2,31],102:[2,31],106:[2,31],114:[2,31],123:[2,31],124:[2,31],126:[2,31],127:[2,31],130:[2,31],131:[2,31],132:[2,31],133:[2,31],134:[2,31],135:[2,31]},{1:[2,32],6:[2,32],25:[2,32],26:[2,32],47:[2,32],52:[2,32],55:[2,32],63:[2,32],64:[2,32],65:[2,32],68:[2,32],69:[2,32],70:[2,32],71:[2,32],74:[2,32],80:[2,32],81:[2,32],82:[2,32],87:[2,32],89:[2,32],98:[2,32],100:[2,32],101:[2,32],102:[2,32],106:[2,32],114:[2,32],123:[2,32],124:[2,32],126:[2,32],127:[2,32],130:[2,32],131:[2,32],132:[2,32],133:[2,32],134:[2,32],135:[2,32]},{4:142,7:4,8:6,9:7,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,143],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:144,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,148],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,58:149,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],83:146,84:[1,55],85:[1,56],86:[1,54],87:[1,145],90:147,92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,106],6:[2,106],25:[2,106],26:[2,106],47:[2,106],52:[2,106],55:[2,106],63:[2,106],64:[2,106],65:[2,106],68:[2,106],69:[2,106],70:[2,106],71:[2,106],74:[2,106],80:[2,106],81:[2,106],82:[2,106],87:[2,106],89:[2,106],98:[2,106],100:[2,106],101:[2,106],102:[2,106],106:[2,106],114:[2,106],123:[2,106],124:[2,106],126:[2,106],127:[2,106],130:[2,106],131:[2,106],132:[2,106],133:[2,106],134:[2,106],135:[2,106]},{1:[2,107],6:[2,107],25:[2,107],26:[2,107],27:150,28:[1,71],47:[2,107],52:[2,107],55:[2,107],63:[2,107],64:[2,107],65:[2,107],68:[2,107],69:[2,107],70:[2,107],71:[2,107],74:[2,107],80:[2,107],81:[2,107],82:[2,107],87:[2,107],89:[2,107],98:[2,107],100:[2,107],101:[2,107],102:[2,107],106:[2,107],114:[2,107],123:[2,107],124:[2,107],126:[2,107],127:[2,107],130:[2,107],131:[2,107],132:[2,107],133:[2,107],134:[2,107],135:[2,107]},{25:[2,48]},{25:[2,49]},{1:[2,63],6:[2,63],25:[2,63],26:[2,63],37:[2,63],47:[2,63],52:[2,63],55:[2,63],63:[2,63],64:[2,63],65:[2,63],68:[2,63],69:[2,63],70:[2,63],71:[2,63],74:[2,63],76:[2,63],80:[2,63],81:[2,63],82:[2,63],87:[2,63],89:[2,63],98:[2,63],100:[2,63],101:[2,63],102:[2,63],106:[2,63],114:[2,63],123:[2,63],124:[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]},{1:[2,66],6:[2,66],25:[2,66],26:[2,66],37:[2,66],47:[2,66],52:[2,66],55:[2,66],63:[2,66],64:[2,66],65:[2,66],68:[2,66],69:[2,66],70:[2,66],71:[2,66],74:[2,66],76:[2,66],80:[2,66],81:[2,66],82:[2,66],87:[2,66],89:[2,66],98:[2,66],100:[2,66],101:[2,66],102:[2,66],106:[2,66],114:[2,66],123:[2,66],124:[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]},{8:151,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:152,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:153,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:154,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{5:155,8:156,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,5],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{27:161,28:[1,71],56:162,57:163,61:157,72:[1,68],86:[1,54],109:158,110:[1,159],111:160},{108:164,112:[1,165],113:[1,166]},{6:[2,85],12:170,25:[2,85],27:171,28:[1,71],29:172,30:[1,69],31:[1,70],38:168,39:169,41:173,42:174,44:[1,46],52:[2,85],73:167,74:[2,85],85:[1,115],97:[1,53]},{1:[2,27],6:[2,27],25:[2,27],26:[2,27],40:[2,27],47:[2,27],52:[2,27],55:[2,27],63:[2,27],64:[2,27],65:[2,27],68:[2,27],69:[2,27],70:[2,27],71:[2,27],74:[2,27],80:[2,27],81:[2,27],82:[2,27],87:[2,27],89:[2,27],98:[2,27],100:[2,27],101:[2,27],102:[2,27],106:[2,27],114:[2,27],123:[2,27],124:[2,27],126:[2,27],127:[2,27],130:[2,27],131:[2,27],132:[2,27],133:[2,27],134:[2,27],135:[2,27]},{1:[2,28],6:[2,28],25:[2,28],26:[2,28],40:[2,28],47:[2,28],52:[2,28],55:[2,28],63:[2,28],64:[2,28],65:[2,28],68:[2,28],69:[2,28],70:[2,28],71:[2,28],74:[2,28],80:[2,28],81:[2,28],82:[2,28],87:[2,28],89:[2,28],98:[2,28],100:[2,28],101:[2,28],102:[2,28],106:[2,28],114:[2,28],123:[2,28],124:[2,28],126:[2,28],127:[2,28],130:[2,28],131:[2,28],132:[2,28],133:[2,28],134:[2,28],135:[2,28]},{1:[2,26],6:[2,26],25:[2,26],26:[2,26],37:[2,26],40:[2,26],47:[2,26],52:[2,26],55:[2,26],63:[2,26],64:[2,26],65:[2,26],68:[2,26],69:[2,26],70:[2,26],71:[2,26],74:[2,26],76:[2,26],80:[2,26],81:[2,26],82:[2,26],87:[2,26],89:[2,26],98:[2,26],100:[2,26],101:[2,26],102:[2,26],106:[2,26],112:[2,26],113:[2,26],114:[2,26],123:[2,26],124:[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]},{1:[2,6],6:[2,6],7:175,8:6,9:7,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,26:[2,6],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],98:[2,6],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,3]},{6:[1,72],26:[1,176]},{1:[2,25],6:[2,25],25:[2,25],26:[2,25],47:[2,25],52:[2,25],55:[2,25],69:[2,25],74:[2,25],82:[2,25],87:[2,25],89:[2,25],94:[2,25],95:[2,25],98:[2,25],100:[2,25],101:[2,25],102:[2,25],106:[2,25],114:[2,25],117:[2,25],119:[2,25],123:[2,25],124:[2,25],126:[2,25],127:[2,25],130:[2,25],131:[2,25],132:[2,25],133:[2,25],134:[2,25],135:[2,25]},{1:[2,187],6:[2,187],25:[2,187],26:[2,187],47:[2,187],52:[2,187],55:[2,187],69:[2,187],74:[2,187],82:[2,187],87:[2,187],89:[2,187],98:[2,187],100:[2,187],101:[2,187],102:[2,187],106:[2,187],114:[2,187],123:[2,187],124:[2,187],126:[2,187],127:[2,187],130:[2,187],131:[2,187],132:[2,187],133:[2,187],134:[2,187],135:[2,187]},{8:177,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:178,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:179,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:180,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:181,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:182,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:183,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:184,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:185,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,140],6:[2,140],25:[2,140],26:[2,140],47:[2,140],52:[2,140],55:[2,140],69:[2,140],74:[2,140],82:[2,140],87:[2,140],89:[2,140],98:[2,140],100:[2,140],101:[2,140],102:[2,140],106:[2,140],114:[2,140],123:[2,140],124:[2,140],126:[2,140],127:[2,140],130:[2,140],131:[2,140],132:[2,140],133:[2,140],134:[2,140],135:[2,140]},{1:[2,145],6:[2,145],25:[2,145],26:[2,145],47:[2,145],52:[2,145],55:[2,145],69:[2,145],74:[2,145],82:[2,145],87:[2,145],89:[2,145],98:[2,145],100:[2,145],101:[2,145],102:[2,145],106:[2,145],114:[2,145],123:[2,145],124:[2,145],126:[2,145],127:[2,145],130:[2,145],131:[2,145],132:[2,145],133:[2,145],134:[2,145],135:[2,145]},{8:186,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:187,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,139],6:[2,139],25:[2,139],26:[2,139],47:[2,139],52:[2,139],55:[2,139],69:[2,139],74:[2,139],82:[2,139],87:[2,139],89:[2,139],98:[2,139],100:[2,139],101:[2,139],102:[2,139],106:[2,139],114:[2,139],123:[2,139],124:[2,139],126:[2,139],127:[2,139],130:[2,139],131:[2,139],132:[2,139],133:[2,139],134:[2,139],135:[2,139]},{1:[2,144],6:[2,144],25:[2,144],26:[2,144],47:[2,144],52:[2,144],55:[2,144],69:[2,144],74:[2,144],82:[2,144],87:[2,144],89:[2,144],98:[2,144],100:[2,144],101:[2,144],102:[2,144],106:[2,144],114:[2,144],123:[2,144],124:[2,144],126:[2,144],127:[2,144],130:[2,144],131:[2,144],132:[2,144],133:[2,144],134:[2,144],135:[2,144]},{78:188,81:[1,107]},{1:[2,64],6:[2,64],25:[2,64],26:[2,64],37:[2,64],47:[2,64],52:[2,64],55:[2,64],63:[2,64],64:[2,64],65:[2,64],68:[2,64],69:[2,64],70:[2,64],71:[2,64],74:[2,64],76:[2,64],80:[2,64],81:[2,64],82:[2,64],87:[2,64],89:[2,64],98:[2,64],100:[2,64],101:[2,64],102:[2,64],106:[2,64],114:[2,64],123:[2,64],124:[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]},{81:[2,103]},{27:189,28:[1,71]},{27:190,28:[1,71]},{1:[2,78],6:[2,78],25:[2,78],26:[2,78],27:191,28:[1,71],37:[2,78],47:[2,78],52:[2,78],55:[2,78],63:[2,78],64:[2,78],65:[2,78],68:[2,78],69:[2,78],70:[2,78],71:[2,78],74:[2,78],76:[2,78],80:[2,78],81:[2,78],82:[2,78],87:[2,78],89:[2,78],98:[2,78],100:[2,78],101:[2,78],102:[2,78],106:[2,78],114:[2,78],123:[2,78],124:[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]},{1:[2,79],6:[2,79],25:[2,79],26:[2,79],37:[2,79],47:[2,79],52:[2,79],55:[2,79],63:[2,79],64:[2,79],65:[2,79],68:[2,79],69:[2,79],70:[2,79],71:[2,79],74:[2,79],76:[2,79],80:[2,79],81:[2,79],82:[2,79],87:[2,79],89:[2,79],98:[2,79],100:[2,79],101:[2,79],102:[2,79],106:[2,79],114:[2,79],123:[2,79],124:[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]},{1:[2,80],6:[2,80],25:[2,80],26:[2,80],37:[2,80],47:[2,80],52:[2,80],55:[2,80],63:[2,80],64:[2,80],65:[2,80],68:[2,80],69:[2,80],70:[2,80],71:[2,80],74:[2,80],76:[2,80],80:[2,80],81:[2,80],82:[2,80],87:[2,80],89:[2,80],98:[2,80],100:[2,80],101:[2,80],102:[2,80],106:[2,80],114:[2,80],123:[2,80],124:[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]},{8:192,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],55:[1,195],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],88:193,89:[1,194],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{66:196,68:[1,197],70:[1,101],71:[1,102]},{66:198,68:[1,197],70:[1,101],71:[1,102]},{78:199,81:[1,107]},{1:[2,65],6:[2,65],25:[2,65],26:[2,65],37:[2,65],47:[2,65],52:[2,65],55:[2,65],63:[2,65],64:[2,65],65:[2,65],68:[2,65],69:[2,65],70:[2,65],71:[2,65],74:[2,65],76:[2,65],80:[2,65],81:[2,65],82:[2,65],87:[2,65],89:[2,65],98:[2,65],100:[2,65],101:[2,65],102:[2,65],106:[2,65],114:[2,65],123:[2,65],124:[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]},{8:200,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,201],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,101],6:[2,101],25:[2,101],26:[2,101],47:[2,101],52:[2,101],55:[2,101],63:[2,101],64:[2,101],65:[2,101],68:[2,101],69:[2,101],70:[2,101],71:[2,101],74:[2,101],80:[2,101],81:[2,101],82:[2,101],87:[2,101],89:[2,101],98:[2,101],100:[2,101],101:[2,101],102:[2,101],106:[2,101],114:[2,101],123:[2,101],124:[2,101],126:[2,101],127:[2,101],130:[2,101],131:[2,101],132:[2,101],133:[2,101],134:[2,101],135:[2,101]},{8:204,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,148],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,58:149,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],82:[1,202],83:203,84:[1,55],85:[1,56],86:[1,54],90:147,92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{47:[1,205],52:[1,206]},{47:[2,53],52:[2,53]},{37:[1,208],47:[2,55],52:[2,55],55:[1,207]},{37:[2,58],47:[2,58],52:[2,58],55:[2,58]},{37:[2,59],47:[2,59],52:[2,59],55:[2,59]},{37:[2,60],47:[2,60],52:[2,60],55:[2,60]},{37:[2,61],47:[2,61],52:[2,61],55:[2,61]},{27:150,28:[1,71]},{8:204,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,148],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,58:149,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],83:146,84:[1,55],85:[1,56],86:[1,54],87:[1,145],90:147,92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,47],6:[2,47],25:[2,47],26:[2,47],47:[2,47],52:[2,47],55:[2,47],69:[2,47],74:[2,47],82:[2,47],87:[2,47],89:[2,47],98:[2,47],100:[2,47],101:[2,47],102:[2,47],106:[2,47],114:[2,47],123:[2,47],124:[2,47],126:[2,47],127:[2,47],130:[2,47],131:[2,47],132:[2,47],133:[2,47],134:[2,47],135:[2,47]},{1:[2,180],6:[2,180],25:[2,180],26:[2,180],47:[2,180],52:[2,180],55:[2,180],69:[2,180],74:[2,180],82:[2,180],87:[2,180],89:[2,180],98:[2,180],99:86,100:[2,180],101:[2,180],102:[2,180],105:87,106:[2,180],107:67,114:[2,180],123:[2,180],124:[2,180],126:[2,180],127:[2,180],130:[1,76],131:[2,180],132:[2,180],133:[2,180],134:[2,180],135:[2,180]},{99:90,100:[1,63],102:[1,64],105:91,106:[1,66],107:67,123:[1,88],124:[1,89]},{1:[2,181],6:[2,181],25:[2,181],26:[2,181],47:[2,181],52:[2,181],55:[2,181],69:[2,181],74:[2,181],82:[2,181],87:[2,181],89:[2,181],98:[2,181],99:86,100:[2,181],101:[2,181],102:[2,181],105:87,106:[2,181],107:67,114:[2,181],123:[2,181],124:[2,181],126:[2,181],127:[2,181],130:[1,76],131:[2,181],132:[2,181],133:[2,181],134:[2,181],135:[2,181]},{1:[2,182],6:[2,182],25:[2,182],26:[2,182],47:[2,182],52:[2,182],55:[2,182],69:[2,182],74:[2,182],82:[2,182],87:[2,182],89:[2,182],98:[2,182],99:86,100:[2,182],101:[2,182],102:[2,182],105:87,106:[2,182],107:67,114:[2,182],123:[2,182],124:[2,182],126:[2,182],127:[2,182],130:[1,76],131:[2,182],132:[2,182],133:[2,182],134:[2,182],135:[2,182]},{1:[2,183],6:[2,183],25:[2,183],26:[2,183],47:[2,183],52:[2,183],55:[2,183],63:[2,67],64:[2,67],65:[2,67],68:[2,67],69:[2,183],70:[2,67],71:[2,67],74:[2,183],80:[2,67],81:[2,67],82:[2,183],87:[2,183],89:[2,183],98:[2,183],100:[2,183],101:[2,183],102:[2,183],106:[2,183],114:[2,183],123:[2,183],124:[2,183],126:[2,183],127:[2,183],130:[2,183],131:[2,183],132:[2,183],133:[2,183],134:[2,183],135:[2,183]},{60:93,63:[1,95],64:[1,96],65:[1,97],66:98,67:99,68:[1,100],70:[1,101],71:[1,102],77:92,80:[1,94],81:[2,102]},{60:104,63:[1,95],64:[1,96],65:[1,97],66:98,67:99,68:[1,100],70:[1,101],71:[1,102],77:103,80:[1,94],81:[2,102]},{1:[2,70],6:[2,70],25:[2,70],26:[2,70],47:[2,70],52:[2,70],55:[2,70],63:[2,70],64:[2,70],65:[2,70],68:[2,70],69:[2,70],70:[2,70],71:[2,70],74:[2,70],80:[2,70],81:[2,70],82:[2,70],87:[2,70],89:[2,70],98:[2,70],100:[2,70],101:[2,70],102:[2,70],106:[2,70],114:[2,70],123:[2,70],124:[2,70],126:[2,70],127:[2,70],130:[2,70],131:[2,70],132:[2,70],133:[2,70],134:[2,70],135:[2,70]},{1:[2,184],6:[2,184],25:[2,184],26:[2,184],47:[2,184],52:[2,184],55:[2,184],63:[2,67],64:[2,67],65:[2,67],68:[2,67],69:[2,184],70:[2,67],71:[2,67],74:[2,184],80:[2,67],81:[2,67],82:[2,184],87:[2,184],89:[2,184],98:[2,184],100:[2,184],101:[2,184],102:[2,184],106:[2,184],114:[2,184],123:[2,184],124:[2,184],126:[2,184],127:[2,184],130:[2,184],131:[2,184],132:[2,184],133:[2,184],134:[2,184],135:[2,184]},{1:[2,185],6:[2,185],25:[2,185],26:[2,185],47:[2,185],52:[2,185],55:[2,185],69:[2,185],74:[2,185],82:[2,185],87:[2,185],89:[2,185],98:[2,185],100:[2,185],101:[2,185],102:[2,185],106:[2,185],114:[2,185],123:[2,185],124:[2,185],126:[2,185],127:[2,185],130:[2,185],131:[2,185],132:[2,185],133:[2,185],134:[2,185],135:[2,185]},{1:[2,186],6:[2,186],25:[2,186],26:[2,186],47:[2,186],52:[2,186],55:[2,186],69:[2,186],74:[2,186],82:[2,186],87:[2,186],89:[2,186],98:[2,186],100:[2,186],101:[2,186],102:[2,186],106:[2,186],114:[2,186],123:[2,186],124:[2,186],126:[2,186],127:[2,186],130:[2,186],131:[2,186],132:[2,186],133:[2,186],134:[2,186],135:[2,186]},{8:209,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,210],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:211,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{5:213,25:[1,5],121:[1,212]},{1:[2,126],6:[2,126],25:[2,126],26:[2,126],47:[2,126],52:[2,126],55:[2,126],69:[2,126],74:[2,126],82:[2,126],87:[2,126],89:[2,126],93:214,94:[1,215],95:[1,216],98:[2,126],100:[2,126],101:[2,126],102:[2,126],106:[2,126],114:[2,126],123:[2,126],124:[2,126],126:[2,126],127:[2,126],130:[2,126],131:[2,126],132:[2,126],133:[2,126],134:[2,126],135:[2,126]},{1:[2,138],6:[2,138],25:[2,138],26:[2,138],47:[2,138],52:[2,138],55:[2,138],69:[2,138],74:[2,138],82:[2,138],87:[2,138],89:[2,138],98:[2,138],100:[2,138],101:[2,138],102:[2,138],106:[2,138],114:[2,138],123:[2,138],124:[2,138],126:[2,138],127:[2,138],130:[2,138],131:[2,138],132:[2,138],133:[2,138],134:[2,138],135:[2,138]},{1:[2,146],6:[2,146],25:[2,146],26:[2,146],47:[2,146],52:[2,146],55:[2,146],69:[2,146],74:[2,146],82:[2,146],87:[2,146],89:[2,146],98:[2,146],100:[2,146],101:[2,146],102:[2,146],106:[2,146],114:[2,146],123:[2,146],124:[2,146],126:[2,146],127:[2,146],130:[2,146],131:[2,146],132:[2,146],133:[2,146],134:[2,146],135:[2,146]},{25:[1,217],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{116:218,118:219,119:[1,220]},{1:[2,91],6:[2,91],25:[2,91],26:[2,91],47:[2,91],52:[2,91],55:[2,91],69:[2,91],74:[2,91],82:[2,91],87:[2,91],89:[2,91],98:[2,91],100:[2,91],101:[2,91],102:[2,91],106:[2,91],114:[2,91],123:[2,91],124:[2,91],126:[2,91],127:[2,91],130:[2,91],131:[2,91],132:[2,91],133:[2,91],134:[2,91],135:[2,91]},{14:221,15:124,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:125,41:25,42:60,56:47,57:48,59:222,61:26,62:27,72:[1,68],79:[1,28],84:[1,55],85:[1,56],86:[1,54],97:[1,53]},{1:[2,94],5:223,6:[2,94],25:[1,5],26:[2,94],47:[2,94],52:[2,94],55:[2,94],63:[2,67],64:[2,67],65:[2,67],68:[2,67],69:[2,94],70:[2,67],71:[2,67],74:[2,94],76:[1,224],80:[2,67],81:[2,67],82:[2,94],87:[2,94],89:[2,94],98:[2,94],100:[2,94],101:[2,94],102:[2,94],106:[2,94],114:[2,94],123:[2,94],124:[2,94],126:[2,94],127:[2,94],130:[2,94],131:[2,94],132:[2,94],133:[2,94],134:[2,94],135:[2,94]},{1:[2,43],6:[2,43],26:[2,43],98:[2,43],99:86,100:[2,43],102:[2,43],105:87,106:[2,43],107:67,123:[2,43],124:[2,43],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,131],6:[2,131],26:[2,131],98:[2,131],99:86,100:[2,131],102:[2,131],105:87,106:[2,131],107:67,123:[2,131],124:[2,131],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{6:[1,72],98:[1,225]},{4:226,7:4,8:6,9:7,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{6:[2,122],25:[2,122],52:[2,122],55:[1,228],87:[2,122],88:227,89:[1,194],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,109],6:[2,109],25:[2,109],26:[2,109],37:[2,109],47:[2,109],52:[2,109],55:[2,109],63:[2,109],64:[2,109],65:[2,109],68:[2,109],69:[2,109],70:[2,109],71:[2,109],74:[2,109],80:[2,109],81:[2,109],82:[2,109],87:[2,109],89:[2,109],98:[2,109],100:[2,109],101:[2,109],102:[2,109],106:[2,109],112:[2,109],113:[2,109],114:[2,109],123:[2,109],124:[2,109],126:[2,109],127:[2,109],130:[2,109],131:[2,109],132:[2,109],133:[2,109],134:[2,109],135:[2,109]},{6:[2,50],25:[2,50],51:229,52:[1,230],87:[2,50]},{6:[2,117],25:[2,117],26:[2,117],52:[2,117],82:[2,117],87:[2,117]},{8:204,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,148],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,58:149,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],83:231,84:[1,55],85:[1,56],86:[1,54],90:147,92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{6:[2,123],25:[2,123],26:[2,123],52:[2,123],82:[2,123],87:[2,123]},{1:[2,108],6:[2,108],25:[2,108],26:[2,108],37:[2,108],40:[2,108],47:[2,108],52:[2,108],55:[2,108],63:[2,108],64:[2,108],65:[2,108],68:[2,108],69:[2,108],70:[2,108],71:[2,108],74:[2,108],76:[2,108],80:[2,108],81:[2,108],82:[2,108],87:[2,108],89:[2,108],98:[2,108],100:[2,108],101:[2,108],102:[2,108],106:[2,108],114:[2,108],123:[2,108],124:[2,108],126:[2,108],127:[2,108],128:[2,108],129:[2,108],130:[2,108],131:[2,108],132:[2,108],133:[2,108],134:[2,108],135:[2,108],136:[2,108]},{5:232,25:[1,5],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{5:233,25:[1,5],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,134],6:[2,134],25:[2,134],26:[2,134],47:[2,134],52:[2,134],55:[2,134],69:[2,134],74:[2,134],82:[2,134],87:[2,134],89:[2,134],98:[2,134],99:86,100:[1,63],101:[1,234],102:[1,64],105:87,106:[1,66],107:67,114:[2,134],123:[2,134],124:[2,134],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,136],6:[2,136],25:[2,136],26:[2,136],47:[2,136],52:[2,136],55:[2,136],69:[2,136],74:[2,136],82:[2,136],87:[2,136],89:[2,136],98:[2,136],99:86,100:[1,63],101:[1,235],102:[1,64],105:87,106:[1,66],107:67,114:[2,136],123:[2,136],124:[2,136],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,142],6:[2,142],25:[2,142],26:[2,142],47:[2,142],52:[2,142],55:[2,142],69:[2,142],74:[2,142],82:[2,142],87:[2,142],89:[2,142],98:[2,142],100:[2,142],101:[2,142],102:[2,142],106:[2,142],114:[2,142],123:[2,142],124:[2,142],126:[2,142],127:[2,142],130:[2,142],131:[2,142],132:[2,142],133:[2,142],134:[2,142],135:[2,142]},{1:[2,143],6:[2,143],25:[2,143],26:[2,143],47:[2,143],52:[2,143],55:[2,143],69:[2,143],74:[2,143],82:[2,143],87:[2,143],89:[2,143],98:[2,143],99:86,100:[1,63],101:[2,143],102:[1,64],105:87,106:[1,66],107:67,114:[2,143],123:[2,143],124:[2,143],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,147],6:[2,147],25:[2,147],26:[2,147],47:[2,147],52:[2,147],55:[2,147],69:[2,147],74:[2,147],82:[2,147],87:[2,147],89:[2,147],98:[2,147],100:[2,147],101:[2,147],102:[2,147],106:[2,147],114:[2,147],123:[2,147],124:[2,147],126:[2,147],127:[2,147],130:[2,147],131:[2,147],132:[2,147],133:[2,147],134:[2,147],135:[2,147]},{112:[2,149],113:[2,149]},{27:161,28:[1,71],56:162,57:163,72:[1,68],86:[1,116],109:236,111:160},{52:[1,237],112:[2,154],113:[2,154]},{52:[2,151],112:[2,151],113:[2,151]},{52:[2,152],112:[2,152],113:[2,152]},{52:[2,153],112:[2,153],113:[2,153]},{1:[2,148],6:[2,148],25:[2,148],26:[2,148],47:[2,148],52:[2,148],55:[2,148],69:[2,148],74:[2,148],82:[2,148],87:[2,148],89:[2,148],98:[2,148],100:[2,148],101:[2,148],102:[2,148],106:[2,148],114:[2,148],123:[2,148],124:[2,148],126:[2,148],127:[2,148],130:[2,148],131:[2,148],132:[2,148],133:[2,148],134:[2,148],135:[2,148]},{8:238,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:239,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{6:[2,50],25:[2,50],51:240,52:[1,241],74:[2,50]},{6:[2,86],25:[2,86],26:[2,86],52:[2,86],74:[2,86]},{6:[2,35],25:[2,35],26:[2,35],40:[1,242],52:[2,35],74:[2,35]},{6:[2,38],25:[2,38],26:[2,38],52:[2,38],74:[2,38]},{6:[2,39],25:[2,39],26:[2,39],40:[2,39],52:[2,39],74:[2,39]},{6:[2,40],25:[2,40],26:[2,40],40:[2,40],52:[2,40],74:[2,40]},{6:[2,41],25:[2,41],26:[2,41],40:[2,41],52:[2,41],74:[2,41]},{6:[2,42],25:[2,42],26:[2,42],40:[2,42],52:[2,42],74:[2,42]},{1:[2,5],6:[2,5],26:[2,5],98:[2,5]},{1:[2,24],6:[2,24],25:[2,24],26:[2,24],47:[2,24],52:[2,24],55:[2,24],69:[2,24],74:[2,24],82:[2,24],87:[2,24],89:[2,24],94:[2,24],95:[2,24],98:[2,24],100:[2,24],101:[2,24],102:[2,24],106:[2,24],114:[2,24],117:[2,24],119:[2,24],123:[2,24],124:[2,24],126:[2,24],127:[2,24],130:[2,24],131:[2,24],132:[2,24],133:[2,24],134:[2,24],135:[2,24]},{1:[2,188],6:[2,188],25:[2,188],26:[2,188],47:[2,188],52:[2,188],55:[2,188],69:[2,188],74:[2,188],82:[2,188],87:[2,188],89:[2,188],98:[2,188],99:86,100:[2,188],101:[2,188],102:[2,188],105:87,106:[2,188],107:67,114:[2,188],123:[2,188],124:[2,188],126:[2,188],127:[2,188],130:[1,76],131:[1,79],132:[2,188],133:[2,188],134:[2,188],135:[2,188]},{1:[2,189],6:[2,189],25:[2,189],26:[2,189],47:[2,189],52:[2,189],55:[2,189],69:[2,189],74:[2,189],82:[2,189],87:[2,189],89:[2,189],98:[2,189],99:86,100:[2,189],101:[2,189],102:[2,189],105:87,106:[2,189],107:67,114:[2,189],123:[2,189],124:[2,189],126:[2,189],127:[2,189],130:[1,76],131:[1,79],132:[2,189],133:[2,189],134:[2,189],135:[2,189]},{1:[2,190],6:[2,190],25:[2,190],26:[2,190],47:[2,190],52:[2,190],55:[2,190],69:[2,190],74:[2,190],82:[2,190],87:[2,190],89:[2,190],98:[2,190],99:86,100:[2,190],101:[2,190],102:[2,190],105:87,106:[2,190],107:67,114:[2,190],123:[2,190],124:[2,190],126:[2,190],127:[2,190],130:[1,76],131:[2,190],132:[2,190],133:[2,190],134:[2,190],135:[2,190]},{1:[2,191],6:[2,191],25:[2,191],26:[2,191],47:[2,191],52:[2,191],55:[2,191],69:[2,191],74:[2,191],82:[2,191],87:[2,191],89:[2,191],98:[2,191],99:86,100:[2,191],101:[2,191],102:[2,191],105:87,106:[2,191],107:67,114:[2,191],123:[2,191],124:[2,191],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[2,191],133:[2,191],134:[2,191],135:[2,191]},{1:[2,192],6:[2,192],25:[2,192],26:[2,192],47:[2,192],52:[2,192],55:[2,192],69:[2,192],74:[2,192],82:[2,192],87:[2,192],89:[2,192],98:[2,192],99:86,100:[2,192],101:[2,192],102:[2,192],105:87,106:[2,192],107:67,114:[2,192],123:[2,192],124:[2,192],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[2,192],134:[2,192],135:[1,83]},{1:[2,193],6:[2,193],25:[2,193],26:[2,193],47:[2,193],52:[2,193],55:[2,193],69:[2,193],74:[2,193],82:[2,193],87:[2,193],89:[2,193],98:[2,193],99:86,100:[2,193],101:[2,193],102:[2,193],105:87,106:[2,193],107:67,114:[2,193],123:[2,193],124:[2,193],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[2,193],135:[1,83]},{1:[2,194],6:[2,194],25:[2,194],26:[2,194],47:[2,194],52:[2,194],55:[2,194],69:[2,194],74:[2,194],82:[2,194],87:[2,194],89:[2,194],98:[2,194],99:86,100:[2,194],101:[2,194],102:[2,194],105:87,106:[2,194],107:67,114:[2,194],123:[2,194],124:[2,194],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[2,194],134:[2,194],135:[2,194]},{1:[2,177],6:[2,177],25:[2,177],26:[2,177],47:[2,177],52:[2,177],55:[2,177],69:[2,177],74:[2,177],82:[2,177],87:[2,177],89:[2,177],98:[2,177],99:86,100:[1,63],101:[2,177],102:[1,64],105:87,106:[1,66],107:67,114:[2,177],123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,179],6:[2,179],25:[2,179],26:[2,179],47:[2,179],52:[2,179],55:[2,179],69:[2,179],74:[2,179],82:[2,179],87:[2,179],89:[2,179],98:[2,179],99:86,100:[1,63],101:[2,179],102:[1,64],105:87,106:[1,66],107:67,114:[2,179],123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,176],6:[2,176],25:[2,176],26:[2,176],47:[2,176],52:[2,176],55:[2,176],69:[2,176],74:[2,176],82:[2,176],87:[2,176],89:[2,176],98:[2,176],99:86,100:[1,63],101:[2,176],102:[1,64],105:87,106:[1,66],107:67,114:[2,176],123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,178],6:[2,178],25:[2,178],26:[2,178],47:[2,178],52:[2,178],55:[2,178],69:[2,178],74:[2,178],82:[2,178],87:[2,178],89:[2,178],98:[2,178],99:86,100:[1,63],101:[2,178],102:[1,64],105:87,106:[1,66],107:67,114:[2,178],123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,98],6:[2,98],25:[2,98],26:[2,98],47:[2,98],52:[2,98],55:[2,98],63:[2,98],64:[2,98],65:[2,98],68:[2,98],69:[2,98],70:[2,98],71:[2,98],74:[2,98],80:[2,98],81:[2,98],82:[2,98],87:[2,98],89:[2,98],98:[2,98],100:[2,98],101:[2,98],102:[2,98],106:[2,98],114:[2,98],123:[2,98],124:[2,98],126:[2,98],127:[2,98],130:[2,98],131:[2,98],132:[2,98],133:[2,98],134:[2,98],135:[2,98]},{1:[2,75],6:[2,75],25:[2,75],26:[2,75],37:[2,75],47:[2,75],52:[2,75],55:[2,75],63:[2,75],64:[2,75],65:[2,75],68:[2,75],69:[2,75],70:[2,75],71:[2,75],74:[2,75],76:[2,75],80:[2,75],81:[2,75],82:[2,75],87:[2,75],89:[2,75],98:[2,75],100:[2,75],101:[2,75],102:[2,75],106:[2,75],114:[2,75],123:[2,75],124:[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]},{1:[2,76],6:[2,76],25:[2,76],26:[2,76],37:[2,76],47:[2,76],52:[2,76],55:[2,76],63:[2,76],64:[2,76],65:[2,76],68:[2,76],69:[2,76],70:[2,76],71:[2,76],74:[2,76],76:[2,76],80:[2,76],81:[2,76],82:[2,76],87:[2,76],89:[2,76],98:[2,76],100:[2,76],101:[2,76],102:[2,76],106:[2,76],114:[2,76],123:[2,76],124:[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]},{1:[2,77],6:[2,77],25:[2,77],26:[2,77],37:[2,77],47:[2,77],52:[2,77],55:[2,77],63:[2,77],64:[2,77],65:[2,77],68:[2,77],69:[2,77],70:[2,77],71:[2,77],74:[2,77],76:[2,77],80:[2,77],81:[2,77],82:[2,77],87:[2,77],89:[2,77],98:[2,77],100:[2,77],101:[2,77],102:[2,77],106:[2,77],114:[2,77],123:[2,77],124:[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]},{55:[1,195],69:[1,243],88:244,89:[1,194],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{8:245,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{13:[2,111],28:[2,111],30:[2,111],31:[2,111],33:[2,111],34:[2,111],35:[2,111],43:[2,111],44:[2,111],45:[2,111],49:[2,111],50:[2,111],69:[2,111],72:[2,111],75:[2,111],79:[2,111],84:[2,111],85:[2,111],86:[2,111],92:[2,111],96:[2,111],97:[2,111],100:[2,111],102:[2,111],104:[2,111],106:[2,111],115:[2,111],121:[2,111],122:[2,111],125:[2,111],126:[2,111],127:[2,111],128:[2,111],129:[2,111]},{13:[2,112],28:[2,112],30:[2,112],31:[2,112],33:[2,112],34:[2,112],35:[2,112],43:[2,112],44:[2,112],45:[2,112],49:[2,112],50:[2,112],69:[2,112],72:[2,112],75:[2,112],79:[2,112],84:[2,112],85:[2,112],86:[2,112],92:[2,112],96:[2,112],97:[2,112],100:[2,112],102:[2,112],104:[2,112],106:[2,112],115:[2,112],121:[2,112],122:[2,112],125:[2,112],126:[2,112],127:[2,112],128:[2,112],129:[2,112]},{1:[2,82],6:[2,82],25:[2,82],26:[2,82],37:[2,82],47:[2,82],52:[2,82],55:[2,82],63:[2,82],64:[2,82],65:[2,82],68:[2,82],69:[2,82],70:[2,82],71:[2,82],74:[2,82],76:[2,82],80:[2,82],81:[2,82],82:[2,82],87:[2,82],89:[2,82],98:[2,82],100:[2,82],101:[2,82],102:[2,82],106:[2,82],114:[2,82],123:[2,82],124:[2,82],126:[2,82],127:[2,82],128:[2,82],129:[2,82],130:[2,82],131:[2,82],132:[2,82],133:[2,82],134:[2,82],135:[2,82],136:[2,82]},{8:246,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,83],6:[2,83],25:[2,83],26:[2,83],37:[2,83],47:[2,83],52:[2,83],55:[2,83],63:[2,83],64:[2,83],65:[2,83],68:[2,83],69:[2,83],70:[2,83],71:[2,83],74:[2,83],76:[2,83],80:[2,83],81:[2,83],82:[2,83],87:[2,83],89:[2,83],98:[2,83],100:[2,83],101:[2,83],102:[2,83],106:[2,83],114:[2,83],123:[2,83],124:[2,83],126:[2,83],127:[2,83],128:[2,83],129:[2,83],130:[2,83],131:[2,83],132:[2,83],133:[2,83],134:[2,83],135:[2,83],136:[2,83]},{1:[2,99],6:[2,99],25:[2,99],26:[2,99],47:[2,99],52:[2,99],55:[2,99],63:[2,99],64:[2,99],65:[2,99],68:[2,99],69:[2,99],70:[2,99],71:[2,99],74:[2,99],80:[2,99],81:[2,99],82:[2,99],87:[2,99],89:[2,99],98:[2,99],100:[2,99],101:[2,99],102:[2,99],106:[2,99],114:[2,99],123:[2,99],124:[2,99],126:[2,99],127:[2,99],130:[2,99],131:[2,99],132:[2,99],133:[2,99],134:[2,99],135:[2,99]},{1:[2,33],6:[2,33],25:[2,33],26:[2,33],47:[2,33],52:[2,33],55:[2,33],69:[2,33],74:[2,33],82:[2,33],87:[2,33],89:[2,33],98:[2,33],99:86,100:[2,33],101:[2,33],102:[2,33],105:87,106:[2,33],107:67,114:[2,33],123:[2,33],124:[2,33],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{8:247,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,104],6:[2,104],25:[2,104],26:[2,104],47:[2,104],52:[2,104],55:[2,104],63:[2,104],64:[2,104],65:[2,104],68:[2,104],69:[2,104],70:[2,104],71:[2,104],74:[2,104],80:[2,104],81:[2,104],82:[2,104],87:[2,104],89:[2,104],98:[2,104],100:[2,104],101:[2,104],102:[2,104],106:[2,104],114:[2,104],123:[2,104],124:[2,104],126:[2,104],127:[2,104],130:[2,104],131:[2,104],132:[2,104],133:[2,104],134:[2,104],135:[2,104]},{6:[2,50],25:[2,50],51:248,52:[1,230],82:[2,50]},{6:[2,122],25:[2,122],26:[2,122],52:[2,122],55:[1,249],82:[2,122],87:[2,122],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{48:250,49:[1,57],50:[1,58]},{27:111,28:[1,71],42:112,53:251,54:110,56:113,57:114,72:[1,68],85:[1,115],86:[1,116]},{47:[2,56],52:[2,56]},{8:252,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,195],6:[2,195],25:[2,195],26:[2,195],47:[2,195],52:[2,195],55:[2,195],69:[2,195],74:[2,195],82:[2,195],87:[2,195],89:[2,195],98:[2,195],99:86,100:[2,195],101:[2,195],102:[2,195],105:87,106:[2,195],107:67,114:[2,195],123:[2,195],124:[2,195],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{8:253,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,197],6:[2,197],25:[2,197],26:[2,197],47:[2,197],52:[2,197],55:[2,197],69:[2,197],74:[2,197],82:[2,197],87:[2,197],89:[2,197],98:[2,197],99:86,100:[2,197],101:[2,197],102:[2,197],105:87,106:[2,197],107:67,114:[2,197],123:[2,197],124:[2,197],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{8:254,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,174],6:[2,174],25:[2,174],26:[2,174],47:[2,174],52:[2,174],55:[2,174],69:[2,174],74:[2,174],82:[2,174],87:[2,174],89:[2,174],98:[2,174],100:[2,174],101:[2,174],102:[2,174],106:[2,174],114:[2,174],117:[2,174],123:[2,174],124:[2,174],126:[2,174],127:[2,174],130:[2,174],131:[2,174],132:[2,174],133:[2,174],134:[2,174],135:[2,174]},{1:[2,127],6:[2,127],25:[2,127],26:[2,127],47:[2,127],52:[2,127],55:[2,127],69:[2,127],74:[2,127],82:[2,127],87:[2,127],89:[2,127],94:[1,255],98:[2,127],100:[2,127],101:[2,127],102:[2,127],106:[2,127],114:[2,127],123:[2,127],124:[2,127],126:[2,127],127:[2,127],130:[2,127],131:[2,127],132:[2,127],133:[2,127],134:[2,127],135:[2,127]},{5:256,25:[1,5]},{27:257,28:[1,71]},{116:258,118:219,119:[1,220]},{26:[1,259],117:[1,260],118:261,119:[1,220]},{26:[2,167],117:[2,167],119:[2,167]},{8:263,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],91:262,92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,92],5:264,6:[2,92],25:[1,5],26:[2,92],47:[2,92],52:[2,92],55:[2,92],60:93,63:[1,95],64:[1,96],65:[1,97],66:98,67:99,68:[1,100],69:[2,92],70:[1,101],71:[1,102],74:[2,92],77:92,80:[1,94],81:[2,102],82:[2,92],87:[2,92],89:[2,92],98:[2,92],100:[2,92],101:[2,92],102:[2,92],106:[2,92],114:[2,92],123:[2,92],124:[2,92],126:[2,92],127:[2,92],130:[2,92],131:[2,92],132:[2,92],133:[2,92],134:[2,92],135:[2,92]},{1:[2,67],6:[2,67],25:[2,67],26:[2,67],47:[2,67],52:[2,67],55:[2,67],63:[2,67],64:[2,67],65:[2,67],68:[2,67],69:[2,67],70:[2,67],71:[2,67],74:[2,67],80:[2,67],81:[2,67],82:[2,67],87:[2,67],89:[2,67],98:[2,67],100:[2,67],101:[2,67],102:[2,67],106:[2,67],114:[2,67],123:[2,67],124:[2,67],126:[2,67],127:[2,67],130:[2,67],131:[2,67],132:[2,67],133:[2,67],134:[2,67],135:[2,67]},{1:[2,95],6:[2,95],25:[2,95],26:[2,95],47:[2,95],52:[2,95],55:[2,95],69:[2,95],74:[2,95],82:[2,95],87:[2,95],89:[2,95],98:[2,95],100:[2,95],101:[2,95],102:[2,95],106:[2,95],114:[2,95],123:[2,95],124:[2,95],126:[2,95],127:[2,95],130:[2,95],131:[2,95],132:[2,95],133:[2,95],134:[2,95],135:[2,95]},{14:265,15:124,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:125,41:25,42:60,56:47,57:48,59:222,61:26,62:27,72:[1,68],79:[1,28],84:[1,55],85:[1,56],86:[1,54],97:[1,53]},{1:[2,132],6:[2,132],25:[2,132],26:[2,132],40:[2,132],47:[2,132],52:[2,132],55:[2,132],63:[2,132],64:[2,132],65:[2,132],68:[2,132],69:[2,132],70:[2,132],71:[2,132],74:[2,132],80:[2,132],81:[2,132],82:[2,132],87:[2,132],89:[2,132],98:[2,132],100:[2,132],101:[2,132],102:[2,132],106:[2,132],114:[2,132],123:[2,132],124:[2,132],126:[2,132],127:[2,132],130:[2,132],131:[2,132],132:[2,132],133:[2,132],134:[2,132],135:[2,132]},{6:[1,72],26:[1,266]},{8:267,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{6:[2,62],13:[2,112],25:[2,62],28:[2,112],30:[2,112],31:[2,112],33:[2,112],34:[2,112],35:[2,112],43:[2,112],44:[2,112],45:[2,112],49:[2,112],50:[2,112],52:[2,62],72:[2,112],75:[2,112],79:[2,112],84:[2,112],85:[2,112],86:[2,112],87:[2,62],92:[2,112],96:[2,112],97:[2,112],100:[2,112],102:[2,112],104:[2,112],106:[2,112],115:[2,112],121:[2,112],122:[2,112],125:[2,112],126:[2,112],127:[2,112],128:[2,112],129:[2,112]},{6:[1,269],25:[1,270],87:[1,268]},{6:[2,51],8:204,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[2,51],26:[2,51],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,58:149,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],82:[2,51],84:[1,55],85:[1,56],86:[1,54],87:[2,51],90:271,92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{6:[2,50],25:[2,50],26:[2,50],51:272,52:[1,230]},{1:[2,171],6:[2,171],25:[2,171],26:[2,171],47:[2,171],52:[2,171],55:[2,171],69:[2,171],74:[2,171],82:[2,171],87:[2,171],89:[2,171],98:[2,171],100:[2,171],101:[2,171],102:[2,171],106:[2,171],114:[2,171],117:[2,171],123:[2,171],124:[2,171],126:[2,171],127:[2,171],130:[2,171],131:[2,171],132:[2,171],133:[2,171],134:[2,171],135:[2,171]},{1:[2,172],6:[2,172],25:[2,172],26:[2,172],47:[2,172],52:[2,172],55:[2,172],69:[2,172],74:[2,172],82:[2,172],87:[2,172],89:[2,172],98:[2,172],100:[2,172],101:[2,172],102:[2,172],106:[2,172],114:[2,172],117:[2,172],123:[2,172],124:[2,172],126:[2,172],127:[2,172],130:[2,172],131:[2,172],132:[2,172],133:[2,172],134:[2,172],135:[2,172]},{8:273,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:274,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{112:[2,150],113:[2,150]},{27:161,28:[1,71],56:162,57:163,72:[1,68],86:[1,116],111:275},{1:[2,156],6:[2,156],25:[2,156],26:[2,156],47:[2,156],52:[2,156],55:[2,156],69:[2,156],74:[2,156],82:[2,156],87:[2,156],89:[2,156],98:[2,156],99:86,100:[2,156],101:[1,276],102:[2,156],105:87,106:[2,156],107:67,114:[1,277],123:[2,156],124:[2,156],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,157],6:[2,157],25:[2,157],26:[2,157],47:[2,157],52:[2,157],55:[2,157],69:[2,157],74:[2,157],82:[2,157],87:[2,157],89:[2,157],98:[2,157],99:86,100:[2,157],101:[1,278],102:[2,157],105:87,106:[2,157],107:67,114:[2,157],123:[2,157],124:[2,157],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{6:[1,280],25:[1,281],74:[1,279]},{6:[2,51],12:170,25:[2,51],26:[2,51],27:171,28:[1,71],29:172,30:[1,69],31:[1,70],38:282,39:169,41:173,42:174,44:[1,46],74:[2,51],85:[1,115],97:[1,53]},{8:283,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,284],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,81],6:[2,81],25:[2,81],26:[2,81],37:[2,81],47:[2,81],52:[2,81],55:[2,81],63:[2,81],64:[2,81],65:[2,81],68:[2,81],69:[2,81],70:[2,81],71:[2,81],74:[2,81],76:[2,81],80:[2,81],81:[2,81],82:[2,81],87:[2,81],89:[2,81],98:[2,81],100:[2,81],101:[2,81],102:[2,81],106:[2,81],114:[2,81],123:[2,81],124:[2,81],126:[2,81],127:[2,81],128:[2,81],129:[2,81],130:[2,81],131:[2,81],132:[2,81],133:[2,81],134:[2,81],135:[2,81],136:[2,81]},{8:285,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,69:[1,286],72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{69:[1,287],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{69:[1,243],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{26:[1,288],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{6:[1,269],25:[1,270],82:[1,289]},{6:[2,62],25:[2,62],26:[2,62],52:[2,62],82:[2,62],87:[2,62]},{5:290,25:[1,5]},{47:[2,54],52:[2,54]},{47:[2,57],52:[2,57],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{26:[1,291],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{5:292,25:[1,5],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{5:293,25:[1,5]},{1:[2,128],6:[2,128],25:[2,128],26:[2,128],47:[2,128],52:[2,128],55:[2,128],69:[2,128],74:[2,128],82:[2,128],87:[2,128],89:[2,128],98:[2,128],100:[2,128],101:[2,128],102:[2,128],106:[2,128],114:[2,128],123:[2,128],124:[2,128],126:[2,128],127:[2,128],130:[2,128],131:[2,128],132:[2,128],133:[2,128],134:[2,128],135:[2,128]},{5:294,25:[1,5]},{26:[1,295],117:[1,296],118:261,119:[1,220]},{1:[2,165],6:[2,165],25:[2,165],26:[2,165],47:[2,165],52:[2,165],55:[2,165],69:[2,165],74:[2,165],82:[2,165],87:[2,165],89:[2,165],98:[2,165],100:[2,165],101:[2,165],102:[2,165],106:[2,165],114:[2,165],123:[2,165],124:[2,165],126:[2,165],127:[2,165],130:[2,165],131:[2,165],132:[2,165],133:[2,165],134:[2,165],135:[2,165]},{5:297,25:[1,5]},{26:[2,168],117:[2,168],119:[2,168]},{5:298,25:[1,5],52:[1,299]},{25:[2,124],52:[2,124],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,93],6:[2,93],25:[2,93],26:[2,93],47:[2,93],52:[2,93],55:[2,93],69:[2,93],74:[2,93],82:[2,93],87:[2,93],89:[2,93],98:[2,93],100:[2,93],101:[2,93],102:[2,93],106:[2,93],114:[2,93],123:[2,93],124:[2,93],126:[2,93],127:[2,93],130:[2,93],131:[2,93],132:[2,93],133:[2,93],134:[2,93],135:[2,93]},{1:[2,96],5:300,6:[2,96],25:[1,5],26:[2,96],47:[2,96],52:[2,96],55:[2,96],60:93,63:[1,95],64:[1,96],65:[1,97],66:98,67:99,68:[1,100],69:[2,96],70:[1,101],71:[1,102],74:[2,96],77:92,80:[1,94],81:[2,102],82:[2,96],87:[2,96],89:[2,96],98:[2,96],100:[2,96],101:[2,96],102:[2,96],106:[2,96],114:[2,96],123:[2,96],124:[2,96],126:[2,96],127:[2,96],130:[2,96],131:[2,96],132:[2,96],133:[2,96],134:[2,96],135:[2,96]},{98:[1,301]},{87:[1,302],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,110],6:[2,110],25:[2,110],26:[2,110],37:[2,110],47:[2,110],52:[2,110],55:[2,110],63:[2,110],64:[2,110],65:[2,110],68:[2,110],69:[2,110],70:[2,110],71:[2,110],74:[2,110],80:[2,110],81:[2,110],82:[2,110],87:[2,110],89:[2,110],98:[2,110],100:[2,110],101:[2,110],102:[2,110],106:[2,110],112:[2,110],113:[2,110],114:[2,110],123:[2,110],124:[2,110],126:[2,110],127:[2,110],130:[2,110],131:[2,110],132:[2,110],133:[2,110],134:[2,110],135:[2,110]},{8:204,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,58:149,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],90:303,92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:204,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,25:[1,148],27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,58:149,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],83:304,84:[1,55],85:[1,56],86:[1,54],90:147,92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{6:[2,118],25:[2,118],26:[2,118],52:[2,118],82:[2,118],87:[2,118]},{6:[1,269],25:[1,270],26:[1,305]},{1:[2,135],6:[2,135],25:[2,135],26:[2,135],47:[2,135],52:[2,135],55:[2,135],69:[2,135],74:[2,135],82:[2,135],87:[2,135],89:[2,135],98:[2,135],99:86,100:[1,63],101:[2,135],102:[1,64],105:87,106:[1,66],107:67,114:[2,135],123:[2,135],124:[2,135],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,137],6:[2,137],25:[2,137],26:[2,137],47:[2,137],52:[2,137],55:[2,137],69:[2,137],74:[2,137],82:[2,137],87:[2,137],89:[2,137],98:[2,137],99:86,100:[1,63],101:[2,137],102:[1,64],105:87,106:[1,66],107:67,114:[2,137],123:[2,137],124:[2,137],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{112:[2,155],113:[2,155]},{8:306,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:307,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:308,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,84],6:[2,84],25:[2,84],26:[2,84],37:[2,84],47:[2,84],52:[2,84],55:[2,84],63:[2,84],64:[2,84],65:[2,84],68:[2,84],69:[2,84],70:[2,84],71:[2,84],74:[2,84],80:[2,84],81:[2,84],82:[2,84],87:[2,84],89:[2,84],98:[2,84],100:[2,84],101:[2,84],102:[2,84],106:[2,84],112:[2,84],113:[2,84],114:[2,84],123:[2,84],124:[2,84],126:[2,84],127:[2,84],130:[2,84],131:[2,84],132:[2,84],133:[2,84],134:[2,84],135:[2,84]},{12:170,27:171,28:[1,71],29:172,30:[1,69],31:[1,70],38:309,39:169,41:173,42:174,44:[1,46],85:[1,115],97:[1,53]},{6:[2,85],12:170,25:[2,85],26:[2,85],27:171,28:[1,71],29:172,30:[1,69],31:[1,70],38:168,39:169,41:173,42:174,44:[1,46],52:[2,85],73:310,85:[1,115],97:[1,53]},{6:[2,87],25:[2,87],26:[2,87],52:[2,87],74:[2,87]},{6:[2,36],25:[2,36],26:[2,36],52:[2,36],74:[2,36],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{8:311,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{69:[1,312],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,115],6:[2,115],25:[2,115],26:[2,115],37:[2,115],47:[2,115],52:[2,115],55:[2,115],63:[2,115],64:[2,115],65:[2,115],68:[2,115],69:[2,115],70:[2,115],71:[2,115],74:[2,115],76:[2,115],80:[2,115],81:[2,115],82:[2,115],87:[2,115],89:[2,115],98:[2,115],100:[2,115],101:[2,115],102:[2,115],106:[2,115],114:[2,115],123:[2,115],124:[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]},{1:[2,116],6:[2,116],25:[2,116],26:[2,116],37:[2,116],47:[2,116],52:[2,116],55:[2,116],63:[2,116],64:[2,116],65:[2,116],68:[2,116],69:[2,116],70:[2,116],71:[2,116],74:[2,116],76:[2,116],80:[2,116],81:[2,116],82:[2,116],87:[2,116],89:[2,116],98:[2,116],100:[2,116],101:[2,116],102:[2,116],106:[2,116],114:[2,116],123:[2,116],124:[2,116],126:[2,116],127:[2,116],128:[2,116],129:[2,116],130:[2,116],131:[2,116],132:[2,116],133:[2,116],134:[2,116],135:[2,116],136:[2,116]},{1:[2,34],6:[2,34],25:[2,34],26:[2,34],47:[2,34],52:[2,34],55:[2,34],69:[2,34],74:[2,34],82:[2,34],87:[2,34],89:[2,34],98:[2,34],100:[2,34],101:[2,34],102:[2,34],106:[2,34],114:[2,34],123:[2,34],124:[2,34],126:[2,34],127:[2,34],130:[2,34],131:[2,34],132:[2,34],133:[2,34],134:[2,34],135:[2,34]},{1:[2,105],6:[2,105],25:[2,105],26:[2,105],47:[2,105],52:[2,105],55:[2,105],63:[2,105],64:[2,105],65:[2,105],68:[2,105],69:[2,105],70:[2,105],71:[2,105],74:[2,105],80:[2,105],81:[2,105],82:[2,105],87:[2,105],89:[2,105],98:[2,105],100:[2,105],101:[2,105],102:[2,105],106:[2,105],114:[2,105],123:[2,105],124:[2,105],126:[2,105],127:[2,105],130:[2,105],131:[2,105],132:[2,105],133:[2,105],134:[2,105],135:[2,105]},{1:[2,46],6:[2,46],25:[2,46],26:[2,46],47:[2,46],52:[2,46],55:[2,46],69:[2,46],74:[2,46],82:[2,46],87:[2,46],89:[2,46],98:[2,46],100:[2,46],101:[2,46],102:[2,46],106:[2,46],114:[2,46],123:[2,46],124:[2,46],126:[2,46],127:[2,46],130:[2,46],131:[2,46],132:[2,46],133:[2,46],134:[2,46],135:[2,46]},{1:[2,196],6:[2,196],25:[2,196],26:[2,196],47:[2,196],52:[2,196],55:[2,196],69:[2,196],74:[2,196],82:[2,196],87:[2,196],89:[2,196],98:[2,196],100:[2,196],101:[2,196],102:[2,196],106:[2,196],114:[2,196],123:[2,196],124:[2,196],126:[2,196],127:[2,196],130:[2,196],131:[2,196],132:[2,196],133:[2,196],134:[2,196],135:[2,196]},{1:[2,173],6:[2,173],25:[2,173],26:[2,173],47:[2,173],52:[2,173],55:[2,173],69:[2,173],74:[2,173],82:[2,173],87:[2,173],89:[2,173],98:[2,173],100:[2,173],101:[2,173],102:[2,173],106:[2,173],114:[2,173],117:[2,173],123:[2,173],124:[2,173],126:[2,173],127:[2,173],130:[2,173],131:[2,173],132:[2,173],133:[2,173],134:[2,173],135:[2,173]},{1:[2,129],6:[2,129],25:[2,129],26:[2,129],47:[2,129],52:[2,129],55:[2,129],69:[2,129],74:[2,129],82:[2,129],87:[2,129],89:[2,129],98:[2,129],100:[2,129],101:[2,129],102:[2,129],106:[2,129],114:[2,129],123:[2,129],124:[2,129],126:[2,129],127:[2,129],130:[2,129],131:[2,129],132:[2,129],133:[2,129],134:[2,129],135:[2,129]},{1:[2,130],6:[2,130],25:[2,130],26:[2,130],47:[2,130],52:[2,130],55:[2,130],69:[2,130],74:[2,130],82:[2,130],87:[2,130],89:[2,130],94:[2,130],98:[2,130],100:[2,130],101:[2,130],102:[2,130],106:[2,130],114:[2,130],123:[2,130],124:[2,130],126:[2,130],127:[2,130],130:[2,130],131:[2,130],132:[2,130],133:[2,130],134:[2,130],135:[2,130]},{1:[2,163],6:[2,163],25:[2,163],26:[2,163],47:[2,163],52:[2,163],55:[2,163],69:[2,163],74:[2,163],82:[2,163],87:[2,163],89:[2,163],98:[2,163],100:[2,163],101:[2,163],102:[2,163],106:[2,163],114:[2,163],123:[2,163],124:[2,163],126:[2,163],127:[2,163],130:[2,163],131:[2,163],132:[2,163],133:[2,163],134:[2,163],135:[2,163]},{5:313,25:[1,5]},{26:[1,314]},{6:[1,315],26:[2,169],117:[2,169],119:[2,169]},{8:316,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{1:[2,97],6:[2,97],25:[2,97],26:[2,97],47:[2,97],52:[2,97],55:[2,97],69:[2,97],74:[2,97],82:[2,97],87:[2,97],89:[2,97],98:[2,97],100:[2,97],101:[2,97],102:[2,97],106:[2,97],114:[2,97],123:[2,97],124:[2,97],126:[2,97],127:[2,97],130:[2,97],131:[2,97],132:[2,97],133:[2,97],134:[2,97],135:[2,97]},{1:[2,133],6:[2,133],25:[2,133],26:[2,133],40:[2,133],47:[2,133],52:[2,133],55:[2,133],63:[2,133],64:[2,133],65:[2,133],68:[2,133],69:[2,133],70:[2,133],71:[2,133],74:[2,133],80:[2,133],81:[2,133],82:[2,133],87:[2,133],89:[2,133],98:[2,133],100:[2,133],101:[2,133],102:[2,133],106:[2,133],114:[2,133],123:[2,133],124:[2,133],126:[2,133],127:[2,133],130:[2,133],131:[2,133],132:[2,133],133:[2,133],134:[2,133],135:[2,133]},{1:[2,113],6:[2,113],25:[2,113],26:[2,113],47:[2,113],52:[2,113],55:[2,113],63:[2,113],64:[2,113],65:[2,113],68:[2,113],69:[2,113],70:[2,113],71:[2,113],74:[2,113],80:[2,113],81:[2,113],82:[2,113],87:[2,113],89:[2,113],98:[2,113],100:[2,113],101:[2,113],102:[2,113],106:[2,113],114:[2,113],123:[2,113],124:[2,113],126:[2,113],127:[2,113],130:[2,113],131:[2,113],132:[2,113],133:[2,113],134:[2,113],135:[2,113]},{6:[2,119],25:[2,119],26:[2,119],52:[2,119],82:[2,119],87:[2,119]},{6:[2,50],25:[2,50],26:[2,50],51:317,52:[1,230]},{6:[2,120],25:[2,120],26:[2,120],52:[2,120],82:[2,120],87:[2,120]},{1:[2,158],6:[2,158],25:[2,158],26:[2,158],47:[2,158],52:[2,158],55:[2,158],69:[2,158],74:[2,158],82:[2,158],87:[2,158],89:[2,158],98:[2,158],99:86,100:[2,158],101:[2,158],102:[2,158],105:87,106:[2,158],107:67,114:[1,318],123:[2,158],124:[2,158],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,160],6:[2,160],25:[2,160],26:[2,160],47:[2,160],52:[2,160],55:[2,160],69:[2,160],74:[2,160],82:[2,160],87:[2,160],89:[2,160],98:[2,160],99:86,100:[2,160],101:[1,319],102:[2,160],105:87,106:[2,160],107:67,114:[2,160],123:[2,160],124:[2,160],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,159],6:[2,159],25:[2,159],26:[2,159],47:[2,159],52:[2,159],55:[2,159],69:[2,159],74:[2,159],82:[2,159],87:[2,159],89:[2,159],98:[2,159],99:86,100:[2,159],101:[2,159],102:[2,159],105:87,106:[2,159],107:67,114:[2,159],123:[2,159],124:[2,159],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{6:[2,88],25:[2,88],26:[2,88],52:[2,88],74:[2,88]},{6:[2,50],25:[2,50],26:[2,50],51:320,52:[1,241]},{26:[1,321],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,114],6:[2,114],25:[2,114],26:[2,114],37:[2,114],47:[2,114],52:[2,114],55:[2,114],63:[2,114],64:[2,114],65:[2,114],68:[2,114],69:[2,114],70:[2,114],71:[2,114],74:[2,114],76:[2,114],80:[2,114],81:[2,114],82:[2,114],87:[2,114],89:[2,114],98:[2,114],100:[2,114],101:[2,114],102:[2,114],106:[2,114],114:[2,114],123:[2,114],124:[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]},{26:[1,322]},{1:[2,166],6:[2,166],25:[2,166],26:[2,166],47:[2,166],52:[2,166],55:[2,166],69:[2,166],74:[2,166],82:[2,166],87:[2,166],89:[2,166],98:[2,166],100:[2,166],101:[2,166],102:[2,166],106:[2,166],114:[2,166],123:[2,166],124:[2,166],126:[2,166],127:[2,166],130:[2,166],131:[2,166],132:[2,166],133:[2,166],134:[2,166],135:[2,166]},{26:[2,170],117:[2,170],119:[2,170]},{25:[2,125],52:[2,125],99:86,100:[1,63],102:[1,64],105:87,106:[1,66],107:67,123:[1,84],124:[1,85],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{6:[1,269],25:[1,270],26:[1,323]},{8:324,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{8:325,9:119,10:19,11:20,12:21,13:[1,22],14:8,15:9,16:10,17:11,18:12,19:13,20:14,21:15,22:16,23:17,24:18,27:59,28:[1,71],29:49,30:[1,69],31:[1,70],32:24,33:[1,50],34:[1,51],35:[1,52],36:23,41:25,42:60,43:[1,44],44:[1,46],45:[1,29],48:30,49:[1,57],50:[1,58],56:47,57:48,59:36,61:26,62:27,72:[1,68],75:[1,43],79:[1,28],84:[1,55],85:[1,56],86:[1,54],92:[1,38],96:[1,45],97:[1,53],99:39,100:[1,63],102:[1,64],103:40,104:[1,65],105:41,106:[1,66],107:67,115:[1,42],120:37,121:[1,61],122:[1,62],125:[1,31],126:[1,32],127:[1,33],128:[1,34],129:[1,35]},{6:[1,280],25:[1,281],26:[1,326]},{6:[2,37],25:[2,37],26:[2,37],52:[2,37],74:[2,37]},{1:[2,164],6:[2,164],25:[2,164],26:[2,164],47:[2,164],52:[2,164],55:[2,164],69:[2,164],74:[2,164],82:[2,164],87:[2,164],89:[2,164],98:[2,164],100:[2,164],101:[2,164],102:[2,164],106:[2,164],114:[2,164],123:[2,164],124:[2,164],126:[2,164],127:[2,164],130:[2,164],131:[2,164],132:[2,164],133:[2,164],134:[2,164],135:[2,164]},{6:[2,121],25:[2,121],26:[2,121],52:[2,121],82:[2,121],87:[2,121]},{1:[2,161],6:[2,161],25:[2,161],26:[2,161],47:[2,161],52:[2,161],55:[2,161],69:[2,161],74:[2,161],82:[2,161],87:[2,161],89:[2,161],98:[2,161],99:86,100:[2,161],101:[2,161],102:[2,161],105:87,106:[2,161],107:67,114:[2,161],123:[2,161],124:[2,161],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{1:[2,162],6:[2,162],25:[2,162],26:[2,162],47:[2,162],52:[2,162],55:[2,162],69:[2,162],74:[2,162],82:[2,162],87:[2,162],89:[2,162],98:[2,162],99:86,100:[2,162],101:[2,162],102:[2,162],105:87,106:[2,162],107:67,114:[2,162],123:[2,162],124:[2,162],126:[1,78],127:[1,77],130:[1,76],131:[1,79],132:[1,80],133:[1,81],134:[1,82],135:[1,83]},{6:[2,89],25:[2,89],26:[2,89],52:[2,89],74:[2,89]}],defaultActions:{57:[2,48],58:[2,49],73:[2,3],94:[2,103]},parseError:function d(a,b){throw new Error(a)},parse:function e(a){var b=this,c=[0],d=[null],e=this.table,f="",g=0,h=0,i=0,j=0,k=0,l=2,m=1;this.lexer.setInput(a),this.lexer.yy=this.yy,this.yy.lexer=this.lexer;var n=this.yy.parseError=typeof this.yy.parseError=="function"?this.yy.parseError:this.parseError;function o(a){c.length=c.length-2*a,d.length=d.length-a}function p(){var a;a=b.lexer.lex()||1,typeof a!=="number"&&(a=b.symbols_[a]||a);return a}var q,r,s,t,u,v,w={},x,y,z,A,B=false;while(true){s=c[c.length-1],this.defaultActions[s]?t=this.defaultActions[s]:(q==null&&(q=p()),t=e[s]&&e[s][q]);if(typeof t==="undefined"||!t.length||!t[0]){if(!k){A=[];for(x in e[s])this.terminals_[x]&&x>2&&A.push("'"+this.terminals_[x]+"'");var C="";this.lexer.showPosition?C="Parse error on line "+(g+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+A.join(", "):C="Parse error on line "+(g+1)+": Unexpected "+(q==1?"end of input":"'"+(this.terminals_[q]||q)+"'"),n.call(this,C,{text:this.lexer.match,token:this.terminals_[q]||q,line:this.lexer.yylineno,expected:A})}if(k==3){if(q==m)throw new Error(C||"Parsing halted.");h=this.lexer.yyleng,f=this.lexer.yytext,g=this.lexer.yylineno,q=p()}while(1){if(l.toString()in e[s])break;if(s==0)throw new Error(C||"Parsing halted.");o(1),s=c[c.length-1]}r=q,q=l,s=c[c.length-1],t=e[s]&&e[s][l],k=3}if(t[0]instanceof Array&&t.length>1)throw new Error("Parse Error: multiple actions possible at state: "+s+", token: "+q);u=t;switch(u[0]){case 1:i++,c.push(q),d.push(this.lexer.yytext),c.push(u[1]),q=null,r?(q=r,r=null):(h=this.lexer.yyleng,f=this.lexer.yytext,g=this.lexer.yylineno,k>0&&k--);break;case 2:j++,y=this.productions_[u[1]][1],w.$=d[d.length-y],v=this.performAction.call(w,f,h,g,this.yy,u[1],d);if(typeof v!=="undefined")return v;y&&(c=c.slice(0,-1*y*2),d=d.slice(0,-1*y)),c.push(this.productions_[u[1]][0]),d.push(w.$),z=e[c[c.length-2]][c[c.length-1]],c.push(z);break;case 3:this.reductionCount=j,this.shiftCount=i;return true}}return true}};return a}();typeof require!=="undefined"&&(a.parser=b,a.parse=function(){return b.parse.apply(b,arguments)},a.main=function c(b){if(!b[1])throw new Error("Usage: "+b[0]+" FILE");if(typeof process!=="undefined")var c=require("fs").readFileSync(require("path").join(process.cwd(),b[1]),"utf8");else{var d=require("file").path(require("file").cwd());var c=d.join(b[1]).read({charset:"utf-8"})}return a.parser.parse(c)},typeof module!=="undefined"&&require.main===module&&a.main(typeof process!=="undefined"?process.argv.slice(1):require("system").args))},require["./scope"]=new function(){var a=this;(function(){var b,c,d,e;e=require("./helpers"),c=e.extend,d=e.last,a.Scope=b=function(){function a(b,c,d){this.parent=b,this.expressions=c,this.method=d,this.variables=[{name:"arguments",type:"arguments"}],this.positions={},this.parent?this.garbage=this.parent.garbage:(this.garbage=[],a.root=this)}a.root=null,a.prototype.add=function(a,b){var c;return typeof (c=this.positions[a])==="number"?this.variables[c].type=b:this.positions[a]=this.variables.push({name:a,type:b})-1},a.prototype.startLevel=function(){this.garbage.push([]);return this},a.prototype.endLevel=function(){var a,b,c,d;d=this.garbage.pop();for(b=0,c=d.length;b1?"_"+a+(b>1?b:""):"_"+(b+parseInt(a,36)).toString(36).replace(/\d/g,"a")},a.prototype.type=function(a){var b,c,d,e;e=this.variables;for(c=0,d=e.length;c1&&a.level>=v?"("+b+")":b},a.prototype.compileRoot=function(a){var b;a.indent=this.tab=a.bare?"":O,a.scope=new K(null,this,null),a.level=y,b=this.compileWithDeclarations(a),b=b.replace(Q,"");return a.bare?b:"(function() {\n"+b+"\n}).call(this);\n"},a.prototype.compileWithDeclarations=function(a){var b,c,d,e,f,g,h,i;b=e="",i=this.expressions;for(d=0,h=i.length;d"+this.equals+" "+this.toVar+")",g=f?f.compile(a):"1",d=f?""+c+" += "+g:""+e+" += "+g+" : "+c+" -= "+g+")";return""+h+"; "+b+"; "+d},a.prototype.compileSimple=function(a){var b,c,d,e,f;f=[+this.fromNum,+this.toNum],b=f[0],e=f[1],c=Y(a,"index"),d=Y(a,"step"),d&&(d=""+c+" += "+d.compile(a));return b<=e?""+c+" = "+b+"; "+c+" <"+this.equals+" "+e+"; "+(d||""+c+"++"):""+c+" = "+b+"; "+c+" >"+this.equals+" "+e+"; "+(d||""+c+"--")},a.prototype.compileArray=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n;if(this.fromNum&&this.toNum&&Math.abs(this.fromNum-this.toNum)<=20){h=function(){n=[];for(var a=l=+this.fromNum,b=+this.toNum;l<=b?a<=b:a>=b;l<=b?a+=1:a-=1)n.push(a);return n}.call(this),this.exclusive&&h.pop();return"["+h.join(", ")+"]"}e=this.tab+O,d=a.scope.freeVariable("i"),i=a.scope.freeVariable("results"),g="\n"+e+i+" = [];",this.fromNum&&this.toNum?(a.index=d,b=this.compileSimple(a)):(j=""+d+" = "+this.from+(this.to!==this.toVar?", "+this.to:""),c=""+this.fromVar+" <= "+this.toVar+" ?",b="var "+j+"; "+c+" "+d+" <"+this.equals+" "+this.toVar+" : "+d+" >"+this.equals+" "+this.toVar+"; "+c+" "+d+" += 1 : "+d+" -= 1"),f="{ "+i+".push("+d+"); }\n"+e+"return "+i+";\n"+a.indent;return"(function() {"+g+"\n"+e+"for ("+b+")"+f+"}).call(this)"};return a}(),a.Slice=L=function(){function a(b){this.range=b,a.__super__.constructor.call(this)}bi(a,e),a.prototype.children=["range"],a.prototype.compileNode=function(a){var b,c;b=this.range.from?this.range.from.compile(a):"0",c=this.range.to?this.range.to.compile(a):"",c+=!c||this.range.exclusive?"":" + 1",c&&(c=", "+c);return".slice("+b+c+")"};return a}(),a.Obj=C=function(){function a(a,b){this.generated=b!=null?b:false,this.objects=this.properties=a||[]}bi(a,e),a.prototype.children=["properties"],a.prototype.compileNode=function(a){var b,c,e,f,g,h,i,k,l,m,n,o,p,q,r,s,t;l=this.properties;if(!l.length)return this.front?"({})":"{}";for(b=0,o=l.length;b=0?"[\n"+a.indent+b+"\n"+this.tab+"]":"["+b+"]"},a.prototype.assigns=function(a){var b,c,d,e;e=this.objects;for(c=0,d=e.length;c=c.length)return"";if(c.length===1){g=c[0].compile(b,v);if(d)return g;return""+bf("slice")+".call("+g+")"}e=c.slice(i);for(h=0,l=e.length;hy||this.returns)d=a.scope.freeVariable("results"),e=""+this.tab+d+" = [];\n",b&&(b=G.wrap(d,b));this.guard&&(b=l.wrap([new q(this.guard,b)])),b="\n"+b.compile(a,y)+"\n"+this.tab}c=e+this.tab+("while ("+this.condition.compile(a,x)+") {"+b+"}"),this.returns&&(a.indent=this.tab,c+="\n"+(new I(new z(d))).compile(a));return c};return a}(),a.Op=D=function(){var a,b;function c(b,c,d,e){if(b==="in")return new r(c,d);if(b==="new"){if(c instanceof f)return c.newInstance();c instanceof i&&c.bound&&(c=new F(c))}this.operator=a[b]||b,this.first=c,this.second=d,this.flip=!!e;return this}bi(c,e),a={"==":"===","!=":"!==",of:"in"},b={"!==":"===","===":"!==",">":"<=","<=":">","<":">=",">=":"<"},c.prototype.children=["first","second"],c.prototype.isUnary=function(){return!this.second},c.prototype.isChainable=function(){var a;return(a=this.operator)==="<"||a===">"||a===">="||a==="<="||a==="==="||a==="!=="},c.prototype.invert=function(){var a,d,e;if(d=b[this.operator]){this.operator=d;return this}return this.second?(new F(this)).invert():this.operator==="!"&&(a=this.first.unwrap())instanceof c&&((e=a.operator)==="!"||e==="in"||e==="instanceof")?a:new c("!",this)},c.prototype.unfoldSoak=function(a){var b;return((b=this.operator)==="++"||b==="--"||b==="delete")&&be(a,this,"first")},c.prototype.compileNode=function(a){var b;if(this.isUnary())return this.compileUnary(a);if(this.isChainable()&&this.first.isChainable())return this.compileChain(a);if(this.operator==="?")return this.compileExistence(a);this.first.front=this.front,b=this.first.compile(a,w)+" "+this.operator+" "+this.second.compile(a,w);return a.level<=w?b:"("+b+")"},c.prototype.compileChain=function(a){var b,c,d,e;e=this.first.second.cache(a),this.first.second=e[0],d=e[1],c=this.first.compile(a,w),c.charAt(0)==="("&&(c=c.slice(1,-1)),b=""+c+" && "+d.compile(a)+" "+this.operator+" "+this.second.compile(a,w);return a.level= 0");if(d===c)return b;b=d+", "+b;return a.level=u?"("+d+")":d},a.prototype.unfoldSoak=function(){return this.soak&&this};return a}(),G={wrap:function(a,c){if(c.isEmpty()||ba(c.expressions).containsPureStatement())return c;return c.push(new f(new U(new z(a),[new b(new z("push"))]),[c.pop()]))}},h={wrap:function(a,c,d){var e,g,h,j,k;if(a.containsPureStatement())return a;h=new F(new i([],l.wrap([a]))),e=[];if((j=a.contains(this.literalArgs))||a.contains(this.literalThis))k=new z(j?"apply":"call"),e=[new z("this")],j&&e.push(new z("arguments")),h=new U(h,[new b(k)]),h.noReturn=d;g=new f(h,e);return c?l.wrap([g]):g},literalArgs:function(a){return a instanceof z&&a.value==="arguments"},literalThis:function(a){return a instanceof z&&a.value==="this"||a instanceof i&&a.bound}},be=function(a,b,c){var d;if(d=b[c].unfoldSoak(a)){b[c]=d.body,d.body=new U(b);return d}},T={"extends":"function(child, parent) {\n for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; }\n function ctor() { this.constructor = child; }\n ctor.prototype = parent.prototype;\n child.prototype = new ctor;\n child.__super__ = parent.prototype;\n return child;\n}",bind:"function(fn, me){ return function(){ return fn.apply(me, arguments); }; }",indexOf:"Array.prototype.indexOf || function(item) {\n for (var i = 0, l = this.length; i < l; i++) {\n if (this[i] === item) return i;\n }\n return -1;\n}",hasProp:"Object.prototype.hasOwnProperty",slice:"Array.prototype.slice"},y=1,x=2,v=3,u=4,w=5,t=6,O=" ",Q=/[ \t]+$/gm,o=/^[$A-Za-z_][$\w]*$/,J=/^[+-]?\d+$/,p=/^['"]/,bf=function(a){var b;b="__"+a,K.root.assign(b,T[a]);return b},bc=function(a,b){return a.replace(/\n/g,"$&"+b)}}).call(this)},require["./coffee-script"]=new function(){var exports=this;(function(){var Lexer,compile,fs,lexer,parser,path;fs=require("fs"),path=require("path"),Lexer=require("./lexer").Lexer,parser=require("./parser").parser,require.extensions?require.extensions[".coffee"]=function(a,b){var c;c=compile(fs.readFileSync(b,"utf8"));return a._compile(c,b)}:require.registerExtension&&require.registerExtension(".coffee",function(a){return compile(a)}),exports.VERSION="0.9.5",exports.helpers=require("./helpers"),exports.compile=compile=function(a,b){b==null&&(b={});try{return parser.parse(lexer.tokenize(a)).compile(b)}catch(c){b.fileName&&(c.message="In "+b.fileName+", "+c.message);throw c}},exports.tokens=function(a,b){return lexer.tokenize(a,b)},exports.nodes=function(a,b){return typeof a==="string"?parser.parse(lexer.tokenize(a,b)):parser.parse(a)},exports.run=function(a,b){var c;c=module;while(c.parent)c=c.parent;c.filename=fs.realpathSync(b.fileName||"."),c.moduleCache&&(c.moduleCache={});return path.extname(c.filename)!==".coffee"||require.extensions?c._compile(compile(a,b),c.filename):c._compile(a,c.filename)},exports.eval=function(code,options){var __dirname,__filename;__filename=options.fileName,__dirname=path.dirname(__filename);return eval(compile(code,options))},lexer=new Lexer,parser.lexer={lex:function(){var a,b;b=this.tokens[this.pos++]||[""],a=b[0],this.yytext=b[1],this.yylineno=b[2];return a},setInput:function(a){this.tokens=a;return this.pos=0},upcomingInput:function(){return""}},parser.yy=require("./nodes")}).call(this)},require["./browser"]=new function(){var exports=this;(function(){var CoffeeScript,runScripts;CoffeeScript=require("./coffee-script"),CoffeeScript.require=require,CoffeeScript.eval=function(code,options){return eval(CoffeeScript.compile(code,options))},CoffeeScript.run=function(a,b){b==null&&(b={}),b.bare=true;return Function(CoffeeScript.compile(a,b))()};typeof window=="undefined"||window===null||(CoffeeScript.load=function(a,b){var c;c=new(window.ActiveXObject||XMLHttpRequest)("Microsoft.XMLHTTP"),c.open("GET",a,true),"overrideMimeType"in c&&c.overrideMimeType("text/plain"),c.onreadystatechange=function(){if(c.readyState===4)return CoffeeScript.run(c.responseText,b)};return c.send(null)},runScripts=function(){var a,b,c,d;d=document.getElementsByTagName("script");for(b=0,c=d.length;b

- CoffeeScript is a little language that compiles into JavaScript. Think - of it as JavaScript's less ostentatious kid brother — the same genes, - roughly the same height, but a different sense of style. Apart from a handful of - bonus goodies, statements in CoffeeScript correspond one-to-one with their - equivalent in JavaScript, it's just another way of saying it. + CoffeeScript is a little language that compiles into JavaScript. Underneath + all of those embarrassing braces and semicolons, JavaScript has always had + a gorgeous object model at its heart. CoffeeScript is an attempt to expose + the good parts of JavaScript in a simple way.

- Disclaimer: - CoffeeScript is just for fun. Until it reaches 1.0, there are no guarantees - that the syntax won't change between versions. That said, - it compiles into clean JavaScript (the good parts) that can use existing - JavaScript libraries seamlessly, and passes through - JSLint without warnings. The compiled - output is pretty-printed and quite readable. + The golden rule of CoffeeScript is: "It's just JavaScript". The code + compiles one-to-one into the equivalent JS, and there is + no interpretation at runtime. You can use any existing JavaScript library + seamlessly (and vice-versa). The compiled output is readable and pretty-printed, + passes through JavaScript Lint + without warnings, and can be run by any JavaScript implementation.

Latest Version: - 0.9.4 + 0.9.5

- Mini Overview + Overview

CoffeeScript on the left, compiled JavaScript output on the right.

@@ -128,7 +126,7 @@ opposite = true= -42 if opposite # Functions: -square = (x) -> x * x +square = (x) -> x * x # Arrays: list = [1, 2, 3, 4, 5] @@ -137,18 +135,18 @@ list = [1, = root: Math.sqrt square: square - cube: (x) -> x * square x + cube: (x) -> x * square x # Splats: -race = (winner, runners...) -> +race = (winner, runners...) -> print winner, runners # Existence: alert "I knew it!" if elvis? # Array comprehensions: -cubes = math.cube num for num in list -
var _i, _len, cubes, list, math, num, number, opposite, race, square;
+cubes = (math.cube num for num in list)
+
var cubes, list, math, num, number, opposite, race, square, _i, _len, _results;
 var __slice = Array.prototype.slice;
 number = 42;
 opposite = true;
@@ -166,19 +164,23 @@ math = {
     return x * square(x);
   }
 };
-race = function(winner) {
-  var runners;
-  runners = __slice.call(arguments, 1);
+race = function() {
+  var runners, winner;
+  winner = arguments[0], runners = 2 <= arguments.length ? __slice.call(arguments, 1) : [];
   return print(winner, runners);
 };
-if (typeof elvis !== "undefined" && elvis !== null) {
+if (typeof elvis != "undefined" && elvis !== null) {
   alert("I knew it!");
 }
-for (_i = 0, _len = list.length; _i < _len; _i++) {
-  num = list[_i];
-  cubes = math.cube(num);
-}
-

+cubes = ((function() { + _results = []; + for (_i = 0, _len = list.length; _i < _len; _i++) { + num = list[_i]; + _results.push(math.cube(num)); + } + return _results; +})());;alert(cubes);'>run: cubes

For a longer CoffeeScript example, check out @@ -242,7 +248,7 @@ for (_i = 0, _len = list.length; _i < _len; _i++) { Then clone the CoffeeScript source repository from GitHub, or download the latest - release: 0.9.4. + release: 0.9.5. To install the CoffeeScript compiler system-wide under /usr/local, open the directory and run:

@@ -257,7 +263,7 @@ sudo bin/cake install

-sudo npm install coffee-script
+npm install coffee-script

Both of these provide the coffee command, which will execute CoffeeScripts @@ -431,8 +437,8 @@ coffee --print app/scripts/*.coffee > concatenation.js Functions are defined by a list of parameters, an arrow, and the function body. The empty function looks like this: ->

-
square = (x) -> x * x
-cube   = (x) -> square(x) * x
+    
square = (x) -> x * x
+cube   = (x) -> square(x) * x
 
var cube, square;
 square = function(x) {
   return x * x;
@@ -512,8 +518,8 @@ kids = {
       of an object, without quoting them as strings. CoffeeScript notices and quotes
       them for you, so you don't have to worry about it (say, when using jQuery).
     

-
$('.account').css class: 'active'
-
$('.account').css({
+    
$('.account').attr class: 'active'
+
$('.account').attr({
   "class": 'active'
 });
 

@@ -526,7 +532,7 @@ kids = { var yourself.

outer = 1
-changeNumbers = ->
+changeNumbers = ->
   inner = -1
   outer = 10
 inner = changeNumbers()
@@ -600,8 +606,8 @@ inner = changeNumbers();;alert(inner);'>run: inner
< date = if friday then sue else jill -options or= defaults -
var date, mood, options;
+options or= defaults
+
var date, mood;
 if (singing) {
   mood = greatlyImproved;
 }
@@ -691,7 +697,7 @@ print inspect "My name is
     

gold = silver = rest = "unknown"
 
-awardMedals = (first, second, others...) ->
+awardMedals = (first, second, others...) ->
   gold   = first
   silver = second
   rest   = others
@@ -717,9 +723,9 @@ alert "The Field: 
var awardMedals, contenders, gold, rest, silver;
 var __slice = Array.prototype.slice;
 gold = silver = rest = "unknown";
-awardMedals = function(first, second) {
-  var others;
-  others = __slice.call(arguments, 2);
+awardMedals = function() {
+  var first, others, second;
+  first = arguments[0], second = arguments[1], others = 3 <= arguments.length ? __slice.call(arguments, 2) : [];
   gold = first;
   silver = second;
   return rest = others;
@@ -732,9 +738,9 @@ awardMedals.apply(awardMedals, contenders);
 

For readability, the until keyword is equivalent to while not, @@ -823,7 +829,7 @@ lunch = eat food for f for roid, pos in asteroids for roid2 in asteroids when roid isnt roid2 roid.explode() if roid.overlaps roid2 -

var _i, _j, _len, _len2, _len3, _ref, _ref2, _ref3, food, lunch, pos, roid, roid2;
+
var food, lunch, pos, roid, roid2, _i, _j, _len, _len2, _len3, _ref, _ref2, _ref3;
 _ref = ['toast', 'cheese', 'wine'];
 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
   food = _ref[_i];
@@ -848,24 +854,24 @@ _ref2 = asteroids;
       in fixed-size increments, you can use a range to specify the start and
       end of your comprehension.
     

-
count = (num for num from 1 to 10)
+    
countdown = (num for num in [10..1])
 
-
var _result, count, num;
-count = ((function() {
-  _result = [];
-  for (num = 1; num <= 10; num++) {
-    _result.push(num);
+
var countdown, num, _results;
+countdown = ((function() {
+  _results = [];
+  for (num = 10; num >= 1; num--) {
+    _results.push(num);
   }
-  return _result;
+  return _results;
 })());
-

+ return _results; +})());;alert(countdown);'>run: countdown

Comprehensions can also be used to iterate over the keys and values in an object. Use of to signal comprehension over the properties of @@ -875,7 +881,7 @@ count = ((function() { ages = for child, age of yearsOld child + " is " + age -

var _result, age, ages, child, yearsOld;
+
var age, ages, child, yearsOld, _results;
 var __hasProp = Object.prototype.hasOwnProperty;
 yearsOld = {
   max: 10,
@@ -883,15 +889,15 @@ yearsOld = {
   tim: 11
 };
 ages = (function() {
-  _result = [];
+  _results = [];
   for (child in yearsOld) {
     if (!__hasProp.call(yearsOld, child)) continue;
     age = yearsOld[child];
-    _result.push(child + " is " + age);
+    _results.push(child + " is " + age);
   }
-  return _result;
+  return _results;
 })();
-

By default, object comprehensions are safe, and use a hasOwnProperty @@ -924,7 +930,7 @@ ages = (function() { pushed down into each possible branch of execution, in the function below.

-
grade = (student) ->
+    
grade = (student) ->
   if student.excellentWork
     "A+"
   else if student.okayStuff
@@ -935,12 +941,32 @@ ages = (function() {
 eldest = if 24 > 21 then "Liz" else "Ike"
 
var eldest, grade;
 grade = function(student) {
-  return student.excellentWork ? "A+" : student.okayStuff ? student.triedHard ? "B" : "B-" : "C";
+  if (student.excellentWork) {
+    return "A+";
+  } else if (student.okayStuff) {
+    if (student.triedHard) {
+      return "B";
+    } else {
+      return "B-";
+    }
+  } else {
+    return "C";
+  }
 };
 eldest = 24 > 21 ? "Liz" : "Ike";
 

@@ -966,26 +992,28 @@ six = (one = 1) + (two = 2) + (three = 3);;alert(six);'>run: six

# The first ten global properties.
 
 globals = (name for name of window)[0...10]
-
var _ref, _result, globals, name;
+
var globals, name, _ref, _results;
 var __hasProp = Object.prototype.hasOwnProperty;
-globals = (function() {
-  _result = [];
-  for (name in _ref = window) {
+globals = ((function() {
+  _ref = window;
+  _results = [];
+  for (name in _ref) {
     if (!__hasProp.call(_ref, name)) continue;
-    _result.push(name);
+    _results.push(name);
   }
-  return _result;
-})().slice(0, 10);
-

+ return _results; +})()).slice(0, 10);;alert(globals);'>run: globals

As well as silly things, like passing a try/catch statement directly into a function call: @@ -998,14 +1026,14 @@ globals = (function() { )

alert((function() {
   try {
-    return nonexistent / undefined;
+    return nonexistent / void 0;
   } catch (error) {
     return "And the error is ... " + error;
   }
 })());
 

+typeof speed != "undefined" && speed !== null ? speed : speed = 140;;alert(speed);'>run: speed

The accessor variant of the existential operator ?. can be used to soak up null references in a chain of properties. Use it instead @@ -1056,13 +1084,9 @@ typeof speed !== "undefined" && speed !== null ? speed : speed = 140;;alert(spee result, if the chain is broken, undefined is returned instead of the TypeError that would be raised otherwise.

-
lottery.drawWinner?().address?.zipcode
-
var _ref;
-if (typeof lottery.drawWinner === "function") {
-  if ((_ref = lottery.drawWinner().address) != null) {
-    _ref.zipcode;
-  }
-}
+    
zip = lottery.drawWinner?().address?.zipcode
+
var zip, _ref;
+zip = typeof lottery.drawWinner === "function" ? (_ref = lottery.drawWinner().address) != null ? _ref.zipcode : void 0 : void 0;
 

Soaking up nulls is similar to Ruby's @@ -1093,18 +1117,18 @@ typeof speed !== "undefined" && speed !== null ? speed : speed = 140;;alert(spee in a single assignable expression.

class Animal
-  constructor: (@name) ->
+  constructor: (@name) ->
 
-  move: (meters) ->
+  move: (meters) ->
     alert @name + " moved " + meters + "m."
 
 class Snake extends Animal
-  move: ->
+  move: ->
     alert "Slithering..."
     super 5
 
 class Horse extends Animal
-  move: ->
+  move: ->
     alert "Galloping..."
     super 45
 
@@ -1118,89 +1142,89 @@ tom.move()
 
 
 
var Animal, Horse, Snake, sam, tom;
-var __extends = function(child, parent) {
+var __hasProp = Object.prototype.hasOwnProperty, __extends = function(child, parent) {
+  for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; }
   function ctor() { this.constructor = child; }
   ctor.prototype = parent.prototype;
   child.prototype = new ctor;
-  if (typeof parent.extended === "function") parent.extended(child);
   child.__super__ = parent.prototype;
+  return child;
 };
-Animal = (function() {
-  function Animal(_arg) {
-    this.name = _arg;
-    return this;
+Animal = function() {
+  function Animal(name) {
+    this.name = name;
   }
+  Animal.prototype.move = function(meters) {
+    return alert(this.name + " moved " + meters + "m.");
+  };
   return Animal;
-})();
-Animal.prototype.move = function(meters) {
-  return alert(this.name + " moved " + meters + "m.");
-};
-Snake = (function() {
+}();
+Snake = function() {
   function Snake() {
-    return Animal.apply(this, arguments);
+    Snake.__super__.constructor.apply(this, arguments);
   }
+  __extends(Snake, Animal);
+  Snake.prototype.move = function() {
+    alert("Slithering...");
+    return Snake.__super__.move.call(this, 5);
+  };
   return Snake;
-})();
-__extends(Snake, Animal);
-Snake.prototype.move = function() {
-  alert("Slithering...");
-  return Snake.__super__.move.call(this, 5);
-};
-Horse = (function() {
+}();
+Horse = function() {
   function Horse() {
-    return Animal.apply(this, arguments);
+    Horse.__super__.constructor.apply(this, arguments);
   }
+  __extends(Horse, Animal);
+  Horse.prototype.move = function() {
+    alert("Galloping...");
+    return Horse.__super__.move.call(this, 45);
+  };
   return Horse;
-})();
-__extends(Horse, Animal);
-Horse.prototype.move = function() {
-  alert("Galloping...");
-  return Horse.__super__.move.call(this, 45);
-};
+}();
 sam = new Snake("Sammy the Python");
 tom = new Horse("Tommy the Palomino");
 sam.move();
 tom.move();
 

quick access to an object's prototype, and super() is converted into a call against the immediate ancestor's method of the same name.

-
String::dasherize = ->
+    
String::dasherize = ->
   this.replace /_/g, "-"
 
String.prototype.dasherize = function() {
   return this.replace(/_/g, "-");
@@ -1240,11 +1264,11 @@ tom.move();;'>run
theSwitch = 0 [theBait, theSwitch] = [theSwitch, theBait] -
var _ref, theBait, theSwitch;
+
var theBait, theSwitch, _ref;
 theBait = 1000;
 theSwitch = 0;
 _ref = [theSwitch, theBait], theBait = _ref[0], theSwitch = _ref[1];
-

@@ -1252,19 +1276,19 @@ _ref = [theSwitch, theBait], theBait = _ref[0], theSwitch = _ref[1];;alert(theBa But it's also helpful for dealing with functions that return multiple values.

-
weatherReport = (location) ->
+    
weatherReport = (location) ->
   # Make an Ajax request to fetch the weather...
   [location, 72, "Mostly Sunny"]
 
 [city, temp, forecast] = weatherReport "Berkeley, CA"
 
 
-
var _ref, city, forecast, temp, weatherReport;
+
var city, forecast, temp, weatherReport, _ref;
 weatherReport = function(location) {
   return [location, 72, "Mostly Sunny"];
 };
 _ref = weatherReport("Berkeley, CA"), city = _ref[0], temp = _ref[1], forecast = _ref[2];
-
var _ref, _ref2, city, futurists, name, street;
+
var city, futurists, name, street, _ref, _ref2;
 futurists = {
   sculptor: "Umberto Boccioni",
   painter: "Vladimir Burliuk",
@@ -1295,8 +1319,8 @@ futurists = {
     address: ["Via Roma 42R", "Bellagio, Italy 22021"]
   }
 };
-_ref = futurists.poet, name = _ref.name, (_ref2 = _ref.address, street = _ref2[0], city = _ref2[1], _ref2);
-

+_ref = futurists.poet, name = _ref.name, _ref2 = _ref.address, street = _ref2[0], city = _ref2[1];;alert(name + " — " + street);'>run: name + " — " + street

Pattern matching can even be combined with splats.

@@ -1316,14 +1340,14 @@ _ref = futurists.poet, name = _ref.name, (_ref2 = _ref.address, street = _ref2[0 -
var _ref, close, contents, open, tag;
+
var close, contents, open, tag, _i, _ref;
 var __slice = Array.prototype.slice;
 tag = "<impossible>";
-_ref = tag.split(""), open = _ref[0], contents = __slice.call(_ref, 1, _ref.length - 1), close = _ref[_ref.length - 1];
-

+_ref = tag.split(""), open = _ref[0], contents = 3 <= _ref.length ? __slice.call(_ref, 1, _i = _ref.length - 1) : (_i = 1, []), close = _ref[_i++];;alert(contents.join(""));'>run: contents.join("")

@@ -1343,16 +1367,14 @@ _ref = tag.split(""), open = _ref[0], contents = __slice.call(_ref, 1, _ref.leng to use with bind. Functions created with the fat arrow are able to access properties of the this where they're defined.

-
Account = (customer, cart) ->
+    
Account = (customer, cart) ->
   @customer = customer
   @cart = cart
 
-  $('.shopping_cart').bind 'click', (event) =>
+  $('.shopping_cart').bind 'click', (event) =>
     @customer.purchase @cart
 
var Account;
-var __bind = function(func, context) {
-  return function() { return func.apply(context, arguments); };
-};
+var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
 Account = function(customer, cart) {
   this.customer = customer;
   this.cart = cart;
@@ -1555,11 +1577,11 @@ html = '<
       are preserved in the generated code.
     

###
-CoffeeScript Compiler v0.9.4
+CoffeeScript Compiler v0.9.5
 Released under the MIT License
 ###
 
/*
-CoffeeScript Compiler v0.9.4
+CoffeeScript Compiler v0.9.5
 Released under the MIT License
 */
 

@@ -1591,7 +1613,7 @@ html = '< option '-o', '--output [DIR]', 'directory for compiled code' -task 'build:parser', 'rebuild the Jison parser', (options) -> +task 'build:parser', 'rebuild the Jison parser', (options) -> require 'jison' code = require('./lib/grammar').parser.generate() dir = options.output or 'lib' diff --git a/lib/coffee-script.js b/lib/coffee-script.js index d35ec261..b8e110e8 100755 --- a/lib/coffee-script.js +++ b/lib/coffee-script.js @@ -15,7 +15,7 @@ return compile(content); }); } - exports.VERSION = '0.9.4'; + exports.VERSION = '0.9.5'; exports.helpers = require('./helpers'); exports.compile = compile = function(code, options) { options == null && (options = {}); diff --git a/package.json b/package.json index 89f73406..eda66c12 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "Unfancy JavaScript", "keywords": ["javascript", "language", "coffeescript", "compiler"], "author": "Jeremy Ashkenas", - "version": "0.9.4", + "version": "0.9.5", "licenses": [{ "type": "MIT", "url": "http://github.com/jashkenas/coffee-script/raw/master/LICENSE" diff --git a/src/coffee-script.coffee b/src/coffee-script.coffee index 74645854..e1fcb114 100755 --- a/src/coffee-script.coffee +++ b/src/coffee-script.coffee @@ -20,7 +20,7 @@ else if require.registerExtension require.registerExtension '.coffee', (content) -> compile content # The current CoffeeScript version number. -exports.VERSION = '0.9.4' +exports.VERSION = '0.9.5' # Expose helpers for testing. exports.helpers = require './helpers'